diff --git a/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json b/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json index 2dfbdb74f8..69b4b08668 100644 --- a/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json +++ b/ext/data/schemas/dictionary-term-meta-bank-v3-schema.json @@ -112,9 +112,18 @@ "additionalProperties": false, "properties": { "position": { - "type": "integer", - "description": "Mora position of the pitch accent downstep. A value of 0 indicates that the word does not have a downstep (heiban).", - "minimum": 0 + "oneOf": [ + { + "type": "integer", + "description": "Mora position of the pitch accent downstep. A value of 0 indicates that the word does not have a downstep (heiban).", + "minimum": 0 + }, + { + "type": "string", + "description": "Pitch level of each mora with H representing high and L representing low. For example: HHLL for a 4 mora word.", + "pattern": "^[HL]+$" + } + ] }, "nasal": { "oneOf": [ diff --git a/ext/data/templates/anki-field-templates-upgrade-v66.handlebars b/ext/data/templates/anki-field-templates-upgrade-v66.handlebars index 9447359347..514b00e6bb 100644 --- a/ext/data/templates/anki-field-templates-upgrade-v66.handlebars +++ b/ext/data/templates/anki-field-templates-upgrade-v66.handlebars @@ -13,4 +13,4 @@ {{#*inline "glossary-plain-no-dictionary"~}} {{~> glossary-plain noDictionaryTag=true ~}} -{{/inline}} \ No newline at end of file +{{/inline}} diff --git a/ext/data/templates/anki-field-templates-upgrade-v67.handlebars b/ext/data/templates/anki-field-templates-upgrade-v67.handlebars index 4f73ebf8d3..4d5b1541f4 100644 --- a/ext/data/templates/anki-field-templates-upgrade-v67.handlebars +++ b/ext/data/templates/anki-field-templates-upgrade-v67.handlebars @@ -44,4 +44,4 @@ {{~/unless~}} {{~/each~}} {{/if}} -{{/inline}} \ No newline at end of file +{{/inline}} diff --git a/ext/data/templates/anki-field-templates-upgrade-v68.handlebars b/ext/data/templates/anki-field-templates-upgrade-v68.handlebars new file mode 100644 index 0000000000..942e010c48 --- /dev/null +++ b/ext/data/templates/anki-field-templates-upgrade-v68.handlebars @@ -0,0 +1,9 @@ +{{<<<<<<<}} +{{#*inline "pitch-accent-item"}} + {{~pronunciation format=format reading=reading downstepPosition=position nasalPositions=nasalPositions devoicePositions=devoicePositions~}} +{{/inline}} +{{=======}} +{{#*inline "pitch-accent-item"}} + {{~pronunciation format=format reading=reading pitchPositions=positions nasalPositions=nasalPositions devoicePositions=devoicePositions~}} +{{/inline}} +{{>>>>>>>}} diff --git a/ext/data/templates/default-anki-field-templates.handlebars b/ext/data/templates/default-anki-field-templates.handlebars index 3b00247345..e0c68db39e 100644 --- a/ext/data/templates/default-anki-field-templates.handlebars +++ b/ext/data/templates/default-anki-field-templates.handlebars @@ -251,7 +251,7 @@ {{! Pitch Accents }} {{#*inline "pitch-accent-item"}} - {{~pronunciation format=format reading=reading downstepPosition=position nasalPositions=nasalPositions devoicePositions=devoicePositions~}} + {{~pronunciation format=format reading=reading pitchPositions=positions nasalPositions=nasalPositions devoicePositions=devoicePositions~}} {{/inline}} {{#*inline "pitch-accent-item-disambiguation"}} diff --git a/ext/js/data/anki-note-data-creator.js b/ext/js/data/anki-note-data-creator.js index ff2a3c32a1..9313c8bcf2 100644 --- a/ext/js/data/anki-note-data-creator.js +++ b/ext/js/data/anki-note-data-creator.js @@ -249,12 +249,12 @@ function getPitches(dictionaryEntry) { for (const groupedPronunciation of pronunciations) { const {pronunciation} = groupedPronunciation; if (pronunciation.type !== 'pitch-accent') { continue; } - const {position, nasalPositions, devoicePositions, tags} = pronunciation; + const {positions, nasalPositions, devoicePositions, tags} = pronunciation; const {terms, reading, exclusiveTerms, exclusiveReadings} = groupedPronunciation; pitches.push({ expressions: terms, reading, - position, + positions, nasalPositions, devoicePositions, tags: convertPitchTags(tags), @@ -664,10 +664,10 @@ function getTermPitches(dictionaryEntry) { */ function getTermPitchesInner(pitches) { const results = []; - for (const {position, tags} of pitches) { + for (const {positions, tags} of pitches) { const cachedTags = createCachedValue(convertTags.bind(null, tags)); results.push({ - position, + positions, get tags() { return getCachedValue(cachedTags); }, }); } diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index 6fa7f0ce53..05f2085f87 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -579,6 +579,7 @@ export class OptionsUtil { this._updateVersion65, this._updateVersion66, this._updateVersion67, + this._updateVersion68, ]; /* eslint-enable @typescript-eslint/unbound-method */ if (typeof targetVersion === 'number' && targetVersion < result.length) { @@ -1754,6 +1755,14 @@ export class OptionsUtil { await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v67.handlebars'); } + /** + * - Changed pitch-accent-item param name + * @type {import('options-util').UpdateFunction} + */ + async _updateVersion68(options) { + await this._applyAnkiFieldTemplatesPatch(options, '/data/templates/anki-field-templates-upgrade-v68.handlebars'); + } + /** * @param {string} url * @returns {Promise} diff --git a/ext/js/dictionary/dictionary-data-util.js b/ext/js/dictionary/dictionary-data-util.js index 97dbb1026b..2a8aedf2f6 100644 --- a/ext/js/dictionary/dictionary-data-util.js +++ b/ext/js/dictionary/dictionary-data-util.js @@ -461,7 +461,7 @@ function arePronunciationsEquivalent({pronunciation: pronunciation1}, pronunciat // This cast is valid based on the type check at the start of the function. const pitchAccent2 = /** @type {import('dictionary').PitchAccent} */ (pronunciation2); return ( - pronunciation1.position === pitchAccent2.position && + pronunciation1.positions === pitchAccent2.positions && areArraysEqual(pronunciation1.nasalPositions, pitchAccent2.nasalPositions) && areArraysEqual(pronunciation1.devoicePositions, pitchAccent2.devoicePositions) ); diff --git a/ext/js/display/display-generator.js b/ext/js/display/display-generator.js index 8d0d39267a..a20b1fe3c0 100644 --- a/ext/js/display/display-generator.js +++ b/ext/js/display/display-generator.js @@ -799,13 +799,13 @@ export class DisplayGenerator { * @returns {HTMLElement} */ _createPronunciationPitchAccent(pitchAccent, details) { - const {position, nasalPositions, devoicePositions, tags} = pitchAccent; + const {positions, nasalPositions, devoicePositions, tags} = pitchAccent; const {reading, exclusiveTerms, exclusiveReadings} = details; const morae = getKanaMorae(reading); const node = this._instantiate('pronunciation'); - node.dataset.pitchAccentDownstepPosition = `${position}`; + node.dataset.pitchAccentDownstepPosition = `${positions}`; node.dataset.pronunciationType = pitchAccent.type; if (nasalPositions.length > 0) { node.dataset.nasalMoraPosition = nasalPositions.join(' '); } if (devoicePositions.length > 0) { node.dataset.devoiceMoraPosition = devoicePositions.join(' '); } @@ -818,15 +818,15 @@ export class DisplayGenerator { this._createPronunciationDisambiguations(n, exclusiveTerms, exclusiveReadings); n = this._querySelector(node, '.pronunciation-downstep-notation-container'); - n.appendChild(this._pronunciationGenerator.createPronunciationDownstepPosition(position)); + n.appendChild(this._pronunciationGenerator.createPronunciationDownstepPosition(positions)); n = this._querySelector(node, '.pronunciation-text-container'); n.lang = this._language; - n.appendChild(this._pronunciationGenerator.createPronunciationText(morae, position, nasalPositions, devoicePositions)); + n.appendChild(this._pronunciationGenerator.createPronunciationText(morae, positions, nasalPositions, devoicePositions)); n = this._querySelector(node, '.pronunciation-graph-container'); - n.appendChild(this._pronunciationGenerator.createPronunciationGraph(morae, position)); + n.appendChild(this._pronunciationGenerator.createPronunciationGraph(morae, positions)); return node; } @@ -1138,7 +1138,7 @@ export class DisplayGenerator { if (termPronunciation.headwordIndex !== headwordIndex) { continue; } for (const pronunciation of termPronunciation.pronunciations) { if (pronunciation.type !== 'pitch-accent') { continue; } - const category = getPitchCategory(reading, pronunciation.position, isVerbOrAdjective); + const category = getPitchCategory(reading, pronunciation.positions, isVerbOrAdjective); if (category !== null) { categories.add(category); } diff --git a/ext/js/display/pronunciation-generator.js b/ext/js/display/pronunciation-generator.js index 4b9dde6b66..19c9f56a6f 100644 --- a/ext/js/display/pronunciation-generator.js +++ b/ext/js/display/pronunciation-generator.js @@ -16,7 +16,7 @@ * along with this program. If not, see . */ -import {getKanaDiacriticInfo, isMoraPitchHigh} from '../language/ja/japanese.js'; +import {getDownstepPositions, getKanaDiacriticInfo, isMoraPitchHigh} from '../language/ja/japanese.js'; export class PronunciationGenerator { /** @@ -30,12 +30,12 @@ export class PronunciationGenerator { /** * @param {string[]} morae - * @param {number} downstepPosition + * @param {number | string} pitchPositions * @param {number[]} nasalPositions * @param {number[]} devoicePositions * @returns {HTMLSpanElement} */ - createPronunciationText(morae, downstepPosition, nasalPositions, devoicePositions) { + createPronunciationText(morae, pitchPositions, nasalPositions, devoicePositions) { const nasalPositionsSet = nasalPositions.length > 0 ? new Set(nasalPositions) : null; const devoicePositionsSet = devoicePositions.length > 0 ? new Set(devoicePositions) : null; const container = this._document.createElement('span'); @@ -43,8 +43,8 @@ export class PronunciationGenerator { for (let i = 0, ii = morae.length; i < ii; ++i) { const i1 = i + 1; const mora = morae[i]; - const highPitch = isMoraPitchHigh(i, downstepPosition); - const highPitchNext = isMoraPitchHigh(i1, downstepPosition); + const highPitch = isMoraPitchHigh(i, pitchPositions); + const highPitchNext = isMoraPitchHigh(i1, pitchPositions); const nasal = nasalPositionsSet !== null && nasalPositionsSet.has(i1); const devoice = devoicePositionsSet !== null && devoicePositionsSet.has(i1); @@ -109,10 +109,10 @@ export class PronunciationGenerator { /** * @param {string[]} morae - * @param {number} downstepPosition + * @param {number | string} pitchPositions * @returns {SVGSVGElement} */ - createPronunciationGraph(morae, downstepPosition) { + createPronunciationGraph(morae, pitchPositions) { const ii = morae.length; const svgns = 'http://www.w3.org/2000/svg'; @@ -132,8 +132,8 @@ export class PronunciationGenerator { const pathPoints = []; for (let i = 0; i < ii; ++i) { - const highPitch = isMoraPitchHigh(i, downstepPosition); - const highPitchNext = isMoraPitchHigh(i + 1, downstepPosition); + const highPitch = isMoraPitchHigh(i, pitchPositions); + const highPitchNext = isMoraPitchHigh(i + 1, pitchPositions); const x = i * 50 + 25; const y = highPitch ? 25 : 75; if (highPitch && !highPitchNext) { @@ -149,7 +149,7 @@ export class PronunciationGenerator { pathPoints.splice(0, ii - 1); { - const highPitch = isMoraPitchHigh(ii, downstepPosition); + const highPitch = isMoraPitchHigh(ii, pitchPositions); const x = ii * 50 + 25; const y = highPitch ? 25 : 75; this._addGraphTriangle(svg, svgns, x, y); @@ -163,11 +163,12 @@ export class PronunciationGenerator { } /** - * @param {number} downstepPosition + * @param {number | string} downstepPositions * @returns {HTMLSpanElement} */ - createPronunciationDownstepPosition(downstepPosition) { - const downstepPositionString = `${downstepPosition}`; + createPronunciationDownstepPosition(downstepPositions) { + const downsteps = typeof downstepPositions === 'string' ? getDownstepPositions(downstepPositions) : downstepPositions; + const downstepPositionString = `${downsteps}`; const n1 = this._document.createElement('span'); n1.className = 'pronunciation-downstep-notation'; @@ -198,11 +199,11 @@ export class PronunciationGenerator { /** * Create a pronounciation graph in the style of Jidoujisho * @param {string[]} mora - * @param {number} downstepPosition + * @param {number | string} pitchPositions * @returns {SVGSVGElement} */ - createPronunciationGraphJJ(mora, downstepPosition) { - const patt = this._pitchValueToPattJJ(mora.length, downstepPosition); + createPronunciationGraphJJ(mora, pitchPositions) { + const patt = this._pitchValueToPattJJ(mora.length, pitchPositions); const positions = Math.max(mora.length, patt.length); const stepWidth = 35; @@ -325,10 +326,11 @@ export class PronunciationGenerator { /** * Get H&L pattern * @param {number} numberOfMora - * @param {number} pitchValue + * @param {number | string} pitchValue * @returns {string} */ _pitchValueToPattJJ(numberOfMora, pitchValue) { + if (typeof pitchValue === 'string') { return pitchValue + pitchValue[pitchValue.length - 1]; } if (numberOfMora >= 1) { if (pitchValue === 0) { // Heiban diff --git a/ext/js/language/ja/japanese.js b/ext/js/language/ja/japanese.js index 4e6bc59d85..9cbe23f3dc 100644 --- a/ext/js/language/ja/japanese.js +++ b/ext/js/language/ja/japanese.js @@ -352,24 +352,28 @@ export function isStringPartiallyJapanese(str) { /** * @param {number} moraIndex - * @param {number} pitchAccentDownstepPosition + * @param {number | string} pitchAccentValue * @returns {boolean} */ -export function isMoraPitchHigh(moraIndex, pitchAccentDownstepPosition) { - switch (pitchAccentDownstepPosition) { +export function isMoraPitchHigh(moraIndex, pitchAccentValue) { + if (typeof pitchAccentValue === 'string') { + return pitchAccentValue[moraIndex] === 'H'; + } + switch (pitchAccentValue) { case 0: return (moraIndex > 0); case 1: return (moraIndex < 1); - default: return (moraIndex > 0 && moraIndex < pitchAccentDownstepPosition); + default: return (moraIndex > 0 && moraIndex < pitchAccentValue); } } /** * @param {string} text - * @param {number} pitchAccentDownstepPosition + * @param {number | string} pitchAccentValue * @param {boolean} isVerbOrAdjective * @returns {?import('japanese-util').PitchCategory} */ -export function getPitchCategory(text, pitchAccentDownstepPosition, isVerbOrAdjective) { +export function getPitchCategory(text, pitchAccentValue, isVerbOrAdjective) { + const pitchAccentDownstepPosition = typeof pitchAccentValue === 'string' ? getDownstepPositions(pitchAccentValue)[0] : pitchAccentValue; if (pitchAccentDownstepPosition === 0) { return 'heiban'; } @@ -385,6 +389,24 @@ export function getPitchCategory(text, pitchAccentDownstepPosition, isVerbOrAdje return null; } +/** + * @param {string} pitchString + * @returns {number[]} + */ +export function getDownstepPositions(pitchString) { + const downsteps = []; + const moraCount = pitchString.length; + for (let i = 0; i < moraCount; i++) { + if (i > 0 && pitchString[i - 1] === 'H' && pitchString[i] === 'L') { + downsteps.push(i); + } + } + if (downsteps.length === 0) { + downsteps.push(pitchString.startsWith('L') ? 0 : -1); + } + return downsteps; +} + /** * @param {string} text * @returns {string[]} diff --git a/ext/js/language/translator.js b/ext/js/language/translator.js index 6c66a2b2f8..a182ebd8bf 100644 --- a/ext/js/language/translator.js +++ b/ext/js/language/translator.js @@ -1258,7 +1258,7 @@ export class Translator { const devoicePositions = this._toNumberArray(devoice); pitches.push({ type: 'pitch-accent', - position, + positions: position, nasalPositions, devoicePositions, tags: tags2, diff --git a/ext/js/templates/anki-template-renderer.js b/ext/js/templates/anki-template-renderer.js index 7a12d51bd2..7928e5c47f 100644 --- a/ext/js/templates/anki-template-renderer.js +++ b/ext/js/templates/anki-template-renderer.js @@ -556,8 +556,8 @@ export class AnkiTemplateRenderer { const {reading, wordClasses} = headwords[headwordIndex]; const isVerbOrAdjective = isNonNounVerbOrAdjective(wordClasses); const pitches = getPronunciationsOfType(pronunciations, 'pitch-accent'); - for (const {position} of pitches) { - const category = getPitchCategory(reading, position, isVerbOrAdjective); + for (const {positions} of pitches) { + const category = getPitchCategory(reading, positions, isVerbOrAdjective); if (category !== null) { categories.add(category); } @@ -843,12 +843,12 @@ export class AnkiTemplateRenderer { * @type {import('template-renderer').HelperFunction} */ _pronunciation(_args, _context, options) { - const {format, reading, downstepPosition} = options.hash; + const {format, reading, pitchPositions} = options.hash; if ( typeof reading !== 'string' || reading.length === 0 || - typeof downstepPosition !== 'number' + (typeof pitchPositions !== 'number' && typeof pitchPositions !== 'string') ) { return ''; } @@ -859,14 +859,14 @@ export class AnkiTemplateRenderer { { const nasalPositions = this._getValidNumberArray(options.hash.nasalPositions); const devoicePositions = this._getValidNumberArray(options.hash.devoicePositions); - return this._getPronunciationHtml(this._pronunciationGenerator.createPronunciationText(morae, downstepPosition, nasalPositions, devoicePositions)); + return this._getPronunciationHtml(this._pronunciationGenerator.createPronunciationText(morae, pitchPositions, nasalPositions, devoicePositions)); } case 'graph': - return this._getPronunciationHtml(this._pronunciationGenerator.createPronunciationGraph(morae, downstepPosition)); + return this._getPronunciationHtml(this._pronunciationGenerator.createPronunciationGraph(morae, pitchPositions)); case 'graph-jj': - return this._getPronunciationHtml(this._pronunciationGenerator.createPronunciationGraphJJ(morae, downstepPosition)); + return this._getPronunciationHtml(this._pronunciationGenerator.createPronunciationGraphJJ(morae, pitchPositions)); case 'position': - return this._getPronunciationHtml(this._pronunciationGenerator.createPronunciationDownstepPosition(downstepPosition)); + return this._getPronunciationHtml(this._pronunciationGenerator.createPronunciationDownstepPosition(pitchPositions)); default: return ''; } diff --git a/test/data/anki-note-builder-test-results.json b/test/data/anki-note-builder-test-results.json index e4f4ad4787..6505c3613e 100644 --- a/test/data/anki-note-builder-test-results.json +++ b/test/data/anki-note-builder-test-results.json @@ -481,10 +481,10 @@ "cloze-body-kana": "うちこむ", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix打ち込むcloze-suffix", "sentence-furigana-plain": "cloze-prefix打ち込むcloze-suffix" @@ -571,10 +571,10 @@ "cloze-body-kana": "うちこむ", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix打ち込むcloze-suffix", "sentence-furigana-plain": "cloze-prefix打ち込むcloze-suffix" @@ -1321,10 +1321,10 @@ "cloze-body-kana": "うちこむ", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefixうちこむcloze-suffix", "sentence-furigana-plain": "cloze-prefixうちこむcloze-suffix" @@ -1366,10 +1366,10 @@ "cloze-body-kana": "うちこむ", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefixうちこむcloze-suffix", "sentence-furigana-plain": "cloze-prefixうちこむcloze-suffix" @@ -1753,10 +1753,10 @@ "cloze-body-kana": "うちこむ", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix打ち込むcloze-suffix", "sentence-furigana-plain": "cloze-prefix打ち込むcloze-suffix" @@ -2028,10 +2028,10 @@ "cloze-body-kana": "うちこむ", "furigana": "", "furigana-plain": "打[う]ち 込[こ]む打[ぶ]ち 込[こ]む", - "pitch-accents": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", - "pitch-accent-graphs": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", - "pitch-accent-graphs-jj": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", - "pitch-accent-positions": "
  1. (うちこむ only) [0]
  2. (うちこむ only) [3]
  3. (ぶちこむ only) [0]
  4. (ぶちこむ only) [3]
", + "pitch-accents": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (うちこむ only)
  4. (うちこむ only)
  5. (うちこむ only)
  6. (うちこむ only)
  7. (うちこむ only)
  8. (うちこむ only)
  9. (うちこむ only)
  10. (うちこむ only)
  11. (うちこむ only)
  12. (うちこむ only)
  13. (うちこむ only)
  14. (うちこむ only)
  15. (うちこむ only)
  16. (うちこむ only)
  17. (うちこむ only)
  18. (うちこむ only)
  19. (ぶちこむ only)
  20. (ぶちこむ only)
", + "pitch-accent-graphs": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (うちこむ only)
  4. (うちこむ only)
  5. (うちこむ only)
  6. (うちこむ only)
  7. (うちこむ only)
  8. (うちこむ only)
  9. (うちこむ only)
  10. (うちこむ only)
  11. (うちこむ only)
  12. (うちこむ only)
  13. (うちこむ only)
  14. (うちこむ only)
  15. (うちこむ only)
  16. (うちこむ only)
  17. (うちこむ only)
  18. (うちこむ only)
  19. (ぶちこむ only)
  20. (ぶちこむ only)
", + "pitch-accent-graphs-jj": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (うちこむ only)
  4. (うちこむ only)
  5. (うちこむ only)
  6. (うちこむ only)
  7. (うちこむ only)
  8. (うちこむ only)
  9. (うちこむ only)
  10. (うちこむ only)
  11. (うちこむ only)
  12. (うちこむ only)
  13. (うちこむ only)
  14. (うちこむ only)
  15. (うちこむ only)
  16. (うちこむ only)
  17. (うちこむ only)
  18. (うちこむ only)
  19. (ぶちこむ only)
  20. (ぶちこむ only)
", + "pitch-accent-positions": "
  1. (うちこむ only) [0]
  2. (うちこむ only) [3]
  3. (うちこむ only) [-1]
  4. (うちこむ only) [3]
  5. (うちこむ only) [2]
  6. (うちこむ only) [2]
  7. (うちこむ only) [1]
  8. (うちこむ only) [1,3]
  9. (うちこむ only) [1]
  10. (うちこむ only) [1]
  11. (うちこむ only) [0]
  12. (うちこむ only) [3]
  13. (うちこむ only) [2]
  14. (うちこむ only) [2]
  15. (うちこむ only) [0]
  16. (うちこむ only) [3]
  17. (うちこむ only) [0]
  18. (うちこむ only) [0]
  19. (ぶちこむ only) [0]
  20. (ぶちこむ only) [3]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix打ち込むcloze-suffix", "sentence-furigana-plain": "cloze-prefix打ち込むcloze-suffix" @@ -2213,10 +2213,10 @@ "cloze-body-kana": "うちこんでいませんでした", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix打ち込んでいませんでしたcloze-suffix", "sentence-furigana-plain": "cloze-prefix打ち込んでいませんでしたcloze-suffix" @@ -2303,10 +2303,10 @@ "cloze-body-kana": "うちこんでいませんでした", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix打ち込んでいませんでしたcloze-suffix", "sentence-furigana-plain": "cloze-prefix打ち込んでいませんでしたcloze-suffix" @@ -2668,10 +2668,10 @@ "cloze-body-kana": "う(う)ち込(こ)む", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix打(う)ち込(こ)むcloze-suffix", "sentence-furigana-plain": "cloze-prefix打(う)ち込(こ)むcloze-suffix" @@ -2758,10 +2758,10 @@ "cloze-body-kana": "う(う)ち込(こ)む", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix打(う)ち込(こ)むcloze-suffix", "sentence-furigana-plain": "cloze-prefix打(う)ち込(こ)むcloze-suffix" @@ -3123,10 +3123,10 @@ "cloze-body-kana": "(打)(ち)(込)(む)", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix(打)(ち)(込)(む)cloze-suffix", "sentence-furigana-plain": "cloze-prefix(打)(ち)(込)(む)cloze-suffix" @@ -3213,10 +3213,10 @@ "cloze-body-kana": "(打)(ち)(込)(む)", "furigana": "む", "furigana-plain": "打[う]ち 込[こ]む", - "pitch-accents": "
", - "pitch-accent-graphs": "
", - "pitch-accent-graphs-jj": "
", - "pitch-accent-positions": "
  1. [0]
  2. [3]
", + "pitch-accents": "
", + "pitch-accent-graphs": "
", + "pitch-accent-graphs-jj": "
", + "pitch-accent-positions": "
  1. [0]
  2. [3]
  3. [-1]
  4. [3]
  5. [2]
  6. [2]
  7. [1]
  8. [1,3]
  9. [1]
  10. [1]
  11. [0]
  12. [3]
  13. [2]
  14. [2]
  15. [0]
  16. [3]
  17. [0]
  18. [0]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefix(打)(ち)(込)(む)cloze-suffix", "sentence-furigana-plain": "cloze-prefix(打)(ち)(込)(む)cloze-suffix" @@ -3728,10 +3728,10 @@ "cloze-body-kana": "うちこむ", "furigana": "", "furigana-plain": "打[う]ち 込[こ]む打[ぶ]ち 込[こ]む", - "pitch-accents": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", - "pitch-accent-graphs": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", - "pitch-accent-graphs-jj": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (ぶちこむ only)
  4. (ぶちこむ only)
", - "pitch-accent-positions": "
  1. (うちこむ only) [0]
  2. (うちこむ only) [3]
  3. (ぶちこむ only) [0]
  4. (ぶちこむ only) [3]
", + "pitch-accents": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (うちこむ only)
  4. (うちこむ only)
  5. (うちこむ only)
  6. (うちこむ only)
  7. (うちこむ only)
  8. (うちこむ only)
  9. (うちこむ only)
  10. (うちこむ only)
  11. (うちこむ only)
  12. (うちこむ only)
  13. (うちこむ only)
  14. (うちこむ only)
  15. (うちこむ only)
  16. (うちこむ only)
  17. (うちこむ only)
  18. (うちこむ only)
  19. (ぶちこむ only)
  20. (ぶちこむ only)
", + "pitch-accent-graphs": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (うちこむ only)
  4. (うちこむ only)
  5. (うちこむ only)
  6. (うちこむ only)
  7. (うちこむ only)
  8. (うちこむ only)
  9. (うちこむ only)
  10. (うちこむ only)
  11. (うちこむ only)
  12. (うちこむ only)
  13. (うちこむ only)
  14. (うちこむ only)
  15. (うちこむ only)
  16. (うちこむ only)
  17. (うちこむ only)
  18. (うちこむ only)
  19. (ぶちこむ only)
  20. (ぶちこむ only)
", + "pitch-accent-graphs-jj": "
  1. (うちこむ only)
  2. (うちこむ only)
  3. (うちこむ only)
  4. (うちこむ only)
  5. (うちこむ only)
  6. (うちこむ only)
  7. (うちこむ only)
  8. (うちこむ only)
  9. (うちこむ only)
  10. (うちこむ only)
  11. (うちこむ only)
  12. (うちこむ only)
  13. (うちこむ only)
  14. (うちこむ only)
  15. (うちこむ only)
  16. (うちこむ only)
  17. (うちこむ only)
  18. (うちこむ only)
  19. (ぶちこむ only)
  20. (ぶちこむ only)
", + "pitch-accent-positions": "
  1. (うちこむ only) [0]
  2. (うちこむ only) [3]
  3. (うちこむ only) [-1]
  4. (うちこむ only) [3]
  5. (うちこむ only) [2]
  6. (うちこむ only) [2]
  7. (うちこむ only) [1]
  8. (うちこむ only) [1,3]
  9. (うちこむ only) [1]
  10. (うちこむ only) [1]
  11. (うちこむ only) [0]
  12. (うちこむ only) [3]
  13. (うちこむ only) [2]
  14. (うちこむ only) [2]
  15. (うちこむ only) [0]
  16. (うちこむ only) [3]
  17. (うちこむ only) [0]
  18. (うちこむ only) [0]
  19. (ぶちこむ only) [0]
  20. (ぶちこむ only) [3]
", "pitch-accent-categories": "heiban,kifuku", "sentence-furigana": "cloze-prefixうちこむcloze-suffix", "sentence-furigana-plain": "cloze-prefixうちこむcloze-suffix" diff --git a/test/data/database-test-cases.json b/test/data/database-test-cases.json index b683deef81..b8869f69cb 100644 --- a/test/data/database-test-cases.json +++ b/test/data/database-test-cases.json @@ -22,9 +22,9 @@ "total": 15 }, "termMeta": { - "total": 39, + "total": 40, "freq": 31, - "pitch": 7, + "pitch": 8, "ipa": 1 }, "terms": { @@ -38,7 +38,7 @@ "kanji": 2, "kanjiMeta": 6, "terms": 34, - "termMeta": 39, + "termMeta": 40, "tagMeta": 15, "media": 6 } @@ -47,7 +47,7 @@ "kanji": 2, "kanjiMeta": 6, "terms": 34, - "termMeta": 39, + "termMeta": 40, "tagMeta": 15, "media": 6 } @@ -616,7 +616,7 @@ } ], "expectedResults": { - "total": 12, + "total": 13, "modes": [ [ "freq", @@ -624,7 +624,7 @@ ], [ "pitch", - 2 + 3 ] ] } diff --git a/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json b/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json index eb763d394c..682e34eb0e 100644 --- a/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json +++ b/test/data/dictionaries/valid-dictionary1/term_meta_bank_1.json @@ -46,6 +46,31 @@ ] } ], + [ + "打ち込む", + "pitch", + { + "reading": "うちこむ", + "pitches": [ + {"position": "HHHH"}, + {"position": "HHHL"}, + {"position": "HHLH"}, + {"position": "HHLL", "devoice": 2}, + {"position": "HLHH"}, + {"position": "HLHL"}, + {"position": "HLLH"}, + {"position": "HLLL", "nasal": 3}, + {"position": "LHHH"}, + {"position": "LHHL"}, + {"position": "LHLH"}, + {"position": "LHLL", "devoice": 2, "nasal": 3}, + {"position": "LLHH"}, + {"position": "LLHL"}, + {"position": "LLLH"}, + {"position": "LLLL"} + ] + } + ], [ "打ち込む", "pitch", diff --git a/test/data/translator-test-results-note-data1.json b/test/data/translator-test-results-note-data1.json index 10a168127c..5879458b11 100644 --- a/test/data/translator-test-results-note-data1.json +++ b/test/data/translator-test-results-note-data1.json @@ -3060,11 +3060,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -3232,11 +3309,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", "tags": [] }, { - "position": 3, + "positions": "LLLL", "tags": [] } ] @@ -3254,6 +3408,18 @@ "expression": "打ち込む", "reading": "うちこむ", "phoneticTranscriptions": [] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "phoneticTranscriptions": [] } ], "sourceTermExactMatchCount": 1, @@ -3304,7 +3470,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -3316,134 +3482,334 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], "exclusiveExpressions": [], "exclusiveReadings": [] - } - ] - } - ], - "pitchCount": 2, - "phoneticTranscriptions": [ - { - "dictionary": "Test Dictionary 2", - "phoneticTranscriptions": [] - } - ], - "context": { - "query": "query", - "fullQuery": "fullQuery", - "document": { - "title": "title" - } - }, - "media": {} - }, - { - "marker": "{marker}", - "definition": { - "type": "term", - "id": 9, - "source": "打ち込む", - "rawSource": "打ち込む", - "sourceTerm": "打ち込む", - "inflectionRuleChainCandidates": [ - { - "source": "algorithm", - "inflectionRules": [] - } - ], - "score": 10, - "isPrimary": true, - "sequence": 4, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "dictionaryNames": [ - "Test Dictionary 2" - ], - "expression": "打ち込む", - "reading": "ぶちこむ", - "expressions": [ - { - "sourceTerm": "打ち込む", - "expression": "打ち込む", - "reading": "ぶちこむ", - "termTags": [ - { - "name": "E1", - "category": "default", - "notes": "example tag 1", - "order": 0, - "score": 0, - "dictionary": "Test Dictionary 2", - "redundant": false - }, - { - "name": "P", - "category": "popular", - "notes": "popular term", - "order": 0, - "score": 0, - "dictionary": "Test Dictionary 2", - "redundant": false - } - ], - "frequencies": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "ぶちこむ", - "hasReading": false, - "frequency": 3 - }, - { - "index": 1, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "ぶちこむ", - "hasReading": false, - "frequency": "seven" - }, - { - "index": 2, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "ぶちこむ", - "hasReading": true, - "frequency": 13 - }, - { - "index": 3, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "ぶちこむ", + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLLL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + } + ] + } + ], + "pitchCount": 18, + "phoneticTranscriptions": [ + { + "dictionary": "Test Dictionary 2", + "phoneticTranscriptions": [] + } + ], + "context": { + "query": "query", + "fullQuery": "fullQuery", + "document": { + "title": "title" + } + }, + "media": {} + }, + { + "marker": "{marker}", + "definition": { + "type": "term", + "id": 9, + "source": "打ち込む", + "rawSource": "打ち込む", + "sourceTerm": "打ち込む", + "inflectionRuleChainCandidates": [ + { + "source": "algorithm", + "inflectionRules": [] + } + ], + "score": 10, + "isPrimary": true, + "sequence": 4, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "dictionaryNames": [ + "Test Dictionary 2" + ], + "expression": "打ち込む", + "reading": "ぶちこむ", + "expressions": [ + { + "sourceTerm": "打ち込む", + "expression": "打ち込む", + "reading": "ぶちこむ", + "termTags": [ + { + "name": "E1", + "category": "default", + "notes": "example tag 1", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + }, + { + "name": "P", + "category": "popular", + "notes": "popular term", + "order": 0, + "score": 0, + "dictionary": "Test Dictionary 2", + "redundant": false + } + ], + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": false, + "frequency": "seven" + }, + { + "index": 2, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", + "hasReading": true, + "frequency": 13 + }, + { + "index": 3, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "ぶちこむ", "hasReading": true, "frequency": "nineteen" }, @@ -3487,11 +3853,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -3659,11 +4025,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -3731,7 +4097,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -3743,7 +4109,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -3914,11 +4280,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", "tags": [] }, { - "position": 3, + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -4071,9 +4514,109 @@ "frequency": 3 } ], - "frequencyHarmonic": 3, - "frequencyAverage": 3, - "pitches": [ + "frequencyHarmonic": 3, + "frequencyAverage": 3, + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + } + ], + "phoneticTranscriptions": [ { "index": 0, "expressionIndex": 0, @@ -4084,21 +4627,10 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] - } - ], - "phoneticTranscriptions": [ + "phoneticTranscriptions": [] + }, { - "index": 0, + "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -4158,7 +4690,207 @@ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -4170,7 +4902,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -4180,7 +4912,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -4341,11 +5073,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -4513,11 +5245,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -4585,7 +5317,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -4597,7 +5329,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -9140,11 +9872,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", "tags": [] }, { - "position": 3, + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -9312,11 +10121,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", "tags": [] }, { - "position": 3, + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -9334,6 +10220,18 @@ "expression": "打ち込む", "reading": "うちこむ", "phoneticTranscriptions": [] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "phoneticTranscriptions": [] } ], "sourceTermExactMatchCount": 0, @@ -9384,7 +10282,207 @@ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -9396,7 +10494,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -9406,7 +10504,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -9567,11 +10665,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", "tags": [] }, { - "position": 3, + "positions": "LLLL", "tags": [] } ] @@ -9638,7 +10813,195 @@ "redundant": false } ], - "frequencies": [ + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": "seven" + }, + { + "index": 2, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 12 + }, + { + "index": 3, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "eighteen" + }, + { + "index": 4, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "twenty-four (24)" + }, + { + "index": 5, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 30 + } + ], + "frequencyNumbers": [ + { + "dictionary": "Test Dictionary 2", + "frequency": 3 + } + ], + "frequencyHarmonic": 3, + "frequencyAverage": 3, + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + } + ], + "phoneticTranscriptions": [ { "index": 0, "expressionIndex": 0, @@ -9649,8 +11012,7 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": 3 + "phoneticTranscriptions": [] }, { "index": 1, @@ -9662,156 +11024,258 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": "seven" - }, + "phoneticTranscriptions": [] + } + ], + "sourceTermExactMatchCount": 0, + "url": "url:", + "cloze": { + "sentence": "", + "prefix": "", + "body": "", + "bodyKana": "", + "suffix": "" + }, + "furiganaSegments": [ { - "index": 2, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": 12 + "text": "打", + "furigana": "う" }, { - "index": 3, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "eighteen" + "text": "ち", + "furigana": "" }, { - "index": 4, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "twenty-four (24)" + "text": "込", + "furigana": "こ" }, { - "index": 5, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": 30 - } - ], - "frequencyNumbers": [ - { - "dictionary": "Test Dictionary 2", - "frequency": 3 + "text": "む", + "furigana": "" } - ], - "frequencyHarmonic": 3, - "frequencyAverage": 3, - "pitches": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + ] + }, + "glossaryLayoutMode": "default", + "compactTags": false, + "group": false, + "merge": false, + "compactGlossaries": false, + "uniqueExpressions": [ + "打ち込む" + ], + "uniqueReadings": [ + "うちこむ" + ], + "pitches": [ + { + "dictionary": "Test Dictionary 2", + "pitches": [ + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] - } - ], - "phoneticTranscriptions": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "phoneticTranscriptions": [] - } - ], - "sourceTermExactMatchCount": 0, - "url": "url:", - "cloze": { - "sentence": "", - "prefix": "", - "body": "", - "bodyKana": "", - "suffix": "" - }, - "furiganaSegments": [ - { - "text": "打", - "furigana": "う" - }, - { - "text": "ち", - "furigana": "" - }, - { - "text": "込", - "furigana": "こ" - }, - { - "text": "む", - "furigana": "" - } - ] - }, - "glossaryLayoutMode": "default", - "compactTags": false, - "group": false, - "merge": false, - "compactGlossaries": false, - "uniqueExpressions": [ - "打ち込む" - ], - "uniqueReadings": [ - "うちこむ" - ], - "pitches": [ - { - "dictionary": "Test Dictionary 2", - "pitches": [ { "expressions": [ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -9823,7 +11287,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -9833,7 +11297,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -10647,11 +12111,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -10819,11 +12283,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -10891,7 +12355,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -10903,7 +12367,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -11074,11 +12538,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -11246,11 +12710,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -11318,7 +12782,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -11330,7 +12794,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -12335,11 +13799,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", "tags": [] }, { - "position": 3, + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -12455,8 +13996,104 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": 3 + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": "seven" + }, + { + "index": 2, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 12 + }, + { + "index": 3, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "eighteen" + }, + { + "index": 4, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "twenty-four (24)" + }, + { + "index": 5, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 30 + } + ], + "frequencyNumbers": [ + { + "dictionary": "Test Dictionary 2", + "frequency": 3 + } + ], + "frequencyHarmonic": 3, + "frequencyAverage": 3, + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] }, { "index": 1, @@ -12468,11 +14105,77 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": "seven" - }, + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + } + ], + "phoneticTranscriptions": [ { - "index": 2, + "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -12481,11 +14184,10 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": true, - "frequency": 12 + "phoneticTranscriptions": [] }, { - "index": 3, + "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -12494,112 +14196,240 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": true, - "frequency": "eighteen" - }, - { - "index": 4, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + "phoneticTranscriptions": [] + } + ], + "sourceTermExactMatchCount": 1, + "url": "url:", + "cloze": { + "sentence": "", + "prefix": "", + "body": "", + "bodyKana": "", + "suffix": "" + } + }, + "glossaryLayoutMode": "default", + "compactTags": false, + "group": true, + "merge": false, + "compactGlossaries": false, + "uniqueExpressions": [ + "打ち込む" + ], + "uniqueReadings": [ + "うちこむ" + ], + "pitches": [ + { + "dictionary": "Test Dictionary 2", + "pitches": [ + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "twenty-four (24)" - }, - { - "index": 5, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": 30 - } - ], - "frequencyNumbers": [ - { - "dictionary": "Test Dictionary 2", - "frequency": 3 - } - ], - "frequencyHarmonic": 3, - "frequencyAverage": 3, - "pitches": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] - } - ], - "phoneticTranscriptions": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "phoneticTranscriptions": [] - } - ], - "sourceTermExactMatchCount": 1, - "url": "url:", - "cloze": { - "sentence": "", - "prefix": "", - "body": "", - "bodyKana": "", - "suffix": "" - } - }, - "glossaryLayoutMode": "default", - "compactTags": false, - "group": true, - "merge": false, - "compactGlossaries": false, - "uniqueExpressions": [ - "打ち込む" - ], - "uniqueReadings": [ - "うちこむ" - ], - "pitches": [ - { - "dictionary": "Test Dictionary 2", - "pitches": [ { "expressions": [ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -12611,7 +14441,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -12621,7 +14451,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -12789,11 +14619,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -12999,11 +14829,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -13053,7 +14883,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -13065,7 +14895,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -14615,11 +16445,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", "tags": [] }, { - "position": 3, + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -14774,11 +16681,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -15078,106 +16985,427 @@ "frequencyAverage": 3, "pitches": [ { - "index": 0, - "expressionIndex": 0, + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + }, + { + "index": 2, + "expressionIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0 }, "expression": "打ち込む", - "reading": "うちこむ", + "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] + } + ], + "phoneticTranscriptions": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "phoneticTranscriptions": [] }, { "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "phoneticTranscriptions": [] + }, + { + "index": 2, "expressionIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0 }, - "expression": "打ち込む", - "reading": "ぶちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] - } - ], - "phoneticTranscriptions": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + "expression": "打ち込む", + "reading": "ぶちこむ", + "phoneticTranscriptions": [] + } + ], + "sourceTermExactMatchCount": 2, + "url": "url:", + "cloze": { + "sentence": "", + "prefix": "", + "body": "", + "bodyKana": "", + "suffix": "" + } + }, + "glossaryLayoutMode": "default", + "compactTags": false, + "group": false, + "merge": true, + "compactGlossaries": false, + "uniqueExpressions": [ + "打ち込む" + ], + "uniqueReadings": [ + "うちこむ", + "ぶちこむ" + ], + "pitches": [ + { + "dictionary": "Test Dictionary 2", + "pitches": [ + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] }, - "expression": "打ち込む", - "reading": "うちこむ", - "phoneticTranscriptions": [] - }, - { - "index": 1, - "expressionIndex": 1, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] }, - "expression": "打ち込む", - "reading": "ぶちこむ", - "phoneticTranscriptions": [] - } - ], - "sourceTermExactMatchCount": 2, - "url": "url:", - "cloze": { - "sentence": "", - "prefix": "", - "body": "", - "bodyKana": "", - "suffix": "" - } - }, - "glossaryLayoutMode": "default", - "compactTags": false, - "group": false, - "merge": true, - "compactGlossaries": false, - "uniqueExpressions": [ - "打ち込む" - ], - "uniqueReadings": [ - "うちこむ", - "ぶちこむ" - ], - "pitches": [ - { - "dictionary": "Test Dictionary 2", - "pitches": [ { "expressions": [ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -15191,7 +17419,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -15205,7 +17433,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -15219,7 +17447,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -15231,7 +17459,7 @@ ] } ], - "pitchCount": 4, + "pitchCount": 20, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -16647,11 +18875,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", "tags": [] }, { - "position": 3, + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -16785,7 +19090,130 @@ "frequency": "twenty-four (24)" }, { - "index": 5, + "index": 5, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 30 + } + ], + "frequencyNumbers": [ + { + "dictionary": "Test Dictionary 2", + "frequency": 3 + } + ], + "frequencyHarmonic": 3, + "frequencyAverage": 3, + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + } + ], + "phoneticTranscriptions": [ + { + "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -16794,21 +19222,10 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": true, - "frequency": 30 - } - ], - "frequencyNumbers": [ - { - "dictionary": "Test Dictionary 2", - "frequency": 3 - } - ], - "frequencyHarmonic": 3, - "frequencyAverage": 3, - "pitches": [ + "phoneticTranscriptions": [] + }, { - "index": 0, + "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -16817,81 +19234,258 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] + "phoneticTranscriptions": [] } ], - "phoneticTranscriptions": [ + "sourceTermExactMatchCount": 1, + "url": "url:", + "cloze": { + "sentence": "", + "prefix": "", + "body": "", + "bodyKana": "", + "suffix": "" + }, + "furiganaSegments": [ { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ] + }, + "glossaryLayoutMode": "default", + "compactTags": false, + "group": false, + "merge": false, + "compactGlossaries": false, + "uniqueExpressions": [ + "打ち込む" + ], + "uniqueReadings": [ + "うちこむ" + ], + "pitches": [ + { + "dictionary": "Test Dictionary 2", + "pitches": [ + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "phoneticTranscriptions": [] - } - ], - "sourceTermExactMatchCount": 1, - "url": "url:", - "cloze": { - "sentence": "", - "prefix": "", - "body": "", - "bodyKana": "", - "suffix": "" - }, - "furiganaSegments": [ - { - "text": "打", - "furigana": "う" - }, - { - "text": "ち", - "furigana": "" - }, - { - "text": "込", - "furigana": "こ" - }, - { - "text": "む", - "furigana": "" - } - ] - }, - "glossaryLayoutMode": "default", - "compactTags": false, - "group": false, - "merge": false, - "compactGlossaries": false, - "uniqueExpressions": [ - "打ち込む" - ], - "uniqueReadings": [ - "うちこむ" - ], - "pitches": [ - { - "dictionary": "Test Dictionary 2", - "pitches": [ { "expressions": [ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -16903,7 +19497,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -16913,7 +19507,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -17095,11 +19689,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -17267,11 +19861,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -17339,7 +19933,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -17351,7 +19945,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -17543,11 +20137,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", "tags": [] }, { - "position": 3, + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -17614,7 +20285,195 @@ "redundant": false } ], - "frequencies": [ + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": "seven" + }, + { + "index": 2, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 12 + }, + { + "index": 3, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "eighteen" + }, + { + "index": 4, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "twenty-four (24)" + }, + { + "index": 5, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 30 + } + ], + "frequencyNumbers": [ + { + "dictionary": "Test Dictionary 2", + "frequency": 3 + } + ], + "frequencyHarmonic": 3, + "frequencyAverage": 3, + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + } + ], + "phoneticTranscriptions": [ { "index": 0, "expressionIndex": 0, @@ -17625,8 +20484,7 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": 3 + "phoneticTranscriptions": [] }, { "index": 1, @@ -17638,156 +20496,258 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": "seven" - }, + "phoneticTranscriptions": [] + } + ], + "sourceTermExactMatchCount": 1, + "url": "url:", + "cloze": { + "sentence": "", + "prefix": "", + "body": "", + "bodyKana": "", + "suffix": "" + }, + "furiganaSegments": [ { - "index": 2, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": 12 + "text": "打", + "furigana": "う" }, { - "index": 3, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "eighteen" + "text": "ち", + "furigana": "" }, { - "index": 4, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "twenty-four (24)" + "text": "込", + "furigana": "こ" }, { - "index": 5, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + "text": "む", + "furigana": "" + } + ] + }, + "glossaryLayoutMode": "default", + "compactTags": false, + "group": false, + "merge": false, + "compactGlossaries": false, + "uniqueExpressions": [ + "打ち込む" + ], + "uniqueReadings": [ + "うちこむ" + ], + "pitches": [ + { + "dictionary": "Test Dictionary 2", + "pitches": [ + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": 30 - } - ], - "frequencyNumbers": [ - { - "dictionary": "Test Dictionary 2", - "frequency": 3 - } - ], - "frequencyHarmonic": 3, - "frequencyAverage": 3, - "pitches": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] - } - ], - "phoneticTranscriptions": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "phoneticTranscriptions": [] - } - ], - "sourceTermExactMatchCount": 1, - "url": "url:", - "cloze": { - "sentence": "", - "prefix": "", - "body": "", - "bodyKana": "", - "suffix": "" - }, - "furiganaSegments": [ - { - "text": "打", - "furigana": "う" - }, - { - "text": "ち", - "furigana": "" - }, - { - "text": "込", - "furigana": "こ" - }, - { - "text": "む", - "furigana": "" - } - ] - }, - "glossaryLayoutMode": "default", - "compactTags": false, - "group": false, - "merge": false, - "compactGlossaries": false, - "uniqueExpressions": [ - "打ち込む" - ], - "uniqueReadings": [ - "うちこむ" - ], - "pitches": [ - { - "dictionary": "Test Dictionary 2", - "pitches": [ { "expressions": [ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -17799,7 +20759,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -17809,7 +20769,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -17991,11 +20951,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -18163,11 +21123,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -18235,7 +21195,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -18247,7 +21207,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -20366,11 +23326,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", "tags": [] }, { - "position": 3, + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -20523,9 +23560,109 @@ "frequency": 3 } ], - "frequencyHarmonic": 3, - "frequencyAverage": 3, - "pitches": [ + "frequencyHarmonic": 3, + "frequencyAverage": 3, + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + } + ], + "phoneticTranscriptions": [ { "index": 0, "expressionIndex": 0, @@ -20536,21 +23673,10 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] - } - ], - "phoneticTranscriptions": [ + "phoneticTranscriptions": [] + }, { - "index": 0, + "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -20610,7 +23736,105 @@ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -20622,7 +23846,109 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -20632,7 +23958,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -20793,11 +24119,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -20965,11 +24291,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -21037,7 +24363,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -21049,7 +24375,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -21220,11 +24546,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", "tags": [] }, { - "position": 3, + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -21392,11 +24795,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", "tags": [] }, { - "position": 3, + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -21414,6 +24894,18 @@ "expression": "打ち込む", "reading": "うちこむ", "phoneticTranscriptions": [] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "phoneticTranscriptions": [] } ], "sourceTermExactMatchCount": 1, @@ -21464,7 +24956,207 @@ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -21476,7 +25168,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -21486,7 +25178,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -21647,11 +25339,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -21819,11 +25511,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -21891,7 +25583,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -21903,7 +25595,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -24022,11 +27714,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", "tags": [] }, { - "position": 3, + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", "tags": [] } ] @@ -24093,7 +27862,195 @@ "redundant": false } ], - "frequencies": [ + "frequencies": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": "seven" + }, + { + "index": 2, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 12 + }, + { + "index": 3, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "eighteen" + }, + { + "index": 4, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "twenty-four (24)" + }, + { + "index": 5, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 30 + } + ], + "frequencyNumbers": [ + { + "dictionary": "Test Dictionary 2", + "frequency": 3 + } + ], + "frequencyHarmonic": 3, + "frequencyAverage": 3, + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + } + ], + "phoneticTranscriptions": [ { "index": 0, "expressionIndex": 0, @@ -24104,8 +28061,7 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": 3 + "phoneticTranscriptions": [] }, { "index": 1, @@ -24117,156 +28073,258 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": "seven" - }, + "phoneticTranscriptions": [] + } + ], + "sourceTermExactMatchCount": 1, + "url": "url:", + "cloze": { + "sentence": "", + "prefix": "", + "body": "", + "bodyKana": "", + "suffix": "" + }, + "furiganaSegments": [ { - "index": 2, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": 12 + "text": "打", + "furigana": "う" }, { - "index": 3, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "eighteen" + "text": "ち", + "furigana": "" }, { - "index": 4, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "twenty-four (24)" + "text": "込", + "furigana": "こ" }, { - "index": 5, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 - }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": 30 - } - ], - "frequencyNumbers": [ - { - "dictionary": "Test Dictionary 2", - "frequency": 3 + "text": "む", + "furigana": "" } - ], - "frequencyHarmonic": 3, - "frequencyAverage": 3, - "pitches": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + ] + }, + "glossaryLayoutMode": "default", + "compactTags": false, + "group": false, + "merge": false, + "compactGlossaries": false, + "uniqueExpressions": [ + "打ち込む" + ], + "uniqueReadings": [ + "うちこむ" + ], + "pitches": [ + { + "dictionary": "Test Dictionary 2", + "pitches": [ + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] - } - ], - "phoneticTranscriptions": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "phoneticTranscriptions": [] - } - ], - "sourceTermExactMatchCount": 1, - "url": "url:", - "cloze": { - "sentence": "", - "prefix": "", - "body": "", - "bodyKana": "", - "suffix": "" - }, - "furiganaSegments": [ - { - "text": "打", - "furigana": "う" - }, - { - "text": "ち", - "furigana": "" - }, - { - "text": "込", - "furigana": "こ" - }, - { - "text": "む", - "furigana": "" - } - ] - }, - "glossaryLayoutMode": "default", - "compactTags": false, - "group": false, - "merge": false, - "compactGlossaries": false, - "uniqueExpressions": [ - "打ち込む" - ], - "uniqueReadings": [ - "うちこむ" - ], - "pitches": [ - { - "dictionary": "Test Dictionary 2", - "pitches": [ { "expressions": [ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -24278,7 +28336,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -24288,7 +28346,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -24449,11 +28507,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -24621,11 +28679,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -24693,7 +28751,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -24705,7 +28763,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -24876,11 +28934,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", "tags": [] }, { - "position": 3, + "positions": "LLLL", "tags": [] } ] @@ -24958,8 +29093,104 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": 3 + "hasReading": false, + "frequency": 3 + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": false, + "frequency": "seven" + }, + { + "index": 2, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 12 + }, + { + "index": 3, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "eighteen" + }, + { + "index": 4, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": "twenty-four (24)" + }, + { + "index": 5, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "hasReading": true, + "frequency": 30 + } + ], + "frequencyNumbers": [ + { + "dictionary": "Test Dictionary 2", + "frequency": 3 + } + ], + "frequencyHarmonic": 3, + "frequencyAverage": 3, + "pitches": [ + { + "index": 0, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] }, { "index": 1, @@ -24971,11 +29202,77 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": false, - "frequency": "seven" - }, + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", + "tags": [] + }, + { + "positions": "LLLL", + "tags": [] + } + ] + } + ], + "phoneticTranscriptions": [ { - "index": 2, + "index": 0, "expressionIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -24984,143 +29281,270 @@ }, "expression": "打ち込む", "reading": "うちこむ", - "hasReading": true, - "frequency": 12 + "phoneticTranscriptions": [] }, { - "index": 3, + "index": 1, "expressionIndex": 0, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", "dictionaryOrder": { "index": 0 }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "eighteen" - }, - { - "index": 4, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + "expression": "打ち込む", + "reading": "うちこむ", + "phoneticTranscriptions": [] + } + ], + "sourceTermExactMatchCount": 1, + "url": "url:", + "cloze": { + "sentence": "", + "prefix": "", + "body": "", + "bodyKana": "", + "suffix": "" + }, + "furiganaSegments": [ + { + "text": "打", + "furigana": "う" + }, + { + "text": "ち", + "furigana": "" + }, + { + "text": "込", + "furigana": "こ" + }, + { + "text": "む", + "furigana": "" + } + ] + }, + "glossaryLayoutMode": "default", + "compactTags": false, + "group": false, + "merge": false, + "compactGlossaries": false, + "uniqueExpressions": [ + "打ち込む" + ], + "uniqueReadings": [ + "うちこむ" + ], + "pitches": [ + { + "dictionary": "Test Dictionary 2", + "pitches": [ + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": "twenty-four (24)" - }, - { - "index": 5, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "hasReading": true, - "frequency": 30 - } - ], - "frequencyNumbers": [ - { - "dictionary": "Test Dictionary 2", - "frequency": 3 - } - ], - "frequencyHarmonic": 3, - "frequencyAverage": 3, - "pitches": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "pitches": [ - { - "position": 0, - "tags": [] - }, - { - "position": 3, - "tags": [] - } - ] - } - ], - "phoneticTranscriptions": [ - { - "index": 0, - "expressionIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryAlias": "termsDictAlias", - "dictionaryOrder": { - "index": 0 + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [] }, - "expression": "打ち込む", - "reading": "うちこむ", - "phoneticTranscriptions": [] - } - ], - "sourceTermExactMatchCount": 1, - "url": "url:", - "cloze": { - "sentence": "", - "prefix": "", - "body": "", - "bodyKana": "", - "suffix": "" - }, - "furiganaSegments": [ - { - "text": "打", - "furigana": "う" - }, - { - "text": "ち", - "furigana": "" - }, - { - "text": "込", - "furigana": "こ" - }, - { - "text": "む", - "furigana": "" - } - ] - }, - "glossaryLayoutMode": "default", - "compactTags": false, - "group": false, - "merge": false, - "compactGlossaries": false, - "uniqueExpressions": [ - "打ち込む" - ], - "uniqueReadings": [ - "うちこむ" - ], - "pitches": [ - { - "dictionary": "Test Dictionary 2", - "pitches": [ { "expressions": [ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -25132,7 +29556,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -25142,7 +29566,7 @@ ] } ], - "pitchCount": 2, + "pitchCount": 18, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -25303,11 +29727,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -25475,11 +29899,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -25547,7 +29971,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -25559,7 +29983,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -28183,11 +32607,88 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", "tags": [] }, { - "position": 3, + "positions": "LLLL", "tags": [] } ] @@ -28342,11 +32843,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -28657,17 +33158,94 @@ "reading": "うちこむ", "pitches": [ { - "position": 0, + "positions": 0, + "tags": [] + }, + { + "positions": 3, + "tags": [] + } + ] + }, + { + "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "pitches": [ + { + "positions": "HHHH", + "tags": [] + }, + { + "positions": "HHHL", + "tags": [] + }, + { + "positions": "HHLH", + "tags": [] + }, + { + "positions": "HHLL", + "tags": [] + }, + { + "positions": "HLHH", + "tags": [] + }, + { + "positions": "HLHL", + "tags": [] + }, + { + "positions": "HLLH", + "tags": [] + }, + { + "positions": "HLLL", + "tags": [] + }, + { + "positions": "LHHH", + "tags": [] + }, + { + "positions": "LHHL", + "tags": [] + }, + { + "positions": "LHLH", + "tags": [] + }, + { + "positions": "LHLL", + "tags": [] + }, + { + "positions": "LLHH", + "tags": [] + }, + { + "positions": "LLHL", + "tags": [] + }, + { + "positions": "LLLH", "tags": [] }, { - "position": 3, + "positions": "LLLL", "tags": [] } ] }, { - "index": 1, + "index": 2, "expressionIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -28678,11 +33256,11 @@ "reading": "ぶちこむ", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] }, { - "position": 3, + "positions": 3, "tags": [] } ] @@ -28703,6 +33281,18 @@ }, { "index": 1, + "expressionIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryAlias": "termsDictAlias", + "dictionaryOrder": { + "index": 0 + }, + "expression": "打ち込む", + "reading": "うちこむ", + "phoneticTranscriptions": [] + }, + { + "index": 2, "expressionIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryAlias": "termsDictAlias", @@ -28745,7 +33335,239 @@ "打ち込む" ], "reading": "うちこむ", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [], + "exclusiveExpressions": [], + "exclusiveReadings": [ + "うちこむ" + ] + }, + { + "expressions": [ + "打ち込む" + ], + "reading": "うちこむ", + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -28759,7 +33581,7 @@ "打ち込む" ], "reading": "うちこむ", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -28773,7 +33595,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -28787,7 +33609,7 @@ "打ち込む" ], "reading": "ぶちこむ", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [], @@ -28799,7 +33621,7 @@ ] } ], - "pitchCount": 4, + "pitchCount": 20, "phoneticTranscriptions": [ { "dictionary": "Test Dictionary 2", @@ -29465,7 +34287,7 @@ "reading": "おてまえ", "pitches": [ { - "position": 2, + "positions": 2, "tags": [ { "name": "P1", @@ -29479,7 +34301,7 @@ ] }, { - "position": 2, + "positions": 2, "tags": [ { "name": "P2", @@ -29493,7 +34315,7 @@ ] }, { - "position": 0, + "positions": 0, "tags": [ { "name": "P2", @@ -29559,7 +34381,7 @@ "reading": "おてまえ", "pitches": [ { - "position": 2, + "positions": 2, "tags": [ { "name": "P1", @@ -29573,7 +34395,7 @@ ] }, { - "position": 2, + "positions": 2, "tags": [ { "name": "P2", @@ -29587,7 +34409,7 @@ ] }, { - "position": 0, + "positions": 0, "tags": [ { "name": "P2", @@ -29657,7 +34479,7 @@ "お手前" ], "reading": "おてまえ", - "position": 2, + "positions": 2, "nasalPositions": [], "devoicePositions": [], "tags": [ @@ -29683,7 +34505,7 @@ "お手前" ], "reading": "おてまえ", - "position": 2, + "positions": 2, "nasalPositions": [], "devoicePositions": [], "tags": [ @@ -29709,7 +34531,7 @@ "お手前" ], "reading": "おてまえ", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [ @@ -29801,7 +34623,7 @@ "reading": "ばんごう", "pitches": [ { - "position": 3, + "positions": 3, "tags": [] } ] @@ -29853,7 +34675,7 @@ "reading": "ばんごう", "pitches": [ { - "position": 3, + "positions": 3, "tags": [] } ] @@ -29909,7 +34731,7 @@ "番号" ], "reading": "ばんごう", - "position": 3, + "positions": 3, "nasalPositions": [ 3 ], @@ -29989,7 +34811,7 @@ "reading": "ちゅうごし", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] } ] @@ -30041,7 +34863,7 @@ "reading": "ちゅうごし", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] } ] @@ -30097,7 +34919,7 @@ "中腰" ], "reading": "ちゅうごし", - "position": 0, + "positions": 0, "nasalPositions": [ 3 ], @@ -30177,7 +34999,7 @@ "reading": "しょぎょう", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] } ] @@ -30229,7 +35051,7 @@ "reading": "しょぎょう", "pitches": [ { - "position": 0, + "positions": 0, "tags": [] } ] @@ -30285,7 +35107,7 @@ "所業" ], "reading": "しょぎょう", - "position": 0, + "positions": 0, "nasalPositions": [ 2 ], @@ -30365,7 +35187,7 @@ "reading": "どぼくこうじ", "pitches": [ { - "position": 4, + "positions": 4, "tags": [] } ] @@ -30417,7 +35239,7 @@ "reading": "どぼくこうじ", "pitches": [ { - "position": 4, + "positions": 4, "tags": [] } ] @@ -30473,7 +35295,7 @@ "土木工事" ], "reading": "どぼくこうじ", - "position": 4, + "positions": 4, "nasalPositions": [], "devoicePositions": [ 3 diff --git a/test/data/translator-test-results.json b/test/data/translator-test-results.json index 5fa0f31845..1b38c8f6e7 100644 --- a/test/data/translator-test-results.json +++ b/test/data/translator-test-results.json @@ -1828,14 +1828,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -2026,14 +2155,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -2224,14 +2353,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -2422,14 +2680,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -5072,32 +5330,19 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] } ] - } - ], - "frequencies": [ - { - "index": 0, - "headwordIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", - "hasReading": false, - "frequency": 3, - "displayValue": null, - "displayValueParsed": false }, { "index": 1, @@ -5105,23 +5350,165 @@ "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, "dictionaryAlias": "termsDictAlias", - "hasReading": false, - "frequency": 7, - "displayValue": "seven", - "displayValueParsed": false - }, - { - "index": 2, - "headwordIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", - "hasReading": true, - "frequency": 12, - "displayValue": null, - "displayValueParsed": false - }, - { + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + } + ], + "frequencies": [ + { + "index": 0, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "hasReading": false, + "frequency": 3, + "displayValue": null, + "displayValueParsed": false + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "hasReading": false, + "frequency": 7, + "displayValue": "seven", + "displayValueParsed": false + }, + { + "index": 2, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "hasReading": true, + "frequency": 12, + "displayValue": null, + "displayValueParsed": false + }, + { "index": 3, "headwordIndex": 0, "dictionary": "Test Dictionary 2", @@ -5270,14 +5657,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -5832,14 +6348,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -6030,14 +6546,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -7458,14 +7974,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -7704,14 +8349,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -8896,14 +9541,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -8912,6 +9557,135 @@ }, { "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 2, "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, @@ -8919,14 +9693,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -9989,32 +10763,19 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] } ] - } - ], - "frequencies": [ - { - "index": 0, - "headwordIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", - "hasReading": false, - "frequency": 3, - "displayValue": null, - "displayValueParsed": false }, { "index": 1, @@ -10022,23 +10783,165 @@ "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, "dictionaryAlias": "termsDictAlias", - "hasReading": false, - "frequency": 7, - "displayValue": "seven", - "displayValueParsed": false - }, - { - "index": 2, - "headwordIndex": 0, - "dictionary": "Test Dictionary 2", - "dictionaryIndex": 0, - "dictionaryAlias": "termsDictAlias", - "hasReading": true, - "frequency": 12, - "displayValue": null, - "displayValueParsed": false - }, - { + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + } + ], + "frequencies": [ + { + "index": 0, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "hasReading": false, + "frequency": 3, + "displayValue": null, + "displayValueParsed": false + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "hasReading": false, + "frequency": 7, + "displayValue": "seven", + "displayValueParsed": false + }, + { + "index": 2, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "hasReading": true, + "frequency": 12, + "displayValue": null, + "displayValueParsed": false + }, + { "index": 3, "headwordIndex": 0, "dictionary": "Test Dictionary 2", @@ -10208,14 +11111,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -10427,14 +11330,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -10646,14 +11678,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -11925,14 +12957,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -12125,14 +13286,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -12325,14 +13486,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -12525,14 +13815,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -13816,14 +15106,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -14016,14 +15435,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -14216,14 +15635,143 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": 3, + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": "LLLL", "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -14416,14 +15964,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -16238,14 +17786,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -16254,6 +17802,135 @@ }, { "index": 1, + "headwordIndex": 0, + "dictionary": "Test Dictionary 2", + "dictionaryIndex": 0, + "dictionaryAlias": "termsDictAlias", + "pronunciations": [ + { + "type": "pitch-accent", + "positions": "HHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HHLL", + "nasalPositions": [], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "HLLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LHLL", + "nasalPositions": [ + 3 + ], + "devoicePositions": [ + 2 + ], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLHL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLH", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + }, + { + "type": "pitch-accent", + "positions": "LLLL", + "nasalPositions": [], + "devoicePositions": [], + "tags": [] + } + ] + }, + { + "index": 2, "headwordIndex": 1, "dictionary": "Test Dictionary 2", "dictionaryIndex": 0, @@ -16261,14 +17938,14 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [] }, { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [], "devoicePositions": [], "tags": [] @@ -16925,7 +18602,7 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 2, + "positions": 2, "nasalPositions": [], "devoicePositions": [], "tags": [ @@ -16946,7 +18623,7 @@ }, { "type": "pitch-accent", - "position": 2, + "positions": 2, "nasalPositions": [], "devoicePositions": [], "tags": [ @@ -16967,7 +18644,7 @@ }, { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [], "devoicePositions": [], "tags": [ @@ -17083,7 +18760,7 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 3, + "positions": 3, "nasalPositions": [ 3 ], @@ -17187,7 +18864,7 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [ 3 ], @@ -17291,7 +18968,7 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 0, + "positions": 0, "nasalPositions": [ 2 ], @@ -17395,7 +19072,7 @@ "pronunciations": [ { "type": "pitch-accent", - "position": 4, + "positions": 4, "nasalPositions": [], "devoicePositions": [ 3 diff --git a/test/options-util.test.js b/test/options-util.test.js index 039d31dd8f..cc72ddccd2 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -689,7 +689,7 @@ function createOptionsUpdatedTestData1() { }, ], profileCurrent: 0, - version: 67, + version: 68, global: { database: { prefixWildcardsSupported: false, diff --git a/types/ext/anki-templates.d.ts b/types/ext/anki-templates.d.ts index 7391693ebe..53f5ecabf6 100644 --- a/types/ext/anki-templates.d.ts +++ b/types/ext/anki-templates.d.ts @@ -88,7 +88,7 @@ export type PitchGroup = { export type Pitch = { expressions: string[]; reading: string; - position: number; + positions: number | string; nasalPositions: number[]; devoicePositions: number[]; tags: PitchTag[]; @@ -270,7 +270,7 @@ export type TermPitchAccent = { }; export type PitchAccent = { - position: number; + positions: number | string; tags: Tag[]; }; diff --git a/types/ext/dictionary-data.d.ts b/types/ext/dictionary-data.d.ts index 85d2320403..0214ebc95d 100644 --- a/types/ext/dictionary-data.d.ts +++ b/types/ext/dictionary-data.d.ts @@ -162,7 +162,7 @@ export type TermMetaFrequency = [ export type TermMetaPitchData = { reading: string; pitches: { - position: number; + position: number | string; nasal?: number | number[]; devoice?: number | number[]; tags?: string[]; diff --git a/types/ext/dictionary.d.ts b/types/ext/dictionary.d.ts index 689a4fa787..4499246c63 100644 --- a/types/ext/dictionary.d.ts +++ b/types/ext/dictionary.d.ts @@ -415,7 +415,7 @@ export type PitchAccent = { /** * Position of the downstep, as a number of mora. */ - position: number; + positions: number | string; /** * Positions of morae with a nasal sound. */