From c220ed27ef7a85d055fa6c137d5c4d472d4ddd05 Mon Sep 17 00:00:00 2001 From: scarletrunner7000 Date: Sun, 21 May 2017 16:40:04 +0900 Subject: [PATCH 1/7] add team3 --- team3/.gitignore | 6 + team3/Gopkg.lock | 55 +++++++++ team3/Gopkg.toml | 8 ++ team3/Makefile | 98 +++++++++++++++ team3/_etc/seed.db | Bin 0 -> 16384 bytes team3/assets/css/app.css | 14 +++ team3/assets/js/app.js | 113 ++++++++++++++++++ team3/bot/bot.go | 103 ++++++++++++++++ team3/bot/broadcaster.go | 47 ++++++++ team3/bot/checker.go | 32 +++++ team3/bot/poster.go | 32 +++++ team3/bot/processor.go | 74 ++++++++++++ team3/bot/util.go | 84 +++++++++++++ team3/controller/message.go | 105 ++++++++++++++++ team3/db/db.go | 56 +++++++++ team3/dbconfig.yml | 11 ++ team3/env/.gitignore | 1 + team3/env/env.go.tmpl | 11 ++ team3/httputil/httputil.go | 28 +++++ team3/migrations/1_create_message_table.sql | 11 ++ team3/model/message.go | 75 ++++++++++++ team3/runner.conf | 14 +++ team3/sample.db | Bin 0 -> 12288 bytes team3/server.go | 126 ++++++++++++++++++++ team3/templates/index.html | 36 ++++++ team3/test.db | Bin 0 -> 16384 bytes 26 files changed, 1140 insertions(+) create mode 100644 team3/.gitignore create mode 100644 team3/Gopkg.lock create mode 100644 team3/Gopkg.toml create mode 100644 team3/Makefile create mode 100644 team3/_etc/seed.db create mode 100644 team3/assets/css/app.css create mode 100644 team3/assets/js/app.js create mode 100644 team3/bot/bot.go create mode 100644 team3/bot/broadcaster.go create mode 100644 team3/bot/checker.go create mode 100644 team3/bot/poster.go create mode 100644 team3/bot/processor.go create mode 100644 team3/bot/util.go create mode 100644 team3/controller/message.go create mode 100644 team3/db/db.go create mode 100644 team3/dbconfig.yml create mode 100644 team3/env/.gitignore create mode 100644 team3/env/env.go.tmpl create mode 100644 team3/httputil/httputil.go create mode 100644 team3/migrations/1_create_message_table.sql create mode 100644 team3/model/message.go create mode 100644 team3/runner.conf create mode 100644 team3/sample.db create mode 100644 team3/server.go create mode 100644 team3/templates/index.html create mode 100644 team3/test.db diff --git a/team3/.gitignore b/team3/.gitignore new file mode 100644 index 0000000..6225f27 --- /dev/null +++ b/team3/.gitignore @@ -0,0 +1,6 @@ +vendor/ +server +tmp/ + +.idea +dev.db diff --git a/team3/Gopkg.lock b/team3/Gopkg.lock new file mode 100644 index 0000000..146accf --- /dev/null +++ b/team3/Gopkg.lock @@ -0,0 +1,55 @@ +memo = "6a6412b297df1cc2de5caa1c9c6ba1eb1c6628f9697bad13dfeea03edaaa6105" + +[[projects]] + name = "github.com/gin-gonic/gin" + packages = [".","binding","render"] + revision = "e2212d40c62a98b388a5eb48ecbdcf88534688ba" + version = "v1.1.4" + +[[projects]] + branch = "master" + name = "github.com/golang/protobuf" + packages = ["proto"] + revision = "2bba0603135d7d7f5cb73b2125beeda19c09f4ef" + +[[projects]] + branch = "master" + name = "github.com/manucorporat/sse" + packages = ["."] + revision = "ee05b128a739a0fb76c7ebd3ae4810c1de808d6d" + +[[projects]] + name = "github.com/mattn/go-isatty" + packages = ["."] + revision = "fc9e8d8ef48496124e79ae0df75490096eccf6fe" + version = "v0.0.2" + +[[projects]] + name = "github.com/mattn/go-sqlite3" + packages = ["."] + revision = "ca5e3819723d8eeaf170ad510e7da1d6d2e94a08" + version = "v1.2.0" + +[[projects]] + branch = "master" + name = "golang.org/x/net" + packages = ["context"] + revision = "5602c733f70afc6dcec6766be0d5034d4c4f14de" + +[[projects]] + branch = "master" + name = "golang.org/x/sys" + packages = ["unix"] + revision = "f3918c30c5c2cb527c0b071a27c35120a6c0719a" + +[[projects]] + name = "gopkg.in/go-playground/validator.v8" + packages = ["."] + revision = "5f57d2222ad794d0dffb07e664ea05e2ee07d60c" + version = "v8.18.1" + +[[projects]] + branch = "v2" + name = "gopkg.in/yaml.v2" + packages = ["."] + revision = "cd8b52f8269e0feb286dfeef29f8fe4d5b397e0b" diff --git a/team3/Gopkg.toml b/team3/Gopkg.toml new file mode 100644 index 0000000..6fbeedd --- /dev/null +++ b/team3/Gopkg.toml @@ -0,0 +1,8 @@ + +[[dependencies]] + name = "github.com/gin-gonic/gin" + version = "1.1.4" + +[[dependencies]] + name = "github.com/mattn/go-sqlite3" + version = "1.2.0" diff --git a/team3/Makefile b/team3/Makefile new file mode 100644 index 0000000..2691dd1 --- /dev/null +++ b/team3/Makefile @@ -0,0 +1,98 @@ +.DEFAULT_GOAL := help + +GOOS = darwin +GOARCH = amd64 +VERSION = $(shell git rev-parse HEAD) +ENV = test +host=localhost:8080 + +server: + go run server.go + +## Live reload +watch: + fresh + +## Install dependency tools +deps: + which make2help || go get -u github.com/Songmu/make2help/cmd/make2help + which dep || go get -u github.com/golang/dep/... + which sql-migrate || go get -u github.com/rubenv/sql-migrate/... + which fresh || go get -u github.com/pilu/fresh + which golint || go get -u github.com/golang/lint/golint + +## Install dependency packages, cache compiled packages +install: deps env/env.go dev.db + dep ensure + go install + +## Build app +build: + GOOS=$(GOOS) GOARCH=$(GOARCH) go build -ldflags "-X=main.version=$(VERSION)" server.go + +## Check code format +check: fmt vet lint + +fmt: + go fmt $$(go list ./... | grep -v vendor) + +vet: + go vet $$(go list ./... | grep -v vendor) + +lint: + golint $$(go list ./... | grep -v vendor) + +clean: clean_vendor + +## Clean vendor directory +clean_vendor: + rm -rf vendor/ + +## Show help +help: + @make2help -all + +## Migrate db schema +migrate_up: + sql-migrate up -env=$(ENV) + +## Migrate db schema(dryrun) +migrate_dryrun: + sql-migrate up -env=$(ENV) -dryrun + +## Show migration status +migrate_status: + sql-migrate status -env=$(ENV) + +curl_messages_ping: + curl -i $(host)/api/ping + +curl_messages_get_all: + curl -i $(host)/api/messages + +curl_messages_get: + curl -i $(host)/api/messages/$(id) + +curl_message_create: + curl -i -X POST $(host)/api/messages -d '{"body": "$(body)"}' + +curl_message_put: + curl -i -X PUT $(host)/api/messages/$(id) -d '{"body": "$(body)"}' + +curl_message_delete: + curl -i -X DELETE $(host)/api/messages/$(id) -d '{"body": "$(body)"}' + +dev.db: + $(MAKE) db_init + +## Initialize database +db_init: + cp -i _etc/seed.db dev.db + +## Initialize environment configuration file +env/env.go: + cp env/env.go.tmpl env/env.go + +## Build godoc server(http://localhost:6060) +godoc_server: + godoc -http=:6060 diff --git a/team3/_etc/seed.db b/team3/_etc/seed.db new file mode 100644 index 0000000000000000000000000000000000000000..0c9e69a26542beef386cbf9e63c4a9ff4211023c GIT binary patch literal 16384 zcmeI%!EVzq7zc2tnL1Xf3YTezX~^W#R$Z&4Sy!zHX@Lb)(Uz^tBzB6t#_Iw}6Ot6@ zafk!2#Dx=2!hvVl5w~3>XvH{y5R?8^EXVn5$Nnjo*vCh0FXi++j02WZgWM&OMD{5q zgk(it5qX|6;^xP?G!NWRW=Z8+F0Wh>Ie$fzitX^M#`pi1ro;ErQ-7&ST7a~4yb6`C&PuezB)mf8-4_zKRLl*GgwCu;6rQD@< zt79G8X6JBu(BgrZ?j&9;48ymDZCdcdKJ!yA;Du6Y_QFx*{@F0O(&d`8x=}7mm#rz< zAdDj?@CGqUy>OT;R5L#zstZw-7FEwx=^GaJFIZfx)$1iX3{yHB`96(eFJSSQzT)F; zsQj2?kv2`(H9=b;#0db`P}j% zOUh>=E+hy*00Izz00bZa0SG_<0uX=z1pZ5beMvTtb!WCi;#_akIMdCEs@M~#X?mlg z)hn7#b-k(YHfwsd*3kC$c6S=JvbNXMw47L%q!Rxw+QmeOCl>(qEwYH%Ew!~NK7085P$##AOHafKmY;|fB*y_@D~M|QkJaW zH;jvLz!MfkJ|87KUOHwMr|XL+?>h}KjeF~P!-%|bxD>88<=M!S=nW&+jpeRJGc)UZ NJ{qu_`fAI4weJoM`w9R6 literal 0 HcmV?d00001 diff --git a/team3/assets/css/app.css b/team3/assets/css/app.css new file mode 100644 index 0000000..5abfd40 --- /dev/null +++ b/team3/assets/css/app.css @@ -0,0 +1,14 @@ +.message { + padding: 10px 10px; + border-bottom: 1px solid #eee; +} + +.message-body .action-button { + margin: 0px 3px; + color: #c1c1c1; + cursor: pointer; +} + +.message-body .action-button:hover { + color: #444444; +} \ No newline at end of file diff --git a/team3/assets/js/app.js b/team3/assets/js/app.js new file mode 100644 index 0000000..ce67277 --- /dev/null +++ b/team3/assets/js/app.js @@ -0,0 +1,113 @@ +(function() { + 'use strict'; + const Message = function() { + this.body = ''; + }; + + Vue.component('message', { + // 1-1. ユーザー名を表示しよう + props: ['id', 'body', 'removeMessage', 'updateMessage'], + data() { + return { + editing: false, + editedBody: null, + displayedBody: this.body, + } + }, + // 1-1. ユーザー名を表示しよう + template: ` +
+
+
+ + + +
+
+
+ {{ displayedBody }} + + +
+
+ `, + methods: { + remove() { + this.removeMessage(this.id) + .then(() => { + console.log('Deleting message') + }) + }, + edit() { + this.editing = true + this.editedBody = this.displayedBody + }, + cancelEdit() { + this.editing = false + this.editedBody = null + }, + doneEdit() { + this.updateMessage({id: this.id, body: this.editedBody}) + .then(data => { + console.log('Updating message') + this.cancelEdit() + }) + } + } + }); + + const app = new Vue({ + el: '#app', + data: { + messages: [], + newMessage: new Message() + }, + created() { + this.getMessages(); + }, + methods: { + getMessages() { + fetch('/api/messages').then(response => response.json()).then(data => { + this.messages = data.result; + }); + }, + sendMessage() { + const message = this.newMessage; + fetch('/api/messages', { + method: 'POST', + body: JSON.stringify(message) + }) + .then(response => response.json()) + .then(response => { + if (response.error) { + alert(response.error.message); + return; + } + this.messages.push(response.result); + this.clearMessage(); + }) + .catch(error => { + console.log(error); + }); + }, + removeMessage(id) { + return fetch(`/api/messages/${id}`, { + method: 'DELETE' + }) + .then(response => response.json()) + }, + updateMessage(message) { + return fetch(`/api/messages/${message.id}`, { + method: 'PUT', + body: JSON.stringify(message), + }) + .then(response => response.json()) + }, + clearMessage() { + this.newMessage = new Message(); + } + // 1-3. メッセージを編集しよう + // ... + } + }); +})(); diff --git a/team3/bot/bot.go b/team3/bot/bot.go new file mode 100644 index 0000000..d6bfd7c --- /dev/null +++ b/team3/bot/bot.go @@ -0,0 +1,103 @@ +package bot + +import ( + "context" + "fmt" + + "github.com/VG-Tech-Dojo/vg-1day-2017-05-20/team3/model" +) + +type ( + // Bot はinで受け取ったmessageがcheckerの条件を満たした場合、processorが投稿用messageを作り、outに渡します + // + // fields + // name string + // in chan *model.Message + // out chan *model.Message + // checker Checker + // processor Processor + Bot struct { + name string + in chan *model.Message + out chan *model.Message + checker Checker + processor Processor + } +) + +// Run はBotを起動します +func (b *Bot) Run(ctx context.Context) { + fmt.Printf("%s start\n", b.name) + + // メッセージ監視 + for { + select { + case <-ctx.Done(): + fmt.Printf("%s stop", b.name) + return + case m := <-b.in: + fmt.Printf("%s received: %v\n", b.name, m) + + if b.checker.Check(m) { + b.respond(m) + } + } + } +} + +// NewHelloWorldBot は"hello"を受け取ると"hello, world!"を返す新しいBotの構造体のポインタを返します +func NewHelloWorldBot(out chan *model.Message) *Bot { + in := make(chan *model.Message) + + checker := NewRegexpChecker("\\Ahello\\z") + + processor := &HelloWorldProcessor{} + + return &Bot{ + name: "helloworldbot", + in: in, + out: out, + checker: checker, + processor: processor, + } +} + +// NewOmikujiBot は"大吉", "吉", "中吉", "小吉", "末吉", "凶"のいずれかをランダムで返す新しいBotの構造体のポインタを返します +func NewOmikujiBot(out chan *model.Message) *Bot { + in := make(chan *model.Message) + + checker := NewRegexpChecker("\\Aomikuji\\z") + + processor := &OmikujiProcessor{} + + return &Bot{ + name: "omikujibot", + in: in, + out: out, + checker: checker, + processor: processor, + } +} + +// NewKeywordBot はメッセージ本文からキーワードを抽出して返す新しいBotの構造体のポインタを返します +func NewKeywordBot(out chan *model.Message) *Bot { + in := make(chan *model.Message) + + checker := NewRegexpChecker("\\Akeyword .*") + + processor := &KeywordProcessor{} + + return &Bot{ + name: "keywordbot", + in: in, + out: out, + checker: checker, + processor: processor, + } +} + +func (b *Bot) respond(m *model.Message) { + message := b.processor.Process(m) + b.out <- message + fmt.Printf("%s send: %v\n", b.name, message) +} diff --git a/team3/bot/broadcaster.go b/team3/bot/broadcaster.go new file mode 100644 index 0000000..5f9f575 --- /dev/null +++ b/team3/bot/broadcaster.go @@ -0,0 +1,47 @@ +package bot + +import ( + "github.com/VG-Tech-Dojo/vg-1day-2017-05-20/team3/model" +) + +type ( + // Broadcaster は1つのチャンネルで複数botを動かすためのヘルパーです + // + // msgInで受け取ったmessageをbotsに登録された全botに渡します + // + // botsへの登録はBotInで行います + // + // fields + // BotIn chan *Bot + // bots map[*Bot]bool + // msgIn chan *model.Message + Broadcaster struct { + BotIn chan *Bot + bots []*Bot + msgIn chan *model.Message + } +) + +// Run はBroadcasterを起動します +func (b *Broadcaster) Run() { + for { + select { + case bot := <-b.BotIn: + b.bots = append(b.bots, bot) + case msg := <-b.msgIn: + for _, bot := range b.bots { + bot.in <- msg + } + } + } +} + +// NewBroadcaster は新しいBroadcaster構造体のポインタを返します +func NewBroadcaster(msgIn chan *model.Message) *Broadcaster { + memberIn := make(chan *Bot) + return &Broadcaster{ + BotIn: memberIn, + bots: []*Bot{}, + msgIn: msgIn, + } +} diff --git a/team3/bot/checker.go b/team3/bot/checker.go new file mode 100644 index 0000000..df18e39 --- /dev/null +++ b/team3/bot/checker.go @@ -0,0 +1,32 @@ +package bot + +import ( + "regexp" + + "github.com/VG-Tech-Dojo/vg-1day-2017-05-20/team3/model" +) + +type ( + // Checker はmessageを受け取り、条件を満たすか判定するインターフェースです + Checker interface { + Check(*model.Message) bool + } + + // RegexpChecker は 正規表現を満たす場合true、そうでない場合falseを返す構造体です + RegexpChecker struct { + regexp *regexp.Regexp + } +) + +// Check は正規表現を満たす場合true、そうでない場合falseを返します +func (c *RegexpChecker) Check(m *model.Message) bool { + return c.regexp.MatchString(m.Body) +} + +// NewRegexpChecker は新しいRegexpChecker構造体のポインタを返します +func NewRegexpChecker(pattern string) *RegexpChecker { + r := regexp.MustCompile(pattern) + return &RegexpChecker{ + regexp: r, + } +} diff --git a/team3/bot/poster.go b/team3/bot/poster.go new file mode 100644 index 0000000..bf142c2 --- /dev/null +++ b/team3/bot/poster.go @@ -0,0 +1,32 @@ +package bot + +import ( + "github.com/VG-Tech-Dojo/vg-1day-2017-05-20/team3/model" +) + +const ( + postURL = "http://localhost:8080/api/messages" +) + +type ( + // Poster はInに渡されたmessageをPOSTするための構造体です + Poster struct { + In chan *model.Message + } +) + +// Run はPosterを起動します +func (p *Poster) Run() { + for m := range p.In { + out := &model.Message{} + go postJSON(postURL, m, out) + } +} + +// NewPoster は新しいPoster構造体のポインタを返します +func NewPoster(bufferSize int) *Poster { + in := make(chan *model.Message, bufferSize) + return &Poster{ + In: in, + } +} diff --git a/team3/bot/processor.go b/team3/bot/processor.go new file mode 100644 index 0000000..784c0ca --- /dev/null +++ b/team3/bot/processor.go @@ -0,0 +1,74 @@ +package bot + +import ( + "regexp" + "strings" + + "fmt" + "github.com/VG-Tech-Dojo/vg-1day-2017-05-20/team3/env" + "github.com/VG-Tech-Dojo/vg-1day-2017-05-20/team3/model" +) + +const ( + keywordApiUrlFormat = "https://jlp.yahooapis.jp/KeyphraseService/V1/extract?appid=%s&sentence=%s&output=json" +) + +type ( + // Processor はmessageを受け取り、投稿用messageを作るインターフェースです + Processor interface { + Process(message *model.Message) *model.Message + } + + // HelloWorldProcessor は"hello, world!"メッセージを作るprocessorの構造体です + HelloWorldProcessor struct{} + + // OmikujiProcessor は"大吉", "吉", "中吉", "小吉", "末吉", "凶"のいずれかをランダムで作るprocessorの構造体です + OmikujiProcessor struct{} + + // メッセージ本文からキーワードを抽出するprocessorの構造体です + KeywordProcessor struct{} +) + +// Process は"hello, world!"というbodyがセットされたメッセージのポインタを返します +func (p *HelloWorldProcessor) Process(msgIn *model.Message) *model.Message { + return &model.Message{ + Body: msgIn.Body + ", world!", + } +} + +// Process は"大吉", "吉", "中吉", "小吉", "末吉", "凶"のいずれかがbodyにセットされたメッセージへのポインタを返します +func (p *OmikujiProcessor) Process(msgIn *model.Message) *model.Message { + fortunes := []string{ + "大吉", + "吉", + "中吉", + "小吉", + "末吉", + "凶", + } + result := fortunes[randIntn(len(fortunes))] + return &model.Message{ + Body: result, + } +} + +// Process はメッセージ本文からキーワードを抽出します +func (p *KeywordProcessor) Process(msgIn *model.Message) *model.Message { + r := regexp.MustCompile("\\Akeyword (.*)\\z") + matchedStrings := r.FindStringSubmatch(msgIn.Body) + text := matchedStrings[1] + + url := fmt.Sprintf(keywordApiUrlFormat, env.KeywordApiAppId, text) + + json := map[string]int{} + get(url, &json) + + keywords := []string{} + for keyword := range map[string]int(json) { + keywords = append(keywords, keyword) + } + + return &model.Message{ + Body: "キーワード:" + strings.Join(keywords, ", "), + } +} diff --git a/team3/bot/util.go b/team3/bot/util.go new file mode 100644 index 0000000..bb7430a --- /dev/null +++ b/team3/bot/util.go @@ -0,0 +1,84 @@ +package bot + +import ( + "bytes" + "encoding/json" + "io/ioutil" + "math/rand" + "net/http" + "net/url" + "time" +) + +// get はurlにGETします +func get(url string, out interface{}) error { + resp, err := http.Get(url) + if err != nil { + return err + } + defer resp.Body.Close() + + respBody, err := ioutil.ReadAll(resp.Body) + if err != nil { + return err + } + + err = json.Unmarshal(respBody, out) + if err != nil { + return err + } + + return nil +} + +// post はurlにparamsをPOSTします +func post(url string, params url.Values, out interface{}) error { + resp, err := http.PostForm(url, params) + if err != nil { + return err + } + defer resp.Body.Close() + + respBody, err := ioutil.ReadAll(resp.Body) + if err != nil { + return err + } + + err = json.Unmarshal(respBody, out) + if err != nil { + return err + } + + return nil +} + +// postJSON はinputをJSON形式でurlにPOSTします +func postJSON(url string, input interface{}, output interface{}) error { + data, err := json.Marshal(input) + if err != nil { + return err + } + + resp, err := http.Post(url, "application/json", bytes.NewBuffer(data)) + if err != nil { + return err + } + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + return err + } + + err = json.Unmarshal(body, &output) + if err != nil { + return err + } + + return nil +} + +// randIntn は0からn-1までのintの乱数を返します +func randIntn(n int) int { + rand.Seed(time.Now().UnixNano()) + return rand.Intn(n) +} diff --git a/team3/controller/message.go b/team3/controller/message.go new file mode 100644 index 0000000..5f78a7e --- /dev/null +++ b/team3/controller/message.go @@ -0,0 +1,105 @@ +package controller + +import ( + "database/sql" + "errors" + "net/http" + + "github.com/VG-Tech-Dojo/vg-1day-2017-05-20/team3/httputil" + "github.com/VG-Tech-Dojo/vg-1day-2017-05-20/team3/model" + "github.com/gin-gonic/gin" +) + +// Message is controller for requests to messages +type Message struct { + DB *sql.DB + Stream chan *model.Message +} + +// All は全てのメッセージを取得してJSONで返します +func (m *Message) All(c *gin.Context) { + msgs, err := model.MessagesAll(m.DB) + if err != nil { + resp := httputil.NewErrorResponse(err) + c.JSON(http.StatusInternalServerError, resp) + return + } + + if len(msgs) == 0 { + c.JSON(http.StatusOK, make([]*model.Message, 0)) + return + } + + c.JSON(http.StatusOK, gin.H{ + "result": msgs, + "error": nil, + }) +} + +// GetByID はパラメーターで受け取ったidのメッセージを取得してJSONで返します +func (m *Message) GetByID(c *gin.Context) { + msg, err := model.MessageByID(m.DB, c.Param("id")) + + switch { + case err == sql.ErrNoRows: + resp := httputil.NewErrorResponse(err) + c.JSON(http.StatusNotFound, resp) + return + case err != nil: + resp := httputil.NewErrorResponse(err) + c.JSON(http.StatusInternalServerError, resp) + return + } + + c.JSON(http.StatusOK, gin.H{ + "result": msg, + "error": nil, + }) +} + +// Create は新しいメッセージ保存し、作成したメッセージをJSONで返します +func (m *Message) Create(c *gin.Context) { + var msg model.Message + if err := c.BindJSON(&msg); err != nil { + resp := httputil.NewErrorResponse(err) + c.JSON(http.StatusInternalServerError, resp) + return + } + if msg.Body == "" { + resp := httputil.NewErrorResponse(errors.New("body is missing")) + c.JSON(http.StatusBadRequest, resp) + return + } + + // 1-2. ユーザー名を追加しよう + // ユーザー名が空でも投稿できるようにするかどうかは自分で考えてみよう + + inserted, err := msg.Insert(m.DB) + if err != nil { + resp := httputil.NewErrorResponse(err) + c.JSON(http.StatusInternalServerError, resp) + return + } + + // bot対応 + m.Stream <- inserted + + c.JSON(http.StatusCreated, gin.H{ + "result": inserted, + "error": nil, + }) +} + +// UpdateByID は... +func (m *Message) UpdateByID(c *gin.Context) { + // 1-3. メッセージを編集しよう + // ... + c.JSON(http.StatusCreated, gin.H{}) +} + +// DeleteByID は... +func (m *Message) DeleteByID(c *gin.Context) { + // 1-4. メッセージを削除しよう + // ... + c.JSON(http.StatusOK, gin.H{}) +} diff --git a/team3/db/db.go b/team3/db/db.go new file mode 100644 index 0000000..a8a5ca7 --- /dev/null +++ b/team3/db/db.go @@ -0,0 +1,56 @@ +package db + +import ( + "database/sql" + "fmt" + "io" + "io/ioutil" + "os" + + "gopkg.in/yaml.v2" +) + +// Configs はdbconfig.ymlから複数のenvでConfigを読むためのmapです +type Configs map[string]*Config + +// Open はenvで指定された設定で +func (cs Configs) Open(env string) (*sql.DB, error) { + config, ok := cs[env] + if !ok { + return nil, fmt.Errorf("no such env in config file: %s", env) + } + return config.Open() +} + +// Config はdbconfig.ymlを読むための構造体です +type Config struct { + Datasource string `yaml:"datasource"` +} + +// Open は新しくデータベースとのコネクションを返します +func (c *Config) Open() (*sql.DB, error) { + return sql.Open("sqlite3", c.Datasource) +} + +// NewConfigsFromFile はファイルパスから新しいConfigsを返します +func NewConfigsFromFile(path string) (Configs, error) { + f, err := os.Open(path) + if err != nil { + return nil, err + } + defer f.Close() + return NewConfigs(f) +} + +// NewConfigs はyamlを読み込んで新しいConfigsを返します +func NewConfigs(r io.Reader) (Configs, error) { + b, err := ioutil.ReadAll(r) + if err != nil { + return nil, err + } + var configs Configs + if err = yaml.Unmarshal(b, &configs); err != nil { + return nil, err + } + return configs, nil +} diff --git a/team3/dbconfig.yml b/team3/dbconfig.yml new file mode 100644 index 0000000..a4980dc --- /dev/null +++ b/team3/dbconfig.yml @@ -0,0 +1,11 @@ +# loc=auto is used by go-sqlite3 +# see. https://github.com/mattn/go-sqlite3 +development: + dialect: sqlite3 + datasource: dev.db?loc=auto + dir: ./migrations + +test: + dialect: sqlite3 + datasource: test.db?loc=auto + dir: ./migrations diff --git a/team3/env/.gitignore b/team3/env/.gitignore new file mode 100644 index 0000000..116a9e3 --- /dev/null +++ b/team3/env/.gitignore @@ -0,0 +1 @@ +env.go diff --git a/team3/env/env.go.tmpl b/team3/env/env.go.tmpl new file mode 100644 index 0000000..2c0a738 --- /dev/null +++ b/team3/env/env.go.tmpl @@ -0,0 +1,11 @@ +// env はGitHubなどにアップロードしてはならない機微情報をconstに設定するパッケージです +// +// `cp env.go.tmpl env.go` して使います +// +// env.goは.gitignoreに書かれているためアップロードされません +package env + +const ( + // Yahoo!デベロッパーネットワーク(https://developer.yahoo.co.jp/)のアプリケーションID + KeywordApiAppId = "" +) diff --git a/team3/httputil/httputil.go b/team3/httputil/httputil.go new file mode 100644 index 0000000..df98ed8 --- /dev/null +++ b/team3/httputil/httputil.go @@ -0,0 +1,28 @@ +package httputil + +// APIResult はexportする必要がないのであとで閉じます +type APIResult map[string]interface{} + +// APIError も同様 +type APIError struct { + Message string `json:"message"` +} + +func newAPIError(err error) *APIError { + return &APIError{ + Message: err.Error(), + } +} + +// APIResponse は...このへんファイル分けるのがgoらしい +type APIResponse struct { + Result *APIResult `json:"result"` + Error *APIError `json:"error"` +} + +// NewErrorResponse はエラーメッセージを含んだAPIResponse構造体のポインタを返します +func NewErrorResponse(err error) *APIResponse { + return &APIResponse{ + Error: newAPIError(err), + } +} diff --git a/team3/migrations/1_create_message_table.sql b/team3/migrations/1_create_message_table.sql new file mode 100644 index 0000000..65ade1d --- /dev/null +++ b/team3/migrations/1_create_message_table.sql @@ -0,0 +1,11 @@ +-- +migrate Up +CREATE TABLE message ( + id INTEGER NOT NULL PRIMARY KEY, + body TEXT NOT NULL DEFAULT "", + sender_name TEXT NOT NULL DEFAULT "", + created TIMESTAMP NOT NULL DEFAULT (DATETIME('now', 'localtime')), + updated TIMESTAMP NOT NULL DEFAULT (DATETIME('now', 'localtime')) +); + +-- +migrate Down +DROP TABLE message; diff --git a/team3/model/message.go b/team3/model/message.go new file mode 100644 index 0000000..a1d5c3a --- /dev/null +++ b/team3/model/message.go @@ -0,0 +1,75 @@ +package model + +import ( + "database/sql" +) + +// Message はメッセージの構造体です +type Message struct { + ID int64 `json:"id"` + Body string `json:"body"` + // 1-1. ユーザー名を表示しよう +} + +// MessagesAll は全てのメッセージを返します +func MessagesAll(db *sql.DB) ([]*Message, error) { + + // 1-1. ユーザー名を表示しよう + rows, err := db.Query(`select id, body from message`) + if err != nil { + return nil, err + } + defer rows.Close() + + var ms []*Message + for rows.Next() { + m := &Message{} + // 1-1. ユーザー名を表示しよう + if err := rows.Scan(&m.ID, &m.Body); err != nil { + return nil, err + } + ms = append(ms, m) + } + if err := rows.Err(); err != nil { + return nil, err + } + + return ms, nil +} + +// MessageByID は指定されたIDのメッセージを1つ返します +func MessageByID(db *sql.DB, id string) (*Message, error) { + m := &Message{} + + // 1-1. ユーザー名を表示しよう + if err := db.QueryRow(`select id, body from message where id = ?`, id).Scan(&m.ID, &m.Body); err != nil { + return nil, err + } + + return m, nil +} + +// Insert はmessageテーブルに新規データを1件追加します +func (m *Message) Insert(db *sql.DB) (*Message, error) { + // 1-2. ユーザー名を追加しよう + res, err := db.Exec(`insert into message (body) values (?)`, m.Body) + if err != nil { + return nil, err + } + id, err := res.LastInsertId() + if err != nil { + return nil, err + } + + return &Message{ + ID: id, + Body: m.Body, + // 1-2. ユーザー名を追加しよう + }, nil +} + +// 1-3. メッセージを編集しよう +// ... + +// 1-4. メッセージを削除しよう +// ... diff --git a/team3/runner.conf b/team3/runner.conf new file mode 100644 index 0000000..95f11b2 --- /dev/null +++ b/team3/runner.conf @@ -0,0 +1,14 @@ +root: . +tmp_path: ./tmp +build_name: runner-build +build_log: runner-build-errors.log +valid_ext: .go, .tpl, .tmpl, .html +no_rebuild_ext: .tpl, .tmpl, .html +ignored: assets, tmp, vendor +build_delay: 600 +colors: 1 +log_color_main: cyan +log_color_build: yellow +log_color_runner: green +log_color_watcher: magenta +log_color_app: diff --git a/team3/sample.db b/team3/sample.db new file mode 100644 index 0000000000000000000000000000000000000000..09df156b8142453983d137f8b8901a01b41d7852 GIT binary patch literal 12288 zcmeI&y-ve05C?EOu80akWjsN_w26b1k=Nk;=*R#A zD-KE}T8RgU^gqS9a}rz0Z#yY>HxpwuEwVgOmd@A_&Yu7-`oiS0SG_<0uX=z1Rwwb2tWV=5NNT$wYS$B4*9)RkFhRRv1_Uy z3cV_II@_I!%iC}~4QV>Qn1r(w@h?Vs7N=-+uEYJNPROW zlUg0=oR+ysR9?}uu1J+OGwCdMt5Z9o7ZsP93Y(iW8q~eHknc=>%MX_j5P$##AOHaf zKmY;|fB*y_009WJRlpa59WPCl`JO8lWu$!Wil;2nb^p)h7juUvKim3&cy9 + + + + vg-1day-2017 + + + + +
+
+
メッセージアプリ
+
+
+ +
+ +
+
+
+ + + +
+
+ + + + + + diff --git a/team3/test.db b/team3/test.db new file mode 100644 index 0000000000000000000000000000000000000000..7da9791db6c3aba413fb8fcb306166770dca3c73 GIT binary patch literal 16384 zcmeI&&u-H&90zcxofs<`<<`SA>8D(ps_m3!D`l0C7Fa+PZRy%fVq7AxF(o2@x+Dd9 ztauaNf(sABJ0NkyZCAk}!5OCSPqr-Ekz;?9OMc1dtm~zM-b8W0Q#xc1n4+)~BF0!w z)-72#k?kv+iNCZtR{#EaxA=qQ?+;k9Ui=~(1Oy-e0SG_<0uX=z1Rwwb2;2gJ#q0cb zX>U*YbT8$Xz6eB;@X4mxdOEaB+alY1(zWP%jF@LcNjZR@!;r2b2r`sdv)4Thbb zIlQ13)uw@KSHw=p1M%DFI2Jq=F4>))HL}g#;Manu)-&_GYm;^= zx3Qep%3<`OT%)odjk%wCfhboh>&0hN_vSK%%3?>^E>)|_qO&^OB#Ng_;7wwldQq5U zy15&NRWq|HX{zU{^q$A#w>;L2X0t+Jlu|hJeVWEzz~ec+6Z0CWd^+_#;W|83X}PE6 zHY<;FcS>hfg?W Date: Sun, 21 May 2017 17:28:17 +0900 Subject: [PATCH 2/7] add pn_ja json --- team3/pn_ja.json | 330754 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 330754 insertions(+) create mode 100644 team3/pn_ja.json diff --git a/team3/pn_ja.json b/team3/pn_ja.json new file mode 100644 index 0000000..003b323 --- /dev/null +++ b/team3/pn_ja.json @@ -0,0 +1,330754 @@ +{ + "dictionary": [ + { + "surface": "優れる", + "readging": "すぐれる", + "pos": "動詞", + "pn": 1.0 + }, + { + "surface": "良い", + "readging": "よい", + "pos": "形容詞", + "pn": 0.999995 + }, + { + "surface": "喜ぶ", + "readging": "よろこぶ", + "pos": "動詞", + "pn": 0.999979 + }, + { + "surface": "褒める", + "readging": "ほめる", + "pos": "動詞", + "pn": 0.999979 + }, + { + "surface": "めでたい", + "readging": "めでたい", + "pos": "形容詞", + "pn": 0.999645 + }, + { + "surface": "賢い", + "readging": "かしこい", + "pos": "形容詞", + "pn": 0.999486 + }, + { + "surface": "善い", + "readging": "いい", + "pos": "形容詞", + "pn": 0.999314 + }, + { + "surface": "適す", + "readging": "てきす", + "pos": "動詞", + "pn": 0.999295 + }, + { + "surface": "天晴", + "readging": "あっぱれ", + "pos": "名詞", + "pn": 0.999267 + }, + { + "surface": "祝う", + "readging": "いわう", + "pos": "動詞", + "pn": 0.999122 + }, + { + "surface": "功績", + "readging": "こうせき", + "pos": "名詞", + "pn": 0.999104 + }, + { + "surface": "賞", + "readging": "しょう", + "pos": "名詞", + "pn": 0.998943 + }, + { + "surface": "嬉しい", + "readging": "うれしい", + "pos": "形容詞", + "pn": 0.998871 + }, + { + "surface": "喜び", + "readging": "よろこび", + "pos": "名詞", + "pn": 0.998861 + }, + { + "surface": "才知", + "readging": "さいち", + "pos": "名詞", + "pn": 0.998771 + }, + { + "surface": "徳", + "readging": "とく", + "pos": "名詞", + "pn": 0.998745 + }, + { + "surface": "才能", + "readging": "さいのう", + "pos": "名詞", + "pn": 0.998699 + }, + { + "surface": "素晴らしい", + "readging": "すばらしい", + "pos": "形容詞", + "pn": 0.998617 + }, + { + "surface": "芳しい", + "readging": "かんばしい", + "pos": "形容詞", + "pn": 0.998578 + }, + { + "surface": "称える", + "readging": "たたえる", + "pos": "動詞", + "pn": 0.998576 + }, + { + "surface": "適切", + "readging": "てきせつ", + "pos": "名詞", + "pn": 0.998406 + }, + { + "surface": "崇める", + "readging": "あがめる", + "pos": "動詞", + "pn": 0.998357 + }, + { + "surface": "助ける", + "readging": "たすける", + "pos": "動詞", + "pn": 0.998356 + }, + { + "surface": "抜きんでる", + "readging": "ぬきんでる", + "pos": "動詞", + "pn": 0.998356 + }, + { + "surface": "清水", + "readging": "せいすい", + "pos": "名詞", + "pn": 0.998356 + }, + { + "surface": "雄雄しい", + "readging": "おおしい", + "pos": "形容詞", + "pn": 0.998272 + }, + { + "surface": "仕合せ", + "readging": "しあわせ", + "pos": "名詞", + "pn": 0.998208 + }, + { + "surface": "幸い", + "readging": "さいわい", + "pos": "名詞", + "pn": 0.997862 + }, + { + "surface": "吉兆", + "readging": "きっちょう", + "pos": "名詞", + "pn": 0.997795 + }, + { + "surface": "秀でる", + "readging": "ひいでる", + "pos": "動詞", + "pn": 0.997777 + }, + { + "surface": "宜しい", + "readging": "よろしい", + "pos": "形容詞", + "pn": 0.997517 + }, + { + "surface": "きりりしゃんと", + "readging": "きりりしゃんと", + "pos": "副詞", + "pn": 0.997511 + }, + { + "surface": "矜持", + "readging": "きんじ", + "pos": "名詞", + "pn": 0.997455 + }, + { + "surface": "香しい", + "readging": "かぐわしい", + "pos": "形容詞", + "pn": 0.997438 + }, + { + "surface": "しこなす", + "readging": "しこなす", + "pos": "動詞", + "pn": 0.997408 + }, + { + "surface": "遣りこなす", + "readging": "やりこなす", + "pos": "動詞", + "pn": 0.997406 + }, + { + "surface": "優麗", + "readging": "ゆうれい", + "pos": "名詞", + "pn": 0.997337 + }, + { + "surface": "気高い", + "readging": "けだかい", + "pos": "形容詞", + "pn": 0.997325 + }, + { + "surface": "手柄", + "readging": "てがら", + "pos": "名詞", + "pn": 0.997308 + }, + { + "surface": "正義", + "readging": "せいぎ", + "pos": "名詞", + "pn": 0.997278 + }, + { + "surface": "麗しい", + "readging": "うるわしい", + "pos": "形容詞", + "pn": 0.99726 + }, + { + "surface": "名高い", + "readging": "なだかい", + "pos": "形容詞", + "pn": 0.997259 + }, + { + "surface": "感心", + "readging": "かんしん", + "pos": "名詞", + "pn": 0.997201 + }, + { + "surface": "誉れ", + "readging": "ほまれ", + "pos": "名詞", + "pn": 0.997198 + }, + { + "surface": "卓説", + "readging": "たくせつ", + "pos": "名詞", + "pn": 0.997194 + }, + { + "surface": "巍然", + "readging": "ぎぜん", + "pos": "名詞", + "pn": 0.997192 + }, + { + "surface": "崇敬", + "readging": "すうけい", + "pos": "名詞", + "pn": 0.997192 + }, + { + "surface": "美徳", + "readging": "びとく", + "pos": "名詞", + "pn": 0.997143 + }, + { + "surface": "素早い", + "readging": "すばやい", + "pos": "形容詞", + "pn": 0.997105 + }, + { + "surface": "背負ってる", + "readging": "しょってる", + "pos": "動詞", + "pn": 0.997074 + }, + { + "surface": "人材", + "readging": "じんざい", + "pos": "名詞", + "pn": 0.997049 + }, + { + "surface": "果報者", + "readging": "かほうもの", + "pos": "名詞", + "pn": 0.997027 + }, + { + "surface": "多祥", + "readging": "たしょう", + "pos": "名詞", + "pn": 0.997027 + }, + { + "surface": "勇ましい", + "readging": "いさましい", + "pos": "形容詞", + "pn": 0.996987 + }, + { + "surface": "秀逸", + "readging": "しゅういつ", + "pos": "名詞", + "pn": 0.996946 + }, + { + "surface": "まぐれ幸い", + "readging": "まぐれざいわい", + "pos": "名詞", + "pn": 0.996941 + }, + { + "surface": "賞揚", + "readging": "しょうよう", + "pos": "名詞", + "pn": 0.996923 + }, + { + "surface": "称賛", + "readging": "しょうさん", + "pos": "名詞", + "pn": 0.996923 + }, + { + "surface": "称美", + "readging": "しょうび", + "pos": "名詞", + "pn": 0.996923 + }, + { + "surface": "激賞", + "readging": "げきしょう", + "pos": "名詞", + "pn": 0.996923 + }, + { + "surface": "熱讚", + "readging": "ねっさん", + "pos": "名詞", + "pn": 0.996916 + }, + { + "surface": "一品", + "readging": "いっぴん", + "pos": "名詞", + "pn": 0.996884 + }, + { + "surface": "怜", + "readging": "れい", + "pos": "名詞", + "pn": 0.996876 + }, + { + "surface": "愉悦", + "readging": "ゆえつ", + "pos": "名詞", + "pn": 0.996868 + }, + { + "surface": "奮い立つ", + "readging": "ふるいたつ", + "pos": "動詞", + "pn": 0.996844 + }, + { + "surface": "速攻", + "readging": "そっこう", + "pos": "名詞", + "pn": 0.996844 + }, + { + "surface": "百錬", + "readging": "ひゃくれん", + "pos": "名詞", + "pn": 0.996839 + }, + { + "surface": "淵", + "readging": "えん", + "pos": "名詞", + "pn": 0.996838 + }, + { + "surface": "好個", + "readging": "こうこ", + "pos": "名詞", + "pn": 0.996817 + }, + { + "surface": "似つかわしい", + "readging": "につかわしい", + "pos": "形容詞", + "pn": 0.996801 + }, + { + "surface": "喜悦", + "readging": "きえつ", + "pos": "名詞", + "pn": 0.996789 + }, + { + "surface": "欣然", + "readging": "きんぜん", + "pos": "副詞", + "pn": 0.996789 + }, + { + "surface": "欣欣然", + "readging": "きんきんぜん", + "pos": "名詞", + "pn": 0.996789 + }, + { + "surface": "欣欣", + "readging": "きんきん", + "pos": "名詞", + "pn": 0.996789 + }, + { + "surface": "恐悦", + "readging": "きょうえつ", + "pos": "名詞", + "pn": 0.996789 + }, + { + "surface": "過褒", + "readging": "かほう", + "pos": "名詞", + "pn": 0.996767 + }, + { + "surface": "美挙", + "readging": "びきょ", + "pos": "名詞", + "pn": 0.996767 + }, + { + "surface": "逸興", + "readging": "いっきょう", + "pos": "名詞", + "pn": 0.996762 + }, + { + "surface": "佑助", + "readging": "ゆうじょ", + "pos": "名詞", + "pn": 0.996724 + }, + { + "surface": "善行", + "readging": "ぜんこう", + "pos": "名詞", + "pn": 0.996706 + }, + { + "surface": "良相", + "readging": "りょうしょう", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "卓越", + "readging": "たくえつ", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "超邁", + "readging": "ちょうまい", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "超凡", + "readging": "ちょうぼん", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "超絶", + "readging": "ちょうぜつ", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "特出", + "readging": "とくしゅつ", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "英資", + "readging": "えいし", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "好日", + "readging": "こうじつ", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "傑出", + "readging": "けっしゅつ", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "俊髦", + "readging": "しゅんぼう", + "pos": "名詞", + "pn": 0.996701 + }, + { + "surface": "傑士", + "readging": "けっし", + "pos": "名詞", + "pn": 0.996698 + }, + { + "surface": "秀抜", + "readging": "しゅうばつ", + "pos": "名詞", + "pn": 0.996693 + }, + { + "surface": "大剛", + "readging": "たいごう", + "pos": "名詞", + "pn": 0.996688 + }, + { + "surface": "利運", + "readging": "りうん", + "pos": "名詞", + "pn": 0.996687 + }, + { + "surface": "好好爺", + "readging": "こうこうや", + "pos": "名詞", + "pn": 0.996687 + }, + { + "surface": "近信", + "readging": "きんしん", + "pos": "名詞", + "pn": 0.996685 + }, + { + "surface": "たやすい", + "readging": "たやすい", + "pos": "形容詞", + "pn": 0.996678 + }, + { + "surface": "快", + "readging": "かい", + "pos": "名詞", + "pn": 0.996654 + }, + { + "surface": "奇相", + "readging": "きそう", + "pos": "名詞", + "pn": 0.996648 + }, + { + "surface": "賢人", + "readging": "けんじん", + "pos": "名詞", + "pn": 0.996628 + }, + { + "surface": "崇", + "readging": "すう", + "pos": "名詞", + "pn": 0.996556 + }, + { + "surface": "抜群", + "readging": "ばつぐん", + "pos": "名詞", + "pn": 0.996505 + }, + { + "surface": "悦楽", + "readging": "えつらく", + "pos": "名詞", + "pn": 0.996501 + }, + { + "surface": "楽しむ", + "readging": "たのしむ", + "pos": "動詞", + "pn": 0.996427 + }, + { + "surface": "栄える", + "readging": "さかえる", + "pos": "動詞", + "pn": 0.996392 + }, + { + "surface": "吉日", + "readging": "きつじつ", + "pos": "名詞", + "pn": 0.996387 + }, + { + "surface": "善美", + "readging": "ぜんび", + "pos": "名詞", + "pn": 0.996363 + }, + { + "surface": "逸材", + "readging": "いつざい", + "pos": "名詞", + "pn": 0.996361 + }, + { + "surface": "好ましい", + "readging": "このましい", + "pos": "形容詞", + "pn": 0.996327 + }, + { + "surface": "才気", + "readging": "さいき", + "pos": "名詞", + "pn": 0.996294 + }, + { + "surface": "白眉", + "readging": "はくび", + "pos": "名詞", + "pn": 0.996273 + }, + { + "surface": "堪能", + "readging": "たんのう", + "pos": "名詞", + "pn": 0.996268 + }, + { + "surface": "善", + "readging": "ぜん", + "pos": "名詞", + "pn": 0.996266 + }, + { + "surface": "絶好", + "readging": "ぜっこう", + "pos": "名詞", + "pn": 0.996242 + }, + { + "surface": "横溢", + "readging": "おういつ", + "pos": "名詞", + "pn": 0.996238 + }, + { + "surface": "昌", + "readging": "しょう", + "pos": "名詞", + "pn": 0.996219 + }, + { + "surface": "芬芬", + "readging": "ふんぷん", + "pos": "名詞", + "pn": 0.996204 + }, + { + "surface": "善事", + "readging": "ぜんじ", + "pos": "名詞", + "pn": 0.99619 + }, + { + "surface": "賢明", + "readging": "けんめい", + "pos": "名詞", + "pn": 0.996177 + }, + { + "surface": "丁度", + "readging": "ちょうど", + "pos": "副詞", + "pn": 0.996176 + }, + { + "surface": "吉報", + "readging": "きっぽう", + "pos": "名詞", + "pn": 0.996133 + }, + { + "surface": "上上", + "readging": "じょうじょう", + "pos": "名詞", + "pn": 0.996111 + }, + { + "surface": "高説", + "readging": "こうせつ", + "pos": "名詞", + "pn": 0.99611 + }, + { + "surface": "善玉", + "readging": "ぜんだま", + "pos": "名詞", + "pn": 0.996101 + }, + { + "surface": "非凡", + "readging": "ひぼん", + "pos": "名詞", + "pn": 0.996006 + }, + { + "surface": "憧憬", + "readging": "どうけい", + "pos": "名詞", + "pn": 0.995979 + }, + { + "surface": "憧憬", + "readging": "しょうけい", + "pos": "名詞", + "pn": 0.995979 + }, + { + "surface": "吉事", + "readging": "きちじ", + "pos": "名詞", + "pn": 0.995969 + }, + { + "surface": "至妙", + "readging": "しみょう", + "pos": "名詞", + "pn": 0.99596 + }, + { + "surface": "名声", + "readging": "めいせい", + "pos": "名詞", + "pn": 0.995929 + }, + { + "surface": "奨励", + "readging": "しょうれい", + "pos": "名詞", + "pn": 0.995904 + }, + { + "surface": "そこのけ", + "readging": "そこのけ", + "pos": "名詞", + "pn": 0.995899 + }, + { + "surface": "雄志", + "readging": "ゆうし", + "pos": "名詞", + "pn": 0.995864 + }, + { + "surface": "佳景", + "readging": "かけい", + "pos": "名詞", + "pn": 0.995859 + }, + { + "surface": "善用", + "readging": "ぜんよう", + "pos": "名詞", + "pn": 0.995847 + }, + { + "surface": "走り井", + "readging": "はしりい", + "pos": "名詞", + "pn": 0.995839 + }, + { + "surface": "楽しい", + "readging": "たのしい", + "pos": "形容詞", + "pn": 0.995837 + }, + { + "surface": "愛くるしい", + "readging": "あいくるしい", + "pos": "形容詞", + "pn": 0.9958 + }, + { + "surface": "佳良", + "readging": "かりょう", + "pos": "名詞", + "pn": 0.995771 + }, + { + "surface": "堪能", + "readging": "かんのう", + "pos": "名詞", + "pn": 0.995747 + }, + { + "surface": "好評", + "readging": "こうひょう", + "pos": "名詞", + "pn": 0.995744 + }, + { + "surface": "積善", + "readging": "せきぜん", + "pos": "名詞", + "pn": 0.995738 + }, + { + "surface": "喜ばしい", + "readging": "よろこばしい", + "pos": "形容詞", + "pn": 0.995736 + }, + { + "surface": "精強", + "readging": "せいきょう", + "pos": "名詞", + "pn": 0.995728 + }, + { + "surface": "志す", + "readging": "こころざす", + "pos": "動詞", + "pn": 0.995707 + }, + { + "surface": "快い", + "readging": "こころよい", + "pos": "形容詞", + "pn": 0.995663 + }, + { + "surface": "手厚い", + "readging": "てあつい", + "pos": "形容詞", + "pn": 0.995653 + }, + { + "surface": "大力", + "readging": "だいりき", + "pos": "名詞", + "pn": 0.995609 + }, + { + "surface": "穎悟", + "readging": "えいご", + "pos": "名詞", + "pn": 0.995574 + }, + { + "surface": "最長", + "readging": "さいちょう", + "pos": "名詞", + "pn": 0.99557 + }, + { + "surface": "剴切", + "readging": "がいせつ", + "pos": "名詞", + "pn": 0.995553 + }, + { + "surface": "甲斐甲斐しい", + "readging": "かいがいしい", + "pos": "形容詞", + "pn": 0.995471 + }, + { + "surface": "英才", + "readging": "えいさい", + "pos": "名詞", + "pn": 0.995468 + }, + { + "surface": "孝行", + "readging": "こうこう", + "pos": "名詞", + "pn": 0.995454 + }, + { + "surface": "援助", + "readging": "えんじょ", + "pos": "名詞", + "pn": 0.99544 + }, + { + "surface": "適性", + "readging": "てきせい", + "pos": "名詞", + "pn": 0.9954 + }, + { + "surface": "徳行", + "readging": "とっこう", + "pos": "名詞", + "pn": 0.995364 + }, + { + "surface": "褒詞", + "readging": "ほうし", + "pos": "名詞", + "pn": 0.995343 + }, + { + "surface": "賛辞", + "readging": "さんじ", + "pos": "名詞", + "pn": 0.995343 + }, + { + "surface": "楽", + "readging": "らく", + "pos": "名詞", + "pn": 0.995342 + }, + { + "surface": "慶事", + "readging": "けいじ", + "pos": "名詞", + "pn": 0.995342 + }, + { + "surface": "佳日", + "readging": "かじつ", + "pos": "名詞", + "pn": 0.995331 + }, + { + "surface": "吉辰", + "readging": "きっしん", + "pos": "名詞", + "pn": 0.995331 + }, + { + "surface": "俊秀", + "readging": "しゅんしゅう", + "pos": "名詞", + "pn": 0.995328 + }, + { + "surface": "気組み", + "readging": "きぐみ", + "pos": "名詞", + "pn": 0.995306 + }, + { + "surface": "賞辞", + "readging": "しょうじ", + "pos": "名詞", + "pn": 0.995292 + }, + { + "surface": "賞詞", + "readging": "しょうし", + "pos": "名詞", + "pn": 0.995291 + }, + { + "surface": "秀", + "readging": "しゅう", + "pos": "名詞", + "pn": 0.995285 + }, + { + "surface": "慶福", + "readging": "けいふく", + "pos": "名詞", + "pn": 0.995228 + }, + { + "surface": "福祉", + "readging": "ふくし", + "pos": "名詞", + "pn": 0.995217 + }, + { + "surface": "喜の字", + "readging": "きのじ", + "pos": "名詞", + "pn": 0.995214 + }, + { + "surface": "賢才", + "readging": "けんさい", + "pos": "名詞", + "pn": 0.995193 + }, + { + "surface": "優秀", + "readging": "ゆうしゅう", + "pos": "名詞", + "pn": 0.995178 + }, + { + "surface": "厚志", + "readging": "こうし", + "pos": "名詞", + "pn": 0.995146 + }, + { + "surface": "きびきび", + "readging": "きびきび", + "pos": "副詞", + "pn": 0.995129 + }, + { + "surface": "好事", + "readging": "こうじ", + "pos": "名詞", + "pn": 0.995098 + }, + { + "surface": "絶倫", + "readging": "ぜつりん", + "pos": "名詞", + "pn": 0.995096 + }, + { + "surface": "頌徳", + "readging": "しょうとく", + "pos": "名詞", + "pn": 0.995075 + }, + { + "surface": "才走る", + "readging": "さいばしる", + "pos": "動詞", + "pn": 0.995062 + }, + { + "surface": "賀", + "readging": "が", + "pos": "名詞", + "pn": 0.99506 + }, + { + "surface": "殷賑", + "readging": "いんしん", + "pos": "名詞", + "pn": 0.995056 + }, + { + "surface": "幸運", + "readging": "こううん", + "pos": "名詞", + "pn": 0.995019 + }, + { + "surface": "良能", + "readging": "りょうのう", + "pos": "名詞", + "pn": 0.99501 + }, + { + "surface": "輝かしい", + "readging": "かがやかしい", + "pos": "形容詞", + "pn": 0.994981 + }, + { + "surface": "傑作", + "readging": "けっさく", + "pos": "名詞", + "pn": 0.994939 + }, + { + "surface": "俊足", + "readging": "しゅんそく", + "pos": "名詞", + "pn": 0.994928 + }, + { + "surface": "俊豪", + "readging": "しゅんごう", + "pos": "名詞", + "pn": 0.994928 + }, + { + "surface": "賛成", + "readging": "さんせい", + "pos": "名詞", + "pn": 0.994905 + }, + { + "surface": "高見", + "readging": "こうけん", + "pos": "名詞", + "pn": 0.994891 + }, + { + "surface": "雄心", + "readging": "ゆうしん", + "pos": "名詞", + "pn": 0.994864 + }, + { + "surface": "緑玉", + "readging": "りょくぎょく", + "pos": "名詞", + "pn": 0.994861 + }, + { + "surface": "翠玉", + "readging": "すいぎょく", + "pos": "名詞", + "pn": 0.994861 + }, + { + "surface": "高論", + "readging": "こうろん", + "pos": "名詞", + "pn": 0.994844 + }, + { + "surface": "偉大", + "readging": "いだい", + "pos": "名詞", + "pn": 0.994833 + }, + { + "surface": "卓抜", + "readging": "たくばつ", + "pos": "名詞", + "pn": 0.994832 + }, + { + "surface": "明主", + "readging": "めいしゅ", + "pos": "名詞", + "pn": 0.994826 + }, + { + "surface": "似合しい", + "readging": "にあわしい", + "pos": "形容詞", + "pn": 0.994823 + }, + { + "surface": "聖人", + "readging": "せいじん", + "pos": "名詞", + "pn": 0.994786 + }, + { + "surface": "耆婆扁鵲", + "readging": "ぎばへんじゃく", + "pos": "名詞", + "pn": 0.994786 + }, + { + "surface": "英気", + "readging": "えいき", + "pos": "名詞", + "pn": 0.994762 + }, + { + "surface": "思わしい", + "readging": "おもわしい", + "pos": "形容詞", + "pn": 0.994729 + }, + { + "surface": "ジェントルマン", + "readging": "ジェントルマン", + "pos": "名詞", + "pn": 0.994709 + }, + { + "surface": "ゼントルマン", + "readging": "ゼントルマン", + "pos": "名詞", + "pn": 0.994707 + }, + { + "surface": "俊才", + "readging": "しゅんさい", + "pos": "名詞", + "pn": 0.994698 + }, + { + "surface": "大賢", + "readging": "たいけん", + "pos": "名詞", + "pn": 0.994685 + }, + { + "surface": "吉日", + "readging": "きちにち", + "pos": "名詞", + "pn": 0.994605 + }, + { + "surface": "剛の者", + "readging": "こうのもの", + "pos": "名詞", + "pn": 0.994597 + }, + { + "surface": "雄偉", + "readging": "ゆうい", + "pos": "名詞", + "pn": 0.994593 + }, + { + "surface": "歓喜", + "readging": "かんき", + "pos": "名詞", + "pn": 0.994578 + }, + { + "surface": "出色", + "readging": "しゅっしょく", + "pos": "名詞", + "pn": 0.994535 + }, + { + "surface": "偉功", + "readging": "いこう", + "pos": "名詞", + "pn": 0.994524 + }, + { + "surface": "好人物", + "readging": "こうじんぶつ", + "pos": "名詞", + "pn": 0.994522 + }, + { + "surface": "吉祥", + "readging": "きっしょう", + "pos": "名詞", + "pn": 0.99448 + }, + { + "surface": "好望", + "readging": "こうぼう", + "pos": "名詞", + "pn": 0.994422 + }, + { + "surface": "名望", + "readging": "めいぼう", + "pos": "名詞", + "pn": 0.994414 + }, + { + "surface": "満足", + "readging": "まんぞく", + "pos": "名詞", + "pn": 0.994414 + }, + { + "surface": "最良", + "readging": "さいりょう", + "pos": "名詞", + "pn": 0.994401 + }, + { + "surface": "嘆賞", + "readging": "たんしょう", + "pos": "名詞", + "pn": 0.994377 + }, + { + "surface": "プライド", + "readging": "プライド", + "pos": "名詞", + "pn": 0.994375 + }, + { + "surface": "賢君", + "readging": "けんくん", + "pos": "名詞", + "pn": 0.99437 + }, + { + "surface": "上作", + "readging": "じょうさく", + "pos": "名詞", + "pn": 0.994367 + }, + { + "surface": "高邁", + "readging": "こうまい", + "pos": "名詞", + "pn": 0.994366 + }, + { + "surface": "愛らしい", + "readging": "あいらしい", + "pos": "形容詞", + "pn": 0.994354 + }, + { + "surface": "キュート", + "readging": "キュート", + "pos": "名詞", + "pn": 0.994327 + }, + { + "surface": "大和尚", + "readging": "だいおしょう", + "pos": "名詞", + "pn": 0.99432 + }, + { + "surface": "頓才", + "readging": "とんさい", + "pos": "名詞", + "pn": 0.994309 + }, + { + "surface": "欣喜雀躍", + "readging": "きんきじゃくやく", + "pos": "名詞", + "pn": 0.994303 + }, + { + "surface": "名品", + "readging": "めいひん", + "pos": "名詞", + "pn": 0.9943 + }, + { + "surface": "しおらしい", + "readging": "しおらしい", + "pos": "形容詞", + "pn": 0.994296 + }, + { + "surface": "善哉", + "readging": "よいかな", + "pos": "名詞", + "pn": 0.994261 + }, + { + "surface": "悦", + "readging": "えつ", + "pos": "名詞", + "pn": 0.994256 + }, + { + "surface": "腕利き", + "readging": "うできき", + "pos": "名詞", + "pn": 0.994239 + }, + { + "surface": "利手", + "readging": "ききて", + "pos": "名詞", + "pn": 0.994237 + }, + { + "surface": "傑人", + "readging": "けつじん", + "pos": "名詞", + "pn": 0.994229 + }, + { + "surface": "賞する", + "readging": "しょうする", + "pos": "動詞", + "pn": 0.994172 + }, + { + "surface": "賀春", + "readging": "がしゅん", + "pos": "名詞", + "pn": 0.994169 + }, + { + "surface": "腕っこき", + "readging": "うでっこき", + "pos": "名詞", + "pn": 0.994151 + }, + { + "surface": "賑賑しい", + "readging": "にぎにぎしい", + "pos": "形容詞", + "pn": 0.994134 + }, + { + "surface": "瑞瑞しい", + "readging": "みずみずしい", + "pos": "形容詞", + "pn": 0.99412 + }, + { + "surface": "持て囃す", + "readging": "もてはやす", + "pos": "動詞", + "pn": 0.994116 + }, + { + "surface": "芳醇", + "readging": "ほうじゅん", + "pos": "名詞", + "pn": 0.994114 + }, + { + "surface": "神助", + "readging": "しんじょ", + "pos": "名詞", + "pn": 0.994104 + }, + { + "surface": "育英", + "readging": "いくえい", + "pos": "名詞", + "pn": 0.994085 + }, + { + "surface": "頌春", + "readging": "しょうしゅん", + "pos": "名詞", + "pn": 0.994073 + }, + { + "surface": "英俊", + "readging": "えいしゅん", + "pos": "名詞", + "pn": 0.994061 + }, + { + "surface": "頌辞", + "readging": "しょうじ", + "pos": "名詞", + "pn": 0.994046 + }, + { + "surface": "嘉辰", + "readging": "かしん", + "pos": "名詞", + "pn": 0.994019 + }, + { + "surface": "僥倖", + "readging": "ぎょうこう", + "pos": "名詞", + "pn": 0.994009 + }, + { + "surface": "秀才", + "readging": "しゅうさい", + "pos": "名詞", + "pn": 0.994009 + }, + { + "surface": "鑽仰", + "readging": "さんぎょう", + "pos": "名詞", + "pn": 0.994004 + }, + { + "surface": "佳作", + "readging": "かさく", + "pos": "名詞", + "pn": 0.993976 + }, + { + "surface": "達筆", + "readging": "たっぴつ", + "pos": "名詞", + "pn": 0.993964 + }, + { + "surface": "精良", + "readging": "せいりょう", + "pos": "名詞", + "pn": 0.993937 + }, + { + "surface": "顔揃い", + "readging": "かおぞろい", + "pos": "名詞", + "pn": 0.993885 + }, + { + "surface": "瑞枝", + "readging": "みずえ", + "pos": "名詞", + "pn": 0.993868 + }, + { + "surface": "隆昌", + "readging": "りゅうしょう", + "pos": "名詞", + "pn": 0.993836 + }, + { + "surface": "正しい", + "readging": "ただしい", + "pos": "形容詞", + "pn": 0.993836 + }, + { + "surface": "女傑", + "readging": "じょけつ", + "pos": "名詞", + "pn": 0.993819 + }, + { + "surface": "勧賞", + "readging": "かんしょう", + "pos": "名詞", + "pn": 0.993819 + }, + { + "surface": "落ち着く", + "readging": "おちつく", + "pos": "動詞", + "pn": 0.993768 + }, + { + "surface": "元気", + "readging": "げんき", + "pos": "名詞", + "pn": 0.993766 + }, + { + "surface": "興じる", + "readging": "きょうじる", + "pos": "動詞", + "pn": 0.9937 + }, + { + "surface": "吉左右", + "readging": "きっそう", + "pos": "名詞", + "pn": 0.993689 + }, + { + "surface": "おめでたい", + "readging": "おめでたい", + "pos": "形容詞", + "pn": 0.99368 + }, + { + "surface": "敏速", + "readging": "びんそく", + "pos": "名詞", + "pn": 0.993678 + }, + { + "surface": "際立つ", + "readging": "きわだつ", + "pos": "動詞", + "pn": 0.993674 + }, + { + "surface": "福相", + "readging": "ふくそう", + "pos": "名詞", + "pn": 0.993652 + }, + { + "surface": "偉才", + "readging": "いさい", + "pos": "名詞", + "pn": 0.993648 + }, + { + "surface": "卓才", + "readging": "たくさい", + "pos": "名詞", + "pn": 0.993637 + }, + { + "surface": "嘉する", + "readging": "よみする", + "pos": "動詞", + "pn": 0.993636 + }, + { + "surface": "存命", + "readging": "ぞんめい", + "pos": "名詞", + "pn": 0.993607 + }, + { + "surface": "清清しい", + "readging": "すがすがしい", + "pos": "形容詞", + "pn": 0.993552 + }, + { + "surface": "聡い", + "readging": "さとい", + "pos": "形容詞", + "pn": 0.993552 + }, + { + "surface": "高貴", + "readging": "こうき", + "pos": "名詞", + "pn": 0.993551 + }, + { + "surface": "快諾", + "readging": "かいだく", + "pos": "名詞", + "pn": 0.993545 + }, + { + "surface": "偉物", + "readging": "えらぶつ", + "pos": "名詞", + "pn": 0.993528 + }, + { + "surface": "知徳", + "readging": "ちとく", + "pos": "名詞", + "pn": 0.993527 + }, + { + "surface": "愉楽", + "readging": "ゆらく", + "pos": "名詞", + "pn": 0.993504 + }, + { + "surface": "卓然", + "readging": "たくぜん", + "pos": "名詞", + "pn": 0.993469 + }, + { + "surface": "チャリティー", + "readging": "チャリティー", + "pos": "名詞", + "pn": 0.993467 + }, + { + "surface": "秀麗", + "readging": "しゅうれい", + "pos": "名詞", + "pn": 0.993448 + }, + { + "surface": "頑強", + "readging": "がんきょう", + "pos": "名詞", + "pn": 0.993434 + }, + { + "surface": "貴重", + "readging": "きちょう", + "pos": "名詞", + "pn": 0.993432 + }, + { + "surface": "意気", + "readging": "いき", + "pos": "名詞", + "pn": 0.993413 + }, + { + "surface": "卓識", + "readging": "たくしき", + "pos": "名詞", + "pn": 0.993413 + }, + { + "surface": "聖哲", + "readging": "せいてつ", + "pos": "名詞", + "pn": 0.993349 + }, + { + "surface": "偉人", + "readging": "いじん", + "pos": "名詞", + "pn": 0.993344 + }, + { + "surface": "豪気", + "readging": "ごうき", + "pos": "名詞", + "pn": 0.993334 + }, + { + "surface": "秀作", + "readging": "しゅうさく", + "pos": "名詞", + "pn": 0.993302 + }, + { + "surface": "聡明", + "readging": "そうめい", + "pos": "名詞", + "pn": 0.993288 + }, + { + "surface": "栄光", + "readging": "えいこう", + "pos": "名詞", + "pn": 0.99326 + }, + { + "surface": "寿", + "readging": "じゅ", + "pos": "名詞", + "pn": 0.993259 + }, + { + "surface": "炯眼", + "readging": "けいがん", + "pos": "名詞", + "pn": 0.993224 + }, + { + "surface": "最善", + "readging": "さいぜん", + "pos": "名詞", + "pn": 0.993208 + }, + { + "surface": "新撰", + "readging": "しんせん", + "pos": "名詞", + "pn": 0.993205 + }, + { + "surface": "思う様", + "readging": "おもうさま", + "pos": "副詞", + "pn": 0.993181 + }, + { + "surface": "栄華", + "readging": "えいが", + "pos": "名詞", + "pn": 0.99315 + }, + { + "surface": "歓楽", + "readging": "かんらく", + "pos": "名詞", + "pn": 0.993142 + }, + { + "surface": "名僧", + "readging": "めいそう", + "pos": "名詞", + "pn": 0.993129 + }, + { + "surface": "先賢", + "readging": "せんけん", + "pos": "名詞", + "pn": 0.993095 + }, + { + "surface": "速写", + "readging": "そくしゃ", + "pos": "名詞", + "pn": 0.993093 + }, + { + "surface": "厚遇", + "readging": "こうぐう", + "pos": "名詞", + "pn": 0.99306 + }, + { + "surface": "能筆", + "readging": "のうひつ", + "pos": "名詞", + "pn": 0.993034 + }, + { + "surface": "分相応", + "readging": "ぶんそうおう", + "pos": "名詞", + "pn": 0.993009 + }, + { + "surface": "賢哲", + "readging": "けんてつ", + "pos": "名詞", + "pn": 0.993007 + }, + { + "surface": "傑物", + "readging": "けつぶつ", + "pos": "名詞", + "pn": 0.993004 + }, + { + "surface": "痛快", + "readging": "つうかい", + "pos": "名詞", + "pn": 0.993 + }, + { + "surface": "力強い", + "readging": "ちからづよい", + "pos": "形容詞", + "pn": 0.992994 + }, + { + "surface": "可愛い", + "readging": "かわいい", + "pos": "形容詞", + "pn": 0.992982 + }, + { + "surface": "欣快", + "readging": "きんかい", + "pos": "名詞", + "pn": 0.992978 + }, + { + "surface": "美景", + "readging": "びけい", + "pos": "名詞", + "pn": 0.992948 + }, + { + "surface": "慶する", + "readging": "けいする", + "pos": "動詞", + "pn": 0.99293 + }, + { + "surface": "良質", + "readging": "りょうしつ", + "pos": "名詞", + "pn": 0.992928 + }, + { + "surface": "清適", + "readging": "せいてき", + "pos": "名詞", + "pn": 0.992927 + }, + { + "surface": "逸品", + "readging": "いっぴん", + "pos": "名詞", + "pn": 0.992925 + }, + { + "surface": "エクスタシー", + "readging": "エクスタシー", + "pos": "名詞", + "pn": 0.992912 + }, + { + "surface": "優賞", + "readging": "ゆうしょう", + "pos": "名詞", + "pn": 0.9929 + }, + { + "surface": "利く", + "readging": "きく", + "pos": "動詞", + "pn": 0.99289 + }, + { + "surface": "美しい", + "readging": "うつくしい", + "pos": "形容詞", + "pn": 0.992888 + }, + { + "surface": "好逑", + "readging": "こうきゅう", + "pos": "名詞", + "pn": 0.992877 + }, + { + "surface": "快報", + "readging": "かいほう", + "pos": "名詞", + "pn": 0.992876 + }, + { + "surface": "慶", + "readging": "けい", + "pos": "名詞", + "pn": 0.992869 + }, + { + "surface": "朗報", + "readging": "ろうほう", + "pos": "名詞", + "pn": 0.992855 + }, + { + "surface": "情深い", + "readging": "なさけぶかい", + "pos": "形容詞", + "pn": 0.992855 + }, + { + "surface": "援護", + "readging": "えんご", + "pos": "名詞", + "pn": 0.992831 + }, + { + "surface": "男冥利", + "readging": "おとこみょうり", + "pos": "名詞", + "pn": 0.992814 + }, + { + "surface": "達見", + "readging": "たっけん", + "pos": "名詞", + "pn": 0.992798 + }, + { + "surface": "優に", + "readging": "ゆうに", + "pos": "副詞", + "pn": 0.992781 + }, + { + "surface": "優良", + "readging": "ゆうりょう", + "pos": "名詞", + "pn": 0.992775 + }, + { + "surface": "快速", + "readging": "かいそく", + "pos": "名詞", + "pn": 0.992763 + }, + { + "surface": "医する", + "readging": "いする", + "pos": "動詞", + "pn": 0.992739 + }, + { + "surface": "雀躍", + "readging": "じゃくやく", + "pos": "名詞", + "pn": 0.992694 + }, + { + "surface": "偉材", + "readging": "いざい", + "pos": "名詞", + "pn": 0.99266 + }, + { + "surface": "秀吟", + "readging": "しゅうぎん", + "pos": "名詞", + "pn": 0.992659 + }, + { + "surface": "高僧", + "readging": "こうそう", + "pos": "名詞", + "pn": 0.992649 + }, + { + "surface": "加勢", + "readging": "かせい", + "pos": "名詞", + "pn": 0.992648 + }, + { + "surface": "嘉賞", + "readging": "かしょう", + "pos": "名詞", + "pn": 0.992619 + }, + { + "surface": "あどけない", + "readging": "あどけない", + "pos": "形容詞", + "pn": 0.992614 + }, + { + "surface": "幅利き", + "readging": "はばきき", + "pos": "名詞", + "pn": 0.99261 + }, + { + "surface": "麗質", + "readging": "れいしつ", + "pos": "名詞", + "pn": 0.992601 + }, + { + "surface": "瑞相", + "readging": "ずいそう", + "pos": "名詞", + "pn": 0.992593 + }, + { + "surface": "隆盛", + "readging": "りゅうせい", + "pos": "名詞", + "pn": 0.992563 + }, + { + "surface": "欣幸", + "readging": "きんこう", + "pos": "名詞", + "pn": 0.992551 + }, + { + "surface": "妙案", + "readging": "みょうあん", + "pos": "名詞", + "pn": 0.992531 + }, + { + "surface": "懇意", + "readging": "こんい", + "pos": "名詞", + "pn": 0.992524 + }, + { + "surface": "祝賀", + "readging": "しゅくが", + "pos": "名詞", + "pn": 0.9925 + }, + { + "surface": "誠実", + "readging": "せいじつ", + "pos": "名詞", + "pn": 0.992493 + }, + { + "surface": "良好", + "readging": "りょうこう", + "pos": "名詞", + "pn": 0.992491 + }, + { + "surface": "高足", + "readging": "こうそく", + "pos": "名詞", + "pn": 0.992487 + }, + { + "surface": "偉勲", + "readging": "いくん", + "pos": "名詞", + "pn": 0.992473 + }, + { + "surface": "夢見心地", + "readging": "ゆめみごこち", + "pos": "名詞", + "pn": 0.992463 + }, + { + "surface": "吉", + "readging": "きち", + "pos": "名詞", + "pn": 0.992461 + }, + { + "surface": "賑わしい", + "readging": "にぎわしい", + "pos": "形容詞", + "pn": 0.992458 + }, + { + "surface": "尊書", + "readging": "そんしょ", + "pos": "名詞", + "pn": 0.992454 + }, + { + "surface": "いそいそ", + "readging": "いそいそ", + "pos": "副詞", + "pn": 0.99245 + }, + { + "surface": "晴がましい", + "readging": "はれがましい", + "pos": "形容詞", + "pn": 0.992439 + }, + { + "surface": "香ばしい", + "readging": "こうばしい", + "pos": "形容詞", + "pn": 0.992427 + }, + { + "surface": "寛", + "readging": "かん", + "pos": "名詞", + "pn": 0.99242 + }, + { + "surface": "雄編", + "readging": "ゆうへん", + "pos": "名詞", + "pn": 0.992405 + }, + { + "surface": "好いたらしい", + "readging": "すいたらしい", + "pos": "形容詞", + "pn": 0.992396 + }, + { + "surface": "慶兆", + "readging": "けいちょう", + "pos": "名詞", + "pn": 0.992393 + }, + { + "surface": "士君子", + "readging": "しくんし", + "pos": "名詞", + "pn": 0.992393 + }, + { + "surface": "花恥しい", + "readging": "はなはずかしい", + "pos": "形容詞", + "pn": 0.992382 + }, + { + "surface": "好況", + "readging": "こうきょう", + "pos": "名詞", + "pn": 0.992377 + }, + { + "surface": "慶賀", + "readging": "けいが", + "pos": "名詞", + "pn": 0.99237 + }, + { + "surface": "若若しい", + "readging": "わかわかしい", + "pos": "形容詞", + "pn": 0.992365 + }, + { + "surface": "浄机", + "readging": "じょうき", + "pos": "名詞", + "pn": 0.992364 + }, + { + "surface": "慧眼", + "readging": "けいがん", + "pos": "名詞", + "pn": 0.992345 + }, + { + "surface": "尤", + "readging": "ゆう", + "pos": "名詞", + "pn": 0.992322 + }, + { + "surface": "名作", + "readging": "めいさく", + "pos": "名詞", + "pn": 0.992322 + }, + { + "surface": "栄", + "readging": "えい", + "pos": "名詞", + "pn": 0.992315 + }, + { + "surface": "新緑", + "readging": "しんりょく", + "pos": "名詞", + "pn": 0.992292 + }, + { + "surface": "すばしこい", + "readging": "すばしこい", + "pos": "形容詞", + "pn": 0.992291 + }, + { + "surface": "瑞兆", + "readging": "ずいちょう", + "pos": "名詞", + "pn": 0.992271 + }, + { + "surface": "褒め者", + "readging": "ほめもの", + "pos": "名詞", + "pn": 0.992264 + }, + { + "surface": "猪口才", + "readging": "ちょこざい", + "pos": "名詞", + "pn": 0.992261 + }, + { + "surface": "令名", + "readging": "れいめい", + "pos": "名詞", + "pn": 0.992256 + }, + { + "surface": "先哲", + "readging": "せんてつ", + "pos": "名詞", + "pn": 0.992254 + }, + { + "surface": "心頼み", + "readging": "こころだのみ", + "pos": "名詞", + "pn": 0.992249 + }, + { + "surface": "愛でる", + "readging": "めでる", + "pos": "動詞", + "pn": 0.992239 + }, + { + "surface": "感賞", + "readging": "かんしょう", + "pos": "名詞", + "pn": 0.992222 + }, + { + "surface": "賛嘆", + "readging": "さんたん", + "pos": "名詞", + "pn": 0.992221 + }, + { + "surface": "幸福", + "readging": "こうふく", + "pos": "名詞", + "pn": 0.992213 + }, + { + "surface": "壮語", + "readging": "そうご", + "pos": "名詞", + "pn": 0.99221 + }, + { + "surface": "麗姿", + "readging": "れいし", + "pos": "名詞", + "pn": 0.992197 + }, + { + "surface": "名医", + "readging": "めいい", + "pos": "名詞", + "pn": 0.992181 + }, + { + "surface": "美質", + "readging": "びしつ", + "pos": "名詞", + "pn": 0.992176 + }, + { + "surface": "援兵", + "readging": "えんぺい", + "pos": "名詞", + "pn": 0.992171 + }, + { + "surface": "表彰", + "readging": "ひょうしょう", + "pos": "名詞", + "pn": 0.992164 + }, + { + "surface": "意気込む", + "readging": "いきごむ", + "pos": "動詞", + "pn": 0.99216 + }, + { + "surface": "メリット", + "readging": "メリット", + "pos": "名詞", + "pn": 0.99214 + }, + { + "surface": "愛す", + "readging": "あいす", + "pos": "動詞", + "pn": 0.992131 + }, + { + "surface": "神佑", + "readging": "しんゆう", + "pos": "名詞", + "pn": 0.992121 + }, + { + "surface": "鬼才", + "readging": "きさい", + "pos": "名詞", + "pn": 0.992116 + }, + { + "surface": "見目好い", + "readging": "みめよい", + "pos": "形容詞", + "pn": 0.992108 + }, + { + "surface": "多聞天", + "readging": "たもんてん", + "pos": "名詞", + "pn": 0.992067 + }, + { + "surface": "有難涙", + "readging": "ありがたなみだ", + "pos": "名詞", + "pn": 0.992057 + }, + { + "surface": "名馬", + "readging": "めいば", + "pos": "名詞", + "pn": 0.99202 + }, + { + "surface": "賛美", + "readging": "さんび", + "pos": "名詞", + "pn": 0.991998 + }, + { + "surface": "徳化", + "readging": "とっか", + "pos": "名詞", + "pn": 0.991963 + }, + { + "surface": "英略", + "readging": "えいりゃく", + "pos": "名詞", + "pn": 0.991961 + }, + { + "surface": "崇高", + "readging": "すうこう", + "pos": "名詞", + "pn": 0.991942 + }, + { + "surface": "聡", + "readging": "そう", + "pos": "名詞", + "pn": 0.991917 + }, + { + "surface": "驥足", + "readging": "きそく", + "pos": "名詞", + "pn": 0.991909 + }, + { + "surface": "景勝", + "readging": "けいしょう", + "pos": "名詞", + "pn": 0.991903 + }, + { + "surface": "曼陀羅華", + "readging": "まんだらげ", + "pos": "名詞", + "pn": 0.991895 + }, + { + "surface": "才人", + "readging": "さいじん", + "pos": "名詞", + "pn": 0.991889 + }, + { + "surface": "嬉し涙", + "readging": "うれしなみだ", + "pos": "名詞", + "pn": 0.99187 + }, + { + "surface": "俊", + "readging": "しゅん", + "pos": "名詞", + "pn": 0.991831 + }, + { + "surface": "祝する", + "readging": "しゅくする", + "pos": "動詞", + "pn": 0.991824 + }, + { + "surface": "善政", + "readging": "ぜんせい", + "pos": "名詞", + "pn": 0.991823 + }, + { + "surface": "承引", + "readging": "しょういん", + "pos": "名詞", + "pn": 0.991799 + }, + { + "surface": "ブーム", + "readging": "ブーム", + "pos": "名詞", + "pn": 0.991794 + }, + { + "surface": "恵む", + "readging": "めぐむ", + "pos": "動詞", + "pn": 0.991793 + }, + { + "surface": "佳什", + "readging": "かじゅう", + "pos": "名詞", + "pn": 0.991778 + }, + { + "surface": "風伯", + "readging": "ふうはく", + "pos": "名詞", + "pn": 0.991774 + }, + { + "surface": "相応しい", + "readging": "ふさわしい", + "pos": "形容詞", + "pn": 0.991753 + }, + { + "surface": "手ばしこい", + "readging": "てばしこい", + "pos": "形容詞", + "pn": 0.991736 + }, + { + "surface": "菩薩", + "readging": "ぼさつ", + "pos": "名詞", + "pn": 0.991707 + }, + { + "surface": "見好い", + "readging": "みよい", + "pos": "形容詞", + "pn": 0.991695 + }, + { + "surface": "最適", + "readging": "さいてき", + "pos": "名詞", + "pn": 0.991663 + }, + { + "surface": "褒めそやす", + "readging": "ほめそやす", + "pos": "動詞", + "pn": 0.991645 + }, + { + "surface": "治する", + "readging": "じする", + "pos": "動詞", + "pn": 0.991634 + }, + { + "surface": "耆宿", + "readging": "きしゅく", + "pos": "名詞", + "pn": 0.991624 + }, + { + "surface": "名案", + "readging": "めいあん", + "pos": "名詞", + "pn": 0.991618 + }, + { + "surface": "気楽", + "readging": "きらく", + "pos": "名詞", + "pn": 0.991617 + }, + { + "surface": "寛恕", + "readging": "かんじょ", + "pos": "名詞", + "pn": 0.99161 + }, + { + "surface": "力添え", + "readging": "ちからぞえ", + "pos": "名詞", + "pn": 0.991593 + }, + { + "surface": "御膳蕎麦", + "readging": "ごぜんそば", + "pos": "名詞", + "pn": 0.991585 + }, + { + "surface": "得難い", + "readging": "えがたい", + "pos": "形容詞", + "pn": 0.99158 + }, + { + "surface": "慶祝", + "readging": "けいしゅく", + "pos": "名詞", + "pn": 0.991577 + }, + { + "surface": "仏", + "readging": "ほとけ", + "pos": "名詞", + "pn": 0.991565 + }, + { + "surface": "賀宴", + "readging": "がえん", + "pos": "名詞", + "pn": 0.991533 + }, + { + "surface": "大知", + "readging": "たいち", + "pos": "名詞", + "pn": 0.991492 + }, + { + "surface": "上等", + "readging": "じょうとう", + "pos": "名詞", + "pn": 0.991482 + }, + { + "surface": "思う存分", + "readging": "おもうぞんぶん", + "pos": "副詞", + "pn": 0.991479 + }, + { + "surface": "名君", + "readging": "めいくん", + "pos": "名詞", + "pn": 0.991464 + }, + { + "surface": "幸", + "readging": "さち", + "pos": "名詞", + "pn": 0.991408 + }, + { + "surface": "神品", + "readging": "しんぴん", + "pos": "名詞", + "pn": 0.991407 + }, + { + "surface": "頼もしい", + "readging": "たのもしい", + "pos": "形容詞", + "pn": 0.991405 + }, + { + "surface": "絶佳", + "readging": "ぜっか", + "pos": "名詞", + "pn": 0.991378 + }, + { + "surface": "美味しい", + "readging": "おいしい", + "pos": "形容詞", + "pn": 0.99136 + }, + { + "surface": "晴晴", + "readging": "はればれ", + "pos": "名詞", + "pn": 0.991359 + }, + { + "surface": "逞しい", + "readging": "たくましい", + "pos": "形容詞", + "pn": 0.99135 + }, + { + "surface": "大慶", + "readging": "たいけい", + "pos": "名詞", + "pn": 0.991345 + }, + { + "surface": "逸物", + "readging": "いちもつ", + "pos": "名詞", + "pn": 0.991311 + }, + { + "surface": "尊い", + "readging": "たっとい", + "pos": "形容詞", + "pn": 0.991306 + }, + { + "surface": "一興", + "readging": "いっきょう", + "pos": "名詞", + "pn": 0.991285 + }, + { + "surface": "簡捷", + "readging": "かんしょう", + "pos": "名詞", + "pn": 0.991277 + }, + { + "surface": "生き生き", + "readging": "いきいき", + "pos": "名詞", + "pn": 0.991265 + }, + { + "surface": "気保養", + "readging": "きほよう", + "pos": "名詞", + "pn": 0.991241 + }, + { + "surface": "甲斐性", + "readging": "かいしょう", + "pos": "名詞", + "pn": 0.991236 + }, + { + "surface": "名剣", + "readging": "めいけん", + "pos": "名詞", + "pn": 0.991229 + }, + { + "surface": "奇才", + "readging": "きさい", + "pos": "名詞", + "pn": 0.991218 + }, + { + "surface": "だらし", + "readging": "だらし", + "pos": "名詞", + "pn": 0.991217 + }, + { + "surface": "うってつけ", + "readging": "うってつけ", + "pos": "名詞", + "pn": 0.991204 + }, + { + "surface": "福音", + "readging": "ふくいん", + "pos": "名詞", + "pn": 0.9912 + }, + { + "surface": "遺志", + "readging": "いし", + "pos": "名詞", + "pn": 0.991175 + }, + { + "surface": "聖賢", + "readging": "せいけん", + "pos": "名詞", + "pn": 0.991135 + }, + { + "surface": "礼賛", + "readging": "らいさん", + "pos": "名詞", + "pn": 0.991128 + }, + { + "surface": "慣れる", + "readging": "なれる", + "pos": "動詞", + "pn": 0.991114 + }, + { + "surface": "優等", + "readging": "ゆうとう", + "pos": "名詞", + "pn": 0.991059 + }, + { + "surface": "勝地", + "readging": "しょうち", + "pos": "名詞", + "pn": 0.991049 + }, + { + "surface": "盛名", + "readging": "せいめい", + "pos": "名詞", + "pn": 0.991039 + }, + { + "surface": "淑", + "readging": "しゅく", + "pos": "名詞", + "pn": 0.991037 + }, + { + "surface": "若返る", + "readging": "わかがえる", + "pos": "動詞", + "pn": 0.991011 + }, + { + "surface": "レリーフ", + "readging": "レリーフ", + "pos": "名詞", + "pn": 0.99098 + }, + { + "surface": "賞翫", + "readging": "しょうがん", + "pos": "名詞", + "pn": 0.990978 + }, + { + "surface": "高庇", + "readging": "こうひ", + "pos": "名詞", + "pn": 0.990976 + }, + { + "surface": "快哉", + "readging": "かいさい", + "pos": "名詞", + "pn": 0.990959 + }, + { + "surface": "インテリ", + "readging": "インテリ", + "pos": "名詞", + "pn": 0.990874 + }, + { + "surface": "評判", + "readging": "ひょうばん", + "pos": "名詞", + "pn": 0.99087 + }, + { + "surface": "ベター", + "readging": "ベターハーフ", + "pos": "名詞", + "pn": 0.990864 + }, + { + "surface": "剣客", + "readging": "けんかく", + "pos": "名詞", + "pn": 0.990859 + }, + { + "surface": "勇む", + "readging": "いさむ", + "pos": "動詞", + "pn": 0.990854 + }, + { + "surface": "金剛力", + "readging": "こんごうりき", + "pos": "名詞", + "pn": 0.990824 + }, + { + "surface": "吉相", + "readging": "きっそう", + "pos": "名詞", + "pn": 0.990819 + }, + { + "surface": "美点", + "readging": "びてん", + "pos": "名詞", + "pn": 0.990787 + }, + { + "surface": "名識", + "readging": "めいしき", + "pos": "名詞", + "pn": 0.990782 + }, + { + "surface": "絶景", + "readging": "ぜっけい", + "pos": "名詞", + "pn": 0.990779 + }, + { + "surface": "壮", + "readging": "そう", + "pos": "名詞", + "pn": 0.990775 + }, + { + "surface": "名香", + "readging": "めいこう", + "pos": "名詞", + "pn": 0.990771 + }, + { + "surface": "怪腕", + "readging": "かいわん", + "pos": "名詞", + "pn": 0.990764 + }, + { + "surface": "佳節", + "readging": "かせつ", + "pos": "名詞", + "pn": 0.990746 + }, + { + "surface": "偉効", + "readging": "いこう", + "pos": "名詞", + "pn": 0.990721 + }, + { + "surface": "偉業", + "readging": "いぎょう", + "pos": "名詞", + "pn": 0.990717 + }, + { + "surface": "俊英", + "readging": "しゅんえい", + "pos": "名詞", + "pn": 0.990704 + }, + { + "surface": "助ける", + "readging": "すける", + "pos": "動詞", + "pn": 0.990702 + }, + { + "surface": "効能", + "readging": "こうのう", + "pos": "名詞", + "pn": 0.990691 + }, + { + "surface": "英名", + "readging": "えいめい", + "pos": "名詞", + "pn": 0.990689 + }, + { + "surface": "やって退ける", + "readging": "やってのける", + "pos": "動詞", + "pn": 0.990689 + }, + { + "surface": "英傑", + "readging": "えいけつ", + "pos": "名詞", + "pn": 0.990685 + }, + { + "surface": "卓効", + "readging": "たっこう", + "pos": "名詞", + "pn": 0.990642 + }, + { + "surface": "剛直", + "readging": "ごうちょく", + "pos": "名詞", + "pn": 0.990636 + }, + { + "surface": "勧奨", + "readging": "かんしょう", + "pos": "名詞", + "pn": 0.990591 + }, + { + "surface": "好敵手", + "readging": "こうてきしゅ", + "pos": "名詞", + "pn": 0.990583 + }, + { + "surface": "奮い起す", + "readging": "ふるいおこす", + "pos": "動詞", + "pn": 0.990557 + }, + { + "surface": "俳聖", + "readging": "はいせい", + "pos": "名詞", + "pn": 0.990542 + }, + { + "surface": "冥加", + "readging": "みょうが", + "pos": "名詞", + "pn": 0.99054 + }, + { + "surface": "尤物", + "readging": "ゆうぶつ", + "pos": "名詞", + "pn": 0.990532 + }, + { + "surface": "画聖", + "readging": "がせい", + "pos": "名詞", + "pn": 0.990532 + }, + { + "surface": "厚情", + "readging": "こうじょう", + "pos": "名詞", + "pn": 0.990531 + }, + { + "surface": "前賢", + "readging": "ぜんけん", + "pos": "名詞", + "pn": 0.990527 + }, + { + "surface": "曠世", + "readging": "こうせい", + "pos": "名詞", + "pn": 0.990505 + }, + { + "surface": "仁徳", + "readging": "じんとく", + "pos": "名詞", + "pn": 0.990485 + }, + { + "surface": "嘉例", + "readging": "かれい", + "pos": "名詞", + "pn": 0.990457 + }, + { + "surface": "幸運児", + "readging": "こううんじ", + "pos": "名詞", + "pn": 0.990426 + }, + { + "surface": "すすどい", + "readging": "すすどい", + "pos": "形容詞", + "pn": 0.990412 + }, + { + "surface": "大国", + "readging": "たいこく", + "pos": "名詞", + "pn": 0.9904 + }, + { + "surface": "正", + "readging": "しょう", + "pos": "名詞", + "pn": 0.990394 + }, + { + "surface": "誉", + "readging": "よ", + "pos": "名詞", + "pn": 0.990383 + }, + { + "surface": "殷盛", + "readging": "いんせい", + "pos": "名詞", + "pn": 0.990371 + }, + { + "surface": "値頃", + "readging": "ねごろ", + "pos": "名詞", + "pn": 0.990358 + }, + { + "surface": "駿足", + "readging": "しゅんそく", + "pos": "名詞", + "pn": 0.990355 + }, + { + "surface": "尊い", + "readging": "とうとい", + "pos": "形容詞", + "pn": 0.990354 + }, + { + "surface": "鋭利", + "readging": "えいり", + "pos": "名詞", + "pn": 0.990334 + }, + { + "surface": "嘆美", + "readging": "たんび", + "pos": "名詞", + "pn": 0.990333 + }, + { + "surface": "天佑", + "readging": "てんゆう", + "pos": "名詞", + "pn": 0.990326 + }, + { + "surface": "与し易い", + "readging": "くみしやすい", + "pos": "形容詞", + "pn": 0.990325 + }, + { + "surface": "壮健", + "readging": "そうけん", + "pos": "名詞", + "pn": 0.990309 + }, + { + "surface": "奨金", + "readging": "しょうきん", + "pos": "名詞", + "pn": 0.990296 + }, + { + "surface": "上根", + "readging": "じょうこん", + "pos": "名詞", + "pn": 0.990246 + }, + { + "surface": "快楽", + "readging": "けらく", + "pos": "名詞", + "pn": 0.990222 + }, + { + "surface": "名家", + "readging": "めいか", + "pos": "名詞", + "pn": 0.990221 + }, + { + "surface": "選りすぐる", + "readging": "えりすぐる", + "pos": "動詞", + "pn": 0.990205 + }, + { + "surface": "うら若い", + "readging": "うらわかい", + "pos": "形容詞", + "pn": 0.990202 + }, + { + "surface": "改める", + "readging": "あらためる", + "pos": "動詞", + "pn": 0.990167 + }, + { + "surface": "芳名", + "readging": "ほうめい", + "pos": "名詞", + "pn": 0.990164 + }, + { + "surface": "英雄", + "readging": "えいゆう", + "pos": "名詞", + "pn": 0.990153 + }, + { + "surface": "好一対", + "readging": "こういっつい", + "pos": "名詞", + "pn": 0.990148 + }, + { + "surface": "日本一", + "readging": "にほんいち", + "pos": "名詞", + "pn": 0.990143 + }, + { + "surface": "嘉納", + "readging": "かのう", + "pos": "名詞", + "pn": 0.990112 + }, + { + "surface": "聖", + "readging": "ひじり", + "pos": "名詞", + "pn": 0.990084 + }, + { + "surface": "賀正", + "readging": "がしょう", + "pos": "名詞", + "pn": 0.990078 + }, + { + "surface": "声誉", + "readging": "せいよ", + "pos": "名詞", + "pn": 0.990073 + }, + { + "surface": "大福", + "readging": "だいふく", + "pos": "名詞", + "pn": 0.990069 + }, + { + "surface": "珍", + "readging": "ちん", + "pos": "名詞", + "pn": 0.990065 + }, + { + "surface": "微笑ましい", + "readging": "ほほえましい", + "pos": "形容詞", + "pn": 0.990061 + }, + { + "surface": "賢", + "readging": "けん", + "pos": "名詞", + "pn": 0.990028 + }, + { + "surface": "楽寝", + "readging": "らくね", + "pos": "名詞", + "pn": 0.990017 + }, + { + "surface": "愛妻", + "readging": "あいさい", + "pos": "名詞", + "pn": 0.990006 + }, + { + "surface": "特選", + "readging": "とくせん", + "pos": "名詞", + "pn": 0.989975 + }, + { + "surface": "大器", + "readging": "たいき", + "pos": "名詞", + "pn": 0.989969 + }, + { + "surface": "精彩", + "readging": "せいさい", + "pos": "名詞", + "pn": 0.989947 + }, + { + "surface": "めっけ物", + "readging": "めっけもの", + "pos": "名詞", + "pn": 0.989932 + }, + { + "surface": "鋭気", + "readging": "えいき", + "pos": "名詞", + "pn": 0.989913 + }, + { + "surface": "艶美", + "readging": "えんび", + "pos": "名詞", + "pn": 0.989904 + }, + { + "surface": "祝勝", + "readging": "しゅくしょう", + "pos": "名詞", + "pn": 0.989893 + }, + { + "surface": "明敏", + "readging": "めいびん", + "pos": "名詞", + "pn": 0.989886 + }, + { + "surface": "声名", + "readging": "せいめい", + "pos": "名詞", + "pn": 0.989882 + }, + { + "surface": "素志", + "readging": "そし", + "pos": "名詞", + "pn": 0.989872 + }, + { + "surface": "満満", + "readging": "まんまん", + "pos": "名詞", + "pn": 0.989868 + }, + { + "surface": "充溢", + "readging": "じゅういつ", + "pos": "名詞", + "pn": 0.989868 + }, + { + "surface": "一助", + "readging": "いちじょ", + "pos": "名詞", + "pn": 0.989863 + }, + { + "surface": "金鵄勲章", + "readging": "きんしくんしょう", + "pos": "名詞", + "pn": 0.989861 + }, + { + "surface": "上水", + "readging": "じょうすい", + "pos": "名詞", + "pn": 0.989858 + }, + { + "surface": "公平", + "readging": "こうへい", + "pos": "名詞", + "pn": 0.989836 + }, + { + "surface": "救う", + "readging": "すくう", + "pos": "動詞", + "pn": 0.989773 + }, + { + "surface": "端麗", + "readging": "たんれい", + "pos": "名詞", + "pn": 0.989767 + }, + { + "surface": "典麗", + "readging": "てんれい", + "pos": "名詞", + "pn": 0.989767 + }, + { + "surface": "晴朗", + "readging": "せいろう", + "pos": "名詞", + "pn": 0.989757 + }, + { + "surface": "盛年", + "readging": "せいねん", + "pos": "名詞", + "pn": 0.98975 + }, + { + "surface": "紳士", + "readging": "しんし", + "pos": "名詞", + "pn": 0.989749 + }, + { + "surface": "至誠", + "readging": "しせい", + "pos": "名詞", + "pn": 0.989738 + }, + { + "surface": "支援", + "readging": "しえん", + "pos": "名詞", + "pn": 0.989732 + }, + { + "surface": "文才", + "readging": "ぶんさい", + "pos": "名詞", + "pn": 0.989728 + }, + { + "surface": "名著", + "readging": "めいちょ", + "pos": "名詞", + "pn": 0.989727 + }, + { + "surface": "親しい", + "readging": "したしい", + "pos": "形容詞", + "pn": 0.989699 + }, + { + "surface": "雄渾", + "readging": "ゆうこん", + "pos": "名詞", + "pn": 0.98965 + }, + { + "surface": "絶勝", + "readging": "ぜっしょう", + "pos": "名詞", + "pn": 0.989649 + }, + { + "surface": "機知", + "readging": "きち", + "pos": "名詞", + "pn": 0.989647 + }, + { + "surface": "しゃきっと", + "readging": "しゃきっと", + "pos": "副詞", + "pn": 0.98963 + }, + { + "surface": "変革", + "readging": "へんかく", + "pos": "名詞", + "pn": 0.989616 + }, + { + "surface": "栄誉", + "readging": "えいよ", + "pos": "名詞", + "pn": 0.989607 + }, + { + "surface": "美姫", + "readging": "びき", + "pos": "名詞", + "pn": 0.989605 + }, + { + "surface": "有難い", + "readging": "ありがたい", + "pos": "形容詞", + "pn": 0.989597 + }, + { + "surface": "OK", + "readging": "オーケー", + "pos": "名詞", + "pn": 0.989596 + }, + { + "surface": "爽快", + "readging": "そうかい", + "pos": "名詞", + "pn": 0.989593 + }, + { + "surface": "卓論", + "readging": "たくろん", + "pos": "名詞", + "pn": 0.98958 + }, + { + "surface": "福運", + "readging": "ふくうん", + "pos": "名詞", + "pn": 0.989579 + }, + { + "surface": "冥利", + "readging": "みょうり", + "pos": "名詞", + "pn": 0.989499 + }, + { + "surface": "優越感", + "readging": "ゆうえつかん", + "pos": "名詞", + "pn": 0.989495 + }, + { + "surface": "全快", + "readging": "ぜんかい", + "pos": "名詞", + "pn": 0.989475 + }, + { + "surface": "英", + "readging": "えい", + "pos": "名詞", + "pn": 0.989474 + }, + { + "surface": "偉観", + "readging": "いかん", + "pos": "名詞", + "pn": 0.98946 + }, + { + "surface": "にっこり", + "readging": "にっこり", + "pos": "副詞", + "pn": 0.989443 + }, + { + "surface": "名将", + "readging": "めいしょう", + "pos": "名詞", + "pn": 0.989438 + }, + { + "surface": "見頃", + "readging": "みごろ", + "pos": "名詞", + "pn": 0.989433 + }, + { + "surface": "聖帝", + "readging": "せいてい", + "pos": "名詞", + "pn": 0.989404 + }, + { + "surface": "ぴか一", + "readging": "ぴかいち", + "pos": "名詞", + "pn": 0.989386 + }, + { + "surface": "大聖", + "readging": "たいせい", + "pos": "名詞", + "pn": 0.989376 + }, + { + "surface": "美美しい", + "readging": "びびしい", + "pos": "形容詞", + "pn": 0.989374 + }, + { + "surface": "上機嫌", + "readging": "じょうきげん", + "pos": "名詞", + "pn": 0.989372 + }, + { + "surface": "功科", + "readging": "こうか", + "pos": "名詞", + "pn": 0.989353 + }, + { + "surface": "寛ぐ", + "readging": "くつろぐ", + "pos": "動詞", + "pn": 0.989349 + }, + { + "surface": "強国", + "readging": "きょうこく", + "pos": "名詞", + "pn": 0.989343 + }, + { + "surface": "気炎", + "readging": "きえん", + "pos": "名詞", + "pn": 0.989337 + }, + { + "surface": "祝着", + "readging": "しゅうちゃく", + "pos": "名詞", + "pn": 0.989333 + }, + { + "surface": "妙趣", + "readging": "みょうしゅ", + "pos": "名詞", + "pn": 0.989326 + }, + { + "surface": "広壮", + "readging": "こうそう", + "pos": "名詞", + "pn": 0.989307 + }, + { + "surface": "君徳", + "readging": "くんとく", + "pos": "名詞", + "pn": 0.989299 + }, + { + "surface": "功徳", + "readging": "くどく", + "pos": "名詞", + "pn": 0.989295 + }, + { + "surface": "俊傑", + "readging": "しゅんけつ", + "pos": "名詞", + "pn": 0.989284 + }, + { + "surface": "上分別", + "readging": "じょうふんべつ", + "pos": "名詞", + "pn": 0.989278 + }, + { + "surface": "天才", + "readging": "てんさい", + "pos": "名詞", + "pn": 0.989242 + }, + { + "surface": "良辰", + "readging": "りょうしん", + "pos": "名詞", + "pn": 0.989228 + }, + { + "surface": "流涎", + "readging": "りゅうぜん", + "pos": "名詞", + "pn": 0.989214 + }, + { + "surface": "面白い", + "readging": "おもしろい", + "pos": "形容詞", + "pn": 0.989199 + }, + { + "surface": "小町", + "readging": "こまち", + "pos": "名詞", + "pn": 0.989194 + }, + { + "surface": "敏捷", + "readging": "びんしょう", + "pos": "名詞", + "pn": 0.989191 + }, + { + "surface": "貴顕", + "readging": "きけん", + "pos": "名詞", + "pn": 0.989188 + }, + { + "surface": "声望", + "readging": "せいぼう", + "pos": "名詞", + "pn": 0.989181 + }, + { + "surface": "人望", + "readging": "じんぼう", + "pos": "名詞", + "pn": 0.989169 + }, + { + "surface": "美名", + "readging": "びめい", + "pos": "名詞", + "pn": 0.989143 + }, + { + "surface": "特", + "readging": "とく", + "pos": "名詞", + "pn": 0.989139 + }, + { + "surface": "さばさば", + "readging": "さばさば", + "pos": "名詞", + "pn": 0.989139 + }, + { + "surface": "のんびり", + "readging": "のんびり", + "pos": "副詞", + "pn": 0.989135 + }, + { + "surface": "褒美", + "readging": "ほうび", + "pos": "名詞", + "pn": 0.989131 + }, + { + "surface": "碩徳", + "readging": "せきとく", + "pos": "名詞", + "pn": 0.98913 + }, + { + "surface": "優越", + "readging": "ゆうえつ", + "pos": "名詞", + "pn": 0.989105 + }, + { + "surface": "寛厚", + "readging": "かんこう", + "pos": "名詞", + "pn": 0.989093 + }, + { + "surface": "粒選り", + "readging": "つぶより", + "pos": "名詞", + "pn": 0.989077 + }, + { + "surface": "機才", + "readging": "きさい", + "pos": "名詞", + "pn": 0.989077 + }, + { + "surface": "ぴちぴち", + "readging": "ぴちぴち", + "pos": "副詞", + "pn": 0.989073 + }, + { + "surface": "功業", + "readging": "こうぎょう", + "pos": "名詞", + "pn": 0.989069 + }, + { + "surface": "名園", + "readging": "めいえん", + "pos": "名詞", + "pn": 0.989047 + }, + { + "surface": "零れ幸い", + "readging": "こぼれざいわい", + "pos": "名詞", + "pn": 0.989046 + }, + { + "surface": "人徳", + "readging": "にんとく", + "pos": "名詞", + "pn": 0.989029 + }, + { + "surface": "妙諦", + "readging": "みょうてい", + "pos": "名詞", + "pn": 0.989028 + }, + { + "surface": "好配", + "readging": "こうはい", + "pos": "名詞", + "pn": 0.98901 + }, + { + "surface": "神神しい", + "readging": "こうごうしい", + "pos": "形容詞", + "pn": 0.989005 + }, + { + "surface": "融和", + "readging": "ゆうわ", + "pos": "名詞", + "pn": 0.988992 + }, + { + "surface": "女丈夫", + "readging": "じょじょうふ", + "pos": "名詞", + "pn": 0.988989 + }, + { + "surface": "別懇", + "readging": "べっこん", + "pos": "名詞", + "pn": 0.988981 + }, + { + "surface": "名勝", + "readging": "めいしょう", + "pos": "名詞", + "pn": 0.988978 + }, + { + "surface": "卓見", + "readging": "たっけん", + "pos": "名詞", + "pn": 0.988977 + }, + { + "surface": "才徳", + "readging": "さいとく", + "pos": "名詞", + "pn": 0.988976 + }, + { + "surface": "御慶", + "readging": "ぎょけい", + "pos": "名詞", + "pn": 0.988973 + }, + { + "surface": "一頭地", + "readging": "いっとうち", + "pos": "名詞", + "pn": 0.98897 + }, + { + "surface": "冠絶", + "readging": "かんぜつ", + "pos": "名詞", + "pn": 0.988959 + }, + { + "surface": "矜持", + "readging": "きょうじ", + "pos": "名詞", + "pn": 0.988946 + }, + { + "surface": "軽捷", + "readging": "けいしょう", + "pos": "名詞", + "pn": 0.988939 + }, + { + "surface": "浮き浮き", + "readging": "うきうき", + "pos": "副詞", + "pn": 0.988895 + }, + { + "surface": "歓", + "readging": "かん", + "pos": "名詞", + "pn": 0.988891 + }, + { + "surface": "長所", + "readging": "ちょうしょ", + "pos": "名詞", + "pn": 0.98889 + }, + { + "surface": "光被", + "readging": "こうひ", + "pos": "名詞", + "pn": 0.988886 + }, + { + "surface": "勤しむ", + "readging": "いそしむ", + "pos": "動詞", + "pn": 0.988864 + }, + { + "surface": "同ずる", + "readging": "どうずる", + "pos": "動詞", + "pn": 0.988859 + }, + { + "surface": "晴天", + "readging": "せいてん", + "pos": "名詞", + "pn": 0.988845 + }, + { + "surface": "盛徳", + "readging": "せいとく", + "pos": "名詞", + "pn": 0.98882 + }, + { + "surface": "上天気", + "readging": "じょうてんき", + "pos": "名詞", + "pn": 0.988819 + }, + { + "surface": "絶賛", + "readging": "ぜっさん", + "pos": "名詞", + "pn": 0.988818 + }, + { + "surface": "豊", + "readging": "ほう", + "pos": "名詞", + "pn": 0.988787 + }, + { + "surface": "快事", + "readging": "かいじ", + "pos": "名詞", + "pn": 0.988783 + }, + { + "surface": "懇情", + "readging": "こんじょう", + "pos": "名詞", + "pn": 0.988782 + }, + { + "surface": "郁", + "readging": "いく", + "pos": "名詞", + "pn": 0.988775 + }, + { + "surface": "適職", + "readging": "てきしょく", + "pos": "名詞", + "pn": 0.988762 + }, + { + "surface": "神様", + "readging": "かみさま", + "pos": "名詞", + "pn": 0.988757 + }, + { + "surface": "しゃきしゃき", + "readging": "しゃきしゃき", + "pos": "副詞", + "pn": 0.988724 + }, + { + "surface": "堅実", + "readging": "けんじつ", + "pos": "名詞", + "pn": 0.98872 + }, + { + "surface": "援引", + "readging": "えんいん", + "pos": "名詞", + "pn": 0.98872 + }, + { + "surface": "適える", + "readging": "かなえる", + "pos": "動詞", + "pn": 0.988713 + }, + { + "surface": "褒めちぎる", + "readging": "ほめちぎる", + "pos": "動詞", + "pn": 0.988708 + }, + { + "surface": "美禄", + "readging": "びろく", + "pos": "名詞", + "pn": 0.988692 + }, + { + "surface": "英邁", + "readging": "えいまい", + "pos": "名詞", + "pn": 0.988688 + }, + { + "surface": "堂堂", + "readging": "どうどう", + "pos": "副詞", + "pn": 0.988687 + }, + { + "surface": "人物", + "readging": "じんぶつ", + "pos": "名詞", + "pn": 0.988679 + }, + { + "surface": "一粒選り", + "readging": "ひとつぶえり", + "pos": "名詞", + "pn": 0.988674 + }, + { + "surface": "出来物", + "readging": "できぶつ", + "pos": "名詞", + "pn": 0.988671 + }, + { + "surface": "恩愛", + "readging": "おんあい", + "pos": "名詞", + "pn": 0.988654 + }, + { + "surface": "いざとい", + "readging": "いざとい", + "pos": "形容詞", + "pn": 0.988651 + }, + { + "surface": "国士無双", + "readging": "こくしむそう", + "pos": "名詞", + "pn": 0.988643 + }, + { + "surface": "慶色", + "readging": "けいしょく", + "pos": "名詞", + "pn": 0.988634 + }, + { + "surface": "静静", + "readging": "しずしず", + "pos": "副詞", + "pn": 0.988626 + }, + { + "surface": "賞用", + "readging": "しょうよう", + "pos": "名詞", + "pn": 0.988624 + }, + { + "surface": "喜", + "readging": "き", + "pos": "名詞", + "pn": 0.988623 + }, + { + "surface": "睦まじい", + "readging": "むつまじい", + "pos": "形容詞", + "pn": 0.988622 + }, + { + "surface": "健勝", + "readging": "けんしょう", + "pos": "名詞", + "pn": 0.988615 + }, + { + "surface": "世知", + "readging": "せち", + "pos": "名詞", + "pn": 0.988611 + }, + { + "surface": "執成す", + "readging": "とりなす", + "pos": "動詞", + "pn": 0.988609 + }, + { + "surface": "手早い", + "readging": "てばやい", + "pos": "形容詞", + "pn": 0.988576 + }, + { + "surface": "剛勇", + "readging": "ごうゆう", + "pos": "名詞", + "pn": 0.988574 + }, + { + "surface": "床しい", + "readging": "ゆかしい", + "pos": "形容詞", + "pn": 0.988541 + }, + { + "surface": "ライバル", + "readging": "ライバル", + "pos": "名詞", + "pn": 0.98852 + }, + { + "surface": "平癒", + "readging": "へいゆ", + "pos": "名詞", + "pn": 0.988514 + }, + { + "surface": "名妓", + "readging": "めいぎ", + "pos": "名詞", + "pn": 0.988505 + }, + { + "surface": "入神", + "readging": "にゅうしん", + "pos": "名詞", + "pn": 0.988505 + }, + { + "surface": "悟る", + "readging": "さとる", + "pos": "動詞", + "pn": 0.988485 + }, + { + "surface": "無比", + "readging": "むひ", + "pos": "名詞", + "pn": 0.988475 + }, + { + "surface": "睦", + "readging": "ぼく", + "pos": "名詞", + "pn": 0.988452 + }, + { + "surface": "若鮎", + "readging": "わかあゆ", + "pos": "名詞", + "pn": 0.988388 + }, + { + "surface": "卓絶", + "readging": "たくぜつ", + "pos": "名詞", + "pn": 0.988382 + }, + { + "surface": "改まる", + "readging": "あらたまる", + "pos": "動詞", + "pn": 0.988373 + }, + { + "surface": "好手", + "readging": "こうしゅ", + "pos": "名詞", + "pn": 0.988369 + }, + { + "surface": "強大", + "readging": "きょうだい", + "pos": "名詞", + "pn": 0.988359 + }, + { + "surface": "改心", + "readging": "かいしん", + "pos": "名詞", + "pn": 0.988328 + }, + { + "surface": "見栄え", + "readging": "みばえ", + "pos": "名詞", + "pn": 0.988315 + }, + { + "surface": "賢夫人", + "readging": "けんぷじん", + "pos": "名詞", + "pn": 0.988309 + }, + { + "surface": "勇壮", + "readging": "ゆうそう", + "pos": "名詞", + "pn": 0.988291 + }, + { + "surface": "手頃", + "readging": "てごろ", + "pos": "名詞", + "pn": 0.988273 + }, + { + "surface": "大作", + "readging": "たいさく", + "pos": "名詞", + "pn": 0.988256 + }, + { + "surface": "賢母", + "readging": "けんぼ", + "pos": "名詞", + "pn": 0.988245 + }, + { + "surface": "武功", + "readging": "ぶこう", + "pos": "名詞", + "pn": 0.988231 + }, + { + "surface": "秀歌", + "readging": "しゅうか", + "pos": "名詞", + "pn": 0.988213 + }, + { + "surface": "義気", + "readging": "ぎき", + "pos": "名詞", + "pn": 0.9882 + }, + { + "surface": "良品", + "readging": "りょうひん", + "pos": "名詞", + "pn": 0.988197 + }, + { + "surface": "明哲", + "readging": "めいてつ", + "pos": "名詞", + "pn": 0.988182 + }, + { + "surface": "すっぱり", + "readging": "すっぱり", + "pos": "副詞", + "pn": 0.988174 + }, + { + "surface": "力持", + "readging": "ちからもち", + "pos": "名詞", + "pn": 0.988172 + }, + { + "surface": "英姿", + "readging": "えいし", + "pos": "名詞", + "pn": 0.988148 + }, + { + "surface": "優", + "readging": "ゆう", + "pos": "名詞", + "pn": 0.988144 + }, + { + "surface": "文豪", + "readging": "ぶんごう", + "pos": "名詞", + "pn": 0.988143 + }, + { + "surface": "妙技", + "readging": "みょうぎ", + "pos": "名詞", + "pn": 0.988117 + }, + { + "surface": "名論", + "readging": "めいろん", + "pos": "名詞", + "pn": 0.988115 + }, + { + "surface": "玉楼", + "readging": "ぎょくろう", + "pos": "名詞", + "pn": 0.988103 + }, + { + "surface": "ときめく", + "readging": "ときめく", + "pos": "動詞", + "pn": 0.988095 + }, + { + "surface": "知勇", + "readging": "ちゆう", + "pos": "名詞", + "pn": 0.988086 + }, + { + "surface": "養生", + "readging": "ようじょう", + "pos": "名詞", + "pn": 0.988084 + }, + { + "surface": "ときめかす", + "readging": "ときめかす", + "pos": "動詞", + "pn": 0.988071 + }, + { + "surface": "喜寿", + "readging": "きじゅ", + "pos": "名詞", + "pn": 0.988049 + }, + { + "surface": "巨魁", + "readging": "きょかい", + "pos": "名詞", + "pn": 0.988035 + }, + { + "surface": "感化", + "readging": "かんか", + "pos": "名詞", + "pn": 0.988006 + }, + { + "surface": "清祥", + "readging": "せいしょう", + "pos": "名詞", + "pn": 0.988004 + }, + { + "surface": "雅言", + "readging": "がげん", + "pos": "名詞", + "pn": 0.988003 + }, + { + "surface": "楽楽", + "readging": "らくらく", + "pos": "副詞", + "pn": 0.987993 + }, + { + "surface": "優しい", + "readging": "やさしい", + "pos": "形容詞", + "pn": 0.987973 + }, + { + "surface": "精選", + "readging": "せいせん", + "pos": "名詞", + "pn": 0.987957 + }, + { + "surface": "更新", + "readging": "こうしん", + "pos": "名詞", + "pn": 0.987953 + }, + { + "surface": "傑僧", + "readging": "けっそう", + "pos": "名詞", + "pn": 0.987949 + }, + { + "surface": "偉丈夫", + "readging": "いじょうふ", + "pos": "名詞", + "pn": 0.987945 + }, + { + "surface": "来援", + "readging": "らいえん", + "pos": "名詞", + "pn": 0.987942 + }, + { + "surface": "別品", + "readging": "べっぴん", + "pos": "名詞", + "pn": 0.987939 + }, + { + "surface": "心地好い", + "readging": "ここちよい", + "pos": "形容詞", + "pn": 0.987909 + }, + { + "surface": "和平", + "readging": "わへい", + "pos": "名詞", + "pn": 0.987905 + }, + { + "surface": "英図", + "readging": "えいと", + "pos": "名詞", + "pn": 0.987875 + }, + { + "surface": "福福しい", + "readging": "ふくぶくしい", + "pos": "形容詞", + "pn": 0.987874 + }, + { + "surface": "適任", + "readging": "てきにん", + "pos": "名詞", + "pn": 0.987866 + }, + { + "surface": "憩う", + "readging": "いこう", + "pos": "動詞", + "pn": 0.987865 + }, + { + "surface": "表徳", + "readging": "ひょうとく", + "pos": "名詞", + "pn": 0.987863 + }, + { + "surface": "近しい", + "readging": "ちかしい", + "pos": "形容詞", + "pn": 0.987854 + }, + { + "surface": "殊勲", + "readging": "しゅくん", + "pos": "名詞", + "pn": 0.987848 + }, + { + "surface": "多士", + "readging": "たし", + "pos": "名詞", + "pn": 0.987846 + }, + { + "surface": "強健", + "readging": "きょうけん", + "pos": "名詞", + "pn": 0.987845 + }, + { + "surface": "物堅い", + "readging": "ものがたい", + "pos": "形容詞", + "pn": 0.987844 + }, + { + "surface": "奇童", + "readging": "きどう", + "pos": "名詞", + "pn": 0.987834 + }, + { + "surface": "嬉し泣き", + "readging": "うれしなき", + "pos": "名詞", + "pn": 0.987826 + }, + { + "surface": "嵌り役", + "readging": "はまりやく", + "pos": "名詞", + "pn": 0.987825 + }, + { + "surface": "業物", + "readging": "わざもの", + "pos": "名詞", + "pn": 0.987822 + }, + { + "surface": "覇気", + "readging": "はき", + "pos": "名詞", + "pn": 0.987803 + }, + { + "surface": "良案", + "readging": "りょうあん", + "pos": "名詞", + "pn": 0.98777 + }, + { + "surface": "頌詞", + "readging": "しょうし", + "pos": "名詞", + "pn": 0.987765 + }, + { + "surface": "若盛り", + "readging": "わかざかり", + "pos": "名詞", + "pn": 0.987759 + }, + { + "surface": "打解ける", + "readging": "うちとける", + "pos": "動詞", + "pn": 0.987715 + }, + { + "surface": "快男児", + "readging": "かいだんじ", + "pos": "名詞", + "pn": 0.987705 + }, + { + "surface": "当て嵌る", + "readging": "あてはまる", + "pos": "動詞", + "pn": 0.987687 + }, + { + "surface": "奇功", + "readging": "きこう", + "pos": "名詞", + "pn": 0.987683 + }, + { + "surface": "美果", + "readging": "びか", + "pos": "名詞", + "pn": 0.987662 + }, + { + "surface": "男伊達", + "readging": "おとこだて", + "pos": "名詞", + "pn": 0.987621 + }, + { + "surface": "識見", + "readging": "しっけん", + "pos": "名詞", + "pn": 0.987602 + }, + { + "surface": "よかれかし", + "readging": "よかれかし", + "pos": "名詞", + "pn": 0.987536 + }, + { + "surface": "守る", + "readging": "まもる", + "pos": "動詞", + "pn": 0.987516 + }, + { + "surface": "妙所", + "readging": "みょうしょ", + "pos": "名詞", + "pn": 0.987513 + }, + { + "surface": "英断", + "readging": "えいだん", + "pos": "名詞", + "pn": 0.98747 + }, + { + "surface": "ベター", + "readging": "ベター", + "pos": "名詞", + "pn": 0.987453 + }, + { + "surface": "甘心", + "readging": "かんしん", + "pos": "名詞", + "pn": 0.987453 + }, + { + "surface": "賀状", + "readging": "がじょう", + "pos": "名詞", + "pn": 0.987448 + }, + { + "surface": "綾なす", + "readging": "あやなす", + "pos": "動詞", + "pn": 0.987448 + }, + { + "surface": "奨", + "readging": "しょう", + "pos": "名詞", + "pn": 0.987421 + }, + { + "surface": "リリーフ", + "readging": "リリーフ", + "pos": "名詞", + "pn": 0.9874 + }, + { + "surface": "頌する", + "readging": "しょうする", + "pos": "動詞", + "pn": 0.987367 + }, + { + "surface": "力付く", + "readging": "ちからづく", + "pos": "動詞", + "pn": 0.987349 + }, + { + "surface": "特旨", + "readging": "とくし", + "pos": "名詞", + "pn": 0.987332 + }, + { + "surface": "巣離れ", + "readging": "すばなれ", + "pos": "名詞", + "pn": 0.987303 + }, + { + "surface": "名士", + "readging": "めいし", + "pos": "名詞", + "pn": 0.987289 + }, + { + "surface": "義捐", + "readging": "ぎえん", + "pos": "名詞", + "pn": 0.987274 + }, + { + "surface": "賑", + "readging": "しん", + "pos": "名詞", + "pn": 0.987266 + }, + { + "surface": "武勇", + "readging": "ぶゆう", + "pos": "名詞", + "pn": 0.987261 + }, + { + "surface": "適業", + "readging": "てきぎょう", + "pos": "名詞", + "pn": 0.987255 + }, + { + "surface": "妙工", + "readging": "みょうこう", + "pos": "名詞", + "pn": 0.987248 + }, + { + "surface": "名手", + "readging": "めいしゅ", + "pos": "名詞", + "pn": 0.987212 + }, + { + "surface": "エリート", + "readging": "エリート", + "pos": "名詞", + "pn": 0.987202 + }, + { + "surface": "広量", + "readging": "こうりょう", + "pos": "名詞", + "pn": 0.987159 + }, + { + "surface": "盛宴", + "readging": "せいえん", + "pos": "名詞", + "pn": 0.987128 + }, + { + "surface": "快闊", + "readging": "かいかつ", + "pos": "名詞", + "pn": 0.987116 + }, + { + "surface": "千載一遇", + "readging": "せんざいいちぐう", + "pos": "名詞", + "pn": 0.987116 + }, + { + "surface": "佳境", + "readging": "かきょう", + "pos": "名詞", + "pn": 0.987094 + }, + { + "surface": "賞状", + "readging": "しょうじょう", + "pos": "名詞", + "pn": 0.987091 + }, + { + "surface": "銘茶", + "readging": "めいちゃ", + "pos": "名詞", + "pn": 0.987084 + }, + { + "surface": "名うて", + "readging": "なうて", + "pos": "名詞", + "pn": 0.987081 + }, + { + "surface": "見易い", + "readging": "みやすい", + "pos": "形容詞", + "pn": 0.98708 + }, + { + "surface": "賢女", + "readging": "けんじょ", + "pos": "名詞", + "pn": 0.987054 + }, + { + "surface": "勝報", + "readging": "しょうほう", + "pos": "名詞", + "pn": 0.987039 + }, + { + "surface": "伉儷", + "readging": "こうれい", + "pos": "名詞", + "pn": 0.987038 + }, + { + "surface": "最上", + "readging": "さいじょう", + "pos": "名詞", + "pn": 0.986992 + }, + { + "surface": "快気", + "readging": "かいき", + "pos": "名詞", + "pn": 0.986968 + }, + { + "surface": "感嘆", + "readging": "かんたん", + "pos": "名詞", + "pn": 0.986962 + }, + { + "surface": "薫り", + "readging": "かおり", + "pos": "名詞", + "pn": 0.986959 + }, + { + "surface": "輝く", + "readging": "かがやく", + "pos": "動詞", + "pn": 0.986932 + }, + { + "surface": "気品", + "readging": "きひん", + "pos": "名詞", + "pn": 0.986904 + }, + { + "surface": "大儒", + "readging": "たいじゅ", + "pos": "名詞", + "pn": 0.986875 + }, + { + "surface": "賞味", + "readging": "しょうみ", + "pos": "名詞", + "pn": 0.986846 + }, + { + "surface": "気安い", + "readging": "きやすい", + "pos": "形容詞", + "pn": 0.986818 + }, + { + "surface": "王者", + "readging": "おうしゃ", + "pos": "名詞", + "pn": 0.986798 + }, + { + "surface": "名聞", + "readging": "みょうもん", + "pos": "名詞", + "pn": 0.986794 + }, + { + "surface": "祝意", + "readging": "しゅくい", + "pos": "名詞", + "pn": 0.986791 + }, + { + "surface": "在世", + "readging": "ざいせい", + "pos": "名詞", + "pn": 0.986774 + }, + { + "surface": "強記", + "readging": "きょうき", + "pos": "名詞", + "pn": 0.986772 + }, + { + "surface": "立身", + "readging": "りっしん", + "pos": "名詞", + "pn": 0.986735 + }, + { + "surface": "豪傑", + "readging": "ごうけつ", + "pos": "名詞", + "pn": 0.986734 + }, + { + "surface": "時節柄", + "readging": "じせつがら", + "pos": "名詞", + "pn": 0.986716 + }, + { + "surface": "名匠", + "readging": "めいしょう", + "pos": "名詞", + "pn": 0.986715 + }, + { + "surface": "腕前", + "readging": "うでまえ", + "pos": "名詞", + "pn": 0.986705 + }, + { + "surface": "奇特", + "readging": "きとく", + "pos": "名詞", + "pn": 0.986665 + }, + { + "surface": "頓智", + "readging": "とんち", + "pos": "名詞", + "pn": 0.986648 + }, + { + "surface": "広大", + "readging": "こうだい", + "pos": "名詞", + "pn": 0.986627 + }, + { + "surface": "強靭", + "readging": "きょうじん", + "pos": "名詞", + "pn": 0.986604 + }, + { + "surface": "識者", + "readging": "しきしゃ", + "pos": "名詞", + "pn": 0.986597 + }, + { + "surface": "驍名", + "readging": "ぎょうめい", + "pos": "名詞", + "pn": 0.986596 + }, + { + "surface": "豊作", + "readging": "ほうさく", + "pos": "名詞", + "pn": 0.986572 + }, + { + "surface": "妹背", + "readging": "いもせ", + "pos": "名詞", + "pn": 0.986564 + }, + { + "surface": "適例", + "readging": "てきれい", + "pos": "名詞", + "pn": 0.986562 + }, + { + "surface": "交歓", + "readging": "こうかん", + "pos": "名詞", + "pn": 0.986548 + }, + { + "surface": "神", + "readging": "しん", + "pos": "名詞", + "pn": 0.986539 + }, + { + "surface": "ルビー", + "readging": "ルビー", + "pos": "名詞", + "pn": 0.986538 + }, + { + "surface": "善人", + "readging": "ぜんにん", + "pos": "名詞", + "pn": 0.986526 + }, + { + "surface": "並び無い", + "readging": "ならびない", + "pos": "形容詞", + "pn": 0.986521 + }, + { + "surface": "高尚", + "readging": "こうしょう", + "pos": "名詞", + "pn": 0.986511 + }, + { + "surface": "尚古", + "readging": "しょうこ", + "pos": "名詞", + "pn": 0.9865 + }, + { + "surface": "美", + "readging": "び", + "pos": "名詞", + "pn": 0.986487 + }, + { + "surface": "褒状", + "readging": "ほうじょう", + "pos": "名詞", + "pn": 0.986484 + }, + { + "surface": "賞牌", + "readging": "しょうはい", + "pos": "名詞", + "pn": 0.986482 + }, + { + "surface": "恭しい", + "readging": "うやうやしい", + "pos": "形容詞", + "pn": 0.986474 + }, + { + "surface": "学徳", + "readging": "がくとく", + "pos": "名詞", + "pn": 0.986459 + }, + { + "surface": "すぐる", + "readging": "すぐる", + "pos": "動詞", + "pn": 0.986454 + }, + { + "surface": "壮快", + "readging": "そうかい", + "pos": "名詞", + "pn": 0.986443 + }, + { + "surface": "驚喜", + "readging": "きょうき", + "pos": "名詞", + "pn": 0.986388 + }, + { + "surface": "適材", + "readging": "てきざい", + "pos": "名詞", + "pn": 0.986371 + }, + { + "surface": "獅子王", + "readging": "ししおう", + "pos": "名詞", + "pn": 0.98637 + }, + { + "surface": "尊名", + "readging": "そんめい", + "pos": "名詞", + "pn": 0.986361 + }, + { + "surface": "若者", + "readging": "わかもの", + "pos": "名詞", + "pn": 0.986356 + }, + { + "surface": "果報", + "readging": "かほう", + "pos": "名詞", + "pn": 0.986324 + }, + { + "surface": "真盛り", + "readging": "まっさかり", + "pos": "名詞", + "pn": 0.986295 + }, + { + "surface": "好漢", + "readging": "こうかん", + "pos": "名詞", + "pn": 0.986275 + }, + { + "surface": "矢頃", + "readging": "やごろ", + "pos": "名詞", + "pn": 0.986272 + }, + { + "surface": "卓立", + "readging": "たくりつ", + "pos": "名詞", + "pn": 0.986258 + }, + { + "surface": "色好い", + "readging": "いろよい", + "pos": "形容詞", + "pn": 0.986246 + }, + { + "surface": "歓心", + "readging": "かんしん", + "pos": "名詞", + "pn": 0.986228 + }, + { + "surface": "世才", + "readging": "せさい", + "pos": "名詞", + "pn": 0.986214 + }, + { + "surface": "良剤", + "readging": "りょうざい", + "pos": "名詞", + "pn": 0.986185 + }, + { + "surface": "良薬", + "readging": "りょうやく", + "pos": "名詞", + "pn": 0.986185 + }, + { + "surface": "全力", + "readging": "ぜんりょく", + "pos": "名詞", + "pn": 0.986162 + }, + { + "surface": "がっちり", + "readging": "がっちり", + "pos": "副詞", + "pn": 0.986128 + }, + { + "surface": "重要文化財", + "readging": "じゅうようぶんかざい", + "pos": "名詞", + "pn": 0.986125 + }, + { + "surface": "花花しい", + "readging": "はなばなしい", + "pos": "形容詞", + "pn": 0.986104 + }, + { + "surface": "賜り物", + "readging": "たまわりもの", + "pos": "名詞", + "pn": 0.986084 + }, + { + "surface": "至心", + "readging": "ししん", + "pos": "名詞", + "pn": 0.986052 + }, + { + "surface": "賛歌", + "readging": "さんか", + "pos": "名詞", + "pn": 0.986044 + }, + { + "surface": "喝采", + "readging": "かっさい", + "pos": "名詞", + "pn": 0.986043 + }, + { + "surface": "賀する", + "readging": "がする", + "pos": "動詞", + "pn": 0.986034 + }, + { + "surface": "暖まる", + "readging": "あたたまる", + "pos": "動詞", + "pn": 0.985994 + }, + { + "surface": "三嘆", + "readging": "さんたん", + "pos": "名詞", + "pn": 0.985973 + }, + { + "surface": "剛健", + "readging": "ごうけん", + "pos": "名詞", + "pn": 0.985967 + }, + { + "surface": "名文", + "readging": "めいぶん", + "pos": "名詞", + "pn": 0.98594 + }, + { + "surface": "高評", + "readging": "こうひょう", + "pos": "名詞", + "pn": 0.985937 + }, + { + "surface": "看破", + "readging": "かんぱ", + "pos": "名詞", + "pn": 0.985919 + }, + { + "surface": "新鮮", + "readging": "しんせん", + "pos": "名詞", + "pn": 0.985908 + }, + { + "surface": "賢兄", + "readging": "けんけい", + "pos": "名詞", + "pn": 0.985899 + }, + { + "surface": "ウイット", + "readging": "ウイット", + "pos": "名詞", + "pn": 0.985897 + }, + { + "surface": "豊満", + "readging": "ほうまん", + "pos": "名詞", + "pn": 0.985895 + }, + { + "surface": "上出来", + "readging": "じょうでき", + "pos": "名詞", + "pn": 0.985894 + }, + { + "surface": "十二分", + "readging": "じゅうにぶん", + "pos": "名詞", + "pn": 0.985871 + }, + { + "surface": "存生", + "readging": "ぞんじょう", + "pos": "名詞", + "pn": 0.985862 + }, + { + "surface": "拳拳", + "readging": "けんけん", + "pos": "名詞", + "pn": 0.985858 + }, + { + "surface": "薫陶", + "readging": "くんとう", + "pos": "名詞", + "pn": 0.985858 + }, + { + "surface": "栄冠", + "readging": "えいかん", + "pos": "名詞", + "pn": 0.985847 + }, + { + "surface": "熟練工", + "readging": "じゅくれんこう", + "pos": "名詞", + "pn": 0.985827 + }, + { + "surface": "聖恩", + "readging": "せいおん", + "pos": "名詞", + "pn": 0.985787 + }, + { + "surface": "麒麟児", + "readging": "きりんじ", + "pos": "名詞", + "pn": 0.985786 + }, + { + "surface": "孝悌", + "readging": "こうてい", + "pos": "名詞", + "pn": 0.985769 + }, + { + "surface": "良材", + "readging": "りょうざい", + "pos": "名詞", + "pn": 0.985758 + }, + { + "surface": "異彩", + "readging": "いさい", + "pos": "名詞", + "pn": 0.985734 + }, + { + "surface": "三羽烏", + "readging": "さんばがらす", + "pos": "名詞", + "pn": 0.985726 + }, + { + "surface": "エンジョイ", + "readging": "エンジョイ", + "pos": "名詞", + "pn": 0.985702 + }, + { + "surface": "出藍", + "readging": "しゅつらん", + "pos": "名詞", + "pn": 0.985695 + }, + { + "surface": "辛抱強い", + "readging": "しんぼうづよい", + "pos": "形容詞", + "pn": 0.985659 + }, + { + "surface": "程合", + "readging": "ほどあい", + "pos": "名詞", + "pn": 0.985652 + }, + { + "surface": "慈悲", + "readging": "じひ", + "pos": "名詞", + "pn": 0.985629 + }, + { + "surface": "きっかり", + "readging": "きっかり", + "pos": "副詞", + "pn": 0.985594 + }, + { + "surface": "求道", + "readging": "ぐどう", + "pos": "名詞", + "pn": 0.985593 + }, + { + "surface": "好感", + "readging": "こうかん", + "pos": "名詞", + "pn": 0.985581 + }, + { + "surface": "八景", + "readging": "はっけい", + "pos": "名詞", + "pn": 0.985576 + }, + { + "surface": "神化", + "readging": "しんか", + "pos": "名詞", + "pn": 0.985575 + }, + { + "surface": "資性", + "readging": "しせい", + "pos": "名詞", + "pn": 0.985568 + }, + { + "surface": "サファイア", + "readging": "サファイア", + "pos": "名詞", + "pn": 0.985548 + }, + { + "surface": "適時", + "readging": "てきじ", + "pos": "名詞", + "pn": 0.98554 + }, + { + "surface": "上手", + "readging": "じょうず", + "pos": "名詞", + "pn": 0.985536 + }, + { + "surface": "青玉", + "readging": "せいぎょく", + "pos": "名詞", + "pn": 0.985501 + }, + { + "surface": "色香", + "readging": "いろか", + "pos": "名詞", + "pn": 0.985479 + }, + { + "surface": "好男子", + "readging": "こうだんし", + "pos": "名詞", + "pn": 0.985476 + }, + { + "surface": "一花", + "readging": "ひとはな", + "pos": "名詞", + "pn": 0.985467 + }, + { + "surface": "勝る", + "readging": "まさる", + "pos": "動詞", + "pn": 0.98546 + }, + { + "surface": "明知", + "readging": "めいち", + "pos": "名詞", + "pn": 0.985457 + }, + { + "surface": "歓呼", + "readging": "かんこ", + "pos": "名詞", + "pn": 0.985422 + }, + { + "surface": "功力", + "readging": "くりき", + "pos": "名詞", + "pn": 0.985377 + }, + { + "surface": "矍鑠", + "readging": "かくしゃく", + "pos": "名詞", + "pn": 0.985358 + }, + { + "surface": "気節", + "readging": "きせつ", + "pos": "名詞", + "pn": 0.985355 + }, + { + "surface": "清清", + "readging": "せいせい", + "pos": "名詞", + "pn": 0.985347 + }, + { + "surface": "善良", + "readging": "ぜんりょう", + "pos": "名詞", + "pn": 0.985321 + }, + { + "surface": "躍り出る", + "readging": "おどりでる", + "pos": "動詞", + "pn": 0.985247 + }, + { + "surface": "珍重", + "readging": "ちんちょう", + "pos": "名詞", + "pn": 0.985244 + }, + { + "surface": "画伯", + "readging": "がはく", + "pos": "名詞", + "pn": 0.985237 + }, + { + "surface": "金剛石", + "readging": "こんごうせき", + "pos": "名詞", + "pn": 0.985234 + }, + { + "surface": "歓迎", + "readging": "かんげい", + "pos": "名詞", + "pn": 0.985233 + }, + { + "surface": "褒賞", + "readging": "ほうしょう", + "pos": "名詞", + "pn": 0.985227 + }, + { + "surface": "三国一", + "readging": "さんごくいち", + "pos": "名詞", + "pn": 0.985226 + }, + { + "surface": "捗捗しい", + "readging": "はかばかしい", + "pos": "形容詞", + "pn": 0.985202 + }, + { + "surface": "才藻", + "readging": "さいそう", + "pos": "名詞", + "pn": 0.985193 + }, + { + "surface": "エスプリ", + "readging": "エスプリ", + "pos": "名詞", + "pn": 0.985183 + }, + { + "surface": "最多", + "readging": "さいた", + "pos": "名詞", + "pn": 0.98516 + }, + { + "surface": "侠客", + "readging": "きょうかく", + "pos": "名詞", + "pn": 0.985148 + }, + { + "surface": "粒揃い", + "readging": "つぶぞろい", + "pos": "名詞", + "pn": 0.985134 + }, + { + "surface": "張切る", + "readging": "はりきる", + "pos": "動詞", + "pn": 0.985128 + }, + { + "surface": "偈", + "readging": "げ", + "pos": "名詞", + "pn": 0.985111 + }, + { + "surface": "慈善", + "readging": "じぜん", + "pos": "名詞", + "pn": 0.985086 + }, + { + "surface": "心安い", + "readging": "こころやすい", + "pos": "形容詞", + "pn": 0.98502 + }, + { + "surface": "鍛える", + "readging": "きたえる", + "pos": "動詞", + "pn": 0.985012 + }, + { + "surface": "聖徳", + "readging": "せいとく", + "pos": "名詞", + "pn": 0.985005 + }, + { + "surface": "神童", + "readging": "しんどう", + "pos": "名詞", + "pn": 0.984953 + }, + { + "surface": "聖人", + "readging": "しょうにん", + "pos": "名詞", + "pn": 0.984945 + }, + { + "surface": "宜", + "readging": "ぎ", + "pos": "副詞", + "pn": 0.984927 + }, + { + "surface": "真打", + "readging": "しんうち", + "pos": "名詞", + "pn": 0.98489 + }, + { + "surface": "勲功", + "readging": "くんこう", + "pos": "名詞", + "pn": 0.984888 + }, + { + "surface": "聖代", + "readging": "せいだい", + "pos": "名詞", + "pn": 0.984838 + }, + { + "surface": "ずば抜ける", + "readging": "ずばぬける", + "pos": "動詞", + "pn": 0.984833 + }, + { + "surface": "英明", + "readging": "えいめい", + "pos": "名詞", + "pn": 0.98481 + }, + { + "surface": "名曲", + "readging": "めいきょく", + "pos": "名詞", + "pn": 0.984804 + }, + { + "surface": "大吉", + "readging": "だいきち", + "pos": "名詞", + "pn": 0.98477 + }, + { + "surface": "賢立て", + "readging": "かしこだて", + "pos": "名詞", + "pn": 0.984747 + }, + { + "surface": "見収め", + "readging": "みおさめ", + "pos": "名詞", + "pn": 0.984744 + }, + { + "surface": "友好", + "readging": "ゆうこう", + "pos": "名詞", + "pn": 0.984706 + }, + { + "surface": "法悦", + "readging": "ほうえつ", + "pos": "名詞", + "pn": 0.984702 + }, + { + "surface": "平復", + "readging": "へいふく", + "pos": "名詞", + "pn": 0.984689 + }, + { + "surface": "吉", + "readging": "きつ", + "pos": "名詞", + "pn": 0.984667 + }, + { + "surface": "俊敏", + "readging": "しゅんびん", + "pos": "名詞", + "pn": 0.984667 + }, + { + "surface": "早業", + "readging": "はやわざ", + "pos": "名詞", + "pn": 0.984648 + }, + { + "surface": "大業物", + "readging": "おおわざもの", + "pos": "名詞", + "pn": 0.98464 + }, + { + "surface": "警抜", + "readging": "けいばつ", + "pos": "名詞", + "pn": 0.984596 + }, + { + "surface": "直る", + "readging": "なおる", + "pos": "動詞", + "pn": 0.984585 + }, + { + "surface": "心強い", + "readging": "こころづよい", + "pos": "形容詞", + "pn": 0.984575 + }, + { + "surface": "親勝り", + "readging": "おやまさり", + "pos": "名詞", + "pn": 0.984547 + }, + { + "surface": "天骨", + "readging": "てんこつ", + "pos": "名詞", + "pn": 0.9845 + }, + { + "surface": "大立者", + "readging": "おおだてもの", + "pos": "名詞", + "pn": 0.984488 + }, + { + "surface": "御感", + "readging": "ぎょかん", + "pos": "名詞", + "pn": 0.984473 + }, + { + "surface": "好例", + "readging": "こうれい", + "pos": "名詞", + "pn": 0.984464 + }, + { + "surface": "鋼玉", + "readging": "こうぎょく", + "pos": "名詞", + "pn": 0.984438 + }, + { + "surface": "青雲", + "readging": "せいうん", + "pos": "名詞", + "pn": 0.984434 + }, + { + "surface": "達識", + "readging": "たっしき", + "pos": "名詞", + "pn": 0.984423 + }, + { + "surface": "長寿", + "readging": "ちょうじゅ", + "pos": "名詞", + "pn": 0.984412 + }, + { + "surface": "ベスト", + "readging": "ベストセラー", + "pos": "名詞", + "pn": 0.984389 + }, + { + "surface": "名優", + "readging": "めいゆう", + "pos": "名詞", + "pn": 0.984374 + }, + { + "surface": "正解", + "readging": "せいかい", + "pos": "名詞", + "pn": 0.984374 + }, + { + "surface": "良しなに", + "readging": "よしなに", + "pos": "副詞", + "pn": 0.984363 + }, + { + "surface": "やたけに", + "readging": "やたけに", + "pos": "副詞", + "pn": 0.984324 + }, + { + "surface": "男らしい", + "readging": "おとこらしい", + "pos": "形容詞", + "pn": 0.984324 + }, + { + "surface": "男盛り", + "readging": "おとこざかり", + "pos": "名詞", + "pn": 0.984313 + }, + { + "surface": "適評", + "readging": "てきひょう", + "pos": "名詞", + "pn": 0.984311 + }, + { + "surface": "凛凛しい", + "readging": "りりしい", + "pos": "形容詞", + "pn": 0.984286 + }, + { + "surface": "腕力", + "readging": "わんりょく", + "pos": "名詞", + "pn": 0.984277 + }, + { + "surface": "わくわく", + "readging": "わくわく", + "pos": "副詞", + "pn": 0.984273 + }, + { + "surface": "快活", + "readging": "かいかつ", + "pos": "名詞", + "pn": 0.984271 + }, + { + "surface": "愛", + "readging": "あい", + "pos": "名詞", + "pn": 0.98427 + }, + { + "surface": "翼賛", + "readging": "よくさん", + "pos": "名詞", + "pn": 0.984253 + }, + { + "surface": "老儒", + "readging": "ろうじゅ", + "pos": "名詞", + "pn": 0.984237 + }, + { + "surface": "方正", + "readging": "ほうせい", + "pos": "名詞", + "pn": 0.984203 + }, + { + "surface": "がっしり", + "readging": "がっしり", + "pos": "副詞", + "pn": 0.984202 + }, + { + "surface": "小才", + "readging": "こさい", + "pos": "名詞", + "pn": 0.984192 + }, + { + "surface": "魁偉", + "readging": "かいい", + "pos": "名詞", + "pn": 0.984172 + }, + { + "surface": "推賞", + "readging": "すいしょう", + "pos": "名詞", + "pn": 0.984168 + }, + { + "surface": "門弟", + "readging": "もんてい", + "pos": "名詞", + "pn": 0.984168 + }, + { + "surface": "咲誇る", + "readging": "さきほこる", + "pos": "動詞", + "pn": 0.984167 + }, + { + "surface": "大兵", + "readging": "だいひょう", + "pos": "名詞", + "pn": 0.984123 + }, + { + "surface": "宿善", + "readging": "しゅくぜん", + "pos": "名詞", + "pn": 0.984121 + }, + { + "surface": "瑞気", + "readging": "ずいき", + "pos": "名詞", + "pn": 0.984095 + }, + { + "surface": "感吟", + "readging": "かんぎん", + "pos": "名詞", + "pn": 0.984048 + }, + { + "surface": "安泰", + "readging": "あんたい", + "pos": "名詞", + "pn": 0.984047 + }, + { + "surface": "賛", + "readging": "さん", + "pos": "名詞", + "pn": 0.984036 + }, + { + "surface": "生き神", + "readging": "いきがみ", + "pos": "名詞", + "pn": 0.984015 + }, + { + "surface": "善感", + "readging": "ぜんかん", + "pos": "名詞", + "pn": 0.984005 + }, + { + "surface": "いみじくも", + "readging": "いみじくも", + "pos": "副詞", + "pn": 0.98395 + }, + { + "surface": "瑞祥", + "readging": "ずいしょう", + "pos": "名詞", + "pn": 0.983947 + }, + { + "surface": "可愛らしい", + "readging": "かわいらしい", + "pos": "形容詞", + "pn": 0.983926 + }, + { + "surface": "適う", + "readging": "かなう", + "pos": "動詞", + "pn": 0.983885 + }, + { + "surface": "嬉", + "readging": "き", + "pos": "名詞", + "pn": 0.983871 + }, + { + "surface": "勝", + "readging": "しょう", + "pos": "名詞", + "pn": 0.98387 + }, + { + "surface": "名刀", + "readging": "めいとう", + "pos": "名詞", + "pn": 0.98387 + }, + { + "surface": "ポジ", + "readging": "ポジ", + "pos": "名詞", + "pn": 0.98387 + }, + { + "surface": "瑞穂", + "readging": "みずほ", + "pos": "名詞", + "pn": 0.983837 + }, + { + "surface": "無類", + "readging": "むるい", + "pos": "名詞", + "pn": 0.983814 + }, + { + "surface": "言祝ぐ", + "readging": "ことほぐ", + "pos": "動詞", + "pn": 0.983797 + }, + { + "surface": "如来", + "readging": "にょらい", + "pos": "名詞", + "pn": 0.983784 + }, + { + "surface": "俗才", + "readging": "ぞくさい", + "pos": "名詞", + "pn": 0.983737 + }, + { + "surface": "死花", + "readging": "しにばな", + "pos": "名詞", + "pn": 0.983725 + }, + { + "surface": "義理堅い", + "readging": "ぎりがたい", + "pos": "形容詞", + "pn": 0.983717 + }, + { + "surface": "強か者", + "readging": "したたかもの", + "pos": "名詞", + "pn": 0.983712 + }, + { + "surface": "神託", + "readging": "しんたく", + "pos": "名詞", + "pn": 0.9837 + }, + { + "surface": "人傑", + "readging": "じんけつ", + "pos": "名詞", + "pn": 0.983686 + }, + { + "surface": "回春", + "readging": "かいしゅん", + "pos": "名詞", + "pn": 0.983685 + }, + { + "surface": "西哲", + "readging": "せいてつ", + "pos": "名詞", + "pn": 0.983679 + }, + { + "surface": "あっさり", + "readging": "あっさり", + "pos": "副詞", + "pn": 0.983673 + }, + { + "surface": "巨人", + "readging": "きょじん", + "pos": "名詞", + "pn": 0.98367 + }, + { + "surface": "賢しい", + "readging": "さかしい", + "pos": "形容詞", + "pn": 0.983666 + }, + { + "surface": "ゆったり", + "readging": "ゆったり", + "pos": "副詞", + "pn": 0.983651 + }, + { + "surface": "適", + "readging": "てき", + "pos": "名詞", + "pn": 0.983586 + }, + { + "surface": "清勝", + "readging": "せいしょう", + "pos": "名詞", + "pn": 0.983549 + }, + { + "surface": "如才無い", + "readging": "じょさいない", + "pos": "形容詞", + "pn": 0.983524 + }, + { + "surface": "おまけ", + "readging": "おまけ", + "pos": "名詞", + "pn": 0.983517 + }, + { + "surface": "きらりと", + "readging": "きらりと", + "pos": "副詞", + "pn": 0.983506 + }, + { + "surface": "薫染", + "readging": "くんせん", + "pos": "名詞", + "pn": 0.983498 + }, + { + "surface": "晴れる", + "readging": "はれる", + "pos": "動詞", + "pn": 0.983474 + }, + { + "surface": "大事無い", + "readging": "だいじない", + "pos": "形容詞", + "pn": 0.983468 + }, + { + "surface": "長ずる", + "readging": "ちょうずる", + "pos": "動詞", + "pn": 0.983465 + }, + { + "surface": "才", + "readging": "さい", + "pos": "名詞", + "pn": 0.983463 + }, + { + "surface": "恪勤", + "readging": "かっきん", + "pos": "名詞", + "pn": 0.983414 + }, + { + "surface": "九鼎大呂", + "readging": "きゅうていたいりょ", + "pos": "名詞", + "pn": 0.983382 + }, + { + "surface": "美俗", + "readging": "びぞく", + "pos": "名詞", + "pn": 0.983376 + }, + { + "surface": "秋日和", + "readging": "あきびより", + "pos": "名詞", + "pn": 0.983371 + }, + { + "surface": "真正", + "readging": "しんせい", + "pos": "名詞", + "pn": 0.983368 + }, + { + "surface": "小躍り", + "readging": "こおどり", + "pos": "名詞", + "pn": 0.983339 + }, + { + "surface": "聖", + "readging": "せい", + "pos": "名詞", + "pn": 0.983336 + }, + { + "surface": "全い", + "readging": "まったい", + "pos": "形容詞", + "pn": 0.983296 + }, + { + "surface": "競い肌", + "readging": "きおいはだ", + "pos": "名詞", + "pn": 0.983284 + }, + { + "surface": "大邦", + "readging": "たいほう", + "pos": "名詞", + "pn": 0.983274 + }, + { + "surface": "幼馴染", + "readging": "おさななじみ", + "pos": "名詞", + "pn": 0.983258 + }, + { + "surface": "すかっと", + "readging": "すかっと", + "pos": "副詞", + "pn": 0.983246 + }, + { + "surface": "霊剣", + "readging": "れいけん", + "pos": "名詞", + "pn": 0.983231 + }, + { + "surface": "サラブレッド", + "readging": "サラブレッド", + "pos": "名詞", + "pn": 0.983229 + }, + { + "surface": "神韻", + "readging": "しんいん", + "pos": "名詞", + "pn": 0.983227 + }, + { + "surface": "聖者", + "readging": "せいじゃ", + "pos": "名詞", + "pn": 0.983219 + }, + { + "surface": "忠節", + "readging": "ちゅうせつ", + "pos": "名詞", + "pn": 0.983201 + }, + { + "surface": "燦然", + "readging": "さんぜん", + "pos": "名詞", + "pn": 0.983193 + }, + { + "surface": "宝庫", + "readging": "ほうこ", + "pos": "名詞", + "pn": 0.98318 + }, + { + "surface": "名調子", + "readging": "めいちょうし", + "pos": "名詞", + "pn": 0.983134 + }, + { + "surface": "雄途", + "readging": "ゆうと", + "pos": "名詞", + "pn": 0.983132 + }, + { + "surface": "頼り", + "readging": "たより", + "pos": "名詞", + "pn": 0.983106 + }, + { + "surface": "職人芸", + "readging": "しょくにんげい", + "pos": "名詞", + "pn": 0.983096 + }, + { + "surface": "美少年", + "readging": "びしょうねん", + "pos": "名詞", + "pn": 0.983087 + }, + { + "surface": "享受", + "readging": "きょうじゅ", + "pos": "名詞", + "pn": 0.983065 + }, + { + "surface": "起死", + "readging": "きし", + "pos": "名詞", + "pn": 0.983059 + }, + { + "surface": "紅顔", + "readging": "こうがん", + "pos": "名詞", + "pn": 0.983039 + }, + { + "surface": "口才", + "readging": "こうさい", + "pos": "名詞", + "pn": 0.983027 + }, + { + "surface": "楽聖", + "readging": "がくせい", + "pos": "名詞", + "pn": 0.982972 + }, + { + "surface": "信念", + "readging": "しんねん", + "pos": "名詞", + "pn": 0.982958 + }, + { + "surface": "好適", + "readging": "こうてき", + "pos": "名詞", + "pn": 0.982957 + }, + { + "surface": "哲", + "readging": "てつ", + "pos": "名詞", + "pn": 0.982943 + }, + { + "surface": "同慶", + "readging": "どうけい", + "pos": "名詞", + "pn": 0.982941 + }, + { + "surface": "気骨", + "readging": "きこつ", + "pos": "名詞", + "pn": 0.982939 + }, + { + "surface": "雅", + "readging": "みやび", + "pos": "名詞", + "pn": 0.982935 + }, + { + "surface": "扶翼", + "readging": "ふよく", + "pos": "名詞", + "pn": 0.982927 + }, + { + "surface": "入魂", + "readging": "じっこん", + "pos": "名詞", + "pn": 0.982916 + }, + { + "surface": "才媛", + "readging": "さいえん", + "pos": "名詞", + "pn": 0.982873 + }, + { + "surface": "君子", + "readging": "くんし", + "pos": "名詞", + "pn": 0.982847 + }, + { + "surface": "紅玉", + "readging": "こうぎょく", + "pos": "名詞", + "pn": 0.982844 + }, + { + "surface": "アイボリー", + "readging": "アイボリー", + "pos": "名詞", + "pn": 0.982828 + }, + { + "surface": "大人", + "readging": "たいじん", + "pos": "名詞", + "pn": 0.982811 + }, + { + "surface": "求法", + "readging": "ぐほう", + "pos": "名詞", + "pn": 0.98281 + }, + { + "surface": "無害", + "readging": "むがい", + "pos": "名詞", + "pn": 0.982803 + }, + { + "surface": "神剣", + "readging": "しんけん", + "pos": "名詞", + "pn": 0.982802 + }, + { + "surface": "大著", + "readging": "たいちょ", + "pos": "名詞", + "pn": 0.9828 + }, + { + "surface": "祝宴", + "readging": "しゅくえん", + "pos": "名詞", + "pn": 0.982795 + }, + { + "surface": "眼力", + "readging": "がんりょく", + "pos": "名詞", + "pn": 0.982746 + }, + { + "surface": "名句", + "readging": "めいく", + "pos": "名詞", + "pn": 0.98272 + }, + { + "surface": "恙無い", + "readging": "つつがない", + "pos": "形容詞", + "pn": 0.982703 + }, + { + "surface": "清冽", + "readging": "せいれつ", + "pos": "名詞", + "pn": 0.982692 + }, + { + "surface": "祥瑞", + "readging": "しょうずい", + "pos": "名詞", + "pn": 0.982692 + }, + { + "surface": "三宝荒神", + "readging": "さんぼうこうじん", + "pos": "名詞", + "pn": 0.982688 + }, + { + "surface": "雅馴", + "readging": "がじゅん", + "pos": "名詞", + "pn": 0.982684 + }, + { + "surface": "佳話", + "readging": "かわ", + "pos": "名詞", + "pn": 0.982662 + }, + { + "surface": "巨星", + "readging": "きょせい", + "pos": "名詞", + "pn": 0.982659 + }, + { + "surface": "奨学", + "readging": "しょうがく", + "pos": "名詞", + "pn": 0.98261 + }, + { + "surface": "歓声", + "readging": "かんせい", + "pos": "名詞", + "pn": 0.982531 + }, + { + "surface": "心憎い", + "readging": "こころにくい", + "pos": "形容詞", + "pn": 0.98247 + }, + { + "surface": "英主", + "readging": "えいしゅ", + "pos": "名詞", + "pn": 0.982452 + }, + { + "surface": "時宜", + "readging": "じぎ", + "pos": "名詞", + "pn": 0.98243 + }, + { + "surface": "利根", + "readging": "りこん", + "pos": "名詞", + "pn": 0.982426 + }, + { + "surface": "はしこい", + "readging": "はしこい", + "pos": "形容詞", + "pn": 0.982402 + }, + { + "surface": "知名", + "readging": "ちめい", + "pos": "名詞", + "pn": 0.98239 + }, + { + "surface": "圧巻", + "readging": "あっかん", + "pos": "名詞", + "pn": 0.982389 + }, + { + "surface": "莫逆", + "readging": "ばくぎゃく", + "pos": "名詞", + "pn": 0.982375 + }, + { + "surface": "しゃっきり", + "readging": "しゃっきり", + "pos": "副詞", + "pn": 0.982375 + }, + { + "surface": "幸甚", + "readging": "こうじん", + "pos": "名詞", + "pn": 0.982363 + }, + { + "surface": "奮然", + "readging": "ふんぜん", + "pos": "名詞", + "pn": 0.98235 + }, + { + "surface": "明媚", + "readging": "めいび", + "pos": "名詞", + "pn": 0.982346 + }, + { + "surface": "憧れる", + "readging": "あこがれる", + "pos": "動詞", + "pn": 0.982337 + }, + { + "surface": "芳", + "readging": "ほう", + "pos": "名詞", + "pn": 0.982335 + }, + { + "surface": "孝心", + "readging": "こうしん", + "pos": "名詞", + "pn": 0.982333 + }, + { + "surface": "若やぐ", + "readging": "わかやぐ", + "pos": "動詞", + "pn": 0.982316 + }, + { + "surface": "力頼み", + "readging": "ちからだのみ", + "pos": "名詞", + "pn": 0.982301 + }, + { + "surface": "精髄", + "readging": "せいずい", + "pos": "名詞", + "pn": 0.982283 + }, + { + "surface": "正統", + "readging": "せいとう", + "pos": "名詞", + "pn": 0.982278 + }, + { + "surface": "雄勁", + "readging": "ゆうけい", + "pos": "名詞", + "pn": 0.98224 + }, + { + "surface": "満作", + "readging": "まんさく", + "pos": "名詞", + "pn": 0.98222 + }, + { + "surface": "愛想", + "readging": "あいそ", + "pos": "名詞", + "pn": 0.982214 + }, + { + "surface": "名水", + "readging": "めいすい", + "pos": "名詞", + "pn": 0.982192 + }, + { + "surface": "武芸者", + "readging": "ぶげいしゃ", + "pos": "名詞", + "pn": 0.982187 + }, + { + "surface": "回生", + "readging": "かいせい", + "pos": "名詞", + "pn": 0.982179 + }, + { + "surface": "誠意", + "readging": "せいい", + "pos": "名詞", + "pn": 0.982153 + }, + { + "surface": "快技", + "readging": "かいぎ", + "pos": "名詞", + "pn": 0.982135 + }, + { + "surface": "清水", + "readging": "しみず", + "pos": "名詞", + "pn": 0.98213 + }, + { + "surface": "ちんちんかもかも", + "readging": "ちんちんかもかも", + "pos": "名詞", + "pn": 0.982127 + }, + { + "surface": "知恵者", + "readging": "ちえしゃ", + "pos": "名詞", + "pn": 0.982119 + }, + { + "surface": "助け", + "readging": "たすけ", + "pos": "名詞", + "pn": 0.982103 + }, + { + "surface": "つましい", + "readging": "つましい", + "pos": "形容詞", + "pn": 0.982097 + }, + { + "surface": "不世出", + "readging": "ふせいしゅつ", + "pos": "名詞", + "pn": 0.982053 + }, + { + "surface": "溌剌", + "readging": "はつらつ", + "pos": "名詞", + "pn": 0.982051 + }, + { + "surface": "青葉", + "readging": "あおば", + "pos": "名詞", + "pn": 0.982029 + }, + { + "surface": "後生大事", + "readging": "ごしょうだいじ", + "pos": "名詞", + "pn": 0.982002 + }, + { + "surface": "助っ人", + "readging": "すけっと", + "pos": "名詞", + "pn": 0.981991 + }, + { + "surface": "欣求浄土", + "readging": "ごんぐじょうど", + "pos": "名詞", + "pn": 0.981988 + }, + { + "surface": "王佐", + "readging": "おうさ", + "pos": "名詞", + "pn": 0.981966 + }, + { + "surface": "好機", + "readging": "こうき", + "pos": "名詞", + "pn": 0.981943 + }, + { + "surface": "適温", + "readging": "てきおん", + "pos": "名詞", + "pn": 0.981908 + }, + { + "surface": "賞品", + "readging": "しょうひん", + "pos": "名詞", + "pn": 0.981874 + }, + { + "surface": "いかす", + "readging": "いかす", + "pos": "動詞", + "pn": 0.981847 + }, + { + "surface": "健闘", + "readging": "けんとう", + "pos": "名詞", + "pn": 0.981842 + }, + { + "surface": "にこにこ", + "readging": "にこにこ", + "pos": "副詞", + "pn": 0.981822 + }, + { + "surface": "末頼もしい", + "readging": "すえたのもしい", + "pos": "形容詞", + "pn": 0.981799 + }, + { + "surface": "安楽", + "readging": "あんらく", + "pos": "名詞", + "pn": 0.981799 + }, + { + "surface": "酒豪", + "readging": "しゅごう", + "pos": "名詞", + "pn": 0.981787 + }, + { + "surface": "良計", + "readging": "りょうけい", + "pos": "名詞", + "pn": 0.981742 + }, + { + "surface": "逞しゅうする", + "readging": "たくましゅうする", + "pos": "動詞", + "pn": 0.981739 + }, + { + "surface": "屈指", + "readging": "くっし", + "pos": "名詞", + "pn": 0.981739 + }, + { + "surface": "口堅い", + "readging": "くちがたい", + "pos": "形容詞", + "pn": 0.981717 + }, + { + "surface": "町奴", + "readging": "まちやっこ", + "pos": "名詞", + "pn": 0.981712 + }, + { + "surface": "頑張る", + "readging": "がんばる", + "pos": "動詞", + "pn": 0.981704 + }, + { + "surface": "副賞", + "readging": "ふくしょう", + "pos": "名詞", + "pn": 0.981649 + }, + { + "surface": "しぶとい", + "readging": "しぶとい", + "pos": "形容詞", + "pn": 0.981624 + }, + { + "surface": "親密", + "readging": "しんみつ", + "pos": "名詞", + "pn": 0.981594 + }, + { + "surface": "しゃんと", + "readging": "しゃんと", + "pos": "副詞", + "pn": 0.981591 + }, + { + "surface": "恩寵", + "readging": "おんちょう", + "pos": "名詞", + "pn": 0.981582 + }, + { + "surface": "ベスト", + "readging": "ベスト", + "pos": "名詞", + "pn": 0.981551 + }, + { + "surface": "金剛", + "readging": "こんごう", + "pos": "名詞", + "pn": 0.981488 + }, + { + "surface": "改悟", + "readging": "かいご", + "pos": "名詞", + "pn": 0.98148 + }, + { + "surface": "絶唱", + "readging": "ぜっしょう", + "pos": "名詞", + "pn": 0.981479 + }, + { + "surface": "美酒", + "readging": "びしゅ", + "pos": "名詞", + "pn": 0.981455 + }, + { + "surface": "程よい", + "readging": "ほどよい", + "pos": "形容詞", + "pn": 0.981441 + }, + { + "surface": "色女", + "readging": "いろおんな", + "pos": "名詞", + "pn": 0.98143 + }, + { + "surface": "喜色", + "readging": "きしょく", + "pos": "名詞", + "pn": 0.981419 + }, + { + "surface": "玄妙", + "readging": "げんみょう", + "pos": "名詞", + "pn": 0.981406 + }, + { + "surface": "利便", + "readging": "りべん", + "pos": "名詞", + "pn": 0.981406 + }, + { + "surface": "安心", + "readging": "あんしん", + "pos": "名詞", + "pn": 0.981397 + }, + { + "surface": "嘉肴", + "readging": "かこう", + "pos": "名詞", + "pn": 0.981327 + }, + { + "surface": "小善", + "readging": "しょうぜん", + "pos": "名詞", + "pn": 0.981311 + }, + { + "surface": "四相撲", + "readging": "よつずもう", + "pos": "名詞", + "pn": 0.981299 + }, + { + "surface": "高節", + "readging": "こうせつ", + "pos": "名詞", + "pn": 0.981287 + }, + { + "surface": "歓送", + "readging": "かんそう", + "pos": "名詞", + "pn": 0.981268 + }, + { + "surface": "無利息", + "readging": "むりそく", + "pos": "名詞", + "pn": 0.981203 + }, + { + "surface": "見蕩れる", + "readging": "みとれる", + "pos": "動詞", + "pn": 0.981203 + }, + { + "surface": "才識", + "readging": "さいしき", + "pos": "名詞", + "pn": 0.981188 + }, + { + "surface": "目覚しい", + "readging": "めざましい", + "pos": "形容詞", + "pn": 0.981176 + }, + { + "surface": "賞杯", + "readging": "しょうはい", + "pos": "名詞", + "pn": 0.981167 + }, + { + "surface": "賛同", + "readging": "さんどう", + "pos": "名詞", + "pn": 0.981144 + }, + { + "surface": "強肩", + "readging": "きょうけん", + "pos": "名詞", + "pn": 0.981122 + }, + { + "surface": "信頼", + "readging": "しんらい", + "pos": "名詞", + "pn": 0.981102 + }, + { + "surface": "血気盛り", + "readging": "けっきざかり", + "pos": "名詞", + "pn": 0.9811 + }, + { + "surface": "気概", + "readging": "きがい", + "pos": "名詞", + "pn": 0.981098 + }, + { + "surface": "上策", + "readging": "じょうさく", + "pos": "名詞", + "pn": 0.981086 + }, + { + "surface": "尊ぶ", + "readging": "たっとぶ", + "pos": "動詞", + "pn": 0.981081 + }, + { + "surface": "良港", + "readging": "りょうこう", + "pos": "名詞", + "pn": 0.981062 + }, + { + "surface": "有益", + "readging": "ゆうえき", + "pos": "名詞", + "pn": 0.98105 + }, + { + "surface": "双璧", + "readging": "そうへき", + "pos": "名詞", + "pn": 0.981046 + }, + { + "surface": "男振り", + "readging": "おとこぶり", + "pos": "名詞", + "pn": 0.981028 + }, + { + "surface": "大師", + "readging": "だいし", + "pos": "名詞", + "pn": 0.981007 + }, + { + "surface": "エール", + "readging": "エール", + "pos": "名詞", + "pn": 0.980959 + }, + { + "surface": "増援", + "readging": "ぞうえん", + "pos": "名詞", + "pn": 0.980958 + }, + { + "surface": "出世", + "readging": "しゅっせ", + "pos": "名詞", + "pn": 0.980949 + }, + { + "surface": "宿学", + "readging": "しゅくがく", + "pos": "名詞", + "pn": 0.980933 + }, + { + "surface": "和睦", + "readging": "わぼく", + "pos": "名詞", + "pn": 0.9809 + }, + { + "surface": "命拾い", + "readging": "いのちびろい", + "pos": "名詞", + "pn": 0.980895 + }, + { + "surface": "雄図", + "readging": "ゆうと", + "pos": "名詞", + "pn": 0.980877 + }, + { + "surface": "賛助", + "readging": "さんじょ", + "pos": "名詞", + "pn": 0.980867 + }, + { + "surface": "祝日", + "readging": "しゅくじつ", + "pos": "名詞", + "pn": 0.980854 + }, + { + "surface": "即妙", + "readging": "そくみょう", + "pos": "名詞", + "pn": 0.980798 + }, + { + "surface": "恵", + "readging": "けい", + "pos": "名詞", + "pn": 0.980773 + }, + { + "surface": "好天", + "readging": "こうてん", + "pos": "名詞", + "pn": 0.980761 + }, + { + "surface": "名犬", + "readging": "めいけん", + "pos": "名詞", + "pn": 0.980751 + }, + { + "surface": "名門", + "readging": "めいもん", + "pos": "名詞", + "pn": 0.980739 + }, + { + "surface": "学識", + "readging": "がくしき", + "pos": "名詞", + "pn": 0.980732 + }, + { + "surface": "気強い", + "readging": "きづよい", + "pos": "形容詞", + "pn": 0.980715 + }, + { + "surface": "歌人", + "readging": "かじん", + "pos": "名詞", + "pn": 0.980703 + }, + { + "surface": "絶技", + "readging": "ぜつぎ", + "pos": "名詞", + "pn": 0.980688 + }, + { + "surface": "真新しい", + "readging": "まあたらしい", + "pos": "形容詞", + "pn": 0.980676 + }, + { + "surface": "性善", + "readging": "せいぜん", + "pos": "名詞", + "pn": 0.980676 + }, + { + "surface": "威容", + "readging": "いよう", + "pos": "名詞", + "pn": 0.980622 + }, + { + "surface": "良工", + "readging": "りょうこう", + "pos": "名詞", + "pn": 0.980615 + }, + { + "surface": "騏りん", + "readging": "きりん", + "pos": "名詞", + "pn": 0.980585 + }, + { + "surface": "極意", + "readging": "ごくい", + "pos": "名詞", + "pn": 0.980583 + }, + { + "surface": "御の字", + "readging": "おんのじ", + "pos": "名詞", + "pn": 0.980571 + }, + { + "surface": "初初しい", + "readging": "ういういしい", + "pos": "形容詞", + "pn": 0.980559 + }, + { + "surface": "老大家", + "readging": "ろうたいか", + "pos": "名詞", + "pn": 0.980532 + }, + { + "surface": "摂生", + "readging": "せっせい", + "pos": "名詞", + "pn": 0.980516 + }, + { + "surface": "一唱三嘆", + "readging": "いっしょうさんたん", + "pos": "名詞", + "pn": 0.980508 + }, + { + "surface": "祝", + "readging": "いわい", + "pos": "名詞", + "pn": 0.9805 + }, + { + "surface": "後生楽", + "readging": "ごしょうらく", + "pos": "名詞", + "pn": 0.980479 + }, + { + "surface": "奨揚", + "readging": "しょうよう", + "pos": "名詞", + "pn": 0.980473 + }, + { + "surface": "つやつや", + "readging": "つやつや", + "pos": "副詞", + "pn": 0.980453 + }, + { + "surface": "最", + "readging": "さい", + "pos": "名詞", + "pn": 0.980357 + }, + { + "surface": "正道", + "readging": "せいどう", + "pos": "名詞", + "pn": 0.980354 + }, + { + "surface": "玲瓏", + "readging": "れいろう", + "pos": "名詞", + "pn": 0.980345 + }, + { + "surface": "嘉言", + "readging": "かげん", + "pos": "名詞", + "pn": 0.980334 + }, + { + "surface": "さくい", + "readging": "さくい", + "pos": "形容詞", + "pn": 0.980333 + }, + { + "surface": "香味", + "readging": "こうみ", + "pos": "名詞", + "pn": 0.98031 + }, + { + "surface": "美声", + "readging": "びせい", + "pos": "名詞", + "pn": 0.980295 + }, + { + "surface": "華胥", + "readging": "かしょ", + "pos": "名詞", + "pn": 0.980291 + }, + { + "surface": "難無く", + "readging": "なんなく", + "pos": "副詞", + "pn": 0.980288 + }, + { + "surface": "寧日", + "readging": "ねいじつ", + "pos": "名詞", + "pn": 0.980276 + }, + { + "surface": "月下美人", + "readging": "げっかびじん", + "pos": "名詞", + "pn": 0.980273 + }, + { + "surface": "祝酒", + "readging": "いわいざけ", + "pos": "名詞", + "pn": 0.980267 + }, + { + "surface": "若草", + "readging": "わかくさ", + "pos": "名詞", + "pn": 0.980262 + }, + { + "surface": "豪酒", + "readging": "ごうしゅ", + "pos": "名詞", + "pn": 0.980259 + }, + { + "surface": "鳳雛", + "readging": "ほうすう", + "pos": "名詞", + "pn": 0.980248 + }, + { + "surface": "見初める", + "readging": "みそめる", + "pos": "動詞", + "pn": 0.980224 + }, + { + "surface": "血気", + "readging": "けっき", + "pos": "名詞", + "pn": 0.98019 + }, + { + "surface": "援軍", + "readging": "えんぐん", + "pos": "名詞", + "pn": 0.98016 + }, + { + "surface": "精肉", + "readging": "せいにく", + "pos": "名詞", + "pn": 0.98015 + }, + { + "surface": "佳品", + "readging": "かひん", + "pos": "名詞", + "pn": 0.980133 + }, + { + "surface": "咲きこぼれる", + "readging": "さきこぼれる", + "pos": "動詞", + "pn": 0.980128 + }, + { + "surface": "助太刀", + "readging": "すけだち", + "pos": "名詞", + "pn": 0.980117 + }, + { + "surface": "絶品", + "readging": "ぜっぴん", + "pos": "名詞", + "pn": 0.980103 + }, + { + "surface": "すやすや", + "readging": "すやすや", + "pos": "副詞", + "pn": 0.980073 + }, + { + "surface": "栄達", + "readging": "えいたつ", + "pos": "名詞", + "pn": 0.980071 + }, + { + "surface": "選奨", + "readging": "せんしょう", + "pos": "名詞", + "pn": 0.980054 + }, + { + "surface": "懐かしい", + "readging": "なつかしい", + "pos": "形容詞", + "pn": 0.980047 + }, + { + "surface": "生き仏", + "readging": "いきぼとけ", + "pos": "名詞", + "pn": 0.980038 + }, + { + "surface": "生易しい", + "readging": "なまやさしい", + "pos": "形容詞", + "pn": 0.980027 + }, + { + "surface": "適役", + "readging": "てきやく", + "pos": "名詞", + "pn": 0.980005 + }, + { + "surface": "妙齢", + "readging": "みょうれい", + "pos": "名詞", + "pn": 0.979979 + }, + { + "surface": "きちんと", + "readging": "きちんと", + "pos": "副詞", + "pn": 0.979967 + }, + { + "surface": "功労", + "readging": "こうろう", + "pos": "名詞", + "pn": 0.97993 + }, + { + "surface": "正教", + "readging": "せいきょう", + "pos": "名詞", + "pn": 0.979895 + }, + { + "surface": "毅然", + "readging": "きぜん", + "pos": "名詞", + "pn": 0.979888 + }, + { + "surface": "悟道", + "readging": "ごどう", + "pos": "名詞", + "pn": 0.979857 + }, + { + "surface": "良俗", + "readging": "りょうぞく", + "pos": "名詞", + "pn": 0.979849 + }, + { + "surface": "ぴんぴん", + "readging": "ぴんぴん", + "pos": "副詞", + "pn": 0.979849 + }, + { + "surface": "駿馬", + "readging": "しゅんめ", + "pos": "名詞", + "pn": 0.979844 + }, + { + "surface": "祝福", + "readging": "しゅくふく", + "pos": "名詞", + "pn": 0.979826 + }, + { + "surface": "莞爾", + "readging": "かんじ", + "pos": "名詞", + "pn": 0.979775 + }, + { + "surface": "王道", + "readging": "おうどう", + "pos": "名詞", + "pn": 0.979772 + }, + { + "surface": "好字", + "readging": "こうじ", + "pos": "名詞", + "pn": 0.979751 + }, + { + "surface": "極楽", + "readging": "ごくらく", + "pos": "名詞", + "pn": 0.979709 + }, + { + "surface": "人才", + "readging": "じんさい", + "pos": "名詞", + "pn": 0.979707 + }, + { + "surface": "艶", + "readging": "つや", + "pos": "名詞", + "pn": 0.979697 + }, + { + "surface": "当り狂言", + "readging": "あたりきょうげん", + "pos": "名詞", + "pn": 0.979687 + }, + { + "surface": "訓話", + "readging": "くんわ", + "pos": "名詞", + "pn": 0.979659 + }, + { + "surface": "秘訣", + "readging": "ひけつ", + "pos": "名詞", + "pn": 0.979641 + }, + { + "surface": "法楽", + "readging": "ほうらく", + "pos": "名詞", + "pn": 0.979614 + }, + { + "surface": "盛り", + "readging": "さかり", + "pos": "名詞", + "pn": 0.979602 + }, + { + "surface": "当り役", + "readging": "あたりやく", + "pos": "名詞", + "pn": 0.979592 + }, + { + "surface": "探勝", + "readging": "たんしょう", + "pos": "名詞", + "pn": 0.979563 + }, + { + "surface": "善処", + "readging": "ぜんしょ", + "pos": "名詞", + "pn": 0.979532 + }, + { + "surface": "米所", + "readging": "こめどころ", + "pos": "名詞", + "pn": 0.97953 + }, + { + "surface": "前祝", + "readging": "まえいわい", + "pos": "名詞", + "pn": 0.97952 + }, + { + "surface": "佑", + "readging": "ゆう", + "pos": "名詞", + "pn": 0.979512 + }, + { + "surface": "列強", + "readging": "れっきょう", + "pos": "名詞", + "pn": 0.979491 + }, + { + "surface": "エキスパート", + "readging": "エキスパート", + "pos": "名詞", + "pn": 0.979468 + }, + { + "surface": "たっぷり", + "readging": "たっぷり", + "pos": "副詞", + "pn": 0.979449 + }, + { + "surface": "水魚", + "readging": "すいぎょ", + "pos": "名詞", + "pn": 0.979431 + }, + { + "surface": "武威", + "readging": "ぶい", + "pos": "名詞", + "pn": 0.979406 + }, + { + "surface": "良妻", + "readging": "りょうさい", + "pos": "名詞", + "pn": 0.979398 + }, + { + "surface": "妙味", + "readging": "みょうみ", + "pos": "名詞", + "pn": 0.979392 + }, + { + "surface": "熟練", + "readging": "じゅくれん", + "pos": "名詞", + "pn": 0.979379 + }, + { + "surface": "まとも", + "readging": "まとも", + "pos": "名詞", + "pn": 0.979363 + }, + { + "surface": "救済", + "readging": "きゅうさい", + "pos": "名詞", + "pn": 0.979363 + }, + { + "surface": "漢才", + "readging": "かんさい", + "pos": "名詞", + "pn": 0.979351 + }, + { + "surface": "人爵", + "readging": "じんしゃく", + "pos": "名詞", + "pn": 0.979348 + }, + { + "surface": "名画", + "readging": "めいが", + "pos": "名詞", + "pn": 0.979333 + }, + { + "surface": "快適", + "readging": "かいてき", + "pos": "名詞", + "pn": 0.979307 + }, + { + "surface": "選者", + "readging": "せんじゃ", + "pos": "名詞", + "pn": 0.979295 + }, + { + "surface": "若君", + "readging": "わかぎみ", + "pos": "名詞", + "pn": 0.979278 + }, + { + "surface": "重宝", + "readging": "ちょうほう", + "pos": "名詞", + "pn": 0.979276 + }, + { + "surface": "多才", + "readging": "たさい", + "pos": "名詞", + "pn": 0.979251 + }, + { + "surface": "高弟", + "readging": "こうてい", + "pos": "名詞", + "pn": 0.97922 + }, + { + "surface": "ヤング", + "readging": "ヤング", + "pos": "名詞", + "pn": 0.97921 + }, + { + "surface": "穎脱", + "readging": "えいだつ", + "pos": "名詞", + "pn": 0.979178 + }, + { + "surface": "是是非非", + "readging": "ぜぜひひ", + "pos": "名詞", + "pn": 0.979168 + }, + { + "surface": "寛容", + "readging": "かんよう", + "pos": "名詞", + "pn": 0.979099 + }, + { + "surface": "匹敵", + "readging": "ひってき", + "pos": "名詞", + "pn": 0.979095 + }, + { + "surface": "売れ口", + "readging": "うれくち", + "pos": "名詞", + "pn": 0.979054 + }, + { + "surface": "孝貞", + "readging": "こうてい", + "pos": "名詞", + "pn": 0.979051 + }, + { + "surface": "荒神", + "readging": "こうじん", + "pos": "名詞", + "pn": 0.979029 + }, + { + "surface": "淑徳", + "readging": "しゅくとく", + "pos": "名詞", + "pn": 0.979012 + }, + { + "surface": "一陽来復", + "readging": "いちようらいふく", + "pos": "名詞", + "pn": 0.978999 + }, + { + "surface": "助力", + "readging": "じょりょく", + "pos": "名詞", + "pn": 0.978983 + }, + { + "surface": "本復", + "readging": "ほんぷく", + "pos": "名詞", + "pn": 0.978966 + }, + { + "surface": "誇り", + "readging": "ほこり", + "pos": "名詞", + "pn": 0.978966 + }, + { + "surface": "こざっぱり", + "readging": "こざっぱり", + "pos": "名詞", + "pn": 0.978954 + }, + { + "surface": "観月", + "readging": "かんげつ", + "pos": "名詞", + "pn": 0.978937 + }, + { + "surface": "鮮魚", + "readging": "せんぎょ", + "pos": "名詞", + "pn": 0.978925 + }, + { + "surface": "ハレルヤ", + "readging": "ハレルヤ", + "pos": "名詞", + "pn": 0.978911 + }, + { + "surface": "恭敬", + "readging": "きょうけい", + "pos": "名詞", + "pn": 0.978907 + }, + { + "surface": "立身出世", + "readging": "りっしんしゅっせ", + "pos": "名詞", + "pn": 0.978902 + }, + { + "surface": "勇武", + "readging": "ゆうぶ", + "pos": "名詞", + "pn": 0.978897 + }, + { + "surface": "大成", + "readging": "たいせい", + "pos": "名詞", + "pn": 0.978896 + }, + { + "surface": "心遣い", + "readging": "こころづかい", + "pos": "名詞", + "pn": 0.978896 + }, + { + "surface": "晴", + "readging": "はれ", + "pos": "名詞", + "pn": 0.978872 + }, + { + "surface": "純正", + "readging": "じゅんせい", + "pos": "名詞", + "pn": 0.978864 + }, + { + "surface": "エロス", + "readging": "エロス", + "pos": "名詞", + "pn": 0.978856 + }, + { + "surface": "センセーション", + "readging": "センセーション", + "pos": "名詞", + "pn": 0.978855 + }, + { + "surface": "サポート", + "readging": "サポート", + "pos": "名詞", + "pn": 0.978854 + }, + { + "surface": "良識", + "readging": "りょうしき", + "pos": "名詞", + "pn": 0.978848 + }, + { + "surface": "賜", + "readging": "たまもの", + "pos": "名詞", + "pn": 0.978831 + }, + { + "surface": "好意", + "readging": "こうい", + "pos": "名詞", + "pn": 0.978762 + }, + { + "surface": "堪え性", + "readging": "こらえしょう", + "pos": "名詞", + "pn": 0.978758 + }, + { + "surface": "賞金", + "readging": "しょうきん", + "pos": "名詞", + "pn": 0.97875 + }, + { + "surface": "傑", + "readging": "けつ", + "pos": "名詞", + "pn": 0.978743 + }, + { + "surface": "真善美", + "readging": "しんぜんび", + "pos": "名詞", + "pn": 0.978708 + }, + { + "surface": "取り所", + "readging": "とりどころ", + "pos": "名詞", + "pn": 0.978696 + }, + { + "surface": "眼福", + "readging": "がんぷく", + "pos": "名詞", + "pn": 0.978665 + }, + { + "surface": "善根", + "readging": "ぜんこん", + "pos": "名詞", + "pn": 0.978658 + }, + { + "surface": "仏陀", + "readging": "ぶつだ", + "pos": "名詞", + "pn": 0.978621 + }, + { + "surface": "閨秀", + "readging": "けいしゅう", + "pos": "名詞", + "pn": 0.978564 + }, + { + "surface": "いわけない", + "readging": "いわけない", + "pos": "形容詞", + "pn": 0.978559 + }, + { + "surface": "生き馬", + "readging": "いきうま", + "pos": "名詞", + "pn": 0.97855 + }, + { + "surface": "随喜", + "readging": "ずいき", + "pos": "名詞", + "pn": 0.978536 + }, + { + "surface": "清興", + "readging": "せいきょう", + "pos": "名詞", + "pn": 0.978478 + }, + { + "surface": "楽観", + "readging": "らっかん", + "pos": "名詞", + "pn": 0.978476 + }, + { + "surface": "尊", + "readging": "そん", + "pos": "名詞", + "pn": 0.978476 + }, + { + "surface": "神君", + "readging": "しんくん", + "pos": "名詞", + "pn": 0.978475 + }, + { + "surface": "光栄", + "readging": "こうえい", + "pos": "名詞", + "pn": 0.978462 + }, + { + "surface": "目新しい", + "readging": "めあたらしい", + "pos": "形容詞", + "pn": 0.978416 + }, + { + "surface": "味わい", + "readging": "あじわい", + "pos": "名詞", + "pn": 0.978395 + }, + { + "surface": "瑞", + "readging": "ずい", + "pos": "名詞", + "pn": 0.978313 + }, + { + "surface": "要訣", + "readging": "ようけつ", + "pos": "名詞", + "pn": 0.978313 + }, + { + "surface": "期待", + "readging": "きたい", + "pos": "名詞", + "pn": 0.978309 + }, + { + "surface": "安寧", + "readging": "あんねい", + "pos": "名詞", + "pn": 0.978278 + }, + { + "surface": "義心", + "readging": "ぎしん", + "pos": "名詞", + "pn": 0.978272 + }, + { + "surface": "善導", + "readging": "ぜんどう", + "pos": "名詞", + "pn": 0.978245 + }, + { + "surface": "引締まる", + "readging": "ひきしまる", + "pos": "動詞", + "pn": 0.978224 + }, + { + "surface": "上士", + "readging": "じょうし", + "pos": "名詞", + "pn": 0.978217 + }, + { + "surface": "名器", + "readging": "めいき", + "pos": "名詞", + "pn": 0.978204 + }, + { + "surface": "こなれる", + "readging": "こなれる", + "pos": "動詞", + "pn": 0.978185 + }, + { + "surface": "驍将", + "readging": "ぎょうしょう", + "pos": "名詞", + "pn": 0.978173 + }, + { + "surface": "達人", + "readging": "たつじん", + "pos": "名詞", + "pn": 0.978166 + }, + { + "surface": "雅語", + "readging": "がご", + "pos": "名詞", + "pn": 0.97816 + }, + { + "surface": "良風", + "readging": "りょうふう", + "pos": "名詞", + "pn": 0.978149 + }, + { + "surface": "奥の手", + "readging": "おくのて", + "pos": "名詞", + "pn": 0.97812 + }, + { + "surface": "勲", + "readging": "くん", + "pos": "名詞", + "pn": 0.978119 + }, + { + "surface": "碁敵", + "readging": "ごがたき", + "pos": "名詞", + "pn": 0.978116 + }, + { + "surface": "節する", + "readging": "せっする", + "pos": "動詞", + "pn": 0.978111 + }, + { + "surface": "仏力", + "readging": "ぶつりき", + "pos": "名詞", + "pn": 0.978105 + }, + { + "surface": "好転", + "readging": "こうてん", + "pos": "名詞", + "pn": 0.978092 + }, + { + "surface": "虚空蔵菩薩", + "readging": "こくうぞうぼさつ", + "pos": "名詞", + "pn": 0.978065 + }, + { + "surface": "救恤", + "readging": "きゅうじゅつ", + "pos": "名詞", + "pn": 0.978046 + }, + { + "surface": "粘り強い", + "readging": "ねばりづよい", + "pos": "形容詞", + "pn": 0.978038 + }, + { + "surface": "聖者", + "readging": "しょうじゃ", + "pos": "名詞", + "pn": 0.97803 + }, + { + "surface": "若人", + "readging": "わこうど", + "pos": "名詞", + "pn": 0.97798 + }, + { + "surface": "清い", + "readging": "きよい", + "pos": "形容詞", + "pn": 0.977979 + }, + { + "surface": "菊日和", + "readging": "きくびより", + "pos": "名詞", + "pn": 0.977953 + }, + { + "surface": "稚い", + "readging": "いとけない", + "pos": "形容詞", + "pn": 0.977873 + }, + { + "surface": "上首尾", + "readging": "じょうしゅび", + "pos": "名詞", + "pn": 0.977862 + }, + { + "surface": "勇み肌", + "readging": "いさみはだ", + "pos": "名詞", + "pn": 0.977861 + }, + { + "surface": "功名", + "readging": "こうみょう", + "pos": "名詞", + "pn": 0.977856 + }, + { + "surface": "救援", + "readging": "きゅうえん", + "pos": "名詞", + "pn": 0.977821 + }, + { + "surface": "向学", + "readging": "こうがく", + "pos": "名詞", + "pn": 0.977809 + }, + { + "surface": "楽しめる", + "readging": "たのしめる", + "pos": "動詞", + "pn": 0.977799 + }, + { + "surface": "家柄", + "readging": "いえがら", + "pos": "名詞", + "pn": 0.977758 + }, + { + "surface": "後援", + "readging": "こうえん", + "pos": "名詞", + "pn": 0.977754 + }, + { + "surface": "惚れ惚れ", + "readging": "ほれぼれ", + "pos": "名詞", + "pn": 0.977747 + }, + { + "surface": "癒す", + "readging": "いやす", + "pos": "動詞", + "pn": 0.977712 + }, + { + "surface": "強力", + "readging": "きょうりょく", + "pos": "名詞", + "pn": 0.977674 + }, + { + "surface": "れっきと", + "readging": "れっきと", + "pos": "副詞", + "pn": 0.977651 + }, + { + "surface": "光る", + "readging": "ひかる", + "pos": "動詞", + "pn": 0.977632 + }, + { + "surface": "公正", + "readging": "こうせい", + "pos": "名詞", + "pn": 0.977612 + }, + { + "surface": "秀句", + "readging": "しゅうく", + "pos": "名詞", + "pn": 0.977574 + }, + { + "surface": "顕彰", + "readging": "けんしょう", + "pos": "名詞", + "pn": 0.977554 + }, + { + "surface": "芳墨", + "readging": "ほうぼく", + "pos": "名詞", + "pn": 0.977479 + }, + { + "surface": "美男", + "readging": "びなん", + "pos": "名詞", + "pn": 0.977456 + }, + { + "surface": "加持", + "readging": "かじ", + "pos": "名詞", + "pn": 0.977437 + }, + { + "surface": "慈眼", + "readging": "じげん", + "pos": "名詞", + "pn": 0.977417 + }, + { + "surface": "ほかほか", + "readging": "ほかほか", + "pos": "副詞", + "pn": 0.977415 + }, + { + "surface": "仏心", + "readging": "ぶっしん", + "pos": "名詞", + "pn": 0.977335 + }, + { + "surface": "電光石火", + "readging": "でんこうせっか", + "pos": "名詞", + "pn": 0.977327 + }, + { + "surface": "丹心", + "readging": "たんしん", + "pos": "名詞", + "pn": 0.977305 + }, + { + "surface": "才物", + "readging": "さいぶつ", + "pos": "名詞", + "pn": 0.977296 + }, + { + "surface": "聖王", + "readging": "せいおう", + "pos": "名詞", + "pn": 0.977296 + }, + { + "surface": "適才", + "readging": "てきさい", + "pos": "名詞", + "pn": 0.977283 + }, + { + "surface": "有卦", + "readging": "うけ", + "pos": "名詞", + "pn": 0.977212 + }, + { + "surface": "獅子奮迅", + "readging": "ししふんじん", + "pos": "名詞", + "pn": 0.977203 + }, + { + "surface": "チャンス", + "readging": "チャンス", + "pos": "名詞", + "pn": 0.97716 + }, + { + "surface": "艶麗", + "readging": "えんれい", + "pos": "名詞", + "pn": 0.977119 + }, + { + "surface": "満悦", + "readging": "まんえつ", + "pos": "名詞", + "pn": 0.97705 + }, + { + "surface": "面白おかしい", + "readging": "おもしろおかしい", + "pos": "形容詞", + "pn": 0.977036 + }, + { + "surface": "元勲", + "readging": "げんくん", + "pos": "名詞", + "pn": 0.97702 + }, + { + "surface": "幸便", + "readging": "こうびん", + "pos": "名詞", + "pn": 0.977018 + }, + { + "surface": "浩然", + "readging": "こうぜん", + "pos": "名詞", + "pn": 0.976964 + }, + { + "surface": "奇跡", + "readging": "きせき", + "pos": "名詞", + "pn": 0.976944 + }, + { + "surface": "至公至平", + "readging": "しこうしへい", + "pos": "名詞", + "pn": 0.976889 + }, + { + "surface": "労る", + "readging": "いたわる", + "pos": "動詞", + "pn": 0.976874 + }, + { + "surface": "次善", + "readging": "じぜん", + "pos": "名詞", + "pn": 0.976842 + }, + { + "surface": "器量", + "readging": "きりょう", + "pos": "名詞", + "pn": 0.976825 + }, + { + "surface": "至境", + "readging": "しきょう", + "pos": "名詞", + "pn": 0.976779 + }, + { + "surface": "大悲", + "readging": "だいひ", + "pos": "名詞", + "pn": 0.976731 + }, + { + "surface": "盛時", + "readging": "せいじ", + "pos": "名詞", + "pn": 0.976721 + }, + { + "surface": "吉例", + "readging": "きちれい", + "pos": "名詞", + "pn": 0.97666 + }, + { + "surface": "選評", + "readging": "せんぴょう", + "pos": "名詞", + "pn": 0.976637 + }, + { + "surface": "珠玉", + "readging": "しゅぎょく", + "pos": "名詞", + "pn": 0.976597 + }, + { + "surface": "高士", + "readging": "こうし", + "pos": "名詞", + "pn": 0.976581 + }, + { + "surface": "女らしい", + "readging": "おんならしい", + "pos": "形容詞", + "pn": 0.976576 + }, + { + "surface": "涼味", + "readging": "りょうみ", + "pos": "名詞", + "pn": 0.976558 + }, + { + "surface": "大物", + "readging": "おおもの", + "pos": "名詞", + "pn": 0.976497 + }, + { + "surface": "孝子", + "readging": "こうし", + "pos": "名詞", + "pn": 0.976477 + }, + { + "surface": "展望", + "readging": "てんぼう", + "pos": "名詞", + "pn": 0.976463 + }, + { + "surface": "特薦", + "readging": "とくせん", + "pos": "名詞", + "pn": 0.976454 + }, + { + "surface": "奇貨", + "readging": "きか", + "pos": "名詞", + "pn": 0.976412 + }, + { + "surface": "過賞", + "readging": "かしょう", + "pos": "名詞", + "pn": 0.976411 + }, + { + "surface": "鬱勃", + "readging": "うつぼつ", + "pos": "名詞", + "pn": 0.97641 + }, + { + "surface": "志気", + "readging": "しき", + "pos": "名詞", + "pn": 0.97641 + }, + { + "surface": "器量人", + "readging": "きりょうじん", + "pos": "名詞", + "pn": 0.976407 + }, + { + "surface": "造詣", + "readging": "ぞうけい", + "pos": "名詞", + "pn": 0.976397 + }, + { + "surface": "義軍", + "readging": "ぎぐん", + "pos": "名詞", + "pn": 0.976393 + }, + { + "surface": "名宝", + "readging": "めいほう", + "pos": "名詞", + "pn": 0.976356 + }, + { + "surface": "天堂", + "readging": "てんどう", + "pos": "名詞", + "pn": 0.97635 + }, + { + "surface": "生き返る", + "readging": "いきかえる", + "pos": "動詞", + "pn": 0.976296 + }, + { + "surface": "自適", + "readging": "じてき", + "pos": "名詞", + "pn": 0.976285 + }, + { + "surface": "浄水", + "readging": "じょうすい", + "pos": "名詞", + "pn": 0.976252 + }, + { + "surface": "取柄", + "readging": "とりえ", + "pos": "名詞", + "pn": 0.976243 + }, + { + "surface": "こよなく", + "readging": "こよなく", + "pos": "副詞", + "pn": 0.976242 + }, + { + "surface": "瑞光", + "readging": "ずいこう", + "pos": "名詞", + "pn": 0.976215 + }, + { + "surface": "安安", + "readging": "やすやす", + "pos": "副詞", + "pn": 0.976179 + }, + { + "surface": "最高峰", + "readging": "さいこうほう", + "pos": "名詞", + "pn": 0.976174 + }, + { + "surface": "歌聖", + "readging": "かせい", + "pos": "名詞", + "pn": 0.976149 + }, + { + "surface": "蘇生", + "readging": "そせい", + "pos": "名詞", + "pn": 0.976099 + }, + { + "surface": "加護", + "readging": "かご", + "pos": "名詞", + "pn": 0.976093 + }, + { + "surface": "頭立つ", + "readging": "かしらだつ", + "pos": "動詞", + "pn": 0.976079 + }, + { + "surface": "逸足", + "readging": "いっそく", + "pos": "名詞", + "pn": 0.976073 + }, + { + "surface": "仏性", + "readging": "ぶっしょう", + "pos": "名詞", + "pn": 0.976019 + }, + { + "surface": "千両役者", + "readging": "せんりょうやくしゃ", + "pos": "名詞", + "pn": 0.976012 + }, + { + "surface": "易易", + "readging": "いい", + "pos": "名詞", + "pn": 0.97599 + }, + { + "surface": "昭代", + "readging": "しょうだい", + "pos": "名詞", + "pn": 0.975954 + }, + { + "surface": "祥", + "readging": "しょう", + "pos": "名詞", + "pn": 0.975947 + }, + { + "surface": "義兵", + "readging": "ぎへい", + "pos": "名詞", + "pn": 0.975947 + }, + { + "surface": "薫る", + "readging": "かおる", + "pos": "動詞", + "pn": 0.975939 + }, + { + "surface": "炯炯", + "readging": "けいけい", + "pos": "名詞", + "pn": 0.975923 + }, + { + "surface": "古馴染", + "readging": "ふるなじみ", + "pos": "名詞", + "pn": 0.975871 + }, + { + "surface": "薫香", + "readging": "くんこう", + "pos": "名詞", + "pn": 0.975825 + }, + { + "surface": "新樹", + "readging": "しんじゅ", + "pos": "名詞", + "pn": 0.975781 + }, + { + "surface": "大福餅", + "readging": "だいふくもち", + "pos": "名詞", + "pn": 0.975751 + }, + { + "surface": "若緑", + "readging": "わかみどり", + "pos": "名詞", + "pn": 0.97575 + }, + { + "surface": "優勝劣敗", + "readging": "ゆうしょうれっぱい", + "pos": "名詞", + "pn": 0.975741 + }, + { + "surface": "有功", + "readging": "ゆうこう", + "pos": "名詞", + "pn": 0.975736 + }, + { + "surface": "欣喜", + "readging": "きんき", + "pos": "名詞", + "pn": 0.975734 + }, + { + "surface": "娯楽", + "readging": "ごらく", + "pos": "名詞", + "pn": 0.975725 + }, + { + "surface": "好調", + "readging": "こうちょう", + "pos": "名詞", + "pn": 0.975711 + }, + { + "surface": "金毘羅", + "readging": "こんぴら", + "pos": "名詞", + "pn": 0.975699 + }, + { + "surface": "極致", + "readging": "きょくち", + "pos": "名詞", + "pn": 0.975697 + }, + { + "surface": "望ましい", + "readging": "のぞましい", + "pos": "形容詞", + "pn": 0.975693 + }, + { + "surface": "五月晴", + "readging": "さつきばれ", + "pos": "名詞", + "pn": 0.97569 + }, + { + "surface": "究極", + "readging": "きゅうきょく", + "pos": "名詞", + "pn": 0.975678 + }, + { + "surface": "名吟", + "readging": "めいぎん", + "pos": "名詞", + "pn": 0.975635 + }, + { + "surface": "金牌", + "readging": "きんぱい", + "pos": "名詞", + "pn": 0.975501 + }, + { + "surface": "任侠", + "readging": "にんきょう", + "pos": "名詞", + "pn": 0.975342 + }, + { + "surface": "美田", + "readging": "びでん", + "pos": "名詞", + "pn": 0.975323 + }, + { + "surface": "出花", + "readging": "でばな", + "pos": "名詞", + "pn": 0.97528 + }, + { + "surface": "鋭い", + "readging": "するどい", + "pos": "形容詞", + "pn": 0.975276 + }, + { + "surface": "生鮮", + "readging": "せいせん", + "pos": "名詞", + "pn": 0.975266 + }, + { + "surface": "技量", + "readging": "ぎりょう", + "pos": "名詞", + "pn": 0.975228 + }, + { + "surface": "正系", + "readging": "せいけい", + "pos": "名詞", + "pn": 0.975226 + }, + { + "surface": "恩愛", + "readging": "おんない", + "pos": "名詞", + "pn": 0.975218 + }, + { + "surface": "真向き", + "readging": "まむき", + "pos": "名詞", + "pn": 0.975218 + }, + { + "surface": "奮って", + "readging": "ふるって", + "pos": "副詞", + "pn": 0.975194 + }, + { + "surface": "客受け", + "readging": "きゃくうけ", + "pos": "名詞", + "pn": 0.975158 + }, + { + "surface": "女色", + "readging": "じょしょく", + "pos": "名詞", + "pn": 0.975137 + }, + { + "surface": "涼しい", + "readging": "すずしい", + "pos": "形容詞", + "pn": 0.97513 + }, + { + "surface": "暖かい", + "readging": "あたたかい", + "pos": "形容詞", + "pn": 0.975127 + }, + { + "surface": "二枚腰", + "readging": "にまいごし", + "pos": "名詞", + "pn": 0.975122 + }, + { + "surface": "勅号", + "readging": "ちょくごう", + "pos": "名詞", + "pn": 0.975028 + }, + { + "surface": "猊下", + "readging": "げいか", + "pos": "名詞", + "pn": 0.974998 + }, + { + "surface": "壮齢", + "readging": "そうれい", + "pos": "名詞", + "pn": 0.974986 + }, + { + "surface": "手入らず", + "readging": "ていらず", + "pos": "名詞", + "pn": 0.974905 + }, + { + "surface": "妙策", + "readging": "みょうさく", + "pos": "名詞", + "pn": 0.97487 + }, + { + "surface": "随神", + "readging": "かんながら", + "pos": "名詞", + "pn": 0.974856 + }, + { + "surface": "風流", + "readging": "ふうりゅう", + "pos": "名詞", + "pn": 0.974827 + }, + { + "surface": "文化財", + "readging": "ぶんかざい", + "pos": "名詞", + "pn": 0.974815 + }, + { + "surface": "不死", + "readging": "ふし", + "pos": "名詞", + "pn": 0.974762 + }, + { + "surface": "慈雨", + "readging": "じう", + "pos": "名詞", + "pn": 0.974758 + }, + { + "surface": "賛意", + "readging": "さんい", + "pos": "名詞", + "pn": 0.974686 + }, + { + "surface": "金杯", + "readging": "きんぱい", + "pos": "名詞", + "pn": 0.974684 + }, + { + "surface": "才幹", + "readging": "さいかん", + "pos": "名詞", + "pn": 0.974679 + }, + { + "surface": "教化", + "readging": "きょうか", + "pos": "名詞", + "pn": 0.974667 + }, + { + "surface": "名筆", + "readging": "めいひつ", + "pos": "名詞", + "pn": 0.974648 + }, + { + "surface": "食べ頃", + "readging": "たべごろ", + "pos": "名詞", + "pn": 0.974642 + }, + { + "surface": "侠盗", + "readging": "きょうとう", + "pos": "名詞", + "pn": 0.974612 + }, + { + "surface": "正確", + "readging": "せいかく", + "pos": "名詞", + "pn": 0.97461 + }, + { + "surface": "強者", + "readging": "きょうしゃ", + "pos": "名詞", + "pn": 0.974592 + }, + { + "surface": "落慶", + "readging": "らっけい", + "pos": "名詞", + "pn": 0.97456 + }, + { + "surface": "壮途", + "readging": "そうと", + "pos": "名詞", + "pn": 0.974507 + }, + { + "surface": "黒髪", + "readging": "くろかみ", + "pos": "名詞", + "pn": 0.974485 + }, + { + "surface": "温厚", + "readging": "おんこう", + "pos": "名詞", + "pn": 0.974485 + }, + { + "surface": "銘酒", + "readging": "めいしゅ", + "pos": "名詞", + "pn": 0.974459 + }, + { + "surface": "改悛", + "readging": "かいしゅん", + "pos": "名詞", + "pn": 0.974451 + }, + { + "surface": "少壮", + "readging": "しょうそう", + "pos": "名詞", + "pn": 0.974447 + }, + { + "surface": "三宝", + "readging": "さんぼう", + "pos": "名詞", + "pn": 0.974444 + }, + { + "surface": "黄金時代", + "readging": "おうごんじだい", + "pos": "名詞", + "pn": 0.974443 + }, + { + "surface": "耳寄り", + "readging": "みみより", + "pos": "名詞", + "pn": 0.974382 + }, + { + "surface": "縁起直し", + "readging": "えんぎなおし", + "pos": "名詞", + "pn": 0.974368 + }, + { + "surface": "竜馬", + "readging": "りゅうめ", + "pos": "名詞", + "pn": 0.974363 + }, + { + "surface": "王化", + "readging": "おうか", + "pos": "名詞", + "pn": 0.974346 + }, + { + "surface": "奥床しい", + "readging": "おくゆかしい", + "pos": "形容詞", + "pn": 0.974333 + }, + { + "surface": "開運", + "readging": "かいうん", + "pos": "名詞", + "pn": 0.974317 + }, + { + "surface": "正当", + "readging": "せいとう", + "pos": "名詞", + "pn": 0.974306 + }, + { + "surface": "キング", + "readging": "キング", + "pos": "名詞", + "pn": 0.974291 + }, + { + "surface": "独眼竜", + "readging": "どくがんりゅう", + "pos": "名詞", + "pn": 0.974271 + }, + { + "surface": "典雅", + "readging": "てんが", + "pos": "名詞", + "pn": 0.974267 + }, + { + "surface": "左袒", + "readging": "さたん", + "pos": "名詞", + "pn": 0.974251 + }, + { + "surface": "祝", + "readging": "しゅく", + "pos": "名詞", + "pn": 0.974233 + }, + { + "surface": "薫", + "readging": "くん", + "pos": "名詞", + "pn": 0.974177 + }, + { + "surface": "馥郁", + "readging": "ふくいく", + "pos": "名詞", + "pn": 0.974168 + }, + { + "surface": "感激", + "readging": "かんげき", + "pos": "名詞", + "pn": 0.974167 + }, + { + "surface": "まめまめしい", + "readging": "まめまめしい", + "pos": "形容詞", + "pn": 0.974164 + }, + { + "surface": "銀器", + "readging": "ぎんき", + "pos": "名詞", + "pn": 0.974134 + }, + { + "surface": "大輪", + "readging": "たいりん", + "pos": "名詞", + "pn": 0.974129 + }, + { + "surface": "殊遇", + "readging": "しゅぐう", + "pos": "名詞", + "pn": 0.974094 + }, + { + "surface": "一能", + "readging": "いちのう", + "pos": "名詞", + "pn": 0.97408 + }, + { + "surface": "祝典", + "readging": "しゅくてん", + "pos": "名詞", + "pn": 0.974074 + }, + { + "surface": "富者", + "readging": "ふしゃ", + "pos": "名詞", + "pn": 0.974052 + }, + { + "surface": "霊威", + "readging": "れいい", + "pos": "名詞", + "pn": 0.974044 + }, + { + "surface": "訓育", + "readging": "くんいく", + "pos": "名詞", + "pn": 0.974039 + }, + { + "surface": "我慢強い", + "readging": "がまんづよい", + "pos": "形容詞", + "pn": 0.974004 + }, + { + "surface": "親炙", + "readging": "しんしゃ", + "pos": "名詞", + "pn": 0.974001 + }, + { + "surface": "賀意", + "readging": "がい", + "pos": "名詞", + "pn": 0.973994 + }, + { + "surface": "聖地", + "readging": "せいち", + "pos": "名詞", + "pn": 0.973968 + }, + { + "surface": "打勝つ", + "readging": "うちかつ", + "pos": "動詞", + "pn": 0.973945 + }, + { + "surface": "才女", + "readging": "さいじょ", + "pos": "名詞", + "pn": 0.973894 + }, + { + "surface": "信実", + "readging": "しんじつ", + "pos": "名詞", + "pn": 0.973772 + }, + { + "surface": "感じ入る", + "readging": "かんじいる", + "pos": "動詞", + "pn": 0.973753 + }, + { + "surface": "義侠", + "readging": "ぎきょう", + "pos": "名詞", + "pn": 0.973751 + }, + { + "surface": "有頂天", + "readging": "うちょうてん", + "pos": "名詞", + "pn": 0.973747 + }, + { + "surface": "有終", + "readging": "ゆうしゅう", + "pos": "名詞", + "pn": 0.973694 + }, + { + "surface": "好都合", + "readging": "こうつごう", + "pos": "名詞", + "pn": 0.973658 + }, + { + "surface": "ちゃきちゃき", + "readging": "ちゃきちゃき", + "pos": "名詞", + "pn": 0.973643 + }, + { + "surface": "やんごとない", + "readging": "やんごとない", + "pos": "形容詞", + "pn": 0.973619 + }, + { + "surface": "独歩", + "readging": "どっぽ", + "pos": "名詞", + "pn": 0.973582 + }, + { + "surface": "笑い", + "readging": "わらい", + "pos": "名詞", + "pn": 0.97356 + }, + { + "surface": "前途", + "readging": "ぜんと", + "pos": "名詞", + "pn": 0.973546 + }, + { + "surface": "銀牌", + "readging": "ぎんぱい", + "pos": "名詞", + "pn": 0.973544 + }, + { + "surface": "手堅い", + "readging": "てがたい", + "pos": "形容詞", + "pn": 0.973466 + }, + { + "surface": "第一流", + "readging": "だいいちりゅう", + "pos": "名詞", + "pn": 0.973446 + }, + { + "surface": "国粋", + "readging": "こくすい", + "pos": "名詞", + "pn": 0.97344 + }, + { + "surface": "全治", + "readging": "ぜんち", + "pos": "名詞", + "pn": 0.973438 + }, + { + "surface": "英霊", + "readging": "えいれい", + "pos": "名詞", + "pn": 0.973427 + }, + { + "surface": "運座", + "readging": "うんざ", + "pos": "名詞", + "pn": 0.97342 + }, + { + "surface": "引出物", + "readging": "ひきでもの", + "pos": "名詞", + "pn": 0.973418 + }, + { + "surface": "梁山泊", + "readging": "りょうざんぱく", + "pos": "名詞", + "pn": 0.973332 + }, + { + "surface": "武名", + "readging": "ぶめい", + "pos": "名詞", + "pn": 0.97332 + }, + { + "surface": "輩出", + "readging": "はいしゅつ", + "pos": "名詞", + "pn": 0.973302 + }, + { + "surface": "貴公子", + "readging": "きこうし", + "pos": "名詞", + "pn": 0.973294 + }, + { + "surface": "慇懃", + "readging": "いんぎん", + "pos": "名詞", + "pn": 0.973255 + }, + { + "surface": "おめでた", + "readging": "おめでた", + "pos": "名詞", + "pn": 0.973235 + }, + { + "surface": "王土", + "readging": "おうど", + "pos": "名詞", + "pn": 0.973186 + }, + { + "surface": "心意気", + "readging": "こころいき", + "pos": "名詞", + "pn": 0.973181 + }, + { + "surface": "回避", + "readging": "かいひ", + "pos": "名詞", + "pn": 0.973139 + }, + { + "surface": "悠悠", + "readging": "ゆうゆう", + "pos": "名詞", + "pn": 0.973122 + }, + { + "surface": "巨擘", + "readging": "きょはく", + "pos": "名詞", + "pn": 0.973064 + }, + { + "surface": "並外れる", + "readging": "なみはずれる", + "pos": "動詞", + "pn": 0.973052 + }, + { + "surface": "潔い", + "readging": "いさぎよい", + "pos": "形容詞", + "pn": 0.973013 + }, + { + "surface": "のの様", + "readging": "ののさま", + "pos": "名詞", + "pn": 0.972972 + }, + { + "surface": "後楯", + "readging": "うしろだて", + "pos": "名詞", + "pn": 0.972938 + }, + { + "surface": "無双", + "readging": "むそう", + "pos": "名詞", + "pn": 0.972935 + }, + { + "surface": "敬慕", + "readging": "けいぼ", + "pos": "名詞", + "pn": 0.97288 + }, + { + "surface": "手足れ", + "readging": "てだれ", + "pos": "名詞", + "pn": 0.97286 + }, + { + "surface": "一角", + "readging": "いっかど", + "pos": "名詞", + "pn": 0.972854 + }, + { + "surface": "手広い", + "readging": "てびろい", + "pos": "形容詞", + "pn": 0.972844 + }, + { + "surface": "親和", + "readging": "しんわ", + "pos": "名詞", + "pn": 0.972824 + }, + { + "surface": "才子", + "readging": "さいし", + "pos": "名詞", + "pn": 0.972775 + }, + { + "surface": "鳴り響く", + "readging": "なりひびく", + "pos": "動詞", + "pn": 0.972749 + }, + { + "surface": "瑞雲", + "readging": "ずいうん", + "pos": "名詞", + "pn": 0.972746 + }, + { + "surface": "見性成仏", + "readging": "けんしょうじょうぶつ", + "pos": "名詞", + "pn": 0.972736 + }, + { + "surface": "名花", + "readging": "めいか", + "pos": "名詞", + "pn": 0.972723 + }, + { + "surface": "国士", + "readging": "こくし", + "pos": "名詞", + "pn": 0.972674 + }, + { + "surface": "機縁", + "readging": "きえん", + "pos": "名詞", + "pn": 0.972658 + }, + { + "surface": "現人神", + "readging": "あらひとがみ", + "pos": "名詞", + "pn": 0.972633 + }, + { + "surface": "人臭い", + "readging": "ひとくさい", + "pos": "形容詞", + "pn": 0.972631 + }, + { + "surface": "舌鋒", + "readging": "ぜっぽう", + "pos": "名詞", + "pn": 0.97262 + }, + { + "surface": "将器", + "readging": "しょうき", + "pos": "名詞", + "pn": 0.972616 + }, + { + "surface": "鶴亀", + "readging": "つるかめ", + "pos": "名詞", + "pn": 0.972533 + }, + { + "surface": "厳正", + "readging": "げんせい", + "pos": "名詞", + "pn": 0.972531 + }, + { + "surface": "取", + "readging": "とり", + "pos": "名詞", + "pn": 0.972529 + }, + { + "surface": "生き残る", + "readging": "いきのこる", + "pos": "動詞", + "pn": 0.972523 + }, + { + "surface": "酌交す", + "readging": "くみかわす", + "pos": "動詞", + "pn": 0.972515 + }, + { + "surface": "神徳", + "readging": "しんとく", + "pos": "名詞", + "pn": 0.972506 + }, + { + "surface": "謹厳", + "readging": "きんげん", + "pos": "名詞", + "pn": 0.972493 + }, + { + "surface": "神業", + "readging": "かみわざ", + "pos": "名詞", + "pn": 0.972463 + }, + { + "surface": "生え抜き", + "readging": "はえぬき", + "pos": "名詞", + "pn": 0.972416 + }, + { + "surface": "驥尾", + "readging": "きび", + "pos": "名詞", + "pn": 0.972404 + }, + { + "surface": "すくすく", + "readging": "すくすく", + "pos": "副詞", + "pn": 0.972376 + }, + { + "surface": "歓待", + "readging": "かんたい", + "pos": "名詞", + "pn": 0.972362 + }, + { + "surface": "大徳", + "readging": "だいとく", + "pos": "名詞", + "pn": 0.972348 + }, + { + "surface": "名湯", + "readging": "めいとう", + "pos": "名詞", + "pn": 0.972342 + }, + { + "surface": "諤諤", + "readging": "がくがく", + "pos": "名詞", + "pn": 0.972333 + }, + { + "surface": "忘我", + "readging": "ぼうが", + "pos": "名詞", + "pn": 0.972327 + }, + { + "surface": "応援", + "readging": "おうえん", + "pos": "名詞", + "pn": 0.972324 + }, + { + "surface": "天稟", + "readging": "てんぴん", + "pos": "名詞", + "pn": 0.972322 + }, + { + "surface": "目敏い", + "readging": "めざとい", + "pos": "形容詞", + "pn": 0.972316 + }, + { + "surface": "目正月", + "readging": "めしょうがつ", + "pos": "名詞", + "pn": 0.972307 + }, + { + "surface": "香木", + "readging": "こうぼく", + "pos": "名詞", + "pn": 0.972278 + }, + { + "surface": "出世頭", + "readging": "しゅっせがしら", + "pos": "名詞", + "pn": 0.972209 + }, + { + "surface": "至徳", + "readging": "しとく", + "pos": "名詞", + "pn": 0.972192 + }, + { + "surface": "利器", + "readging": "りき", + "pos": "名詞", + "pn": 0.97219 + }, + { + "surface": "金剛心", + "readging": "こんごうしん", + "pos": "名詞", + "pn": 0.972156 + }, + { + "surface": "名所", + "readging": "めいしょ", + "pos": "名詞", + "pn": 0.972152 + }, + { + "surface": "信服", + "readging": "しんぷく", + "pos": "名詞", + "pn": 0.972142 + }, + { + "surface": "郁郁", + "readging": "いくいく", + "pos": "名詞", + "pn": 0.972136 + }, + { + "surface": "文藻", + "readging": "ぶんそう", + "pos": "名詞", + "pn": 0.972087 + }, + { + "surface": "晏如", + "readging": "あんじょ", + "pos": "名詞", + "pn": 0.972073 + }, + { + "surface": "営営", + "readging": "えいえい", + "pos": "名詞", + "pn": 0.97205 + }, + { + "surface": "温", + "readging": "おん", + "pos": "名詞", + "pn": 0.972044 + }, + { + "surface": "鉄腕", + "readging": "てつわん", + "pos": "名詞", + "pn": 0.971999 + }, + { + "surface": "築城", + "readging": "ちくじょう", + "pos": "名詞", + "pn": 0.971897 + }, + { + "surface": "麗句", + "readging": "れいく", + "pos": "名詞", + "pn": 0.971832 + }, + { + "surface": "義挙", + "readging": "ぎきょ", + "pos": "名詞", + "pn": 0.971827 + }, + { + "surface": "進運", + "readging": "しんうん", + "pos": "名詞", + "pn": 0.971814 + }, + { + "surface": "気鋭", + "readging": "きえい", + "pos": "名詞", + "pn": 0.971811 + }, + { + "surface": "運", + "readging": "うん", + "pos": "名詞", + "pn": 0.971808 + }, + { + "surface": "軽度", + "readging": "けいど", + "pos": "名詞", + "pn": 0.971798 + }, + { + "surface": "お茶の子", + "readging": "おちゃのこ", + "pos": "名詞", + "pn": 0.971779 + }, + { + "surface": "景仰", + "readging": "けいこう", + "pos": "名詞", + "pn": 0.971762 + }, + { + "surface": "良縁", + "readging": "りょうえん", + "pos": "名詞", + "pn": 0.971758 + }, + { + "surface": "サバイバル", + "readging": "サバイバル", + "pos": "名詞", + "pn": 0.971691 + }, + { + "surface": "行賞", + "readging": "こうしょう", + "pos": "名詞", + "pn": 0.971659 + }, + { + "surface": "弘法", + "readging": "こうぼう", + "pos": "名詞", + "pn": 0.971648 + }, + { + "surface": "青春", + "readging": "せいしゅん", + "pos": "名詞", + "pn": 0.971646 + }, + { + "surface": "美風", + "readging": "びふう", + "pos": "名詞", + "pn": 0.971639 + }, + { + "surface": "神", + "readging": "かみ", + "pos": "名詞", + "pn": 0.971636 + }, + { + "surface": "思いがけない", + "readging": "おもいがけない", + "pos": "形容詞", + "pn": 0.971604 + }, + { + "surface": "推奨", + "readging": "すいしょう", + "pos": "名詞", + "pn": 0.97155 + }, + { + "surface": "快調", + "readging": "かいちょう", + "pos": "名詞", + "pn": 0.971548 + }, + { + "surface": "栄転", + "readging": "えいてん", + "pos": "名詞", + "pn": 0.971539 + }, + { + "surface": "救世", + "readging": "きゅうせい", + "pos": "名詞", + "pn": 0.971514 + }, + { + "surface": "老将", + "readging": "ろうしょう", + "pos": "名詞", + "pn": 0.971513 + }, + { + "surface": "こんがり", + "readging": "こんがり", + "pos": "副詞", + "pn": 0.971503 + }, + { + "surface": "己惚れる", + "readging": "うぬぼれる", + "pos": "動詞", + "pn": 0.9715 + }, + { + "surface": "興", + "readging": "きょう", + "pos": "名詞", + "pn": 0.971487 + }, + { + "surface": "時めく", + "readging": "ときめく", + "pos": "動詞", + "pn": 0.971481 + }, + { + "surface": "先勝", + "readging": "せんしょう", + "pos": "名詞", + "pn": 0.971452 + }, + { + "surface": "金山", + "readging": "きんざん", + "pos": "名詞", + "pn": 0.97139 + }, + { + "surface": "能吏", + "readging": "のうり", + "pos": "名詞", + "pn": 0.971379 + }, + { + "surface": "トレード", + "readging": "トレードマーク", + "pos": "名詞", + "pn": 0.971342 + }, + { + "surface": "雄視", + "readging": "ゆうし", + "pos": "名詞", + "pn": 0.971326 + }, + { + "surface": "物見高い", + "readging": "ものみだかい", + "pos": "形容詞", + "pn": 0.971307 + }, + { + "surface": "整う", + "readging": "ととのう", + "pos": "動詞", + "pn": 0.971301 + }, + { + "surface": "嬉嬉", + "readging": "きき", + "pos": "名詞", + "pn": 0.971298 + }, + { + "surface": "軽軽", + "readging": "かるがる", + "pos": "副詞", + "pn": 0.971267 + }, + { + "surface": "尊像", + "readging": "そんぞう", + "pos": "名詞", + "pn": 0.971236 + }, + { + "surface": "親玉", + "readging": "おやだま", + "pos": "名詞", + "pn": 0.971225 + }, + { + "surface": "勇将", + "readging": "ゆうしょう", + "pos": "名詞", + "pn": 0.971184 + }, + { + "surface": "嗟嘆", + "readging": "さたん", + "pos": "名詞", + "pn": 0.971181 + }, + { + "surface": "尊前", + "readging": "そんぜん", + "pos": "名詞", + "pn": 0.971174 + }, + { + "surface": "美しくも", + "readging": "いしくも", + "pos": "副詞", + "pn": 0.971147 + }, + { + "surface": "若木", + "readging": "わかぎ", + "pos": "名詞", + "pn": 0.971055 + }, + { + "surface": "至善", + "readging": "しぜん", + "pos": "名詞", + "pn": 0.971005 + }, + { + "surface": "古豪", + "readging": "こごう", + "pos": "名詞", + "pn": 0.970911 + }, + { + "surface": "山神", + "readging": "さんじん", + "pos": "名詞", + "pn": 0.970901 + }, + { + "surface": "香気", + "readging": "こうき", + "pos": "名詞", + "pn": 0.970814 + }, + { + "surface": "しっくり", + "readging": "しっくり", + "pos": "副詞", + "pn": 0.970807 + }, + { + "surface": "眼精", + "readging": "がんせい", + "pos": "名詞", + "pn": 0.970799 + }, + { + "surface": "共助", + "readging": "きょうじょ", + "pos": "名詞", + "pn": 0.970768 + }, + { + "surface": "祐", + "readging": "ゆう", + "pos": "名詞", + "pn": 0.970766 + }, + { + "surface": "知力", + "readging": "ちりょく", + "pos": "名詞", + "pn": 0.970721 + }, + { + "surface": "群雄", + "readging": "ぐんゆう", + "pos": "名詞", + "pn": 0.970702 + }, + { + "surface": "ノミネート", + "readging": "ノミネート", + "pos": "名詞", + "pn": 0.970671 + }, + { + "surface": "遊楽", + "readging": "ゆうらく", + "pos": "名詞", + "pn": 0.970612 + }, + { + "surface": "芙蓉峰", + "readging": "ふようほう", + "pos": "名詞", + "pn": 0.970587 + }, + { + "surface": "生き延びる", + "readging": "いきのびる", + "pos": "動詞", + "pn": 0.970568 + }, + { + "surface": "要害", + "readging": "ようがい", + "pos": "名詞", + "pn": 0.970535 + }, + { + "surface": "井然", + "readging": "せいぜん", + "pos": "名詞", + "pn": 0.970464 + }, + { + "surface": "報奨", + "readging": "ほうしょう", + "pos": "名詞", + "pn": 0.970434 + }, + { + "surface": "往生", + "readging": "おうじょう", + "pos": "名詞", + "pn": 0.970413 + }, + { + "surface": "ちんまり", + "readging": "ちんまり", + "pos": "副詞", + "pn": 0.97041 + }, + { + "surface": "尻押し", + "readging": "しりおし", + "pos": "名詞", + "pn": 0.970407 + }, + { + "surface": "善がる", + "readging": "よがる", + "pos": "動詞", + "pn": 0.970387 + }, + { + "surface": "何より", + "readging": "なにより", + "pos": "副詞", + "pn": 0.970386 + }, + { + "surface": "学才", + "readging": "がくさい", + "pos": "名詞", + "pn": 0.970329 + }, + { + "surface": "恩賞", + "readging": "おんしょう", + "pos": "名詞", + "pn": 0.970299 + }, + { + "surface": "強化", + "readging": "きょうか", + "pos": "名詞", + "pn": 0.970293 + }, + { + "surface": "勇戦", + "readging": "ゆうせん", + "pos": "名詞", + "pn": 0.970269 + }, + { + "surface": "垂迹", + "readging": "すいじゃく", + "pos": "名詞", + "pn": 0.970259 + }, + { + "surface": "金甌無欠", + "readging": "きんおうむけつ", + "pos": "名詞", + "pn": 0.970205 + }, + { + "surface": "殿堂", + "readging": "でんどう", + "pos": "名詞", + "pn": 0.970169 + }, + { + "surface": "紙吹雪", + "readging": "かみふぶき", + "pos": "名詞", + "pn": 0.970148 + }, + { + "surface": "悔悟", + "readging": "かいご", + "pos": "名詞", + "pn": 0.970113 + }, + { + "surface": "寸鉄", + "readging": "すんてつ", + "pos": "名詞", + "pn": 0.970101 + }, + { + "surface": "持味", + "readging": "もちあじ", + "pos": "名詞", + "pn": 0.970049 + }, + { + "surface": "助かる", + "readging": "たすかる", + "pos": "動詞", + "pn": 0.970031 + }, + { + "surface": "大望", + "readging": "たいもう", + "pos": "名詞", + "pn": 0.970028 + }, + { + "surface": "戦功", + "readging": "せんこう", + "pos": "名詞", + "pn": 0.969985 + }, + { + "surface": "無病", + "readging": "むびょう", + "pos": "名詞", + "pn": 0.969956 + }, + { + "surface": "良家", + "readging": "りょうか", + "pos": "名詞", + "pn": 0.969937 + }, + { + "surface": "銀杯", + "readging": "ぎんぱい", + "pos": "名詞", + "pn": 0.969929 + }, + { + "surface": "そっ啄", + "readging": "そったく", + "pos": "名詞", + "pn": 0.969922 + }, + { + "surface": "愛情", + "readging": "あいじょう", + "pos": "名詞", + "pn": 0.969919 + }, + { + "surface": "機宜", + "readging": "きぎ", + "pos": "名詞", + "pn": 0.969912 + }, + { + "surface": "修身", + "readging": "しゅうしん", + "pos": "名詞", + "pn": 0.969902 + }, + { + "surface": "緑樹", + "readging": "りょくじゅ", + "pos": "名詞", + "pn": 0.969831 + }, + { + "surface": "余慶", + "readging": "よけい", + "pos": "名詞", + "pn": 0.969773 + }, + { + "surface": "腐れ縁", + "readging": "くされえん", + "pos": "名詞", + "pn": 0.969771 + }, + { + "surface": "雄略", + "readging": "ゆうりゃく", + "pos": "名詞", + "pn": 0.969756 + }, + { + "surface": "三十二相", + "readging": "さんじゅうにそう", + "pos": "名詞", + "pn": 0.969754 + }, + { + "surface": "朝賀", + "readging": "ちょうが", + "pos": "名詞", + "pn": 0.969748 + }, + { + "surface": "拝賀", + "readging": "はいが", + "pos": "名詞", + "pn": 0.969722 + }, + { + "surface": "高揚", + "readging": "こうよう", + "pos": "名詞", + "pn": 0.969716 + }, + { + "surface": "楽しみ", + "readging": "たのしみ", + "pos": "名詞", + "pn": 0.969654 + }, + { + "surface": "お宝", + "readging": "おたから", + "pos": "名詞", + "pn": 0.969646 + }, + { + "surface": "善果", + "readging": "ぜんか", + "pos": "名詞", + "pn": 0.969643 + }, + { + "surface": "夜半", + "readging": "やはん", + "pos": "名詞", + "pn": 0.969642 + }, + { + "surface": "仁政", + "readging": "じんせい", + "pos": "名詞", + "pn": 0.969584 + }, + { + "surface": "義烈", + "readging": "ぎれつ", + "pos": "名詞", + "pn": 0.969558 + }, + { + "surface": "興", + "readging": "きょう", + "pos": "名詞", + "pn": 0.969547 + }, + { + "surface": "適材適所", + "readging": "てきざいてきしょ", + "pos": "名詞", + "pn": 0.969531 + }, + { + "surface": "フォロー", + "readging": "フォロー", + "pos": "名詞", + "pn": 0.969527 + }, + { + "surface": "盛運", + "readging": "せいうん", + "pos": "名詞", + "pn": 0.969525 + }, + { + "surface": "義人", + "readging": "ぎじん", + "pos": "名詞", + "pn": 0.969454 + }, + { + "surface": "安閑", + "readging": "あんかん", + "pos": "名詞", + "pn": 0.969418 + }, + { + "surface": "楽に", + "readging": "らくに", + "pos": "副詞", + "pn": 0.969407 + }, + { + "surface": "一方ならず", + "readging": "ひとかたならず", + "pos": "副詞", + "pn": 0.969398 + }, + { + "surface": "遺賢", + "readging": "いけん", + "pos": "名詞", + "pn": 0.969369 + }, + { + "surface": "いける", + "readging": "いける", + "pos": "動詞", + "pn": 0.969356 + }, + { + "surface": "剣豪", + "readging": "けんごう", + "pos": "名詞", + "pn": 0.969289 + }, + { + "surface": "きりりと", + "readging": "きりりと", + "pos": "副詞", + "pn": 0.969288 + }, + { + "surface": "奇観", + "readging": "きかん", + "pos": "名詞", + "pn": 0.969252 + }, + { + "surface": "資", + "readging": "し", + "pos": "名詞", + "pn": 0.969186 + }, + { + "surface": "愛好", + "readging": "あいこう", + "pos": "名詞", + "pn": 0.969115 + }, + { + "surface": "深謀", + "readging": "しんぼう", + "pos": "名詞", + "pn": 0.96909 + }, + { + "surface": "受給", + "readging": "じゅきゅう", + "pos": "名詞", + "pn": 0.969083 + }, + { + "surface": "突飛", + "readging": "とっぴ", + "pos": "名詞", + "pn": 0.96907 + }, + { + "surface": "両雄", + "readging": "りょうゆう", + "pos": "名詞", + "pn": 0.969061 + }, + { + "surface": "顕正", + "readging": "けんしょう", + "pos": "名詞", + "pn": 0.969047 + }, + { + "surface": "衛生", + "readging": "えいせい", + "pos": "名詞", + "pn": 0.969038 + }, + { + "surface": "雅", + "readging": "が", + "pos": "名詞", + "pn": 0.969035 + }, + { + "surface": "垂涎", + "readging": "すいぜん", + "pos": "名詞", + "pn": 0.969023 + }, + { + "surface": "七転び八起き", + "readging": "ななころびやおき", + "pos": "名詞", + "pn": 0.969014 + }, + { + "surface": "めぼしい", + "readging": "めぼしい", + "pos": "形容詞", + "pn": 0.969011 + }, + { + "surface": "意気揚揚", + "readging": "いきようよう", + "pos": "名詞", + "pn": 0.968909 + }, + { + "surface": "栄典", + "readging": "えいてん", + "pos": "名詞", + "pn": 0.968902 + }, + { + "surface": "肥立ち", + "readging": "ひだち", + "pos": "名詞", + "pn": 0.968897 + }, + { + "surface": "敬神", + "readging": "けいしん", + "pos": "名詞", + "pn": 0.968879 + }, + { + "surface": "賢弟", + "readging": "けんてい", + "pos": "名詞", + "pn": 0.968833 + }, + { + "surface": "翠帳紅閨", + "readging": "すいちょうこうけい", + "pos": "名詞", + "pn": 0.96883 + }, + { + "surface": "全癒", + "readging": "ぜんゆ", + "pos": "名詞", + "pn": 0.968805 + }, + { + "surface": "根気", + "readging": "こんき", + "pos": "名詞", + "pn": 0.968794 + }, + { + "surface": "良策", + "readging": "りょうさく", + "pos": "名詞", + "pn": 0.968763 + }, + { + "surface": "四天王", + "readging": "してんのう", + "pos": "名詞", + "pn": 0.968635 + }, + { + "surface": "婉然", + "readging": "えんぜん", + "pos": "名詞", + "pn": 0.96851 + }, + { + "surface": "窈窕", + "readging": "ようちょう", + "pos": "名詞", + "pn": 0.96851 + }, + { + "surface": "美観", + "readging": "びかん", + "pos": "名詞", + "pn": 0.96851 + }, + { + "surface": "壮美", + "readging": "そうび", + "pos": "名詞", + "pn": 0.96851 + }, + { + "surface": "絶美", + "readging": "ぜつび", + "pos": "名詞", + "pn": 0.96851 + }, + { + "surface": "大器晩成", + "readging": "たいきばんせい", + "pos": "名詞", + "pn": 0.96851 + }, + { + "surface": "楚楚", + "readging": "そそ", + "pos": "名詞", + "pn": 0.96851 + }, + { + "surface": "救命", + "readging": "きゅうめい", + "pos": "名詞", + "pn": 0.968473 + }, + { + "surface": "正則", + "readging": "せいそく", + "pos": "名詞", + "pn": 0.968402 + }, + { + "surface": "家元", + "readging": "いえもと", + "pos": "名詞", + "pn": 0.968272 + }, + { + "surface": "生き甲斐", + "readging": "いきがい", + "pos": "名詞", + "pn": 0.96826 + }, + { + "surface": "盛", + "readging": "せい", + "pos": "名詞", + "pn": 0.968257 + }, + { + "surface": "小気味", + "readging": "こきみ", + "pos": "名詞", + "pn": 0.96824 + }, + { + "surface": "才弾ける", + "readging": "さいはじける", + "pos": "動詞", + "pn": 0.968226 + }, + { + "surface": "潔白", + "readging": "けっぱく", + "pos": "名詞", + "pn": 0.968181 + }, + { + "surface": "御宝前", + "readging": "ごほうぜん", + "pos": "名詞", + "pn": 0.968179 + }, + { + "surface": "風光", + "readging": "ふうこう", + "pos": "名詞", + "pn": 0.968096 + }, + { + "surface": "癒える", + "readging": "いえる", + "pos": "動詞", + "pn": 0.96809 + }, + { + "surface": "生粋", + "readging": "きっすい", + "pos": "名詞", + "pn": 0.968089 + }, + { + "surface": "生色", + "readging": "せいしょく", + "pos": "名詞", + "pn": 0.96808 + }, + { + "surface": "肥やす", + "readging": "こやす", + "pos": "動詞", + "pn": 0.968061 + }, + { + "surface": "善男", + "readging": "ぜんなん", + "pos": "名詞", + "pn": 0.968032 + }, + { + "surface": "功利", + "readging": "こうり", + "pos": "名詞", + "pn": 0.967847 + }, + { + "surface": "悦服", + "readging": "えっぷく", + "pos": "名詞", + "pn": 0.967833 + }, + { + "surface": "適期", + "readging": "てっき", + "pos": "名詞", + "pn": 0.967831 + }, + { + "surface": "円光", + "readging": "えんこう", + "pos": "名詞", + "pn": 0.96781 + }, + { + "surface": "識見", + "readging": "しきけん", + "pos": "名詞", + "pn": 0.967772 + }, + { + "surface": "すっきり", + "readging": "すっきり", + "pos": "名詞", + "pn": 0.967757 + }, + { + "surface": "訳無い", + "readging": "わけない", + "pos": "形容詞", + "pn": 0.967691 + }, + { + "surface": "禄", + "readging": "ろく", + "pos": "名詞", + "pn": 0.967691 + }, + { + "surface": "参賀", + "readging": "さんが", + "pos": "名詞", + "pn": 0.967669 + }, + { + "surface": "人気", + "readging": "にんき", + "pos": "名詞", + "pn": 0.96765 + }, + { + "surface": "風味", + "readging": "ふうみ", + "pos": "名詞", + "pn": 0.967643 + }, + { + "surface": "放生", + "readging": "ほうじょう", + "pos": "名詞", + "pn": 0.967586 + }, + { + "surface": "恒心", + "readging": "こうしん", + "pos": "名詞", + "pn": 0.96756 + }, + { + "surface": "売れ筋", + "readging": "うれすじ", + "pos": "名詞", + "pn": 0.9675 + }, + { + "surface": "託宣", + "readging": "たくせん", + "pos": "名詞", + "pn": 0.96744 + }, + { + "surface": "豪華版", + "readging": "ごうかばん", + "pos": "名詞", + "pn": 0.967298 + }, + { + "surface": "勝鬨", + "readging": "かちどき", + "pos": "名詞", + "pn": 0.96727 + }, + { + "surface": "閑雅", + "readging": "かんが", + "pos": "名詞", + "pn": 0.967239 + }, + { + "surface": "色っぽい", + "readging": "いろっぽい", + "pos": "形容詞", + "pn": 0.967178 + }, + { + "surface": "観艦式", + "readging": "かんかんしき", + "pos": "名詞", + "pn": 0.967167 + }, + { + "surface": "様様", + "readging": "さまさま", + "pos": "名詞", + "pn": 0.96716 + }, + { + "surface": "余香", + "readging": "よこう", + "pos": "名詞", + "pn": 0.967111 + }, + { + "surface": "御託宣", + "readging": "ごたくせん", + "pos": "名詞", + "pn": 0.967086 + }, + { + "surface": "心血", + "readging": "しんけつ", + "pos": "名詞", + "pn": 0.967083 + }, + { + "surface": "悟", + "readging": "ご", + "pos": "名詞", + "pn": 0.967069 + }, + { + "surface": "勝機", + "readging": "しょうき", + "pos": "名詞", + "pn": 0.967064 + }, + { + "surface": "節義", + "readging": "せつぎ", + "pos": "名詞", + "pn": 0.967022 + }, + { + "surface": "重畳", + "readging": "ちょうじょう", + "pos": "名詞", + "pn": 0.967018 + }, + { + "surface": "長持ち", + "readging": "ながもち", + "pos": "名詞", + "pn": 0.967016 + }, + { + "surface": "詩才", + "readging": "しさい", + "pos": "名詞", + "pn": 0.966996 + }, + { + "surface": "霊徳", + "readging": "れいとく", + "pos": "名詞", + "pn": 0.966973 + }, + { + "surface": "人がましい", + "readging": "ひとがましい", + "pos": "形容詞", + "pn": 0.966924 + }, + { + "surface": "大安", + "readging": "たいあん", + "pos": "名詞", + "pn": 0.966923 + }, + { + "surface": "嬌名", + "readging": "きょうめい", + "pos": "名詞", + "pn": 0.966888 + }, + { + "surface": "文名", + "readging": "ぶんめい", + "pos": "名詞", + "pn": 0.966887 + }, + { + "surface": "商才", + "readging": "しょうさい", + "pos": "名詞", + "pn": 0.966861 + }, + { + "surface": "大自然", + "readging": "だいしぜん", + "pos": "名詞", + "pn": 0.966841 + }, + { + "surface": "新鋭", + "readging": "しんえい", + "pos": "名詞", + "pn": 0.966797 + }, + { + "surface": "良貨", + "readging": "りょうか", + "pos": "名詞", + "pn": 0.966766 + }, + { + "surface": "ずばり", + "readging": "ずばり", + "pos": "副詞", + "pn": 0.966756 + }, + { + "surface": "堅気", + "readging": "かたぎ", + "pos": "名詞", + "pn": 0.96674 + }, + { + "surface": "ダイヤモンド", + "readging": "ダイヤモンド", + "pos": "名詞", + "pn": 0.966706 + }, + { + "surface": "勉学", + "readging": "べんがく", + "pos": "名詞", + "pn": 0.966632 + }, + { + "surface": "慕わしい", + "readging": "したわしい", + "pos": "形容詞", + "pn": 0.966617 + }, + { + "surface": "安心立命", + "readging": "あんしんりつめい", + "pos": "名詞", + "pn": 0.966579 + }, + { + "surface": "主柱", + "readging": "しゅちゅう", + "pos": "名詞", + "pn": 0.966562 + }, + { + "surface": "恩命", + "readging": "おんめい", + "pos": "名詞", + "pn": 0.966554 + }, + { + "surface": "主役", + "readging": "しゅやく", + "pos": "名詞", + "pn": 0.966551 + }, + { + "surface": "行楽", + "readging": "こうらく", + "pos": "名詞", + "pn": 0.966497 + }, + { + "surface": "万歳", + "readging": "ばんざい", + "pos": "名詞", + "pn": 0.966483 + }, + { + "surface": "男勝り", + "readging": "おとこまさり", + "pos": "名詞", + "pn": 0.966456 + }, + { + "surface": "客好き", + "readging": "きゃくずき", + "pos": "名詞", + "pn": 0.966456 + }, + { + "surface": "奥深い", + "readging": "おくぶかい", + "pos": "形容詞", + "pn": 0.966397 + }, + { + "surface": "険要", + "readging": "けんよう", + "pos": "名詞", + "pn": 0.966379 + }, + { + "surface": "軍功", + "readging": "ぐんこう", + "pos": "名詞", + "pn": 0.966364 + }, + { + "surface": "真鯛", + "readging": "まだい", + "pos": "名詞", + "pn": 0.966361 + }, + { + "surface": "気迫", + "readging": "きはく", + "pos": "名詞", + "pn": 0.966349 + }, + { + "surface": "心眼", + "readging": "しんがん", + "pos": "名詞", + "pn": 0.966293 + }, + { + "surface": "静謐", + "readging": "せいひつ", + "pos": "名詞", + "pn": 0.966267 + }, + { + "surface": "上向く", + "readging": "うわむく", + "pos": "動詞", + "pn": 0.966248 + }, + { + "surface": "産土神", + "readging": "うぶすながみ", + "pos": "名詞", + "pn": 0.96623 + }, + { + "surface": "適地", + "readging": "てきち", + "pos": "名詞", + "pn": 0.966222 + }, + { + "surface": "楽天主義", + "readging": "らくてんしゅぎ", + "pos": "名詞", + "pn": 0.966133 + }, + { + "surface": "享楽", + "readging": "きょうらく", + "pos": "名詞", + "pn": 0.965981 + }, + { + "surface": "神算", + "readging": "しんさん", + "pos": "名詞", + "pn": 0.965948 + }, + { + "surface": "ハッピー エンド", + "readging": "ハッピー エンド", + "pos": "名詞", + "pn": 0.965817 + }, + { + "surface": "説諭", + "readging": "せつゆ", + "pos": "名詞", + "pn": 0.965815 + }, + { + "surface": "マドンナ", + "readging": "マドンナ", + "pos": "名詞", + "pn": 0.965763 + }, + { + "surface": "善本", + "readging": "ぜんぽん", + "pos": "名詞", + "pn": 0.965742 + }, + { + "surface": "安穏", + "readging": "あんのん", + "pos": "名詞", + "pn": 0.965739 + }, + { + "surface": "石神", + "readging": "いしがみ", + "pos": "名詞", + "pn": 0.965694 + }, + { + "surface": "巻頭", + "readging": "かんとう", + "pos": "名詞", + "pn": 0.965686 + }, + { + "surface": "薫育", + "readging": "くんいく", + "pos": "名詞", + "pn": 0.965647 + }, + { + "surface": "おしら様", + "readging": "おしらさま", + "pos": "名詞", + "pn": 0.965608 + }, + { + "surface": "セールス", + "readging": "セールスポイント", + "pos": "名詞", + "pn": 0.965598 + }, + { + "surface": "一攫千金", + "readging": "いっかくせんきん", + "pos": "名詞", + "pn": 0.965524 + }, + { + "surface": "上帝", + "readging": "じょうてい", + "pos": "名詞", + "pn": 0.965519 + }, + { + "surface": "修正", + "readging": "しゅうせい", + "pos": "名詞", + "pn": 0.965501 + }, + { + "surface": "生ける", + "readging": "いける", + "pos": "動詞", + "pn": 0.965478 + }, + { + "surface": "意欲", + "readging": "いよく", + "pos": "名詞", + "pn": 0.965448 + }, + { + "surface": "粒粒辛苦", + "readging": "りゅうりゅうしんく", + "pos": "名詞", + "pn": 0.965421 + }, + { + "surface": "規則正しい", + "readging": "きそくただしい", + "pos": "形容詞", + "pn": 0.965401 + }, + { + "surface": "嬉戯", + "readging": "きぎ", + "pos": "名詞", + "pn": 0.9654 + }, + { + "surface": "錦鶏", + "readging": "きんけい", + "pos": "名詞", + "pn": 0.965389 + }, + { + "surface": "助命", + "readging": "じょめい", + "pos": "名詞", + "pn": 0.965364 + }, + { + "surface": "併称", + "readging": "へいしょう", + "pos": "名詞", + "pn": 0.96528 + }, + { + "surface": "素朴", + "readging": "そぼく", + "pos": "名詞", + "pn": 0.965261 + }, + { + "surface": "威武", + "readging": "いぶ", + "pos": "名詞", + "pn": 0.965174 + }, + { + "surface": "内助", + "readging": "ないじょ", + "pos": "名詞", + "pn": 0.965171 + }, + { + "surface": "善女", + "readging": "ぜんにょ", + "pos": "名詞", + "pn": 0.965079 + }, + { + "surface": "謳歌", + "readging": "おうか", + "pos": "名詞", + "pn": 0.965063 + }, + { + "surface": "見神", + "readging": "けんしん", + "pos": "名詞", + "pn": 0.964977 + }, + { + "surface": "義勇", + "readging": "ぎゆう", + "pos": "名詞", + "pn": 0.96497 + }, + { + "surface": "敏感", + "readging": "びんかん", + "pos": "名詞", + "pn": 0.964957 + }, + { + "surface": "野趣", + "readging": "やしゅ", + "pos": "名詞", + "pn": 0.964869 + }, + { + "surface": "名利", + "readging": "みょうり", + "pos": "名詞", + "pn": 0.964859 + }, + { + "surface": "義旗", + "readging": "ぎき", + "pos": "名詞", + "pn": 0.964801 + }, + { + "surface": "弥次喜多", + "readging": "やじきた", + "pos": "名詞", + "pn": 0.964726 + }, + { + "surface": "陰徳", + "readging": "いんとく", + "pos": "名詞", + "pn": 0.964713 + }, + { + "surface": "善智識", + "readging": "ぜんちしき", + "pos": "名詞", + "pn": 0.964633 + }, + { + "surface": "勝運", + "readging": "しょううん", + "pos": "名詞", + "pn": 0.964614 + }, + { + "surface": "水郷", + "readging": "すいきょう", + "pos": "名詞", + "pn": 0.964566 + }, + { + "surface": "善意", + "readging": "ぜんい", + "pos": "名詞", + "pn": 0.964512 + }, + { + "surface": "真面目", + "readging": "しんめんぼく", + "pos": "名詞", + "pn": 0.964497 + }, + { + "surface": "逸出", + "readging": "いっしゅつ", + "pos": "名詞", + "pn": 0.96443 + }, + { + "surface": "又とない", + "readging": "またとない", + "pos": "形容詞", + "pn": 0.964403 + }, + { + "surface": "波羅蜜", + "readging": "はらみつ", + "pos": "名詞", + "pn": 0.964396 + }, + { + "surface": "普賢菩薩", + "readging": "ふげんぼさつ", + "pos": "名詞", + "pn": 0.964316 + }, + { + "surface": "神祖", + "readging": "しんそ", + "pos": "名詞", + "pn": 0.964264 + }, + { + "surface": "怪傑", + "readging": "かいけつ", + "pos": "名詞", + "pn": 0.964263 + }, + { + "surface": "業績", + "readging": "ぎょうせき", + "pos": "名詞", + "pn": 0.964198 + }, + { + "surface": "国宝", + "readging": "こくほう", + "pos": "名詞", + "pn": 0.964191 + }, + { + "surface": "根治", + "readging": "こんち", + "pos": "名詞", + "pn": 0.964174 + }, + { + "surface": "良知", + "readging": "りょうち", + "pos": "名詞", + "pn": 0.964163 + }, + { + "surface": "奏効", + "readging": "そうこう", + "pos": "名詞", + "pn": 0.964122 + }, + { + "surface": "鳴り渡る", + "readging": "なりわたる", + "pos": "動詞", + "pn": 0.964051 + }, + { + "surface": "寵", + "readging": "ちょう", + "pos": "名詞", + "pn": 0.963991 + }, + { + "surface": "妙", + "readging": "みょう", + "pos": "名詞", + "pn": 0.96399 + }, + { + "surface": "向上", + "readging": "こうじょう", + "pos": "名詞", + "pn": 0.963925 + }, + { + "surface": "清貧", + "readging": "せいひん", + "pos": "名詞", + "pn": 0.963905 + }, + { + "surface": "止観", + "readging": "しかん", + "pos": "名詞", + "pn": 0.963897 + }, + { + "surface": "花鳥", + "readging": "かちょう", + "pos": "名詞", + "pn": 0.963842 + }, + { + "surface": "祭神", + "readging": "さいじん", + "pos": "名詞", + "pn": 0.963835 + }, + { + "surface": "仲直り", + "readging": "なかなおり", + "pos": "名詞", + "pn": 0.963772 + }, + { + "surface": "奇瑞", + "readging": "きずい", + "pos": "名詞", + "pn": 0.963769 + }, + { + "surface": "豊年", + "readging": "ほうねん", + "pos": "名詞", + "pn": 0.963741 + }, + { + "surface": "適作", + "readging": "てきさく", + "pos": "名詞", + "pn": 0.963739 + }, + { + "surface": "鯛", + "readging": "たい", + "pos": "名詞", + "pn": 0.963735 + }, + { + "surface": "呼び物", + "readging": "よびもの", + "pos": "名詞", + "pn": 0.963727 + }, + { + "surface": "救療", + "readging": "きゅうりょう", + "pos": "名詞", + "pn": 0.963681 + }, + { + "surface": "精妙", + "readging": "せいみょう", + "pos": "名詞", + "pn": 0.963679 + }, + { + "surface": "後光", + "readging": "ごこう", + "pos": "名詞", + "pn": 0.963677 + }, + { + "surface": "千秋万歳", + "readging": "せんしゅうばんぜい", + "pos": "名詞", + "pn": 0.9636 + }, + { + "surface": "一番", + "readging": "いちばん", + "pos": "名詞", + "pn": 0.963556 + }, + { + "surface": "詳しい", + "readging": "くわしい", + "pos": "形容詞", + "pn": 0.963544 + }, + { + "surface": "笑", + "readging": "しょう", + "pos": "名詞", + "pn": 0.96353 + }, + { + "surface": "良種", + "readging": "りょうしゅ", + "pos": "名詞", + "pn": 0.963428 + }, + { + "surface": "オールマイティー", + "readging": "オールマイティー", + "pos": "名詞", + "pn": 0.963402 + }, + { + "surface": "慶弔", + "readging": "けいちょう", + "pos": "名詞", + "pn": 0.963344 + }, + { + "surface": "宝典", + "readging": "ほうてん", + "pos": "名詞", + "pn": 0.963338 + }, + { + "surface": "唐木", + "readging": "からき", + "pos": "名詞", + "pn": 0.963288 + }, + { + "surface": "義", + "readging": "ぎ", + "pos": "名詞", + "pn": 0.963279 + }, + { + "surface": "光輪", + "readging": "こうりん", + "pos": "名詞", + "pn": 0.963268 + }, + { + "surface": "凱歌", + "readging": "がいか", + "pos": "名詞", + "pn": 0.963212 + }, + { + "surface": "威勢", + "readging": "いせい", + "pos": "名詞", + "pn": 0.96319 + }, + { + "surface": "名実", + "readging": "めいじつ", + "pos": "名詞", + "pn": 0.963164 + }, + { + "surface": "先憂後楽", + "readging": "せんゆうこうらく", + "pos": "名詞", + "pn": 0.963138 + }, + { + "surface": "扶助", + "readging": "ふじょ", + "pos": "名詞", + "pn": 0.963113 + }, + { + "surface": "柔和", + "readging": "にゅうわ", + "pos": "名詞", + "pn": 0.963071 + }, + { + "surface": "安臥", + "readging": "あんが", + "pos": "名詞", + "pn": 0.96307 + }, + { + "surface": "終り初物", + "readging": "おわりはつもの", + "pos": "名詞", + "pn": 0.963061 + }, + { + "surface": "大赦", + "readging": "たいしゃ", + "pos": "名詞", + "pn": 0.96299 + }, + { + "surface": "縁起物", + "readging": "えんぎもの", + "pos": "名詞", + "pn": 0.962933 + }, + { + "surface": "弁才天", + "readging": "べんざいてん", + "pos": "名詞", + "pn": 0.962931 + }, + { + "surface": "金玉", + "readging": "きんぎょく", + "pos": "名詞", + "pn": 0.962925 + }, + { + "surface": "精粋", + "readging": "せいすい", + "pos": "名詞", + "pn": 0.962762 + }, + { + "surface": "施行", + "readging": "せぎょう", + "pos": "名詞", + "pn": 0.962753 + }, + { + "surface": "是正", + "readging": "ぜせい", + "pos": "名詞", + "pn": 0.962736 + }, + { + "surface": "威力", + "readging": "いりょく", + "pos": "名詞", + "pn": 0.962609 + }, + { + "surface": "定評", + "readging": "ていひょう", + "pos": "名詞", + "pn": 0.962514 + }, + { + "surface": "穴場", + "readging": "あなば", + "pos": "名詞", + "pn": 0.962468 + }, + { + "surface": "ほくほく", + "readging": "ほくほく", + "pos": "副詞", + "pn": 0.962429 + }, + { + "surface": "寧", + "readging": "ねい", + "pos": "名詞", + "pn": 0.962325 + }, + { + "surface": "助成", + "readging": "じょせい", + "pos": "名詞", + "pn": 0.962304 + }, + { + "surface": "移り香", + "readging": "うつりが", + "pos": "名詞", + "pn": 0.96211 + }, + { + "surface": "施与", + "readging": "せよ", + "pos": "名詞", + "pn": 0.962068 + }, + { + "surface": "安らぐ", + "readging": "やすらぐ", + "pos": "動詞", + "pn": 0.962053 + }, + { + "surface": "たまらない", + "readging": "たまらない", + "pos": "形容詞", + "pn": 0.961995 + }, + { + "surface": "高鳴る", + "readging": "たかなる", + "pos": "動詞", + "pn": 0.961926 + }, + { + "surface": "安眠", + "readging": "あんみん", + "pos": "名詞", + "pn": 0.961824 + }, + { + "surface": "紫檀", + "readging": "したん", + "pos": "名詞", + "pn": 0.961801 + }, + { + "surface": "健か", + "readging": "したたか", + "pos": "副詞", + "pn": 0.961761 + }, + { + "surface": "浄化", + "readging": "じょうか", + "pos": "名詞", + "pn": 0.961646 + }, + { + "surface": "歌仙", + "readging": "かせん", + "pos": "名詞", + "pn": 0.961615 + }, + { + "surface": "最強", + "readging": "さいきょう", + "pos": "名詞", + "pn": 0.96159 + }, + { + "surface": "施薬", + "readging": "せやく", + "pos": "名詞", + "pn": 0.961531 + }, + { + "surface": "喜捨", + "readging": "きしゃ", + "pos": "名詞", + "pn": 0.961486 + }, + { + "surface": "信ずる", + "readging": "しんずる", + "pos": "動詞", + "pn": 0.961449 + }, + { + "surface": "雪月花", + "readging": "せつげつか", + "pos": "名詞", + "pn": 0.961431 + }, + { + "surface": "利する", + "readging": "りする", + "pos": "動詞", + "pn": 0.961383 + }, + { + "surface": "乾杯", + "readging": "かんぱい", + "pos": "名詞", + "pn": 0.961356 + }, + { + "surface": "海神", + "readging": "かいじん", + "pos": "名詞", + "pn": 0.961275 + }, + { + "surface": "啓示", + "readging": "けいじ", + "pos": "名詞", + "pn": 0.96125 + }, + { + "surface": "正論", + "readging": "せいろん", + "pos": "名詞", + "pn": 0.961246 + }, + { + "surface": "見識", + "readging": "けんしき", + "pos": "名詞", + "pn": 0.961241 + }, + { + "surface": "贈官", + "readging": "ぞうかん", + "pos": "名詞", + "pn": 0.961209 + }, + { + "surface": "利剣", + "readging": "りけん", + "pos": "名詞", + "pn": 0.961205 + }, + { + "surface": "精鋭", + "readging": "せいえい", + "pos": "名詞", + "pn": 0.961196 + }, + { + "surface": "完治", + "readging": "かんち", + "pos": "名詞", + "pn": 0.961149 + }, + { + "surface": "最高潮", + "readging": "さいこうちょう", + "pos": "名詞", + "pn": 0.961144 + }, + { + "surface": "団欒", + "readging": "だんらん", + "pos": "名詞", + "pn": 0.961082 + }, + { + "surface": "紫雲", + "readging": "しうん", + "pos": "名詞", + "pn": 0.961052 + }, + { + "surface": "甲斐", + "readging": "かい", + "pos": "名詞", + "pn": 0.961016 + }, + { + "surface": "射竦める", + "readging": "いすくめる", + "pos": "動詞", + "pn": 0.961001 + }, + { + "surface": "折紙付", + "readging": "おりがみ", + "pos": "名詞", + "pn": 0.960785 + }, + { + "surface": "好む", + "readging": "このむ", + "pos": "動詞", + "pn": 0.96078 + }, + { + "surface": "目映い", + "readging": "まばゆい", + "pos": "形容詞", + "pn": 0.960766 + }, + { + "surface": "キャビア", + "readging": "キャビア", + "pos": "名詞", + "pn": 0.960752 + }, + { + "surface": "権化", + "readging": "ごんげ", + "pos": "名詞", + "pn": 0.960699 + }, + { + "surface": "殊", + "readging": "しゅ", + "pos": "名詞", + "pn": 0.960635 + }, + { + "surface": "友達", + "readging": "ともだち", + "pos": "名詞", + "pn": 0.960503 + }, + { + "surface": "諱", + "readging": "いみな", + "pos": "名詞", + "pn": 0.960456 + }, + { + "surface": "桂", + "readging": "けい", + "pos": "名詞", + "pn": 0.960416 + }, + { + "surface": "清浄", + "readging": "せいじょう", + "pos": "名詞", + "pn": 0.96038 + }, + { + "surface": "強兵", + "readging": "きょうへい", + "pos": "名詞", + "pn": 0.960372 + }, + { + "surface": "珍しい", + "readging": "めずらしい", + "pos": "形容詞", + "pn": 0.960258 + }, + { + "surface": "救民", + "readging": "きゅうみん", + "pos": "名詞", + "pn": 0.96025 + }, + { + "surface": "天来", + "readging": "てんらい", + "pos": "名詞", + "pn": 0.960221 + }, + { + "surface": "名産", + "readging": "めいさん", + "pos": "名詞", + "pn": 0.960216 + }, + { + "surface": "蝶鮫", + "readging": "ちょうざめ", + "pos": "名詞", + "pn": 0.960189 + }, + { + "surface": "景品", + "readging": "けいひん", + "pos": "名詞", + "pn": 0.960126 + }, + { + "surface": "耳聡い", + "readging": "みみざとい", + "pos": "形容詞", + "pn": 0.960115 + }, + { + "surface": "安住", + "readging": "あんじゅう", + "pos": "名詞", + "pn": 0.959993 + }, + { + "surface": "カーテン", + "readging": "カーテンコール", + "pos": "名詞", + "pn": 0.959889 + }, + { + "surface": "軍神", + "readging": "ぐんしん", + "pos": "名詞", + "pn": 0.959676 + }, + { + "surface": "知育", + "readging": "ちいく", + "pos": "名詞", + "pn": 0.959668 + }, + { + "surface": "正", + "readging": "せい", + "pos": "名詞", + "pn": 0.959653 + }, + { + "surface": "施物", + "readging": "せもつ", + "pos": "名詞", + "pn": 0.959618 + }, + { + "surface": "今日様", + "readging": "こんにちさま", + "pos": "名詞", + "pn": 0.959491 + }, + { + "surface": "嬉しがらせ", + "readging": "うれしがらせ", + "pos": "名詞", + "pn": 0.959483 + }, + { + "surface": "若手", + "readging": "わかて", + "pos": "名詞", + "pn": 0.959358 + }, + { + "surface": "義戦", + "readging": "ぎせん", + "pos": "名詞", + "pn": 0.959288 + }, + { + "surface": "快癒", + "readging": "かいゆ", + "pos": "名詞", + "pn": 0.959104 + }, + { + "surface": "望外", + "readging": "ぼうがい", + "pos": "名詞", + "pn": 0.959099 + }, + { + "surface": "補正", + "readging": "ほせい", + "pos": "名詞", + "pn": 0.958928 + }, + { + "surface": "しゃんしゃん", + "readging": "しゃんしゃん", + "pos": "副詞", + "pn": 0.958888 + }, + { + "surface": "王", + "readging": "おう", + "pos": "名詞", + "pn": 0.958885 + }, + { + "surface": "速", + "readging": "そく", + "pos": "名詞", + "pn": 0.958873 + }, + { + "surface": "大往生", + "readging": "だいおうじょう", + "pos": "名詞", + "pn": 0.958708 + }, + { + "surface": "健脚", + "readging": "けんきゃく", + "pos": "名詞", + "pn": 0.958653 + }, + { + "surface": "高配", + "readging": "こうはい", + "pos": "名詞", + "pn": 0.958585 + }, + { + "surface": "太り肉", + "readging": "ふとりじし", + "pos": "名詞", + "pn": 0.958486 + }, + { + "surface": "立直る", + "readging": "たちなおる", + "pos": "動詞", + "pn": 0.958485 + }, + { + "surface": "矯風", + "readging": "きょうふう", + "pos": "名詞", + "pn": 0.958466 + }, + { + "surface": "投げキッス", + "readging": "なげキッス", + "pos": "名詞", + "pn": 0.958431 + }, + { + "surface": "救国", + "readging": "きゅうこく", + "pos": "名詞", + "pn": 0.958365 + }, + { + "surface": "いちまい看板", + "readging": "いちまいかんばん", + "pos": "名詞", + "pn": 0.958359 + }, + { + "surface": "給与", + "readging": "きゅうよ", + "pos": "名詞", + "pn": 0.958327 + }, + { + "surface": "狂喜", + "readging": "きょうき", + "pos": "名詞", + "pn": 0.95828 + }, + { + "surface": "自助", + "readging": "じじょ", + "pos": "名詞", + "pn": 0.958155 + }, + { + "surface": "鋭鋒", + "readging": "えいほう", + "pos": "名詞", + "pn": 0.958006 + }, + { + "surface": "難攻不落", + "readging": "なんこうふらく", + "pos": "名詞", + "pn": 0.957997 + }, + { + "surface": "施米", + "readging": "せまい", + "pos": "名詞", + "pn": 0.957781 + }, + { + "surface": "如菩薩", + "readging": "にょぼさつ", + "pos": "名詞", + "pn": 0.957742 + }, + { + "surface": "功臣", + "readging": "こうしん", + "pos": "名詞", + "pn": 0.957732 + }, + { + "surface": "風雲", + "readging": "ふううん", + "pos": "名詞", + "pn": 0.957584 + }, + { + "surface": "恵比須", + "readging": "えびす", + "pos": "名詞", + "pn": 0.957539 + }, + { + "surface": "精兵", + "readging": "せいへい", + "pos": "名詞", + "pn": 0.957436 + }, + { + "surface": "長", + "readging": "おさ", + "pos": "名詞", + "pn": 0.957323 + }, + { + "surface": "薫ずる", + "readging": "くんずる", + "pos": "動詞", + "pn": 0.957265 + }, + { + "surface": "侠気", + "readging": "きょうき", + "pos": "名詞", + "pn": 0.957123 + }, + { + "surface": "五風十雨", + "readging": "ごふうじゅうう", + "pos": "名詞", + "pn": 0.957098 + }, + { + "surface": "役得", + "readging": "やくとく", + "pos": "名詞", + "pn": 0.957029 + }, + { + "surface": "国柄", + "readging": "くにがら", + "pos": "名詞", + "pn": 0.957011 + }, + { + "surface": "潮合", + "readging": "しおあい", + "pos": "名詞", + "pn": 0.956909 + }, + { + "surface": "凄い", + "readging": "すごい", + "pos": "形容詞", + "pn": 0.956891 + }, + { + "surface": "上座", + "readging": "かみざ", + "pos": "名詞", + "pn": 0.956852 + }, + { + "surface": "腕っ節", + "readging": "うでっぷし", + "pos": "名詞", + "pn": 0.956738 + }, + { + "surface": "美称", + "readging": "びしょう", + "pos": "名詞", + "pn": 0.956551 + }, + { + "surface": "切除", + "readging": "せつじょ", + "pos": "名詞", + "pn": 0.956439 + }, + { + "surface": "腹一杯", + "readging": "はらいっぱい", + "pos": "副詞", + "pn": 0.956293 + }, + { + "surface": "仙台平", + "readging": "せんだいひら", + "pos": "名詞", + "pn": 0.956257 + }, + { + "surface": "スピリット", + "readging": "スピリット", + "pos": "名詞", + "pn": 0.956205 + }, + { + "surface": "糞力", + "readging": "くそぢから", + "pos": "名詞", + "pn": 0.95617 + }, + { + "surface": "照り", + "readging": "てり", + "pos": "名詞", + "pn": 0.956117 + }, + { + "surface": "風の子", + "readging": "かぜのこ", + "pos": "名詞", + "pn": 0.956111 + }, + { + "surface": "ロング", + "readging": "ロングセラー", + "pos": "名詞", + "pn": 0.95609 + }, + { + "surface": "持直す", + "readging": "もちなおす", + "pos": "動詞", + "pn": 0.956083 + }, + { + "surface": "家門", + "readging": "かもん", + "pos": "名詞", + "pn": 0.956039 + }, + { + "surface": "琴瑟", + "readging": "きんしつ", + "pos": "名詞", + "pn": 0.956038 + }, + { + "surface": "誇る", + "readging": "ほこる", + "pos": "動詞", + "pn": 0.955983 + }, + { + "surface": "安堵", + "readging": "あんど", + "pos": "名詞", + "pn": 0.955873 + }, + { + "surface": "奥義", + "readging": "おうぎ", + "pos": "名詞", + "pn": 0.955715 + }, + { + "surface": "山河襟帯", + "readging": "さんかきんたい", + "pos": "名詞", + "pn": 0.955661 + }, + { + "surface": "主導権", + "readging": "しゅどうけん", + "pos": "名詞", + "pn": 0.955526 + }, + { + "surface": "白毫", + "readging": "びゃくごう", + "pos": "名詞", + "pn": 0.955449 + }, + { + "surface": "明るい", + "readging": "あかるい", + "pos": "形容詞", + "pn": 0.955372 + }, + { + "surface": "増強", + "readging": "ぞうきょう", + "pos": "名詞", + "pn": 0.955371 + }, + { + "surface": "切れ味", + "readging": "きれあじ", + "pos": "名詞", + "pn": 0.955353 + }, + { + "surface": "臣節", + "readging": "しんせつ", + "pos": "名詞", + "pn": 0.955294 + }, + { + "surface": "女殺し", + "readging": "おんなごろし", + "pos": "名詞", + "pn": 0.95526 + }, + { + "surface": "老獪", + "readging": "ろうかい", + "pos": "名詞", + "pn": 0.955238 + }, + { + "surface": "順縁", + "readging": "じゅんえん", + "pos": "名詞", + "pn": 0.955211 + }, + { + "surface": "誇らしい", + "readging": "ほこらしい", + "pos": "形容詞", + "pn": 0.955201 + }, + { + "surface": "上人", + "readging": "しょうにん", + "pos": "名詞", + "pn": 0.955174 + }, + { + "surface": "正気", + "readging": "せいき", + "pos": "名詞", + "pn": 0.955129 + }, + { + "surface": "女史", + "readging": "じょし", + "pos": "名詞", + "pn": 0.95512 + }, + { + "surface": "ムーディー", + "readging": "ムーディー", + "pos": "名詞", + "pn": 0.955101 + }, + { + "surface": "用心深い", + "readging": "ようじんぶかい", + "pos": "形容詞", + "pn": 0.955037 + }, + { + "surface": "匡正", + "readging": "きょうせい", + "pos": "名詞", + "pn": 0.955003 + }, + { + "surface": "待遠しい", + "readging": "まちどおしい", + "pos": "形容詞", + "pn": 0.954914 + }, + { + "surface": "勲", + "readging": "いさお", + "pos": "名詞", + "pn": 0.954885 + }, + { + "surface": "氏神", + "readging": "うじがみ", + "pos": "名詞", + "pn": 0.954824 + }, + { + "surface": "銀世界", + "readging": "ぎんせかい", + "pos": "名詞", + "pn": 0.954812 + }, + { + "surface": "改善", + "readging": "かいぜん", + "pos": "名詞", + "pn": 0.954802 + }, + { + "surface": "ななめ", + "readging": "ななめならず", + "pos": "名詞", + "pn": 0.95477 + }, + { + "surface": "さらりと", + "readging": "さらりと", + "pos": "副詞", + "pn": 0.954746 + }, + { + "surface": "感状", + "readging": "かんじょう", + "pos": "名詞", + "pn": 0.954728 + }, + { + "surface": "ブレーン", + "readging": "ブレーン", + "pos": "名詞", + "pn": 0.954728 + }, + { + "surface": "特効薬", + "readging": "とっこうやく", + "pos": "名詞", + "pn": 0.954692 + }, + { + "surface": "隠逸", + "readging": "いんいつ", + "pos": "名詞", + "pn": 0.954581 + }, + { + "surface": "帰順", + "readging": "きじゅん", + "pos": "名詞", + "pn": 0.954551 + }, + { + "surface": "試金石", + "readging": "しきんせき", + "pos": "名詞", + "pn": 0.954523 + }, + { + "surface": "団結", + "readging": "だんけつ", + "pos": "名詞", + "pn": 0.954516 + }, + { + "surface": "上流", + "readging": "じょうりゅう", + "pos": "名詞", + "pn": 0.954428 + }, + { + "surface": "弁巧", + "readging": "べんこう", + "pos": "名詞", + "pn": 0.9544 + }, + { + "surface": "強弩", + "readging": "きょうど", + "pos": "名詞", + "pn": 0.954339 + }, + { + "surface": "神文鉄火", + "readging": "しんもんてっか", + "pos": "名詞", + "pn": 0.954113 + }, + { + "surface": "自愛", + "readging": "じあい", + "pos": "名詞", + "pn": 0.954099 + }, + { + "surface": "療治", + "readging": "りょうじ", + "pos": "名詞", + "pn": 0.953962 + }, + { + "surface": "象牙", + "readging": "ぞうげ", + "pos": "名詞", + "pn": 0.953763 + }, + { + "surface": "立て直す", + "readging": "たてなおす", + "pos": "動詞", + "pn": 0.953741 + }, + { + "surface": "権威", + "readging": "けんい", + "pos": "名詞", + "pn": 0.953597 + }, + { + "surface": "公憤", + "readging": "こうふん", + "pos": "名詞", + "pn": 0.953543 + }, + { + "surface": "天声", + "readging": "てんせい", + "pos": "名詞", + "pn": 0.953399 + }, + { + "surface": "抜擢", + "readging": "ばってき", + "pos": "名詞", + "pn": 0.953369 + }, + { + "surface": "匠", + "readging": "しょう", + "pos": "名詞", + "pn": 0.953358 + }, + { + "surface": "臥竜", + "readging": "がりょう", + "pos": "名詞", + "pn": 0.953303 + }, + { + "surface": "強弓", + "readging": "ごうきゅう", + "pos": "名詞", + "pn": 0.953235 + }, + { + "surface": "出来す", + "readging": "でかす", + "pos": "動詞", + "pn": 0.953121 + }, + { + "surface": "自重", + "readging": "じちょう", + "pos": "名詞", + "pn": 0.953102 + }, + { + "surface": "奇遇", + "readging": "きぐう", + "pos": "名詞", + "pn": 0.9531 + }, + { + "surface": "上向き", + "readging": "うわむき", + "pos": "名詞", + "pn": 0.953082 + }, + { + "surface": "地道", + "readging": "じみち", + "pos": "名詞", + "pn": 0.952988 + }, + { + "surface": "蛮骨", + "readging": "ばんこつ", + "pos": "名詞", + "pn": 0.952906 + }, + { + "surface": "共栄", + "readging": "きょうえい", + "pos": "名詞", + "pn": 0.95287 + }, + { + "surface": "こく", + "readging": "こく", + "pos": "動詞", + "pn": 0.95271 + }, + { + "surface": "逸", + "readging": "いつ", + "pos": "名詞", + "pn": 0.952709 + }, + { + "surface": "命冥加", + "readging": "いのちみょうが", + "pos": "名詞", + "pn": 0.952512 + }, + { + "surface": "安い", + "readging": "やすい", + "pos": "形容詞", + "pn": 0.952483 + }, + { + "surface": "キラー", + "readging": "キラー", + "pos": "名詞", + "pn": 0.952458 + }, + { + "surface": "易", + "readging": "い", + "pos": "名詞", + "pn": 0.952261 + }, + { + "surface": "長ける", + "readging": "たける", + "pos": "動詞", + "pn": 0.952194 + }, + { + "surface": "助言", + "readging": "じょげん", + "pos": "名詞", + "pn": 0.952095 + }, + { + "surface": "若", + "readging": "じゃく", + "pos": "名詞", + "pn": 0.95184 + }, + { + "surface": "いとしい", + "readging": "いとしい", + "pos": "形容詞", + "pn": 0.951719 + }, + { + "surface": "純情", + "readging": "じゅんじょう", + "pos": "名詞", + "pn": 0.951689 + }, + { + "surface": "キューピッド", + "readging": "キューピッド", + "pos": "名詞", + "pn": 0.951537 + }, + { + "surface": "食える", + "readging": "くえる", + "pos": "動詞", + "pn": 0.951467 + }, + { + "surface": "ぴったり", + "readging": "ぴったり", + "pos": "副詞", + "pn": 0.951451 + }, + { + "surface": "旬", + "readging": "しゅん", + "pos": "名詞", + "pn": 0.95139 + }, + { + "surface": "決する", + "readging": "けっする", + "pos": "動詞", + "pn": 0.951293 + }, + { + "surface": "おかしい", + "readging": "おかしい", + "pos": "形容詞", + "pn": 0.951264 + }, + { + "surface": "義民", + "readging": "ぎみん", + "pos": "名詞", + "pn": 0.95126 + }, + { + "surface": "風の神", + "readging": "かぜのかみ", + "pos": "名詞", + "pn": 0.951165 + }, + { + "surface": "孔雀", + "readging": "くじゃく", + "pos": "名詞", + "pn": 0.950947 + }, + { + "surface": "毅", + "readging": "き", + "pos": "名詞", + "pn": 0.950742 + }, + { + "surface": "人徳", + "readging": "じんとく", + "pos": "名詞", + "pn": 0.950641 + }, + { + "surface": "豪", + "readging": "ごう", + "pos": "名詞", + "pn": 0.950507 + }, + { + "surface": "瞭然", + "readging": "りょうぜん", + "pos": "名詞", + "pn": 0.950451 + }, + { + "surface": "手直し", + "readging": "てなおし", + "pos": "名詞", + "pn": 0.950174 + }, + { + "surface": "勧戒", + "readging": "かんかい", + "pos": "名詞", + "pn": 0.950157 + }, + { + "surface": "秘曲", + "readging": "ひきょく", + "pos": "名詞", + "pn": 0.950057 + }, + { + "surface": "千両", + "readging": "せんりょう", + "pos": "名詞", + "pn": 0.950041 + }, + { + "surface": "済度", + "readging": "さいど", + "pos": "名詞", + "pn": 0.949832 + }, + { + "surface": "蛟竜", + "readging": "こうりょう", + "pos": "名詞", + "pn": 0.949539 + }, + { + "surface": "寛解", + "readging": "かんかい", + "pos": "名詞", + "pn": 0.949526 + }, + { + "surface": "慎ましい", + "readging": "つつましい", + "pos": "形容詞", + "pn": 0.949422 + }, + { + "surface": "一念発起", + "readging": "いちねんほっき", + "pos": "名詞", + "pn": 0.949374 + }, + { + "surface": "鵜の目鷹の目", + "readging": "うのめたかのめ", + "pos": "名詞", + "pn": 0.949193 + }, + { + "surface": "施療", + "readging": "せりょう", + "pos": "名詞", + "pn": 0.949165 + }, + { + "surface": "工夫", + "readging": "くふう", + "pos": "名詞", + "pn": 0.949049 + }, + { + "surface": "一人物", + "readging": "いちじんぶつ", + "pos": "名詞", + "pn": 0.949002 + }, + { + "surface": "床離れ", + "readging": "とこばなれ", + "pos": "名詞", + "pn": 0.948931 + }, + { + "surface": "恩給", + "readging": "おんきゅう", + "pos": "名詞", + "pn": 0.948539 + }, + { + "surface": "一番槍", + "readging": "いちばんやり", + "pos": "名詞", + "pn": 0.948352 + }, + { + "surface": "決然", + "readging": "けつぜん", + "pos": "副詞", + "pn": 0.94835 + }, + { + "surface": "絹緞", + "readging": "けんどん", + "pos": "名詞", + "pn": 0.948258 + }, + { + "surface": "願力", + "readging": "がんりき", + "pos": "名詞", + "pn": 0.948221 + }, + { + "surface": "大通", + "readging": "だいつう", + "pos": "名詞", + "pn": 0.948054 + }, + { + "surface": "ぴんしゃん", + "readging": "ぴんしゃん", + "pos": "副詞", + "pn": 0.948008 + }, + { + "surface": "強権", + "readging": "きょうけん", + "pos": "名詞", + "pn": 0.947743 + }, + { + "surface": "人懐っこい", + "readging": "ひとなつっこい", + "pos": "形容詞", + "pn": 0.947457 + }, + { + "surface": "掉尾", + "readging": "とうび", + "pos": "名詞", + "pn": 0.947283 + }, + { + "surface": "確信", + "readging": "かくしん", + "pos": "名詞", + "pn": 0.947194 + }, + { + "surface": "寿老人", + "readging": "じゅろうじん", + "pos": "名詞", + "pn": 0.947006 + }, + { + "surface": "ほやほや", + "readging": "ほやほや", + "pos": "名詞", + "pn": 0.946594 + }, + { + "surface": "蓑亀", + "readging": "みのがめ", + "pos": "名詞", + "pn": 0.946545 + }, + { + "surface": "介助", + "readging": "かいじょ", + "pos": "名詞", + "pn": 0.946282 + }, + { + "surface": "才色", + "readging": "さいしょく", + "pos": "名詞", + "pn": 0.946165 + }, + { + "surface": "誘掖", + "readging": "ゆうえき", + "pos": "名詞", + "pn": 0.945765 + }, + { + "surface": "床上げ", + "readging": "とこあげ", + "pos": "名詞", + "pn": 0.945605 + }, + { + "surface": "慧", + "readging": "けい", + "pos": "名詞", + "pn": 0.945485 + }, + { + "surface": "切れ者", + "readging": "きれもの", + "pos": "名詞", + "pn": 0.945397 + }, + { + "surface": "生れる", + "readging": "うまれる", + "pos": "動詞", + "pn": 0.945235 + }, + { + "surface": "強壮", + "readging": "きょうそう", + "pos": "名詞", + "pn": 0.94512 + }, + { + "surface": "適薬", + "readging": "てきやく", + "pos": "名詞", + "pn": 0.944839 + }, + { + "surface": "沙", + "readging": "さ", + "pos": "名詞", + "pn": 0.944821 + }, + { + "surface": "耳新しい", + "readging": "みみあたらしい", + "pos": "形容詞", + "pn": 0.944178 + }, + { + "surface": "勧善懲悪", + "readging": "かんぜんちょうあく", + "pos": "名詞", + "pn": 0.944065 + }, + { + "surface": "福寿草", + "readging": "ふくじゅそう", + "pos": "名詞", + "pn": 0.944036 + }, + { + "surface": "格物致知", + "readging": "かくぶつちち", + "pos": "名詞", + "pn": 0.943835 + }, + { + "surface": "主人公", + "readging": "しゅじんこう", + "pos": "名詞", + "pn": 0.943833 + }, + { + "surface": "勢至菩薩", + "readging": "せいしぼさつ", + "pos": "名詞", + "pn": 0.94376 + }, + { + "surface": "平定", + "readging": "へいてい", + "pos": "名詞", + "pn": 0.943655 + }, + { + "surface": "門閥", + "readging": "もんばつ", + "pos": "名詞", + "pn": 0.94361 + }, + { + "surface": "若い", + "readging": "わかい", + "pos": "形容詞", + "pn": 0.943407 + }, + { + "surface": "治", + "readging": "ち", + "pos": "名詞", + "pn": 0.943343 + }, + { + "surface": "精製", + "readging": "せいせい", + "pos": "名詞", + "pn": 0.943265 + }, + { + "surface": "きっちり", + "readging": "きっちり", + "pos": "副詞", + "pn": 0.943204 + }, + { + "surface": "仲間入り", + "readging": "なかまいり", + "pos": "名詞", + "pn": 0.943138 + }, + { + "surface": "有徳", + "readging": "うとく", + "pos": "名詞", + "pn": 0.943059 + }, + { + "surface": "頭脳", + "readging": "ずのう", + "pos": "名詞", + "pn": 0.942982 + }, + { + "surface": "安息", + "readging": "あんそく", + "pos": "名詞", + "pn": 0.942948 + }, + { + "surface": "片腕", + "readging": "かたうで", + "pos": "名詞", + "pn": 0.942749 + }, + { + "surface": "極楽往生", + "readging": "ごくらくおうじょう", + "pos": "名詞", + "pn": 0.942505 + }, + { + "surface": "祭", + "readging": "さい", + "pos": "名詞", + "pn": 0.942495 + }, + { + "surface": "駆除", + "readging": "くじょ", + "pos": "名詞", + "pn": 0.942127 + }, + { + "surface": "仲合", + "readging": "なからい", + "pos": "名詞", + "pn": 0.941947 + }, + { + "surface": "武", + "readging": "ぶ", + "pos": "名詞", + "pn": 0.941909 + }, + { + "surface": "大団円", + "readging": "だいだんえん", + "pos": "名詞", + "pn": 0.941666 + }, + { + "surface": "助", + "readging": "じょ", + "pos": "名詞", + "pn": 0.941598 + }, + { + "surface": "大業", + "readging": "たいぎょう", + "pos": "名詞", + "pn": 0.941427 + }, + { + "surface": "梅", + "readging": "うめ", + "pos": "名詞", + "pn": 0.941373 + }, + { + "surface": "恍惚", + "readging": "こうこつ", + "pos": "名詞", + "pn": 0.94131 + }, + { + "surface": "嘆ずる", + "readging": "たんずる", + "pos": "動詞", + "pn": 0.941211 + }, + { + "surface": "補強", + "readging": "ほきょう", + "pos": "名詞", + "pn": 0.941182 + }, + { + "surface": "恭", + "readging": "きょう", + "pos": "名詞", + "pn": 0.940995 + }, + { + "surface": "合歓", + "readging": "ごうかん", + "pos": "名詞", + "pn": 0.94066 + }, + { + "surface": "自慢", + "readging": "じまん", + "pos": "名詞", + "pn": 0.940657 + }, + { + "surface": "亀", + "readging": "かめ", + "pos": "名詞", + "pn": 0.940588 + }, + { + "surface": "旨", + "readging": "し", + "pos": "名詞", + "pn": 0.940336 + }, + { + "surface": "御寮人", + "readging": "ごりょうにん", + "pos": "名詞", + "pn": 0.940099 + }, + { + "surface": "インパクト", + "readging": "インパクト", + "pos": "名詞", + "pn": 0.940077 + }, + { + "surface": "決断", + "readging": "けつだん", + "pos": "名詞", + "pn": 0.939985 + }, + { + "surface": "釈然", + "readging": "しゃくぜん", + "pos": "名詞", + "pn": 0.939893 + }, + { + "surface": "早い", + "readging": "はやい", + "pos": "形容詞", + "pn": 0.939701 + }, + { + "surface": "再起", + "readging": "さいき", + "pos": "名詞", + "pn": 0.939406 + }, + { + "surface": "適所", + "readging": "てきしょ", + "pos": "名詞", + "pn": 0.93917 + }, + { + "surface": "威徳", + "readging": "いとく", + "pos": "名詞", + "pn": 0.938928 + }, + { + "surface": "糾明", + "readging": "きゅうめい", + "pos": "名詞", + "pn": 0.938866 + }, + { + "surface": "破邪", + "readging": "はじゃ", + "pos": "名詞", + "pn": 0.938818 + }, + { + "surface": "正念", + "readging": "しょうねん", + "pos": "名詞", + "pn": 0.938787 + }, + { + "surface": "竹", + "readging": "たけ", + "pos": "名詞", + "pn": 0.938601 + }, + { + "surface": "喝破", + "readging": "かっぱ", + "pos": "名詞", + "pn": 0.938354 + }, + { + "surface": "射止める", + "readging": "いとめる", + "pos": "動詞", + "pn": 0.938281 + }, + { + "surface": "進化", + "readging": "しんか", + "pos": "名詞", + "pn": 0.93825 + }, + { + "surface": "効果", + "readging": "こうか", + "pos": "名詞", + "pn": 0.938205 + }, + { + "surface": "気力", + "readging": "きりょく", + "pos": "名詞", + "pn": 0.937989 + }, + { + "surface": "甘い", + "readging": "うまい", + "pos": "形容詞", + "pn": 0.937962 + }, + { + "surface": "祝砲", + "readging": "しゅくほう", + "pos": "名詞", + "pn": 0.937956 + }, + { + "surface": "匠気", + "readging": "しょうき", + "pos": "名詞", + "pn": 0.937869 + }, + { + "surface": "信憑", + "readging": "しんぴょう", + "pos": "名詞", + "pn": 0.937851 + }, + { + "surface": "閑雲野鶴", + "readging": "かんうんやかく", + "pos": "名詞", + "pn": 0.93783 + }, + { + "surface": "偉い", + "readging": "えらい", + "pos": "形容詞", + "pn": 0.937503 + }, + { + "surface": "破格", + "readging": "はかく", + "pos": "名詞", + "pn": 0.937475 + }, + { + "surface": "簡素", + "readging": "かんそ", + "pos": "名詞", + "pn": 0.937263 + }, + { + "surface": "棚ぼた", + "readging": "たなぼた", + "pos": "名詞", + "pn": 0.936957 + }, + { + "surface": "育てる", + "readging": "そだてる", + "pos": "動詞", + "pn": 0.936944 + }, + { + "surface": "なまめかしい", + "readging": "なまめかしい", + "pos": "形容詞", + "pn": 0.936865 + }, + { + "surface": "才略", + "readging": "さいりゃく", + "pos": "名詞", + "pn": 0.936831 + }, + { + "surface": "書信", + "readging": "しょしん", + "pos": "名詞", + "pn": 0.936245 + }, + { + "surface": "利", + "readging": "り", + "pos": "名詞", + "pn": 0.935754 + }, + { + "surface": "改良", + "readging": "かいりょう", + "pos": "名詞", + "pn": 0.935751 + }, + { + "surface": "怪力", + "readging": "かいりき", + "pos": "名詞", + "pn": 0.935613 + }, + { + "surface": "愛着", + "readging": "あいじゃく", + "pos": "名詞", + "pn": 0.935448 + }, + { + "surface": "善哉", + "readging": "ぜんざい", + "pos": "名詞", + "pn": 0.935199 + }, + { + "surface": "父", + "readging": "ちち", + "pos": "名詞", + "pn": 0.935185 + }, + { + "surface": "手強い", + "readging": "てごわい", + "pos": "形容詞", + "pn": 0.934157 + }, + { + "surface": "愛想", + "readging": "あいそう", + "pos": "名詞", + "pn": 0.933688 + }, + { + "surface": "温い", + "readging": "ぬくい", + "pos": "形容詞", + "pn": 0.933523 + }, + { + "surface": "持堪える", + "readging": "もちこたえる", + "pos": "動詞", + "pn": 0.933432 + }, + { + "surface": "眼光", + "readging": "がんこう", + "pos": "名詞", + "pn": 0.933276 + }, + { + "surface": "安全地帯", + "readging": "あんぜんちたい", + "pos": "名詞", + "pn": 0.932725 + }, + { + "surface": "切抜ける", + "readging": "きりぬける", + "pos": "動詞", + "pn": 0.932566 + }, + { + "surface": "金科玉条", + "readging": "きんかぎょくじょう", + "pos": "名詞", + "pn": 0.932223 + }, + { + "surface": "好き", + "readging": "すき", + "pos": "名詞", + "pn": 0.93204 + }, + { + "surface": "巨歩", + "readging": "きょほ", + "pos": "名詞", + "pn": 0.931572 + }, + { + "surface": "互恵", + "readging": "ごけい", + "pos": "名詞", + "pn": 0.931356 + }, + { + "surface": "熱戦", + "readging": "ねっせん", + "pos": "名詞", + "pn": 0.931139 + }, + { + "surface": "三枝の礼", + "readging": "さんしのれい", + "pos": "名詞", + "pn": 0.929017 + }, + { + "surface": "優曇華", + "readging": "うどんげ", + "pos": "名詞", + "pn": 0.928823 + }, + { + "surface": "めかしこむ", + "readging": "めかしこむ", + "pos": "動詞", + "pn": 0.928349 + }, + { + "surface": "溢れる", + "readging": "あふれる", + "pos": "動詞", + "pn": 0.928266 + }, + { + "surface": "生きる", + "readging": "いきる", + "pos": "動詞", + "pn": 0.928091 + }, + { + "surface": "生一本", + "readging": "きいっぽん", + "pos": "名詞", + "pn": 0.927116 + }, + { + "surface": "嘆", + "readging": "たん", + "pos": "名詞", + "pn": 0.926411 + }, + { + "surface": "圧倒", + "readging": "あっとう", + "pos": "名詞", + "pn": 0.926149 + }, + { + "surface": "にんげん", + "readging": "にんげんらしい", + "pos": "形容詞", + "pn": 0.92527 + }, + { + "surface": "結婚", + "readging": "けっこん", + "pos": "名詞", + "pn": 0.924874 + }, + { + "surface": "画才", + "readging": "がさい", + "pos": "名詞", + "pn": 0.92485 + }, + { + "surface": "豊艶", + "readging": "ほうえん", + "pos": "名詞", + "pn": 0.924504 + }, + { + "surface": "即答", + "readging": "そくとう", + "pos": "名詞", + "pn": 0.923692 + }, + { + "surface": "出離", + "readging": "しゅつり", + "pos": "名詞", + "pn": 0.923367 + }, + { + "surface": "剛", + "readging": "ごう", + "pos": "名詞", + "pn": 0.923199 + }, + { + "surface": "女神", + "readging": "じょしん", + "pos": "名詞", + "pn": 0.922374 + }, + { + "surface": "よく", + "readging": "よく", + "pos": "副詞", + "pn": 0.921866 + }, + { + "surface": "爾汝", + "readging": "じじょ", + "pos": "名詞", + "pn": 0.921688 + }, + { + "surface": "怪童", + "readging": "かいどう", + "pos": "名詞", + "pn": 0.921036 + }, + { + "surface": "エネルギー", + "readging": "エネルギー", + "pos": "名詞", + "pn": 0.920921 + }, + { + "surface": "水際立つ", + "readging": "みずぎわ", + "pos": "動詞", + "pn": 0.920111 + }, + { + "surface": "抜本塞源", + "readging": "ばっぽんそくげん", + "pos": "名詞", + "pn": 0.92006 + }, + { + "surface": "治癒", + "readging": "ちゆ", + "pos": "名詞", + "pn": 0.919621 + }, + { + "surface": "松", + "readging": "まつ", + "pos": "名詞", + "pn": 0.919538 + }, + { + "surface": "冠", + "readging": "かん", + "pos": "名詞", + "pn": 0.91938 + }, + { + "surface": "瞑目", + "readging": "めいもく", + "pos": "名詞", + "pn": 0.918541 + }, + { + "surface": "機会", + "readging": "きかい", + "pos": "名詞", + "pn": 0.918406 + }, + { + "surface": "篤行", + "readging": "とっこう", + "pos": "名詞", + "pn": 0.918258 + }, + { + "surface": "陽報", + "readging": "ようほう", + "pos": "名詞", + "pn": 0.917643 + }, + { + "surface": "魔", + "readging": "ま", + "pos": "名詞", + "pn": 0.916001 + }, + { + "surface": "根性", + "readging": "こんじょう", + "pos": "名詞", + "pn": 0.915699 + }, + { + "surface": "唯唯", + "readging": "いい", + "pos": "副詞", + "pn": 0.915477 + }, + { + "surface": "ふんべつ", + "readging": "ふんべつらしい", + "pos": "形容詞", + "pn": 0.913717 + }, + { + "surface": "酔痴れる", + "readging": "よいしれる", + "pos": "動詞", + "pn": 0.912292 + }, + { + "surface": "玉", + "readging": "ぎょく", + "pos": "名詞", + "pn": 0.911748 + }, + { + "surface": "トップ", + "readging": "トップ", + "pos": "名詞", + "pn": 0.911679 + }, + { + "surface": "洒落", + "readging": "しゃれ", + "pos": "名詞", + "pn": 0.911186 + }, + { + "surface": "萌芽", + "readging": "ほうが", + "pos": "名詞", + "pn": 0.911107 + }, + { + "surface": "鍾馗", + "readging": "しょうき", + "pos": "名詞", + "pn": 0.910363 + }, + { + "surface": "活", + "readging": "かつ", + "pos": "名詞", + "pn": 0.909907 + }, + { + "surface": "緩和", + "readging": "かんわ", + "pos": "名詞", + "pn": 0.909405 + }, + { + "surface": "意気地", + "readging": "いくじ", + "pos": "名詞", + "pn": 0.907804 + }, + { + "surface": "接心", + "readging": "せっしん", + "pos": "名詞", + "pn": 0.907659 + }, + { + "surface": "解決", + "readging": "かいけつ", + "pos": "名詞", + "pn": 0.906876 + }, + { + "surface": "救荒作物", + "readging": "きゅうこうさくもつ", + "pos": "名詞", + "pn": 0.906642 + }, + { + "surface": "やっつける", + "readging": "やっつける", + "pos": "動詞", + "pn": 0.906513 + }, + { + "surface": "ごて得", + "readging": "ごてどく", + "pos": "名詞", + "pn": 0.906025 + }, + { + "surface": "重鎮", + "readging": "じゅうちん", + "pos": "名詞", + "pn": 0.904264 + }, + { + "surface": "魁", + "readging": "かい", + "pos": "名詞", + "pn": 0.904135 + }, + { + "surface": "見聞", + "readging": "けんもん", + "pos": "名詞", + "pn": 0.900226 + }, + { + "surface": "栄養", + "readging": "えいよう", + "pos": "名詞", + "pn": 0.900125 + }, + { + "surface": "昇任", + "readging": "しょうにん", + "pos": "名詞", + "pn": 0.89925 + }, + { + "surface": "平気", + "readging": "へいき", + "pos": "名詞", + "pn": 0.899155 + }, + { + "surface": "麗麗しい", + "readging": "れいれいしい", + "pos": "形容詞", + "pn": 0.89726 + }, + { + "surface": "価値", + "readging": "かち", + "pos": "名詞", + "pn": 0.89711 + }, + { + "surface": "絆", + "readging": "きずな", + "pos": "名詞", + "pn": 0.896496 + }, + { + "surface": "鎮撫", + "readging": "ちんぶ", + "pos": "名詞", + "pn": 0.894242 + }, + { + "surface": "至言", + "readging": "しげん", + "pos": "名詞", + "pn": 0.889584 + }, + { + "surface": "景気", + "readging": "けいき", + "pos": "名詞", + "pn": 0.88891 + }, + { + "surface": "強", + "readging": "きょう", + "pos": "名詞", + "pn": 0.888791 + }, + { + "surface": "新しい", + "readging": "あたらしい", + "pos": "形容詞", + "pn": 0.887564 + }, + { + "surface": "縁", + "readging": "えん", + "pos": "名詞", + "pn": 0.887527 + }, + { + "surface": "推重", + "readging": "すいちょう", + "pos": "名詞", + "pn": 0.885913 + }, + { + "surface": "廓清", + "readging": "かくせい", + "pos": "名詞", + "pn": 0.883064 + }, + { + "surface": "討取る", + "readging": "うちとる", + "pos": "動詞", + "pn": 0.880849 + }, + { + "surface": "発達", + "readging": "はったつ", + "pos": "名詞", + "pn": 0.877737 + }, + { + "surface": "うい", + "readging": "うい", + "pos": "形容詞", + "pn": 0.877114 + }, + { + "surface": "偕老同穴", + "readging": "かいろうどうけつ", + "pos": "名詞", + "pn": 0.876734 + }, + { + "surface": "浮かれ出す", + "readging": "うかれだす", + "pos": "動詞", + "pn": 0.875685 + }, + { + "surface": "いじらしい", + "readging": "いじらしい", + "pos": "形容詞", + "pn": 0.873598 + }, + { + "surface": "快方", + "readging": "かいほう", + "pos": "名詞", + "pn": 0.870763 + }, + { + "surface": "乙女", + "readging": "おとめ", + "pos": "名詞", + "pn": 0.870511 + }, + { + "surface": "器", + "readging": "き", + "pos": "名詞", + "pn": 0.868791 + }, + { + "surface": "一徹", + "readging": "いってつ", + "pos": "名詞", + "pn": 0.868474 + }, + { + "surface": "時分", + "readging": "じぶん", + "pos": "名詞", + "pn": 0.865806 + }, + { + "surface": "士魂", + "readging": "しこん", + "pos": "名詞", + "pn": 0.864484 + }, + { + "surface": "奮起", + "readging": "ふんき", + "pos": "名詞", + "pn": 0.862992 + }, + { + "surface": "蓄財", + "readging": "ちくざい", + "pos": "名詞", + "pn": 0.862857 + }, + { + "surface": "匂", + "readging": "におい", + "pos": "名詞", + "pn": 0.862696 + }, + { + "surface": "くちい", + "readging": "くちい", + "pos": "形容詞", + "pn": 0.862502 + }, + { + "surface": "達する", + "readging": "たっする", + "pos": "動詞", + "pn": 0.856701 + }, + { + "surface": "執成し", + "readging": "とりなし", + "pos": "名詞", + "pn": 0.855734 + }, + { + "surface": "神風", + "readging": "かみかぜ", + "pos": "名詞", + "pn": 0.850148 + }, + { + "surface": "道徳", + "readging": "どうとく", + "pos": "名詞", + "pn": 0.843899 + }, + { + "surface": "振起す", + "readging": "ふりおこす", + "pos": "動詞", + "pn": 0.843512 + }, + { + "surface": "異観", + "readging": "いかん", + "pos": "名詞", + "pn": 0.824275 + }, + { + "surface": "五", + "readging": "いつ", + "pos": "名詞", + "pn": 0.823893 + }, + { + "surface": "明るむ", + "readging": "あかるむ", + "pos": "動詞", + "pn": 0.820695 + }, + { + "surface": "溢水", + "readging": "いっすい", + "pos": "名詞", + "pn": 0.813432 + }, + { + "surface": "有名", + "readging": "ゆうめい", + "pos": "名詞", + "pn": 0.81253 + }, + { + "surface": "ナイス", + "readging": "ナイス", + "pos": "名詞", + "pn": 0.812339 + }, + { + "surface": "ぶちのめす", + "readging": "ぶちのめす", + "pos": "動詞", + "pn": 0.812304 + }, + { + "surface": "堅忍", + "readging": "けんにん", + "pos": "名詞", + "pn": 0.809868 + }, + { + "surface": "輝かす", + "readging": "かがやかす", + "pos": "動詞", + "pn": 0.799754 + }, + { + "surface": "書替え", + "readging": "かきかえ", + "pos": "名詞", + "pn": 0.798266 + }, + { + "surface": "慣す", + "readging": "ならす", + "pos": "動詞", + "pn": 0.797633 + }, + { + "surface": "さっぱり", + "readging": "さっぱり", + "pos": "副詞", + "pn": 0.793419 + }, + { + "surface": "可愛がる", + "readging": "かわいがる", + "pos": "動詞", + "pn": 0.792203 + }, + { + "surface": "左官", + "readging": "さかん", + "pos": "名詞", + "pn": 0.789636 + }, + { + "surface": "上上吉", + "readging": "じょうじょうきち", + "pos": "名詞", + "pn": 0.788835 + }, + { + "surface": "有為", + "readging": "ゆうい", + "pos": "名詞", + "pn": 0.788489 + }, + { + "surface": "温もり", + "readging": "ぬくもり", + "pos": "名詞", + "pn": 0.785995 + }, + { + "surface": "応分", + "readging": "おうぶん", + "pos": "名詞", + "pn": 0.783593 + }, + { + "surface": "正時", + "readging": "しょうじ", + "pos": "名詞", + "pn": 0.779865 + }, + { + "surface": "温まる", + "readging": "ぬくまる", + "pos": "動詞", + "pn": 0.774146 + }, + { + "surface": "優勢", + "readging": "ゆうせい", + "pos": "名詞", + "pn": 0.770367 + }, + { + "surface": "巣立つ", + "readging": "すだつ", + "pos": "動詞", + "pn": 0.759972 + }, + { + "surface": "数段", + "readging": "すうだん", + "pos": "名詞", + "pn": 0.758661 + }, + { + "surface": "分る", + "readging": "わかる", + "pos": "動詞", + "pn": 0.757087 + }, + { + "surface": "緑柱玉", + "readging": "りょくちゅうぎょく", + "pos": "名詞", + "pn": 0.753361 + }, + { + "surface": "有為", + "readging": "うい", + "pos": "名詞", + "pn": 0.74908 + }, + { + "surface": "独り呑込み", + "readging": "ひとりのみこみ", + "pos": "名詞", + "pn": 0.747972 + }, + { + "surface": "足りる", + "readging": "たりる", + "pos": "動詞", + "pn": 0.747685 + }, + { + "surface": "至福", + "readging": "しふく", + "pos": "名詞", + "pn": 0.744049 + }, + { + "surface": "賑わう", + "readging": "にぎわう", + "pos": "動詞", + "pn": 0.742974 + }, + { + "surface": "出盛る", + "readging": "でさかる", + "pos": "動詞", + "pn": 0.738299 + }, + { + "surface": "御機嫌", + "readging": "ごきげん", + "pos": "名詞", + "pn": 0.737634 + }, + { + "surface": "刀匠", + "readging": "とうしょう", + "pos": "名詞", + "pn": 0.731445 + }, + { + "surface": "恩情", + "readging": "おんじょう", + "pos": "名詞", + "pn": 0.730285 + }, + { + "surface": "良", + "readging": "りょう", + "pos": "名詞", + "pn": 0.729935 + }, + { + "surface": "強気", + "readging": "つよき", + "pos": "名詞", + "pn": 0.723674 + }, + { + "surface": "機敏", + "readging": "きびん", + "pos": "名詞", + "pn": 0.718432 + }, + { + "surface": "きらきら", + "readging": "きらきら", + "pos": "副詞", + "pn": 0.718035 + }, + { + "surface": "福禄", + "readging": "ふくろく", + "pos": "名詞", + "pn": 0.716607 + }, + { + "surface": "慣熟", + "readging": "かんじゅく", + "pos": "名詞", + "pn": 0.713431 + }, + { + "surface": "輝", + "readging": "き", + "pos": "名詞", + "pn": 0.712285 + }, + { + "surface": "福", + "readging": "ふく", + "pos": "名詞", + "pn": 0.709212 + }, + { + "surface": "剣士", + "readging": "けんし", + "pos": "名詞", + "pn": 0.708765 + }, + { + "surface": "雄大", + "readging": "ゆうだい", + "pos": "名詞", + "pn": 0.70821 + }, + { + "surface": "一騎当千", + "readging": "いっきとうせん", + "pos": "名詞", + "pn": 0.708057 + }, + { + "surface": "老実", + "readging": "ろうじつ", + "pos": "名詞", + "pn": 0.703094 + }, + { + "surface": "夜もすがら", + "readging": "よもすがら", + "pos": "副詞", + "pn": 0.703089 + }, + { + "surface": "嫣然", + "readging": "えんぜん", + "pos": "名詞", + "pn": 0.695902 + }, + { + "surface": "寛闊", + "readging": "かんかつ", + "pos": "名詞", + "pn": 0.695141 + }, + { + "surface": "行付け", + "readging": "ゆきつけ", + "pos": "名詞", + "pn": 0.693604 + }, + { + "surface": "疾く", + "readging": "とく", + "pos": "副詞", + "pn": 0.685555 + }, + { + "surface": "とっとと", + "readging": "とっとと", + "pos": "副詞", + "pn": 0.685114 + }, + { + "surface": "宜しく", + "readging": "よろしく", + "pos": "副詞", + "pn": 0.684397 + }, + { + "surface": "庇護", + "readging": "ひご", + "pos": "名詞", + "pn": 0.682392 + }, + { + "surface": "速筆", + "readging": "そくひつ", + "pos": "名詞", + "pn": 0.680856 + }, + { + "surface": "伝法肌", + "readging": "でんぼうはだ", + "pos": "名詞", + "pn": 0.680611 + }, + { + "surface": "物慣れる", + "readging": "ものなれる", + "pos": "動詞", + "pn": 0.67944 + }, + { + "surface": "慈愛", + "readging": "じあい", + "pos": "名詞", + "pn": 0.67473 + }, + { + "surface": "賢者", + "readging": "けんじゃ", + "pos": "名詞", + "pn": 0.671771 + }, + { + "surface": "微笑む", + "readging": "ほほえむ", + "pos": "動詞", + "pn": 0.666063 + }, + { + "surface": "そろりと", + "readging": "そろりと", + "pos": "副詞", + "pn": 0.666042 + }, + { + "surface": "大度", + "readging": "たいど", + "pos": "名詞", + "pn": 0.662047 + }, + { + "surface": "励む", + "readging": "はげむ", + "pos": "動詞", + "pn": 0.661922 + }, + { + "surface": "太っ腹", + "readging": "ふとっぱら", + "pos": "名詞", + "pn": 0.660937 + }, + { + "surface": "賢主", + "readging": "けんしゅ", + "pos": "名詞", + "pn": 0.659387 + }, + { + "surface": "高大", + "readging": "こうだい", + "pos": "名詞", + "pn": 0.656091 + }, + { + "surface": "高殿", + "readging": "たかどの", + "pos": "名詞", + "pn": 0.655918 + }, + { + "surface": "仁愛", + "readging": "じんあい", + "pos": "名詞", + "pn": 0.653287 + }, + { + "surface": "笑壺", + "readging": "えつぼ", + "pos": "名詞", + "pn": 0.646776 + }, + { + "surface": "高風", + "readging": "こうふう", + "pos": "名詞", + "pn": 0.643695 + }, + { + "surface": "エメラルド", + "readging": "エメラルド", + "pos": "名詞", + "pn": 0.642247 + }, + { + "surface": "尊貴", + "readging": "そんき", + "pos": "名詞", + "pn": 0.642166 + }, + { + "surface": "夜な夜な", + "readging": "よなよな", + "pos": "副詞", + "pn": 0.640991 + }, + { + "surface": "勝利", + "readging": "しょうり", + "pos": "名詞", + "pn": 0.640964 + }, + { + "surface": "似つく", + "readging": "につく", + "pos": "動詞", + "pn": 0.640368 + }, + { + "surface": "祝す", + "readging": "しゅくす", + "pos": "動詞", + "pn": 0.640043 + }, + { + "surface": "懐ける", + "readging": "なつける", + "pos": "動詞", + "pn": 0.639785 + }, + { + "surface": "福利", + "readging": "ふくり", + "pos": "名詞", + "pn": 0.639064 + }, + { + "surface": "景色", + "readging": "けしき", + "pos": "名詞", + "pn": 0.639059 + }, + { + "surface": "刀工", + "readging": "とうこう", + "pos": "名詞", + "pn": 0.63849 + }, + { + "surface": "さっさと", + "readging": "さっさと", + "pos": "副詞", + "pn": 0.638465 + }, + { + "surface": "健筆", + "readging": "けんぴつ", + "pos": "名詞", + "pn": 0.636866 + }, + { + "surface": "寵する", + "readging": "ちょうする", + "pos": "動詞", + "pn": 0.636761 + }, + { + "surface": "気色", + "readging": "けしき", + "pos": "名詞", + "pn": 0.635058 + }, + { + "surface": "浮立つ", + "readging": "うきたつ", + "pos": "動詞", + "pn": 0.63424 + }, + { + "surface": "奇", + "readging": "き", + "pos": "名詞", + "pn": 0.629639 + }, + { + "surface": "上位", + "readging": "じょうい", + "pos": "名詞", + "pn": 0.628871 + }, + { + "surface": "生誕", + "readging": "せいたん", + "pos": "名詞", + "pn": 0.628558 + }, + { + "surface": "舵機", + "readging": "だき", + "pos": "名詞", + "pn": 0.6272 + }, + { + "surface": "傅育", + "readging": "ふいく", + "pos": "名詞", + "pn": 0.623722 + }, + { + "surface": "馴染む", + "readging": "なじむ", + "pos": "動詞", + "pn": 0.623008 + }, + { + "surface": "どの道", + "readging": "どのみち", + "pos": "副詞", + "pn": 0.62289 + }, + { + "surface": "頌歌", + "readging": "しょうか", + "pos": "名詞", + "pn": 0.621295 + }, + { + "surface": "海恕", + "readging": "かいじょ", + "pos": "名詞", + "pn": 0.619336 + }, + { + "surface": "気の薬", + "readging": "きのくすり", + "pos": "名詞", + "pn": 0.61885 + }, + { + "surface": "多額", + "readging": "たがく", + "pos": "名詞", + "pn": 0.616822 + }, + { + "surface": "どうせ", + "readging": "どうせ", + "pos": "副詞", + "pn": 0.612873 + }, + { + "surface": "無利子", + "readging": "むりし", + "pos": "名詞", + "pn": 0.612843 + }, + { + "surface": "能書", + "readging": "のうしょ", + "pos": "名詞", + "pn": 0.61235 + }, + { + "surface": "細説", + "readging": "さいせつ", + "pos": "名詞", + "pn": 0.610235 + }, + { + "surface": "結構", + "readging": "けっこう", + "pos": "名詞", + "pn": 0.60878 + }, + { + "surface": "ぱりぱり", + "readging": "ぱりぱり", + "pos": "名詞", + "pn": 0.608706 + }, + { + "surface": "長座", + "readging": "ながざ", + "pos": "名詞", + "pn": 0.603513 + }, + { + "surface": "本日", + "readging": "ほんじつ", + "pos": "名詞", + "pn": 0.602377 + }, + { + "surface": "夢心地", + "readging": "ゆめごこち", + "pos": "名詞", + "pn": 0.602252 + }, + { + "surface": "確然", + "readging": "かくぜん", + "pos": "名詞", + "pn": 0.600847 + }, + { + "surface": "骨頂", + "readging": "こっちょう", + "pos": "名詞", + "pn": 0.60017 + }, + { + "surface": "鴻儒", + "readging": "こうじゅ", + "pos": "名詞", + "pn": 0.597598 + }, + { + "surface": "簡抜", + "readging": "かんばつ", + "pos": "名詞", + "pn": 0.597391 + }, + { + "surface": "推薦", + "readging": "すいせん", + "pos": "名詞", + "pn": 0.594378 + }, + { + "surface": "すたすた", + "readging": "すたすた", + "pos": "副詞", + "pn": 0.593062 + }, + { + "surface": "美女", + "readging": "びじょ", + "pos": "名詞", + "pn": 0.590883 + }, + { + "surface": "豪宕", + "readging": "ごうとう", + "pos": "名詞", + "pn": 0.590337 + }, + { + "surface": "無事", + "readging": "ぶじ", + "pos": "名詞", + "pn": 0.583328 + }, + { + "surface": "平穏", + "readging": "へいおん", + "pos": "名詞", + "pn": 0.582487 + }, + { + "surface": "頑健", + "readging": "がんけん", + "pos": "名詞", + "pn": 0.577922 + }, + { + "surface": "温もる", + "readging": "ぬくもる", + "pos": "動詞", + "pn": 0.575533 + }, + { + "surface": "似合う", + "readging": "にあう", + "pos": "動詞", + "pn": 0.575492 + }, + { + "surface": "奮迅", + "readging": "ふんじん", + "pos": "名詞", + "pn": 0.57356 + }, + { + "surface": "右文", + "readging": "ゆうぶん", + "pos": "名詞", + "pn": 0.573366 + }, + { + "surface": "捨身", + "readging": "すてみ", + "pos": "名詞", + "pn": 0.57202 + }, + { + "surface": "弁舌", + "readging": "べんぜつ", + "pos": "名詞", + "pn": 0.571908 + }, + { + "surface": "賛美歌", + "readging": "さんびか", + "pos": "名詞", + "pn": 0.57023 + }, + { + "surface": "選ぶ", + "readging": "えらぶ", + "pos": "動詞", + "pn": 0.569168 + }, + { + "surface": "見惚れる", + "readging": "みほれる", + "pos": "動詞", + "pn": 0.567053 + }, + { + "surface": "ぎらぎら", + "readging": "ぎらぎら", + "pos": "副詞", + "pn": 0.566053 + }, + { + "surface": "訪欧", + "readging": "ほうおう", + "pos": "名詞", + "pn": 0.565528 + }, + { + "surface": "感奮", + "readging": "かんぷん", + "pos": "名詞", + "pn": 0.564455 + }, + { + "surface": "信望", + "readging": "しんぼう", + "pos": "名詞", + "pn": 0.56355 + }, + { + "surface": "息災", + "readging": "そくさい", + "pos": "名詞", + "pn": 0.563334 + }, + { + "surface": "不退転", + "readging": "ふたいてん", + "pos": "名詞", + "pn": 0.562072 + }, + { + "surface": "壮観", + "readging": "そうかん", + "pos": "名詞", + "pn": 0.56179 + }, + { + "surface": "ゆるりと", + "readging": "ゆるりと", + "pos": "副詞", + "pn": 0.559554 + }, + { + "surface": "シャン", + "readging": "シャン", + "pos": "名詞", + "pn": 0.558862 + }, + { + "surface": "鴻恩", + "readging": "こうおん", + "pos": "名詞", + "pn": 0.5584 + }, + { + "surface": "弁天", + "readging": "べんてん", + "pos": "名詞", + "pn": 0.557495 + }, + { + "surface": "廉直", + "readging": "れんちょく", + "pos": "名詞", + "pn": 0.55697 + }, + { + "surface": "暖気", + "readging": "だんき", + "pos": "名詞", + "pn": 0.556059 + }, + { + "surface": "勇健", + "readging": "ゆうけん", + "pos": "名詞", + "pn": 0.555486 + }, + { + "surface": "手弱女", + "readging": "たおやめ", + "pos": "名詞", + "pn": 0.554968 + }, + { + "surface": "速算", + "readging": "そくさん", + "pos": "名詞", + "pn": 0.554169 + }, + { + "surface": "上玉", + "readging": "じょうだま", + "pos": "名詞", + "pn": 0.55301 + }, + { + "surface": "唯我独尊", + "readging": "ゆいがどくそん", + "pos": "名詞", + "pn": 0.552064 + }, + { + "surface": "ポット", + "readging": "ポット", + "pos": "名詞", + "pn": 0.551269 + }, + { + "surface": "どっち道", + "readging": "どっちみち", + "pos": "副詞", + "pn": 0.550264 + }, + { + "surface": "怜悧", + "readging": "れいり", + "pos": "名詞", + "pn": 0.549718 + }, + { + "surface": "世にも", + "readging": "よにも", + "pos": "副詞", + "pn": 0.549163 + }, + { + "surface": "利達", + "readging": "りたつ", + "pos": "名詞", + "pn": 0.548724 + }, + { + "surface": "聖女", + "readging": "せいじょ", + "pos": "名詞", + "pn": 0.547436 + }, + { + "surface": "鍛冶", + "readging": "たんや", + "pos": "名詞", + "pn": 0.547367 + }, + { + "surface": "利発", + "readging": "りはつ", + "pos": "名詞", + "pn": 0.546507 + }, + { + "surface": "突入", + "readging": "とつにゅう", + "pos": "名詞", + "pn": 0.546454 + }, + { + "surface": "微笑", + "readging": "びしょう", + "pos": "名詞", + "pn": 0.545033 + }, + { + "surface": "鍛工", + "readging": "たんこう", + "pos": "名詞", + "pn": 0.544722 + }, + { + "surface": "適法", + "readging": "てきほう", + "pos": "名詞", + "pn": 0.544605 + }, + { + "surface": "佳人", + "readging": "かじん", + "pos": "名詞", + "pn": 0.543288 + }, + { + "surface": "愛育", + "readging": "あいいく", + "pos": "名詞", + "pn": 0.541709 + }, + { + "surface": "希代", + "readging": "きたい", + "pos": "名詞", + "pn": 0.541515 + }, + { + "surface": "真裸", + "readging": "まっぱだか", + "pos": "名詞", + "pn": 0.541345 + }, + { + "surface": "壮麗", + "readging": "そうれい", + "pos": "名詞", + "pn": 0.539643 + }, + { + "surface": "凛と", + "readging": "りんと", + "pos": "副詞", + "pn": 0.538857 + }, + { + "surface": "博雅", + "readging": "はくが", + "pos": "名詞", + "pn": 0.538053 + }, + { + "surface": "親昵", + "readging": "しんじつ", + "pos": "名詞", + "pn": 0.537723 + }, + { + "surface": "しっこし", + "readging": "しっこし", + "pos": "名詞", + "pn": 0.537091 + }, + { + "surface": "了知", + "readging": "りょうち", + "pos": "名詞", + "pn": 0.535344 + }, + { + "surface": "子煩悩", + "readging": "こぼんのう", + "pos": "名詞", + "pn": 0.535308 + }, + { + "surface": "酒盛", + "readging": "さかもり", + "pos": "名詞", + "pn": 0.533395 + }, + { + "surface": "途端", + "readging": "とたん", + "pos": "名詞", + "pn": 0.532354 + }, + { + "surface": "気前", + "readging": "きまえ", + "pos": "名詞", + "pn": 0.5308 + }, + { + "surface": "達意", + "readging": "たつい", + "pos": "名詞", + "pn": 0.529638 + }, + { + "surface": "手負", + "readging": "ておい", + "pos": "名詞", + "pn": 0.529471 + }, + { + "surface": "作物", + "readging": "さくぶつ", + "pos": "名詞", + "pn": 0.529421 + }, + { + "surface": "麗人", + "readging": "れいじん", + "pos": "名詞", + "pn": 0.52898 + }, + { + "surface": "慈しむ", + "readging": "いつくしむ", + "pos": "動詞", + "pn": 0.526972 + }, + { + "surface": "穏和", + "readging": "おんわ", + "pos": "名詞", + "pn": 0.526812 + }, + { + "surface": "撫育", + "readging": "ぶいく", + "pos": "名詞", + "pn": 0.5257 + }, + { + "surface": "今夕", + "readging": "こんせき", + "pos": "名詞", + "pn": 0.52509 + }, + { + "surface": "奇態", + "readging": "きたい", + "pos": "名詞", + "pn": 0.52505 + }, + { + "surface": "小力", + "readging": "こぢから", + "pos": "名詞", + "pn": 0.524486 + }, + { + "surface": "稀覯", + "readging": "きこう", + "pos": "名詞", + "pn": 0.523364 + }, + { + "surface": "赴く", + "readging": "おもむく", + "pos": "動詞", + "pn": 0.522963 + }, + { + "surface": "未見", + "readging": "みけん", + "pos": "名詞", + "pn": 0.522578 + }, + { + "surface": "高め", + "readging": "たかめ", + "pos": "名詞", + "pn": 0.522058 + }, + { + "surface": "否応", + "readging": "いやおう", + "pos": "名詞", + "pn": 0.522003 + }, + { + "surface": "気散じ", + "readging": "きさんじ", + "pos": "名詞", + "pn": 0.521793 + }, + { + "surface": "気性", + "readging": "きしょう", + "pos": "名詞", + "pn": 0.521343 + }, + { + "surface": "言笑", + "readging": "げんしょう", + "pos": "名詞", + "pn": 0.521004 + }, + { + "surface": "勇士", + "readging": "ゆうし", + "pos": "名詞", + "pn": 0.519647 + }, + { + "surface": "栄耀", + "readging": "えいよう", + "pos": "名詞", + "pn": 0.517855 + }, + { + "surface": "御筆先", + "readging": "おふでさき", + "pos": "名詞", + "pn": 0.517826 + }, + { + "surface": "珍奇", + "readging": "ちんき", + "pos": "名詞", + "pn": 0.51763 + }, + { + "surface": "つと", + "readging": "つと", + "pos": "副詞", + "pn": 0.517366 + }, + { + "surface": "会心", + "readging": "かいしん", + "pos": "名詞", + "pn": 0.517358 + }, + { + "surface": "亀の子", + "readging": "かめのこ", + "pos": "名詞", + "pn": 0.517199 + }, + { + "surface": "換言", + "readging": "かんげん", + "pos": "名詞", + "pn": 0.51699 + }, + { + "surface": "有能", + "readging": "ゆうのう", + "pos": "名詞", + "pn": 0.516779 + }, + { + "surface": "美形", + "readging": "びけい", + "pos": "名詞", + "pn": 0.515789 + }, + { + "surface": "盲愛", + "readging": "もうあい", + "pos": "名詞", + "pn": 0.515466 + }, + { + "surface": "詳解", + "readging": "しょうかい", + "pos": "名詞", + "pn": 0.515385 + }, + { + "surface": "能文", + "readging": "のうぶん", + "pos": "名詞", + "pn": 0.515224 + }, + { + "surface": "優女", + "readging": "やさおんな", + "pos": "名詞", + "pn": 0.514481 + }, + { + "surface": "壮絶", + "readging": "そうぜつ", + "pos": "名詞", + "pn": 0.514138 + }, + { + "surface": "塵埃", + "readging": "じんあい", + "pos": "名詞", + "pn": 0.513942 + }, + { + "surface": "今朝", + "readging": "けさ", + "pos": "名詞", + "pn": 0.512024 + }, + { + "surface": "早耳", + "readging": "はやみみ", + "pos": "名詞", + "pn": 0.511757 + }, + { + "surface": "真向い", + "readging": "まむかい", + "pos": "名詞", + "pn": 0.51008 + }, + { + "surface": "奇しくも", + "readging": "くしくも", + "pos": "副詞", + "pn": 0.509337 + }, + { + "surface": "寛大", + "readging": "かんだい", + "pos": "名詞", + "pn": 0.509142 + }, + { + "surface": "迸出", + "readging": "へいしゅつ", + "pos": "名詞", + "pn": 0.508903 + }, + { + "surface": "裸身", + "readging": "らしん", + "pos": "名詞", + "pn": 0.508858 + }, + { + "surface": "刀瘢", + "readging": "とうはん", + "pos": "名詞", + "pn": 0.508796 + }, + { + "surface": "気宇", + "readging": "きう", + "pos": "名詞", + "pn": 0.508739 + }, + { + "surface": "無上", + "readging": "むじょう", + "pos": "名詞", + "pn": 0.506431 + }, + { + "surface": "幽邃", + "readging": "ゆうすい", + "pos": "名詞", + "pn": 0.506234 + }, + { + "surface": "奉拝", + "readging": "ほうはい", + "pos": "名詞", + "pn": 0.505263 + }, + { + "surface": "澄し汁屋", + "readging": "すましや", + "pos": "名詞", + "pn": 0.504394 + }, + { + "surface": "きりきり", + "readging": "きりきりしゃんと", + "pos": "副詞", + "pn": 0.504162 + }, + { + "surface": "尊崇", + "readging": "そんすう", + "pos": "名詞", + "pn": 0.503112 + }, + { + "surface": "温和", + "readging": "おんわ", + "pos": "名詞", + "pn": 0.501493 + }, + { + "surface": "寛仁", + "readging": "かんじん", + "pos": "名詞", + "pn": 0.499639 + }, + { + "surface": "才覚", + "readging": "さいかく", + "pos": "名詞", + "pn": 0.499192 + }, + { + "surface": "衆望", + "readging": "しゅうぼう", + "pos": "名詞", + "pn": 0.498964 + }, + { + "surface": "温柔", + "readging": "おんじゅう", + "pos": "名詞", + "pn": 0.49893 + }, + { + "surface": "武勲", + "readging": "ぶくん", + "pos": "名詞", + "pn": 0.498551 + }, + { + "surface": "横っちょ", + "readging": "よこっちょ", + "pos": "名詞", + "pn": 0.49761 + }, + { + "surface": "天質", + "readging": "てんしつ", + "pos": "名詞", + "pn": 0.497503 + }, + { + "surface": "春宵", + "readging": "しゅんしょう", + "pos": "名詞", + "pn": 0.497333 + }, + { + "surface": "生得", + "readging": "しょうとく", + "pos": "名詞", + "pn": 0.496212 + }, + { + "surface": "勇往", + "readging": "ゆうおう", + "pos": "名詞", + "pn": 0.495877 + }, + { + "surface": "改稿", + "readging": "かいこう", + "pos": "名詞", + "pn": 0.494834 + }, + { + "surface": "超克", + "readging": "ちょうこく", + "pos": "名詞", + "pn": 0.491898 + }, + { + "surface": "雅量", + "readging": "がりょう", + "pos": "名詞", + "pn": 0.491868 + }, + { + "surface": "オプチミスト", + "readging": "オプチミスト", + "pos": "名詞", + "pn": 0.491412 + }, + { + "surface": "乾布", + "readging": "かんぷ", + "pos": "名詞", + "pn": 0.490637 + }, + { + "surface": "先師", + "readging": "せんし", + "pos": "名詞", + "pn": 0.490529 + }, + { + "surface": "水馴れ棹", + "readging": "みなれざお", + "pos": "名詞", + "pn": 0.490297 + }, + { + "surface": "着付ける", + "readging": "きつける", + "pos": "動詞", + "pn": 0.490296 + }, + { + "surface": "おたまりこぼし", + "readging": "おたまりこぼし", + "pos": "名詞", + "pn": 0.488741 + }, + { + "surface": "心安立て", + "readging": "こころやすだて", + "pos": "名詞", + "pn": 0.488072 + }, + { + "surface": "篤志", + "readging": "とくし", + "pos": "名詞", + "pn": 0.48738 + }, + { + "surface": "多幸", + "readging": "たこう", + "pos": "名詞", + "pn": 0.486911 + }, + { + "surface": "いとしがる", + "readging": "いとしがる", + "pos": "動詞", + "pn": 0.484702 + }, + { + "surface": "温顔", + "readging": "おんがん", + "pos": "名詞", + "pn": 0.484588 + }, + { + "surface": "のうのう", + "readging": "のうのう", + "pos": "副詞", + "pn": 0.484275 + }, + { + "surface": "今暁", + "readging": "こんぎょう", + "pos": "名詞", + "pn": 0.484242 + }, + { + "surface": "思い切り", + "readging": "おもいきり", + "pos": "名詞", + "pn": 0.482655 + }, + { + "surface": "奉賛", + "readging": "ほうさん", + "pos": "名詞", + "pn": 0.482603 + }, + { + "surface": "懇志", + "readging": "こんし", + "pos": "名詞", + "pn": 0.48257 + }, + { + "surface": "常春", + "readging": "とこはる", + "pos": "名詞", + "pn": 0.479901 + }, + { + "surface": "同苗", + "readging": "どうみょう", + "pos": "名詞", + "pn": 0.479594 + }, + { + "surface": "温灰", + "readging": "ぬくばい", + "pos": "名詞", + "pn": 0.478265 + }, + { + "surface": "饗宴", + "readging": "きょうえん", + "pos": "名詞", + "pn": 0.478179 + }, + { + "surface": "捨所", + "readging": "すてどころ", + "pos": "名詞", + "pn": 0.478142 + }, + { + "surface": "つっと", + "readging": "つっと", + "pos": "副詞", + "pn": 0.477846 + }, + { + "surface": "洋紅", + "readging": "ようこう", + "pos": "名詞", + "pn": 0.47779 + }, + { + "surface": "赤心", + "readging": "せきしん", + "pos": "名詞", + "pn": 0.477035 + }, + { + "surface": "激発", + "readging": "げきはつ", + "pos": "名詞", + "pn": 0.476732 + }, + { + "surface": "尊信", + "readging": "そんしん", + "pos": "名詞", + "pn": 0.47643 + }, + { + "surface": "厚意", + "readging": "こうい", + "pos": "名詞", + "pn": 0.476179 + }, + { + "surface": "幾久しく", + "readging": "いくひさしく", + "pos": "動詞", + "pn": 0.476174 + }, + { + "surface": "同意", + "readging": "どうい", + "pos": "名詞", + "pn": 0.476036 + }, + { + "surface": "佳局", + "readging": "かきょく", + "pos": "名詞", + "pn": 0.475174 + }, + { + "surface": "廃語", + "readging": "はいご", + "pos": "名詞", + "pn": 0.475083 + }, + { + "surface": "民心", + "readging": "みんしん", + "pos": "名詞", + "pn": 0.474756 + }, + { + "surface": "定宿", + "readging": "じょうやど", + "pos": "名詞", + "pn": 0.473701 + }, + { + "surface": "金城鉄壁", + "readging": "きんじょうてっぺき", + "pos": "名詞", + "pn": 0.473465 + }, + { + "surface": "冴え", + "readging": "さえ", + "pos": "名詞", + "pn": 0.47344 + }, + { + "surface": "予兆", + "readging": "よちょう", + "pos": "名詞", + "pn": 0.471315 + }, + { + "surface": "見兼ねる", + "readging": "みかねる", + "pos": "動詞", + "pn": 0.470108 + }, + { + "surface": "春色", + "readging": "しゅんしょく", + "pos": "名詞", + "pn": 0.469496 + }, + { + "surface": "物怪", + "readging": "もっけ", + "pos": "名詞", + "pn": 0.468449 + }, + { + "surface": "寛げる", + "readging": "くつろげる", + "pos": "動詞", + "pn": 0.466595 + }, + { + "surface": "名工", + "readging": "めいこう", + "pos": "名詞", + "pn": 0.466538 + }, + { + "surface": "清廉", + "readging": "せいれん", + "pos": "名詞", + "pn": 0.465773 + }, + { + "surface": "言含める", + "readging": "いいふくめる", + "pos": "動詞", + "pn": 0.465575 + }, + { + "surface": "占め子の兎", + "readging": "しめこのうさぎ", + "pos": "名詞", + "pn": 0.464059 + }, + { + "surface": "実直", + "readging": "じっちょく", + "pos": "名詞", + "pn": 0.463936 + }, + { + "surface": "確り", + "readging": "しっかり", + "pos": "副詞", + "pn": 0.46323 + }, + { + "surface": "蘭麝", + "readging": "らんじゃ", + "pos": "名詞", + "pn": 0.463108 + }, + { + "surface": "民望", + "readging": "みんぼう", + "pos": "名詞", + "pn": 0.462672 + }, + { + "surface": "気張る", + "readging": "きばる", + "pos": "動詞", + "pn": 0.46222 + }, + { + "surface": "北叟笑む", + "readging": "ほくそえむ", + "pos": "動詞", + "pn": 0.461602 + }, + { + "surface": "謹上", + "readging": "きんじょう", + "pos": "名詞", + "pn": 0.461447 + }, + { + "surface": "スイート ホーム", + "readging": "スイート ホーム", + "pos": "名詞", + "pn": 0.461123 + }, + { + "surface": "高雅", + "readging": "こうが", + "pos": "名詞", + "pn": 0.460597 + }, + { + "surface": "興国", + "readging": "こうこく", + "pos": "名詞", + "pn": 0.460439 + }, + { + "surface": "豪放", + "readging": "ごうほう", + "pos": "名詞", + "pn": 0.459822 + }, + { + "surface": "雄叫び", + "readging": "おたけび", + "pos": "名詞", + "pn": 0.459364 + }, + { + "surface": "欣求", + "readging": "ごんぐ", + "pos": "名詞", + "pn": 0.458416 + }, + { + "surface": "口臭", + "readging": "こうしゅう", + "pos": "名詞", + "pn": 0.457478 + }, + { + "surface": "大出来", + "readging": "おおでき", + "pos": "名詞", + "pn": 0.457376 + }, + { + "surface": "寝忘れる", + "readging": "ねわすれる", + "pos": "動詞", + "pn": 0.457325 + }, + { + "surface": "エピキュリアン", + "readging": "エピキュリアン", + "pos": "名詞", + "pn": 0.456218 + }, + { + "surface": "生別", + "readging": "せいべつ", + "pos": "名詞", + "pn": 0.455475 + }, + { + "surface": "腕比べ", + "readging": "うでくらべ", + "pos": "名詞", + "pn": 0.455415 + }, + { + "surface": "勲章", + "readging": "くんしょう", + "pos": "名詞", + "pn": 0.45466 + }, + { + "surface": "本に", + "readging": "ほんに", + "pos": "副詞", + "pn": 0.454483 + }, + { + "surface": "尊簡", + "readging": "そんかん", + "pos": "名詞", + "pn": 0.453732 + }, + { + "surface": "春景", + "readging": "しゅんけい", + "pos": "名詞", + "pn": 0.451402 + }, + { + "surface": "肥培", + "readging": "ひばい", + "pos": "名詞", + "pn": 0.45036 + }, + { + "surface": "是認", + "readging": "ぜにん", + "pos": "名詞", + "pn": 0.449296 + }, + { + "surface": "老若", + "readging": "ろうにゃく", + "pos": "名詞", + "pn": 0.448767 + }, + { + "surface": "老少", + "readging": "ろうしょう", + "pos": "名詞", + "pn": 0.448228 + }, + { + "surface": "勇気", + "readging": "ゆうき", + "pos": "名詞", + "pn": 0.446656 + }, + { + "surface": "リクリエーション", + "readging": "リクリエーション", + "pos": "名詞", + "pn": 0.446645 + }, + { + "surface": "健康", + "readging": "けんこう", + "pos": "名詞", + "pn": 0.443146 + }, + { + "surface": "華麗", + "readging": "かれい", + "pos": "名詞", + "pn": 0.441752 + }, + { + "surface": "低利", + "readging": "ていり", + "pos": "名詞", + "pn": 0.441514 + }, + { + "surface": "あわよくば", + "readging": "あわよくば", + "pos": "副詞", + "pn": 0.441356 + }, + { + "surface": "情味", + "readging": "じょうみ", + "pos": "名詞", + "pn": 0.441052 + }, + { + "surface": "人柄", + "readging": "ひとがら", + "pos": "名詞", + "pn": 0.440999 + }, + { + "surface": "夜すがら", + "readging": "よすがら", + "pos": "名詞", + "pn": 0.440886 + }, + { + "surface": "悠然", + "readging": "ゆうぜん", + "pos": "名詞", + "pn": 0.439795 + }, + { + "surface": "狎妓", + "readging": "こうぎ", + "pos": "名詞", + "pn": 0.439554 + }, + { + "surface": "流行児", + "readging": "はやりっこ", + "pos": "名詞", + "pn": 0.437925 + }, + { + "surface": "ダーリン", + "readging": "ダーリン", + "pos": "名詞", + "pn": 0.437837 + }, + { + "surface": "豊潤", + "readging": "ほうじゅん", + "pos": "名詞", + "pn": 0.437524 + }, + { + "surface": "愛娘", + "readging": "まなむすめ", + "pos": "名詞", + "pn": 0.43734 + }, + { + "surface": "途轍", + "readging": "とてつ", + "pos": "名詞", + "pn": 0.436807 + }, + { + "surface": "明達", + "readging": "めいたつ", + "pos": "名詞", + "pn": 0.436085 + }, + { + "surface": "不敗", + "readging": "ふはい", + "pos": "名詞", + "pn": 0.435732 + }, + { + "surface": "卜筮", + "readging": "ぼくぜい", + "pos": "名詞", + "pn": 0.434388 + }, + { + "surface": "済済", + "readging": "せいせい", + "pos": "名詞", + "pn": 0.433907 + }, + { + "surface": "四足", + "readging": "しそく", + "pos": "名詞", + "pn": 0.433178 + }, + { + "surface": "知識人", + "readging": "ちしきじん", + "pos": "名詞", + "pn": 0.432613 + }, + { + "surface": "奉奠", + "readging": "ほうてん", + "pos": "名詞", + "pn": 0.432312 + }, + { + "surface": "判然", + "readging": "はんぜん", + "pos": "名詞", + "pn": 0.432024 + }, + { + "surface": "交際家", + "readging": "こうさいか", + "pos": "名詞", + "pn": 0.431486 + }, + { + "surface": "斜かい", + "readging": "はすかい", + "pos": "名詞", + "pn": 0.431391 + }, + { + "surface": "豊饒", + "readging": "ほうじょう", + "pos": "名詞", + "pn": 0.430667 + }, + { + "surface": "都雅", + "readging": "とが", + "pos": "名詞", + "pn": 0.430061 + }, + { + "surface": "発憤", + "readging": "はっぷん", + "pos": "名詞", + "pn": 0.430045 + }, + { + "surface": "太平", + "readging": "たいへい", + "pos": "名詞", + "pn": 0.429726 + }, + { + "surface": "捗る", + "readging": "はかどる", + "pos": "動詞", + "pn": 0.429502 + }, + { + "surface": "一道", + "readging": "いちどう", + "pos": "名詞", + "pn": 0.428892 + }, + { + "surface": "不等", + "readging": "ふとう", + "pos": "名詞", + "pn": 0.426027 + }, + { + "surface": "突進む", + "readging": "つきすすむ", + "pos": "動詞", + "pn": 0.42591 + }, + { + "surface": "今宵", + "readging": "こよい", + "pos": "名詞", + "pn": 0.425873 + }, + { + "surface": "夫婦", + "readging": "みょうと", + "pos": "名詞", + "pn": 0.425574 + }, + { + "surface": "亜聖", + "readging": "あせい", + "pos": "名詞", + "pn": 0.424429 + }, + { + "surface": "改め", + "readging": "あらため", + "pos": "名詞", + "pn": 0.423033 + }, + { + "surface": "最愛", + "readging": "さいあい", + "pos": "名詞", + "pn": 0.422836 + }, + { + "surface": "宝剣", + "readging": "ほうけん", + "pos": "名詞", + "pn": 0.422787 + }, + { + "surface": "近付き", + "readging": "ちかづき", + "pos": "名詞", + "pn": 0.42268 + }, + { + "surface": "今夜", + "readging": "こんや", + "pos": "名詞", + "pn": 0.422235 + }, + { + "surface": "クロッキー", + "readging": "クロッキー", + "pos": "名詞", + "pn": 0.41991 + }, + { + "surface": "随一", + "readging": "ずいいち", + "pos": "名詞", + "pn": 0.41901 + }, + { + "surface": "性分", + "readging": "しょうぶん", + "pos": "名詞", + "pn": 0.418871 + }, + { + "surface": "生血", + "readging": "なまち", + "pos": "名詞", + "pn": 0.418431 + }, + { + "surface": "浮かれ出る", + "readging": "うかれでる", + "pos": "動詞", + "pn": 0.416415 + }, + { + "surface": "交誼", + "readging": "こうぎ", + "pos": "名詞", + "pn": 0.416345 + }, + { + "surface": "夜景", + "readging": "やけい", + "pos": "名詞", + "pn": 0.416275 + }, + { + "surface": "ぎらつく", + "readging": "ぎらつく", + "pos": "動詞", + "pn": 0.415971 + }, + { + "surface": "インテリゲンチア", + "readging": "インテリゲンチア", + "pos": "名詞", + "pn": 0.414747 + }, + { + "surface": "清潔", + "readging": "せいけつ", + "pos": "名詞", + "pn": 0.414566 + }, + { + "surface": "綺羅", + "readging": "きら", + "pos": "名詞", + "pn": 0.414365 + }, + { + "surface": "暢達", + "readging": "ちょうたつ", + "pos": "名詞", + "pn": 0.413028 + }, + { + "surface": "駘蕩", + "readging": "たいとう", + "pos": "名詞", + "pn": 0.413028 + }, + { + "surface": "オーソドックス", + "readging": "オーソドックス", + "pos": "名詞", + "pn": 0.41302 + }, + { + "surface": "ぬくぬく", + "readging": "ぬくぬく", + "pos": "副詞", + "pn": 0.412698 + }, + { + "surface": "むんむん", + "readging": "むんむん", + "pos": "副詞", + "pn": 0.412678 + }, + { + "surface": "談笑", + "readging": "だんしょう", + "pos": "名詞", + "pn": 0.412132 + }, + { + "surface": "能書", + "readging": "のうがき", + "pos": "名詞", + "pn": 0.411877 + }, + { + "surface": "買付け", + "readging": "かいつけ", + "pos": "名詞", + "pn": 0.4114 + }, + { + "surface": "憩", + "readging": "いこい", + "pos": "名詞", + "pn": 0.410946 + }, + { + "surface": "夜色", + "readging": "やしょく", + "pos": "名詞", + "pn": 0.410677 + }, + { + "surface": "啖呵", + "readging": "たんか", + "pos": "名詞", + "pn": 0.409839 + }, + { + "surface": "居合せる", + "readging": "いあわせる", + "pos": "動詞", + "pn": 0.40964 + }, + { + "surface": "選句", + "readging": "せんく", + "pos": "名詞", + "pn": 0.409062 + }, + { + "surface": "愛犬", + "readging": "あいけん", + "pos": "名詞", + "pn": 0.408248 + }, + { + "surface": "慕う", + "readging": "したう", + "pos": "動詞", + "pn": 0.407102 + }, + { + "surface": "歓談", + "readging": "かんだん", + "pos": "名詞", + "pn": 0.406879 + }, + { + "surface": "漲る", + "readging": "みなぎる", + "pos": "動詞", + "pn": 0.405672 + }, + { + "surface": "選歌", + "readging": "せんか", + "pos": "名詞", + "pn": 0.405316 + }, + { + "surface": "恭賀", + "readging": "きょうが", + "pos": "名詞", + "pn": 0.405307 + }, + { + "surface": "独り合点", + "readging": "ひとりがてん", + "pos": "名詞", + "pn": 0.405091 + }, + { + "surface": "著書", + "readging": "ちょしょ", + "pos": "名詞", + "pn": 0.40416 + }, + { + "surface": "保養", + "readging": "ほよう", + "pos": "名詞", + "pn": 0.403196 + }, + { + "surface": "感泣", + "readging": "かんきゅう", + "pos": "名詞", + "pn": 0.40305 + }, + { + "surface": "楽天家", + "readging": "らくてんか", + "pos": "名詞", + "pn": 0.402742 + }, + { + "surface": "散発", + "readging": "さんぱつ", + "pos": "名詞", + "pn": 0.402271 + }, + { + "surface": "直情径行", + "readging": "ちょくじょうけいこう", + "pos": "名詞", + "pn": 0.40221 + }, + { + "surface": "気炎万丈", + "readging": "きえんばんじょう", + "pos": "名詞", + "pn": 0.401221 + }, + { + "surface": "石部金吉", + "readging": "いしべきんきち", + "pos": "名詞", + "pn": 0.400191 + }, + { + "surface": "選良", + "readging": "せんりょう", + "pos": "名詞", + "pn": 0.400172 + }, + { + "surface": "誼", + "readging": "ぎ", + "pos": "名詞", + "pn": 0.399608 + }, + { + "surface": "勝", + "readging": "かち", + "pos": "名詞", + "pn": 0.398254 + }, + { + "surface": "大人", + "readging": "だいにん", + "pos": "名詞", + "pn": 0.397852 + }, + { + "surface": "勇", + "readging": "ゆう", + "pos": "名詞", + "pn": 0.397554 + }, + { + "surface": "特効", + "readging": "とっこう", + "pos": "名詞", + "pn": 0.397242 + }, + { + "surface": "奇勝", + "readging": "きしょう", + "pos": "名詞", + "pn": 0.396541 + }, + { + "surface": "誕生", + "readging": "たんじょう", + "pos": "名詞", + "pn": 0.396127 + }, + { + "surface": "思し召す", + "readging": "おぼしめす", + "pos": "動詞", + "pn": 0.395794 + }, + { + "surface": "咲乱れる", + "readging": "さきみだれる", + "pos": "動詞", + "pn": 0.393039 + }, + { + "surface": "隠れも無い", + "readging": "かくれもない", + "pos": "形容詞", + "pn": 0.39294 + }, + { + "surface": "名", + "readging": "な", + "pos": "名詞", + "pn": 0.392704 + }, + { + "surface": "天空海闊", + "readging": "てんくうかいかつ", + "pos": "名詞", + "pn": 0.392391 + }, + { + "surface": "享楽主義", + "readging": "きょうらくしゅぎ", + "pos": "名詞", + "pn": 0.392 + }, + { + "surface": "抱留める", + "readging": "だきとめる", + "pos": "動詞", + "pn": 0.391949 + }, + { + "surface": "慰する", + "readging": "いする", + "pos": "動詞", + "pn": 0.391851 + }, + { + "surface": "壮者", + "readging": "そうしゃ", + "pos": "名詞", + "pn": 0.391796 + }, + { + "surface": "麗容", + "readging": "れいよう", + "pos": "名詞", + "pn": 0.391763 + }, + { + "surface": "風雲児", + "readging": "ふううんじ", + "pos": "名詞", + "pn": 0.39079 + }, + { + "surface": "雄弁", + "readging": "ゆうべん", + "pos": "名詞", + "pn": 0.390405 + }, + { + "surface": "後生", + "readging": "ごしょう", + "pos": "名詞", + "pn": 0.390248 + }, + { + "surface": "妙手", + "readging": "みょうしゅ", + "pos": "名詞", + "pn": 0.389823 + }, + { + "surface": "仁慈", + "readging": "じんじ", + "pos": "名詞", + "pn": 0.389622 + }, + { + "surface": "大志", + "readging": "たいし", + "pos": "名詞", + "pn": 0.388913 + }, + { + "surface": "間柄", + "readging": "あいだがら", + "pos": "名詞", + "pn": 0.388236 + }, + { + "surface": "酒家", + "readging": "しゅか", + "pos": "名詞", + "pn": 0.387955 + }, + { + "surface": "懇", + "readging": "こん", + "pos": "名詞", + "pn": 0.386563 + }, + { + "surface": "品格", + "readging": "ひんかく", + "pos": "名詞", + "pn": 0.386094 + }, + { + "surface": "進言", + "readging": "しんげん", + "pos": "名詞", + "pn": 0.385279 + }, + { + "surface": "浮かれる", + "readging": "うかれる", + "pos": "動詞", + "pn": 0.384997 + }, + { + "surface": "効験", + "readging": "こうけん", + "pos": "名詞", + "pn": 0.382961 + }, + { + "surface": "恵比須顔", + "readging": "えびすがお", + "pos": "名詞", + "pn": 0.382241 + }, + { + "surface": "無欠", + "readging": "むけつ", + "pos": "名詞", + "pn": 0.382121 + }, + { + "surface": "語末", + "readging": "ごまつ", + "pos": "名詞", + "pn": 0.381855 + }, + { + "surface": "釣天狗", + "readging": "つりてんぐ", + "pos": "名詞", + "pn": 0.38181 + }, + { + "surface": "忝い", + "readging": "かたじけない", + "pos": "形容詞", + "pn": 0.381773 + }, + { + "surface": "尊厳", + "readging": "そんげん", + "pos": "名詞", + "pn": 0.38152 + }, + { + "surface": "降誕", + "readging": "こうたん", + "pos": "名詞", + "pn": 0.380432 + }, + { + "surface": "程程", + "readging": "ほどほど", + "pos": "名詞", + "pn": 0.379978 + }, + { + "surface": "哲人", + "readging": "てつじん", + "pos": "名詞", + "pn": 0.379977 + }, + { + "surface": "長命", + "readging": "ちょうめい", + "pos": "名詞", + "pn": 0.379181 + }, + { + "surface": "一際", + "readging": "ひときわ", + "pos": "副詞", + "pn": 0.379046 + }, + { + "surface": "解す", + "readging": "かいす", + "pos": "動詞", + "pn": 0.37877 + }, + { + "surface": "適齢", + "readging": "てきれい", + "pos": "名詞", + "pn": 0.378331 + }, + { + "surface": "刀痕", + "readging": "とうこん", + "pos": "名詞", + "pn": 0.378145 + }, + { + "surface": "雅致", + "readging": "がち", + "pos": "名詞", + "pn": 0.378038 + }, + { + "surface": "克己", + "readging": "こっき", + "pos": "名詞", + "pn": 0.377742 + }, + { + "surface": "何時かしら", + "readging": "いつかしら", + "pos": "副詞", + "pn": 0.377726 + }, + { + "surface": "世尊", + "readging": "せそん", + "pos": "名詞", + "pn": 0.377167 + }, + { + "surface": "愛護", + "readging": "あいご", + "pos": "名詞", + "pn": 0.375783 + }, + { + "surface": "風致", + "readging": "ふうち", + "pos": "名詞", + "pn": 0.375709 + }, + { + "surface": "氾濫", + "readging": "はんらん", + "pos": "名詞", + "pn": 0.374604 + }, + { + "surface": "気先", + "readging": "きさき", + "pos": "名詞", + "pn": 0.374319 + }, + { + "surface": "天助", + "readging": "てんじょ", + "pos": "名詞", + "pn": 0.374049 + }, + { + "surface": "天使", + "readging": "てんし", + "pos": "名詞", + "pn": 0.37391 + }, + { + "surface": "厚誼", + "readging": "こうぎ", + "pos": "名詞", + "pn": 0.373374 + }, + { + "surface": "常勝", + "readging": "じょうしょう", + "pos": "名詞", + "pn": 0.373179 + }, + { + "surface": "懇話", + "readging": "こんわ", + "pos": "名詞", + "pn": 0.372949 + }, + { + "surface": "雄", + "readging": "お", + "pos": "名詞", + "pn": 0.371793 + }, + { + "surface": "無二無三", + "readging": "むにむさん", + "pos": "名詞", + "pn": 0.371102 + }, + { + "surface": "友情", + "readging": "ゆうじょう", + "pos": "名詞", + "pn": 0.368885 + }, + { + "surface": "顧慮", + "readging": "こりょ", + "pos": "名詞", + "pn": 0.368862 + }, + { + "surface": "後塵", + "readging": "こうじん", + "pos": "名詞", + "pn": 0.36796 + }, + { + "surface": "しとしと", + "readging": "しとしと", + "pos": "副詞", + "pn": 0.367304 + }, + { + "surface": "うっとり", + "readging": "うっとり", + "pos": "副詞", + "pn": 0.36674 + }, + { + "surface": "文雅", + "readging": "ぶんが", + "pos": "名詞", + "pn": 0.36662 + }, + { + "surface": "頂ける", + "readging": "いただける", + "pos": "動詞", + "pn": 0.36624 + }, + { + "surface": "手懐ける", + "readging": "てなずける", + "pos": "動詞", + "pn": 0.365863 + }, + { + "surface": "難句", + "readging": "なんく", + "pos": "名詞", + "pn": 0.365427 + }, + { + "surface": "目立つ", + "readging": "めだつ", + "pos": "動詞", + "pn": 0.364341 + }, + { + "surface": "信愛", + "readging": "しんあい", + "pos": "名詞", + "pn": 0.363843 + }, + { + "surface": "鴨", + "readging": "かも", + "pos": "名詞", + "pn": 0.36348 + }, + { + "surface": "綽綽", + "readging": "しゃくしゃく", + "pos": "名詞", + "pn": 0.363 + }, + { + "surface": "舳先", + "readging": "へさき", + "pos": "名詞", + "pn": 0.36262 + }, + { + "surface": "気転", + "readging": "きてん", + "pos": "名詞", + "pn": 0.362585 + }, + { + "surface": "おちおち", + "readging": "おちおち", + "pos": "副詞", + "pn": 0.362384 + }, + { + "surface": "有難がる", + "readging": "ありがたがる", + "pos": "動詞", + "pn": 0.362248 + }, + { + "surface": "親友", + "readging": "しんゆう", + "pos": "名詞", + "pn": 0.362162 + }, + { + "surface": "ちょろり", + "readging": "ちょろり", + "pos": "副詞", + "pn": 0.361606 + }, + { + "surface": "微笑む", + "readging": "ほおえむ", + "pos": "動詞", + "pn": 0.361288 + }, + { + "surface": "どんどん", + "readging": "どんどん", + "pos": "副詞", + "pn": 0.360515 + }, + { + "surface": "メダル", + "readging": "メダル", + "pos": "名詞", + "pn": 0.360095 + }, + { + "surface": "公明", + "readging": "こうめい", + "pos": "名詞", + "pn": 0.359108 + }, + { + "surface": "加餐", + "readging": "かさん", + "pos": "名詞", + "pn": 0.358536 + }, + { + "surface": "美人", + "readging": "びじん", + "pos": "名詞", + "pn": 0.358014 + }, + { + "surface": "大家", + "readging": "たいか", + "pos": "名詞", + "pn": 0.357759 + }, + { + "surface": "見入る", + "readging": "みいる", + "pos": "動詞", + "pn": 0.357386 + }, + { + "surface": "励ます", + "readging": "はげます", + "pos": "動詞", + "pn": 0.357202 + }, + { + "surface": "蒼天", + "readging": "そうてん", + "pos": "名詞", + "pn": 0.357121 + }, + { + "surface": "無傷", + "readging": "むきず", + "pos": "名詞", + "pn": 0.357114 + }, + { + "surface": "青天", + "readging": "せいてん", + "pos": "名詞", + "pn": 0.356685 + }, + { + "surface": "果断", + "readging": "かだん", + "pos": "名詞", + "pn": 0.356284 + }, + { + "surface": "糊口", + "readging": "ここう", + "pos": "名詞", + "pn": 0.356255 + }, + { + "surface": "不抜", + "readging": "ふばつ", + "pos": "名詞", + "pn": 0.356175 + }, + { + "surface": "志向", + "readging": "しこう", + "pos": "名詞", + "pn": 0.355887 + }, + { + "surface": "衆生", + "readging": "しゅじょう", + "pos": "名詞", + "pn": 0.355877 + }, + { + "surface": "匹儔", + "readging": "ひっちゅう", + "pos": "名詞", + "pn": 0.355633 + }, + { + "surface": "尽忠", + "readging": "じんちゅう", + "pos": "名詞", + "pn": 0.355134 + }, + { + "surface": "承諾", + "readging": "しょうだく", + "pos": "名詞", + "pn": 0.355085 + }, + { + "surface": "意気組み", + "readging": "いきぐみ", + "pos": "名詞", + "pn": 0.354697 + }, + { + "surface": "尽かす", + "readging": "つかす", + "pos": "動詞", + "pn": 0.354299 + }, + { + "surface": "人格", + "readging": "じんかく", + "pos": "名詞", + "pn": 0.353673 + }, + { + "surface": "労り", + "readging": "いたわり", + "pos": "名詞", + "pn": 0.353449 + }, + { + "surface": "進捗", + "readging": "しんちょく", + "pos": "名詞", + "pn": 0.352434 + }, + { + "surface": "臍茶", + "readging": "へそちゃ", + "pos": "名詞", + "pn": 0.352295 + }, + { + "surface": "手っ取り早い", + "readging": "てっとりばやい", + "pos": "形容詞", + "pn": 0.352222 + }, + { + "surface": "色好み", + "readging": "いろごのみ", + "pos": "名詞", + "pn": 0.351684 + }, + { + "surface": "碧落", + "readging": "へきらく", + "pos": "名詞", + "pn": 0.350919 + }, + { + "surface": "茫茫", + "readging": "ぼうぼう", + "pos": "名詞", + "pn": 0.350539 + }, + { + "surface": "全うする", + "readging": "まっとうする", + "pos": "動詞", + "pn": 0.350399 + }, + { + "surface": "高給", + "readging": "こうきゅう", + "pos": "名詞", + "pn": 0.35026 + }, + { + "surface": "風神", + "readging": "ふうじん", + "pos": "名詞", + "pn": 0.349827 + }, + { + "surface": "保健", + "readging": "ほけん", + "pos": "名詞", + "pn": 0.349255 + }, + { + "surface": "潤沢", + "readging": "じゅんたく", + "pos": "名詞", + "pn": 0.348778 + }, + { + "surface": "奇声", + "readging": "きせい", + "pos": "名詞", + "pn": 0.348715 + }, + { + "surface": "愉快", + "readging": "ゆかい", + "pos": "名詞", + "pn": 0.348698 + }, + { + "surface": "とんとん拍子", + "readging": "とんとんびょうし", + "pos": "名詞", + "pn": 0.348417 + }, + { + "surface": "敏活", + "readging": "びんかつ", + "pos": "名詞", + "pn": 0.347459 + }, + { + "surface": "至上", + "readging": "しじょう", + "pos": "名詞", + "pn": 0.346979 + }, + { + "surface": "仁", + "readging": "じん", + "pos": "名詞", + "pn": 0.346824 + }, + { + "surface": "便宜", + "readging": "びんぎ", + "pos": "名詞", + "pn": 0.345096 + }, + { + "surface": "名菓", + "readging": "めいか", + "pos": "名詞", + "pn": 0.34428 + }, + { + "surface": "法螺吹き", + "readging": "ほらふき", + "pos": "名詞", + "pn": 0.344217 + }, + { + "surface": "奮発", + "readging": "ふんぱつ", + "pos": "名詞", + "pn": 0.343974 + }, + { + "surface": "満つ", + "readging": "みつ", + "pos": "動詞", + "pn": 0.343188 + }, + { + "surface": "光画", + "readging": "こうが", + "pos": "名詞", + "pn": 0.34312 + }, + { + "surface": "恵み", + "readging": "めぐみ", + "pos": "名詞", + "pn": 0.342622 + }, + { + "surface": "刀鍛冶", + "readging": "かたなかじ", + "pos": "名詞", + "pn": 0.34237 + }, + { + "surface": "なるたけ", + "readging": "なるたけ", + "pos": "副詞", + "pn": 0.342085 + }, + { + "surface": "新涼", + "readging": "しんりょう", + "pos": "名詞", + "pn": 0.342029 + }, + { + "surface": "今晩", + "readging": "こんばん", + "pos": "名詞", + "pn": 0.341654 + }, + { + "surface": "冴える", + "readging": "さえる", + "pos": "動詞", + "pn": 0.341453 + }, + { + "surface": "しじま", + "readging": "しじま", + "pos": "名詞", + "pn": 0.341394 + }, + { + "surface": "昨非今是", + "readging": "さくひこんぜ", + "pos": "名詞", + "pn": 0.341302 + }, + { + "surface": "配剤", + "readging": "はいざい", + "pos": "名詞", + "pn": 0.340654 + }, + { + "surface": "温容", + "readging": "おんよう", + "pos": "名詞", + "pn": 0.33939 + }, + { + "surface": "瞠若", + "readging": "どうじゃく", + "pos": "名詞", + "pn": 0.33881 + }, + { + "surface": "眺め", + "readging": "ながめ", + "pos": "名詞", + "pn": 0.338146 + }, + { + "surface": "最高学府", + "readging": "さいこうがくふ", + "pos": "名詞", + "pn": 0.33813 + }, + { + "surface": "人並", + "readging": "ひとなみ", + "pos": "名詞", + "pn": 0.337603 + }, + { + "surface": "濁酒", + "readging": "にごりざけ", + "pos": "名詞", + "pn": 0.336652 + }, + { + "surface": "国界", + "readging": "こっかい", + "pos": "名詞", + "pn": 0.336537 + }, + { + "surface": "夫婦", + "readging": "ふうふ", + "pos": "名詞", + "pn": 0.33645 + }, + { + "surface": "カップ", + "readging": "カップ", + "pos": "名詞", + "pn": 0.335737 + }, + { + "surface": "七福神", + "readging": "しちふくじん", + "pos": "名詞", + "pn": 0.335683 + }, + { + "surface": "懐く", + "readging": "なつく", + "pos": "動詞", + "pn": 0.335589 + }, + { + "surface": "あにい", + "readging": "あにい", + "pos": "名詞", + "pn": 0.335412 + }, + { + "surface": "交友", + "readging": "こうゆう", + "pos": "名詞", + "pn": 0.335369 + }, + { + "surface": "天授", + "readging": "てんじゅ", + "pos": "名詞", + "pn": 0.335252 + }, + { + "surface": "急務", + "readging": "きゅうむ", + "pos": "名詞", + "pn": 0.335088 + }, + { + "surface": "深邃", + "readging": "しんすい", + "pos": "名詞", + "pn": 0.334968 + }, + { + "surface": "宿世", + "readging": "すくせ", + "pos": "名詞", + "pn": 0.33478 + }, + { + "surface": "折しも", + "readging": "おりしも", + "pos": "副詞", + "pn": 0.334723 + }, + { + "surface": "常駐", + "readging": "じょうちゅう", + "pos": "名詞", + "pn": 0.334364 + }, + { + "surface": "調法", + "readging": "ちょうほう", + "pos": "名詞", + "pn": 0.334304 + }, + { + "surface": "年甲斐", + "readging": "としがい", + "pos": "名詞", + "pn": 0.334164 + }, + { + "surface": "不釣合", + "readging": "ふつりあい", + "pos": "名詞", + "pn": 0.333426 + }, + { + "surface": "多望", + "readging": "たぼう", + "pos": "名詞", + "pn": 0.333359 + }, + { + "surface": "夜夜", + "readging": "よよ", + "pos": "名詞", + "pn": 0.333131 + }, + { + "surface": "交じらい", + "readging": "まじらい", + "pos": "名詞", + "pn": 0.332957 + }, + { + "surface": "公知", + "readging": "こうち", + "pos": "名詞", + "pn": 0.331931 + }, + { + "surface": "福耳", + "readging": "ふくみみ", + "pos": "名詞", + "pn": 0.331647 + }, + { + "surface": "きょろりと", + "readging": "きょろりと", + "pos": "副詞", + "pn": 0.331361 + }, + { + "surface": "白練", + "readging": "しろねり", + "pos": "名詞", + "pn": 0.330821 + }, + { + "surface": "安静", + "readging": "あんせい", + "pos": "名詞", + "pn": 0.330733 + }, + { + "surface": "高峰", + "readging": "こうほう", + "pos": "名詞", + "pn": 0.330106 + }, + { + "surface": "至孝", + "readging": "しこう", + "pos": "名詞", + "pn": 0.329725 + }, + { + "surface": "ずばずば", + "readging": "ずばずば", + "pos": "副詞", + "pn": 0.32893 + }, + { + "surface": "盛挙", + "readging": "せいきょ", + "pos": "名詞", + "pn": 0.328926 + }, + { + "surface": "風格", + "readging": "ふうかく", + "pos": "名詞", + "pn": 0.328727 + }, + { + "surface": "取り得", + "readging": "とりどく", + "pos": "名詞", + "pn": 0.328649 + }, + { + "surface": "利点", + "readging": "りてん", + "pos": "名詞", + "pn": 0.328588 + }, + { + "surface": "誠忠", + "readging": "せいちゅう", + "pos": "名詞", + "pn": 0.328419 + }, + { + "surface": "二束三文", + "readging": "にそくさんもん", + "pos": "名詞", + "pn": 0.328386 + }, + { + "surface": "雅味", + "readging": "がみ", + "pos": "名詞", + "pn": 0.328094 + }, + { + "surface": "馴致", + "readging": "じゅんち", + "pos": "名詞", + "pn": 0.327599 + }, + { + "surface": "正直", + "readging": "しょうじき", + "pos": "名詞", + "pn": 0.327221 + }, + { + "surface": "活躍", + "readging": "かつやく", + "pos": "名詞", + "pn": 0.326868 + }, + { + "surface": "ディレッタント", + "readging": "ディレッタント", + "pos": "名詞", + "pn": 0.326714 + }, + { + "surface": "場馴れ", + "readging": "ばなれ", + "pos": "名詞", + "pn": 0.326681 + }, + { + "surface": "滋味", + "readging": "じみ", + "pos": "名詞", + "pn": 0.32667 + }, + { + "surface": "改組", + "readging": "かいそ", + "pos": "名詞", + "pn": 0.326608 + }, + { + "surface": "晩景", + "readging": "ばんけい", + "pos": "名詞", + "pn": 0.325587 + }, + { + "surface": "外信", + "readging": "がいしん", + "pos": "名詞", + "pn": 0.325088 + }, + { + "surface": "馴染", + "readging": "なじみ", + "pos": "名詞", + "pn": 0.324497 + }, + { + "surface": "別嬪", + "readging": "べっぴん", + "pos": "名詞", + "pn": 0.324485 + }, + { + "surface": "奇骨", + "readging": "きこつ", + "pos": "名詞", + "pn": 0.324165 + }, + { + "surface": "儒者", + "readging": "じゅしゃ", + "pos": "名詞", + "pn": 0.323901 + }, + { + "surface": "起筆", + "readging": "きひつ", + "pos": "名詞", + "pn": 0.323571 + }, + { + "surface": "懐古", + "readging": "かいこ", + "pos": "名詞", + "pn": 0.32341 + }, + { + "surface": "規則立つ", + "readging": "きそくだつ", + "pos": "動詞", + "pn": 0.322517 + }, + { + "surface": "見破る", + "readging": "みやぶる", + "pos": "動詞", + "pn": 0.322109 + }, + { + "surface": "確固", + "readging": "かっこ", + "pos": "名詞", + "pn": 0.321904 + }, + { + "surface": "アベ マリア", + "readging": "アベ マリア", + "pos": "名詞", + "pn": 0.321851 + }, + { + "surface": "パラダイス", + "readging": "パラダイス", + "pos": "名詞", + "pn": 0.321699 + }, + { + "surface": "眩しい", + "readging": "まぶしい", + "pos": "形容詞", + "pn": 0.320928 + }, + { + "surface": "一視同仁", + "readging": "いっしどうじん", + "pos": "名詞", + "pn": 0.320752 + }, + { + "surface": "慊焉", + "readging": "けんえん", + "pos": "名詞", + "pn": 0.320576 + }, + { + "surface": "径行", + "readging": "けいこう", + "pos": "名詞", + "pn": 0.320419 + }, + { + "surface": "侠勇", + "readging": "きょうゆう", + "pos": "名詞", + "pn": 0.318364 + }, + { + "surface": "永生", + "readging": "えいせい", + "pos": "名詞", + "pn": 0.3183 + }, + { + "surface": "勝ち戦", + "readging": "かちいくさ", + "pos": "名詞", + "pn": 0.317926 + }, + { + "surface": "一品", + "readging": "いっぽん", + "pos": "名詞", + "pn": 0.317616 + }, + { + "surface": "咬創", + "readging": "こうそう", + "pos": "名詞", + "pn": 0.316079 + }, + { + "surface": "皺寄せ", + "readging": "しわよせ", + "pos": "名詞", + "pn": 0.315716 + }, + { + "surface": "ひょっこり", + "readging": "ひょっこり", + "pos": "副詞", + "pn": 0.315513 + }, + { + "surface": "厚様", + "readging": "あつよう", + "pos": "名詞", + "pn": 0.315297 + }, + { + "surface": "抱取る", + "readging": "だきとる", + "pos": "動詞", + "pn": 0.315162 + }, + { + "surface": "奇行", + "readging": "きこう", + "pos": "名詞", + "pn": 0.314887 + }, + { + "surface": "比べ物", + "readging": "くらべもの", + "pos": "名詞", + "pn": 0.314567 + }, + { + "surface": "御代", + "readging": "みよ", + "pos": "名詞", + "pn": 0.314467 + }, + { + "surface": "山場", + "readging": "やまば", + "pos": "名詞", + "pn": 0.314406 + }, + { + "surface": "舵手", + "readging": "だしゅ", + "pos": "名詞", + "pn": 0.314345 + }, + { + "surface": "公明正大", + "readging": "こうめいせいだい", + "pos": "名詞", + "pn": 0.314242 + }, + { + "surface": "養老", + "readging": "ようろう", + "pos": "名詞", + "pn": 0.31389 + }, + { + "surface": "視覚化", + "readging": "しかくか", + "pos": "名詞", + "pn": 0.313777 + }, + { + "surface": "愛子", + "readging": "いとしご", + "pos": "名詞", + "pn": 0.313131 + }, + { + "surface": "義金", + "readging": "ぎきん", + "pos": "名詞", + "pn": 0.313128 + }, + { + "surface": "武将", + "readging": "ぶしょう", + "pos": "名詞", + "pn": 0.312665 + }, + { + "surface": "弓取", + "readging": "ゆみとり", + "pos": "名詞", + "pn": 0.312578 + }, + { + "surface": "石亀", + "readging": "いしがめ", + "pos": "名詞", + "pn": 0.312535 + }, + { + "surface": "平易", + "readging": "へいい", + "pos": "名詞", + "pn": 0.312348 + }, + { + "surface": "好誼", + "readging": "こうぎ", + "pos": "名詞", + "pn": 0.312198 + }, + { + "surface": "盛暑", + "readging": "せいしょ", + "pos": "名詞", + "pn": 0.312062 + }, + { + "surface": "愛馬", + "readging": "あいば", + "pos": "名詞", + "pn": 0.311807 + }, + { + "surface": "跛行", + "readging": "はこう", + "pos": "名詞", + "pn": 0.311159 + }, + { + "surface": "無税", + "readging": "むぜい", + "pos": "名詞", + "pn": 0.311098 + }, + { + "surface": "著名", + "readging": "ちょめい", + "pos": "名詞", + "pn": 0.311007 + }, + { + "surface": "敬", + "readging": "けい", + "pos": "名詞", + "pn": 0.310565 + }, + { + "surface": "斧鉞", + "readging": "ふえつ", + "pos": "名詞", + "pn": 0.309138 + }, + { + "surface": "輿望", + "readging": "よぼう", + "pos": "名詞", + "pn": 0.308794 + }, + { + "surface": "白湯", + "readging": "さゆ", + "pos": "名詞", + "pn": 0.308468 + }, + { + "surface": "活仏", + "readging": "かつぶつ", + "pos": "名詞", + "pn": 0.308449 + }, + { + "surface": "興ずる", + "readging": "きょうずる", + "pos": "動詞", + "pn": 0.30844 + }, + { + "surface": "聖旨", + "readging": "せいし", + "pos": "名詞", + "pn": 0.308114 + }, + { + "surface": "霊薬", + "readging": "れいやく", + "pos": "名詞", + "pn": 0.308094 + }, + { + "surface": "糠床", + "readging": "ぬかどこ", + "pos": "名詞", + "pn": 0.308062 + }, + { + "surface": "心ならずも", + "readging": "こころならずも", + "pos": "副詞", + "pn": 0.30797 + }, + { + "surface": "霜月", + "readging": "しもつき", + "pos": "名詞", + "pn": 0.307788 + }, + { + "surface": "くっきり", + "readging": "くっきり", + "pos": "副詞", + "pn": 0.30759 + }, + { + "surface": "増し", + "readging": "まし", + "pos": "名詞", + "pn": 0.307512 + }, + { + "surface": "勧業", + "readging": "かんぎょう", + "pos": "名詞", + "pn": 0.307485 + }, + { + "surface": "襟度", + "readging": "きんど", + "pos": "名詞", + "pn": 0.307236 + }, + { + "surface": "寄る辺", + "readging": "よるべ", + "pos": "名詞", + "pn": 0.307099 + }, + { + "surface": "歌詠み", + "readging": "うたよみ", + "pos": "名詞", + "pn": 0.305821 + }, + { + "surface": "肥", + "readging": "こえ", + "pos": "名詞", + "pn": 0.305802 + }, + { + "surface": "捌ける", + "readging": "はける", + "pos": "動詞", + "pn": 0.305044 + }, + { + "surface": "風雅", + "readging": "ふうが", + "pos": "名詞", + "pn": 0.305026 + }, + { + "surface": "家信", + "readging": "かしん", + "pos": "名詞", + "pn": 0.304701 + }, + { + "surface": "千尋", + "readging": "ちひろ", + "pos": "名詞", + "pn": 0.303596 + }, + { + "surface": "離れ業", + "readging": "はなれわざ", + "pos": "名詞", + "pn": 0.303429 + }, + { + "surface": "誠に", + "readging": "まことに", + "pos": "副詞", + "pn": 0.303085 + }, + { + "surface": "滝つ瀬", + "readging": "たきつせ", + "pos": "名詞", + "pn": 0.302365 + }, + { + "surface": "精察", + "readging": "せいさつ", + "pos": "名詞", + "pn": 0.301911 + }, + { + "surface": "英学", + "readging": "えいがく", + "pos": "名詞", + "pn": 0.301287 + }, + { + "surface": "改姓", + "readging": "かいせい", + "pos": "名詞", + "pn": 0.30058 + }, + { + "surface": "尊称", + "readging": "そんしょう", + "pos": "名詞", + "pn": 0.29972 + }, + { + "surface": "日子", + "readging": "にっし", + "pos": "名詞", + "pn": 0.299679 + }, + { + "surface": "激増", + "readging": "げきぞう", + "pos": "名詞", + "pn": 0.299023 + }, + { + "surface": "苦節", + "readging": "くせつ", + "pos": "名詞", + "pn": 0.298632 + }, + { + "surface": "便宜", + "readging": "べんぎ", + "pos": "名詞", + "pn": 0.298462 + }, + { + "surface": "てきぱき", + "readging": "てきぱき", + "pos": "副詞", + "pn": 0.298337 + }, + { + "surface": "気韻", + "readging": "きいん", + "pos": "名詞", + "pn": 0.298304 + }, + { + "surface": "習練", + "readging": "しゅうれん", + "pos": "名詞", + "pn": 0.296935 + }, + { + "surface": "迸る", + "readging": "ほとばしる", + "pos": "動詞", + "pn": 0.296649 + }, + { + "surface": "理法", + "readging": "りほう", + "pos": "名詞", + "pn": 0.296496 + }, + { + "surface": "名言", + "readging": "めいげん", + "pos": "名詞", + "pn": 0.296438 + }, + { + "surface": "帰依", + "readging": "きえ", + "pos": "名詞", + "pn": 0.296431 + }, + { + "surface": "艶姿", + "readging": "あですがた", + "pos": "名詞", + "pn": 0.296179 + }, + { + "surface": "空頼み", + "readging": "そらだのみ", + "pos": "名詞", + "pn": 0.295654 + }, + { + "surface": "見巧者", + "readging": "みごうしゃ", + "pos": "名詞", + "pn": 0.295355 + }, + { + "surface": "該当", + "readging": "がいとう", + "pos": "名詞", + "pn": 0.294957 + }, + { + "surface": "常置", + "readging": "じょうち", + "pos": "名詞", + "pn": 0.294712 + }, + { + "surface": "拠所", + "readging": "よりどころ", + "pos": "名詞", + "pn": 0.294019 + }, + { + "surface": "貨殖", + "readging": "かしょく", + "pos": "名詞", + "pn": 0.293712 + }, + { + "surface": "完膚", + "readging": "かんぷ", + "pos": "名詞", + "pn": 0.293439 + }, + { + "surface": "風流", + "readging": "ふりゅう", + "pos": "名詞", + "pn": 0.293131 + }, + { + "surface": "溺愛", + "readging": "できあい", + "pos": "名詞", + "pn": 0.29175 + }, + { + "surface": "無期限", + "readging": "むきげん", + "pos": "名詞", + "pn": 0.291056 + }, + { + "surface": "奇効", + "readging": "きこう", + "pos": "名詞", + "pn": 0.290702 + }, + { + "surface": "努める", + "readging": "つとめる", + "pos": "動詞", + "pn": 0.290556 + }, + { + "surface": "放念", + "readging": "ほうねん", + "pos": "名詞", + "pn": 0.29045 + }, + { + "surface": "大層", + "readging": "たいそう", + "pos": "副詞", + "pn": 0.29035 + }, + { + "surface": "詳説", + "readging": "しょうせつ", + "pos": "名詞", + "pn": 0.290005 + }, + { + "surface": "健", + "readging": "けん", + "pos": "名詞", + "pn": 0.289689 + }, + { + "surface": "邁進", + "readging": "まいしん", + "pos": "名詞", + "pn": 0.289123 + }, + { + "surface": "大当り", + "readging": "おおあたり", + "pos": "名詞", + "pn": 0.288466 + }, + { + "surface": "若い者", + "readging": "わかいもの", + "pos": "名詞", + "pn": 0.288065 + }, + { + "surface": "お慰み", + "readging": "おなぐさみ", + "pos": "名詞", + "pn": 0.287778 + }, + { + "surface": "拇指", + "readging": "ぼし", + "pos": "名詞", + "pn": 0.287738 + }, + { + "surface": "健児", + "readging": "けんじ", + "pos": "名詞", + "pn": 0.287503 + }, + { + "surface": "不摂生", + "readging": "ふせっせい", + "pos": "名詞", + "pn": 0.28742 + }, + { + "surface": "黙りこくる", + "readging": "だまりこくる", + "pos": "動詞", + "pn": 0.287263 + }, + { + "surface": "急便", + "readging": "きゅうびん", + "pos": "名詞", + "pn": 0.287117 + }, + { + "surface": "日数", + "readging": "にっすう", + "pos": "名詞", + "pn": 0.286621 + }, + { + "surface": "武", + "readging": "む", + "pos": "名詞", + "pn": 0.28602 + }, + { + "surface": "問わず語り", + "readging": "とわずがたり", + "pos": "名詞", + "pn": 0.285621 + }, + { + "surface": "琢磨", + "readging": "たくま", + "pos": "名詞", + "pn": 0.285419 + }, + { + "surface": "満ち足りる", + "readging": "みちたりる", + "pos": "動詞", + "pn": 0.285384 + }, + { + "surface": "完備", + "readging": "かんび", + "pos": "名詞", + "pn": 0.285249 + }, + { + "surface": "延び延び", + "readging": "のびのび", + "pos": "副詞", + "pn": 0.285063 + }, + { + "surface": "交情", + "readging": "こうじょう", + "pos": "名詞", + "pn": 0.284954 + }, + { + "surface": "風速", + "readging": "ふうそく", + "pos": "名詞", + "pn": 0.284393 + }, + { + "surface": "貧乏性", + "readging": "びんぼうしょう", + "pos": "名詞", + "pn": 0.283871 + }, + { + "surface": "風趣", + "readging": "ふうしゅ", + "pos": "名詞", + "pn": 0.283825 + }, + { + "surface": "表立つ", + "readging": "おもてだつ", + "pos": "動詞", + "pn": 0.283644 + }, + { + "surface": "信仰", + "readging": "しんこう", + "pos": "名詞", + "pn": 0.282355 + }, + { + "surface": "声価", + "readging": "せいか", + "pos": "名詞", + "pn": 0.282324 + }, + { + "surface": "落ち着き払う", + "readging": "おちつきはらう", + "pos": "動詞", + "pn": 0.28217 + }, + { + "surface": "嬌笑", + "readging": "きょうしょう", + "pos": "名詞", + "pn": 0.282006 + }, + { + "surface": "親日", + "readging": "しんにち", + "pos": "名詞", + "pn": 0.281795 + }, + { + "surface": "楽", + "readging": "がく", + "pos": "名詞", + "pn": 0.281665 + }, + { + "surface": "人肌", + "readging": "ひとはだ", + "pos": "名詞", + "pn": 0.280983 + }, + { + "surface": "警句", + "readging": "けいく", + "pos": "名詞", + "pn": 0.28094 + }, + { + "surface": "優婉", + "readging": "ゆうえん", + "pos": "名詞", + "pn": 0.280727 + }, + { + "surface": "葦戸", + "readging": "よしど", + "pos": "名詞", + "pn": 0.280412 + }, + { + "surface": "本願", + "readging": "ほんがん", + "pos": "名詞", + "pn": 0.280273 + }, + { + "surface": "恋敵", + "readging": "こいがたき", + "pos": "名詞", + "pn": 0.279851 + }, + { + "surface": "聖母", + "readging": "せいぼ", + "pos": "名詞", + "pn": 0.279746 + }, + { + "surface": "青少年", + "readging": "せいしょうねん", + "pos": "名詞", + "pn": 0.278943 + }, + { + "surface": "近時", + "readging": "きんじ", + "pos": "名詞", + "pn": 0.278877 + }, + { + "surface": "上製", + "readging": "じょうせい", + "pos": "名詞", + "pn": 0.278602 + }, + { + "surface": "雅趣", + "readging": "がしゅ", + "pos": "名詞", + "pn": 0.278402 + }, + { + "surface": "如意宝珠", + "readging": "にょいほうじゅ", + "pos": "名詞", + "pn": 0.27809 + }, + { + "surface": "レクリエーション", + "readging": "レクリエーション", + "pos": "名詞", + "pn": 0.277795 + }, + { + "surface": "銀時計", + "readging": "ぎんどけい", + "pos": "名詞", + "pn": 0.277759 + }, + { + "surface": "随順", + "readging": "ずいじゅん", + "pos": "名詞", + "pn": 0.277612 + }, + { + "surface": "口添え", + "readging": "くちぞえ", + "pos": "名詞", + "pn": 0.27654 + }, + { + "surface": "祈年祭", + "readging": "きねんさい", + "pos": "名詞", + "pn": 0.2764 + }, + { + "surface": "ブイ", + "readging": "ブイ", + "pos": "名詞", + "pn": 0.276378 + }, + { + "surface": "関の山", + "readging": "せきのやま", + "pos": "名詞", + "pn": 0.276076 + }, + { + "surface": "門下生", + "readging": "もんかせい", + "pos": "名詞", + "pn": 0.275963 + }, + { + "surface": "蚕児", + "readging": "さんじ", + "pos": "名詞", + "pn": 0.275376 + }, + { + "surface": "勝因", + "readging": "しょういん", + "pos": "名詞", + "pn": 0.275044 + }, + { + "surface": "互選", + "readging": "ごせん", + "pos": "名詞", + "pn": 0.274935 + }, + { + "surface": "根強い", + "readging": "ねづよい", + "pos": "形容詞", + "pn": 0.274348 + }, + { + "surface": "文無し", + "readging": "もんなし", + "pos": "名詞", + "pn": 0.27427 + }, + { + "surface": "長らえる", + "readging": "ながらえる", + "pos": "動詞", + "pn": 0.27422 + }, + { + "surface": "無敵", + "readging": "むてき", + "pos": "名詞", + "pn": 0.274109 + }, + { + "surface": "師伝", + "readging": "しでん", + "pos": "名詞", + "pn": 0.273549 + }, + { + "surface": "無辺際", + "readging": "むへんざい", + "pos": "名詞", + "pn": 0.273508 + }, + { + "surface": "おっとり", + "readging": "おっとり", + "pos": "副詞", + "pn": 0.273239 + }, + { + "surface": "寝過す", + "readging": "ねすごす", + "pos": "動詞", + "pn": 0.27282 + }, + { + "surface": "外柔内剛", + "readging": "がいじゅうないごう", + "pos": "名詞", + "pn": 0.27203 + }, + { + "surface": "禅味", + "readging": "ぜんみ", + "pos": "名詞", + "pn": 0.271191 + }, + { + "surface": "解読", + "readging": "かいどく", + "pos": "名詞", + "pn": 0.27056 + }, + { + "surface": "門生", + "readging": "もんせい", + "pos": "名詞", + "pn": 0.270191 + }, + { + "surface": "蚕", + "readging": "こ", + "pos": "名詞", + "pn": 0.270093 + }, + { + "surface": "自得", + "readging": "じとく", + "pos": "名詞", + "pn": 0.269756 + }, + { + "surface": "さ緑", + "readging": "さみどり", + "pos": "名詞", + "pn": 0.269691 + }, + { + "surface": "円転滑脱", + "readging": "えんてんかつだつ", + "pos": "名詞", + "pn": 0.26944 + }, + { + "surface": "遺徳", + "readging": "いとく", + "pos": "名詞", + "pn": 0.269286 + }, + { + "surface": "出目金", + "readging": "でめきん", + "pos": "名詞", + "pn": 0.268748 + }, + { + "surface": "無二", + "readging": "むに", + "pos": "名詞", + "pn": 0.268504 + }, + { + "surface": "走禽", + "readging": "そうきん", + "pos": "名詞", + "pn": 0.267929 + }, + { + "surface": "淡淡", + "readging": "たんたん", + "pos": "名詞", + "pn": 0.267907 + }, + { + "surface": "飛切り", + "readging": "とびきり", + "pos": "名詞", + "pn": 0.267761 + }, + { + "surface": "冴渡る", + "readging": "さえわたる", + "pos": "動詞", + "pn": 0.26736 + }, + { + "surface": "教え子", + "readging": "おしえご", + "pos": "名詞", + "pn": 0.267304 + }, + { + "surface": "丈比べ", + "readging": "たけくらべ", + "pos": "名詞", + "pn": 0.267284 + }, + { + "surface": "見性", + "readging": "けんしょう", + "pos": "名詞", + "pn": 0.267043 + }, + { + "surface": "不思議", + "readging": "ふしぎ", + "pos": "名詞", + "pn": 0.266928 + }, + { + "surface": "インテリジェンス", + "readging": "インテリジェンス", + "pos": "名詞", + "pn": 0.266872 + }, + { + "surface": "仁君", + "readging": "じんくん", + "pos": "名詞", + "pn": 0.266758 + }, + { + "surface": "醍醐味", + "readging": "だいごみ", + "pos": "名詞", + "pn": 0.266758 + }, + { + "surface": "殖産", + "readging": "しょくさん", + "pos": "名詞", + "pn": 0.266441 + }, + { + "surface": "生辰", + "readging": "せいしん", + "pos": "名詞", + "pn": 0.265977 + }, + { + "surface": "閑閑", + "readging": "かんかん", + "pos": "名詞", + "pn": 0.265844 + }, + { + "surface": "冷静", + "readging": "れいせい", + "pos": "名詞", + "pn": 0.26558 + }, + { + "surface": "捷", + "readging": "しょう", + "pos": "名詞", + "pn": 0.264843 + }, + { + "surface": "売口", + "readging": "うりくち", + "pos": "名詞", + "pn": 0.264559 + }, + { + "surface": "今日", + "readging": "こんにち", + "pos": "名詞", + "pn": 0.2645 + }, + { + "surface": "詩家", + "readging": "しか", + "pos": "名詞", + "pn": 0.264019 + }, + { + "surface": "長老", + "readging": "ちょうろう", + "pos": "名詞", + "pn": 0.263896 + }, + { + "surface": "付き合い", + "readging": "つきあい", + "pos": "名詞", + "pn": 0.263285 + }, + { + "surface": "奇知", + "readging": "きち", + "pos": "名詞", + "pn": 0.263239 + }, + { + "surface": "恩沢", + "readging": "おんたく", + "pos": "名詞", + "pn": 0.263141 + }, + { + "surface": "観梅", + "readging": "かんばい", + "pos": "名詞", + "pn": 0.262855 + }, + { + "surface": "妙計", + "readging": "みょうけい", + "pos": "名詞", + "pn": 0.262816 + }, + { + "surface": "アダルト", + "readging": "アダルト", + "pos": "名詞", + "pn": 0.262449 + }, + { + "surface": "画趣", + "readging": "がしゅ", + "pos": "名詞", + "pn": 0.262362 + }, + { + "surface": "聞入れる", + "readging": "ききいれる", + "pos": "動詞", + "pn": 0.26208 + }, + { + "surface": "生かる", + "readging": "いかる", + "pos": "動詞", + "pn": 0.261916 + }, + { + "surface": "楽園", + "readging": "らくえん", + "pos": "名詞", + "pn": 0.261264 + }, + { + "surface": "粗朶", + "readging": "そだ", + "pos": "名詞", + "pn": 0.261231 + }, + { + "surface": "尾大", + "readging": "びだい", + "pos": "名詞", + "pn": 0.261206 + }, + { + "surface": "どん底", + "readging": "どんぞこ", + "pos": "名詞", + "pn": 0.261051 + }, + { + "surface": "付合", + "readging": "つけあい", + "pos": "名詞", + "pn": 0.260877 + }, + { + "surface": "賜る", + "readging": "たまわる", + "pos": "動詞", + "pn": 0.260764 + }, + { + "surface": "改号", + "readging": "かいごう", + "pos": "名詞", + "pn": 0.260661 + }, + { + "surface": "示現", + "readging": "じげん", + "pos": "名詞", + "pn": 0.259701 + }, + { + "surface": "愛慕", + "readging": "あいぼ", + "pos": "名詞", + "pn": 0.259618 + }, + { + "surface": "躍動", + "readging": "やくどう", + "pos": "名詞", + "pn": 0.259531 + }, + { + "surface": "一言居士", + "readging": "いちげんこじ", + "pos": "名詞", + "pn": 0.259165 + }, + { + "surface": "自然主義", + "readging": "しぜんしゅぎ", + "pos": "名詞", + "pn": 0.259061 + }, + { + "surface": "青眼", + "readging": "せいがん", + "pos": "名詞", + "pn": 0.258881 + }, + { + "surface": "キス", + "readging": "キス", + "pos": "名詞", + "pn": 0.258864 + }, + { + "surface": "高禄", + "readging": "こうろく", + "pos": "名詞", + "pn": 0.257903 + }, + { + "surface": "巨匠", + "readging": "きょしょう", + "pos": "名詞", + "pn": 0.2578 + }, + { + "surface": "金製", + "readging": "きんせい", + "pos": "名詞", + "pn": 0.257718 + }, + { + "surface": "日進月歩", + "readging": "にっしんげっぽ", + "pos": "名詞", + "pn": 0.257365 + }, + { + "surface": "毎夜", + "readging": "まいよ", + "pos": "名詞", + "pn": 0.257049 + }, + { + "surface": "涼風", + "readging": "すずかぜ", + "pos": "名詞", + "pn": 0.256785 + }, + { + "surface": "慰謝", + "readging": "いしゃ", + "pos": "名詞", + "pn": 0.256753 + }, + { + "surface": "同姓", + "readging": "どうせい", + "pos": "名詞", + "pn": 0.256119 + }, + { + "surface": "休神", + "readging": "きゅうしん", + "pos": "名詞", + "pn": 0.256014 + }, + { + "surface": "天籟", + "readging": "てんらい", + "pos": "名詞", + "pn": 0.255255 + }, + { + "surface": "急湍", + "readging": "きゅうたん", + "pos": "名詞", + "pn": 0.255039 + }, + { + "surface": "誇称", + "readging": "こしょう", + "pos": "名詞", + "pn": 0.253915 + }, + { + "surface": "立行く", + "readging": "たちゆく", + "pos": "動詞", + "pn": 0.253571 + }, + { + "surface": "選抜", + "readging": "せんばつ", + "pos": "名詞", + "pn": 0.253267 + }, + { + "surface": "知将", + "readging": "ちしょう", + "pos": "名詞", + "pn": 0.253171 + }, + { + "surface": "胡地", + "readging": "こち", + "pos": "名詞", + "pn": 0.253031 + }, + { + "surface": "てかてか", + "readging": "てかてか", + "pos": "副詞", + "pn": 0.2527 + }, + { + "surface": "残香", + "readging": "のこりか", + "pos": "名詞", + "pn": 0.252568 + }, + { + "surface": "悲壮", + "readging": "ひそう", + "pos": "名詞", + "pn": 0.252196 + }, + { + "surface": "宝前", + "readging": "ほうぜん", + "pos": "名詞", + "pn": 0.251859 + }, + { + "surface": "仁恵", + "readging": "じんけい", + "pos": "名詞", + "pn": 0.251785 + }, + { + "surface": "猛者", + "readging": "もさ", + "pos": "名詞", + "pn": 0.251769 + }, + { + "surface": "猫撫で声", + "readging": "ねこなでごえ", + "pos": "名詞", + "pn": 0.251495 + }, + { + "surface": "浄福", + "readging": "じょうふく", + "pos": "名詞", + "pn": 0.251411 + }, + { + "surface": "御蔭", + "readging": "おかげ", + "pos": "名詞", + "pn": 0.251093 + }, + { + "surface": "快楽", + "readging": "かいらく", + "pos": "名詞", + "pn": 0.251041 + }, + { + "surface": "心掛ける", + "readging": "こころがける", + "pos": "動詞", + "pn": 0.250774 + }, + { + "surface": "ロー ティーン", + "readging": "ロー ティーン", + "pos": "名詞", + "pn": 0.250414 + }, + { + "surface": "順法", + "readging": "じゅんぽう", + "pos": "名詞", + "pn": 0.249762 + }, + { + "surface": "何食わぬ顔", + "readging": "なにくわぬかお", + "pos": "名詞", + "pn": 0.249605 + }, + { + "surface": "速断", + "readging": "そくだん", + "pos": "名詞", + "pn": 0.249597 + }, + { + "surface": "領掌", + "readging": "りょうじょう", + "pos": "名詞", + "pn": 0.249566 + }, + { + "surface": "昨日今日", + "readging": "きのうきょう", + "pos": "名詞", + "pn": 0.249062 + }, + { + "surface": "言わずもがな", + "readging": "いわずもがな", + "pos": "副詞", + "pn": 0.24791 + }, + { + "surface": "宝物", + "readging": "たからもの", + "pos": "名詞", + "pn": 0.24731 + }, + { + "surface": "手前味噌", + "readging": "てまえ", + "pos": "名詞", + "pn": 0.247307 + }, + { + "surface": "知らす", + "readging": "しらす", + "pos": "動詞", + "pn": 0.24726 + }, + { + "surface": "ベーゼ", + "readging": "ベーゼ", + "pos": "名詞", + "pn": 0.246718 + }, + { + "surface": "強腰", + "readging": "つよごし", + "pos": "名詞", + "pn": 0.246674 + }, + { + "surface": "友誼", + "readging": "ゆうぎ", + "pos": "名詞", + "pn": 0.24559 + }, + { + "surface": "観望", + "readging": "かんぼう", + "pos": "名詞", + "pn": 0.24514 + }, + { + "surface": "採択", + "readging": "さいたく", + "pos": "名詞", + "pn": 0.244976 + }, + { + "surface": "壮年", + "readging": "そうねん", + "pos": "名詞", + "pn": 0.244149 + }, + { + "surface": "生来", + "readging": "しょうらい", + "pos": "名詞", + "pn": 0.243678 + }, + { + "surface": "真下", + "readging": "ました", + "pos": "名詞", + "pn": 0.243536 + }, + { + "surface": "大人", + "readging": "おとなしい", + "pos": "形容詞", + "pn": 0.243448 + }, + { + "surface": "天啓", + "readging": "てんけい", + "pos": "名詞", + "pn": 0.243446 + }, + { + "surface": "氏子中", + "readging": "うじこ", + "pos": "名詞", + "pn": 0.242936 + }, + { + "surface": "切回す", + "readging": "きりまわす", + "pos": "動詞", + "pn": 0.242446 + }, + { + "surface": "大願", + "readging": "だいがん", + "pos": "名詞", + "pn": 0.242011 + }, + { + "surface": "剣術", + "readging": "けんじゅつ", + "pos": "名詞", + "pn": 0.241797 + }, + { + "surface": "余裕綽綽", + "readging": "よゆうしゃくしゃく", + "pos": "名詞", + "pn": 0.241405 + }, + { + "surface": "淡味", + "readging": "たんみ", + "pos": "名詞", + "pn": 0.241126 + }, + { + "surface": "捌ける", + "readging": "さばける", + "pos": "動詞", + "pn": 0.240728 + }, + { + "surface": "天気", + "readging": "てんき", + "pos": "名詞", + "pn": 0.24065 + }, + { + "surface": "意気地", + "readging": "いきじ", + "pos": "名詞", + "pn": 0.240608 + }, + { + "surface": "親しむ", + "readging": "したしむ", + "pos": "動詞", + "pn": 0.240471 + }, + { + "surface": "行く", + "readging": "いく", + "pos": "動詞", + "pn": 0.240438 + }, + { + "surface": "バイタリティー", + "readging": "バイタリティー", + "pos": "名詞", + "pn": 0.240216 + }, + { + "surface": "活力", + "readging": "かつりょく", + "pos": "名詞", + "pn": 0.239989 + }, + { + "surface": "直覚", + "readging": "ちょっかく", + "pos": "名詞", + "pn": 0.23981 + }, + { + "surface": "素質", + "readging": "そしつ", + "pos": "名詞", + "pn": 0.239614 + }, + { + "surface": "守", + "readging": "まもり", + "pos": "名詞", + "pn": 0.239537 + }, + { + "surface": "大慈", + "readging": "だいじ", + "pos": "名詞", + "pn": 0.239367 + }, + { + "surface": "語らう", + "readging": "かたらう", + "pos": "動詞", + "pn": 0.23908 + }, + { + "surface": "擁護", + "readging": "ようご", + "pos": "名詞", + "pn": 0.238599 + }, + { + "surface": "口上手", + "readging": "くちじょうず", + "pos": "名詞", + "pn": 0.238554 + }, + { + "surface": "美音", + "readging": "びおん", + "pos": "名詞", + "pn": 0.23838 + }, + { + "surface": "丞", + "readging": "じょう", + "pos": "名詞", + "pn": 0.238005 + }, + { + "surface": "こつこつ", + "readging": "こつこつ", + "pos": "副詞", + "pn": 0.237785 + }, + { + "surface": "めきめき", + "readging": "めきめき", + "pos": "副詞", + "pn": 0.237612 + }, + { + "surface": "込上げる", + "readging": "こみあげる", + "pos": "動詞", + "pn": 0.237567 + }, + { + "surface": "気色", + "readging": "きしょく", + "pos": "名詞", + "pn": 0.237162 + }, + { + "surface": "鉄床", + "readging": "かなとこ", + "pos": "名詞", + "pn": 0.236913 + }, + { + "surface": "眺望", + "readging": "ちょうぼう", + "pos": "名詞", + "pn": 0.236708 + }, + { + "surface": "昂然", + "readging": "こうぜん", + "pos": "名詞", + "pn": 0.236335 + }, + { + "surface": "弱冠", + "readging": "じゃっかん", + "pos": "名詞", + "pn": 0.236027 + }, + { + "surface": "合法", + "readging": "ごうほう", + "pos": "名詞", + "pn": 0.235762 + }, + { + "surface": "頗る付き", + "readging": "すこぶるつき", + "pos": "名詞", + "pn": 0.235329 + }, + { + "surface": "説示", + "readging": "せつじ", + "pos": "名詞", + "pn": 0.235262 + }, + { + "surface": "デマゴーグ", + "readging": "デマゴーグ", + "pos": "名詞", + "pn": 0.235255 + }, + { + "surface": "立女形", + "readging": "たておやま", + "pos": "名詞", + "pn": 0.234878 + }, + { + "surface": "本木", + "readging": "もとき", + "pos": "名詞", + "pn": 0.234801 + }, + { + "surface": "貢献", + "readging": "こうけん", + "pos": "名詞", + "pn": 0.234228 + }, + { + "surface": "てらてら", + "readging": "てらてら", + "pos": "副詞", + "pn": 0.233361 + }, + { + "surface": "中正", + "readging": "ちゅうせい", + "pos": "名詞", + "pn": 0.233149 + }, + { + "surface": "勲等", + "readging": "くんとう", + "pos": "名詞", + "pn": 0.23311 + }, + { + "surface": "業前", + "readging": "わざまえ", + "pos": "名詞", + "pn": 0.232568 + }, + { + "surface": "忠君", + "readging": "ちゅうくん", + "pos": "名詞", + "pn": 0.232032 + }, + { + "surface": "氏子", + "readging": "うじこ", + "pos": "名詞", + "pn": 0.231747 + }, + { + "surface": "にゅっと", + "readging": "にゅっと", + "pos": "副詞", + "pn": 0.231582 + }, + { + "surface": "木訥", + "readging": "ぼくとつ", + "pos": "名詞", + "pn": 0.23127 + }, + { + "surface": "豪語", + "readging": "ごうご", + "pos": "名詞", + "pn": 0.2307 + }, + { + "surface": "報い", + "readging": "むくい", + "pos": "名詞", + "pn": 0.230295 + }, + { + "surface": "ギャルソン", + "readging": "ギャルソン", + "pos": "名詞", + "pn": 0.229909 + }, + { + "surface": "意気投合", + "readging": "いきとうごう", + "pos": "名詞", + "pn": 0.229195 + }, + { + "surface": "凱旋", + "readging": "がいせん", + "pos": "名詞", + "pn": 0.229073 + }, + { + "surface": "幼友達", + "readging": "おさなともだち", + "pos": "名詞", + "pn": 0.229049 + }, + { + "surface": "宗教心", + "readging": "しゅうきょうしん", + "pos": "名詞", + "pn": 0.229043 + }, + { + "surface": "弱齢", + "readging": "じゃくれい", + "pos": "名詞", + "pn": 0.228948 + }, + { + "surface": "上肢", + "readging": "じょうし", + "pos": "名詞", + "pn": 0.228934 + }, + { + "surface": "赫赫", + "readging": "かくかく", + "pos": "名詞", + "pn": 0.228725 + }, + { + "surface": "保全", + "readging": "ほぜん", + "pos": "名詞", + "pn": 0.228024 + }, + { + "surface": "念願", + "readging": "ねんがん", + "pos": "名詞", + "pn": 0.227903 + }, + { + "surface": "余栄", + "readging": "よえい", + "pos": "名詞", + "pn": 0.227543 + }, + { + "surface": "不弁", + "readging": "ふべん", + "pos": "名詞", + "pn": 0.227387 + }, + { + "surface": "温情", + "readging": "おんじょう", + "pos": "名詞", + "pn": 0.227299 + }, + { + "surface": "明朝", + "readging": "みょうあさ", + "pos": "名詞", + "pn": 0.226888 + }, + { + "surface": "質素", + "readging": "しっそ", + "pos": "名詞", + "pn": 0.226426 + }, + { + "surface": "衷情", + "readging": "ちゅうじょう", + "pos": "名詞", + "pn": 0.226221 + }, + { + "surface": "超人", + "readging": "ちょうじん", + "pos": "名詞", + "pn": 0.225885 + }, + { + "surface": "淳良", + "readging": "じゅんりょう", + "pos": "名詞", + "pn": 0.225881 + }, + { + "surface": "新玉の", + "readging": "あらたまの", + "pos": "名詞", + "pn": 0.22577 + }, + { + "surface": "霊異", + "readging": "れいい", + "pos": "名詞", + "pn": 0.225579 + }, + { + "surface": "鍛鉄", + "readging": "たんてつ", + "pos": "名詞", + "pn": 0.225417 + }, + { + "surface": "霊獣", + "readging": "れいじゅう", + "pos": "名詞", + "pn": 0.225308 + }, + { + "surface": "寄与", + "readging": "きよ", + "pos": "名詞", + "pn": 0.225092 + }, + { + "surface": "原詩", + "readging": "げんし", + "pos": "名詞", + "pn": 0.224912 + }, + { + "surface": "端", + "readging": "はした", + "pos": "名詞", + "pn": 0.224713 + }, + { + "surface": "寸言", + "readging": "すんげん", + "pos": "名詞", + "pn": 0.224565 + }, + { + "surface": "祭場", + "readging": "さいじょう", + "pos": "名詞", + "pn": 0.224308 + }, + { + "surface": "宝", + "readging": "ほう", + "pos": "名詞", + "pn": 0.22382 + }, + { + "surface": "勇断", + "readging": "ゆうだん", + "pos": "名詞", + "pn": 0.223718 + }, + { + "surface": "発揮", + "readging": "はっき", + "pos": "名詞", + "pn": 0.223382 + }, + { + "surface": "早婚", + "readging": "そうこん", + "pos": "名詞", + "pn": 0.223348 + }, + { + "surface": "淫行", + "readging": "いんこう", + "pos": "名詞", + "pn": 0.223311 + }, + { + "surface": "国際主義", + "readging": "こくさいしゅぎ", + "pos": "名詞", + "pn": 0.223304 + }, + { + "surface": "精励", + "readging": "せいれい", + "pos": "名詞", + "pn": 0.223128 + }, + { + "surface": "切磋琢磨", + "readging": "せっさたくま", + "pos": "名詞", + "pn": 0.223091 + }, + { + "surface": "下積み", + "readging": "したづみ", + "pos": "名詞", + "pn": 0.222457 + }, + { + "surface": "香道", + "readging": "こうどう", + "pos": "名詞", + "pn": 0.222437 + }, + { + "surface": "錚錚", + "readging": "そうそう", + "pos": "名詞", + "pn": 0.222435 + }, + { + "surface": "選考", + "readging": "せんこう", + "pos": "名詞", + "pn": 0.222338 + }, + { + "surface": "増資", + "readging": "ぞうし", + "pos": "名詞", + "pn": 0.222216 + }, + { + "surface": "頃日", + "readging": "けいじつ", + "pos": "名詞", + "pn": 0.222109 + }, + { + "surface": "雷名", + "readging": "らいめい", + "pos": "名詞", + "pn": 0.222098 + }, + { + "surface": "人馴れ", + "readging": "ひとなれ", + "pos": "名詞", + "pn": 0.221657 + }, + { + "surface": "融通", + "readging": "ゆうずう", + "pos": "名詞", + "pn": 0.22161 + }, + { + "surface": "化成", + "readging": "かせい", + "pos": "名詞", + "pn": 0.221331 + }, + { + "surface": "ずんずん", + "readging": "ずんずん", + "pos": "副詞", + "pn": 0.221216 + }, + { + "surface": "淡白", + "readging": "たんぱく", + "pos": "名詞", + "pn": 0.221133 + }, + { + "surface": "高遠", + "readging": "こうえん", + "pos": "名詞", + "pn": 0.220742 + }, + { + "surface": "花鳥風月", + "readging": "かちょうふうげつ", + "pos": "名詞", + "pn": 0.219875 + }, + { + "surface": "歌壇", + "readging": "かだん", + "pos": "名詞", + "pn": 0.219552 + }, + { + "surface": "青天井", + "readging": "あおてんじょう", + "pos": "名詞", + "pn": 0.219234 + }, + { + "surface": "角通", + "readging": "かくつう", + "pos": "名詞", + "pn": 0.218936 + }, + { + "surface": "競い立つ", + "readging": "きおいたつ", + "pos": "動詞", + "pn": 0.218605 + }, + { + "surface": "豊熟", + "readging": "ほうじゅく", + "pos": "名詞", + "pn": 0.218548 + }, + { + "surface": "亀甲", + "readging": "きっこう", + "pos": "名詞", + "pn": 0.218225 + }, + { + "surface": "睦言", + "readging": "むつごと", + "pos": "名詞", + "pn": 0.21757 + }, + { + "surface": "如く", + "readging": "しく", + "pos": "動詞", + "pn": 0.217358 + }, + { + "surface": "慣手段", + "readging": "かんしゅだん", + "pos": "名詞", + "pn": 0.216775 + }, + { + "surface": "珍味", + "readging": "ちんみ", + "pos": "名詞", + "pn": 0.215858 + }, + { + "surface": "千金", + "readging": "せんきん", + "pos": "名詞", + "pn": 0.215857 + }, + { + "surface": "奉読", + "readging": "ほうどく", + "pos": "名詞", + "pn": 0.215827 + }, + { + "surface": "晴", + "readging": "せい", + "pos": "名詞", + "pn": 0.215766 + }, + { + "surface": "大計", + "readging": "たいけい", + "pos": "名詞", + "pn": 0.215265 + }, + { + "surface": "神人", + "readging": "しんじん", + "pos": "名詞", + "pn": 0.214889 + }, + { + "surface": "潮時", + "readging": "しおどき", + "pos": "名詞", + "pn": 0.214801 + }, + { + "surface": "他力", + "readging": "たりき", + "pos": "名詞", + "pn": 0.214655 + }, + { + "surface": "紳士協定", + "readging": "しんしきょうてい", + "pos": "名詞", + "pn": 0.214094 + }, + { + "surface": "不養生", + "readging": "ふようじょう", + "pos": "名詞", + "pn": 0.214007 + }, + { + "surface": "賜", + "readging": "し", + "pos": "名詞", + "pn": 0.213795 + }, + { + "surface": "広博", + "readging": "こうはく", + "pos": "名詞", + "pn": 0.213474 + }, + { + "surface": "人気", + "readging": "じんき", + "pos": "名詞", + "pn": 0.213135 + }, + { + "surface": "早瀬", + "readging": "はやせ", + "pos": "名詞", + "pn": 0.213132 + }, + { + "surface": "愛着", + "readging": "あいちゃく", + "pos": "名詞", + "pn": 0.213086 + }, + { + "surface": "京童", + "readging": "きょうわらべ", + "pos": "名詞", + "pn": 0.213019 + }, + { + "surface": "当て込む", + "readging": "あてこむ", + "pos": "動詞", + "pn": 0.212986 + }, + { + "surface": "近来", + "readging": "きんらい", + "pos": "名詞", + "pn": 0.212718 + }, + { + "surface": "交際", + "readging": "こうさい", + "pos": "名詞", + "pn": 0.212391 + }, + { + "surface": "売捌く", + "readging": "うりさばく", + "pos": "動詞", + "pn": 0.212236 + }, + { + "surface": "生暖かい", + "readging": "なまあたたかい", + "pos": "形容詞", + "pn": 0.211956 + }, + { + "surface": "快感", + "readging": "かいかん", + "pos": "名詞", + "pn": 0.211873 + }, + { + "surface": "無頓着", + "readging": "むとんじゃく", + "pos": "名詞", + "pn": 0.211758 + }, + { + "surface": "辣腕", + "readging": "らつわん", + "pos": "名詞", + "pn": 0.211489 + }, + { + "surface": "金臭い", + "readging": "かなくさい", + "pos": "形容詞", + "pn": 0.211458 + }, + { + "surface": "ウエディング", + "readging": "ウエディング", + "pos": "名詞", + "pn": 0.211161 + }, + { + "surface": "更訂", + "readging": "こうてい", + "pos": "名詞", + "pn": 0.211056 + }, + { + "surface": "ぐっすり", + "readging": "ぐっすり", + "pos": "副詞", + "pn": 0.210761 + }, + { + "surface": "宛として", + "readging": "えんとして", + "pos": "副詞", + "pn": 0.210431 + }, + { + "surface": "空喜び", + "readging": "そらよろこび", + "pos": "名詞", + "pn": 0.210334 + }, + { + "surface": "暖", + "readging": "だん", + "pos": "名詞", + "pn": 0.209999 + }, + { + "surface": "恬澹", + "readging": "てんたん", + "pos": "名詞", + "pn": 0.209955 + }, + { + "surface": "奔出", + "readging": "ほんしゅつ", + "pos": "名詞", + "pn": 0.209792 + }, + { + "surface": "根限り", + "readging": "こんかぎり", + "pos": "名詞", + "pn": 0.209781 + }, + { + "surface": "此の節", + "readging": "このせつ", + "pos": "名詞", + "pn": 0.209776 + }, + { + "surface": "言抜け", + "readging": "いいぬけ", + "pos": "名詞", + "pn": 0.209577 + }, + { + "surface": "べらんめえ口調", + "readging": "べらんめえくちょう", + "pos": "名詞", + "pn": 0.209567 + }, + { + "surface": "専門家", + "readging": "せんもんか", + "pos": "名詞", + "pn": 0.209374 + }, + { + "surface": "敷衍", + "readging": "ふえん", + "pos": "名詞", + "pn": 0.209337 + }, + { + "surface": "金剛不壊", + "readging": "こんごうふえ", + "pos": "名詞", + "pn": 0.208979 + }, + { + "surface": "御曹司", + "readging": "おんぞうし", + "pos": "名詞", + "pn": 0.208891 + }, + { + "surface": "安楽浄土", + "readging": "あんらくじょうど", + "pos": "名詞", + "pn": 0.208843 + }, + { + "surface": "目通り", + "readging": "めどおり", + "pos": "名詞", + "pn": 0.208731 + }, + { + "surface": "召料", + "readging": "めしりょう", + "pos": "名詞", + "pn": 0.208705 + }, + { + "surface": "此の所", + "readging": "このところ", + "pos": "名詞", + "pn": 0.207975 + }, + { + "surface": "名流", + "readging": "めいりゅう", + "pos": "名詞", + "pn": 0.207791 + }, + { + "surface": "法主", + "readging": "ほうしゅ", + "pos": "名詞", + "pn": 0.207717 + }, + { + "surface": "激励", + "readging": "げきれい", + "pos": "名詞", + "pn": 0.207418 + }, + { + "surface": "師号", + "readging": "しごう", + "pos": "名詞", + "pn": 0.207043 + }, + { + "surface": "西土", + "readging": "せいど", + "pos": "名詞", + "pn": 0.206953 + }, + { + "surface": "泰", + "readging": "たい", + "pos": "名詞", + "pn": 0.206914 + }, + { + "surface": "奇道", + "readging": "きどう", + "pos": "名詞", + "pn": 0.206816 + }, + { + "surface": "感佩", + "readging": "かんぱい", + "pos": "名詞", + "pn": 0.206546 + }, + { + "surface": "地蔵", + "readging": "じぞう", + "pos": "名詞", + "pn": 0.206256 + }, + { + "surface": "愛児", + "readging": "あいじ", + "pos": "名詞", + "pn": 0.20608 + }, + { + "surface": "特質", + "readging": "とくしつ", + "pos": "名詞", + "pn": 0.206073 + }, + { + "surface": "入魂", + "readging": "にゅうこん", + "pos": "名詞", + "pn": 0.205994 + }, + { + "surface": "達弁", + "readging": "たつべん", + "pos": "名詞", + "pn": 0.205972 + }, + { + "surface": "いちゃつく", + "readging": "いちゃつく", + "pos": "動詞", + "pn": 0.205911 + }, + { + "surface": "門人", + "readging": "もんじん", + "pos": "名詞", + "pn": 0.205653 + }, + { + "surface": "幽寂", + "readging": "ゆうじゃく", + "pos": "名詞", + "pn": 0.205318 + }, + { + "surface": "一切合切", + "readging": "いっさいがっさい", + "pos": "名詞", + "pn": 0.205298 + }, + { + "surface": "言尽す", + "readging": "いいつくす", + "pos": "動詞", + "pn": 0.205298 + }, + { + "surface": "秘蔵っ子", + "readging": "ひぞっこ", + "pos": "名詞", + "pn": 0.205291 + }, + { + "surface": "名取", + "readging": "なとり", + "pos": "名詞", + "pn": 0.204865 + }, + { + "surface": "一入", + "readging": "ひとしお", + "pos": "副詞", + "pn": 0.20476 + }, + { + "surface": "真髄", + "readging": "しんずい", + "pos": "名詞", + "pn": 0.204747 + }, + { + "surface": "宴", + "readging": "えん", + "pos": "名詞", + "pn": 0.20451 + }, + { + "surface": "人となり", + "readging": "ひととなり", + "pos": "名詞", + "pn": 0.204445 + }, + { + "surface": "凛然", + "readging": "りんぜん", + "pos": "名詞", + "pn": 0.204387 + }, + { + "surface": "鍛冶", + "readging": "かじ", + "pos": "名詞", + "pn": 0.204063 + }, + { + "surface": "若向き", + "readging": "わかむき", + "pos": "名詞", + "pn": 0.203974 + }, + { + "surface": "十万億土", + "readging": "じゅうまんおくど", + "pos": "名詞", + "pn": 0.20389 + }, + { + "surface": "有為転変", + "readging": "ういてんぺん", + "pos": "名詞", + "pn": 0.203744 + }, + { + "surface": "マスコット", + "readging": "マスコット", + "pos": "名詞", + "pn": 0.203726 + }, + { + "surface": "意気込み", + "readging": "いきごみ", + "pos": "名詞", + "pn": 0.203331 + }, + { + "surface": "金言", + "readging": "きんげん", + "pos": "名詞", + "pn": 0.203298 + }, + { + "surface": "砂風呂", + "readging": "すなぶろ", + "pos": "名詞", + "pn": 0.203276 + }, + { + "surface": "骨無し", + "readging": "ほねなし", + "pos": "名詞", + "pn": 0.203167 + }, + { + "surface": "極楽浄土", + "readging": "ごくらくじょうど", + "pos": "名詞", + "pn": 0.203106 + }, + { + "surface": "在り方", + "readging": "ありかた", + "pos": "名詞", + "pn": 0.202995 + }, + { + "surface": "御手許金", + "readging": "おてもときん", + "pos": "名詞", + "pn": 0.202739 + }, + { + "surface": "武者修行", + "readging": "むしゃしゅぎょう", + "pos": "名詞", + "pn": 0.202735 + }, + { + "surface": "兄さん", + "readging": "にいさん", + "pos": "名詞", + "pn": 0.202582 + }, + { + "surface": "手助け", + "readging": "てだすけ", + "pos": "名詞", + "pn": 0.202562 + }, + { + "surface": "聖歌", + "readging": "せいか", + "pos": "名詞", + "pn": 0.202366 + }, + { + "surface": "至芸", + "readging": "しげい", + "pos": "名詞", + "pn": 0.201959 + }, + { + "surface": "丸洗い", + "readging": "まるあらい", + "pos": "名詞", + "pn": 0.201887 + }, + { + "surface": "寵児", + "readging": "ちょうじ", + "pos": "名詞", + "pn": 0.201885 + }, + { + "surface": "ほんわか", + "readging": "ほんわか", + "pos": "名詞", + "pn": 0.201795 + }, + { + "surface": "崇拝", + "readging": "すうはい", + "pos": "名詞", + "pn": 0.201786 + }, + { + "surface": "整然", + "readging": "せいぜん", + "pos": "名詞", + "pn": 0.201645 + }, + { + "surface": "勉励", + "readging": "べんれい", + "pos": "名詞", + "pn": 0.201361 + }, + { + "surface": "社交性", + "readging": "しゃこうせい", + "pos": "名詞", + "pn": 0.201152 + }, + { + "surface": "業腹", + "readging": "ごうはら", + "pos": "名詞", + "pn": 0.200964 + }, + { + "surface": "一角", + "readging": "ひとかど", + "pos": "名詞", + "pn": 0.200938 + }, + { + "surface": "自画", + "readging": "じが", + "pos": "名詞", + "pn": 0.200476 + }, + { + "surface": "聳える", + "readging": "そびえる", + "pos": "動詞", + "pn": 0.20023 + }, + { + "surface": "刃引き", + "readging": "はびき", + "pos": "名詞", + "pn": 0.20012 + }, + { + "surface": "月見", + "readging": "つきみ", + "pos": "名詞", + "pn": 0.199969 + }, + { + "surface": "清婉", + "readging": "せいえん", + "pos": "名詞", + "pn": 0.19987 + }, + { + "surface": "無条件", + "readging": "むじょうけん", + "pos": "名詞", + "pn": 0.19963 + }, + { + "surface": "長居", + "readging": "ながい", + "pos": "名詞", + "pn": 0.199223 + }, + { + "surface": "早さ", + "readging": "はやさ", + "pos": "名詞", + "pn": 0.198982 + }, + { + "surface": "幸先", + "readging": "さいさき", + "pos": "名詞", + "pn": 0.198727 + }, + { + "surface": "時務", + "readging": "じむ", + "pos": "名詞", + "pn": 0.198387 + }, + { + "surface": "昨今", + "readging": "さっこん", + "pos": "名詞", + "pn": 0.198196 + }, + { + "surface": "フェア", + "readging": "フェアプレー", + "pos": "名詞", + "pn": 0.198193 + }, + { + "surface": "血戦", + "readging": "けっせん", + "pos": "名詞", + "pn": 0.197816 + }, + { + "surface": "エンターテイナー", + "readging": "エンターテイナー", + "pos": "名詞", + "pn": 0.197233 + }, + { + "surface": "迷宮", + "readging": "めいきゅう", + "pos": "名詞", + "pn": 0.197129 + }, + { + "surface": "秘薬", + "readging": "ひやく", + "pos": "名詞", + "pn": 0.196872 + }, + { + "surface": "門徒", + "readging": "もんと", + "pos": "名詞", + "pn": 0.196863 + }, + { + "surface": "馬鹿正直", + "readging": "ばかしょうじき", + "pos": "名詞", + "pn": 0.196797 + }, + { + "surface": "暗がり", + "readging": "くらがり", + "pos": "名詞", + "pn": 0.196642 + }, + { + "surface": "天長節", + "readging": "てんちょうせつ", + "pos": "名詞", + "pn": 0.196638 + }, + { + "surface": "天性", + "readging": "てんせい", + "pos": "名詞", + "pn": 0.196605 + }, + { + "surface": "女気", + "readging": "おんなけ", + "pos": "名詞", + "pn": 0.196571 + }, + { + "surface": "奇想", + "readging": "きそう", + "pos": "名詞", + "pn": 0.196492 + }, + { + "surface": "空揚", + "readging": "からあげ", + "pos": "名詞", + "pn": 0.195883 + }, + { + "surface": "ダイヤ", + "readging": "ダイヤ", + "pos": "名詞", + "pn": 0.19588 + }, + { + "surface": "立志", + "readging": "りっし", + "pos": "名詞", + "pn": 0.19578 + }, + { + "surface": "愛重", + "readging": "あいちょう", + "pos": "名詞", + "pn": 0.195737 + }, + { + "surface": "レセプション", + "readging": "レセプション", + "pos": "名詞", + "pn": 0.195214 + }, + { + "surface": "婀娜めく", + "readging": "あだめく", + "pos": "動詞", + "pn": 0.19514 + }, + { + "surface": "尸位素餐", + "readging": "しいそさん", + "pos": "名詞", + "pn": 0.195036 + }, + { + "surface": "夜毎", + "readging": "よごと", + "pos": "名詞", + "pn": 0.195016 + }, + { + "surface": "行力", + "readging": "ぎょうりき", + "pos": "名詞", + "pn": 0.194618 + }, + { + "surface": "内覧", + "readging": "ないらん", + "pos": "名詞", + "pn": 0.194334 + }, + { + "surface": "悠揚", + "readging": "ゆうよう", + "pos": "名詞", + "pn": 0.194203 + }, + { + "surface": "沈着", + "readging": "ちんちゃく", + "pos": "名詞", + "pn": 0.194141 + }, + { + "surface": "正視", + "readging": "せいし", + "pos": "名詞", + "pn": 0.193917 + }, + { + "surface": "移籍", + "readging": "いせき", + "pos": "名詞", + "pn": 0.193476 + }, + { + "surface": "時分時", + "readging": "じぶんどき", + "pos": "名詞", + "pn": 0.193301 + }, + { + "surface": "腐臭", + "readging": "ふしゅう", + "pos": "名詞", + "pn": 0.193113 + }, + { + "surface": "帝釈天", + "readging": "たいしゃくてん", + "pos": "名詞", + "pn": 0.193008 + }, + { + "surface": "親交", + "readging": "しんこう", + "pos": "名詞", + "pn": 0.19292 + }, + { + "surface": "ろくに", + "readging": "ろくに", + "pos": "副詞", + "pn": 0.192881 + }, + { + "surface": "知恵", + "readging": "ちえ", + "pos": "名詞", + "pn": 0.192104 + }, + { + "surface": "地蔵顔", + "readging": "じぞうがお", + "pos": "名詞", + "pn": 0.191904 + }, + { + "surface": "慢ずる", + "readging": "まんずる", + "pos": "動詞", + "pn": 0.191175 + }, + { + "surface": "春光", + "readging": "しゅんこう", + "pos": "名詞", + "pn": 0.191007 + }, + { + "surface": "挫く", + "readging": "くじく", + "pos": "動詞", + "pn": 0.191007 + }, + { + "surface": "水入らず", + "readging": "みずいらず", + "pos": "名詞", + "pn": 0.190997 + }, + { + "surface": "才腕", + "readging": "さいわん", + "pos": "名詞", + "pn": 0.190658 + }, + { + "surface": "自存", + "readging": "じそん", + "pos": "名詞", + "pn": 0.190531 + }, + { + "surface": "変改", + "readging": "へんかい", + "pos": "名詞", + "pn": 0.190121 + }, + { + "surface": "当節", + "readging": "とうせつ", + "pos": "名詞", + "pn": 0.190091 + }, + { + "surface": "ファイト", + "readging": "ファイト", + "pos": "名詞", + "pn": 0.189773 + }, + { + "surface": "親孝行", + "readging": "おやこうこう", + "pos": "名詞", + "pn": 0.189733 + }, + { + "surface": "天台", + "readging": "てんだい", + "pos": "名詞", + "pn": 0.189643 + }, + { + "surface": "糞落着き", + "readging": "くそおちつき", + "pos": "名詞", + "pn": 0.189544 + }, + { + "surface": "真骨頂", + "readging": "しんこっちょう", + "pos": "名詞", + "pn": 0.189426 + }, + { + "surface": "宴", + "readging": "うたげ", + "pos": "名詞", + "pn": 0.189212 + }, + { + "surface": "精農", + "readging": "せいのう", + "pos": "名詞", + "pn": 0.189181 + }, + { + "surface": "根負け", + "readging": "こんまけ", + "pos": "名詞", + "pn": 0.188889 + }, + { + "surface": "増給", + "readging": "ぞうきゅう", + "pos": "名詞", + "pn": 0.188888 + }, + { + "surface": "帝釈", + "readging": "たいしゃく", + "pos": "名詞", + "pn": 0.188646 + }, + { + "surface": "鎮守", + "readging": "ちんじゅ", + "pos": "名詞", + "pn": 0.188476 + }, + { + "surface": "どうり", + "readging": "どうりで", + "pos": "名詞", + "pn": 0.188126 + }, + { + "surface": "指折り", + "readging": "ゆびおり", + "pos": "名詞", + "pn": 0.18762 + }, + { + "surface": "山色", + "readging": "さんしょく", + "pos": "名詞", + "pn": 0.1876 + }, + { + "surface": "男気", + "readging": "おとこぎ", + "pos": "名詞", + "pn": 0.187579 + }, + { + "surface": "洋洋", + "readging": "ようよう", + "pos": "名詞", + "pn": 0.187498 + }, + { + "surface": "栄爵", + "readging": "えいしゃく", + "pos": "名詞", + "pn": 0.187333 + }, + { + "surface": "持論", + "readging": "じろん", + "pos": "名詞", + "pn": 0.187279 + }, + { + "surface": "良書", + "readging": "りょうしょ", + "pos": "名詞", + "pn": 0.187087 + }, + { + "surface": "友引", + "readging": "ともびき", + "pos": "名詞", + "pn": 0.186965 + }, + { + "surface": "食禄", + "readging": "しょくろく", + "pos": "名詞", + "pn": 0.186856 + }, + { + "surface": "奉送", + "readging": "ほうそう", + "pos": "名詞", + "pn": 0.186705 + }, + { + "surface": "平然", + "readging": "へいぜん", + "pos": "名詞", + "pn": 0.186575 + }, + { + "surface": "威風", + "readging": "いふう", + "pos": "名詞", + "pn": 0.18654 + }, + { + "surface": "撓う", + "readging": "しなう", + "pos": "動詞", + "pn": 0.186354 + }, + { + "surface": "通り掛る", + "readging": "とおりかかる", + "pos": "動詞", + "pn": 0.186179 + }, + { + "surface": "遊び", + "readging": "あそび", + "pos": "名詞", + "pn": 0.185738 + }, + { + "surface": "平静", + "readging": "へいせい", + "pos": "名詞", + "pn": 0.185669 + }, + { + "surface": "大家", + "readging": "たいけ", + "pos": "名詞", + "pn": 0.185505 + }, + { + "surface": "オフレコ", + "readging": "オフレコ", + "pos": "名詞", + "pn": 0.18534 + }, + { + "surface": "名に負う", + "readging": "なにおう", + "pos": "動詞", + "pn": 0.184801 + }, + { + "surface": "延引", + "readging": "えんいん", + "pos": "名詞", + "pn": 0.184563 + }, + { + "surface": "よくも", + "readging": "よくも", + "pos": "副詞", + "pn": 0.184464 + }, + { + "surface": "気休め", + "readging": "きやすめ", + "pos": "名詞", + "pn": 0.18445 + }, + { + "surface": "家数", + "readging": "やかず", + "pos": "名詞", + "pn": 0.184272 + }, + { + "surface": "祭日", + "readging": "さいじつ", + "pos": "名詞", + "pn": 0.184191 + }, + { + "surface": "拝謁", + "readging": "はいえつ", + "pos": "名詞", + "pn": 0.184036 + }, + { + "surface": "自尊", + "readging": "じそん", + "pos": "名詞", + "pn": 0.183724 + }, + { + "surface": "公論", + "readging": "こうろん", + "pos": "名詞", + "pn": 0.18372 + }, + { + "surface": "世の常", + "readging": "よのつね", + "pos": "名詞", + "pn": 0.183663 + }, + { + "surface": "臭覚", + "readging": "しゅうかく", + "pos": "名詞", + "pn": 0.183649 + }, + { + "surface": "頓服", + "readging": "とんぷく", + "pos": "名詞", + "pn": 0.183209 + }, + { + "surface": "金山", + "readging": "かなやま", + "pos": "名詞", + "pn": 0.183131 + }, + { + "surface": "光輝", + "readging": "こうき", + "pos": "名詞", + "pn": 0.182814 + }, + { + "surface": "はったと", + "readging": "はったと", + "pos": "副詞", + "pn": 0.182652 + }, + { + "surface": "肩入れ", + "readging": "かたいれ", + "pos": "名詞", + "pn": 0.182478 + }, + { + "surface": "蘊奥", + "readging": "うんのう", + "pos": "名詞", + "pn": 0.182411 + }, + { + "surface": "度量", + "readging": "どりょう", + "pos": "名詞", + "pn": 0.18239 + }, + { + "surface": "三伏", + "readging": "さんぷく", + "pos": "名詞", + "pn": 0.182286 + }, + { + "surface": "蛮勇", + "readging": "ばんゆう", + "pos": "名詞", + "pn": 0.182208 + }, + { + "surface": "霊宝", + "readging": "れいほう", + "pos": "名詞", + "pn": 0.182131 + }, + { + "surface": "了解", + "readging": "りょうかい", + "pos": "名詞", + "pn": 0.181623 + }, + { + "surface": "色艶", + "readging": "いろつや", + "pos": "名詞", + "pn": 0.181494 + }, + { + "surface": "熱弁", + "readging": "ねつべん", + "pos": "名詞", + "pn": 0.181435 + }, + { + "surface": "世話女房", + "readging": "せわにょうぼう", + "pos": "名詞", + "pn": 0.181153 + }, + { + "surface": "艶めく", + "readging": "つやめく", + "pos": "動詞", + "pn": 0.180969 + }, + { + "surface": "思い上がる", + "readging": "おもいあがる", + "pos": "動詞", + "pn": 0.180892 + }, + { + "surface": "恰も", + "readging": "あたかも", + "pos": "副詞", + "pn": 0.180718 + }, + { + "surface": "大慈大悲", + "readging": "だいじだいひ", + "pos": "名詞", + "pn": 0.180562 + }, + { + "surface": "俚諺", + "readging": "りげん", + "pos": "名詞", + "pn": 0.180162 + }, + { + "surface": "分権", + "readging": "ぶんけん", + "pos": "名詞", + "pn": 0.179668 + }, + { + "surface": "珍書", + "readging": "ちんしょ", + "pos": "名詞", + "pn": 0.179651 + }, + { + "surface": "陸屋根", + "readging": "ろくやね", + "pos": "名詞", + "pn": 0.178428 + }, + { + "surface": "大人", + "readging": "おとな", + "pos": "名詞", + "pn": 0.178366 + }, + { + "surface": "奇策", + "readging": "きさく", + "pos": "名詞", + "pn": 0.178302 + }, + { + "surface": "安んずる", + "readging": "やすんずる", + "pos": "動詞", + "pn": 0.178193 + }, + { + "surface": "景観", + "readging": "けいかん", + "pos": "名詞", + "pn": 0.177663 + }, + { + "surface": "生返事", + "readging": "なまへんじ", + "pos": "名詞", + "pn": 0.177649 + }, + { + "surface": "常備", + "readging": "じょうび", + "pos": "名詞", + "pn": 0.177576 + }, + { + "surface": "若様", + "readging": "わかさま", + "pos": "名詞", + "pn": 0.177331 + }, + { + "surface": "漸落", + "readging": "ぜんらく", + "pos": "名詞", + "pn": 0.177298 + }, + { + "surface": "表口", + "readging": "おもてぐち", + "pos": "名詞", + "pn": 0.17667 + }, + { + "surface": "聞取る", + "readging": "ききとる", + "pos": "動詞", + "pn": 0.176606 + }, + { + "surface": "勇名", + "readging": "ゆうめい", + "pos": "名詞", + "pn": 0.176525 + }, + { + "surface": "情趣", + "readging": "じょうしゅ", + "pos": "名詞", + "pn": 0.176508 + }, + { + "surface": "上つ方", + "readging": "うえつがた", + "pos": "名詞", + "pn": 0.176438 + }, + { + "surface": "明神", + "readging": "みょうじん", + "pos": "名詞", + "pn": 0.176395 + }, + { + "surface": "かっきり", + "readging": "かっきり", + "pos": "副詞", + "pn": 0.176012 + }, + { + "surface": "焦げ臭い", + "readging": "こげくさい", + "pos": "形容詞", + "pn": 0.175999 + }, + { + "surface": "有縁", + "readging": "うえん", + "pos": "名詞", + "pn": 0.17536 + }, + { + "surface": "不可思議", + "readging": "ふかしぎ", + "pos": "名詞", + "pn": 0.174958 + }, + { + "surface": "安着", + "readging": "あんちゃく", + "pos": "名詞", + "pn": 0.174938 + }, + { + "surface": "一瀉千里", + "readging": "いっしゃせんり", + "pos": "名詞", + "pn": 0.174613 + }, + { + "surface": "てこずる", + "readging": "てこずる", + "pos": "動詞", + "pn": 0.174501 + }, + { + "surface": "ミクロ", + "readging": "ミクロコスモス", + "pos": "名詞", + "pn": 0.174248 + }, + { + "surface": "奇想天外", + "readging": "きそうてんがい", + "pos": "名詞", + "pn": 0.173777 + }, + { + "surface": "詩人", + "readging": "しじん", + "pos": "名詞", + "pn": 0.172985 + }, + { + "surface": "弘誓", + "readging": "ぐぜい", + "pos": "名詞", + "pn": 0.172891 + }, + { + "surface": "見抜く", + "readging": "みぬく", + "pos": "動詞", + "pn": 0.172615 + }, + { + "surface": "ヒロイズム", + "readging": "ヒロイズム", + "pos": "名詞", + "pn": 0.172569 + }, + { + "surface": "今日", + "readging": "きょうび", + "pos": "名詞", + "pn": 0.172375 + }, + { + "surface": "弁才", + "readging": "べんさい", + "pos": "名詞", + "pn": 0.172366 + }, + { + "surface": "曲者", + "readging": "くせもの", + "pos": "名詞", + "pn": 0.172048 + }, + { + "surface": "神威", + "readging": "しんい", + "pos": "名詞", + "pn": 0.171818 + }, + { + "surface": "大死", + "readging": "たいし", + "pos": "名詞", + "pn": 0.171817 + }, + { + "surface": "妥当", + "readging": "だとう", + "pos": "名詞", + "pn": 0.171543 + }, + { + "surface": "前景気", + "readging": "まえげいき", + "pos": "名詞", + "pn": 0.17121 + }, + { + "surface": "無邪気", + "readging": "むじゃき", + "pos": "名詞", + "pn": 0.171154 + }, + { + "surface": "平和", + "readging": "へいわ", + "pos": "名詞", + "pn": 0.170938 + }, + { + "surface": "御多分", + "readging": "ごたぶん", + "pos": "名詞", + "pn": 0.170512 + }, + { + "surface": "免れる", + "readging": "まぬかれる", + "pos": "動詞", + "pn": 0.170433 + }, + { + "surface": "皓皓", + "readging": "こうこう", + "pos": "名詞", + "pn": 0.170228 + }, + { + "surface": "構う", + "readging": "かまう", + "pos": "動詞", + "pn": 0.170125 + }, + { + "surface": "笑み", + "readging": "えみ", + "pos": "名詞", + "pn": 0.170003 + }, + { + "surface": "黄道吉日", + "readging": "こうどうきちにち", + "pos": "名詞", + "pn": 0.169827 + }, + { + "surface": "朱子学", + "readging": "しゅしがく", + "pos": "名詞", + "pn": 0.169585 + }, + { + "surface": "深遠", + "readging": "しんえん", + "pos": "名詞", + "pn": 0.16944 + }, + { + "surface": "神速", + "readging": "しんそく", + "pos": "名詞", + "pn": 0.169282 + }, + { + "surface": "軽挙妄動", + "readging": "けいきょもうどう", + "pos": "名詞", + "pn": 0.168781 + }, + { + "surface": "詩文", + "readging": "しぶん", + "pos": "名詞", + "pn": 0.168772 + }, + { + "surface": "資質", + "readging": "ししつ", + "pos": "名詞", + "pn": 0.168619 + }, + { + "surface": "単物", + "readging": "ひとえ", + "pos": "名詞", + "pn": 0.16852 + }, + { + "surface": "無韻", + "readging": "むいん", + "pos": "名詞", + "pn": 0.16843 + }, + { + "surface": "シンガー", + "readging": "シンガー", + "pos": "名詞", + "pn": 0.168372 + }, + { + "surface": "名人", + "readging": "めいじん", + "pos": "名詞", + "pn": 0.168299 + }, + { + "surface": "王事", + "readging": "おうじ", + "pos": "名詞", + "pn": 0.167872 + }, + { + "surface": "ぱっぱと", + "readging": "ぱっぱと", + "pos": "副詞", + "pn": 0.167779 + }, + { + "surface": "頭寒足熱", + "readging": "ずかんそくねつ", + "pos": "名詞", + "pn": 0.167696 + }, + { + "surface": "増補", + "readging": "ぞうほ", + "pos": "名詞", + "pn": 0.167674 + }, + { + "surface": "大冊", + "readging": "たいさつ", + "pos": "名詞", + "pn": 0.167116 + }, + { + "surface": "勝ち", + "readging": "がち", + "pos": "名詞", + "pn": 0.166998 + }, + { + "surface": "明らむ", + "readging": "あからむ", + "pos": "動詞", + "pn": 0.166943 + }, + { + "surface": "聞流す", + "readging": "ききながす", + "pos": "動詞", + "pn": 0.166664 + }, + { + "surface": "鉄石", + "readging": "てっせき", + "pos": "名詞", + "pn": 0.166597 + }, + { + "surface": "潮目", + "readging": "しおめ", + "pos": "名詞", + "pn": 0.166449 + }, + { + "surface": "仏心", + "readging": "ほとけごころ", + "pos": "名詞", + "pn": 0.166407 + }, + { + "surface": "適格", + "readging": "てきかく", + "pos": "名詞", + "pn": 0.166191 + }, + { + "surface": "弓手", + "readging": "ゆんで", + "pos": "名詞", + "pn": 0.166052 + }, + { + "surface": "爛漫", + "readging": "らんまん", + "pos": "名詞", + "pn": 0.165964 + }, + { + "surface": "不偏", + "readging": "ふへん", + "pos": "名詞", + "pn": 0.165851 + }, + { + "surface": "まんまと", + "readging": "まんまと", + "pos": "副詞", + "pn": 0.165698 + }, + { + "surface": "甘露", + "readging": "かんろ", + "pos": "名詞", + "pn": 0.165485 + }, + { + "surface": "戡定", + "readging": "かんてい", + "pos": "名詞", + "pn": 0.165452 + }, + { + "surface": "ヒーロー", + "readging": "ヒーロー", + "pos": "名詞", + "pn": 0.16539 + }, + { + "surface": "詳報", + "readging": "しょうほう", + "pos": "名詞", + "pn": 0.165316 + }, + { + "surface": "学者", + "readging": "がくしゃ", + "pos": "名詞", + "pn": 0.16524 + }, + { + "surface": "寿", + "readging": "ことぶき", + "pos": "名詞", + "pn": 0.165165 + }, + { + "surface": "せがむ", + "readging": "せがむ", + "pos": "動詞", + "pn": 0.164772 + }, + { + "surface": "ぽんこつ", + "readging": "ぽんこつ", + "pos": "名詞", + "pn": 0.164581 + }, + { + "surface": "出雲の神", + "readging": "いずものかみ", + "pos": "名詞", + "pn": 0.164496 + }, + { + "surface": "悠", + "readging": "ゆう", + "pos": "名詞", + "pn": 0.164272 + }, + { + "surface": "毎晩", + "readging": "まいばん", + "pos": "名詞", + "pn": 0.164253 + }, + { + "surface": "情愛", + "readging": "じょうあい", + "pos": "名詞", + "pn": 0.164083 + }, + { + "surface": "育児", + "readging": "いくじ", + "pos": "名詞", + "pn": 0.163884 + }, + { + "surface": "寂光土", + "readging": "じゃっこうど", + "pos": "名詞", + "pn": 0.163681 + }, + { + "surface": "進上", + "readging": "しんじょう", + "pos": "名詞", + "pn": 0.16349 + }, + { + "surface": "直覧", + "readging": "じきらん", + "pos": "名詞", + "pn": 0.163447 + }, + { + "surface": "守", + "readging": "もり", + "pos": "名詞", + "pn": 0.163414 + }, + { + "surface": "聴許", + "readging": "ちょうきょ", + "pos": "名詞", + "pn": 0.162788 + }, + { + "surface": "即応", + "readging": "そくおう", + "pos": "名詞", + "pn": 0.162786 + }, + { + "surface": "恩", + "readging": "おん", + "pos": "名詞", + "pn": 0.16247 + }, + { + "surface": "練達", + "readging": "れんたつ", + "pos": "名詞", + "pn": 0.162469 + }, + { + "surface": "烈士", + "readging": "れっし", + "pos": "名詞", + "pn": 0.162451 + }, + { + "surface": "添え物", + "readging": "そえもの", + "pos": "名詞", + "pn": 0.162279 + }, + { + "surface": "演義", + "readging": "えんぎ", + "pos": "名詞", + "pn": 0.162145 + }, + { + "surface": "艶", + "readging": "えん", + "pos": "名詞", + "pn": 0.161966 + }, + { + "surface": "真水", + "readging": "まみず", + "pos": "名詞", + "pn": 0.161693 + }, + { + "surface": "与する", + "readging": "くみする", + "pos": "動詞", + "pn": 0.161629 + }, + { + "surface": "羽振り", + "readging": "はぶり", + "pos": "名詞", + "pn": 0.161243 + }, + { + "surface": "後詰", + "readging": "ごづめ", + "pos": "名詞", + "pn": 0.160666 + }, + { + "surface": "野望", + "readging": "やぼう", + "pos": "名詞", + "pn": 0.160315 + }, + { + "surface": "明天子", + "readging": "めいてんし", + "pos": "名詞", + "pn": 0.159986 + }, + { + "surface": "はきはき", + "readging": "はきはき", + "pos": "副詞", + "pn": 0.159947 + }, + { + "surface": "花婿", + "readging": "はなむこ", + "pos": "名詞", + "pn": 0.159739 + }, + { + "surface": "精神家", + "readging": "せいしんか", + "pos": "名詞", + "pn": 0.159434 + }, + { + "surface": "仲冬", + "readging": "ちゅうとう", + "pos": "名詞", + "pn": 0.159322 + }, + { + "surface": "投合", + "readging": "とうごう", + "pos": "名詞", + "pn": 0.159282 + }, + { + "surface": "万緑", + "readging": "ばんりょく", + "pos": "名詞", + "pn": 0.15926 + }, + { + "surface": "旧縁", + "readging": "きゅうえん", + "pos": "名詞", + "pn": 0.159055 + }, + { + "surface": "安産", + "readging": "あんざん", + "pos": "名詞", + "pn": 0.158821 + }, + { + "surface": "面目次第", + "readging": "めんぼくしだい", + "pos": "名詞", + "pn": 0.158424 + }, + { + "surface": "手活け", + "readging": "ていけ", + "pos": "名詞", + "pn": 0.158331 + }, + { + "surface": "珍籍", + "readging": "ちんせき", + "pos": "名詞", + "pn": 0.158228 + }, + { + "surface": "沈勇", + "readging": "ちんゆう", + "pos": "名詞", + "pn": 0.158082 + }, + { + "surface": "天国", + "readging": "てんごく", + "pos": "名詞", + "pn": 0.157858 + }, + { + "surface": "浴衣", + "readging": "ゆかたがけ", + "pos": "名詞", + "pn": 0.157815 + }, + { + "surface": "自彊", + "readging": "じきょう", + "pos": "名詞", + "pn": 0.157137 + }, + { + "surface": "冷暗", + "readging": "れいあん", + "pos": "名詞", + "pn": 0.157123 + }, + { + "surface": "極安", + "readging": "ごくやす", + "pos": "名詞", + "pn": 0.156948 + }, + { + "surface": "勝者", + "readging": "しょうしゃ", + "pos": "名詞", + "pn": 0.156816 + }, + { + "surface": "浄域", + "readging": "じょういき", + "pos": "名詞", + "pn": 0.156614 + }, + { + "surface": "権現", + "readging": "ごんげん", + "pos": "名詞", + "pn": 0.15633 + }, + { + "surface": "短め", + "readging": "みじかめ", + "pos": "名詞", + "pn": 0.156276 + }, + { + "surface": "お決り", + "readging": "おきまり", + "pos": "名詞", + "pn": 0.156126 + }, + { + "surface": "詳言", + "readging": "しょうげん", + "pos": "名詞", + "pn": 0.155943 + }, + { + "surface": "豊水", + "readging": "ほうすい", + "pos": "名詞", + "pn": 0.155856 + }, + { + "surface": "沈黙", + "readging": "ちんもく", + "pos": "名詞", + "pn": 0.155852 + }, + { + "surface": "持薬", + "readging": "じやく", + "pos": "名詞", + "pn": 0.155504 + }, + { + "surface": "帳面面", + "readging": "ちょうめんづら", + "pos": "名詞", + "pn": 0.15545 + }, + { + "surface": "鼻息", + "readging": "びそく", + "pos": "名詞", + "pn": 0.154862 + }, + { + "surface": "鳩派", + "readging": "はとは", + "pos": "名詞", + "pn": 0.154766 + }, + { + "surface": "論賛", + "readging": "ろんさん", + "pos": "名詞", + "pn": 0.154144 + }, + { + "surface": "置床", + "readging": "おきどこ", + "pos": "名詞", + "pn": 0.153894 + }, + { + "surface": "一安心", + "readging": "ひとあんしん", + "pos": "名詞", + "pn": 0.153833 + }, + { + "surface": "宴会", + "readging": "えんかい", + "pos": "名詞", + "pn": 0.153123 + }, + { + "surface": "面白ずく", + "readging": "おもしろずく", + "pos": "名詞", + "pn": 0.153041 + }, + { + "surface": "賢慮", + "readging": "けんりょ", + "pos": "名詞", + "pn": 0.152811 + }, + { + "surface": "あやかる", + "readging": "あやかる", + "pos": "動詞", + "pn": 0.152637 + }, + { + "surface": "疾風迅雷", + "readging": "しっぷうじんらい", + "pos": "名詞", + "pn": 0.151888 + }, + { + "surface": "居溢れる", + "readging": "いこぼれる", + "pos": "動詞", + "pn": 0.151578 + }, + { + "surface": "右派", + "readging": "うは", + "pos": "名詞", + "pn": 0.15154 + }, + { + "surface": "上っ張り", + "readging": "うわっぱり", + "pos": "名詞", + "pn": 0.151431 + }, + { + "surface": "常例", + "readging": "じょうれい", + "pos": "名詞", + "pn": 0.151302 + }, + { + "surface": "神官", + "readging": "しんかん", + "pos": "名詞", + "pn": 0.151301 + }, + { + "surface": "面食い", + "readging": "めんくい", + "pos": "名詞", + "pn": 0.151177 + }, + { + "surface": "改", + "readging": "かい", + "pos": "名詞", + "pn": 0.151168 + }, + { + "surface": "あてがいぶち", + "readging": "あてがいぶち", + "pos": "名詞", + "pn": 0.151057 + }, + { + "surface": "妙薬", + "readging": "みょうやく", + "pos": "名詞", + "pn": 0.151049 + }, + { + "surface": "選書", + "readging": "せんしょ", + "pos": "名詞", + "pn": 0.150945 + }, + { + "surface": "歌い手", + "readging": "うたいて", + "pos": "名詞", + "pn": 0.150792 + }, + { + "surface": "奮励", + "readging": "ふんれい", + "pos": "名詞", + "pn": 0.150512 + }, + { + "surface": "唐心", + "readging": "からごころ", + "pos": "名詞", + "pn": 0.150453 + }, + { + "surface": "必勝", + "readging": "ひっしょう", + "pos": "名詞", + "pn": 0.150325 + }, + { + "surface": "画一", + "readging": "かくいつ", + "pos": "名詞", + "pn": 0.150082 + }, + { + "surface": "趣致", + "readging": "しゅち", + "pos": "名詞", + "pn": 0.149597 + }, + { + "surface": "恩威", + "readging": "おんい", + "pos": "名詞", + "pn": 0.14943 + }, + { + "surface": "自証", + "readging": "じしょう", + "pos": "名詞", + "pn": 0.148246 + }, + { + "surface": "和ぐ", + "readging": "なぐ", + "pos": "動詞", + "pn": 0.147958 + }, + { + "surface": "りゅうと", + "readging": "りゅうと", + "pos": "副詞", + "pn": 0.147817 + }, + { + "surface": "精通", + "readging": "せいつう", + "pos": "名詞", + "pn": 0.147782 + }, + { + "surface": "自明", + "readging": "じめい", + "pos": "名詞", + "pn": 0.147742 + }, + { + "surface": "燦爛", + "readging": "さんらん", + "pos": "名詞", + "pn": 0.147538 + }, + { + "surface": "サディズム", + "readging": "サディズム", + "pos": "名詞", + "pn": 0.147355 + }, + { + "surface": "生傷", + "readging": "なまきず", + "pos": "名詞", + "pn": 0.147094 + }, + { + "surface": "詩嚢", + "readging": "しのう", + "pos": "名詞", + "pn": 0.146899 + }, + { + "surface": "論蔵", + "readging": "ろんぞう", + "pos": "名詞", + "pn": 0.146884 + }, + { + "surface": "宗家", + "readging": "そうけ", + "pos": "名詞", + "pn": 0.14683 + }, + { + "surface": "特別", + "readging": "とくべつ", + "pos": "副詞", + "pn": 0.146759 + }, + { + "surface": "浅学", + "readging": "せんがく", + "pos": "名詞", + "pn": 0.146661 + }, + { + "surface": "主著", + "readging": "しゅちょ", + "pos": "名詞", + "pn": 0.146651 + }, + { + "surface": "豪商", + "readging": "ごうしょう", + "pos": "名詞", + "pn": 0.146539 + }, + { + "surface": "差向い", + "readging": "さしむかい", + "pos": "名詞", + "pn": 0.14651 + }, + { + "surface": "屹然", + "readging": "きつぜん", + "pos": "名詞", + "pn": 0.146508 + }, + { + "surface": "操守", + "readging": "そうしゅ", + "pos": "名詞", + "pn": 0.146422 + }, + { + "surface": "能才", + "readging": "のうさい", + "pos": "名詞", + "pn": 0.146391 + }, + { + "surface": "輝線", + "readging": "きせん", + "pos": "名詞", + "pn": 0.146343 + }, + { + "surface": "叡", + "readging": "えい", + "pos": "名詞", + "pn": 0.146342 + }, + { + "surface": "親切", + "readging": "しんせつ", + "pos": "名詞", + "pn": 0.146331 + }, + { + "surface": "軽演劇", + "readging": "けいえんげき", + "pos": "名詞", + "pn": 0.14629 + }, + { + "surface": "徳望", + "readging": "とくぼう", + "pos": "名詞", + "pn": 0.146134 + }, + { + "surface": "もてる", + "readging": "もてる", + "pos": "動詞", + "pn": 0.146102 + }, + { + "surface": "自薦", + "readging": "じせん", + "pos": "名詞", + "pn": 0.145904 + }, + { + "surface": "完本", + "readging": "かんぽん", + "pos": "名詞", + "pn": 0.14556 + }, + { + "surface": "しゃなりしゃなり", + "readging": "しゃなりしゃなり", + "pos": "副詞", + "pn": 0.145202 + }, + { + "surface": "降誕祭", + "readging": "こうたんさい", + "pos": "名詞", + "pn": 0.145034 + }, + { + "surface": "奇縁", + "readging": "きえん", + "pos": "名詞", + "pn": 0.144809 + }, + { + "surface": "敢闘", + "readging": "かんとう", + "pos": "名詞", + "pn": 0.144632 + }, + { + "surface": "格言", + "readging": "かくげん", + "pos": "名詞", + "pn": 0.144575 + }, + { + "surface": "ネーブル", + "readging": "ネーブル", + "pos": "名詞", + "pn": 0.144506 + }, + { + "surface": "歩数", + "readging": "ほすう", + "pos": "名詞", + "pn": 0.144356 + }, + { + "surface": "人交わり", + "readging": "ひとまじわり", + "pos": "名詞", + "pn": 0.14412 + }, + { + "surface": "茫洋", + "readging": "ぼうよう", + "pos": "名詞", + "pn": 0.143803 + }, + { + "surface": "党是", + "readging": "とうぜ", + "pos": "名詞", + "pn": 0.143705 + }, + { + "surface": "順良", + "readging": "じゅんりょう", + "pos": "名詞", + "pn": 0.143136 + }, + { + "surface": "直視", + "readging": "ちょくし", + "pos": "名詞", + "pn": 0.142995 + }, + { + "surface": "祝祷", + "readging": "しゅくとう", + "pos": "名詞", + "pn": 0.142702 + }, + { + "surface": "勤王", + "readging": "きんのう", + "pos": "名詞", + "pn": 0.142628 + }, + { + "surface": "慰撫", + "readging": "いぶ", + "pos": "名詞", + "pn": 0.142284 + }, + { + "surface": "上舵", + "readging": "あげかじ", + "pos": "名詞", + "pn": 0.142243 + }, + { + "surface": "将家", + "readging": "しょうか", + "pos": "名詞", + "pn": 0.142208 + }, + { + "surface": "日持ち", + "readging": "ひもち", + "pos": "名詞", + "pn": 0.142157 + }, + { + "surface": "感涙", + "readging": "かんるい", + "pos": "名詞", + "pn": 0.142054 + }, + { + "surface": "福の神", + "readging": "ふくのかみ", + "pos": "名詞", + "pn": 0.141761 + }, + { + "surface": "盛漁期", + "readging": "せいぎょき", + "pos": "名詞", + "pn": 0.141677 + }, + { + "surface": "巨峰", + "readging": "きょほう", + "pos": "名詞", + "pn": 0.141659 + }, + { + "surface": "天資", + "readging": "てんし", + "pos": "名詞", + "pn": 0.14147 + }, + { + "surface": "年格好", + "readging": "としかっこう", + "pos": "名詞", + "pn": 0.141316 + }, + { + "surface": "助", + "readging": "すけ", + "pos": "名詞", + "pn": 0.141307 + }, + { + "surface": "俗諺", + "readging": "ぞくげん", + "pos": "名詞", + "pn": 0.141222 + }, + { + "surface": "子息", + "readging": "しそく", + "pos": "名詞", + "pn": 0.141132 + }, + { + "surface": "駆虫", + "readging": "くちゅう", + "pos": "名詞", + "pn": 0.141056 + }, + { + "surface": "感銘", + "readging": "かんめい", + "pos": "名詞", + "pn": 0.140602 + }, + { + "surface": "平話", + "readging": "へいわ", + "pos": "名詞", + "pn": 0.140509 + }, + { + "surface": "興趣", + "readging": "きょうしゅ", + "pos": "名詞", + "pn": 0.140396 + }, + { + "surface": "詩仙", + "readging": "しせん", + "pos": "名詞", + "pn": 0.140362 + }, + { + "surface": "見物", + "readging": "けんぶつ", + "pos": "名詞", + "pn": 0.140216 + }, + { + "surface": "悟り", + "readging": "さとり", + "pos": "名詞", + "pn": 0.139927 + }, + { + "surface": "適宜", + "readging": "てきぎ", + "pos": "副詞", + "pn": 0.139911 + }, + { + "surface": "再縁", + "readging": "さいえん", + "pos": "名詞", + "pn": 0.139873 + }, + { + "surface": "邂逅", + "readging": "かいこう", + "pos": "名詞", + "pn": 0.139705 + }, + { + "surface": "遣りっ放し", + "readging": "やりっぱなし", + "pos": "名詞", + "pn": 0.139698 + }, + { + "surface": "一気", + "readging": "いっき", + "pos": "名詞", + "pn": 0.138937 + }, + { + "surface": "逸早く", + "readging": "いちはやく", + "pos": "副詞", + "pn": 0.138891 + }, + { + "surface": "勇躍", + "readging": "ゆうやく", + "pos": "名詞", + "pn": 0.138814 + }, + { + "surface": "増置", + "readging": "ぞうち", + "pos": "名詞", + "pn": 0.138804 + }, + { + "surface": "天下一", + "readging": "てんかいち", + "pos": "名詞", + "pn": 0.138761 + }, + { + "surface": "突貫", + "readging": "とっかん", + "pos": "名詞", + "pn": 0.138664 + }, + { + "surface": "封鎖", + "readging": "ふうさ", + "pos": "名詞", + "pn": 0.138236 + }, + { + "surface": "ぱりっと", + "readging": "ぱりっと", + "pos": "副詞", + "pn": 0.13809 + }, + { + "surface": "ゆるゆる", + "readging": "ゆるゆる", + "pos": "副詞", + "pn": 0.137833 + }, + { + "surface": "全知", + "readging": "ぜんち", + "pos": "名詞", + "pn": 0.137819 + }, + { + "surface": "鼠入らず", + "readging": "ねずみいらず", + "pos": "名詞", + "pn": 0.137703 + }, + { + "surface": "遷化", + "readging": "せんげ", + "pos": "名詞", + "pn": 0.137646 + }, + { + "surface": "青年", + "readging": "せいねん", + "pos": "名詞", + "pn": 0.137563 + }, + { + "surface": "長生き", + "readging": "ながいき", + "pos": "名詞", + "pn": 0.13754 + }, + { + "surface": "分別", + "readging": "ふんべつ", + "pos": "名詞", + "pn": 0.137225 + }, + { + "surface": "高踏", + "readging": "こうとう", + "pos": "名詞", + "pn": 0.137056 + }, + { + "surface": "治国", + "readging": "ちこく", + "pos": "名詞", + "pn": 0.136898 + }, + { + "surface": "乗船", + "readging": "じょうせん", + "pos": "名詞", + "pn": 0.136645 + }, + { + "surface": "峙つ", + "readging": "そばだつ", + "pos": "動詞", + "pn": 0.136439 + }, + { + "surface": "上物", + "readging": "じょうもの", + "pos": "名詞", + "pn": 0.136401 + }, + { + "surface": "落着き", + "readging": "おちつき", + "pos": "名詞", + "pn": 0.136306 + }, + { + "surface": "マイルド", + "readging": "マイルド", + "pos": "名詞", + "pn": 0.136066 + }, + { + "surface": "恵投", + "readging": "けいとう", + "pos": "名詞", + "pn": 0.13586 + }, + { + "surface": "お払い箱", + "readging": "おはらいばこ", + "pos": "名詞", + "pn": 0.135654 + }, + { + "surface": "正夢", + "readging": "まさゆめ", + "pos": "名詞", + "pn": 0.135557 + }, + { + "surface": "たまたま", + "readging": "たまたま", + "pos": "副詞", + "pn": 0.135086 + }, + { + "surface": "びくとも", + "readging": "びくとも", + "pos": "副詞", + "pn": 0.134988 + }, + { + "surface": "予選", + "readging": "よせん", + "pos": "名詞", + "pn": 0.134939 + }, + { + "surface": "敦", + "readging": "とん", + "pos": "名詞", + "pn": 0.134547 + }, + { + "surface": "富", + "readging": "ふ", + "pos": "名詞", + "pn": 0.134407 + }, + { + "surface": "自若", + "readging": "じじゃく", + "pos": "名詞", + "pn": 0.134278 + }, + { + "surface": "諸行無常", + "readging": "しょぎょうむじょう", + "pos": "名詞", + "pn": 0.134058 + }, + { + "surface": "善心", + "readging": "ぜんしん", + "pos": "名詞", + "pn": 0.133982 + }, + { + "surface": "信義", + "readging": "しんぎ", + "pos": "名詞", + "pn": 0.133257 + }, + { + "surface": "参集", + "readging": "さんしゅう", + "pos": "名詞", + "pn": 0.133158 + }, + { + "surface": "増額", + "readging": "ぞうがく", + "pos": "名詞", + "pn": 0.133152 + }, + { + "surface": "アシスタント", + "readging": "アシスタント", + "pos": "名詞", + "pn": 0.132998 + }, + { + "surface": "抱擁", + "readging": "ほうよう", + "pos": "名詞", + "pn": 0.132984 + }, + { + "surface": "百人一首", + "readging": "ひゃくにんいっしゅ", + "pos": "名詞", + "pn": 0.132818 + }, + { + "surface": "温順", + "readging": "おんじゅん", + "pos": "名詞", + "pn": 0.13278 + }, + { + "surface": "侍気質", + "readging": "さむらいかたぎ", + "pos": "名詞", + "pn": 0.132687 + }, + { + "surface": "ピース", + "readging": "ピース", + "pos": "名詞", + "pn": 0.13264 + }, + { + "surface": "馬糞", + "readging": "ばふん", + "pos": "名詞", + "pn": 0.132457 + }, + { + "surface": "信心", + "readging": "しんじん", + "pos": "名詞", + "pn": 0.132288 + }, + { + "surface": "泰然", + "readging": "たいぜん", + "pos": "名詞", + "pn": 0.132135 + }, + { + "surface": "真人間", + "readging": "まにんげん", + "pos": "名詞", + "pn": 0.131997 + }, + { + "surface": "誕辰", + "readging": "たんしん", + "pos": "名詞", + "pn": 0.131104 + }, + { + "surface": "耳目", + "readging": "じもく", + "pos": "名詞", + "pn": 0.131021 + }, + { + "surface": "独り立ち", + "readging": "ひとりだち", + "pos": "名詞", + "pn": 0.130919 + }, + { + "surface": "御宇", + "readging": "ぎょう", + "pos": "名詞", + "pn": 0.130854 + }, + { + "surface": "駄法螺", + "readging": "だぼら", + "pos": "名詞", + "pn": 0.130795 + }, + { + "surface": "奥伝", + "readging": "おくでん", + "pos": "名詞", + "pn": 0.130347 + }, + { + "surface": "威厳", + "readging": "いげん", + "pos": "名詞", + "pn": 0.130164 + }, + { + "surface": "盤石", + "readging": "ばんじゃく", + "pos": "名詞", + "pn": 0.130113 + }, + { + "surface": "立往生", + "readging": "たちおうじょう", + "pos": "名詞", + "pn": 0.13011 + }, + { + "surface": "眺める", + "readging": "ながめる", + "pos": "動詞", + "pn": 0.129779 + }, + { + "surface": "ミュージック", + "readging": "ミュージック", + "pos": "名詞", + "pn": 0.129717 + }, + { + "surface": "稟性", + "readging": "ひんせい", + "pos": "名詞", + "pn": 0.129638 + }, + { + "surface": "売場", + "readging": "うりば", + "pos": "名詞", + "pn": 0.129433 + }, + { + "surface": "信教", + "readging": "しんきょう", + "pos": "名詞", + "pn": 0.129385 + }, + { + "surface": "寄り道", + "readging": "よりみち", + "pos": "名詞", + "pn": 0.129316 + }, + { + "surface": "やむない", + "readging": "やむない", + "pos": "形容詞", + "pn": 0.129287 + }, + { + "surface": "権道", + "readging": "けんどう", + "pos": "名詞", + "pn": 0.129084 + }, + { + "surface": "専一", + "readging": "せんいつ", + "pos": "名詞", + "pn": 0.129043 + }, + { + "surface": "択一", + "readging": "たくいつ", + "pos": "名詞", + "pn": 0.128911 + }, + { + "surface": "当り年", + "readging": "あたりどし", + "pos": "名詞", + "pn": 0.128736 + }, + { + "surface": "理外", + "readging": "りがい", + "pos": "名詞", + "pn": 0.128623 + }, + { + "surface": "仏いじり", + "readging": "ほとけいじり", + "pos": "名詞", + "pn": 0.128614 + }, + { + "surface": "君恩", + "readging": "くんおん", + "pos": "名詞", + "pn": 0.128475 + }, + { + "surface": "江戸っ子", + "readging": "えどっこ", + "pos": "名詞", + "pn": 0.128173 + }, + { + "surface": "長続き", + "readging": "ながつづき", + "pos": "名詞", + "pn": 0.128127 + }, + { + "surface": "小手回し", + "readging": "こてまわし", + "pos": "名詞", + "pn": 0.128036 + }, + { + "surface": "以心伝心", + "readging": "いしんでんしん", + "pos": "名詞", + "pn": 0.128015 + }, + { + "surface": "病み上り", + "readging": "やみあがり", + "pos": "名詞", + "pn": 0.127838 + }, + { + "surface": "語根", + "readging": "ごこん", + "pos": "名詞", + "pn": 0.127731 + }, + { + "surface": "勧", + "readging": "かん", + "pos": "名詞", + "pn": 0.127707 + }, + { + "surface": "春情", + "readging": "しゅんじょう", + "pos": "名詞", + "pn": 0.127693 + }, + { + "surface": "社家", + "readging": "しゃけ", + "pos": "名詞", + "pn": 0.127683 + }, + { + "surface": "慣れっこ", + "readging": "なれっこ", + "pos": "名詞", + "pn": 0.127613 + }, + { + "surface": "壮烈", + "readging": "そうれつ", + "pos": "名詞", + "pn": 0.12747 + }, + { + "surface": "達文", + "readging": "たつぶん", + "pos": "名詞", + "pn": 0.127408 + }, + { + "surface": "精一杯", + "readging": "せいいっぱい", + "pos": "副詞", + "pn": 0.1272 + }, + { + "surface": "メンシェビキ", + "readging": "メンシェビキ", + "pos": "名詞", + "pn": 0.126928 + }, + { + "surface": "献呈", + "readging": "けんてい", + "pos": "名詞", + "pn": 0.126654 + }, + { + "surface": "勝ち目", + "readging": "かちめ", + "pos": "名詞", + "pn": 0.126545 + }, + { + "surface": "旧識", + "readging": "きゅうしき", + "pos": "名詞", + "pn": 0.126268 + }, + { + "surface": "明明と", + "readging": "あかあかと", + "pos": "副詞", + "pn": 0.126197 + }, + { + "surface": "公益", + "readging": "こうえき", + "pos": "名詞", + "pn": 0.12603 + }, + { + "surface": "克服", + "readging": "こくふく", + "pos": "名詞", + "pn": 0.125991 + }, + { + "surface": "聴従", + "readging": "ちょうじゅう", + "pos": "名詞", + "pn": 0.125986 + }, + { + "surface": "不詳", + "readging": "ふしょう", + "pos": "名詞", + "pn": 0.125751 + }, + { + "surface": "リラックス", + "readging": "リラックス", + "pos": "名詞", + "pn": 0.125712 + }, + { + "surface": "蘚苔", + "readging": "せんたい", + "pos": "名詞", + "pn": 0.125665 + }, + { + "surface": "百折不撓", + "readging": "ひゃくせつふとう", + "pos": "名詞", + "pn": 0.125145 + }, + { + "surface": "引立て役", + "readging": "ひきたてやく", + "pos": "名詞", + "pn": 0.124982 + }, + { + "surface": "武運", + "readging": "ぶうん", + "pos": "名詞", + "pn": 0.124944 + }, + { + "surface": "大金", + "readging": "たいきん", + "pos": "名詞", + "pn": 0.124707 + }, + { + "surface": "大人", + "readging": "うし", + "pos": "名詞", + "pn": 0.12468 + }, + { + "surface": "恵贈", + "readging": "けいぞう", + "pos": "名詞", + "pn": 0.124673 + }, + { + "surface": "微苦笑", + "readging": "びくしょう", + "pos": "名詞", + "pn": 0.124657 + }, + { + "surface": "富貴", + "readging": "ふっき", + "pos": "名詞", + "pn": 0.124281 + }, + { + "surface": "丸染", + "readging": "まるぞめ", + "pos": "名詞", + "pn": 0.124168 + }, + { + "surface": "増産", + "readging": "ぞうさん", + "pos": "名詞", + "pn": 0.124068 + }, + { + "surface": "所産", + "readging": "しょさん", + "pos": "名詞", + "pn": 0.123797 + }, + { + "surface": "一つ話", + "readging": "ひとつばなし", + "pos": "名詞", + "pn": 0.123753 + }, + { + "surface": "禁裏様", + "readging": "きんりさま", + "pos": "名詞", + "pn": 0.123713 + }, + { + "surface": "進取", + "readging": "しんしゅ", + "pos": "名詞", + "pn": 0.123535 + }, + { + "surface": "コンソメ", + "readging": "コンソメ", + "pos": "名詞", + "pn": 0.123166 + }, + { + "surface": "頃", + "readging": "ころ", + "pos": "名詞", + "pn": 0.122945 + }, + { + "surface": "半熟", + "readging": "はんじゅく", + "pos": "名詞", + "pn": 0.122942 + }, + { + "surface": "レディー メード", + "readging": "レディー メード", + "pos": "名詞", + "pn": 0.122887 + }, + { + "surface": "麒麟", + "readging": "きりん", + "pos": "名詞", + "pn": 0.122869 + }, + { + "surface": "君王", + "readging": "くんのう", + "pos": "名詞", + "pn": 0.122547 + }, + { + "surface": "小冠者", + "readging": "こかんじゃ", + "pos": "名詞", + "pn": 0.122541 + }, + { + "surface": "化育", + "readging": "かいく", + "pos": "名詞", + "pn": 0.122498 + }, + { + "surface": "広前", + "readging": "ひろまえ", + "pos": "名詞", + "pn": 0.122143 + }, + { + "surface": "老練", + "readging": "ろうれん", + "pos": "名詞", + "pn": 0.121939 + }, + { + "surface": "鬼気", + "readging": "きき", + "pos": "名詞", + "pn": 0.121787 + }, + { + "surface": "無差別", + "readging": "むさべつ", + "pos": "名詞", + "pn": 0.121667 + }, + { + "surface": "後生気", + "readging": "ごしょうぎ", + "pos": "名詞", + "pn": 0.121553 + }, + { + "surface": "廉潔", + "readging": "れんけつ", + "pos": "名詞", + "pn": 0.121356 + }, + { + "surface": "容儀", + "readging": "ようぎ", + "pos": "名詞", + "pn": 0.121354 + }, + { + "surface": "不壊", + "readging": "ふえ", + "pos": "名詞", + "pn": 0.121279 + }, + { + "surface": "子安", + "readging": "こやす", + "pos": "名詞", + "pn": 0.121205 + }, + { + "surface": "特製", + "readging": "とくせい", + "pos": "名詞", + "pn": 0.120152 + }, + { + "surface": "本葬", + "readging": "ほんそう", + "pos": "名詞", + "pn": 0.120145 + }, + { + "surface": "閥族", + "readging": "ばつぞく", + "pos": "名詞", + "pn": 0.119963 + }, + { + "surface": "色焼け", + "readging": "いろやけ", + "pos": "名詞", + "pn": 0.11983 + }, + { + "surface": "戦勝", + "readging": "せんしょう", + "pos": "名詞", + "pn": 0.11972 + }, + { + "surface": "売れる", + "readging": "うれる", + "pos": "動詞", + "pn": 0.119629 + }, + { + "surface": "励行", + "readging": "れいこう", + "pos": "名詞", + "pn": 0.119202 + }, + { + "surface": "祭祀", + "readging": "さいし", + "pos": "名詞", + "pn": 0.118995 + }, + { + "surface": "品位", + "readging": "ひんい", + "pos": "名詞", + "pn": 0.118978 + }, + { + "surface": "表敬", + "readging": "ひょうけい", + "pos": "名詞", + "pn": 0.118938 + }, + { + "surface": "門下", + "readging": "もんか", + "pos": "名詞", + "pn": 0.118739 + }, + { + "surface": "若衆", + "readging": "わかしゅ", + "pos": "名詞", + "pn": 0.118669 + }, + { + "surface": "可及的", + "readging": "かきゅうてき", + "pos": "副詞", + "pn": 0.11865 + }, + { + "surface": "珍事", + "readging": "ちんじ", + "pos": "名詞", + "pn": 0.118274 + }, + { + "surface": "再婚", + "readging": "さいこん", + "pos": "名詞", + "pn": 0.118094 + }, + { + "surface": "弱年", + "readging": "じゃくねん", + "pos": "名詞", + "pn": 0.118045 + }, + { + "surface": "改変", + "readging": "かいへん", + "pos": "名詞", + "pn": 0.11799 + }, + { + "surface": "無料", + "readging": "むりょう", + "pos": "名詞", + "pn": 0.117573 + }, + { + "surface": "馴れ合う", + "readging": "なれあう", + "pos": "動詞", + "pn": 0.117502 + }, + { + "surface": "嬌姿", + "readging": "きょうし", + "pos": "名詞", + "pn": 0.117436 + }, + { + "surface": "精神主義", + "readging": "せいしんしゅぎ", + "pos": "名詞", + "pn": 0.117341 + }, + { + "surface": "おん", + "readging": "おん", + "pos": "名詞", + "pn": 0.116788 + }, + { + "surface": "センス", + "readging": "センス", + "pos": "名詞", + "pn": 0.116787 + }, + { + "surface": "事勿れ主義", + "readging": "ことなかれしゅぎ", + "pos": "名詞", + "pn": 0.11652 + }, + { + "surface": "至情", + "readging": "しじょう", + "pos": "名詞", + "pn": 0.116447 + }, + { + "surface": "声援", + "readging": "せいえん", + "pos": "名詞", + "pn": 0.116403 + }, + { + "surface": "根無し", + "readging": "ねなし", + "pos": "名詞", + "pn": 0.116371 + }, + { + "surface": "旧知", + "readging": "きゅうち", + "pos": "名詞", + "pn": 0.116295 + }, + { + "surface": "血気の勇", + "readging": "けっきのゆう", + "pos": "名詞", + "pn": 0.116112 + }, + { + "surface": "順序不同", + "readging": "じゅんじょふどう", + "pos": "名詞", + "pn": 0.116048 + }, + { + "surface": "意表", + "readging": "いひょう", + "pos": "名詞", + "pn": 0.115939 + }, + { + "surface": "照輝く", + "readging": "てりかがやく", + "pos": "動詞", + "pn": 0.115646 + }, + { + "surface": "澄切る", + "readging": "すみきる", + "pos": "動詞", + "pn": 0.115491 + }, + { + "surface": "早年", + "readging": "そうねん", + "pos": "名詞", + "pn": 0.115307 + }, + { + "surface": "新築", + "readging": "しんちく", + "pos": "名詞", + "pn": 0.115155 + }, + { + "surface": "浮足", + "readging": "うきあし", + "pos": "名詞", + "pn": 0.114997 + }, + { + "surface": "若い衆", + "readging": "わかいしゅ", + "pos": "名詞", + "pn": 0.11483 + }, + { + "surface": "修訂", + "readging": "しゅうてい", + "pos": "名詞", + "pn": 0.114678 + }, + { + "surface": "人気", + "readging": "ひとけ", + "pos": "名詞", + "pn": 0.114632 + }, + { + "surface": "根比べ", + "readging": "こんくらべ", + "pos": "名詞", + "pn": 0.114269 + }, + { + "surface": "受諾", + "readging": "じゅだく", + "pos": "名詞", + "pn": 0.114237 + }, + { + "surface": "着道楽", + "readging": "きどうらく", + "pos": "名詞", + "pn": 0.114236 + }, + { + "surface": "洪積世", + "readging": "こうせきせい", + "pos": "名詞", + "pn": 0.114148 + }, + { + "surface": "後押し", + "readging": "あとおし", + "pos": "名詞", + "pn": 0.114023 + }, + { + "surface": "治世", + "readging": "ちせい", + "pos": "名詞", + "pn": 0.113959 + }, + { + "surface": "遠鳴り", + "readging": "とおなり", + "pos": "名詞", + "pn": 0.113882 + }, + { + "surface": "せしめる", + "readging": "せしめる", + "pos": "動詞", + "pn": 0.113875 + }, + { + "surface": "霊神", + "readging": "れいじん", + "pos": "名詞", + "pn": 0.113854 + }, + { + "surface": "合憲", + "readging": "ごうけん", + "pos": "名詞", + "pn": 0.113691 + }, + { + "surface": "顧みる", + "readging": "かえりみる", + "pos": "動詞", + "pn": 0.113619 + }, + { + "surface": "彫上げ", + "readging": "ほりあげ", + "pos": "名詞", + "pn": 0.113557 + }, + { + "surface": "スーパー", + "readging": "スーパーマン", + "pos": "名詞", + "pn": 0.113395 + }, + { + "surface": "育", + "readging": "いく", + "pos": "名詞", + "pn": 0.113152 + }, + { + "surface": "花輪", + "readging": "はなわ", + "pos": "名詞", + "pn": 0.113066 + }, + { + "surface": "欽定", + "readging": "きんてい", + "pos": "名詞", + "pn": 0.112801 + }, + { + "surface": "体認", + "readging": "たいにん", + "pos": "名詞", + "pn": 0.11269 + }, + { + "surface": "雪白", + "readging": "せっぱく", + "pos": "名詞", + "pn": 0.112654 + }, + { + "surface": "奥義", + "readging": "おくぎ", + "pos": "名詞", + "pn": 0.112639 + }, + { + "surface": "金ぴか", + "readging": "きんぴか", + "pos": "名詞", + "pn": 0.112617 + }, + { + "surface": "純愛", + "readging": "じゅんあい", + "pos": "名詞", + "pn": 0.112522 + }, + { + "surface": "感嘆符", + "readging": "かんたんふ", + "pos": "名詞", + "pn": 0.112195 + }, + { + "surface": "アフォリズム", + "readging": "アフォリズム", + "pos": "名詞", + "pn": 0.112102 + }, + { + "surface": "主神", + "readging": "しゅしん", + "pos": "名詞", + "pn": 0.111857 + }, + { + "surface": "売込む", + "readging": "うりこむ", + "pos": "動詞", + "pn": 0.111782 + }, + { + "surface": "肝心要", + "readging": "かんじんかなめ", + "pos": "名詞", + "pn": 0.111721 + }, + { + "surface": "白焼", + "readging": "しらやき", + "pos": "名詞", + "pn": 0.111524 + }, + { + "surface": "同母", + "readging": "どうぼ", + "pos": "名詞", + "pn": 0.1115 + }, + { + "surface": "社交界", + "readging": "しゃこうかい", + "pos": "名詞", + "pn": 0.111459 + }, + { + "surface": "機運", + "readging": "きうん", + "pos": "名詞", + "pn": 0.111102 + }, + { + "surface": "故旧", + "readging": "こきゅう", + "pos": "名詞", + "pn": 0.111064 + }, + { + "surface": "僧体", + "readging": "そうたい", + "pos": "名詞", + "pn": 0.111055 + }, + { + "surface": "知れる", + "readging": "しれる", + "pos": "動詞", + "pn": 0.11105 + }, + { + "surface": "紀元節", + "readging": "きげんせつ", + "pos": "名詞", + "pn": 0.111038 + }, + { + "surface": "適正", + "readging": "てきせい", + "pos": "名詞", + "pn": 0.111022 + }, + { + "surface": "従容", + "readging": "しょうよう", + "pos": "名詞", + "pn": 0.110953 + }, + { + "surface": "私製", + "readging": "しせい", + "pos": "名詞", + "pn": 0.110899 + }, + { + "surface": "地", + "readging": "じ", + "pos": "名詞", + "pn": 0.110879 + }, + { + "surface": "土性骨", + "readging": "どしょうぼね", + "pos": "名詞", + "pn": 0.110859 + }, + { + "surface": "ヘルス センター", + "readging": "ヘルス センター", + "pos": "名詞", + "pn": 0.110609 + }, + { + "surface": "積残す", + "readging": "つみのこす", + "pos": "動詞", + "pn": 0.110529 + }, + { + "surface": "嫡流", + "readging": "ちゃくりゅう", + "pos": "名詞", + "pn": 0.110456 + }, + { + "surface": "和らぐ", + "readging": "やわらぐ", + "pos": "動詞", + "pn": 0.110412 + }, + { + "surface": "轟音", + "readging": "ごうおん", + "pos": "名詞", + "pn": 0.110179 + }, + { + "surface": "多能", + "readging": "たのう", + "pos": "名詞", + "pn": 0.11002 + }, + { + "surface": "吻合", + "readging": "ふんごう", + "pos": "名詞", + "pn": 0.110015 + }, + { + "surface": "フィット", + "readging": "フィット", + "pos": "名詞", + "pn": 0.110015 + }, + { + "surface": "賢しら", + "readging": "さかしら", + "pos": "名詞", + "pn": 0.109841 + }, + { + "surface": "霊水", + "readging": "れいすい", + "pos": "名詞", + "pn": 0.109758 + }, + { + "surface": "サンタ", + "readging": "サンタマリア", + "pos": "名詞", + "pn": 0.109601 + }, + { + "surface": "遍照金剛", + "readging": "へんじょうこんごう", + "pos": "名詞", + "pn": 0.109533 + }, + { + "surface": "オーソリティー", + "readging": "オーソリティー", + "pos": "名詞", + "pn": 0.109414 + }, + { + "surface": "好学", + "readging": "こうがく", + "pos": "名詞", + "pn": 0.109312 + }, + { + "surface": "恋心", + "readging": "こいごころ", + "pos": "名詞", + "pn": 0.109228 + }, + { + "surface": "欽慕", + "readging": "きんぼ", + "pos": "名詞", + "pn": 0.109096 + }, + { + "surface": "浮彫", + "readging": "うきぼり", + "pos": "名詞", + "pn": 0.109029 + }, + { + "surface": "野暮天", + "readging": "やぼてん", + "pos": "名詞", + "pn": 0.109018 + }, + { + "surface": "そのうち", + "readging": "そのうち", + "pos": "名詞", + "pn": 0.10891 + }, + { + "surface": "自賛", + "readging": "じさん", + "pos": "名詞", + "pn": 0.108671 + }, + { + "surface": "稟質", + "readging": "ひんしつ", + "pos": "名詞", + "pn": 0.108244 + }, + { + "surface": "護持", + "readging": "ごじ", + "pos": "名詞", + "pn": 0.108059 + }, + { + "surface": "保線", + "readging": "ほせん", + "pos": "名詞", + "pn": 0.107916 + }, + { + "surface": "本地垂迹", + "readging": "ほんじすいじゃく", + "pos": "名詞", + "pn": 0.107726 + }, + { + "surface": "低廉", + "readging": "ていれん", + "pos": "名詞", + "pn": 0.107474 + }, + { + "surface": "金星", + "readging": "きんせい", + "pos": "名詞", + "pn": 0.107189 + }, + { + "surface": "飛上り", + "readging": "とびあがり", + "pos": "名詞", + "pn": 0.107184 + }, + { + "surface": "遼東の豕", + "readging": "りょうとうのいのこ", + "pos": "名詞", + "pn": 0.106797 + }, + { + "surface": "性情", + "readging": "せいじょう", + "pos": "名詞", + "pn": 0.106694 + }, + { + "surface": "最適解", + "readging": "さいてきかい", + "pos": "名詞", + "pn": 0.10662 + }, + { + "surface": "四幅布団", + "readging": "よのぶとん", + "pos": "名詞", + "pn": 0.106489 + }, + { + "surface": "浄土", + "readging": "じょうど", + "pos": "名詞", + "pn": 0.106215 + }, + { + "surface": "左手", + "readging": "ひだりて", + "pos": "名詞", + "pn": 0.106138 + }, + { + "surface": "賢答", + "readging": "けんとう", + "pos": "名詞", + "pn": 0.106136 + }, + { + "surface": "まさか", + "readging": "まさか", + "pos": "副詞", + "pn": 0.106073 + }, + { + "surface": "為済ます", + "readging": "しすます", + "pos": "動詞", + "pn": 0.105945 + }, + { + "surface": "高位", + "readging": "こうい", + "pos": "名詞", + "pn": 0.105912 + }, + { + "surface": "艶色", + "readging": "えんしょく", + "pos": "名詞", + "pn": 0.105626 + }, + { + "surface": "甲走る", + "readging": "かんばしる", + "pos": "動詞", + "pn": 0.105576 + }, + { + "surface": "乱切り", + "readging": "らんぎり", + "pos": "名詞", + "pn": 0.105466 + }, + { + "surface": "祝祭日", + "readging": "しゅくさいじつ", + "pos": "名詞", + "pn": 0.105014 + }, + { + "surface": "正妃", + "readging": "せいひ", + "pos": "名詞", + "pn": 0.104842 + }, + { + "surface": "千人力", + "readging": "せんにんりき", + "pos": "名詞", + "pn": 0.104614 + }, + { + "surface": "目抜き", + "readging": "めぬき", + "pos": "名詞", + "pn": 0.104248 + }, + { + "surface": "不偏不党", + "readging": "ふへんふとう", + "pos": "名詞", + "pn": 0.104161 + }, + { + "surface": "支社", + "readging": "ししゃ", + "pos": "名詞", + "pn": 0.103887 + }, + { + "surface": "老巧", + "readging": "ろうこう", + "pos": "名詞", + "pn": 0.103707 + }, + { + "surface": "要人", + "readging": "ようじん", + "pos": "名詞", + "pn": 0.103605 + }, + { + "surface": "既遂", + "readging": "きすい", + "pos": "名詞", + "pn": 0.103582 + }, + { + "surface": "滅失", + "readging": "めっしつ", + "pos": "名詞", + "pn": 0.103467 + }, + { + "surface": "本性", + "readging": "ほんしょう", + "pos": "名詞", + "pn": 0.103275 + }, + { + "surface": "許諾", + "readging": "きょだく", + "pos": "名詞", + "pn": 0.103008 + }, + { + "surface": "漢学", + "readging": "かんがく", + "pos": "名詞", + "pn": 0.102971 + }, + { + "surface": "落着", + "readging": "らくちゃく", + "pos": "名詞", + "pn": 0.102782 + }, + { + "surface": "やおら", + "readging": "やおら", + "pos": "副詞", + "pn": 0.102769 + }, + { + "surface": "実る", + "readging": "みのる", + "pos": "動詞", + "pn": 0.102727 + }, + { + "surface": "極上", + "readging": "ごくじょう", + "pos": "名詞", + "pn": 0.102558 + }, + { + "surface": "適者生存", + "readging": "てきしゃせいぞん", + "pos": "名詞", + "pn": 0.1025 + }, + { + "surface": "詩趣", + "readging": "ししゅ", + "pos": "名詞", + "pn": 0.102241 + }, + { + "surface": "国運", + "readging": "こくうん", + "pos": "名詞", + "pn": 0.102179 + }, + { + "surface": "宗教家", + "readging": "しゅうきょうか", + "pos": "名詞", + "pn": 0.101834 + }, + { + "surface": "九拝", + "readging": "きゅうはい", + "pos": "名詞", + "pn": 0.101822 + }, + { + "surface": "標榜", + "readging": "ひょうぼう", + "pos": "名詞", + "pn": 0.101753 + }, + { + "surface": "揺ぎ出る", + "readging": "ゆるぎでる", + "pos": "動詞", + "pn": 0.101339 + }, + { + "surface": "進呈", + "readging": "しんてい", + "pos": "名詞", + "pn": 0.101249 + }, + { + "surface": "女振り", + "readging": "おんなぶり", + "pos": "名詞", + "pn": 0.101077 + }, + { + "surface": "仕送り", + "readging": "しおくり", + "pos": "名詞", + "pn": 0.101007 + }, + { + "surface": "秘奥", + "readging": "ひおう", + "pos": "名詞", + "pn": 0.101001 + }, + { + "surface": "弩級艦", + "readging": "どきゅうかん", + "pos": "名詞", + "pn": 0.100964 + }, + { + "surface": "おいそれと", + "readging": "おいそれと", + "pos": "副詞", + "pn": 0.100886 + }, + { + "surface": "敬服", + "readging": "けいふく", + "pos": "名詞", + "pn": 0.100835 + }, + { + "surface": "堪り兼ねる", + "readging": "たまりかねる", + "pos": "動詞", + "pn": 0.100807 + }, + { + "surface": "比類", + "readging": "ひるい", + "pos": "名詞", + "pn": 0.100719 + }, + { + "surface": "玉石混交", + "readging": "ぎょくせきこんこう", + "pos": "名詞", + "pn": 0.10054 + }, + { + "surface": "生紙", + "readging": "きがみ", + "pos": "名詞", + "pn": 0.100484 + }, + { + "surface": "梨瓜", + "readging": "なしうり", + "pos": "名詞", + "pn": 0.100443 + }, + { + "surface": "老雄", + "readging": "ろうゆう", + "pos": "名詞", + "pn": 0.0999266 + }, + { + "surface": "サンタ", + "readging": "サンタ", + "pos": "名詞", + "pn": 0.0998674 + }, + { + "surface": "殖やす", + "readging": "ふやす", + "pos": "動詞", + "pn": 0.0998567 + }, + { + "surface": "学績", + "readging": "がくせき", + "pos": "名詞", + "pn": 0.0996675 + }, + { + "surface": "感動", + "readging": "かんどう", + "pos": "名詞", + "pn": 0.0995865 + }, + { + "surface": "再嫁", + "readging": "さいか", + "pos": "名詞", + "pn": 0.0995438 + }, + { + "surface": "増量", + "readging": "ぞうりょう", + "pos": "名詞", + "pn": 0.0995348 + }, + { + "surface": "披瀝", + "readging": "ひれき", + "pos": "名詞", + "pn": 0.099529 + }, + { + "surface": "一肌", + "readging": "ひとはだ", + "pos": "名詞", + "pn": 0.0993388 + }, + { + "surface": "国師", + "readging": "こくし", + "pos": "名詞", + "pn": 0.0993223 + }, + { + "surface": "外宮", + "readging": "げくう", + "pos": "名詞", + "pn": 0.0991302 + }, + { + "surface": "涼感", + "readging": "りょうかん", + "pos": "名詞", + "pn": 0.0990819 + }, + { + "surface": "判官", + "readging": "じょう", + "pos": "名詞", + "pn": 0.0990316 + }, + { + "surface": "神権", + "readging": "しんけん", + "pos": "名詞", + "pn": 0.0989864 + }, + { + "surface": "ネーム", + "readging": "ネームバリュー", + "pos": "名詞", + "pn": 0.0988352 + }, + { + "surface": "主教", + "readging": "しゅきょう", + "pos": "名詞", + "pn": 0.098831 + }, + { + "surface": "別宴", + "readging": "べつえん", + "pos": "名詞", + "pn": 0.0988255 + }, + { + "surface": "賜杯", + "readging": "しはい", + "pos": "名詞", + "pn": 0.0986134 + }, + { + "surface": "聴納", + "readging": "ちょうのう", + "pos": "名詞", + "pn": 0.0984153 + }, + { + "surface": "打ちのめす", + "readging": "うちのめす", + "pos": "動詞", + "pn": 0.0983853 + }, + { + "surface": "賑わす", + "readging": "にぎわす", + "pos": "動詞", + "pn": 0.098132 + }, + { + "surface": "涼夜", + "readging": "りょうや", + "pos": "名詞", + "pn": 0.0980722 + }, + { + "surface": "皇神", + "readging": "すめがみ", + "pos": "名詞", + "pn": 0.0979193 + }, + { + "surface": "今夕", + "readging": "こんゆう", + "pos": "名詞", + "pn": 0.0978032 + }, + { + "surface": "お茶挽", + "readging": "おちゃひき", + "pos": "名詞", + "pn": 0.0975151 + }, + { + "surface": "内諾", + "readging": "ないだく", + "pos": "名詞", + "pn": 0.0974377 + }, + { + "surface": "然諾", + "readging": "ぜんだく", + "pos": "名詞", + "pn": 0.0974377 + }, + { + "surface": "名山", + "readging": "めいざん", + "pos": "名詞", + "pn": 0.0969596 + }, + { + "surface": "過保護", + "readging": "かほご", + "pos": "名詞", + "pn": 0.0968408 + }, + { + "surface": "面妖", + "readging": "めんよう", + "pos": "名詞", + "pn": 0.0967649 + }, + { + "surface": "徐に", + "readging": "おもむろに", + "pos": "副詞", + "pn": 0.0965448 + }, + { + "surface": "学殖", + "readging": "がくしょく", + "pos": "名詞", + "pn": 0.0965113 + }, + { + "surface": "名物", + "readging": "めいぶつ", + "pos": "名詞", + "pn": 0.0963538 + }, + { + "surface": "宵宮", + "readging": "よみや", + "pos": "名詞", + "pn": 0.0963448 + }, + { + "surface": "遺愛", + "readging": "いあい", + "pos": "名詞", + "pn": 0.0963036 + }, + { + "surface": "行持", + "readging": "ぎょうじ", + "pos": "名詞", + "pn": 0.0961756 + }, + { + "surface": "才筆", + "readging": "さいひつ", + "pos": "名詞", + "pn": 0.0961594 + }, + { + "surface": "参院", + "readging": "さんいん", + "pos": "名詞", + "pn": 0.0960679 + }, + { + "surface": "プロポーズ", + "readging": "プロポーズ", + "pos": "名詞", + "pn": 0.0959836 + }, + { + "surface": "光耀", + "readging": "こうよう", + "pos": "名詞", + "pn": 0.0956981 + }, + { + "surface": "得策", + "readging": "とくさく", + "pos": "名詞", + "pn": 0.0955362 + }, + { + "surface": "全景", + "readging": "ぜんけい", + "pos": "名詞", + "pn": 0.0954522 + }, + { + "surface": "お日様", + "readging": "おひさま", + "pos": "名詞", + "pn": 0.0951299 + }, + { + "surface": "真槍", + "readging": "しんそう", + "pos": "名詞", + "pn": 0.0949897 + }, + { + "surface": "造庭", + "readging": "つくりにわ", + "pos": "名詞", + "pn": 0.0945676 + }, + { + "surface": "裕", + "readging": "ゆう", + "pos": "名詞", + "pn": 0.0945365 + }, + { + "surface": "王室", + "readging": "おうしつ", + "pos": "名詞", + "pn": 0.0944759 + }, + { + "surface": "下げ舵", + "readging": "さげかじ", + "pos": "名詞", + "pn": 0.0942831 + }, + { + "surface": "勇者", + "readging": "ゆうしゃ", + "pos": "名詞", + "pn": 0.0937621 + }, + { + "surface": "改正", + "readging": "かいせい", + "pos": "名詞", + "pn": 0.0936517 + }, + { + "surface": "主上", + "readging": "しゅじょう", + "pos": "名詞", + "pn": 0.0936128 + }, + { + "surface": "茶味", + "readging": "ちゃみ", + "pos": "名詞", + "pn": 0.0935646 + }, + { + "surface": "片目", + "readging": "かため", + "pos": "名詞", + "pn": 0.0934644 + }, + { + "surface": "間断", + "readging": "かんだん", + "pos": "名詞", + "pn": 0.0933736 + }, + { + "surface": "ガッツ ポーズ", + "readging": "ガッツ ポーズ", + "pos": "名詞", + "pn": 0.0931882 + }, + { + "surface": "燻らす", + "readging": "くゆらす", + "pos": "動詞", + "pn": 0.0930821 + }, + { + "surface": "澄渡る", + "readging": "すみわたる", + "pos": "動詞", + "pn": 0.0930779 + }, + { + "surface": "風色", + "readging": "ふうしょく", + "pos": "名詞", + "pn": 0.0930673 + }, + { + "surface": "商運", + "readging": "しょううん", + "pos": "名詞", + "pn": 0.0930432 + }, + { + "surface": "花生け", + "readging": "はないけ", + "pos": "名詞", + "pn": 0.0929485 + }, + { + "surface": "二十日夷", + "readging": "はつかえびす", + "pos": "名詞", + "pn": 0.0927608 + }, + { + "surface": "聖衆", + "readging": "しょうじゅ", + "pos": "名詞", + "pn": 0.0927457 + }, + { + "surface": "天長地久", + "readging": "てんちょうちきゅう", + "pos": "名詞", + "pn": 0.0926425 + }, + { + "surface": "了解事項", + "readging": "りょうかいじこう", + "pos": "名詞", + "pn": 0.0926349 + }, + { + "surface": "洒脱", + "readging": "しゃだつ", + "pos": "名詞", + "pn": 0.0925207 + }, + { + "surface": "公安", + "readging": "こうあん", + "pos": "名詞", + "pn": 0.0924119 + }, + { + "surface": "漫評", + "readging": "まんぴょう", + "pos": "名詞", + "pn": 0.0923889 + }, + { + "surface": "観光", + "readging": "かんこう", + "pos": "名詞", + "pn": 0.0923846 + }, + { + "surface": "示威", + "readging": "じい", + "pos": "名詞", + "pn": 0.0923277 + }, + { + "surface": "博覧", + "readging": "はくらん", + "pos": "名詞", + "pn": 0.0919686 + }, + { + "surface": "通交", + "readging": "つうこう", + "pos": "名詞", + "pn": 0.0919269 + }, + { + "surface": "修好", + "readging": "しゅうこう", + "pos": "名詞", + "pn": 0.0919269 + }, + { + "surface": "閃かす", + "readging": "ひらめかす", + "pos": "動詞", + "pn": 0.0917887 + }, + { + "surface": "万年雪", + "readging": "まんねんゆき", + "pos": "名詞", + "pn": 0.0916476 + }, + { + "surface": "感極まる", + "readging": "かんきわまる", + "pos": "動詞", + "pn": 0.0915878 + }, + { + "surface": "大帝", + "readging": "たいてい", + "pos": "名詞", + "pn": 0.0915388 + }, + { + "surface": "脇役", + "readging": "わきやく", + "pos": "名詞", + "pn": 0.0914179 + }, + { + "surface": "旧懐", + "readging": "きゅうかい", + "pos": "名詞", + "pn": 0.0912653 + }, + { + "surface": "愚直", + "readging": "ぐちょく", + "pos": "名詞", + "pn": 0.0912053 + }, + { + "surface": "天職", + "readging": "てんしょく", + "pos": "名詞", + "pn": 0.0911408 + }, + { + "surface": "献本", + "readging": "けんぽん", + "pos": "名詞", + "pn": 0.0910288 + }, + { + "surface": "不発", + "readging": "ふはつ", + "pos": "名詞", + "pn": 0.0910182 + }, + { + "surface": "上水道", + "readging": "じょうすいどう", + "pos": "名詞", + "pn": 0.0908549 + }, + { + "surface": "南無三宝", + "readging": "なむさんぼう", + "pos": "名詞", + "pn": 0.0908337 + }, + { + "surface": "蔵開き", + "readging": "くらびらき", + "pos": "名詞", + "pn": 0.090805 + }, + { + "surface": "気骨", + "readging": "きぼね", + "pos": "名詞", + "pn": 0.0906856 + }, + { + "surface": "知性", + "readging": "ちせい", + "pos": "名詞", + "pn": 0.0905447 + }, + { + "surface": "横流し", + "readging": "よこながし", + "pos": "名詞", + "pn": 0.0904377 + }, + { + "surface": "慈善市", + "readging": "じぜんいち", + "pos": "名詞", + "pn": 0.0904051 + }, + { + "surface": "道化師", + "readging": "どうけし", + "pos": "名詞", + "pn": 0.0903048 + }, + { + "surface": "早番", + "readging": "はやばん", + "pos": "名詞", + "pn": 0.0902207 + }, + { + "surface": "悲願", + "readging": "ひがん", + "pos": "名詞", + "pn": 0.0901189 + }, + { + "surface": "大乗", + "readging": "だいじょう", + "pos": "名詞", + "pn": 0.0900304 + }, + { + "surface": "非番", + "readging": "ひばん", + "pos": "名詞", + "pn": 0.0899238 + }, + { + "surface": "公案", + "readging": "こうあん", + "pos": "名詞", + "pn": 0.089883 + }, + { + "surface": "絵馬", + "readging": "えま", + "pos": "名詞", + "pn": 0.089871 + }, + { + "surface": "品性", + "readging": "ひんせい", + "pos": "名詞", + "pn": 0.0897993 + }, + { + "surface": "甘み", + "readging": "あまみ", + "pos": "名詞", + "pn": 0.0896681 + }, + { + "surface": "陳情", + "readging": "ちんじょう", + "pos": "名詞", + "pn": 0.0896484 + }, + { + "surface": "相即", + "readging": "そうそく", + "pos": "名詞", + "pn": 0.0893782 + }, + { + "surface": "折衷", + "readging": "せっちゅう", + "pos": "名詞", + "pn": 0.0893571 + }, + { + "surface": "雪見", + "readging": "ゆきみ", + "pos": "名詞", + "pn": 0.0893399 + }, + { + "surface": "ユータナジー", + "readging": "ユータナジー", + "pos": "名詞", + "pn": 0.0892838 + }, + { + "surface": "蛾眉", + "readging": "がび", + "pos": "名詞", + "pn": 0.0892801 + }, + { + "surface": "堂宇", + "readging": "どうう", + "pos": "名詞", + "pn": 0.0892554 + }, + { + "surface": "抜山蓋世", + "readging": "ばつざんがいせい", + "pos": "名詞", + "pn": 0.0892228 + }, + { + "surface": "親近", + "readging": "しんきん", + "pos": "名詞", + "pn": 0.0890907 + }, + { + "surface": "引立つ", + "readging": "ひきたつ", + "pos": "動詞", + "pn": 0.0890027 + }, + { + "surface": "庇う", + "readging": "かばう", + "pos": "動詞", + "pn": 0.0889476 + }, + { + "surface": "八幡", + "readging": "はちまん", + "pos": "名詞", + "pn": 0.0888269 + }, + { + "surface": "欠場", + "readging": "けつじょう", + "pos": "名詞", + "pn": 0.088648 + }, + { + "surface": "人頭", + "readging": "にんとう", + "pos": "名詞", + "pn": 0.0881497 + }, + { + "surface": "此の程", + "readging": "このほど", + "pos": "名詞", + "pn": 0.0881478 + }, + { + "surface": "一斉", + "readging": "いっせい", + "pos": "名詞", + "pn": 0.088024 + }, + { + "surface": "治績", + "readging": "ちせき", + "pos": "名詞", + "pn": 0.0879063 + }, + { + "surface": "不信任", + "readging": "ふしんにん", + "pos": "名詞", + "pn": 0.0878291 + }, + { + "surface": "天皇", + "readging": "すめらみこと", + "pos": "名詞", + "pn": 0.0874922 + }, + { + "surface": "風教", + "readging": "ふうきょう", + "pos": "名詞", + "pn": 0.0868753 + }, + { + "surface": "慈母", + "readging": "じぼ", + "pos": "名詞", + "pn": 0.0868322 + }, + { + "surface": "英雄主義", + "readging": "えいゆうしゅぎ", + "pos": "名詞", + "pn": 0.0867176 + }, + { + "surface": "維新", + "readging": "いしん", + "pos": "名詞", + "pn": 0.0865657 + }, + { + "surface": "過重", + "readging": "かじゅう", + "pos": "名詞", + "pn": 0.0864836 + }, + { + "surface": "祠官", + "readging": "しかん", + "pos": "名詞", + "pn": 0.0863506 + }, + { + "surface": "今時", + "readging": "いまどき", + "pos": "名詞", + "pn": 0.0863239 + }, + { + "surface": "鼻下長", + "readging": "びかちょう", + "pos": "名詞", + "pn": 0.0862925 + }, + { + "surface": "娘心", + "readging": "むすめごころ", + "pos": "名詞", + "pn": 0.0861374 + }, + { + "surface": "弥勒", + "readging": "みろく", + "pos": "名詞", + "pn": 0.0861181 + }, + { + "surface": "不興", + "readging": "ふきょう", + "pos": "名詞", + "pn": 0.0861082 + }, + { + "surface": "お手前", + "readging": "おてまえ", + "pos": "名詞", + "pn": 0.085947 + }, + { + "surface": "神頼み", + "readging": "かみだのみ", + "pos": "名詞", + "pn": 0.0859432 + }, + { + "surface": "陽春", + "readging": "ようしゅん", + "pos": "名詞", + "pn": 0.0858774 + }, + { + "surface": "説得", + "readging": "せっとく", + "pos": "名詞", + "pn": 0.085853 + }, + { + "surface": "行く末", + "readging": "ゆくすえ", + "pos": "名詞", + "pn": 0.0857535 + }, + { + "surface": "捌かす", + "readging": "はかす", + "pos": "動詞", + "pn": 0.0856425 + }, + { + "surface": "テーラー", + "readging": "テーラー", + "pos": "名詞", + "pn": 0.0855778 + }, + { + "surface": "唐紅", + "readging": "からくれない", + "pos": "名詞", + "pn": 0.0854746 + }, + { + "surface": "知遇", + "readging": "ちぐう", + "pos": "名詞", + "pn": 0.0854307 + }, + { + "surface": "木の葉蝶", + "readging": "このはちょう", + "pos": "名詞", + "pn": 0.0852776 + }, + { + "surface": "型", + "readging": "かた", + "pos": "名詞", + "pn": 0.0851421 + }, + { + "surface": "天主", + "readging": "てんしゅ", + "pos": "名詞", + "pn": 0.0851373 + }, + { + "surface": "あやかり者", + "readging": "あやかりもの", + "pos": "名詞", + "pn": 0.0851024 + }, + { + "surface": "非勢", + "readging": "ひせい", + "pos": "名詞", + "pn": 0.08508 + }, + { + "surface": "タイミング", + "readging": "タイミング", + "pos": "名詞", + "pn": 0.0850046 + }, + { + "surface": "アムール", + "readging": "アムール", + "pos": "名詞", + "pn": 0.0847628 + }, + { + "surface": "玄人", + "readging": "くろうと", + "pos": "名詞", + "pn": 0.0847559 + }, + { + "surface": "音沙汰", + "readging": "おとさた", + "pos": "名詞", + "pn": 0.0847387 + }, + { + "surface": "大悟徹底", + "readging": "たいごてってい", + "pos": "名詞", + "pn": 0.0845822 + }, + { + "surface": "奇抜", + "readging": "きばつ", + "pos": "名詞", + "pn": 0.0845341 + }, + { + "surface": "比肩", + "readging": "ひけん", + "pos": "名詞", + "pn": 0.0843988 + }, + { + "surface": "学資", + "readging": "がくし", + "pos": "名詞", + "pn": 0.0839894 + }, + { + "surface": "長生", + "readging": "ちょうせい", + "pos": "名詞", + "pn": 0.0839858 + }, + { + "surface": "端厳", + "readging": "たんげん", + "pos": "名詞", + "pn": 0.0839381 + }, + { + "surface": "リップ", + "readging": "リップサービス", + "pos": "名詞", + "pn": 0.0838191 + }, + { + "surface": "飲兵衛", + "readging": "のんべえ", + "pos": "名詞", + "pn": 0.0835791 + }, + { + "surface": "勧告", + "readging": "かんこく", + "pos": "名詞", + "pn": 0.0834801 + }, + { + "surface": "コメント", + "readging": "コメント", + "pos": "名詞", + "pn": 0.0834557 + }, + { + "surface": "実景", + "readging": "じっけい", + "pos": "名詞", + "pn": 0.0833219 + }, + { + "surface": "箴言", + "readging": "しんげん", + "pos": "名詞", + "pn": 0.0829453 + }, + { + "surface": "殷", + "readging": "いん", + "pos": "名詞", + "pn": 0.0829105 + }, + { + "surface": "核心", + "readging": "かくしん", + "pos": "名詞", + "pn": 0.0827064 + }, + { + "surface": "ぎらりと", + "readging": "ぎらりと", + "pos": "副詞", + "pn": 0.082599 + }, + { + "surface": "平信", + "readging": "へいしん", + "pos": "名詞", + "pn": 0.0825435 + }, + { + "surface": "比倫", + "readging": "ひりん", + "pos": "名詞", + "pn": 0.0823885 + }, + { + "surface": "不実", + "readging": "ふじつ", + "pos": "名詞", + "pn": 0.0823663 + }, + { + "surface": "巻首", + "readging": "かんしゅ", + "pos": "名詞", + "pn": 0.0822628 + }, + { + "surface": "浅才", + "readging": "せんさい", + "pos": "名詞", + "pn": 0.0822122 + }, + { + "surface": "交易", + "readging": "こうえき", + "pos": "名詞", + "pn": 0.0821842 + }, + { + "surface": "極少", + "readging": "きょくしょう", + "pos": "名詞", + "pn": 0.0821125 + }, + { + "surface": "ヴァージン", + "readging": "ヴァージン", + "pos": "名詞", + "pn": 0.0820827 + }, + { + "surface": "ひょいと", + "readging": "ひょいと", + "pos": "副詞", + "pn": 0.0818276 + }, + { + "surface": "上得意", + "readging": "じょうとくい", + "pos": "名詞", + "pn": 0.0817974 + }, + { + "surface": "当今", + "readging": "とうこん", + "pos": "名詞", + "pn": 0.0817866 + }, + { + "surface": "好戦", + "readging": "こうせん", + "pos": "名詞", + "pn": 0.081716 + }, + { + "surface": "蒼穹", + "readging": "そうきゅう", + "pos": "名詞", + "pn": 0.0817137 + }, + { + "surface": "孤軍", + "readging": "こぐん", + "pos": "名詞", + "pn": 0.0816853 + }, + { + "surface": "宝", + "readging": "たから", + "pos": "名詞", + "pn": 0.0816343 + }, + { + "surface": "残存", + "readging": "ざんそん", + "pos": "名詞", + "pn": 0.0814748 + }, + { + "surface": "生水", + "readging": "なまみず", + "pos": "名詞", + "pn": 0.0814683 + }, + { + "surface": "異状", + "readging": "いじょう", + "pos": "名詞", + "pn": 0.0812812 + }, + { + "surface": "専念", + "readging": "せんねん", + "pos": "名詞", + "pn": 0.0810081 + }, + { + "surface": "打って出る", + "readging": "うってでる", + "pos": "動詞", + "pn": 0.080973 + }, + { + "surface": "神饌", + "readging": "しんせん", + "pos": "名詞", + "pn": 0.0809436 + }, + { + "surface": "仏性", + "readging": "ほとけしょう", + "pos": "名詞", + "pn": 0.0807585 + }, + { + "surface": "打開", + "readging": "だかい", + "pos": "名詞", + "pn": 0.0807272 + }, + { + "surface": "聖上", + "readging": "せいじょう", + "pos": "名詞", + "pn": 0.0807125 + }, + { + "surface": "旧交", + "readging": "きゅうこう", + "pos": "名詞", + "pn": 0.0806515 + }, + { + "surface": "倍増", + "readging": "ばいぞう", + "pos": "名詞", + "pn": 0.0805163 + }, + { + "surface": "斯文", + "readging": "しぶん", + "pos": "名詞", + "pn": 0.080246 + }, + { + "surface": "撃剣", + "readging": "げっけん", + "pos": "名詞", + "pn": 0.080223 + }, + { + "surface": "夙に", + "readging": "つとに", + "pos": "副詞", + "pn": 0.0801566 + }, + { + "surface": "花信", + "readging": "かしん", + "pos": "名詞", + "pn": 0.0801418 + }, + { + "surface": "騒客", + "readging": "そうきゃく", + "pos": "名詞", + "pn": 0.0797101 + }, + { + "surface": "苦も無い", + "readging": "くもない", + "pos": "形容詞", + "pn": 0.0795721 + }, + { + "surface": "福徳", + "readging": "ふくとく", + "pos": "名詞", + "pn": 0.0795559 + }, + { + "surface": "蛸配当", + "readging": "たこはいとう", + "pos": "名詞", + "pn": 0.0792589 + }, + { + "surface": "端然", + "readging": "たんぜん", + "pos": "名詞", + "pn": 0.0791013 + }, + { + "surface": "直訴", + "readging": "じきそ", + "pos": "名詞", + "pn": 0.0790573 + }, + { + "surface": "創出", + "readging": "そうしゅつ", + "pos": "名詞", + "pn": 0.0789704 + }, + { + "surface": "ネオ", + "readging": "ネオ", + "pos": "名詞", + "pn": 0.0789704 + }, + { + "surface": "ニュー", + "readging": "ニュー", + "pos": "名詞", + "pn": 0.0789704 + }, + { + "surface": "忠", + "readging": "ちゅう", + "pos": "名詞", + "pn": 0.0788788 + }, + { + "surface": "珍品", + "readging": "ちんぴん", + "pos": "名詞", + "pn": 0.0786625 + }, + { + "surface": "改名", + "readging": "かいめい", + "pos": "名詞", + "pn": 0.078325 + }, + { + "surface": "受止める", + "readging": "うけとめる", + "pos": "動詞", + "pn": 0.0782945 + }, + { + "surface": "弁える", + "readging": "わきまえる", + "pos": "動詞", + "pn": 0.0782909 + }, + { + "surface": "インスピレーション", + "readging": "インスピレーション", + "pos": "名詞", + "pn": 0.0781218 + }, + { + "surface": "登竜門", + "readging": "とうりゅうもん", + "pos": "名詞", + "pn": 0.0780904 + }, + { + "surface": "町家", + "readging": "まちや", + "pos": "名詞", + "pn": 0.078043 + }, + { + "surface": "白白と", + "readging": "しろじろと", + "pos": "副詞", + "pn": 0.07804 + }, + { + "surface": "計り切り", + "readging": "はかりきり", + "pos": "名詞", + "pn": 0.07798 + }, + { + "surface": "風変り", + "readging": "ふうがわり", + "pos": "名詞", + "pn": 0.0778672 + }, + { + "surface": "光明", + "readging": "こうみょう", + "pos": "名詞", + "pn": 0.0778593 + }, + { + "surface": "美談", + "readging": "びだん", + "pos": "名詞", + "pn": 0.0777898 + }, + { + "surface": "闘病", + "readging": "とうびょう", + "pos": "名詞", + "pn": 0.0776533 + }, + { + "surface": "地獄耳", + "readging": "じごくみみ", + "pos": "名詞", + "pn": 0.0776118 + }, + { + "surface": "実績", + "readging": "じっせき", + "pos": "名詞", + "pn": 0.0775593 + }, + { + "surface": "得手", + "readging": "えて", + "pos": "名詞", + "pn": 0.0774561 + }, + { + "surface": "つまされる", + "readging": "つまされる", + "pos": "動詞", + "pn": 0.0772997 + }, + { + "surface": "出世間", + "readging": "しゅっせけん", + "pos": "名詞", + "pn": 0.0770506 + }, + { + "surface": "第一人者", + "readging": "だいいちにんしゃ", + "pos": "名詞", + "pn": 0.0769283 + }, + { + "surface": "実効", + "readging": "じっこう", + "pos": "名詞", + "pn": 0.0767228 + }, + { + "surface": "アベック", + "readging": "アベック", + "pos": "名詞", + "pn": 0.076708 + }, + { + "surface": "禄米", + "readging": "ろくまい", + "pos": "名詞", + "pn": 0.0766833 + }, + { + "surface": "奇警", + "readging": "きけい", + "pos": "名詞", + "pn": 0.0764217 + }, + { + "surface": "素話", + "readging": "すばなし", + "pos": "名詞", + "pn": 0.0764104 + }, + { + "surface": "心から", + "readging": "しんから", + "pos": "副詞", + "pn": 0.0763587 + }, + { + "surface": "原始林", + "readging": "げんしりん", + "pos": "名詞", + "pn": 0.0762861 + }, + { + "surface": "大御代", + "readging": "おおみよ", + "pos": "名詞", + "pn": 0.0758177 + }, + { + "surface": "愛書", + "readging": "あいしょ", + "pos": "名詞", + "pn": 0.075683 + }, + { + "surface": "出好き", + "readging": "でずき", + "pos": "名詞", + "pn": 0.0756634 + }, + { + "surface": "無代", + "readging": "むだい", + "pos": "名詞", + "pn": 0.0756458 + }, + { + "surface": "押問答", + "readging": "おしもんどう", + "pos": "名詞", + "pn": 0.0755908 + }, + { + "surface": "侠骨", + "readging": "きょうこつ", + "pos": "名詞", + "pn": 0.0755849 + }, + { + "surface": "所期", + "readging": "しょき", + "pos": "名詞", + "pn": 0.0755372 + }, + { + "surface": "付け込む", + "readging": "つけこむ", + "pos": "動詞", + "pn": 0.0754021 + }, + { + "surface": "知合", + "readging": "しりあい", + "pos": "名詞", + "pn": 0.0753418 + }, + { + "surface": "不着", + "readging": "ふちゃく", + "pos": "名詞", + "pn": 0.0752788 + }, + { + "surface": "珍物", + "readging": "ちんぶつ", + "pos": "名詞", + "pn": 0.0749617 + }, + { + "surface": "燻銀", + "readging": "いぶしぎん", + "pos": "名詞", + "pn": 0.0749221 + }, + { + "surface": "ジラフ", + "readging": "ジラフ", + "pos": "名詞", + "pn": 0.0748413 + }, + { + "surface": "灌仏", + "readging": "かんぶつ", + "pos": "名詞", + "pn": 0.0745618 + }, + { + "surface": "御利益", + "readging": "ごりやく", + "pos": "名詞", + "pn": 0.0744402 + }, + { + "surface": "沈毅", + "readging": "ちんき", + "pos": "名詞", + "pn": 0.0744037 + }, + { + "surface": "先発", + "readging": "せんぱつ", + "pos": "名詞", + "pn": 0.074386 + }, + { + "surface": "薪", + "readging": "しん", + "pos": "名詞", + "pn": 0.0741696 + }, + { + "surface": "友愛", + "readging": "ゆうあい", + "pos": "名詞", + "pn": 0.0740503 + }, + { + "surface": "金鉱", + "readging": "きんこう", + "pos": "名詞", + "pn": 0.0739905 + }, + { + "surface": "下値", + "readging": "したね", + "pos": "名詞", + "pn": 0.0737618 + }, + { + "surface": "どよもす", + "readging": "どよもす", + "pos": "動詞", + "pn": 0.0736429 + }, + { + "surface": "奏功", + "readging": "そうこう", + "pos": "名詞", + "pn": 0.0736415 + }, + { + "surface": "辛抱人", + "readging": "しんぼうにん", + "pos": "名詞", + "pn": 0.0736263 + }, + { + "surface": "リゾート", + "readging": "リゾート", + "pos": "名詞", + "pn": 0.0732958 + }, + { + "surface": "通じる", + "readging": "つうじる", + "pos": "動詞", + "pn": 0.0732343 + }, + { + "surface": "進境", + "readging": "しんきょう", + "pos": "名詞", + "pn": 0.0731939 + }, + { + "surface": "目明き", + "readging": "めあき", + "pos": "名詞", + "pn": 0.0731841 + }, + { + "surface": "里親", + "readging": "さとおや", + "pos": "名詞", + "pn": 0.0730227 + }, + { + "surface": "総攻撃", + "readging": "そうこうげき", + "pos": "名詞", + "pn": 0.0727335 + }, + { + "surface": "弓矢八幡", + "readging": "ゆみやはちまん", + "pos": "名詞", + "pn": 0.0726987 + }, + { + "surface": "親思い", + "readging": "おやおもい", + "pos": "名詞", + "pn": 0.0725814 + }, + { + "surface": "四聖", + "readging": "しせい", + "pos": "名詞", + "pn": 0.0724755 + }, + { + "surface": "上意", + "readging": "じょうい", + "pos": "名詞", + "pn": 0.0724693 + }, + { + "surface": "即身成仏", + "readging": "そくしんじょうぶつ", + "pos": "名詞", + "pn": 0.0723151 + }, + { + "surface": "自負", + "readging": "じふ", + "pos": "名詞", + "pn": 0.0721736 + }, + { + "surface": "空笑い", + "readging": "そらわらい", + "pos": "名詞", + "pn": 0.0721152 + }, + { + "surface": "無銭", + "readging": "むせん", + "pos": "名詞", + "pn": 0.0720409 + }, + { + "surface": "世慣れる", + "readging": "よなれる", + "pos": "動詞", + "pn": 0.0719465 + }, + { + "surface": "揶揄", + "readging": "やゆ", + "pos": "名詞", + "pn": 0.0717879 + }, + { + "surface": "本懐", + "readging": "ほんかい", + "pos": "名詞", + "pn": 0.0717773 + }, + { + "surface": "執政", + "readging": "しっせい", + "pos": "名詞", + "pn": 0.0717266 + }, + { + "surface": "女盛り", + "readging": "おんなざかり", + "pos": "名詞", + "pn": 0.071513 + }, + { + "surface": "至宝", + "readging": "しほう", + "pos": "名詞", + "pn": 0.0713921 + }, + { + "surface": "手の内", + "readging": "てのうち", + "pos": "名詞", + "pn": 0.0713541 + }, + { + "surface": "正誤", + "readging": "せいご", + "pos": "名詞", + "pn": 0.0713263 + }, + { + "surface": "悪達者", + "readging": "わるだっしゃ", + "pos": "名詞", + "pn": 0.0711477 + }, + { + "surface": "増配", + "readging": "ぞうはい", + "pos": "名詞", + "pn": 0.0711029 + }, + { + "surface": "分け取り", + "readging": "わけどり", + "pos": "名詞", + "pn": 0.0710335 + }, + { + "surface": "星月夜", + "readging": "ほしづきよ", + "pos": "名詞", + "pn": 0.0709046 + }, + { + "surface": "大佐", + "readging": "たいさ", + "pos": "名詞", + "pn": 0.0708864 + }, + { + "surface": "二者択一", + "readging": "にしゃたくいつ", + "pos": "名詞", + "pn": 0.0708827 + }, + { + "surface": "遠大", + "readging": "えんだい", + "pos": "名詞", + "pn": 0.0708623 + }, + { + "surface": "往路", + "readging": "おうろ", + "pos": "名詞", + "pn": 0.070829 + }, + { + "surface": "凄艶", + "readging": "せいえん", + "pos": "名詞", + "pn": 0.0708253 + }, + { + "surface": "蒼空", + "readging": "そうくう", + "pos": "名詞", + "pn": 0.0707825 + }, + { + "surface": "温み", + "readging": "ぬくみ", + "pos": "名詞", + "pn": 0.0707345 + }, + { + "surface": "王師", + "readging": "おうし", + "pos": "名詞", + "pn": 0.0705767 + }, + { + "surface": "過不及", + "readging": "かふきゅう", + "pos": "名詞", + "pn": 0.0705711 + }, + { + "surface": "人心", + "readging": "じんしん", + "pos": "名詞", + "pn": 0.0704817 + }, + { + "surface": "春蚕", + "readging": "はるご", + "pos": "名詞", + "pn": 0.0703749 + }, + { + "surface": "友邦", + "readging": "ゆうほう", + "pos": "名詞", + "pn": 0.0702331 + }, + { + "surface": "春暖", + "readging": "しゅんだん", + "pos": "名詞", + "pn": 0.0701504 + }, + { + "surface": "魔除", + "readging": "まよけ", + "pos": "名詞", + "pn": 0.0701134 + }, + { + "surface": "下剋上", + "readging": "げこくじょう", + "pos": "名詞", + "pn": 0.0700902 + }, + { + "surface": "憶念", + "readging": "おくねん", + "pos": "名詞", + "pn": 0.0693923 + }, + { + "surface": "皇", + "readging": "すめ", + "pos": "名詞", + "pn": 0.0692158 + }, + { + "surface": "差越す", + "readging": "さしこす", + "pos": "動詞", + "pn": 0.0688638 + }, + { + "surface": "右腕", + "readging": "みぎうで", + "pos": "名詞", + "pn": 0.0688603 + }, + { + "surface": "宿将", + "readging": "しゅくしょう", + "pos": "名詞", + "pn": 0.0685201 + }, + { + "surface": "鮮肉", + "readging": "せんにく", + "pos": "名詞", + "pn": 0.0682385 + }, + { + "surface": "天下一品", + "readging": "てんかいっぴん", + "pos": "名詞", + "pn": 0.0678661 + }, + { + "surface": "柄", + "readging": "つか", + "pos": "名詞", + "pn": 0.0678635 + }, + { + "surface": "タンブラー", + "readging": "タンブラー", + "pos": "名詞", + "pn": 0.067572 + }, + { + "surface": "近年", + "readging": "きんねん", + "pos": "名詞", + "pn": 0.0675032 + }, + { + "surface": "芸無し", + "readging": "げいなし", + "pos": "名詞", + "pn": 0.067436 + }, + { + "surface": "宿望", + "readging": "しゅくぼう", + "pos": "名詞", + "pn": 0.0674215 + }, + { + "surface": "王国", + "readging": "おうこく", + "pos": "名詞", + "pn": 0.0673946 + }, + { + "surface": "逢魔が時", + "readging": "おうまがとき", + "pos": "名詞", + "pn": 0.0673105 + }, + { + "surface": "先頃", + "readging": "さきごろ", + "pos": "名詞", + "pn": 0.0671738 + }, + { + "surface": "至尊", + "readging": "しそん", + "pos": "名詞", + "pn": 0.0670482 + }, + { + "surface": "熟達", + "readging": "じゅくたつ", + "pos": "名詞", + "pn": 0.0670165 + }, + { + "surface": "練直す", + "readging": "ねりなおす", + "pos": "動詞", + "pn": 0.0669956 + }, + { + "surface": "大身", + "readging": "たいしん", + "pos": "名詞", + "pn": 0.0669257 + }, + { + "surface": "王公", + "readging": "おうこう", + "pos": "名詞", + "pn": 0.0668481 + }, + { + "surface": "利かせる", + "readging": "きかせる", + "pos": "動詞", + "pn": 0.0668442 + }, + { + "surface": "性根", + "readging": "しょうこん", + "pos": "名詞", + "pn": 0.0668374 + }, + { + "surface": "言語道断", + "readging": "ごんごどうだん", + "pos": "名詞", + "pn": 0.0668137 + }, + { + "surface": "元老", + "readging": "げんろう", + "pos": "名詞", + "pn": 0.0667584 + }, + { + "surface": "伝", + "readging": "つて", + "pos": "名詞", + "pn": 0.0666121 + }, + { + "surface": "渇仰", + "readging": "かつごう", + "pos": "名詞", + "pn": 0.0665729 + }, + { + "surface": "老手", + "readging": "ろうしゅ", + "pos": "名詞", + "pn": 0.0663435 + }, + { + "surface": "持前", + "readging": "もちまえ", + "pos": "名詞", + "pn": 0.0663009 + }, + { + "surface": "書聖", + "readging": "しょせい", + "pos": "名詞", + "pn": 0.0662686 + }, + { + "surface": "澎湃", + "readging": "ほうはい", + "pos": "名詞", + "pn": 0.0660159 + }, + { + "surface": "騒人", + "readging": "そうじん", + "pos": "名詞", + "pn": 0.0656328 + }, + { + "surface": "後生", + "readging": "こうせい", + "pos": "名詞", + "pn": 0.0655537 + }, + { + "surface": "朝見", + "readging": "ちょうけん", + "pos": "名詞", + "pn": 0.0655014 + }, + { + "surface": "朝権", + "readging": "ちょうけん", + "pos": "名詞", + "pn": 0.065483 + }, + { + "surface": "オクタン価", + "readging": "オクタンか", + "pos": "名詞", + "pn": 0.0654675 + }, + { + "surface": "和む", + "readging": "なごむ", + "pos": "動詞", + "pn": 0.0654656 + }, + { + "surface": "笑い事", + "readging": "わらいごと", + "pos": "名詞", + "pn": 0.0653438 + }, + { + "surface": "腐儒", + "readging": "ふじゅ", + "pos": "名詞", + "pn": 0.0650778 + }, + { + "surface": "一人前", + "readging": "いちにんまえ", + "pos": "名詞", + "pn": 0.0650538 + }, + { + "surface": "超然", + "readging": "ちょうぜん", + "pos": "名詞", + "pn": 0.0648918 + }, + { + "surface": "保護色", + "readging": "ほごしょく", + "pos": "名詞", + "pn": 0.0648066 + }, + { + "surface": "柄", + "readging": "え", + "pos": "名詞", + "pn": 0.0645751 + }, + { + "surface": "具陳", + "readging": "ぐちん", + "pos": "名詞", + "pn": 0.0644602 + }, + { + "surface": "好角家", + "readging": "こうかくか", + "pos": "名詞", + "pn": 0.0643865 + }, + { + "surface": "レイ", + "readging": "レイ", + "pos": "名詞", + "pn": 0.0642872 + }, + { + "surface": "出格", + "readging": "しゅっかく", + "pos": "名詞", + "pn": 0.0640545 + }, + { + "surface": "雅俗", + "readging": "がぞく", + "pos": "名詞", + "pn": 0.0640458 + }, + { + "surface": "乗付ける", + "readging": "のりつける", + "pos": "動詞", + "pn": 0.0640179 + }, + { + "surface": "摩替える", + "readging": "すりかえる", + "pos": "動詞", + "pn": 0.0639842 + }, + { + "surface": "詩聖", + "readging": "しせい", + "pos": "名詞", + "pn": 0.063929 + }, + { + "surface": "きらめく", + "readging": "きらめく", + "pos": "動詞", + "pn": 0.0639273 + }, + { + "surface": "育成", + "readging": "いくせい", + "pos": "名詞", + "pn": 0.0639146 + }, + { + "surface": "蛮力", + "readging": "ばんりょく", + "pos": "名詞", + "pn": 0.063908 + }, + { + "surface": "奥許", + "readging": "おくゆるし", + "pos": "名詞", + "pn": 0.0637646 + }, + { + "surface": "燦燦", + "readging": "さんさん", + "pos": "名詞", + "pn": 0.0636139 + }, + { + "surface": "詳述", + "readging": "しょうじゅつ", + "pos": "名詞", + "pn": 0.0636118 + }, + { + "surface": "逸民", + "readging": "いつみん", + "pos": "名詞", + "pn": 0.0635314 + }, + { + "surface": "社司", + "readging": "しゃし", + "pos": "名詞", + "pn": 0.063401 + }, + { + "surface": "太平楽", + "readging": "たいへいらく", + "pos": "名詞", + "pn": 0.0633392 + }, + { + "surface": "機根", + "readging": "きこん", + "pos": "名詞", + "pn": 0.0633126 + }, + { + "surface": "新手", + "readging": "しんて", + "pos": "名詞", + "pn": 0.0632409 + }, + { + "surface": "静まり返る", + "readging": "しずまりかえる", + "pos": "動詞", + "pn": 0.0630287 + }, + { + "surface": "煥発", + "readging": "かんぱつ", + "pos": "名詞", + "pn": 0.0627993 + }, + { + "surface": "外史", + "readging": "がいし", + "pos": "名詞", + "pn": 0.062775 + }, + { + "surface": "夜来", + "readging": "やらい", + "pos": "名詞", + "pn": 0.0627278 + }, + { + "surface": "威信", + "readging": "いしん", + "pos": "名詞", + "pn": 0.0627063 + }, + { + "surface": "神授", + "readging": "しんじゅ", + "pos": "名詞", + "pn": 0.0625086 + }, + { + "surface": "書下し", + "readging": "かきおろし", + "pos": "名詞", + "pn": 0.062332 + }, + { + "surface": "陸離", + "readging": "りくり", + "pos": "名詞", + "pn": 0.0623148 + }, + { + "surface": "澄む", + "readging": "すむ", + "pos": "動詞", + "pn": 0.0620172 + }, + { + "surface": "百花", + "readging": "ひゃっか", + "pos": "名詞", + "pn": 0.0619897 + }, + { + "surface": "コネ", + "readging": "コネ", + "pos": "名詞", + "pn": 0.0618474 + }, + { + "surface": "情調", + "readging": "じょうちょう", + "pos": "名詞", + "pn": 0.0617154 + }, + { + "surface": "精粗", + "readging": "せいそ", + "pos": "名詞", + "pn": 0.0616742 + }, + { + "surface": "永劫", + "readging": "えいごう", + "pos": "名詞", + "pn": 0.0616282 + }, + { + "surface": "シード", + "readging": "シード", + "pos": "名詞", + "pn": 0.0616213 + }, + { + "surface": "天機", + "readging": "てんき", + "pos": "名詞", + "pn": 0.0615969 + }, + { + "surface": "大社", + "readging": "たいしゃ", + "pos": "名詞", + "pn": 0.0615592 + }, + { + "surface": "口語体", + "readging": "こうごたい", + "pos": "名詞", + "pn": 0.061485 + }, + { + "surface": "社会性", + "readging": "しゃかいせい", + "pos": "名詞", + "pn": 0.0614163 + }, + { + "surface": "高批", + "readging": "こうひ", + "pos": "名詞", + "pn": 0.0613378 + }, + { + "surface": "惑乱", + "readging": "わくらん", + "pos": "名詞", + "pn": 0.0613231 + }, + { + "surface": "決定版", + "readging": "けっていばん", + "pos": "名詞", + "pn": 0.0611178 + }, + { + "surface": "此の頃", + "readging": "このごろ", + "pos": "名詞", + "pn": 0.0610978 + }, + { + "surface": "体勢", + "readging": "たいせい", + "pos": "名詞", + "pn": 0.061037 + }, + { + "surface": "仲間外れ", + "readging": "なかまはずれ", + "pos": "名詞", + "pn": 0.0609198 + }, + { + "surface": "公達", + "readging": "きんだち", + "pos": "名詞", + "pn": 0.0608442 + }, + { + "surface": "勤勉", + "readging": "きんべん", + "pos": "名詞", + "pn": 0.0608426 + }, + { + "surface": "正調", + "readging": "せいちょう", + "pos": "名詞", + "pn": 0.0607478 + }, + { + "surface": "珍宝", + "readging": "ちんぽう", + "pos": "名詞", + "pn": 0.0606246 + }, + { + "surface": "情話", + "readging": "じょうわ", + "pos": "名詞", + "pn": 0.0604625 + }, + { + "surface": "徳育", + "readging": "とくいく", + "pos": "名詞", + "pn": 0.0604147 + }, + { + "surface": "真諦", + "readging": "しんたい", + "pos": "名詞", + "pn": 0.0602406 + }, + { + "surface": "錬成", + "readging": "れんせい", + "pos": "名詞", + "pn": 0.0602073 + }, + { + "surface": "輓近", + "readging": "ばんきん", + "pos": "名詞", + "pn": 0.0600248 + }, + { + "surface": "熱誠", + "readging": "ねっせい", + "pos": "名詞", + "pn": 0.0600111 + }, + { + "surface": "勧め", + "readging": "すすめ", + "pos": "名詞", + "pn": 0.0599868 + }, + { + "surface": "虫下し", + "readging": "むしくだし", + "pos": "名詞", + "pn": 0.0599256 + }, + { + "surface": "親心", + "readging": "おやごころ", + "pos": "名詞", + "pn": 0.0598839 + }, + { + "surface": "雷公", + "readging": "らいこう", + "pos": "名詞", + "pn": 0.0597236 + }, + { + "surface": "確保", + "readging": "かくほ", + "pos": "名詞", + "pn": 0.0596739 + }, + { + "surface": "明示", + "readging": "めいじ", + "pos": "名詞", + "pn": 0.0596237 + }, + { + "surface": "前評判", + "readging": "まえひょうばん", + "pos": "名詞", + "pn": 0.0593212 + }, + { + "surface": "霊湯", + "readging": "れいとう", + "pos": "名詞", + "pn": 0.0592202 + }, + { + "surface": "底光り", + "readging": "そこびかり", + "pos": "名詞", + "pn": 0.0591781 + }, + { + "surface": "奇士", + "readging": "きし", + "pos": "名詞", + "pn": 0.0588423 + }, + { + "surface": "御告", + "readging": "おつげ", + "pos": "名詞", + "pn": 0.0585298 + }, + { + "surface": "移入", + "readging": "いにゅう", + "pos": "名詞", + "pn": 0.0584151 + }, + { + "surface": "紳商", + "readging": "しんしょう", + "pos": "名詞", + "pn": 0.0583298 + }, + { + "surface": "大弓", + "readging": "だいきゅう", + "pos": "名詞", + "pn": 0.0583279 + }, + { + "surface": "ロング", + "readging": "ロング", + "pos": "名詞", + "pn": 0.058261 + }, + { + "surface": "美食", + "readging": "びしょく", + "pos": "名詞", + "pn": 0.0582443 + }, + { + "surface": "傾城", + "readging": "けいせい", + "pos": "名詞", + "pn": 0.0581893 + }, + { + "surface": "中背", + "readging": "ちゅうぜい", + "pos": "名詞", + "pn": 0.0580505 + }, + { + "surface": "守本尊", + "readging": "まもりほんぞん", + "pos": "名詞", + "pn": 0.0580492 + }, + { + "surface": "番匠", + "readging": "ばんじょう", + "pos": "名詞", + "pn": 0.0579394 + }, + { + "surface": "若気", + "readging": "わかげ", + "pos": "名詞", + "pn": 0.0578539 + }, + { + "surface": "長尾鶏", + "readging": "ながおどり", + "pos": "名詞", + "pn": 0.0575603 + }, + { + "surface": "速射", + "readging": "そくしゃ", + "pos": "名詞", + "pn": 0.0574166 + }, + { + "surface": "添わせる", + "readging": "そわせる", + "pos": "動詞", + "pn": 0.0571601 + }, + { + "surface": "画意", + "readging": "がい", + "pos": "名詞", + "pn": 0.0571115 + }, + { + "surface": "日頃", + "readging": "ひごろ", + "pos": "名詞", + "pn": 0.0570885 + }, + { + "surface": "出払う", + "readging": "ではらう", + "pos": "動詞", + "pn": 0.0570832 + }, + { + "surface": "至って", + "readging": "いたって", + "pos": "副詞", + "pn": 0.0570497 + }, + { + "surface": "授かる", + "readging": "さずかる", + "pos": "動詞", + "pn": 0.0570221 + }, + { + "surface": "不羈", + "readging": "ふき", + "pos": "名詞", + "pn": 0.0567574 + }, + { + "surface": "嬌声", + "readging": "きょうせい", + "pos": "名詞", + "pn": 0.056751 + }, + { + "surface": "恵比須講", + "readging": "えびすこう", + "pos": "名詞", + "pn": 0.0566953 + }, + { + "surface": "第二義", + "readging": "だいにぎ", + "pos": "名詞", + "pn": 0.0565925 + }, + { + "surface": "片道", + "readging": "かたみち", + "pos": "名詞", + "pn": 0.0565604 + }, + { + "surface": "天爵", + "readging": "てんしゃく", + "pos": "名詞", + "pn": 0.0565311 + }, + { + "surface": "河鹿", + "readging": "かじか", + "pos": "名詞", + "pn": 0.0564548 + }, + { + "surface": "艶笑", + "readging": "えんしょう", + "pos": "名詞", + "pn": 0.0563147 + }, + { + "surface": "自任", + "readging": "じにん", + "pos": "名詞", + "pn": 0.0562509 + }, + { + "surface": "前段", + "readging": "ぜんだん", + "pos": "名詞", + "pn": 0.0560894 + }, + { + "surface": "お洒落", + "readging": "おしゃれ", + "pos": "名詞", + "pn": 0.0560652 + }, + { + "surface": "朴直", + "readging": "ぼくちょく", + "pos": "名詞", + "pn": 0.0560399 + }, + { + "surface": "遅霜", + "readging": "おそじも", + "pos": "名詞", + "pn": 0.0559594 + }, + { + "surface": "声色", + "readging": "せいしょく", + "pos": "名詞", + "pn": 0.0559235 + }, + { + "surface": "尽す", + "readging": "つくす", + "pos": "動詞", + "pn": 0.0558033 + }, + { + "surface": "前進", + "readging": "ぜんしん", + "pos": "名詞", + "pn": 0.0556773 + }, + { + "surface": "酒飲み", + "readging": "さけのみ", + "pos": "名詞", + "pn": 0.0556628 + }, + { + "surface": "清穆", + "readging": "せいぼく", + "pos": "名詞", + "pn": 0.0556518 + }, + { + "surface": "綺羅星", + "readging": "きらぼし", + "pos": "名詞", + "pn": 0.0556232 + }, + { + "surface": "委曲", + "readging": "いきょく", + "pos": "名詞", + "pn": 0.0555367 + }, + { + "surface": "上田", + "readging": "じょうでん", + "pos": "名詞", + "pn": 0.0555137 + }, + { + "surface": "王立", + "readging": "おうりつ", + "pos": "名詞", + "pn": 0.0552936 + }, + { + "surface": "人類愛", + "readging": "じんるいあい", + "pos": "名詞", + "pn": 0.0552486 + }, + { + "surface": "芸道", + "readging": "げいどう", + "pos": "名詞", + "pn": 0.0551173 + }, + { + "surface": "手書", + "readging": "てかき", + "pos": "名詞", + "pn": 0.0551069 + }, + { + "surface": "光彩", + "readging": "こうさい", + "pos": "名詞", + "pn": 0.0550983 + }, + { + "surface": "定見", + "readging": "ていけん", + "pos": "名詞", + "pn": 0.055009 + }, + { + "surface": "盲爆", + "readging": "もうばく", + "pos": "名詞", + "pn": 0.0549956 + }, + { + "surface": "膂力", + "readging": "りょりょく", + "pos": "名詞", + "pn": 0.0548798 + }, + { + "surface": "暖色", + "readging": "だんしょく", + "pos": "名詞", + "pn": 0.054811 + }, + { + "surface": "風馬牛", + "readging": "ふうばぎゅう", + "pos": "名詞", + "pn": 0.0547252 + }, + { + "surface": "入会", + "readging": "にゅうかい", + "pos": "名詞", + "pn": 0.054537 + }, + { + "surface": "不拡大", + "readging": "ふかくだい", + "pos": "名詞", + "pn": 0.054411 + }, + { + "surface": "至便", + "readging": "しべん", + "pos": "名詞", + "pn": 0.0543953 + }, + { + "surface": "五", + "readging": "い", + "pos": "名詞", + "pn": 0.0543332 + }, + { + "surface": "事足りる", + "readging": "ことたりる", + "pos": "動詞", + "pn": 0.0541937 + }, + { + "surface": "小勢", + "readging": "こぜい", + "pos": "名詞", + "pn": 0.0541891 + }, + { + "surface": "速答", + "readging": "そくとう", + "pos": "名詞", + "pn": 0.0540841 + }, + { + "surface": "志望", + "readging": "しぼう", + "pos": "名詞", + "pn": 0.0540225 + }, + { + "surface": "高潔", + "readging": "こうけつ", + "pos": "名詞", + "pn": 0.0538952 + }, + { + "surface": "連枝", + "readging": "れんし", + "pos": "名詞", + "pn": 0.0537156 + }, + { + "surface": "直言", + "readging": "ちょくげん", + "pos": "名詞", + "pn": 0.0536856 + }, + { + "surface": "脂ぎる", + "readging": "あぶらぎる", + "pos": "動詞", + "pn": 0.0535968 + }, + { + "surface": "挫骨", + "readging": "ざこつ", + "pos": "名詞", + "pn": 0.0533951 + }, + { + "surface": "貞操", + "readging": "ていそう", + "pos": "名詞", + "pn": 0.0533385 + }, + { + "surface": "悩殺", + "readging": "のうさつ", + "pos": "名詞", + "pn": 0.0533294 + }, + { + "surface": "森林浴", + "readging": "しんりんよく", + "pos": "名詞", + "pn": 0.0533211 + }, + { + "surface": "引っ付く", + "readging": "ひっつく", + "pos": "動詞", + "pn": 0.0533049 + }, + { + "surface": "増炭", + "readging": "ぞうたん", + "pos": "名詞", + "pn": 0.0532455 + }, + { + "surface": "奇談", + "readging": "きだん", + "pos": "名詞", + "pn": 0.0532227 + }, + { + "surface": "心行く", + "readging": "こころゆく", + "pos": "動詞", + "pn": 0.0531033 + }, + { + "surface": "宿志", + "readging": "しゅくし", + "pos": "名詞", + "pn": 0.0529068 + }, + { + "surface": "妄念", + "readging": "もうねん", + "pos": "名詞", + "pn": 0.0528573 + }, + { + "surface": "迅速", + "readging": "じんそく", + "pos": "名詞", + "pn": 0.0528545 + }, + { + "surface": "軟質", + "readging": "なんしつ", + "pos": "名詞", + "pn": 0.0527333 + }, + { + "surface": "天守", + "readging": "てんしゅ", + "pos": "名詞", + "pn": 0.052722 + }, + { + "surface": "狂態", + "readging": "きょうたい", + "pos": "名詞", + "pn": 0.0525625 + }, + { + "surface": "懇切", + "readging": "こんせつ", + "pos": "名詞", + "pn": 0.0524306 + }, + { + "surface": "テレパシー", + "readging": "テレパシー", + "pos": "名詞", + "pn": 0.0522675 + }, + { + "surface": "ゴールデン", + "readging": "ゴールデン", + "pos": "名詞", + "pn": 0.052215 + }, + { + "surface": "一心", + "readging": "いっしん", + "pos": "名詞", + "pn": 0.0521576 + }, + { + "surface": "特例", + "readging": "とくれい", + "pos": "名詞", + "pn": 0.052143 + }, + { + "surface": "心待ち", + "readging": "こころまち", + "pos": "名詞", + "pn": 0.0520865 + }, + { + "surface": "値引き", + "readging": "ねびき", + "pos": "名詞", + "pn": 0.0520702 + }, + { + "surface": "同腹", + "readging": "どうふく", + "pos": "名詞", + "pn": 0.0520453 + }, + { + "surface": "侘助", + "readging": "わびすけ", + "pos": "名詞", + "pn": 0.051857 + }, + { + "surface": "詞", + "readging": "し", + "pos": "名詞", + "pn": 0.0518488 + }, + { + "surface": "加増", + "readging": "かぞう", + "pos": "名詞", + "pn": 0.0518468 + }, + { + "surface": "兌換紙幣", + "readging": "だかんしへい", + "pos": "名詞", + "pn": 0.0517638 + }, + { + "surface": "闘志", + "readging": "とうし", + "pos": "名詞", + "pn": 0.0517058 + }, + { + "surface": "身二つ", + "readging": "みふたつ", + "pos": "名詞", + "pn": 0.0515129 + }, + { + "surface": "感得", + "readging": "かんとく", + "pos": "名詞", + "pn": 0.0514311 + }, + { + "surface": "表出", + "readging": "ひょうしゅつ", + "pos": "名詞", + "pn": 0.0514071 + }, + { + "surface": "命知らず", + "readging": "いのちしらず", + "pos": "名詞", + "pn": 0.0513348 + }, + { + "surface": "店晒し", + "readging": "たなざらし", + "pos": "名詞", + "pn": 0.0512617 + }, + { + "surface": "ソウル", + "readging": "ソウル", + "pos": "名詞", + "pn": 0.0512525 + }, + { + "surface": "利いた風", + "readging": "きいたふう", + "pos": "名詞", + "pn": 0.0512477 + }, + { + "surface": "草の庵", + "readging": "くさのいおり", + "pos": "名詞", + "pn": 0.0512121 + }, + { + "surface": "蚕室", + "readging": "さんしつ", + "pos": "名詞", + "pn": 0.0511983 + }, + { + "surface": "実方", + "readging": "じつかた", + "pos": "名詞", + "pn": 0.0508991 + }, + { + "surface": "夜話", + "readging": "よばなし", + "pos": "名詞", + "pn": 0.050892 + }, + { + "surface": "艶冶", + "readging": "えんや", + "pos": "名詞", + "pn": 0.0508906 + }, + { + "surface": "浄財", + "readging": "じょうざい", + "pos": "名詞", + "pn": 0.0508316 + }, + { + "surface": "キリスト教", + "readging": "キリストきょう", + "pos": "名詞", + "pn": 0.0508015 + }, + { + "surface": "蓮糸", + "readging": "はすいと", + "pos": "名詞", + "pn": 0.0507406 + }, + { + "surface": "宿主", + "readging": "しゅくしゅ", + "pos": "名詞", + "pn": 0.0507052 + }, + { + "surface": "泰斗", + "readging": "たいと", + "pos": "名詞", + "pn": 0.0506868 + }, + { + "surface": "神水", + "readging": "じんずい", + "pos": "名詞", + "pn": 0.0505343 + }, + { + "surface": "深層", + "readging": "しんそう", + "pos": "名詞", + "pn": 0.0504973 + }, + { + "surface": "放題", + "readging": "ほうだい", + "pos": "名詞", + "pn": 0.0502316 + }, + { + "surface": "早呑込み", + "readging": "はやのみこみ", + "pos": "名詞", + "pn": 0.050218 + }, + { + "surface": "有識", + "readging": "ゆうしき", + "pos": "名詞", + "pn": 0.0501955 + }, + { + "surface": "梵唄", + "readging": "ぼんばい", + "pos": "名詞", + "pn": 0.0500473 + }, + { + "surface": "粛粛", + "readging": "しゅくしゅく", + "pos": "名詞", + "pn": 0.0499878 + }, + { + "surface": "婚期", + "readging": "こんき", + "pos": "名詞", + "pn": 0.0499322 + }, + { + "surface": "陳者", + "readging": "のぶれば", + "pos": "名詞", + "pn": 0.0498256 + }, + { + "surface": "右党", + "readging": "うとう", + "pos": "名詞", + "pn": 0.049779 + }, + { + "surface": "無血", + "readging": "むけつ", + "pos": "名詞", + "pn": 0.0497488 + }, + { + "surface": "多血", + "readging": "たけつ", + "pos": "名詞", + "pn": 0.0495943 + }, + { + "surface": "静思", + "readging": "せいし", + "pos": "名詞", + "pn": 0.0495746 + }, + { + "surface": "丞相", + "readging": "じょうしょう", + "pos": "名詞", + "pn": 0.049524 + }, + { + "surface": "一宿一飯", + "readging": "いっしゅくいっぱん", + "pos": "名詞", + "pn": 0.0494872 + }, + { + "surface": "事後", + "readging": "じご", + "pos": "名詞", + "pn": 0.0494521 + }, + { + "surface": "和光同塵", + "readging": "わこうどうじん", + "pos": "名詞", + "pn": 0.0494477 + }, + { + "surface": "援用", + "readging": "えんよう", + "pos": "名詞", + "pn": 0.0494289 + }, + { + "surface": "詳録", + "readging": "しょうろく", + "pos": "名詞", + "pn": 0.0493903 + }, + { + "surface": "懐旧", + "readging": "かいきゅう", + "pos": "名詞", + "pn": 0.0493526 + }, + { + "surface": "良民", + "readging": "りょうみん", + "pos": "名詞", + "pn": 0.0491802 + }, + { + "surface": "必見", + "readging": "ひっけん", + "pos": "名詞", + "pn": 0.0491717 + }, + { + "surface": "成語", + "readging": "せいご", + "pos": "名詞", + "pn": 0.0491525 + }, + { + "surface": "大王", + "readging": "だいおう", + "pos": "名詞", + "pn": 0.0487475 + }, + { + "surface": "懸賞", + "readging": "けんしょう", + "pos": "名詞", + "pn": 0.0485573 + }, + { + "surface": "肝っ玉", + "readging": "きもったま", + "pos": "名詞", + "pn": 0.0482669 + }, + { + "surface": "差上げる", + "readging": "さしあげる", + "pos": "動詞", + "pn": 0.0481249 + }, + { + "surface": "改元", + "readging": "かいげん", + "pos": "名詞", + "pn": 0.0480977 + }, + { + "surface": "配慮", + "readging": "はいりょ", + "pos": "名詞", + "pn": 0.048041 + }, + { + "surface": "感服", + "readging": "かんぷく", + "pos": "名詞", + "pn": 0.04769 + }, + { + "surface": "打立てる", + "readging": "うちたてる", + "pos": "動詞", + "pn": 0.0476621 + }, + { + "surface": "神歌", + "readging": "しんか", + "pos": "名詞", + "pn": 0.047477 + }, + { + "surface": "漸増", + "readging": "ぜんぞう", + "pos": "名詞", + "pn": 0.0472614 + }, + { + "surface": "田遊", + "readging": "たあそび", + "pos": "名詞", + "pn": 0.0472371 + }, + { + "surface": "帰す", + "readging": "きす", + "pos": "動詞", + "pn": 0.0472085 + }, + { + "surface": "延金", + "readging": "のべがね", + "pos": "名詞", + "pn": 0.0471704 + }, + { + "surface": "十字軍", + "readging": "じゅうじぐん", + "pos": "名詞", + "pn": 0.0471669 + }, + { + "surface": "サルタン", + "readging": "サルタン", + "pos": "名詞", + "pn": 0.0470895 + }, + { + "surface": "願意", + "readging": "がんい", + "pos": "名詞", + "pn": 0.0470632 + }, + { + "surface": "相識", + "readging": "そうしき", + "pos": "名詞", + "pn": 0.0470564 + }, + { + "surface": "和親", + "readging": "わしん", + "pos": "名詞", + "pn": 0.0467711 + }, + { + "surface": "内祝", + "readging": "うちいわい", + "pos": "名詞", + "pn": 0.0466834 + }, + { + "surface": "防衛", + "readging": "ぼうえい", + "pos": "名詞", + "pn": 0.0466816 + }, + { + "surface": "シンガー", + "readging": "シンガーソングライター", + "pos": "名詞", + "pn": 0.0466495 + }, + { + "surface": "奇書", + "readging": "きしょ", + "pos": "名詞", + "pn": 0.0462591 + }, + { + "surface": "可決", + "readging": "かけつ", + "pos": "名詞", + "pn": 0.0462348 + }, + { + "surface": "皇祖", + "readging": "こうそ", + "pos": "名詞", + "pn": 0.0461262 + }, + { + "surface": "不労", + "readging": "ふろう", + "pos": "名詞", + "pn": 0.0460522 + }, + { + "surface": "晴雨", + "readging": "せいう", + "pos": "名詞", + "pn": 0.046042 + }, + { + "surface": "大観", + "readging": "たいかん", + "pos": "名詞", + "pn": 0.0460189 + }, + { + "surface": "見直す", + "readging": "みなおす", + "pos": "動詞", + "pn": 0.045802 + }, + { + "surface": "護法", + "readging": "ごほう", + "pos": "名詞", + "pn": 0.0457344 + }, + { + "surface": "妙法", + "readging": "みょうほう", + "pos": "名詞", + "pn": 0.0456639 + }, + { + "surface": "往訪", + "readging": "おうほう", + "pos": "名詞", + "pn": 0.0456467 + }, + { + "surface": "花入れ", + "readging": "はないれ", + "pos": "名詞", + "pn": 0.0454985 + }, + { + "surface": "古跡", + "readging": "こせき", + "pos": "名詞", + "pn": 0.045326 + }, + { + "surface": "聾唖", + "readging": "ろうあ", + "pos": "名詞", + "pn": 0.0452446 + }, + { + "surface": "考慮", + "readging": "こうりょ", + "pos": "名詞", + "pn": 0.0452404 + }, + { + "surface": "放擲", + "readging": "ほうてき", + "pos": "名詞", + "pn": 0.0451689 + }, + { + "surface": "深閑", + "readging": "しんかん", + "pos": "名詞", + "pn": 0.0450045 + }, + { + "surface": "終電", + "readging": "しゅうでん", + "pos": "名詞", + "pn": 0.0447235 + }, + { + "surface": "ばたばた", + "readging": "ばたばた", + "pos": "副詞", + "pn": 0.0445183 + }, + { + "surface": "応諾", + "readging": "おうだく", + "pos": "名詞", + "pn": 0.0444331 + }, + { + "surface": "過般", + "readging": "かはん", + "pos": "名詞", + "pn": 0.0444081 + }, + { + "surface": "人頭", + "readging": "じんとう", + "pos": "名詞", + "pn": 0.0443375 + }, + { + "surface": "善戦", + "readging": "ぜんせん", + "pos": "名詞", + "pn": 0.0442798 + }, + { + "surface": "リクルート", + "readging": "リクルート", + "pos": "名詞", + "pn": 0.0442148 + }, + { + "surface": "努めて", + "readging": "つとめて", + "pos": "副詞", + "pn": 0.0441792 + }, + { + "surface": "アイドル", + "readging": "アイドル", + "pos": "名詞", + "pn": 0.0439791 + }, + { + "surface": "催事", + "readging": "さいじ", + "pos": "名詞", + "pn": 0.0439101 + }, + { + "surface": "盛夏", + "readging": "せいか", + "pos": "名詞", + "pn": 0.0438472 + }, + { + "surface": "ついたけ", + "readging": "ついたけ", + "pos": "名詞", + "pn": 0.0437523 + }, + { + "surface": "新居", + "readging": "しんきょ", + "pos": "名詞", + "pn": 0.043497 + }, + { + "surface": "大御所", + "readging": "おおごしょ", + "pos": "名詞", + "pn": 0.043314 + }, + { + "surface": "人情味", + "readging": "にんじょうみ", + "pos": "名詞", + "pn": 0.0432431 + }, + { + "surface": "真土", + "readging": "まつち", + "pos": "名詞", + "pn": 0.0432288 + }, + { + "surface": "存分", + "readging": "ぞんぶん", + "pos": "名詞", + "pn": 0.043007 + }, + { + "surface": "仏土", + "readging": "ぶつど", + "pos": "名詞", + "pn": 0.042879 + }, + { + "surface": "制圧", + "readging": "せいあつ", + "pos": "名詞", + "pn": 0.0428351 + }, + { + "surface": "夾侍", + "readging": "きょうじ", + "pos": "名詞", + "pn": 0.0427647 + }, + { + "surface": "腹心", + "readging": "ふくしん", + "pos": "名詞", + "pn": 0.0426354 + }, + { + "surface": "独往", + "readging": "どくおう", + "pos": "名詞", + "pn": 0.0425683 + }, + { + "surface": "冷涼", + "readging": "れいりょう", + "pos": "名詞", + "pn": 0.0424607 + }, + { + "surface": "活眼", + "readging": "かつがん", + "pos": "名詞", + "pn": 0.0423593 + }, + { + "surface": "供米", + "readging": "くまい", + "pos": "名詞", + "pn": 0.0422124 + }, + { + "surface": "完璧", + "readging": "かんぺき", + "pos": "名詞", + "pn": 0.042166 + }, + { + "surface": "セント", + "readging": "セント", + "pos": "名詞", + "pn": 0.0419709 + }, + { + "surface": "早足", + "readging": "はやあし", + "pos": "名詞", + "pn": 0.0416454 + }, + { + "surface": "音信", + "readging": "いんしん", + "pos": "名詞", + "pn": 0.0416435 + }, + { + "surface": "職工", + "readging": "しょっこう", + "pos": "名詞", + "pn": 0.0413631 + }, + { + "surface": "防縮", + "readging": "ぼうしゅく", + "pos": "名詞", + "pn": 0.0413544 + }, + { + "surface": "明色", + "readging": "めいしょく", + "pos": "名詞", + "pn": 0.0411918 + }, + { + "surface": "佐保姫", + "readging": "さおひめ", + "pos": "名詞", + "pn": 0.0411088 + }, + { + "surface": "交霊", + "readging": "こうれい", + "pos": "名詞", + "pn": 0.0409034 + }, + { + "surface": "みっちり", + "readging": "みっちり", + "pos": "副詞", + "pn": 0.0408184 + }, + { + "surface": "勝ち味", + "readging": "かちみ", + "pos": "名詞", + "pn": 0.0406581 + }, + { + "surface": "追縋る", + "readging": "おいすがる", + "pos": "動詞", + "pn": 0.0405712 + }, + { + "surface": "参議院", + "readging": "さんぎいん", + "pos": "名詞", + "pn": 0.040479 + }, + { + "surface": "西欧", + "readging": "せいおう", + "pos": "名詞", + "pn": 0.0403878 + }, + { + "surface": "知音", + "readging": "ちいん", + "pos": "名詞", + "pn": 0.0401853 + }, + { + "surface": "風月", + "readging": "ふうげつ", + "pos": "名詞", + "pn": 0.0399219 + }, + { + "surface": "性根", + "readging": "しょうね", + "pos": "名詞", + "pn": 0.0397116 + }, + { + "surface": "万年床", + "readging": "まんねんどこ", + "pos": "名詞", + "pn": 0.0395889 + }, + { + "surface": "兆す", + "readging": "きざす", + "pos": "動詞", + "pn": 0.0393497 + }, + { + "surface": "かまとと", + "readging": "かまとと", + "pos": "名詞", + "pn": 0.0392156 + }, + { + "surface": "朗話", + "readging": "ろうわ", + "pos": "名詞", + "pn": 0.039188 + }, + { + "surface": "一隻眼", + "readging": "いっせきがん", + "pos": "名詞", + "pn": 0.039129 + }, + { + "surface": "谷中", + "readging": "やなか", + "pos": "名詞", + "pn": 0.0390849 + }, + { + "surface": "朝凪", + "readging": "あさなぎ", + "pos": "名詞", + "pn": 0.0389319 + }, + { + "surface": "諦念", + "readging": "ていねん", + "pos": "名詞", + "pn": 0.0385752 + }, + { + "surface": "左団扇", + "readging": "ひだりうちわ", + "pos": "名詞", + "pn": 0.0385425 + }, + { + "surface": "不信心", + "readging": "ふしんじん", + "pos": "名詞", + "pn": 0.0384869 + }, + { + "surface": "筋力", + "readging": "きんりょく", + "pos": "名詞", + "pn": 0.0384711 + }, + { + "surface": "詳密", + "readging": "しょうみつ", + "pos": "名詞", + "pn": 0.0383243 + }, + { + "surface": "早出", + "readging": "はやで", + "pos": "名詞", + "pn": 0.0382778 + }, + { + "surface": "帯刀御免", + "readging": "たいとうごめん", + "pos": "名詞", + "pn": 0.0380528 + }, + { + "surface": "悠悠閑閑", + "readging": "ゆうゆうかんかん", + "pos": "名詞", + "pn": 0.0379873 + }, + { + "surface": "芸談", + "readging": "げいだん", + "pos": "名詞", + "pn": 0.0379757 + }, + { + "surface": "奮闘", + "readging": "ふんとう", + "pos": "名詞", + "pn": 0.0379137 + }, + { + "surface": "弛む", + "readging": "たるむ", + "pos": "動詞", + "pn": 0.0378775 + }, + { + "surface": "貞潔", + "readging": "ていけつ", + "pos": "名詞", + "pn": 0.0376993 + }, + { + "surface": "重厚", + "readging": "じゅうこう", + "pos": "名詞", + "pn": 0.0376601 + }, + { + "surface": "正中", + "readging": "せいちゅう", + "pos": "名詞", + "pn": 0.0375092 + }, + { + "surface": "陽電子", + "readging": "ようでんし", + "pos": "名詞", + "pn": 0.037477 + }, + { + "surface": "遺沢", + "readging": "いたく", + "pos": "名詞", + "pn": 0.0374666 + }, + { + "surface": "安普請", + "readging": "やすぶしん", + "pos": "名詞", + "pn": 0.0373594 + }, + { + "surface": "陰弁慶", + "readging": "かげべんけい", + "pos": "名詞", + "pn": 0.0372502 + }, + { + "surface": "探湯", + "readging": "くかたち", + "pos": "名詞", + "pn": 0.0372397 + }, + { + "surface": "客気", + "readging": "かっき", + "pos": "名詞", + "pn": 0.0371737 + }, + { + "surface": "正面", + "readging": "しょうめん", + "pos": "名詞", + "pn": 0.0371008 + }, + { + "surface": "不滅", + "readging": "ふめつ", + "pos": "名詞", + "pn": 0.0370613 + }, + { + "surface": "釈迦一代", + "readging": "しゃかいちだい", + "pos": "名詞", + "pn": 0.0369949 + }, + { + "surface": "殊の外", + "readging": "ことのほか", + "pos": "名詞", + "pn": 0.0368918 + }, + { + "surface": "老優", + "readging": "ろうゆう", + "pos": "名詞", + "pn": 0.0368387 + }, + { + "surface": "清酒", + "readging": "せいしゅ", + "pos": "名詞", + "pn": 0.0368189 + }, + { + "surface": "近状", + "readging": "きんじょう", + "pos": "名詞", + "pn": 0.0368143 + }, + { + "surface": "興がる", + "readging": "きょうがる", + "pos": "動詞", + "pn": 0.0366275 + }, + { + "surface": "板蔀", + "readging": "いたじとみ", + "pos": "名詞", + "pn": 0.0366125 + }, + { + "surface": "名無し", + "readging": "ななし", + "pos": "名詞", + "pn": 0.0364086 + }, + { + "surface": "胎教", + "readging": "たいきょう", + "pos": "名詞", + "pn": 0.0361499 + }, + { + "surface": "夢現", + "readging": "ゆめうつつ", + "pos": "名詞", + "pn": 0.036139 + }, + { + "surface": "越訴", + "readging": "えっそ", + "pos": "名詞", + "pn": 0.0360781 + }, + { + "surface": "催し", + "readging": "もよおし", + "pos": "名詞", + "pn": 0.0359995 + }, + { + "surface": "周知", + "readging": "しゅうち", + "pos": "名詞", + "pn": 0.0359715 + }, + { + "surface": "呼捨て", + "readging": "よびすて", + "pos": "名詞", + "pn": 0.0358399 + }, + { + "surface": "巨頭", + "readging": "きょとう", + "pos": "名詞", + "pn": 0.03581 + }, + { + "surface": "空念仏", + "readging": "そらねんぶつ", + "pos": "名詞", + "pn": 0.035715 + }, + { + "surface": "衆院", + "readging": "しゅういん", + "pos": "名詞", + "pn": 0.0355908 + }, + { + "surface": "適合", + "readging": "てきごう", + "pos": "名詞", + "pn": 0.0355219 + }, + { + "surface": "戒心", + "readging": "かいしん", + "pos": "名詞", + "pn": 0.0353116 + }, + { + "surface": "正出", + "readging": "せいしゅつ", + "pos": "名詞", + "pn": 0.0352903 + }, + { + "surface": "少佐", + "readging": "しょうさ", + "pos": "名詞", + "pn": 0.0351863 + }, + { + "surface": "とこしえ", + "readging": "とこしえ", + "pos": "名詞", + "pn": 0.0351701 + }, + { + "surface": "中佐", + "readging": "ちゅうさ", + "pos": "名詞", + "pn": 0.0350778 + }, + { + "surface": "高年", + "readging": "こうねん", + "pos": "名詞", + "pn": 0.0350704 + }, + { + "surface": "教父", + "readging": "きょうふ", + "pos": "名詞", + "pn": 0.0350352 + }, + { + "surface": "菩提", + "readging": "ぼだい", + "pos": "名詞", + "pn": 0.0349773 + }, + { + "surface": "官選", + "readging": "かんせん", + "pos": "名詞", + "pn": 0.0349368 + }, + { + "surface": "頗る", + "readging": "すこぶる", + "pos": "副詞", + "pn": 0.0347696 + }, + { + "surface": "知り抜く", + "readging": "しりぬく", + "pos": "動詞", + "pn": 0.0347199 + }, + { + "surface": "遮蔽", + "readging": "しゃへい", + "pos": "名詞", + "pn": 0.0346801 + }, + { + "surface": "高齢", + "readging": "こうれい", + "pos": "名詞", + "pn": 0.0346494 + }, + { + "surface": "小事", + "readging": "しょうじ", + "pos": "名詞", + "pn": 0.0346492 + }, + { + "surface": "不出", + "readging": "ふしゅつ", + "pos": "名詞", + "pn": 0.0346428 + }, + { + "surface": "死活", + "readging": "しかつ", + "pos": "名詞", + "pn": 0.0346054 + }, + { + "surface": "獅子吼", + "readging": "ししく", + "pos": "名詞", + "pn": 0.0346051 + }, + { + "surface": "どよむ", + "readging": "どよむ", + "pos": "動詞", + "pn": 0.0346005 + }, + { + "surface": "鼓腹", + "readging": "こふく", + "pos": "名詞", + "pn": 0.03456 + }, + { + "surface": "窮まり", + "readging": "きわまり", + "pos": "名詞", + "pn": 0.0345191 + }, + { + "surface": "宝玉", + "readging": "ほうぎょく", + "pos": "名詞", + "pn": 0.0345141 + }, + { + "surface": "賞罰", + "readging": "しょうばつ", + "pos": "名詞", + "pn": 0.0343207 + }, + { + "surface": "敬愛", + "readging": "けいあい", + "pos": "名詞", + "pn": 0.0343189 + }, + { + "surface": "放心", + "readging": "ほうしん", + "pos": "名詞", + "pn": 0.03428 + }, + { + "surface": "内宮", + "readging": "ないくう", + "pos": "名詞", + "pn": 0.0340911 + }, + { + "surface": "入船", + "readging": "いりふね", + "pos": "名詞", + "pn": 0.0340646 + }, + { + "surface": "逓増", + "readging": "ていぞう", + "pos": "名詞", + "pn": 0.0339708 + }, + { + "surface": "労働問題", + "readging": "ろうどうもんだい", + "pos": "名詞", + "pn": 0.0339582 + }, + { + "surface": "十戒", + "readging": "じっかい", + "pos": "名詞", + "pn": 0.0339119 + }, + { + "surface": "勲爵", + "readging": "くんしゃく", + "pos": "名詞", + "pn": 0.0339033 + }, + { + "surface": "本志", + "readging": "ほんし", + "pos": "名詞", + "pn": 0.0338165 + }, + { + "surface": "志", + "readging": "し", + "pos": "名詞", + "pn": 0.0337717 + }, + { + "surface": "ディスカウント", + "readging": "ディスカウント", + "pos": "名詞", + "pn": 0.0337337 + }, + { + "surface": "句法", + "readging": "くほう", + "pos": "名詞", + "pn": 0.0335579 + }, + { + "surface": "幽谷", + "readging": "ゆうこく", + "pos": "名詞", + "pn": 0.0335475 + }, + { + "surface": "珍貨", + "readging": "ちんか", + "pos": "名詞", + "pn": 0.0335399 + }, + { + "surface": "小田原評定", + "readging": "おだわらひょうじょう", + "pos": "名詞", + "pn": 0.0334444 + }, + { + "surface": "バイブル", + "readging": "バイブル", + "pos": "名詞", + "pn": 0.0334026 + }, + { + "surface": "武人", + "readging": "ぶじん", + "pos": "名詞", + "pn": 0.0333486 + }, + { + "surface": "容色", + "readging": "ようしょく", + "pos": "名詞", + "pn": 0.0331993 + }, + { + "surface": "野心", + "readging": "やしん", + "pos": "名詞", + "pn": 0.0329672 + }, + { + "surface": "希少価値", + "readging": "きしょうかち", + "pos": "名詞", + "pn": 0.0329634 + }, + { + "surface": "邪念", + "readging": "じゃねん", + "pos": "名詞", + "pn": 0.0328468 + }, + { + "surface": "穏健", + "readging": "おんけん", + "pos": "名詞", + "pn": 0.0328415 + }, + { + "surface": "積載", + "readging": "せきさい", + "pos": "名詞", + "pn": 0.0327944 + }, + { + "surface": "彼の世", + "readging": "あのよ", + "pos": "名詞", + "pn": 0.0327842 + }, + { + "surface": "更改", + "readging": "こうかい", + "pos": "名詞", + "pn": 0.032782 + }, + { + "surface": "映える", + "readging": "はえる", + "pos": "動詞", + "pn": 0.0326959 + }, + { + "surface": "順調", + "readging": "じゅんちょう", + "pos": "名詞", + "pn": 0.0326944 + }, + { + "surface": "穏当", + "readging": "おんとう", + "pos": "名詞", + "pn": 0.0326382 + }, + { + "surface": "懐郷", + "readging": "かいきょう", + "pos": "名詞", + "pn": 0.0326278 + }, + { + "surface": "勤", + "readging": "きん", + "pos": "名詞", + "pn": 0.0326144 + }, + { + "surface": "合致", + "readging": "がっち", + "pos": "名詞", + "pn": 0.0325056 + }, + { + "surface": "有形", + "readging": "ゆうけい", + "pos": "名詞", + "pn": 0.0323695 + }, + { + "surface": "無毒", + "readging": "むどく", + "pos": "名詞", + "pn": 0.0317232 + }, + { + "surface": "真心", + "readging": "まごころ", + "pos": "名詞", + "pn": 0.0316849 + }, + { + "surface": "まぐれ当り", + "readging": "まぐれあたり", + "pos": "名詞", + "pn": 0.0313577 + }, + { + "surface": "下前", + "readging": "したまえ", + "pos": "名詞", + "pn": 0.0312462 + }, + { + "surface": "増進", + "readging": "ぞうしん", + "pos": "名詞", + "pn": 0.0310707 + }, + { + "surface": "インドア", + "readging": "インドア", + "pos": "名詞", + "pn": 0.0309828 + }, + { + "surface": "巨費", + "readging": "きょひ", + "pos": "名詞", + "pn": 0.0309396 + }, + { + "surface": "家兄", + "readging": "かけい", + "pos": "名詞", + "pn": 0.030934 + }, + { + "surface": "特立", + "readging": "とくりつ", + "pos": "名詞", + "pn": 0.0308205 + }, + { + "surface": "恵与", + "readging": "けいよ", + "pos": "名詞", + "pn": 0.0307499 + }, + { + "surface": "斜", + "readging": "はす", + "pos": "名詞", + "pn": 0.0307162 + }, + { + "surface": "子安地蔵", + "readging": "こやすじぞう", + "pos": "名詞", + "pn": 0.0306965 + }, + { + "surface": "健在", + "readging": "けんざい", + "pos": "名詞", + "pn": 0.0306784 + }, + { + "surface": "チンパンジー", + "readging": "チンパンジー", + "pos": "名詞", + "pn": 0.0306382 + }, + { + "surface": "DDT", + "readging": "ディーディーティー", + "pos": "名詞", + "pn": 0.0306219 + }, + { + "surface": "加圧", + "readging": "かあつ", + "pos": "名詞", + "pn": 0.0306081 + }, + { + "surface": "六地蔵", + "readging": "ろくじぞう", + "pos": "名詞", + "pn": 0.0305951 + }, + { + "surface": "値下り", + "readging": "ねさがり", + "pos": "名詞", + "pn": 0.0305102 + }, + { + "surface": "力量", + "readging": "りきりょう", + "pos": "名詞", + "pn": 0.0304981 + }, + { + "surface": "選外", + "readging": "せんがい", + "pos": "名詞", + "pn": 0.030469 + }, + { + "surface": "青嵐", + "readging": "あおあらし", + "pos": "名詞", + "pn": 0.0304036 + }, + { + "surface": "精美", + "readging": "せいび", + "pos": "名詞", + "pn": 0.0302784 + }, + { + "surface": "喇嘛教", + "readging": "ラマきょう", + "pos": "名詞", + "pn": 0.0302515 + }, + { + "surface": "白話", + "readging": "はくわ", + "pos": "名詞", + "pn": 0.0301087 + }, + { + "surface": "労働運動", + "readging": "ろうどううんどう", + "pos": "名詞", + "pn": 0.0300613 + }, + { + "surface": "有髪", + "readging": "うはつ", + "pos": "名詞", + "pn": 0.0300167 + }, + { + "surface": "句作", + "readging": "くさく", + "pos": "名詞", + "pn": 0.0299902 + }, + { + "surface": "首尾", + "readging": "しゅび", + "pos": "名詞", + "pn": 0.0299851 + }, + { + "surface": "特売", + "readging": "とくばい", + "pos": "名詞", + "pn": 0.0298179 + }, + { + "surface": "求心", + "readging": "きゅうしん", + "pos": "名詞", + "pn": 0.029806 + }, + { + "surface": "快弁", + "readging": "かいべん", + "pos": "名詞", + "pn": 0.0297192 + }, + { + "surface": "乗り気", + "readging": "のりき", + "pos": "名詞", + "pn": 0.0297025 + }, + { + "surface": "非売品", + "readging": "ひばいひん", + "pos": "名詞", + "pn": 0.0296909 + }, + { + "surface": "さりげ", + "readging": "さりげない", + "pos": "名詞", + "pn": 0.0295003 + }, + { + "surface": "風景", + "readging": "ふうけい", + "pos": "名詞", + "pn": 0.0294728 + }, + { + "surface": "最新", + "readging": "さいしん", + "pos": "名詞", + "pn": 0.0292205 + }, + { + "surface": "好事家", + "readging": "こうずか", + "pos": "名詞", + "pn": 0.0291908 + }, + { + "surface": "無駄足", + "readging": "むだあし", + "pos": "名詞", + "pn": 0.0291435 + }, + { + "surface": "引っこ抜く", + "readging": "ひっこぬく", + "pos": "動詞", + "pn": 0.0290702 + }, + { + "surface": "あぶれる", + "readging": "あぶれる", + "pos": "動詞", + "pn": 0.0289528 + }, + { + "surface": "選択", + "readging": "せんたく", + "pos": "名詞", + "pn": 0.0289209 + }, + { + "surface": "揃う", + "readging": "そろう", + "pos": "動詞", + "pn": 0.0288232 + }, + { + "surface": "手強い", + "readging": "てづよい", + "pos": "形容詞", + "pn": 0.0287432 + }, + { + "surface": "赴任", + "readging": "ふにん", + "pos": "名詞", + "pn": 0.0287307 + }, + { + "surface": "欠勤", + "readging": "けっきん", + "pos": "名詞", + "pn": 0.0283919 + }, + { + "surface": "閑却", + "readging": "かんきゃく", + "pos": "名詞", + "pn": 0.0283111 + }, + { + "surface": "信任状", + "readging": "しんにんじょう", + "pos": "名詞", + "pn": 0.0282915 + }, + { + "surface": "文民", + "readging": "ぶんみん", + "pos": "名詞", + "pn": 0.0280175 + }, + { + "surface": "末節", + "readging": "まっせつ", + "pos": "名詞", + "pn": 0.0279358 + }, + { + "surface": "剣法", + "readging": "けんぽう", + "pos": "名詞", + "pn": 0.027838 + }, + { + "surface": "存疑", + "readging": "そんぎ", + "pos": "名詞", + "pn": 0.0277904 + }, + { + "surface": "鬼謀", + "readging": "きぼう", + "pos": "名詞", + "pn": 0.0276099 + }, + { + "surface": "当今", + "readging": "とうぎん", + "pos": "名詞", + "pn": 0.027433 + }, + { + "surface": "廉売", + "readging": "れんばい", + "pos": "名詞", + "pn": 0.0274316 + }, + { + "surface": "小田原提灯", + "readging": "おだわらぢょうちん", + "pos": "名詞", + "pn": 0.0273196 + }, + { + "surface": "中ぶらりん", + "readging": "ちゅうぶらりん", + "pos": "名詞", + "pn": 0.027317 + }, + { + "surface": "内弁慶", + "readging": "うちべんけい", + "pos": "名詞", + "pn": 0.027231 + }, + { + "surface": "懸案", + "readging": "けんあん", + "pos": "名詞", + "pn": 0.0271334 + }, + { + "surface": "治定", + "readging": "じじょう", + "pos": "名詞", + "pn": 0.0270928 + }, + { + "surface": "楽隠居", + "readging": "らくいんきょ", + "pos": "名詞", + "pn": 0.0270866 + }, + { + "surface": "アメニティー", + "readging": "アメニティー", + "pos": "名詞", + "pn": 0.026791 + }, + { + "surface": "しかく張る", + "readging": "しかくばる", + "pos": "動詞", + "pn": 0.0266657 + }, + { + "surface": "如実", + "readging": "にょじつ", + "pos": "名詞", + "pn": 0.0266414 + }, + { + "surface": "裨益", + "readging": "ひえき", + "pos": "名詞", + "pn": 0.0265852 + }, + { + "surface": "耶蘇教", + "readging": "ヤソきょう", + "pos": "名詞", + "pn": 0.0263684 + }, + { + "surface": "運用", + "readging": "うんよう", + "pos": "名詞", + "pn": 0.0263631 + }, + { + "surface": "求婚", + "readging": "きゅうこん", + "pos": "名詞", + "pn": 0.0262881 + }, + { + "surface": "及第", + "readging": "きゅうだい", + "pos": "名詞", + "pn": 0.0261135 + }, + { + "surface": "風韻", + "readging": "ふういん", + "pos": "名詞", + "pn": 0.0260957 + }, + { + "surface": "薩摩隼人", + "readging": "さつまはやと", + "pos": "名詞", + "pn": 0.0259396 + }, + { + "surface": "適格", + "readging": "てっかく", + "pos": "名詞", + "pn": 0.025903 + }, + { + "surface": "精糖", + "readging": "せいとう", + "pos": "名詞", + "pn": 0.025782 + }, + { + "surface": "お転婆", + "readging": "おてんば", + "pos": "名詞", + "pn": 0.0257801 + }, + { + "surface": "釣合う", + "readging": "つりあう", + "pos": "動詞", + "pn": 0.0256649 + }, + { + "surface": "恬然", + "readging": "てんぜん", + "pos": "名詞", + "pn": 0.025656 + }, + { + "surface": "環境設定", + "readging": "かんきょうせってい", + "pos": "名詞", + "pn": 0.0256543 + }, + { + "surface": "楽土", + "readging": "らくど", + "pos": "名詞", + "pn": 0.0255543 + }, + { + "surface": "判官", + "readging": "はんがん", + "pos": "名詞", + "pn": 0.0253823 + }, + { + "surface": "銅鉱", + "readging": "どうこう", + "pos": "名詞", + "pn": 0.025203 + }, + { + "surface": "霊峰", + "readging": "れいほう", + "pos": "名詞", + "pn": 0.0252019 + }, + { + "surface": "霊鳥", + "readging": "れいちょう", + "pos": "名詞", + "pn": 0.0251434 + }, + { + "surface": "紺青", + "readging": "こんじょう", + "pos": "名詞", + "pn": 0.0249855 + }, + { + "surface": "不成績", + "readging": "ふせいせき", + "pos": "名詞", + "pn": 0.0249667 + }, + { + "surface": "リリシズム", + "readging": "リリシズム", + "pos": "名詞", + "pn": 0.0249172 + }, + { + "surface": "諸公", + "readging": "しょこう", + "pos": "名詞", + "pn": 0.0248365 + }, + { + "surface": "馬耳東風", + "readging": "ばじとうふう", + "pos": "名詞", + "pn": 0.0247628 + }, + { + "surface": "長足", + "readging": "ちょうそく", + "pos": "名詞", + "pn": 0.0246277 + }, + { + "surface": "知り合う", + "readging": "しりあう", + "pos": "動詞", + "pn": 0.0245939 + }, + { + "surface": "卑称", + "readging": "ひしょう", + "pos": "名詞", + "pn": 0.0245317 + }, + { + "surface": "済", + "readging": "すみ", + "pos": "名詞", + "pn": 0.0245304 + }, + { + "surface": "法語", + "readging": "ほうご", + "pos": "名詞", + "pn": 0.0245061 + }, + { + "surface": "皇", + "readging": "すめろぎ", + "pos": "名詞", + "pn": 0.0244573 + }, + { + "surface": "此の間", + "readging": "このかん", + "pos": "名詞", + "pn": 0.0243634 + }, + { + "surface": "裏通り", + "readging": "うらどおり", + "pos": "名詞", + "pn": 0.023899 + }, + { + "surface": "世間師", + "readging": "せけんし", + "pos": "名詞", + "pn": 0.0238883 + }, + { + "surface": "便する", + "readging": "べんする", + "pos": "動詞", + "pn": 0.0238492 + }, + { + "surface": "猫舌", + "readging": "ねこじた", + "pos": "名詞", + "pn": 0.0237346 + }, + { + "surface": "購買組合", + "readging": "こうばいくみあい", + "pos": "名詞", + "pn": 0.0235787 + }, + { + "surface": "妓生", + "readging": "キーサン", + "pos": "名詞", + "pn": 0.0235542 + }, + { + "surface": "近影", + "readging": "きんえい", + "pos": "名詞", + "pn": 0.0235288 + }, + { + "surface": "上様", + "readging": "うえさま", + "pos": "名詞", + "pn": 0.0234844 + }, + { + "surface": "分身", + "readging": "ぶんしん", + "pos": "名詞", + "pn": 0.0234705 + }, + { + "surface": "退廷", + "readging": "たいてい", + "pos": "名詞", + "pn": 0.0232155 + }, + { + "surface": "熱情", + "readging": "ねつじょう", + "pos": "名詞", + "pn": 0.0231906 + }, + { + "surface": "傾国", + "readging": "けいこく", + "pos": "名詞", + "pn": 0.0231563 + }, + { + "surface": "寡作", + "readging": "かさく", + "pos": "名詞", + "pn": 0.02301 + }, + { + "surface": "不特定", + "readging": "ふとくてい", + "pos": "名詞", + "pn": 0.0229693 + }, + { + "surface": "知見", + "readging": "ちけん", + "pos": "名詞", + "pn": 0.0229551 + }, + { + "surface": "天人", + "readging": "てんにん", + "pos": "名詞", + "pn": 0.0229293 + }, + { + "surface": "恒例", + "readging": "こうれい", + "pos": "名詞", + "pn": 0.0228332 + }, + { + "surface": "公党", + "readging": "こうとう", + "pos": "名詞", + "pn": 0.0227498 + }, + { + "surface": "濁酒", + "readging": "だくしゅ", + "pos": "名詞", + "pn": 0.0226922 + }, + { + "surface": "表する", + "readging": "ひょうする", + "pos": "動詞", + "pn": 0.0226137 + }, + { + "surface": "エンゼル", + "readging": "エンゼル", + "pos": "名詞", + "pn": 0.0225099 + }, + { + "surface": "該博", + "readging": "がいはく", + "pos": "名詞", + "pn": 0.0224603 + }, + { + "surface": "河清", + "readging": "かせい", + "pos": "名詞", + "pn": 0.0223265 + }, + { + "surface": "展望車", + "readging": "てんぼうしゃ", + "pos": "名詞", + "pn": 0.0222026 + }, + { + "surface": "落選", + "readging": "らくせん", + "pos": "名詞", + "pn": 0.0221851 + }, + { + "surface": "蛮人", + "readging": "ばんじん", + "pos": "名詞", + "pn": 0.0219805 + }, + { + "surface": "不正規", + "readging": "ふせいき", + "pos": "名詞", + "pn": 0.021955 + }, + { + "surface": "浅葱裏", + "readging": "あさぎうら", + "pos": "名詞", + "pn": 0.0218796 + }, + { + "surface": "写生", + "readging": "しゃせい", + "pos": "名詞", + "pn": 0.0217991 + }, + { + "surface": "銅牌", + "readging": "どうはい", + "pos": "名詞", + "pn": 0.0217325 + }, + { + "surface": "美妓", + "readging": "びぎ", + "pos": "名詞", + "pn": 0.0216244 + }, + { + "surface": "花器", + "readging": "かき", + "pos": "名詞", + "pn": 0.0215926 + }, + { + "surface": "治効", + "readging": "ちこう", + "pos": "名詞", + "pn": 0.021588 + }, + { + "surface": "巻末", + "readging": "かんまつ", + "pos": "名詞", + "pn": 0.0215801 + }, + { + "surface": "閼伽棚", + "readging": "あかだな", + "pos": "名詞", + "pn": 0.0215605 + }, + { + "surface": "心祝", + "readging": "こころいわい", + "pos": "名詞", + "pn": 0.0212909 + }, + { + "surface": "本気", + "readging": "ほんき", + "pos": "名詞", + "pn": 0.0212263 + }, + { + "surface": "商売人", + "readging": "しょうばいにん", + "pos": "名詞", + "pn": 0.021222 + }, + { + "surface": "党同伐異", + "readging": "とうどうばつい", + "pos": "名詞", + "pn": 0.0211617 + }, + { + "surface": "諭す", + "readging": "さとす", + "pos": "動詞", + "pn": 0.0209991 + }, + { + "surface": "利生", + "readging": "りしょう", + "pos": "名詞", + "pn": 0.0209845 + }, + { + "surface": "ペット", + "readging": "ペット", + "pos": "名詞", + "pn": 0.0208648 + }, + { + "surface": "朝飯前", + "readging": "あさめしまえ", + "pos": "名詞", + "pn": 0.020834 + }, + { + "surface": "処士", + "readging": "しょし", + "pos": "名詞", + "pn": 0.0206887 + }, + { + "surface": "仰望", + "readging": "ぎょうぼう", + "pos": "名詞", + "pn": 0.0206828 + }, + { + "surface": "本則", + "readging": "ほんそく", + "pos": "名詞", + "pn": 0.0206348 + }, + { + "surface": "美童", + "readging": "びどう", + "pos": "名詞", + "pn": 0.0206167 + }, + { + "surface": "他薦", + "readging": "たせん", + "pos": "名詞", + "pn": 0.0204306 + }, + { + "surface": "一神教", + "readging": "いっしんきょう", + "pos": "名詞", + "pn": 0.0204257 + }, + { + "surface": "礼節", + "readging": "れいせつ", + "pos": "名詞", + "pn": 0.020317 + }, + { + "surface": "聖徒", + "readging": "せいと", + "pos": "名詞", + "pn": 0.0201519 + }, + { + "surface": "雄飛", + "readging": "ゆうひ", + "pos": "名詞", + "pn": 0.0199261 + }, + { + "surface": "半ら半尺", + "readging": "なからはんじゃく", + "pos": "名詞", + "pn": 0.0198654 + }, + { + "surface": "粗略", + "readging": "そりゃく", + "pos": "名詞", + "pn": 0.0198654 + }, + { + "surface": "選り好み", + "readging": "えりごのみ", + "pos": "名詞", + "pn": 0.0196801 + }, + { + "surface": "晩霜", + "readging": "ばんそう", + "pos": "名詞", + "pn": 0.0196341 + }, + { + "surface": "通暁", + "readging": "つうぎょう", + "pos": "名詞", + "pn": 0.0195342 + }, + { + "surface": "道念", + "readging": "どうねん", + "pos": "名詞", + "pn": 0.0194926 + }, + { + "surface": "余熱", + "readging": "よねつ", + "pos": "名詞", + "pn": 0.0194588 + }, + { + "surface": "起業", + "readging": "きぎょう", + "pos": "名詞", + "pn": 0.0194247 + }, + { + "surface": "増俸", + "readging": "ぞうほう", + "pos": "名詞", + "pn": 0.0194047 + }, + { + "surface": "神宮", + "readging": "じんぐう", + "pos": "名詞", + "pn": 0.0193766 + }, + { + "surface": "無関心", + "readging": "むかんしん", + "pos": "名詞", + "pn": 0.0191973 + }, + { + "surface": "入れ揚げる", + "readging": "いれあげる", + "pos": "動詞", + "pn": 0.0191801 + }, + { + "surface": "遠景", + "readging": "えんけい", + "pos": "名詞", + "pn": 0.0191666 + }, + { + "surface": "静", + "readging": "せい", + "pos": "名詞", + "pn": 0.0189515 + }, + { + "surface": "聖家族", + "readging": "せいかぞく", + "pos": "名詞", + "pn": 0.0188511 + }, + { + "surface": "弱火", + "readging": "よわび", + "pos": "名詞", + "pn": 0.0186651 + }, + { + "surface": "尊敬", + "readging": "そんけい", + "pos": "名詞", + "pn": 0.0186478 + }, + { + "surface": "摘草", + "readging": "つみくさ", + "pos": "名詞", + "pn": 0.0186126 + }, + { + "surface": "国境", + "readging": "くにざかい", + "pos": "名詞", + "pn": 0.0184116 + }, + { + "surface": "一本気", + "readging": "いっぽんぎ", + "pos": "名詞", + "pn": 0.0183986 + }, + { + "surface": "嬌態", + "readging": "きょうたい", + "pos": "名詞", + "pn": 0.0183461 + }, + { + "surface": "無銘", + "readging": "むめい", + "pos": "名詞", + "pn": 0.0183251 + }, + { + "surface": "黒字", + "readging": "くろじ", + "pos": "名詞", + "pn": 0.0182921 + }, + { + "surface": "無免許", + "readging": "むめんきょ", + "pos": "名詞", + "pn": 0.0182429 + }, + { + "surface": "兄弟分", + "readging": "きょうだいぶん", + "pos": "名詞", + "pn": 0.0182242 + }, + { + "surface": "法華", + "readging": "ほっけ", + "pos": "名詞", + "pn": 0.0182047 + }, + { + "surface": "名刹", + "readging": "めいさつ", + "pos": "名詞", + "pn": 0.018066 + }, + { + "surface": "虚空", + "readging": "こくう", + "pos": "名詞", + "pn": 0.0179987 + }, + { + "surface": "破綻", + "readging": "はたん", + "pos": "名詞", + "pn": 0.0179427 + }, + { + "surface": "時人", + "readging": "じじん", + "pos": "名詞", + "pn": 0.0177868 + }, + { + "surface": "愚兄", + "readging": "ぐけい", + "pos": "名詞", + "pn": 0.0175652 + }, + { + "surface": "新都", + "readging": "しんと", + "pos": "名詞", + "pn": 0.0175055 + }, + { + "surface": "前座", + "readging": "ぜんざ", + "pos": "名詞", + "pn": 0.0174921 + }, + { + "surface": "符合", + "readging": "ふごう", + "pos": "名詞", + "pn": 0.0174421 + }, + { + "surface": "御酒", + "readging": "みき", + "pos": "名詞", + "pn": 0.0174129 + }, + { + "surface": "補弼", + "readging": "ほひつ", + "pos": "名詞", + "pn": 0.0173699 + }, + { + "surface": "新紀元", + "readging": "しんきげん", + "pos": "名詞", + "pn": 0.0173369 + }, + { + "surface": "赤電車", + "readging": "あかでんしゃ", + "pos": "名詞", + "pn": 0.0172774 + }, + { + "surface": "宮", + "readging": "みや", + "pos": "名詞", + "pn": 0.017077 + }, + { + "surface": "名代", + "readging": "なだい", + "pos": "名詞", + "pn": 0.0168923 + }, + { + "surface": "充実", + "readging": "じゅうじつ", + "pos": "名詞", + "pn": 0.0168811 + }, + { + "surface": "大挙", + "readging": "たいきょ", + "pos": "名詞", + "pn": 0.0168742 + }, + { + "surface": "脇立", + "readging": "わきだち", + "pos": "名詞", + "pn": 0.0168032 + }, + { + "surface": "感度", + "readging": "かんど", + "pos": "名詞", + "pn": 0.0167697 + }, + { + "surface": "登用", + "readging": "とうよう", + "pos": "名詞", + "pn": 0.0167049 + }, + { + "surface": "放胆", + "readging": "ほうたん", + "pos": "名詞", + "pn": 0.0166667 + }, + { + "surface": "二枚目", + "readging": "にまいめ", + "pos": "名詞", + "pn": 0.0166131 + }, + { + "surface": "往信", + "readging": "おうしん", + "pos": "名詞", + "pn": 0.0164911 + }, + { + "surface": "詞華集", + "readging": "しかしゅう", + "pos": "名詞", + "pn": 0.0164401 + }, + { + "surface": "心ばえ", + "readging": "こころばえ", + "pos": "名詞", + "pn": 0.0164193 + }, + { + "surface": "続貂", + "readging": "ぞくちょう", + "pos": "名詞", + "pn": 0.0164127 + }, + { + "surface": "小兵", + "readging": "こひょう", + "pos": "名詞", + "pn": 0.0164121 + }, + { + "surface": "澄明", + "readging": "ちょうめい", + "pos": "名詞", + "pn": 0.0163353 + }, + { + "surface": "銘記", + "readging": "めいき", + "pos": "名詞", + "pn": 0.0161707 + }, + { + "surface": "フィロソフィー", + "readging": "フィロソフィー", + "pos": "名詞", + "pn": 0.0161695 + }, + { + "surface": "溌墨", + "readging": "はつぼく", + "pos": "名詞", + "pn": 0.0161695 + }, + { + "surface": "金持", + "readging": "かねもち", + "pos": "名詞", + "pn": 0.0160367 + }, + { + "surface": "不溶性", + "readging": "ふようせい", + "pos": "名詞", + "pn": 0.0160244 + }, + { + "surface": "文物", + "readging": "ぶんぶつ", + "pos": "名詞", + "pn": 0.0159817 + }, + { + "surface": "珍客", + "readging": "ちんきゃく", + "pos": "名詞", + "pn": 0.0159487 + }, + { + "surface": "君主国", + "readging": "くんしゅこく", + "pos": "名詞", + "pn": 0.0159175 + }, + { + "surface": "近景", + "readging": "きんけい", + "pos": "名詞", + "pn": 0.0159116 + }, + { + "surface": "偶作", + "readging": "ぐうさく", + "pos": "名詞", + "pn": 0.0158273 + }, + { + "surface": "口語文", + "readging": "こうごぶん", + "pos": "名詞", + "pn": 0.0157913 + }, + { + "surface": "鉄脚", + "readging": "てっきゃく", + "pos": "名詞", + "pn": 0.0157544 + }, + { + "surface": "如意輪観音", + "readging": "にょいりんかんのん", + "pos": "名詞", + "pn": 0.0157432 + }, + { + "surface": "捻挫", + "readging": "ねんざ", + "pos": "名詞", + "pn": 0.0156418 + }, + { + "surface": "生存競争", + "readging": "せいぞんきょうそう", + "pos": "名詞", + "pn": 0.0156316 + }, + { + "surface": "侃侃諤諤", + "readging": "かんかんがくがく", + "pos": "名詞", + "pn": 0.0155942 + }, + { + "surface": "暖冬", + "readging": "だんとう", + "pos": "名詞", + "pn": 0.0154925 + }, + { + "surface": "恵沢", + "readging": "けいたく", + "pos": "名詞", + "pn": 0.015396 + }, + { + "surface": "本流", + "readging": "ほんりゅう", + "pos": "名詞", + "pn": 0.0153766 + }, + { + "surface": "勝算", + "readging": "しょうさん", + "pos": "名詞", + "pn": 0.0153423 + }, + { + "surface": "新訳", + "readging": "しんやく", + "pos": "名詞", + "pn": 0.0153259 + }, + { + "surface": "行者", + "readging": "ぎょうじゃ", + "pos": "名詞", + "pn": 0.0153017 + }, + { + "surface": "したり顔", + "readging": "したりがお", + "pos": "名詞", + "pn": 0.0152711 + }, + { + "surface": "当時", + "readging": "とうじ", + "pos": "名詞", + "pn": 0.0151093 + }, + { + "surface": "禁衛", + "readging": "きんえい", + "pos": "名詞", + "pn": 0.0147902 + }, + { + "surface": "工匠", + "readging": "こうしょう", + "pos": "名詞", + "pn": 0.0147588 + }, + { + "surface": "性", + "readging": "さが", + "pos": "名詞", + "pn": 0.0147381 + }, + { + "surface": "物証", + "readging": "ぶっしょう", + "pos": "名詞", + "pn": 0.0147088 + }, + { + "surface": "自足", + "readging": "じそく", + "pos": "名詞", + "pn": 0.0145159 + }, + { + "surface": "官給", + "readging": "かんきゅう", + "pos": "名詞", + "pn": 0.0144722 + }, + { + "surface": "人出", + "readging": "ひとで", + "pos": "名詞", + "pn": 0.0143679 + }, + { + "surface": "ニュー", + "readging": "ニュールック", + "pos": "名詞", + "pn": 0.0143124 + }, + { + "surface": "グルメ", + "readging": "グルメ", + "pos": "名詞", + "pn": 0.0142757 + }, + { + "surface": "心遣り", + "readging": "こころやり", + "pos": "名詞", + "pn": 0.0142321 + }, + { + "surface": "見交す", + "readging": "みかわす", + "pos": "動詞", + "pn": 0.0141715 + }, + { + "surface": "巣立ち", + "readging": "すだち", + "pos": "名詞", + "pn": 0.0140768 + }, + { + "surface": "ぞめく", + "readging": "ぞめく", + "pos": "動詞", + "pn": 0.0139695 + }, + { + "surface": "人助け", + "readging": "ひとだすけ", + "pos": "名詞", + "pn": 0.0139528 + }, + { + "surface": "寺社", + "readging": "じしゃ", + "pos": "名詞", + "pn": 0.0139384 + }, + { + "surface": "世世", + "readging": "せぜ", + "pos": "名詞", + "pn": 0.0139266 + }, + { + "surface": "卿", + "readging": "けい", + "pos": "名詞", + "pn": 0.0137043 + }, + { + "surface": "一新", + "readging": "いっしん", + "pos": "名詞", + "pn": 0.0136236 + }, + { + "surface": "底値", + "readging": "そこね", + "pos": "名詞", + "pn": 0.0135434 + }, + { + "surface": "持切り", + "readging": "もちきり", + "pos": "名詞", + "pn": 0.0135305 + }, + { + "surface": "万丈", + "readging": "ばんじょう", + "pos": "名詞", + "pn": 0.0134788 + }, + { + "surface": "民有", + "readging": "みんゆう", + "pos": "名詞", + "pn": 0.0133627 + }, + { + "surface": "無煙", + "readging": "むえん", + "pos": "名詞", + "pn": 0.0133087 + }, + { + "surface": "適言", + "readging": "てきげん", + "pos": "名詞", + "pn": 0.0132556 + }, + { + "surface": "今度", + "readging": "こんど", + "pos": "名詞", + "pn": 0.0132404 + }, + { + "surface": "国選", + "readging": "こくせん", + "pos": "名詞", + "pn": 0.0131556 + }, + { + "surface": "スーパー", + "readging": "スーパー", + "pos": "名詞", + "pn": 0.0131069 + }, + { + "surface": "船霊", + "readging": "ふなだま", + "pos": "名詞", + "pn": 0.0130257 + }, + { + "surface": "小女", + "readging": "こおんな", + "pos": "名詞", + "pn": 0.0129378 + }, + { + "surface": "無位", + "readging": "むい", + "pos": "名詞", + "pn": 0.0129282 + }, + { + "surface": "守護", + "readging": "しゅご", + "pos": "名詞", + "pn": 0.0128606 + }, + { + "surface": "望遠", + "readging": "ぼうえん", + "pos": "名詞", + "pn": 0.0128324 + }, + { + "surface": "定言的命令", + "readging": "ていげんてきめいれい", + "pos": "名詞", + "pn": 0.012654 + }, + { + "surface": "客勤め", + "readging": "きゃくづとめ", + "pos": "名詞", + "pn": 0.0124316 + }, + { + "surface": "出足", + "readging": "であし", + "pos": "名詞", + "pn": 0.0123622 + }, + { + "surface": "諦める", + "readging": "あきらめる", + "pos": "動詞", + "pn": 0.0123167 + }, + { + "surface": "解する", + "readging": "かいする", + "pos": "動詞", + "pn": 0.0123007 + }, + { + "surface": "場所柄", + "readging": "ばしょがら", + "pos": "名詞", + "pn": 0.0122729 + }, + { + "surface": "すいすい", + "readging": "すいすい", + "pos": "副詞", + "pn": 0.01227 + }, + { + "surface": "掛り切り", + "readging": "かかりきり", + "pos": "名詞", + "pn": 0.0120683 + }, + { + "surface": "不信", + "readging": "ふしん", + "pos": "名詞", + "pn": 0.0120001 + }, + { + "surface": "整頓", + "readging": "せいとん", + "pos": "名詞", + "pn": 0.0118622 + }, + { + "surface": "秋涼", + "readging": "しゅうりょう", + "pos": "名詞", + "pn": 0.0118398 + }, + { + "surface": "近況", + "readging": "きんきょう", + "pos": "名詞", + "pn": 0.0118081 + }, + { + "surface": "充足", + "readging": "じゅうそく", + "pos": "名詞", + "pn": 0.0117696 + }, + { + "surface": "漢書", + "readging": "かんしょ", + "pos": "名詞", + "pn": 0.0117481 + }, + { + "surface": "緘口", + "readging": "かんこう", + "pos": "名詞", + "pn": 0.011748 + }, + { + "surface": "整合", + "readging": "せいごう", + "pos": "名詞", + "pn": 0.0116877 + }, + { + "surface": "聞捨て", + "readging": "ききずて", + "pos": "名詞", + "pn": 0.0115604 + }, + { + "surface": "冠者", + "readging": "かんじゃ", + "pos": "名詞", + "pn": 0.0114834 + }, + { + "surface": "綿綿", + "readging": "めんめん", + "pos": "名詞", + "pn": 0.0113583 + }, + { + "surface": "調和", + "readging": "ちょうわ", + "pos": "名詞", + "pn": 0.0113499 + }, + { + "surface": "独立独歩", + "readging": "どくりつどっぽ", + "pos": "名詞", + "pn": 0.0112779 + }, + { + "surface": "上物", + "readging": "うわもの", + "pos": "名詞", + "pn": 0.011201 + }, + { + "surface": "お待遠様", + "readging": "おまちどおさま", + "pos": "名詞", + "pn": 0.0111417 + }, + { + "surface": "寿像", + "readging": "じゅぞう", + "pos": "名詞", + "pn": 0.0111276 + }, + { + "surface": "仁王立", + "readging": "におうだち", + "pos": "名詞", + "pn": 0.0111182 + }, + { + "surface": "黙読", + "readging": "もくどく", + "pos": "名詞", + "pn": 0.0110665 + }, + { + "surface": "菩薩戒", + "readging": "ぼさつかい", + "pos": "名詞", + "pn": 0.0109893 + }, + { + "surface": "車券", + "readging": "しゃけん", + "pos": "名詞", + "pn": 0.0109766 + }, + { + "surface": "不朽", + "readging": "ふきゅう", + "pos": "名詞", + "pn": 0.0109127 + }, + { + "surface": "慈父", + "readging": "じふ", + "pos": "名詞", + "pn": 0.0108435 + }, + { + "surface": "軟化", + "readging": "なんか", + "pos": "名詞", + "pn": 0.0106581 + }, + { + "surface": "ぱっと", + "readging": "ぱっと", + "pos": "副詞", + "pn": 0.010572 + }, + { + "surface": "空耳", + "readging": "そらみみ", + "pos": "名詞", + "pn": 0.0104938 + }, + { + "surface": "解せる", + "readging": "げせる", + "pos": "動詞", + "pn": 0.0102418 + }, + { + "surface": "向う見ず", + "readging": "むこうみず", + "pos": "名詞", + "pn": 0.0102152 + }, + { + "surface": "黙示", + "readging": "もくし", + "pos": "名詞", + "pn": 0.0100582 + }, + { + "surface": "冷徹", + "readging": "れいてつ", + "pos": "名詞", + "pn": 0.0100247 + }, + { + "surface": "無愛敬", + "readging": "ぶあいきょう", + "pos": "名詞", + "pn": 0.00999662 + }, + { + "surface": "金納", + "readging": "きんのう", + "pos": "名詞", + "pn": 0.00998766 + }, + { + "surface": "旗揚げ", + "readging": "はたあげ", + "pos": "名詞", + "pn": 0.00997598 + }, + { + "surface": "二十四孝", + "readging": "にじゅうしこう", + "pos": "名詞", + "pn": 0.00996806 + }, + { + "surface": "仕出かす", + "readging": "しでかす", + "pos": "動詞", + "pn": 0.00992745 + }, + { + "surface": "型", + "readging": "がた", + "pos": "名詞", + "pn": 0.00992218 + }, + { + "surface": "入木道", + "readging": "じゅぼくどう", + "pos": "名詞", + "pn": 0.0098708 + }, + { + "surface": "労働組合", + "readging": "ろうどうくみあい", + "pos": "名詞", + "pn": 0.0098305 + }, + { + "surface": "尊容", + "readging": "そんよう", + "pos": "名詞", + "pn": 0.00982699 + }, + { + "surface": "神火", + "readging": "しんか", + "pos": "名詞", + "pn": 0.00959357 + }, + { + "surface": "ミクロ", + "readging": "ミクロ", + "pos": "名詞", + "pn": 0.00958008 + }, + { + "surface": "竜頭蛇尾", + "readging": "りゅうとうだび", + "pos": "名詞", + "pn": 0.00956356 + }, + { + "surface": "武士道", + "readging": "ぶしどう", + "pos": "名詞", + "pn": 0.00953519 + }, + { + "surface": "曼陀羅", + "readging": "まんだら", + "pos": "名詞", + "pn": 0.00953356 + }, + { + "surface": "文化遺産", + "readging": "ぶんかいさん", + "pos": "名詞", + "pn": 0.00953268 + }, + { + "surface": "ライセンス", + "readging": "ライセンス", + "pos": "名詞", + "pn": 0.00933268 + }, + { + "surface": "生焼け", + "readging": "なまやけ", + "pos": "名詞", + "pn": 0.00925075 + }, + { + "surface": "日本刀", + "readging": "にほんとう", + "pos": "名詞", + "pn": 0.00917597 + }, + { + "surface": "口慣し", + "readging": "くちならし", + "pos": "名詞", + "pn": 0.00911756 + }, + { + "surface": "奇岩", + "readging": "きがん", + "pos": "名詞", + "pn": 0.00892115 + }, + { + "surface": "バザー", + "readging": "バザー", + "pos": "名詞", + "pn": 0.0088737 + }, + { + "surface": "時下", + "readging": "じか", + "pos": "名詞", + "pn": 0.00879894 + }, + { + "surface": "悟入", + "readging": "ごにゅう", + "pos": "名詞", + "pn": 0.0086442 + }, + { + "surface": "トーナメント", + "readging": "トーナメント", + "pos": "名詞", + "pn": 0.0086356 + }, + { + "surface": "ぐんぐん", + "readging": "ぐんぐん", + "pos": "副詞", + "pn": 0.00859941 + }, + { + "surface": "いい加減", + "readging": "いいかげん", + "pos": "副詞", + "pn": 0.00846542 + }, + { + "surface": "国鳥", + "readging": "こくちょう", + "pos": "名詞", + "pn": 0.00840993 + }, + { + "surface": "自覚", + "readging": "じかく", + "pos": "名詞", + "pn": 0.00838344 + }, + { + "surface": "暖国", + "readging": "だんごく", + "pos": "名詞", + "pn": 0.00838343 + }, + { + "surface": "義兄弟", + "readging": "ぎきょうだい", + "pos": "名詞", + "pn": 0.0083161 + }, + { + "surface": "厚恩", + "readging": "こうおん", + "pos": "名詞", + "pn": 0.00831512 + }, + { + "surface": "畏友", + "readging": "いゆう", + "pos": "名詞", + "pn": 0.0081944 + }, + { + "surface": "順守", + "readging": "じゅんしゅ", + "pos": "名詞", + "pn": 0.00806341 + }, + { + "surface": "姥桜", + "readging": "うばざくら", + "pos": "名詞", + "pn": 0.00799914 + }, + { + "surface": "名店", + "readging": "めいてん", + "pos": "名詞", + "pn": 0.00797667 + }, + { + "surface": "尊卑", + "readging": "そんぴ", + "pos": "名詞", + "pn": 0.00781853 + }, + { + "surface": "偶語", + "readging": "ぐうご", + "pos": "名詞", + "pn": 0.00766488 + }, + { + "surface": "回教", + "readging": "かいきょう", + "pos": "名詞", + "pn": 0.00765796 + }, + { + "surface": "みっしり", + "readging": "みっしり", + "pos": "副詞", + "pn": 0.00760608 + }, + { + "surface": "見限る", + "readging": "みかぎる", + "pos": "動詞", + "pn": 0.00759572 + }, + { + "surface": "踏締める", + "readging": "ふみしめる", + "pos": "動詞", + "pn": 0.00759561 + }, + { + "surface": "配偶者", + "readging": "はいぐうしゃ", + "pos": "名詞", + "pn": 0.00755821 + }, + { + "surface": "見晴かす", + "readging": "みはるかす", + "pos": "動詞", + "pn": 0.00753786 + }, + { + "surface": "謀殺", + "readging": "ぼうさつ", + "pos": "名詞", + "pn": 0.00746268 + }, + { + "surface": "許否", + "readging": "きょひ", + "pos": "名詞", + "pn": 0.00742692 + }, + { + "surface": "躄", + "readging": "いざり", + "pos": "名詞", + "pn": 0.00741217 + }, + { + "surface": "いの一番", + "readging": "いのいちばん", + "pos": "名詞", + "pn": 0.00725594 + }, + { + "surface": "作り付け", + "readging": "つくりつけ", + "pos": "名詞", + "pn": 0.00722478 + }, + { + "surface": "そっちのけ", + "readging": "そっちのけ", + "pos": "名詞", + "pn": 0.00721891 + }, + { + "surface": "廃曲", + "readging": "はいきょく", + "pos": "名詞", + "pn": 0.00721038 + }, + { + "surface": "知能", + "readging": "ちのう", + "pos": "名詞", + "pn": 0.00718084 + }, + { + "surface": "聖日", + "readging": "せいじつ", + "pos": "名詞", + "pn": 0.00708364 + }, + { + "surface": "育て上げる", + "readging": "そだてあげる", + "pos": "動詞", + "pn": 0.00706377 + }, + { + "surface": "デウス", + "readging": "デウス", + "pos": "名詞", + "pn": 0.00702242 + }, + { + "surface": "アルチザン", + "readging": "アルチザン", + "pos": "名詞", + "pn": 0.00699294 + }, + { + "surface": "改修", + "readging": "かいしゅう", + "pos": "名詞", + "pn": 0.00697936 + }, + { + "surface": "クリア", + "readging": "クリア", + "pos": "名詞", + "pn": 0.00685457 + }, + { + "surface": "陽刻", + "readging": "ようこく", + "pos": "名詞", + "pn": 0.00680312 + }, + { + "surface": "役牛", + "readging": "えきぎゅう", + "pos": "名詞", + "pn": 0.00659122 + }, + { + "surface": "メガロポリス", + "readging": "メガロポリス", + "pos": "名詞", + "pn": 0.00657303 + }, + { + "surface": "銀嶺", + "readging": "ぎんれい", + "pos": "名詞", + "pn": 0.00652111 + }, + { + "surface": "御家流", + "readging": "おいえ", + "pos": "名詞", + "pn": 0.00646283 + }, + { + "surface": "洞察", + "readging": "どうさつ", + "pos": "名詞", + "pn": 0.00643607 + }, + { + "surface": "満遍なく", + "readging": "まんべんなく", + "pos": "副詞", + "pn": 0.00642908 + }, + { + "surface": "期末", + "readging": "きまつ", + "pos": "名詞", + "pn": 0.00642764 + }, + { + "surface": "題詩", + "readging": "だいし", + "pos": "名詞", + "pn": 0.00613401 + }, + { + "surface": "雲水", + "readging": "うんすい", + "pos": "名詞", + "pn": 0.00609856 + }, + { + "surface": "翠色", + "readging": "すいしょく", + "pos": "名詞", + "pn": 0.0059985 + }, + { + "surface": "人怖じ", + "readging": "ひとおじ", + "pos": "名詞", + "pn": 0.00599724 + }, + { + "surface": "クリスマス", + "readging": "クリスマスキャロル", + "pos": "名詞", + "pn": 0.00592141 + }, + { + "surface": "略章", + "readging": "りゃくしょう", + "pos": "名詞", + "pn": 0.00577334 + }, + { + "surface": "真諦", + "readging": "しんてい", + "pos": "名詞", + "pn": 0.00577013 + }, + { + "surface": "休み休み", + "readging": "やすみやすみ", + "pos": "副詞", + "pn": 0.0057557 + }, + { + "surface": "値下げ", + "readging": "ねさげ", + "pos": "名詞", + "pn": 0.00570075 + }, + { + "surface": "釈迦三尊", + "readging": "しゃかさんぞん", + "pos": "名詞", + "pn": 0.00569882 + }, + { + "surface": "うんざり", + "readging": "うんざり", + "pos": "名詞", + "pn": 0.00565929 + }, + { + "surface": "叙景", + "readging": "じょけい", + "pos": "名詞", + "pn": 0.00538591 + }, + { + "surface": "ヴェーダ", + "readging": "ヴェーダ", + "pos": "名詞", + "pn": 0.0053813 + }, + { + "surface": "今", + "readging": "いま", + "pos": "名詞", + "pn": 0.00530685 + }, + { + "surface": "極細", + "readging": "ごくぼそ", + "pos": "名詞", + "pn": 0.00530228 + }, + { + "surface": "年始", + "readging": "ねんし", + "pos": "名詞", + "pn": 0.00526485 + }, + { + "surface": "真剣", + "readging": "しんけん", + "pos": "名詞", + "pn": 0.00522682 + }, + { + "surface": "ナチュラリズム", + "readging": "ナチュラリズム", + "pos": "名詞", + "pn": 0.00505896 + }, + { + "surface": "扶育", + "readging": "ふいく", + "pos": "名詞", + "pn": 0.00494871 + }, + { + "surface": "専心", + "readging": "せんしん", + "pos": "名詞", + "pn": 0.00490989 + }, + { + "surface": "信奉", + "readging": "しんぽう", + "pos": "名詞", + "pn": 0.0046813 + }, + { + "surface": "バーゲン セール", + "readging": "バーゲン セール", + "pos": "名詞", + "pn": 0.00445296 + }, + { + "surface": "助勢", + "readging": "じょせい", + "pos": "名詞", + "pn": 0.004401 + }, + { + "surface": "中限", + "readging": "ちゅうぎり", + "pos": "名詞", + "pn": 0.00439891 + }, + { + "surface": "メダリスト", + "readging": "メダリスト", + "pos": "名詞", + "pn": 0.00422628 + }, + { + "surface": "節水", + "readging": "せっすい", + "pos": "名詞", + "pn": 0.0041716 + }, + { + "surface": "民需", + "readging": "みんじゅ", + "pos": "名詞", + "pn": 0.00406311 + }, + { + "surface": "見る見る", + "readging": "みるみる", + "pos": "副詞", + "pn": 0.00405449 + }, + { + "surface": "旧聞", + "readging": "きゅうぶん", + "pos": "名詞", + "pn": 0.00397099 + }, + { + "surface": "巨細", + "readging": "こさい", + "pos": "名詞", + "pn": 0.00395813 + }, + { + "surface": "祖神", + "readging": "そしん", + "pos": "名詞", + "pn": 0.0038647 + }, + { + "surface": "不揃い", + "readging": "ふぞろい", + "pos": "名詞", + "pn": 0.00382011 + }, + { + "surface": "速成", + "readging": "そくせい", + "pos": "名詞", + "pn": 0.003747 + }, + { + "surface": "肢", + "readging": "し", + "pos": "名詞", + "pn": 0.00360454 + }, + { + "surface": "面魂", + "readging": "つらだましい", + "pos": "名詞", + "pn": 0.003576 + }, + { + "surface": "デタント", + "readging": "デタント", + "pos": "名詞", + "pn": 0.00355492 + }, + { + "surface": "今時分", + "readging": "いまじぶん", + "pos": "名詞", + "pn": 0.00352995 + }, + { + "surface": "恋恋", + "readging": "れんれん", + "pos": "名詞", + "pn": 0.00350455 + }, + { + "surface": "躍り掛る", + "readging": "おどりかかる", + "pos": "動詞", + "pn": 0.00347307 + }, + { + "surface": "放生会", + "readging": "ほうじょうえ", + "pos": "名詞", + "pn": 0.00342852 + }, + { + "surface": "信じる", + "readging": "しんじる", + "pos": "動詞", + "pn": 0.00328739 + }, + { + "surface": "専従", + "readging": "せんじゅう", + "pos": "名詞", + "pn": 0.00320198 + }, + { + "surface": "暮残る", + "readging": "くれのこる", + "pos": "動詞", + "pn": 0.00304873 + }, + { + "surface": "シンパ", + "readging": "シンパ", + "pos": "名詞", + "pn": 0.00302323 + }, + { + "surface": "地勢", + "readging": "ちせい", + "pos": "名詞", + "pn": 0.00297271 + }, + { + "surface": "御存じ", + "readging": "ごぞんじ", + "pos": "名詞", + "pn": 0.00281849 + }, + { + "surface": "若松", + "readging": "わかまつ", + "pos": "名詞", + "pn": 0.00275492 + }, + { + "surface": "天恵", + "readging": "てんけい", + "pos": "名詞", + "pn": 0.00275265 + }, + { + "surface": "闡明", + "readging": "せんめい", + "pos": "名詞", + "pn": 0.00264901 + }, + { + "surface": "円本", + "readging": "えんぽん", + "pos": "名詞", + "pn": 0.00254646 + }, + { + "surface": "先般", + "readging": "せんぱん", + "pos": "名詞", + "pn": 0.00253267 + }, + { + "surface": "勉", + "readging": "べん", + "pos": "名詞", + "pn": 0.00249064 + }, + { + "surface": "尾長鶏", + "readging": "おなが", + "pos": "名詞", + "pn": 0.00245807 + }, + { + "surface": "家", + "readging": "け", + "pos": "名詞", + "pn": 0.00245501 + }, + { + "surface": "知友", + "readging": "ちゆう", + "pos": "名詞", + "pn": 0.00235116 + }, + { + "surface": "収攬", + "readging": "しゅうらん", + "pos": "名詞", + "pn": 0.00229735 + }, + { + "surface": "朝未だき", + "readging": "あさまだき", + "pos": "名詞", + "pn": 0.0022812 + }, + { + "surface": "風流韻事", + "readging": "ふうりゅういんじ", + "pos": "名詞", + "pn": 0.00224726 + }, + { + "surface": "そっけ", + "readging": "そっけ", + "pos": "名詞", + "pn": 0.00221645 + }, + { + "surface": "本心", + "readging": "ほんしん", + "pos": "名詞", + "pn": 0.00214127 + }, + { + "surface": "エロチシズム", + "readging": "エロチシズム", + "pos": "名詞", + "pn": 0.00209176 + }, + { + "surface": "いとも", + "readging": "いとも", + "pos": "副詞", + "pn": 0.00207205 + }, + { + "surface": "ちょんぎる", + "readging": "ちょんぎる", + "pos": "動詞", + "pn": 0.00196733 + }, + { + "surface": "士気", + "readging": "しき", + "pos": "名詞", + "pn": 0.00192171 + }, + { + "surface": "尊ぶ", + "readging": "とうとぶ", + "pos": "動詞", + "pn": 0.00189344 + }, + { + "surface": "老朽", + "readging": "ろうきゅう", + "pos": "名詞", + "pn": 0.00189284 + }, + { + "surface": "颯爽", + "readging": "さっそう", + "pos": "名詞", + "pn": 0.00179936 + }, + { + "surface": "精緻", + "readging": "せいち", + "pos": "名詞", + "pn": 0.00173958 + }, + { + "surface": "正妻", + "readging": "せいさい", + "pos": "名詞", + "pn": 0.00173549 + }, + { + "surface": "待望", + "readging": "たいぼう", + "pos": "名詞", + "pn": 0.00168101 + }, + { + "surface": "御詠歌", + "readging": "ごえいか", + "pos": "名詞", + "pn": 0.00152958 + }, + { + "surface": "院議", + "readging": "いんぎ", + "pos": "名詞", + "pn": 0.00147212 + }, + { + "surface": "名号", + "readging": "みょうごう", + "pos": "名詞", + "pn": 0.00139133 + }, + { + "surface": "養育", + "readging": "よういく", + "pos": "名詞", + "pn": 0.00112378 + }, + { + "surface": "俗字", + "readging": "ぞくじ", + "pos": "名詞", + "pn": 0.00109368 + }, + { + "surface": "リフレッシュ", + "readging": "リフレッシュ", + "pos": "名詞", + "pn": 0.000975347 + }, + { + "surface": "適する", + "readging": "てきする", + "pos": "動詞", + "pn": 0.000935216 + }, + { + "surface": "広報", + "readging": "こうほう", + "pos": "名詞", + "pn": 0.000922956 + }, + { + "surface": "生き字引", + "readging": "いきじびき", + "pos": "名詞", + "pn": 0.000922956 + }, + { + "surface": "此の際", + "readging": "このさい", + "pos": "名詞", + "pn": 0.000869181 + }, + { + "surface": "不祥事", + "readging": "ふしょうじ", + "pos": "名詞", + "pn": 0.0008502 + }, + { + "surface": "勲記", + "readging": "くんき", + "pos": "名詞", + "pn": 0.00064876 + }, + { + "surface": "顔見知り", + "readging": "かおみしり", + "pos": "名詞", + "pn": 0.000588709 + }, + { + "surface": "タグボート", + "readging": "タグボート", + "pos": "名詞", + "pn": 0.000572312 + }, + { + "surface": "親切気", + "readging": "しんせつぎ", + "pos": "名詞", + "pn": 0.000559407 + }, + { + "surface": "眼力", + "readging": "がんりき", + "pos": "名詞", + "pn": 0.000473573 + }, + { + "surface": "歳徳", + "readging": "としとく", + "pos": "名詞", + "pn": 0.000469253 + }, + { + "surface": "舞込む", + "readging": "まいこむ", + "pos": "動詞", + "pn": 0.000363996 + }, + { + "surface": "大尉", + "readging": "たいい", + "pos": "名詞", + "pn": 0.000344221 + }, + { + "surface": "婦徳", + "readging": "ふとく", + "pos": "名詞", + "pn": 0.000205878 + }, + { + "surface": "用務", + "readging": "ようむ", + "pos": "名詞", + "pn": 0.00012227 + }, + { + "surface": "救貧", + "readging": "きゅうひん", + "pos": "名詞", + "pn": 3.01237e-05 + }, + { + "surface": "漏斗", + "readging": "ろうと", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "夜曲", + "readging": "やきょく", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "冬籠る", + "readging": "ふゆごもる", + "pos": "動詞", + "pn": 0.0 + }, + { + "surface": "沢庵", + "readging": "たくわん", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "他称", + "readging": "たしょう", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "第三人称", + "readging": "だいさんにんしょう", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "セレナーデ", + "readging": "セレナーデ", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "巨体", + "readging": "きょたい", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "巨躯", + "readging": "きょく", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "細螺", + "readging": "きしゃご", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "忌明け", + "readging": "きあけ", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "ウイーク エンド", + "readging": "ウイーク エンド", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "温突", + "readging": "オンドル", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "州浜", + "readging": "すわま", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "眇める", + "readging": "すがめる", + "pos": "動詞", + "pn": 0.0 + }, + { + "surface": "眇む", + "readging": "すがむ", + "pos": "動詞", + "pn": 0.0 + }, + { + "surface": "白子", + "readging": "しろこ", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "週末", + "readging": "しゅうまつ", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "小夜曲", + "readging": "さよきょく", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "啄木鳥", + "readging": "けらつつき", + "pos": "名詞", + "pn": 0.0 + }, + { + "surface": "新設", + "readging": "しんせつ", + "pos": "名詞", + "pn": -4.80247e-05 + }, + { + "surface": "公方", + "readging": "くぼう", + "pos": "名詞", + "pn": -8.89323e-05 + }, + { + "surface": "銃傷", + "readging": "じゅうしょう", + "pos": "名詞", + "pn": -0.000100071 + }, + { + "surface": "お母さん", + "readging": "おかあさん", + "pos": "名詞", + "pn": -0.000145459 + }, + { + "surface": "ちえ袋", + "readging": "ちえぶくろ", + "pos": "名詞", + "pn": -0.00015696 + }, + { + "surface": "国粋主義", + "readging": "こくすいしゅぎ", + "pos": "名詞", + "pn": -0.000238918 + }, + { + "surface": "特権", + "readging": "とっけん", + "pos": "名詞", + "pn": -0.000286279 + }, + { + "surface": "諸行", + "readging": "しょぎょう", + "pos": "名詞", + "pn": -0.000316652 + }, + { + "surface": "無住", + "readging": "むじゅう", + "pos": "名詞", + "pn": -0.000403398 + }, + { + "surface": "形而上", + "readging": "けいじじょう", + "pos": "名詞", + "pn": -0.000622865 + }, + { + "surface": "アルス", + "readging": "アルス", + "pos": "名詞", + "pn": -0.000941017 + }, + { + "surface": "アンバランス", + "readging": "アンバランス", + "pos": "名詞", + "pn": -0.000990792 + }, + { + "surface": "看取", + "readging": "かんしゅ", + "pos": "名詞", + "pn": -0.00108436 + }, + { + "surface": "後産", + "readging": "のちざん", + "pos": "名詞", + "pn": -0.00150049 + }, + { + "surface": "解語", + "readging": "かいご", + "pos": "名詞", + "pn": -0.00155883 + }, + { + "surface": "近著", + "readging": "きんちょ", + "pos": "名詞", + "pn": -0.00158899 + }, + { + "surface": "連記", + "readging": "れんき", + "pos": "名詞", + "pn": -0.00179001 + }, + { + "surface": "不休", + "readging": "ふきゅう", + "pos": "名詞", + "pn": -0.00182945 + }, + { + "surface": "退路", + "readging": "たいろ", + "pos": "名詞", + "pn": -0.00184685 + }, + { + "surface": "無品", + "readging": "むほん", + "pos": "名詞", + "pn": -0.00194891 + }, + { + "surface": "不可欠", + "readging": "ふかけつ", + "pos": "名詞", + "pn": -0.00199801 + }, + { + "surface": "持駒", + "readging": "もちごま", + "pos": "名詞", + "pn": -0.00214519 + }, + { + "surface": "常用", + "readging": "じょうよう", + "pos": "名詞", + "pn": -0.00225026 + }, + { + "surface": "根継ぎ", + "readging": "ねつぎ", + "pos": "名詞", + "pn": -0.00239865 + }, + { + "surface": "粉雪", + "readging": "こゆき", + "pos": "名詞", + "pn": -0.00247275 + }, + { + "surface": "称え", + "readging": "となえ", + "pos": "名詞", + "pn": -0.0024808 + }, + { + "surface": "金字塔", + "readging": "きんじとう", + "pos": "名詞", + "pn": -0.00250595 + }, + { + "surface": "バレリーナ", + "readging": "バレリーナ", + "pos": "名詞", + "pn": -0.00261697 + }, + { + "surface": "地鳴り", + "readging": "じなり", + "pos": "名詞", + "pn": -0.00263323 + }, + { + "surface": "雑技", + "readging": "ざつぎ", + "pos": "名詞", + "pn": -0.00268774 + }, + { + "surface": "不確定", + "readging": "ふかくてい", + "pos": "名詞", + "pn": -0.00270841 + }, + { + "surface": "敬重", + "readging": "けいちょう", + "pos": "名詞", + "pn": -0.0027505 + }, + { + "surface": "協賛", + "readging": "きょうさん", + "pos": "名詞", + "pn": -0.00277646 + }, + { + "surface": "口巧者", + "readging": "くちごうしゃ", + "pos": "名詞", + "pn": -0.00284508 + }, + { + "surface": "コケット", + "readging": "コケット", + "pos": "名詞", + "pn": -0.00284526 + }, + { + "surface": "会得", + "readging": "えとく", + "pos": "名詞", + "pn": -0.0028578 + }, + { + "surface": "女持", + "readging": "おんなもち", + "pos": "名詞", + "pn": -0.00296805 + }, + { + "surface": "知らん振り", + "readging": "しらんぷり", + "pos": "名詞", + "pn": -0.00299677 + }, + { + "surface": "耳慣れる", + "readging": "みみなれる", + "pos": "動詞", + "pn": -0.00299712 + }, + { + "surface": "不随", + "readging": "ふずい", + "pos": "名詞", + "pn": -0.00305488 + }, + { + "surface": "京舞", + "readging": "きょうまい", + "pos": "名詞", + "pn": -0.00312576 + }, + { + "surface": "自選", + "readging": "じせん", + "pos": "名詞", + "pn": -0.00316114 + }, + { + "surface": "恋女房", + "readging": "こいにょうぼう", + "pos": "名詞", + "pn": -0.00322282 + }, + { + "surface": "悪妻", + "readging": "あくさい", + "pos": "名詞", + "pn": -0.00326089 + }, + { + "surface": "エホバ", + "readging": "エホバ", + "pos": "名詞", + "pn": -0.00340321 + }, + { + "surface": "小身", + "readging": "しょうしん", + "pos": "名詞", + "pn": -0.0034312 + }, + { + "surface": "長音", + "readging": "ちょうおん", + "pos": "名詞", + "pn": -0.00347796 + }, + { + "surface": "外地", + "readging": "がいち", + "pos": "名詞", + "pn": -0.00353021 + }, + { + "surface": "念持仏", + "readging": "ねんじぶつ", + "pos": "名詞", + "pn": -0.00356516 + }, + { + "surface": "端倪", + "readging": "たんげい", + "pos": "名詞", + "pn": -0.00365026 + }, + { + "surface": "いとおしむ", + "readging": "いとおしむ", + "pos": "動詞", + "pn": -0.00374882 + }, + { + "surface": "母性愛", + "readging": "ぼせいあい", + "pos": "名詞", + "pn": -0.00379926 + }, + { + "surface": "弁口", + "readging": "べんこう", + "pos": "名詞", + "pn": -0.00404817 + }, + { + "surface": "待兼ねる", + "readging": "まちかねる", + "pos": "動詞", + "pn": -0.0041017 + }, + { + "surface": "欠礼", + "readging": "けつれい", + "pos": "名詞", + "pn": -0.00411171 + }, + { + "surface": "顕在", + "readging": "けんざい", + "pos": "名詞", + "pn": -0.00412778 + }, + { + "surface": "フイフイ教", + "readging": "フイフイきょう", + "pos": "名詞", + "pn": -0.00417855 + }, + { + "surface": "育ち", + "readging": "そだち", + "pos": "名詞", + "pn": -0.00428929 + }, + { + "surface": "新品", + "readging": "しんぴん", + "pos": "名詞", + "pn": -0.00430927 + }, + { + "surface": "備わる", + "readging": "そなわる", + "pos": "動詞", + "pn": -0.00436456 + }, + { + "surface": "綽然", + "readging": "しゃくぜん", + "pos": "名詞", + "pn": -0.00442261 + }, + { + "surface": "折戸", + "readging": "おりど", + "pos": "名詞", + "pn": -0.00443369 + }, + { + "surface": "繁華", + "readging": "はんか", + "pos": "名詞", + "pn": -0.00451401 + }, + { + "surface": "上達", + "readging": "じょうたつ", + "pos": "名詞", + "pn": -0.00452284 + }, + { + "surface": "クラシック", + "readging": "クラシック", + "pos": "名詞", + "pn": -0.00454189 + }, + { + "surface": "二つながら返事", + "readging": "ふたつへんじ", + "pos": "名詞", + "pn": -0.00464682 + }, + { + "surface": "忠誠", + "readging": "ちゅうせい", + "pos": "名詞", + "pn": -0.00466677 + }, + { + "surface": "家母", + "readging": "かぼ", + "pos": "名詞", + "pn": -0.00475273 + }, + { + "surface": "鹹湖", + "readging": "かんこ", + "pos": "名詞", + "pn": -0.00477469 + }, + { + "surface": "属人", + "readging": "ぞくじん", + "pos": "名詞", + "pn": -0.004794 + }, + { + "surface": "志", + "readging": "こころざし", + "pos": "名詞", + "pn": -0.00481789 + }, + { + "surface": "素性", + "readging": "すじょう", + "pos": "名詞", + "pn": -0.00492775 + }, + { + "surface": "熟知", + "readging": "じゅくち", + "pos": "名詞", + "pn": -0.00492963 + }, + { + "surface": "法律行為", + "readging": "ほうりつこうい", + "pos": "名詞", + "pn": -0.0050882 + }, + { + "surface": "気味合い", + "readging": "きみあい", + "pos": "名詞", + "pn": -0.00509191 + }, + { + "surface": "尚武", + "readging": "しょうぶ", + "pos": "名詞", + "pn": -0.00517218 + }, + { + "surface": "事務屋", + "readging": "じむや", + "pos": "名詞", + "pn": -0.00520314 + }, + { + "surface": "特免", + "readging": "とくめん", + "pos": "名詞", + "pn": -0.0052762 + }, + { + "surface": "一番鶏", + "readging": "いちばんどり", + "pos": "名詞", + "pn": -0.00529314 + }, + { + "surface": "瘋癲", + "readging": "ふうてん", + "pos": "名詞", + "pn": -0.00529664 + }, + { + "surface": "繁盛", + "readging": "はんじょう", + "pos": "名詞", + "pn": -0.00539334 + }, + { + "surface": "正室", + "readging": "せいしつ", + "pos": "名詞", + "pn": -0.00541154 + }, + { + "surface": "教具", + "readging": "きょうぐ", + "pos": "名詞", + "pn": -0.00544451 + }, + { + "surface": "父性", + "readging": "ふせい", + "pos": "名詞", + "pn": -0.00546403 + }, + { + "surface": "名答", + "readging": "めいとう", + "pos": "名詞", + "pn": -0.00548136 + }, + { + "surface": "末っ子", + "readging": "すえっこ", + "pos": "名詞", + "pn": -0.00550102 + }, + { + "surface": "光景", + "readging": "こうけい", + "pos": "名詞", + "pn": -0.00553364 + }, + { + "surface": "中肉", + "readging": "ちゅうにく", + "pos": "名詞", + "pn": -0.00555906 + }, + { + "surface": "新雪", + "readging": "しんせつ", + "pos": "名詞", + "pn": -0.00560191 + }, + { + "surface": "槍衾", + "readging": "やりぶすま", + "pos": "名詞", + "pn": -0.00584831 + }, + { + "surface": "仁術", + "readging": "じんじゅつ", + "pos": "名詞", + "pn": -0.00588026 + }, + { + "surface": "御祖師様", + "readging": "おそしさま", + "pos": "名詞", + "pn": -0.00593073 + }, + { + "surface": "詩情", + "readging": "しじょう", + "pos": "名詞", + "pn": -0.0060847 + }, + { + "surface": "超俗", + "readging": "ちょうぞく", + "pos": "名詞", + "pn": -0.00616226 + }, + { + "surface": "スキンシップ", + "readging": "スキンシップ", + "pos": "名詞", + "pn": -0.00620207 + }, + { + "surface": "衆知", + "readging": "しゅうち", + "pos": "名詞", + "pn": -0.00620615 + }, + { + "surface": "手慣れる", + "readging": "てなれる", + "pos": "動詞", + "pn": -0.00628561 + }, + { + "surface": "真性", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.00633501 + }, + { + "surface": "豊麗", + "readging": "ほうれい", + "pos": "名詞", + "pn": -0.00633642 + }, + { + "surface": "雪景色", + "readging": "ゆきげしき", + "pos": "名詞", + "pn": -0.00641375 + }, + { + "surface": "存否", + "readging": "そんぴ", + "pos": "名詞", + "pn": -0.00642547 + }, + { + "surface": "順境", + "readging": "じゅんきょう", + "pos": "名詞", + "pn": -0.00653284 + }, + { + "surface": "ビーナス", + "readging": "ビーナス", + "pos": "名詞", + "pn": -0.00679659 + }, + { + "surface": "本望", + "readging": "ほんもう", + "pos": "名詞", + "pn": -0.00680411 + }, + { + "surface": "ネーム", + "readging": "ネーム", + "pos": "名詞", + "pn": -0.0068488 + }, + { + "surface": "パワー", + "readging": "パワー", + "pos": "名詞", + "pn": -0.00686664 + }, + { + "surface": "下張り", + "readging": "したばり", + "pos": "名詞", + "pn": -0.00688217 + }, + { + "surface": "決り文句", + "readging": "きまりもんく", + "pos": "名詞", + "pn": -0.00689111 + }, + { + "surface": "印池", + "readging": "いんち", + "pos": "名詞", + "pn": -0.00689475 + }, + { + "surface": "一目瞭然", + "readging": "いちもくりょうぜん", + "pos": "名詞", + "pn": -0.0069475 + }, + { + "surface": "美身", + "readging": "びしん", + "pos": "名詞", + "pn": -0.00700341 + }, + { + "surface": "諺", + "readging": "ことわざ", + "pos": "名詞", + "pn": -0.00704931 + }, + { + "surface": "秋興", + "readging": "しゅうきょう", + "pos": "名詞", + "pn": -0.00705129 + }, + { + "surface": "修業", + "readging": "しゅぎょう", + "pos": "名詞", + "pn": -0.00706685 + }, + { + "surface": "細見", + "readging": "さいけん", + "pos": "名詞", + "pn": -0.00709514 + }, + { + "surface": "包容", + "readging": "ほうよう", + "pos": "名詞", + "pn": -0.00717248 + }, + { + "surface": "一長一短", + "readging": "いっちょういったん", + "pos": "名詞", + "pn": -0.00717657 + }, + { + "surface": "爛熟", + "readging": "らんじゅく", + "pos": "名詞", + "pn": -0.00725561 + }, + { + "surface": "きっぱり", + "readging": "きっぱり", + "pos": "副詞", + "pn": -0.00729723 + }, + { + "surface": "皇", + "readging": "すめら", + "pos": "名詞", + "pn": -0.00744162 + }, + { + "surface": "遂げる", + "readging": "とげる", + "pos": "動詞", + "pn": -0.00753369 + }, + { + "surface": "報徳", + "readging": "ほうとく", + "pos": "名詞", + "pn": -0.00756422 + }, + { + "surface": "ソーラー", + "readging": "ソーラー", + "pos": "名詞", + "pn": -0.00756985 + }, + { + "surface": "二十歳", + "readging": "はたとせ", + "pos": "名詞", + "pn": -0.00779424 + }, + { + "surface": "幽遠", + "readging": "ゆうえん", + "pos": "名詞", + "pn": -0.00789 + }, + { + "surface": "姫", + "readging": "ひめ", + "pos": "名詞", + "pn": -0.00792528 + }, + { + "surface": "愛撫", + "readging": "あいぶ", + "pos": "名詞", + "pn": -0.00796294 + }, + { + "surface": "出生", + "readging": "しゅっしょう", + "pos": "名詞", + "pn": -0.00798046 + }, + { + "surface": "斎宮", + "readging": "さいぐう", + "pos": "名詞", + "pn": -0.00802685 + }, + { + "surface": "時無し大根", + "readging": "ときなしだいこん", + "pos": "名詞", + "pn": -0.00803584 + }, + { + "surface": "鍛練", + "readging": "たんれん", + "pos": "名詞", + "pn": -0.00806111 + }, + { + "surface": "富国", + "readging": "ふこく", + "pos": "名詞", + "pn": -0.00814575 + }, + { + "surface": "公徳", + "readging": "こうとく", + "pos": "名詞", + "pn": -0.00819784 + }, + { + "surface": "大手", + "readging": "おおで", + "pos": "名詞", + "pn": -0.00821769 + }, + { + "surface": "引例", + "readging": "いんれい", + "pos": "名詞", + "pn": -0.00830136 + }, + { + "surface": "長者", + "readging": "ちょうじゃ", + "pos": "名詞", + "pn": -0.0083064 + }, + { + "surface": "持仏", + "readging": "じぶつ", + "pos": "名詞", + "pn": -0.00840209 + }, + { + "surface": "野合", + "readging": "やごう", + "pos": "名詞", + "pn": -0.00842172 + }, + { + "surface": "人選", + "readging": "じんせん", + "pos": "名詞", + "pn": -0.00846402 + }, + { + "surface": "物狂い", + "readging": "ものぐるい", + "pos": "名詞", + "pn": -0.00848818 + }, + { + "surface": "不健全", + "readging": "ふけんぜん", + "pos": "名詞", + "pn": -0.00856171 + }, + { + "surface": "説経", + "readging": "せっきょう", + "pos": "名詞", + "pn": -0.00857583 + }, + { + "surface": "得度", + "readging": "とくど", + "pos": "名詞", + "pn": -0.00866916 + }, + { + "surface": "きんせん", + "readging": "きんせんずく", + "pos": "名詞", + "pn": -0.00879057 + }, + { + "surface": "気位", + "readging": "きぐらい", + "pos": "名詞", + "pn": -0.00895654 + }, + { + "surface": "プロセント", + "readging": "プロセント", + "pos": "名詞", + "pn": -0.0089799 + }, + { + "surface": "法力", + "readging": "ほうりき", + "pos": "名詞", + "pn": -0.00898721 + }, + { + "surface": "自他", + "readging": "じた", + "pos": "名詞", + "pn": -0.00920573 + }, + { + "surface": "応報", + "readging": "おうほう", + "pos": "名詞", + "pn": -0.00923308 + }, + { + "surface": "盲唖", + "readging": "もうあ", + "pos": "名詞", + "pn": -0.00923924 + }, + { + "surface": "伍する", + "readging": "ごする", + "pos": "動詞", + "pn": -0.00924458 + }, + { + "surface": "空家", + "readging": "あきや", + "pos": "名詞", + "pn": -0.00927743 + }, + { + "surface": "宗風", + "readging": "しゅうふう", + "pos": "名詞", + "pn": -0.00932189 + }, + { + "surface": "手書き", + "readging": "てがき", + "pos": "名詞", + "pn": -0.00933824 + }, + { + "surface": "ドン", + "readging": "ドン", + "pos": "名詞", + "pn": -0.00940197 + }, + { + "surface": "創意", + "readging": "そうい", + "pos": "名詞", + "pn": -0.00941217 + }, + { + "surface": "苦慮", + "readging": "くりょ", + "pos": "名詞", + "pn": -0.00954955 + }, + { + "surface": "しもた屋", + "readging": "しもたや", + "pos": "名詞", + "pn": -0.00961166 + }, + { + "surface": "手付かず", + "readging": "てつかず", + "pos": "名詞", + "pn": -0.00965154 + }, + { + "surface": "拈華微笑", + "readging": "ねんげみしょう", + "pos": "名詞", + "pn": -0.00987587 + }, + { + "surface": "委細", + "readging": "いさい", + "pos": "名詞", + "pn": -0.00990547 + }, + { + "surface": "先学", + "readging": "せんがく", + "pos": "名詞", + "pn": -0.00991206 + }, + { + "surface": "功利主義", + "readging": "こうりしゅぎ", + "pos": "名詞", + "pn": -0.00992365 + }, + { + "surface": "歳徳神", + "readging": "としとくじん", + "pos": "名詞", + "pn": -0.00999652 + }, + { + "surface": "行政整理", + "readging": "ぎょうせいせいり", + "pos": "名詞", + "pn": -0.0100347 + }, + { + "surface": "無難", + "readging": "ぶなん", + "pos": "名詞", + "pn": -0.0100446 + }, + { + "surface": "報国", + "readging": "ほうこく", + "pos": "名詞", + "pn": -0.0101309 + }, + { + "surface": "持する", + "readging": "じする", + "pos": "動詞", + "pn": -0.0101913 + }, + { + "surface": "栄養士", + "readging": "えいようし", + "pos": "名詞", + "pn": -0.0102309 + }, + { + "surface": "行政権", + "readging": "ぎょうせいけん", + "pos": "名詞", + "pn": -0.0103651 + }, + { + "surface": "度外", + "readging": "どがい", + "pos": "名詞", + "pn": -0.010389 + }, + { + "surface": "貞心", + "readging": "ていしん", + "pos": "名詞", + "pn": -0.0104114 + }, + { + "surface": "悟り澄ます", + "readging": "さとりすます", + "pos": "動詞", + "pn": -0.0104567 + }, + { + "surface": "加俸", + "readging": "かほう", + "pos": "名詞", + "pn": -0.0104719 + }, + { + "surface": "存続", + "readging": "そんぞく", + "pos": "名詞", + "pn": -0.0104737 + }, + { + "surface": "重んずる", + "readging": "おもんずる", + "pos": "動詞", + "pn": -0.0105045 + }, + { + "surface": "書流す", + "readging": "かきながす", + "pos": "動詞", + "pn": -0.0105564 + }, + { + "surface": "全能", + "readging": "ぜんのう", + "pos": "名詞", + "pn": -0.0106445 + }, + { + "surface": "志操", + "readging": "しそう", + "pos": "名詞", + "pn": -0.010649 + }, + { + "surface": "朋友", + "readging": "ほうゆう", + "pos": "名詞", + "pn": -0.0107645 + }, + { + "surface": "恩恵", + "readging": "おんけい", + "pos": "名詞", + "pn": -0.0107815 + }, + { + "surface": "密貿易", + "readging": "みつぼうえき", + "pos": "名詞", + "pn": -0.0108315 + }, + { + "surface": "青空", + "readging": "あおぞら", + "pos": "名詞", + "pn": -0.0108755 + }, + { + "surface": "卒園", + "readging": "そつえん", + "pos": "名詞", + "pn": -0.0109032 + }, + { + "surface": "伊達者", + "readging": "だてしゃ", + "pos": "名詞", + "pn": -0.011032 + }, + { + "surface": "デー", + "readging": "デー", + "pos": "名詞", + "pn": -0.0110441 + }, + { + "surface": "冷床", + "readging": "れいしょう", + "pos": "名詞", + "pn": -0.0110576 + }, + { + "surface": "愚父", + "readging": "ぐふ", + "pos": "名詞", + "pn": -0.0110726 + }, + { + "surface": "鬼子母神", + "readging": "きしもじん", + "pos": "名詞", + "pn": -0.0110841 + }, + { + "surface": "真に", + "readging": "しんに", + "pos": "副詞", + "pn": -0.0111025 + }, + { + "surface": "茶菓子", + "readging": "ちゃがし", + "pos": "名詞", + "pn": -0.011111 + }, + { + "surface": "余興", + "readging": "よきょう", + "pos": "名詞", + "pn": -0.0112308 + }, + { + "surface": "非命", + "readging": "ひめい", + "pos": "名詞", + "pn": -0.0112433 + }, + { + "surface": "ホリデー", + "readging": "ホリデー", + "pos": "名詞", + "pn": -0.0112515 + }, + { + "surface": "商機", + "readging": "しょうき", + "pos": "名詞", + "pn": -0.0115049 + }, + { + "surface": "適訳", + "readging": "てきやく", + "pos": "名詞", + "pn": -0.0116124 + }, + { + "surface": "不買", + "readging": "ふばい", + "pos": "名詞", + "pn": -0.0116189 + }, + { + "surface": "黒ダイヤ", + "readging": "くろダイヤ", + "pos": "名詞", + "pn": -0.0117441 + }, + { + "surface": "学界", + "readging": "がっかい", + "pos": "名詞", + "pn": -0.0119179 + }, + { + "surface": "理知", + "readging": "りち", + "pos": "名詞", + "pn": -0.0119821 + }, + { + "surface": "早分り", + "readging": "はやわかり", + "pos": "名詞", + "pn": -0.0121426 + }, + { + "surface": "結束", + "readging": "けっそく", + "pos": "名詞", + "pn": -0.0121445 + }, + { + "surface": "地名", + "readging": "ちめい", + "pos": "名詞", + "pn": -0.01224 + }, + { + "surface": "筆削", + "readging": "ひっさく", + "pos": "名詞", + "pn": -0.0122596 + }, + { + "surface": "独壇場", + "readging": "どくだんじょう", + "pos": "名詞", + "pn": -0.0123116 + }, + { + "surface": "よも", + "readging": "よも", + "pos": "副詞", + "pn": -0.0123425 + }, + { + "surface": "不同", + "readging": "ふどう", + "pos": "名詞", + "pn": -0.0123473 + }, + { + "surface": "見掛け倒し", + "readging": "みかけだおし", + "pos": "名詞", + "pn": -0.0123749 + }, + { + "surface": "笛竹", + "readging": "ふえたけ", + "pos": "名詞", + "pn": -0.0124104 + }, + { + "surface": "能否", + "readging": "のうひ", + "pos": "名詞", + "pn": -0.0124335 + }, + { + "surface": "手織", + "readging": "ており", + "pos": "名詞", + "pn": -0.012457 + }, + { + "surface": "サルバルサン", + "readging": "サルバルサン", + "pos": "名詞", + "pn": -0.0124616 + }, + { + "surface": "悟得", + "readging": "ごとく", + "pos": "名詞", + "pn": -0.012493 + }, + { + "surface": "最近", + "readging": "さいきん", + "pos": "名詞", + "pn": -0.0125929 + }, + { + "surface": "指名", + "readging": "しめい", + "pos": "名詞", + "pn": -0.012598 + }, + { + "surface": "名代", + "readging": "みょうだい", + "pos": "名詞", + "pn": -0.0126172 + }, + { + "surface": "不平等", + "readging": "ふびょうどう", + "pos": "名詞", + "pn": -0.0126224 + }, + { + "surface": "洒落", + "readging": "しゃらく", + "pos": "名詞", + "pn": -0.012658 + }, + { + "surface": "上地", + "readging": "じょうち", + "pos": "名詞", + "pn": -0.0127169 + }, + { + "surface": "神米", + "readging": "しんまい", + "pos": "名詞", + "pn": -0.0127514 + }, + { + "surface": "ロハ", + "readging": "ロハ", + "pos": "名詞", + "pn": -0.0127655 + }, + { + "surface": "品枯れ", + "readging": "しながれ", + "pos": "名詞", + "pn": -0.012873 + }, + { + "surface": "退室", + "readging": "たいしつ", + "pos": "名詞", + "pn": -0.012917 + }, + { + "surface": "慎み", + "readging": "つつしみ", + "pos": "名詞", + "pn": -0.01292 + }, + { + "surface": "太め", + "readging": "ふとめ", + "pos": "名詞", + "pn": -0.0129252 + }, + { + "surface": "愛息", + "readging": "あいそく", + "pos": "名詞", + "pn": -0.0129566 + }, + { + "surface": "近作", + "readging": "きんさく", + "pos": "名詞", + "pn": -0.0129802 + }, + { + "surface": "セパード", + "readging": "セパード", + "pos": "名詞", + "pn": -0.0129834 + }, + { + "surface": "経世済民", + "readging": "けいせいさいみん", + "pos": "名詞", + "pn": -0.0130985 + }, + { + "surface": "饌米", + "readging": "せんまい", + "pos": "名詞", + "pn": -0.0131707 + }, + { + "surface": "祈り", + "readging": "いのり", + "pos": "名詞", + "pn": -0.0133743 + }, + { + "surface": "安上り", + "readging": "やすあがり", + "pos": "名詞", + "pn": -0.0133769 + }, + { + "surface": "至純", + "readging": "しじゅん", + "pos": "名詞", + "pn": -0.0136042 + }, + { + "surface": "親善", + "readging": "しんぜん", + "pos": "名詞", + "pn": -0.0137952 + }, + { + "surface": "斯学", + "readging": "しがく", + "pos": "名詞", + "pn": -0.0137975 + }, + { + "surface": "内界", + "readging": "ないかい", + "pos": "名詞", + "pn": -0.0138698 + }, + { + "surface": "空包", + "readging": "くうほう", + "pos": "名詞", + "pn": -0.0140142 + }, + { + "surface": "軟式", + "readging": "なんしき", + "pos": "名詞", + "pn": -0.0140209 + }, + { + "surface": "蜜月", + "readging": "みつげつ", + "pos": "名詞", + "pn": -0.0141217 + }, + { + "surface": "内帑金", + "readging": "ないどきん", + "pos": "名詞", + "pn": -0.0141782 + }, + { + "surface": "森厳", + "readging": "しんげん", + "pos": "名詞", + "pn": -0.0143556 + }, + { + "surface": "暗合", + "readging": "あんごう", + "pos": "名詞", + "pn": -0.0144516 + }, + { + "surface": "実名", + "readging": "じつめい", + "pos": "名詞", + "pn": -0.0145091 + }, + { + "surface": "征討", + "readging": "せいとう", + "pos": "名詞", + "pn": -0.0145469 + }, + { + "surface": "申し子", + "readging": "もうしご", + "pos": "名詞", + "pn": -0.0145713 + }, + { + "surface": "生い育つ", + "readging": "おいそだつ", + "pos": "動詞", + "pn": -0.0146135 + }, + { + "surface": "哀歓", + "readging": "あいかん", + "pos": "名詞", + "pn": -0.0146329 + }, + { + "surface": "王位", + "readging": "おうい", + "pos": "名詞", + "pn": -0.0146396 + }, + { + "surface": "巡り合い", + "readging": "めぐりあい", + "pos": "名詞", + "pn": -0.0146417 + }, + { + "surface": "飄逸", + "readging": "ひょういつ", + "pos": "名詞", + "pn": -0.014647 + }, + { + "surface": "貫禄", + "readging": "かんろく", + "pos": "名詞", + "pn": -0.014648 + }, + { + "surface": "ボーイ", + "readging": "ボーイ", + "pos": "名詞", + "pn": -0.0147144 + }, + { + "surface": "竜虎", + "readging": "りゅうこ", + "pos": "名詞", + "pn": -0.0147621 + }, + { + "surface": "聞返す", + "readging": "ききかえす", + "pos": "動詞", + "pn": -0.0148176 + }, + { + "surface": "技芸", + "readging": "ぎげい", + "pos": "名詞", + "pn": -0.0148527 + }, + { + "surface": "思弁", + "readging": "しべん", + "pos": "名詞", + "pn": -0.0148625 + }, + { + "surface": "なまめく", + "readging": "なまめく", + "pos": "動詞", + "pn": -0.0148698 + }, + { + "surface": "殷鑑", + "readging": "いんかん", + "pos": "名詞", + "pn": -0.015083 + }, + { + "surface": "諸道", + "readging": "しょどう", + "pos": "名詞", + "pn": -0.0150961 + }, + { + "surface": "先王", + "readging": "せんのう", + "pos": "名詞", + "pn": -0.0151027 + }, + { + "surface": "在野", + "readging": "ざいや", + "pos": "名詞", + "pn": -0.015126 + }, + { + "surface": "真冬", + "readging": "まふゆ", + "pos": "名詞", + "pn": -0.0152076 + }, + { + "surface": "明眸", + "readging": "めいぼう", + "pos": "名詞", + "pn": -0.015324 + }, + { + "surface": "熱意", + "readging": "ねつい", + "pos": "名詞", + "pn": -0.0153313 + }, + { + "surface": "桂冠詩人", + "readging": "けいかんしじん", + "pos": "名詞", + "pn": -0.0154244 + }, + { + "surface": "封建主義", + "readging": "ほうけんしゅぎ", + "pos": "名詞", + "pn": -0.0154347 + }, + { + "surface": "懇書", + "readging": "こんしょ", + "pos": "名詞", + "pn": -0.0154521 + }, + { + "surface": "万鈞", + "readging": "ばんきん", + "pos": "名詞", + "pn": -0.0155079 + }, + { + "surface": "寡言", + "readging": "かげん", + "pos": "名詞", + "pn": -0.0156252 + }, + { + "surface": "立回る", + "readging": "たちまわる", + "pos": "動詞", + "pn": -0.0156338 + }, + { + "surface": "実事師", + "readging": "じつごとし", + "pos": "名詞", + "pn": -0.015693 + }, + { + "surface": "清明", + "readging": "せいめい", + "pos": "名詞", + "pn": -0.0157105 + }, + { + "surface": "清遊", + "readging": "せいゆう", + "pos": "名詞", + "pn": -0.0158139 + }, + { + "surface": "国交", + "readging": "こっこう", + "pos": "名詞", + "pn": -0.0158573 + }, + { + "surface": "松原", + "readging": "まつばら", + "pos": "名詞", + "pn": -0.0158982 + }, + { + "surface": "契合", + "readging": "けいごう", + "pos": "名詞", + "pn": -0.0159259 + }, + { + "surface": "樹林", + "readging": "じゅりん", + "pos": "名詞", + "pn": -0.0161219 + }, + { + "surface": "迫力", + "readging": "はくりょく", + "pos": "名詞", + "pn": -0.0162183 + }, + { + "surface": "孜孜", + "readging": "しし", + "pos": "名詞", + "pn": -0.0163067 + }, + { + "surface": "長兄", + "readging": "ちょうけい", + "pos": "名詞", + "pn": -0.0163639 + }, + { + "surface": "足らず", + "readging": "たらず", + "pos": "名詞", + "pn": -0.016369 + }, + { + "surface": "有合せる", + "readging": "ありあわせる", + "pos": "動詞", + "pn": -0.01648 + }, + { + "surface": "博大", + "readging": "はくだい", + "pos": "名詞", + "pn": -0.016491 + }, + { + "surface": "撰集", + "readging": "せんじゅう", + "pos": "名詞", + "pn": -0.0165381 + }, + { + "surface": "孝養", + "readging": "こうよう", + "pos": "名詞", + "pn": -0.016643 + }, + { + "surface": "報恩", + "readging": "ほうおん", + "pos": "名詞", + "pn": -0.0166851 + }, + { + "surface": "詳細", + "readging": "しょうさい", + "pos": "名詞", + "pn": -0.016756 + }, + { + "surface": "孫弟子", + "readging": "まごでし", + "pos": "名詞", + "pn": -0.0167748 + }, + { + "surface": "慎重", + "readging": "しんちょう", + "pos": "名詞", + "pn": -0.0168632 + }, + { + "surface": "気", + "readging": "け", + "pos": "名詞", + "pn": -0.0170344 + }, + { + "surface": "漠然", + "readging": "ばくぜん", + "pos": "名詞", + "pn": -0.0170375 + }, + { + "surface": "内典", + "readging": "ないてん", + "pos": "名詞", + "pn": -0.0170849 + }, + { + "surface": "不可視", + "readging": "ふかし", + "pos": "名詞", + "pn": -0.0171426 + }, + { + "surface": "食わせ物", + "readging": "くわせもの", + "pos": "名詞", + "pn": -0.0173764 + }, + { + "surface": "素踊", + "readging": "すおどり", + "pos": "名詞", + "pn": -0.0174337 + }, + { + "surface": "商況", + "readging": "しょうきょう", + "pos": "名詞", + "pn": -0.0174369 + }, + { + "surface": "無腰", + "readging": "むごし", + "pos": "名詞", + "pn": -0.0175116 + }, + { + "surface": "緩い", + "readging": "ゆるい", + "pos": "形容詞", + "pn": -0.017689 + }, + { + "surface": "終電車", + "readging": "しゅうでんしゃ", + "pos": "名詞", + "pn": -0.0178443 + }, + { + "surface": "勅撰", + "readging": "ちょくせん", + "pos": "名詞", + "pn": -0.0178739 + }, + { + "surface": "打破る", + "readging": "うちやぶる", + "pos": "動詞", + "pn": -0.0179408 + }, + { + "surface": "天恩", + "readging": "てんおん", + "pos": "名詞", + "pn": -0.0180759 + }, + { + "surface": "風上", + "readging": "かざかみ", + "pos": "名詞", + "pn": -0.0180833 + }, + { + "surface": "新造", + "readging": "しんぞう", + "pos": "名詞", + "pn": -0.0181091 + }, + { + "surface": "則する", + "readging": "そくする", + "pos": "動詞", + "pn": -0.0181127 + }, + { + "surface": "新語", + "readging": "しんご", + "pos": "名詞", + "pn": -0.0181485 + }, + { + "surface": "飄飄", + "readging": "ひょうひょう", + "pos": "名詞", + "pn": -0.0181857 + }, + { + "surface": "イースター", + "readging": "イースター", + "pos": "名詞", + "pn": -0.0182289 + }, + { + "surface": "柄", + "readging": "がら", + "pos": "名詞", + "pn": -0.018334 + }, + { + "surface": "生皮", + "readging": "なまかわ", + "pos": "名詞", + "pn": -0.0184539 + }, + { + "surface": "敢然", + "readging": "かんぜん", + "pos": "副詞", + "pn": -0.0186612 + }, + { + "surface": "聖教", + "readging": "せいきょう", + "pos": "名詞", + "pn": -0.0186727 + }, + { + "surface": "明鏡止水", + "readging": "めいきょうしすい", + "pos": "名詞", + "pn": -0.0187374 + }, + { + "surface": "鳳凰", + "readging": "ほうおう", + "pos": "名詞", + "pn": -0.018785 + }, + { + "surface": "紙器", + "readging": "しき", + "pos": "名詞", + "pn": -0.018832 + }, + { + "surface": "似合", + "readging": "にあい", + "pos": "名詞", + "pn": -0.0188754 + }, + { + "surface": "一喜一憂", + "readging": "いっきいちゆう", + "pos": "名詞", + "pn": -0.0188781 + }, + { + "surface": "敵", + "readging": "かたき", + "pos": "名詞", + "pn": -0.0189813 + }, + { + "surface": "呈", + "readging": "てい", + "pos": "名詞", + "pn": -0.0190621 + }, + { + "surface": "賢愚", + "readging": "けんぐ", + "pos": "名詞", + "pn": -0.0191914 + }, + { + "surface": "老熟", + "readging": "ろうじゅく", + "pos": "名詞", + "pn": -0.0191923 + }, + { + "surface": "神格", + "readging": "しんかく", + "pos": "名詞", + "pn": -0.019227 + }, + { + "surface": "しゃこう", + "readging": "しゃこうダンス", + "pos": "名詞", + "pn": -0.0193849 + }, + { + "surface": "猫可愛がり", + "readging": "ねこかわいがり", + "pos": "名詞", + "pn": -0.0194061 + }, + { + "surface": "資する", + "readging": "しする", + "pos": "動詞", + "pn": -0.0195256 + }, + { + "surface": "雪原", + "readging": "せつげん", + "pos": "名詞", + "pn": -0.0195419 + }, + { + "surface": "口付け", + "readging": "くちづけ", + "pos": "名詞", + "pn": -0.0195483 + }, + { + "surface": "翠緑", + "readging": "すいりょく", + "pos": "名詞", + "pn": -0.0196175 + }, + { + "surface": "天地神明", + "readging": "てんちしんめい", + "pos": "名詞", + "pn": -0.0196345 + }, + { + "surface": "古筆", + "readging": "こひつ", + "pos": "名詞", + "pn": -0.0196944 + }, + { + "surface": "孤城", + "readging": "こじょう", + "pos": "名詞", + "pn": -0.01971 + }, + { + "surface": "癖毛", + "readging": "くせげ", + "pos": "名詞", + "pn": -0.0197407 + }, + { + "surface": "呼号", + "readging": "こごう", + "pos": "名詞", + "pn": -0.0197687 + }, + { + "surface": "半袖", + "readging": "はんそで", + "pos": "名詞", + "pn": -0.0198166 + }, + { + "surface": "看経", + "readging": "かんきん", + "pos": "名詞", + "pn": -0.0198512 + }, + { + "surface": "部面", + "readging": "ぶめん", + "pos": "名詞", + "pn": -0.0198781 + }, + { + "surface": "扞格", + "readging": "かんかく", + "pos": "名詞", + "pn": -0.0199172 + }, + { + "surface": "アバウト", + "readging": "アバウト", + "pos": "名詞", + "pn": -0.0199172 + }, + { + "surface": "不納", + "readging": "ふのう", + "pos": "名詞", + "pn": -0.0199173 + }, + { + "surface": "不為", + "readging": "ふため", + "pos": "名詞", + "pn": -0.0199173 + }, + { + "surface": "抑止", + "readging": "よくし", + "pos": "名詞", + "pn": -0.0199173 + }, + { + "surface": "無駄遣い", + "readging": "むだづかい", + "pos": "名詞", + "pn": -0.0199173 + }, + { + "surface": "のほほんと", + "readging": "のほほんと", + "pos": "副詞", + "pn": -0.0199173 + }, + { + "surface": "のっぴき", + "readging": "のっぴき", + "pos": "名詞", + "pn": -0.0199173 + }, + { + "surface": "廃水", + "readging": "はいすい", + "pos": "名詞", + "pn": -0.0199173 + }, + { + "surface": "ばかりか", + "readging": "ばかりか", + "pos": "名詞", + "pn": -0.0199173 + }, + { + "surface": "ならでは", + "readging": "ならでは", + "pos": "名詞", + "pn": -0.0199173 + }, + { + "surface": "近業", + "readging": "きんぎょう", + "pos": "名詞", + "pn": -0.0201094 + }, + { + "surface": "貿易風", + "readging": "ぼうえきふう", + "pos": "名詞", + "pn": -0.0201456 + }, + { + "surface": "圧勝", + "readging": "あっしょう", + "pos": "名詞", + "pn": -0.0202087 + }, + { + "surface": "破婚", + "readging": "はこん", + "pos": "名詞", + "pn": -0.0202678 + }, + { + "surface": "空冷", + "readging": "くうれい", + "pos": "名詞", + "pn": -0.0204326 + }, + { + "surface": "権原", + "readging": "けんげん", + "pos": "名詞", + "pn": -0.0204379 + }, + { + "surface": "十年一日", + "readging": "じゅうねんいちじつ", + "pos": "名詞", + "pn": -0.0204615 + }, + { + "surface": "そぼ降る", + "readging": "そぼふる", + "pos": "動詞", + "pn": -0.0205834 + }, + { + "surface": "仙丹", + "readging": "せんたん", + "pos": "名詞", + "pn": -0.0205964 + }, + { + "surface": "逸聞", + "readging": "いつぶん", + "pos": "名詞", + "pn": -0.0207219 + }, + { + "surface": "学僧", + "readging": "がくそう", + "pos": "名詞", + "pn": -0.0207308 + }, + { + "surface": "直喩", + "readging": "ちょくゆ", + "pos": "名詞", + "pn": -0.0207356 + }, + { + "surface": "深間", + "readging": "ふかま", + "pos": "名詞", + "pn": -0.0207393 + }, + { + "surface": "死生", + "readging": "しせい", + "pos": "名詞", + "pn": -0.0207464 + }, + { + "surface": "平気の平左", + "readging": "へいきのへいざ", + "pos": "名詞", + "pn": -0.0208269 + }, + { + "surface": "価する", + "readging": "あたいする", + "pos": "動詞", + "pn": -0.020929 + }, + { + "surface": "秘本", + "readging": "ひほん", + "pos": "名詞", + "pn": -0.0210806 + }, + { + "surface": "交わり", + "readging": "まじわり", + "pos": "名詞", + "pn": -0.0211136 + }, + { + "surface": "大事", + "readging": "だいじ", + "pos": "名詞", + "pn": -0.0211474 + }, + { + "surface": "小人数", + "readging": "こにんず", + "pos": "名詞", + "pn": -0.0211499 + }, + { + "surface": "国葬", + "readging": "こくそう", + "pos": "名詞", + "pn": -0.0212302 + }, + { + "surface": "プロフェッショナル", + "readging": "プロフェッショナル", + "pos": "名詞", + "pn": -0.0212462 + }, + { + "surface": "現形", + "readging": "げんけい", + "pos": "名詞", + "pn": -0.021336 + }, + { + "surface": "花便り", + "readging": "はなだより", + "pos": "名詞", + "pn": -0.0213749 + }, + { + "surface": "皇", + "readging": "すめらぎ", + "pos": "名詞", + "pn": -0.0213915 + }, + { + "surface": "国入り", + "readging": "くにいり", + "pos": "名詞", + "pn": -0.0214676 + }, + { + "surface": "スピーチ", + "readging": "スピーチ", + "pos": "名詞", + "pn": -0.0214996 + }, + { + "surface": "親睦", + "readging": "しんぼく", + "pos": "名詞", + "pn": -0.0215709 + }, + { + "surface": "玉露", + "readging": "ぎょくろ", + "pos": "名詞", + "pn": -0.0215726 + }, + { + "surface": "知識階級", + "readging": "ちしきかいきゅう", + "pos": "名詞", + "pn": -0.0216246 + }, + { + "surface": "神性", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.0217804 + }, + { + "surface": "連夜", + "readging": "れんや", + "pos": "名詞", + "pn": -0.0218049 + }, + { + "surface": "唯美", + "readging": "ゆいび", + "pos": "名詞", + "pn": -0.021805 + }, + { + "surface": "持説", + "readging": "じせつ", + "pos": "名詞", + "pn": -0.0218286 + }, + { + "surface": "管理図", + "readging": "かんりず", + "pos": "名詞", + "pn": -0.0218367 + }, + { + "surface": "生前", + "readging": "せいぜん", + "pos": "名詞", + "pn": -0.0218504 + }, + { + "surface": "内命", + "readging": "ないめい", + "pos": "名詞", + "pn": -0.0218832 + }, + { + "surface": "伸び悩む", + "readging": "のびなやむ", + "pos": "動詞", + "pn": -0.0219582 + }, + { + "surface": "忠勇", + "readging": "ちゅうゆう", + "pos": "名詞", + "pn": -0.0220781 + }, + { + "surface": "盛る", + "readging": "さかる", + "pos": "動詞", + "pn": -0.0220932 + }, + { + "surface": "なるべく", + "readging": "なるべく", + "pos": "副詞", + "pn": -0.0221094 + }, + { + "surface": "増兵", + "readging": "ぞうへい", + "pos": "名詞", + "pn": -0.022182 + }, + { + "surface": "特技", + "readging": "とくぎ", + "pos": "名詞", + "pn": -0.0222032 + }, + { + "surface": "出社", + "readging": "しゅっしゃ", + "pos": "名詞", + "pn": -0.0222179 + }, + { + "surface": "近頃", + "readging": "ちかごろ", + "pos": "名詞", + "pn": -0.022326 + }, + { + "surface": "皆勤", + "readging": "かいきん", + "pos": "名詞", + "pn": -0.0223428 + }, + { + "surface": "こんもり", + "readging": "こんもり", + "pos": "副詞", + "pn": -0.0223444 + }, + { + "surface": "無造作", + "readging": "むぞうさ", + "pos": "名詞", + "pn": -0.0223942 + }, + { + "surface": "尺寸", + "readging": "しゃくすん", + "pos": "名詞", + "pn": -0.022485 + }, + { + "surface": "成果", + "readging": "せいか", + "pos": "名詞", + "pn": -0.0225369 + }, + { + "surface": "権柄", + "readging": "けんぺい", + "pos": "名詞", + "pn": -0.0225664 + }, + { + "surface": "独言", + "readging": "ひとりごと", + "pos": "名詞", + "pn": -0.0225993 + }, + { + "surface": "熱鬧", + "readging": "ねっとう", + "pos": "名詞", + "pn": -0.0226036 + }, + { + "surface": "欠航", + "readging": "けっこう", + "pos": "名詞", + "pn": -0.0226996 + }, + { + "surface": "ゼブラ", + "readging": "ゼブラ", + "pos": "名詞", + "pn": -0.022865 + }, + { + "surface": "顕教", + "readging": "けんぎょう", + "pos": "名詞", + "pn": -0.0228764 + }, + { + "surface": "一流", + "readging": "いちりゅう", + "pos": "名詞", + "pn": -0.0228914 + }, + { + "surface": "旗日", + "readging": "はたび", + "pos": "名詞", + "pn": -0.0228974 + }, + { + "surface": "浮貸", + "readging": "うきがし", + "pos": "名詞", + "pn": -0.0229152 + }, + { + "surface": "忠勤", + "readging": "ちゅうきん", + "pos": "名詞", + "pn": -0.0229402 + }, + { + "surface": "芥子頭", + "readging": "けしあたま", + "pos": "名詞", + "pn": -0.0229778 + }, + { + "surface": "負けじ魂", + "readging": "まけじだましい", + "pos": "名詞", + "pn": -0.0229984 + }, + { + "surface": "摂社", + "readging": "せっしゃ", + "pos": "名詞", + "pn": -0.0231819 + }, + { + "surface": "プロテスタント", + "readging": "プロテスタント", + "pos": "名詞", + "pn": -0.0232124 + }, + { + "surface": "お澄し", + "readging": "おすまし", + "pos": "名詞", + "pn": -0.0232216 + }, + { + "surface": "丸呑み", + "readging": "まるのみ", + "pos": "名詞", + "pn": -0.0232714 + }, + { + "surface": "年中", + "readging": "ねんぢゅう", + "pos": "副詞", + "pn": -0.0234599 + }, + { + "surface": "心張り", + "readging": "しんばり", + "pos": "名詞", + "pn": -0.0235103 + }, + { + "surface": "女形", + "readging": "おんながた", + "pos": "名詞", + "pn": -0.0235189 + }, + { + "surface": "重縁", + "readging": "じゅうえん", + "pos": "名詞", + "pn": -0.0235531 + }, + { + "surface": "下限", + "readging": "かげん", + "pos": "名詞", + "pn": -0.0235634 + }, + { + "surface": "詩作", + "readging": "しさく", + "pos": "名詞", + "pn": -0.0235752 + }, + { + "surface": "塔頭", + "readging": "たっちゅう", + "pos": "名詞", + "pn": -0.0235882 + }, + { + "surface": "オン パレード", + "readging": "オン パレード", + "pos": "名詞", + "pn": -0.0236322 + }, + { + "surface": "呼気", + "readging": "こき", + "pos": "名詞", + "pn": -0.0236391 + }, + { + "surface": "単発", + "readging": "たんぱつ", + "pos": "名詞", + "pn": -0.0236794 + }, + { + "surface": "雪明り", + "readging": "ゆきあかり", + "pos": "名詞", + "pn": -0.0236926 + }, + { + "surface": "商務", + "readging": "しょうむ", + "pos": "名詞", + "pn": -0.0237101 + }, + { + "surface": "名題役者", + "readging": "なだいやくしゃ", + "pos": "名詞", + "pn": -0.0237376 + }, + { + "surface": "認可", + "readging": "にんか", + "pos": "名詞", + "pn": -0.0237421 + }, + { + "surface": "顕然", + "readging": "けんぜん", + "pos": "名詞", + "pn": -0.02377 + }, + { + "surface": "空念仏", + "readging": "からねんぶつ", + "pos": "名詞", + "pn": -0.0237882 + }, + { + "surface": "十全", + "readging": "じゅうぜん", + "pos": "名詞", + "pn": -0.023866 + }, + { + "surface": "投入れ", + "readging": "なげいれ", + "pos": "名詞", + "pn": -0.0238824 + }, + { + "surface": "岳人", + "readging": "がくじん", + "pos": "名詞", + "pn": -0.0239491 + }, + { + "surface": "師恩", + "readging": "しおん", + "pos": "名詞", + "pn": -0.023985 + }, + { + "surface": "殉教", + "readging": "じゅんきょう", + "pos": "名詞", + "pn": -0.0240463 + }, + { + "surface": "所説", + "readging": "しょせつ", + "pos": "名詞", + "pn": -0.0240887 + }, + { + "surface": "蜂の頭", + "readging": "はちのあたま", + "pos": "名詞", + "pn": -0.0240917 + }, + { + "surface": "ずかずか", + "readging": "ずかずか", + "pos": "副詞", + "pn": -0.024098 + }, + { + "surface": "着た切り", + "readging": "きたきり", + "pos": "名詞", + "pn": -0.0242112 + }, + { + "surface": "無給", + "readging": "むきゅう", + "pos": "名詞", + "pn": -0.0242279 + }, + { + "surface": "下手物", + "readging": "げてもの", + "pos": "名詞", + "pn": -0.0243023 + }, + { + "surface": "うらうら", + "readging": "うらうら", + "pos": "副詞", + "pn": -0.0243027 + }, + { + "surface": "横取り", + "readging": "よこどり", + "pos": "名詞", + "pn": -0.0243321 + }, + { + "surface": "法城", + "readging": "ほうじょう", + "pos": "名詞", + "pn": -0.0244137 + }, + { + "surface": "下町風", + "readging": "したまちふう", + "pos": "名詞", + "pn": -0.0244169 + }, + { + "surface": "綺談", + "readging": "きだん", + "pos": "名詞", + "pn": -0.024417 + }, + { + "surface": "新約", + "readging": "しんやく", + "pos": "名詞", + "pn": -0.0244471 + }, + { + "surface": "まあまあ", + "readging": "まあまあ", + "pos": "副詞", + "pn": -0.0246219 + }, + { + "surface": "雪冤", + "readging": "せつえん", + "pos": "名詞", + "pn": -0.0246669 + }, + { + "surface": "角屋敷", + "readging": "かどやしき", + "pos": "名詞", + "pn": -0.0247123 + }, + { + "surface": "一閃", + "readging": "いっせん", + "pos": "名詞", + "pn": -0.0247379 + }, + { + "surface": "教化", + "readging": "きょうけ", + "pos": "名詞", + "pn": -0.0247758 + }, + { + "surface": "蟠り", + "readging": "わだかまり", + "pos": "名詞", + "pn": -0.0247849 + }, + { + "surface": "賓格", + "readging": "ひんかく", + "pos": "名詞", + "pn": -0.0248405 + }, + { + "surface": "遵奉", + "readging": "じゅんぽう", + "pos": "名詞", + "pn": -0.0248596 + }, + { + "surface": "正接", + "readging": "せいせつ", + "pos": "名詞", + "pn": -0.0249173 + }, + { + "surface": "参宮", + "readging": "さんぐう", + "pos": "名詞", + "pn": -0.0249846 + }, + { + "surface": "たがる", + "readging": "たがる", + "pos": "動詞", + "pn": -0.0251891 + }, + { + "surface": "執心", + "readging": "しゅうしん", + "pos": "名詞", + "pn": -0.0253034 + }, + { + "surface": "富力", + "readging": "ふりょく", + "pos": "名詞", + "pn": -0.025375 + }, + { + "surface": "所与", + "readging": "しょよ", + "pos": "名詞", + "pn": -0.0253929 + }, + { + "surface": "即金", + "readging": "そっきん", + "pos": "名詞", + "pn": -0.0255384 + }, + { + "surface": "クエーカー", + "readging": "クエーカー", + "pos": "名詞", + "pn": -0.0255569 + }, + { + "surface": "国号", + "readging": "こくごう", + "pos": "名詞", + "pn": -0.025558 + }, + { + "surface": "体よく", + "readging": "ていよく", + "pos": "副詞", + "pn": -0.0257487 + }, + { + "surface": "厳選", + "readging": "げんせん", + "pos": "名詞", + "pn": -0.0257512 + }, + { + "surface": "風情", + "readging": "ふぜい", + "pos": "名詞", + "pn": -0.0257843 + }, + { + "surface": "空地", + "readging": "くうち", + "pos": "名詞", + "pn": -0.0258189 + }, + { + "surface": "沈魚落雁", + "readging": "ちんぎょらくがん", + "pos": "名詞", + "pn": -0.0261227 + }, + { + "surface": "贔屓目", + "readging": "ひいきめ", + "pos": "名詞", + "pn": -0.0261281 + }, + { + "surface": "年嵩", + "readging": "としかさ", + "pos": "名詞", + "pn": -0.0261673 + }, + { + "surface": "真理", + "readging": "しんり", + "pos": "名詞", + "pn": -0.0261693 + }, + { + "surface": "圏内", + "readging": "けんない", + "pos": "名詞", + "pn": -0.0261951 + }, + { + "surface": "補導", + "readging": "ほどう", + "pos": "名詞", + "pn": -0.0262512 + }, + { + "surface": "典拠", + "readging": "てんきょ", + "pos": "名詞", + "pn": -0.0262702 + }, + { + "surface": "水風呂", + "readging": "みずぶろ", + "pos": "名詞", + "pn": -0.0262735 + }, + { + "surface": "転入", + "readging": "てんにゅう", + "pos": "名詞", + "pn": -0.0263728 + }, + { + "surface": "行ずる", + "readging": "ぎょうずる", + "pos": "動詞", + "pn": -0.026455 + }, + { + "surface": "訳する", + "readging": "やくする", + "pos": "動詞", + "pn": -0.0265656 + }, + { + "surface": "自然人", + "readging": "しぜんじん", + "pos": "名詞", + "pn": -0.0266268 + }, + { + "surface": "横隊", + "readging": "おうたい", + "pos": "名詞", + "pn": -0.026655 + }, + { + "surface": "脱臭", + "readging": "だっしゅう", + "pos": "名詞", + "pn": -0.0266565 + }, + { + "surface": "公民館", + "readging": "こうみんかん", + "pos": "名詞", + "pn": -0.0267342 + }, + { + "surface": "手伝う", + "readging": "てつだう", + "pos": "動詞", + "pn": -0.0267359 + }, + { + "surface": "性", + "readging": "しょう", + "pos": "名詞", + "pn": -0.0267368 + }, + { + "surface": "よもや", + "readging": "よもや", + "pos": "副詞", + "pn": -0.0267526 + }, + { + "surface": "毎夕", + "readging": "まいゆう", + "pos": "名詞", + "pn": -0.0267806 + }, + { + "surface": "貞", + "readging": "てい", + "pos": "名詞", + "pn": -0.0268577 + }, + { + "surface": "衛戍", + "readging": "えいじゅ", + "pos": "名詞", + "pn": -0.0268663 + }, + { + "surface": "無季", + "readging": "むき", + "pos": "名詞", + "pn": -0.026879 + }, + { + "surface": "噴飯", + "readging": "ふんぱん", + "pos": "名詞", + "pn": -0.026912 + }, + { + "surface": "真珠貝", + "readging": "しんじゅがい", + "pos": "名詞", + "pn": -0.0269748 + }, + { + "surface": "請い", + "readging": "こい", + "pos": "名詞", + "pn": -0.026988 + }, + { + "surface": "嚠喨", + "readging": "りゅうりょう", + "pos": "名詞", + "pn": -0.0270009 + }, + { + "surface": "たまさか", + "readging": "たまさか", + "pos": "副詞", + "pn": -0.0270389 + }, + { + "surface": "陸稲", + "readging": "りくとう", + "pos": "名詞", + "pn": -0.027079 + }, + { + "surface": "四万六千日", + "readging": "しまんろくせんにち", + "pos": "名詞", + "pn": -0.0271231 + }, + { + "surface": "炉塞ぎ", + "readging": "ろふさぎ", + "pos": "名詞", + "pn": -0.0272044 + }, + { + "surface": "反俗", + "readging": "はんぞく", + "pos": "名詞", + "pn": -0.0272388 + }, + { + "surface": "所天", + "readging": "しょてん", + "pos": "名詞", + "pn": -0.0272581 + }, + { + "surface": "塗潰す", + "readging": "ぬりつぶす", + "pos": "動詞", + "pn": -0.0272659 + }, + { + "surface": "万金", + "readging": "まんきん", + "pos": "名詞", + "pn": -0.0273224 + }, + { + "surface": "大欲", + "readging": "たいよく", + "pos": "名詞", + "pn": -0.0273432 + }, + { + "surface": "邦文", + "readging": "ほうぶん", + "pos": "名詞", + "pn": -0.0274243 + }, + { + "surface": "店子", + "readging": "たなこ", + "pos": "名詞", + "pn": -0.0274623 + }, + { + "surface": "黙諾", + "readging": "もくだく", + "pos": "名詞", + "pn": -0.027516 + }, + { + "surface": "後人", + "readging": "こうじん", + "pos": "名詞", + "pn": -0.0275375 + }, + { + "surface": "慕情", + "readging": "ぼじょう", + "pos": "名詞", + "pn": -0.0275922 + }, + { + "surface": "値踏み", + "readging": "ねぶみ", + "pos": "名詞", + "pn": -0.0276021 + }, + { + "surface": "自然淘汰", + "readging": "しぜんとうた", + "pos": "名詞", + "pn": -0.0276353 + }, + { + "surface": "うまうまと", + "readging": "うまうまと", + "pos": "副詞", + "pn": -0.0276899 + }, + { + "surface": "してやられる", + "readging": "してやられる", + "pos": "動詞", + "pn": -0.0277871 + }, + { + "surface": "覇権", + "readging": "はけん", + "pos": "名詞", + "pn": -0.027808 + }, + { + "surface": "弟子入り", + "readging": "でしいり", + "pos": "名詞", + "pn": -0.0278318 + }, + { + "surface": "どしどし", + "readging": "どしどし", + "pos": "副詞", + "pn": -0.0278614 + }, + { + "surface": "台網", + "readging": "だいあみ", + "pos": "名詞", + "pn": -0.0279092 + }, + { + "surface": "不燃", + "readging": "ふねん", + "pos": "名詞", + "pn": -0.0279107 + }, + { + "surface": "天女", + "readging": "てんにょ", + "pos": "名詞", + "pn": -0.0279463 + }, + { + "surface": "粗造り", + "readging": "あらづくり", + "pos": "名詞", + "pn": -0.0279543 + }, + { + "surface": "正数", + "readging": "せいすう", + "pos": "名詞", + "pn": -0.027964 + }, + { + "surface": "アンソロジー", + "readging": "アンソロジー", + "pos": "名詞", + "pn": -0.0280737 + }, + { + "surface": "儒家", + "readging": "じゅか", + "pos": "名詞", + "pn": -0.0280941 + }, + { + "surface": "嘆声", + "readging": "たんせい", + "pos": "名詞", + "pn": -0.0281788 + }, + { + "surface": "同友", + "readging": "どうゆう", + "pos": "名詞", + "pn": -0.0282184 + }, + { + "surface": "左府", + "readging": "さふ", + "pos": "名詞", + "pn": -0.0283316 + }, + { + "surface": "集塵機", + "readging": "しゅうじんき", + "pos": "名詞", + "pn": -0.0283841 + }, + { + "surface": "論功行賞", + "readging": "ろんこうこうしょう", + "pos": "名詞", + "pn": -0.0284105 + }, + { + "surface": "不戦", + "readging": "ふせん", + "pos": "名詞", + "pn": -0.0284437 + }, + { + "surface": "緘黙", + "readging": "かんもく", + "pos": "名詞", + "pn": -0.0284516 + }, + { + "surface": "旧道", + "readging": "きゅうどう", + "pos": "名詞", + "pn": -0.0284628 + }, + { + "surface": "必用", + "readging": "ひつよう", + "pos": "名詞", + "pn": -0.0284641 + }, + { + "surface": "徳義心", + "readging": "とくぎしん", + "pos": "名詞", + "pn": -0.0285233 + }, + { + "surface": "適否", + "readging": "てきひ", + "pos": "名詞", + "pn": -0.0285362 + }, + { + "surface": "盗視", + "readging": "とうし", + "pos": "名詞", + "pn": -0.0286327 + }, + { + "surface": "乳兄弟", + "readging": "ちきょうだい", + "pos": "名詞", + "pn": -0.0287416 + }, + { + "surface": "酒仙", + "readging": "しゅせん", + "pos": "名詞", + "pn": -0.0288298 + }, + { + "surface": "追使う", + "readging": "おいつかう", + "pos": "動詞", + "pn": -0.0288682 + }, + { + "surface": "実力", + "readging": "じつりょく", + "pos": "名詞", + "pn": -0.028898 + }, + { + "surface": "私費", + "readging": "しひ", + "pos": "名詞", + "pn": -0.0289431 + }, + { + "surface": "国事", + "readging": "こくじ", + "pos": "名詞", + "pn": -0.0289794 + }, + { + "surface": "隆替", + "readging": "りゅうたい", + "pos": "名詞", + "pn": -0.028981 + }, + { + "surface": "プロ", + "readging": "プロ", + "pos": "名詞", + "pn": -0.0289831 + }, + { + "surface": "余所行き", + "readging": "よそゆき", + "pos": "名詞", + "pn": -0.0290703 + }, + { + "surface": "謝恩", + "readging": "しゃおん", + "pos": "名詞", + "pn": -0.0291051 + }, + { + "surface": "通観", + "readging": "つうかん", + "pos": "名詞", + "pn": -0.0291088 + }, + { + "surface": "寒月", + "readging": "かんげつ", + "pos": "名詞", + "pn": -0.0291115 + }, + { + "surface": "追回す", + "readging": "おいまわす", + "pos": "動詞", + "pn": -0.0291898 + }, + { + "surface": "有望", + "readging": "ゆうぼう", + "pos": "名詞", + "pn": -0.0292062 + }, + { + "surface": "粘り腰", + "readging": "ねばりごし", + "pos": "名詞", + "pn": -0.0292338 + }, + { + "surface": "無鉄砲", + "readging": "むてっぽう", + "pos": "名詞", + "pn": -0.0292433 + }, + { + "surface": "優雅", + "readging": "ゆうが", + "pos": "名詞", + "pn": -0.029301 + }, + { + "surface": "温暖", + "readging": "おんだん", + "pos": "名詞", + "pn": -0.0293201 + }, + { + "surface": "無試験", + "readging": "むしけん", + "pos": "名詞", + "pn": -0.02941 + }, + { + "surface": "賃下げ", + "readging": "ちんさげ", + "pos": "名詞", + "pn": -0.0294212 + }, + { + "surface": "受入れる", + "readging": "うけいれる", + "pos": "動詞", + "pn": -0.0294266 + }, + { + "surface": "ネグリジェ", + "readging": "ネグリジェ", + "pos": "名詞", + "pn": -0.0294819 + }, + { + "surface": "売切れる", + "readging": "うりきれる", + "pos": "動詞", + "pn": -0.0295267 + }, + { + "surface": "覇王", + "readging": "はおう", + "pos": "名詞", + "pn": -0.0296738 + }, + { + "surface": "能率給", + "readging": "のうりつきゅう", + "pos": "名詞", + "pn": -0.029675 + }, + { + "surface": "其の場限り", + "readging": "そのばかぎり", + "pos": "名詞", + "pn": -0.0296937 + }, + { + "surface": "又弟子", + "readging": "またでし", + "pos": "名詞", + "pn": -0.0297476 + }, + { + "surface": "高誼", + "readging": "こうぎ", + "pos": "名詞", + "pn": -0.0297858 + }, + { + "surface": "薄着", + "readging": "うすぎ", + "pos": "名詞", + "pn": -0.029856 + }, + { + "surface": "世間知らず", + "readging": "せけんしらず", + "pos": "名詞", + "pn": -0.0298843 + }, + { + "surface": "海運", + "readging": "かいうん", + "pos": "名詞", + "pn": -0.0299328 + }, + { + "surface": "改革", + "readging": "かいかく", + "pos": "名詞", + "pn": -0.0299792 + }, + { + "surface": "清宴", + "readging": "せいえん", + "pos": "名詞", + "pn": -0.0300211 + }, + { + "surface": "妻せる", + "readging": "めあわせる", + "pos": "動詞", + "pn": -0.030031 + }, + { + "surface": "三国", + "readging": "さんごく", + "pos": "名詞", + "pn": -0.0300968 + }, + { + "surface": "円価", + "readging": "えんか", + "pos": "名詞", + "pn": -0.0301115 + }, + { + "surface": "場数", + "readging": "ばかず", + "pos": "名詞", + "pn": -0.0301173 + }, + { + "surface": "恩返し", + "readging": "おんがえし", + "pos": "名詞", + "pn": -0.030307 + }, + { + "surface": "分別盛り", + "readging": "ふんべつざかり", + "pos": "名詞", + "pn": -0.030366 + }, + { + "surface": "精進物", + "readging": "しょうじんもの", + "pos": "名詞", + "pn": -0.0304154 + }, + { + "surface": "ルージュ", + "readging": "ルージュ", + "pos": "名詞", + "pn": -0.0305094 + }, + { + "surface": "緑風", + "readging": "りょくふう", + "pos": "名詞", + "pn": -0.0305624 + }, + { + "surface": "寄手", + "readging": "よせて", + "pos": "名詞", + "pn": -0.0305698 + }, + { + "surface": "変節", + "readging": "へんせつ", + "pos": "名詞", + "pn": -0.0306092 + }, + { + "surface": "スケッチ", + "readging": "スケッチブック", + "pos": "名詞", + "pn": -0.030704 + }, + { + "surface": "拝呈", + "readging": "はいてい", + "pos": "名詞", + "pn": -0.0307352 + }, + { + "surface": "水髪", + "readging": "みずがみ", + "pos": "名詞", + "pn": -0.0308419 + }, + { + "surface": "介す", + "readging": "かいす", + "pos": "動詞", + "pn": -0.030851 + }, + { + "surface": "家格", + "readging": "かかく", + "pos": "名詞", + "pn": -0.0309796 + }, + { + "surface": "一夫一妻", + "readging": "いっぷいっさい", + "pos": "名詞", + "pn": -0.0309836 + }, + { + "surface": "無配", + "readging": "むはい", + "pos": "名詞", + "pn": -0.0310141 + }, + { + "surface": "極製", + "readging": "ごくせい", + "pos": "名詞", + "pn": -0.0310383 + }, + { + "surface": "勝訴", + "readging": "しょうそ", + "pos": "名詞", + "pn": -0.0311079 + }, + { + "surface": "アウトプット", + "readging": "アウトプット", + "pos": "名詞", + "pn": -0.0311924 + }, + { + "surface": "抱竦める", + "readging": "だきすくめる", + "pos": "動詞", + "pn": -0.0313617 + }, + { + "surface": "他律", + "readging": "たりつ", + "pos": "名詞", + "pn": -0.031565 + }, + { + "surface": "漬け菜", + "readging": "つけな", + "pos": "名詞", + "pn": -0.0315677 + }, + { + "surface": "先細り", + "readging": "さきぼそり", + "pos": "名詞", + "pn": -0.0316264 + }, + { + "surface": "掴み所", + "readging": "つかみどころ", + "pos": "名詞", + "pn": -0.0316623 + }, + { + "surface": "質実", + "readging": "しつじつ", + "pos": "名詞", + "pn": -0.0316623 + }, + { + "surface": "ばっちり", + "readging": "ばっちり", + "pos": "副詞", + "pn": -0.0316657 + }, + { + "surface": "何心無い", + "readging": "なにごころない", + "pos": "形容詞", + "pn": -0.0316657 + }, + { + "surface": "高著", + "readging": "こうちょ", + "pos": "名詞", + "pn": -0.0316804 + }, + { + "surface": "道心", + "readging": "どうしん", + "pos": "名詞", + "pn": -0.0317215 + }, + { + "surface": "佐官", + "readging": "さかん", + "pos": "名詞", + "pn": -0.0317431 + }, + { + "surface": "究竟", + "readging": "くっきょう", + "pos": "名詞", + "pn": -0.0319158 + }, + { + "surface": "容赦", + "readging": "ようしゃ", + "pos": "名詞", + "pn": -0.0319537 + }, + { + "surface": "神酒", + "readging": "しんしゅ", + "pos": "名詞", + "pn": -0.0319857 + }, + { + "surface": "葉酸", + "readging": "ようさん", + "pos": "名詞", + "pn": -0.0322839 + }, + { + "surface": "史家", + "readging": "しか", + "pos": "名詞", + "pn": -0.0323992 + }, + { + "surface": "鎮座", + "readging": "ちんざ", + "pos": "名詞", + "pn": -0.0324179 + }, + { + "surface": "失調", + "readging": "しっちょう", + "pos": "名詞", + "pn": -0.0325149 + }, + { + "surface": "大股", + "readging": "おおまた", + "pos": "名詞", + "pn": -0.0325246 + }, + { + "surface": "六歌仙", + "readging": "ろっかせん", + "pos": "名詞", + "pn": -0.0325433 + }, + { + "surface": "初婚", + "readging": "しょこん", + "pos": "名詞", + "pn": -0.0326773 + }, + { + "surface": "夜宴", + "readging": "やえん", + "pos": "名詞", + "pn": -0.0328087 + }, + { + "surface": "新本", + "readging": "しんぽん", + "pos": "名詞", + "pn": -0.0328992 + }, + { + "surface": "アーチスト", + "readging": "アーチスト", + "pos": "名詞", + "pn": -0.03292 + }, + { + "surface": "野性", + "readging": "やせい", + "pos": "名詞", + "pn": -0.0329686 + }, + { + "surface": "結びの神", + "readging": "むすびのかみ", + "pos": "名詞", + "pn": -0.0329953 + }, + { + "surface": "伉配", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.0330478 + }, + { + "surface": "型破り", + "readging": "かたやぶり", + "pos": "名詞", + "pn": -0.0330584 + }, + { + "surface": "新大陸", + "readging": "しんたいりく", + "pos": "名詞", + "pn": -0.0330892 + }, + { + "surface": "堂奥", + "readging": "どうおう", + "pos": "名詞", + "pn": -0.0331478 + }, + { + "surface": "偏向", + "readging": "へんこう", + "pos": "名詞", + "pn": -0.0332135 + }, + { + "surface": "時効", + "readging": "じこう", + "pos": "名詞", + "pn": -0.0332415 + }, + { + "surface": "愛吟", + "readging": "あいぎん", + "pos": "名詞", + "pn": -0.0332642 + }, + { + "surface": "取舵", + "readging": "とりかじ", + "pos": "名詞", + "pn": -0.033336 + }, + { + "surface": "食い入る", + "readging": "くいいる", + "pos": "動詞", + "pn": -0.0334074 + }, + { + "surface": "同化", + "readging": "どうか", + "pos": "名詞", + "pn": -0.0334257 + }, + { + "surface": "碩学", + "readging": "せきがく", + "pos": "名詞", + "pn": -0.0334454 + }, + { + "surface": "無休", + "readging": "むきゅう", + "pos": "名詞", + "pn": -0.0334748 + }, + { + "surface": "宥恕", + "readging": "ゆうじょ", + "pos": "名詞", + "pn": -0.0335408 + }, + { + "surface": "茶人", + "readging": "ちゃじん", + "pos": "名詞", + "pn": -0.0335647 + }, + { + "surface": "香具", + "readging": "こうぐ", + "pos": "名詞", + "pn": -0.033607 + }, + { + "surface": "素通り", + "readging": "すどおり", + "pos": "名詞", + "pn": -0.0336239 + }, + { + "surface": "更なる", + "readging": "さらなる", + "pos": "動詞", + "pn": -0.0337411 + }, + { + "surface": "人待ち顔", + "readging": "ひとまちがお", + "pos": "名詞", + "pn": -0.0338815 + }, + { + "surface": "奇麗所", + "readging": "きれいどころ", + "pos": "名詞", + "pn": -0.0338964 + }, + { + "surface": "同い年", + "readging": "おないどし", + "pos": "名詞", + "pn": -0.0340388 + }, + { + "surface": "芳心", + "readging": "ほうしん", + "pos": "名詞", + "pn": -0.0340435 + }, + { + "surface": "素面", + "readging": "すめん", + "pos": "名詞", + "pn": -0.0341539 + }, + { + "surface": "断金", + "readging": "だんきん", + "pos": "名詞", + "pn": -0.0341803 + }, + { + "surface": "関西", + "readging": "かんさい", + "pos": "名詞", + "pn": -0.0342688 + }, + { + "surface": "口答", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.0342697 + }, + { + "surface": "ビショップ", + "readging": "ビショップ", + "pos": "名詞", + "pn": -0.0342784 + }, + { + "surface": "冥府", + "readging": "めいふ", + "pos": "名詞", + "pn": -0.0342975 + }, + { + "surface": "大黒", + "readging": "だいこく", + "pos": "名詞", + "pn": -0.0343059 + }, + { + "surface": "炉開き", + "readging": "ろびらき", + "pos": "名詞", + "pn": -0.0343271 + }, + { + "surface": "同胞", + "readging": "はらから", + "pos": "名詞", + "pn": -0.0343305 + }, + { + "surface": "コンビニエンス ストア", + "readging": "コンビニエンス ストア", + "pos": "名詞", + "pn": -0.0344706 + }, + { + "surface": "合否", + "readging": "ごうひ", + "pos": "名詞", + "pn": -0.0345097 + }, + { + "surface": "叙勲", + "readging": "じょくん", + "pos": "名詞", + "pn": -0.0345488 + }, + { + "surface": "同筆", + "readging": "どうひつ", + "pos": "名詞", + "pn": -0.0345847 + }, + { + "surface": "広目天", + "readging": "こうもくてん", + "pos": "名詞", + "pn": -0.0345857 + }, + { + "surface": "黙約", + "readging": "もくやく", + "pos": "名詞", + "pn": -0.0346089 + }, + { + "surface": "素人目", + "readging": "しろうとめ", + "pos": "名詞", + "pn": -0.0346133 + }, + { + "surface": "取澄ます", + "readging": "とりすます", + "pos": "動詞", + "pn": -0.0346296 + }, + { + "surface": "学費", + "readging": "がくひ", + "pos": "名詞", + "pn": -0.034684 + }, + { + "surface": "精勤", + "readging": "せいきん", + "pos": "名詞", + "pn": -0.0347007 + }, + { + "surface": "座食", + "readging": "ざしょく", + "pos": "名詞", + "pn": -0.0347608 + }, + { + "surface": "煎じ詰める", + "readging": "せんじつめる", + "pos": "動詞", + "pn": -0.0348663 + }, + { + "surface": "星屑", + "readging": "ほしくず", + "pos": "名詞", + "pn": -0.0348706 + }, + { + "surface": "大味", + "readging": "おおあじ", + "pos": "名詞", + "pn": -0.0348839 + }, + { + "surface": "明言", + "readging": "めいげん", + "pos": "名詞", + "pn": -0.034884 + }, + { + "surface": "明視", + "readging": "めいし", + "pos": "名詞", + "pn": -0.034884 + }, + { + "surface": "田園詩人", + "readging": "でんえんしじん", + "pos": "名詞", + "pn": -0.0348868 + }, + { + "surface": "及ばず乍ら", + "readging": "およばずながら", + "pos": "名詞", + "pn": -0.0349956 + }, + { + "surface": "お釈迦", + "readging": "おしゃか", + "pos": "名詞", + "pn": -0.0349956 + }, + { + "surface": "空殻", + "readging": "あきがら", + "pos": "名詞", + "pn": -0.0349956 + }, + { + "surface": "剰え", + "readging": "あまつさえ", + "pos": "副詞", + "pn": -0.0349956 + }, + { + "surface": "何時しか", + "readging": "いつしか", + "pos": "副詞", + "pn": -0.0349956 + }, + { + "surface": "生新しい", + "readging": "なまあたらしい", + "pos": "形容詞", + "pn": -0.0350466 + }, + { + "surface": "無届", + "readging": "むとどけ", + "pos": "名詞", + "pn": -0.0351429 + }, + { + "surface": "不言", + "readging": "ふげん", + "pos": "名詞", + "pn": -0.0351429 + }, + { + "surface": "旅情", + "readging": "りょじょう", + "pos": "名詞", + "pn": -0.0351851 + }, + { + "surface": "宗室", + "readging": "そうしつ", + "pos": "名詞", + "pn": -0.0351978 + }, + { + "surface": "中浣", + "readging": "ちゅうかん", + "pos": "名詞", + "pn": -0.0352453 + }, + { + "surface": "捌き", + "readging": "さばき", + "pos": "名詞", + "pn": -0.0353 + }, + { + "surface": "南殿", + "readging": "なんでん", + "pos": "名詞", + "pn": -0.0353824 + }, + { + "surface": "パトス", + "readging": "パトス", + "pos": "名詞", + "pn": -0.0353859 + }, + { + "surface": "一将", + "readging": "いっしょう", + "pos": "名詞", + "pn": -0.0355253 + }, + { + "surface": "取札", + "readging": "とりふだ", + "pos": "名詞", + "pn": -0.0355432 + }, + { + "surface": "跣", + "readging": "はだし", + "pos": "名詞", + "pn": -0.0355645 + }, + { + "surface": "推服", + "readging": "すいふく", + "pos": "名詞", + "pn": -0.03558 + }, + { + "surface": "家宝", + "readging": "かほう", + "pos": "名詞", + "pn": -0.0356009 + }, + { + "surface": "語幹", + "readging": "ごかん", + "pos": "名詞", + "pn": -0.035613 + }, + { + "surface": "遺産", + "readging": "いさん", + "pos": "名詞", + "pn": -0.0356254 + }, + { + "surface": "防", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.0356484 + }, + { + "surface": "黒木", + "readging": "くろき", + "pos": "名詞", + "pn": -0.0356811 + }, + { + "surface": "インフレ", + "readging": "インフレ", + "pos": "名詞", + "pn": -0.0357297 + }, + { + "surface": "菩薩道", + "readging": "ぼさつどう", + "pos": "名詞", + "pn": -0.0357512 + }, + { + "surface": "聖域", + "readging": "せいいき", + "pos": "名詞", + "pn": -0.0358164 + }, + { + "surface": "有数", + "readging": "ゆうすう", + "pos": "名詞", + "pn": -0.0358275 + }, + { + "surface": "清風", + "readging": "せいふう", + "pos": "名詞", + "pn": -0.0359341 + }, + { + "surface": "雄松", + "readging": "おまつ", + "pos": "名詞", + "pn": -0.0359867 + }, + { + "surface": "確聞", + "readging": "かくぶん", + "pos": "名詞", + "pn": -0.0361298 + }, + { + "surface": "一生面", + "readging": "いちせいめん", + "pos": "名詞", + "pn": -0.0361349 + }, + { + "surface": "馬糞", + "readging": "まぐそ", + "pos": "名詞", + "pn": -0.0361377 + }, + { + "surface": "俗学", + "readging": "ぞくがく", + "pos": "名詞", + "pn": -0.0361772 + }, + { + "surface": "連袂", + "readging": "れんべい", + "pos": "名詞", + "pn": -0.0361911 + }, + { + "surface": "一献", + "readging": "いっこん", + "pos": "名詞", + "pn": -0.0363008 + }, + { + "surface": "肉細", + "readging": "にくぼそ", + "pos": "名詞", + "pn": -0.0363069 + }, + { + "surface": "普遍妥当性", + "readging": "ふへんだとうせい", + "pos": "名詞", + "pn": -0.0363152 + }, + { + "surface": "動脈血", + "readging": "どうみゃくけつ", + "pos": "名詞", + "pn": -0.0363627 + }, + { + "surface": "当落", + "readging": "とうらく", + "pos": "名詞", + "pn": -0.0363705 + }, + { + "surface": "意味付ける", + "readging": "いみづける", + "pos": "動詞", + "pn": -0.0363899 + }, + { + "surface": "夫", + "readging": "おっと", + "pos": "名詞", + "pn": -0.0364534 + }, + { + "surface": "怪我勝", + "readging": "けががち", + "pos": "名詞", + "pn": -0.0364713 + }, + { + "surface": "霊化", + "readging": "れいか", + "pos": "名詞", + "pn": -0.0364883 + }, + { + "surface": "玄麦", + "readging": "げんばく", + "pos": "名詞", + "pn": -0.0365542 + }, + { + "surface": "必然", + "readging": "ひつぜん", + "pos": "名詞", + "pn": -0.0365655 + }, + { + "surface": "耳介", + "readging": "じかい", + "pos": "名詞", + "pn": -0.0365683 + }, + { + "surface": "本旨", + "readging": "ほんし", + "pos": "名詞", + "pn": -0.036583 + }, + { + "surface": "根無し草", + "readging": "ねなしぐさ", + "pos": "名詞", + "pn": -0.0366401 + }, + { + "surface": "ボーダーライン", + "readging": "ボーダーライン", + "pos": "名詞", + "pn": -0.0366573 + }, + { + "surface": "タングステン鋼", + "readging": "タングステンこう", + "pos": "名詞", + "pn": -0.0366787 + }, + { + "surface": "自然発生", + "readging": "しぜんはっせい", + "pos": "名詞", + "pn": -0.0366946 + }, + { + "surface": "逼迫", + "readging": "ひっぱく", + "pos": "名詞", + "pn": -0.0367112 + }, + { + "surface": "黄熟", + "readging": "おうじゅく", + "pos": "名詞", + "pn": -0.0368013 + }, + { + "surface": "ろく", + "readging": "ろく", + "pos": "動詞", + "pn": -0.0368026 + }, + { + "surface": "宸襟", + "readging": "しんきん", + "pos": "名詞", + "pn": -0.0368283 + }, + { + "surface": "草莽", + "readging": "そうもう", + "pos": "名詞", + "pn": -0.0368462 + }, + { + "surface": "訳者", + "readging": "やくしゃ", + "pos": "名詞", + "pn": -0.0368888 + }, + { + "surface": "天成", + "readging": "てんせい", + "pos": "名詞", + "pn": -0.0370971 + }, + { + "surface": "鼓舞", + "readging": "こぶ", + "pos": "名詞", + "pn": -0.0371306 + }, + { + "surface": "埋合す", + "readging": "うめあわす", + "pos": "動詞", + "pn": -0.0371336 + }, + { + "surface": "経典", + "readging": "けいてん", + "pos": "名詞", + "pn": -0.0371736 + }, + { + "surface": "失墜", + "readging": "しっつい", + "pos": "名詞", + "pn": -0.0372085 + }, + { + "surface": "しみじみ", + "readging": "しみじみ", + "pos": "副詞", + "pn": -0.0372167 + }, + { + "surface": "川上", + "readging": "かわかみ", + "pos": "名詞", + "pn": -0.0373138 + }, + { + "surface": "愛用", + "readging": "あいよう", + "pos": "名詞", + "pn": -0.0373756 + }, + { + "surface": "鼻屎", + "readging": "はなくそ", + "pos": "名詞", + "pn": -0.0373839 + }, + { + "surface": "司教", + "readging": "しきょう", + "pos": "名詞", + "pn": -0.0374235 + }, + { + "surface": "片仮名", + "readging": "かたかな", + "pos": "名詞", + "pn": -0.0375686 + }, + { + "surface": "曲言", + "readging": "きょくげん", + "pos": "名詞", + "pn": -0.0376023 + }, + { + "surface": "数え立てる", + "readging": "かぞえたてる", + "pos": "動詞", + "pn": -0.0376161 + }, + { + "surface": "暮雪", + "readging": "ぼせつ", + "pos": "名詞", + "pn": -0.0376522 + }, + { + "surface": "席題", + "readging": "せきだい", + "pos": "名詞", + "pn": -0.0376679 + }, + { + "surface": "博愛", + "readging": "はくあい", + "pos": "名詞", + "pn": -0.0376713 + }, + { + "surface": "復活", + "readging": "ふっかつ", + "pos": "名詞", + "pn": -0.0376762 + }, + { + "surface": "師傅", + "readging": "しふ", + "pos": "名詞", + "pn": -0.0377282 + }, + { + "surface": "豊凶", + "readging": "ほうきょう", + "pos": "名詞", + "pn": -0.0377795 + }, + { + "surface": "精神遅滞", + "readging": "せいしんちたい", + "pos": "名詞", + "pn": -0.0378264 + }, + { + "surface": "盗み見", + "readging": "ぬすみみ", + "pos": "名詞", + "pn": -0.0378539 + }, + { + "surface": "美辞", + "readging": "びじ", + "pos": "名詞", + "pn": -0.0378583 + }, + { + "surface": "増員", + "readging": "ぞういん", + "pos": "名詞", + "pn": -0.0378598 + }, + { + "surface": "信徒", + "readging": "しんと", + "pos": "名詞", + "pn": -0.0378673 + }, + { + "surface": "主力艦", + "readging": "しゅりょくかん", + "pos": "名詞", + "pn": -0.0378707 + }, + { + "surface": "優生学", + "readging": "ゆうせいがく", + "pos": "名詞", + "pn": -0.037929 + }, + { + "surface": "婚家", + "readging": "こんか", + "pos": "名詞", + "pn": -0.0379782 + }, + { + "surface": "二十", + "readging": "はたち", + "pos": "名詞", + "pn": -0.0380792 + }, + { + "surface": "行学", + "readging": "ぎょうがく", + "pos": "名詞", + "pn": -0.0381087 + }, + { + "surface": "悉皆", + "readging": "しっかい", + "pos": "副詞", + "pn": -0.0381888 + }, + { + "surface": "分売", + "readging": "ぶんばい", + "pos": "名詞", + "pn": -0.0383042 + }, + { + "surface": "虎の子", + "readging": "とらのこ", + "pos": "名詞", + "pn": -0.0384183 + }, + { + "surface": "真跡", + "readging": "しんせき", + "pos": "名詞", + "pn": -0.0384237 + }, + { + "surface": "大権", + "readging": "たいけん", + "pos": "名詞", + "pn": -0.0384702 + }, + { + "surface": "全一", + "readging": "ぜんいつ", + "pos": "名詞", + "pn": -0.0384709 + }, + { + "surface": "一旬", + "readging": "いちじゅん", + "pos": "名詞", + "pn": -0.038587 + }, + { + "surface": "等外", + "readging": "とうがい", + "pos": "名詞", + "pn": -0.0386046 + }, + { + "surface": "咲匂う", + "readging": "さきにおう", + "pos": "動詞", + "pn": -0.0386805 + }, + { + "surface": "媒酌", + "readging": "ばいしゃく", + "pos": "名詞", + "pn": -0.0386998 + }, + { + "surface": "直す", + "readging": "なおす", + "pos": "動詞", + "pn": -0.0387103 + }, + { + "surface": "官軍", + "readging": "かんぐん", + "pos": "名詞", + "pn": -0.0387162 + }, + { + "surface": "右傾", + "readging": "うけい", + "pos": "名詞", + "pn": -0.038722 + }, + { + "surface": "制勝", + "readging": "せいしょう", + "pos": "名詞", + "pn": -0.0387408 + }, + { + "surface": "大勝", + "readging": "たいしょう", + "pos": "名詞", + "pn": -0.0387408 + }, + { + "surface": "鼻息", + "readging": "はないき", + "pos": "名詞", + "pn": -0.0388361 + }, + { + "surface": "在天", + "readging": "ざいてん", + "pos": "名詞", + "pn": -0.0388827 + }, + { + "surface": "撫で肩", + "readging": "なでがた", + "pos": "名詞", + "pn": -0.0388991 + }, + { + "surface": "冠婚葬祭", + "readging": "かんこんそうさい", + "pos": "名詞", + "pn": -0.0390107 + }, + { + "surface": "片親", + "readging": "かたおや", + "pos": "名詞", + "pn": -0.0391097 + }, + { + "surface": "天真", + "readging": "てんしん", + "pos": "名詞", + "pn": -0.0391148 + }, + { + "surface": "清濁", + "readging": "せいだく", + "pos": "名詞", + "pn": -0.0391178 + }, + { + "surface": "片辺", + "readging": "かたほとり", + "pos": "名詞", + "pn": -0.0391319 + }, + { + "surface": "逆修", + "readging": "ぎゃくしゅ", + "pos": "名詞", + "pn": -0.0393048 + }, + { + "surface": "君民", + "readging": "くんみん", + "pos": "名詞", + "pn": -0.0394387 + }, + { + "surface": "裏芸", + "readging": "うらげい", + "pos": "名詞", + "pn": -0.0395267 + }, + { + "surface": "インプット", + "readging": "インプット", + "pos": "名詞", + "pn": -0.0395564 + }, + { + "surface": "利所", + "readging": "ききどころ", + "pos": "名詞", + "pn": -0.0395629 + }, + { + "surface": "西王母", + "readging": "せいおうぼ", + "pos": "名詞", + "pn": -0.0396046 + }, + { + "surface": "テクシー", + "readging": "テクシー", + "pos": "名詞", + "pn": -0.0396224 + }, + { + "surface": "奏楽", + "readging": "そうがく", + "pos": "名詞", + "pn": -0.0396637 + }, + { + "surface": "心服", + "readging": "しんぷく", + "pos": "名詞", + "pn": -0.0396859 + }, + { + "surface": "後便", + "readging": "こうびん", + "pos": "名詞", + "pn": -0.0396936 + }, + { + "surface": "球団", + "readging": "きゅうだん", + "pos": "名詞", + "pn": -0.0398194 + }, + { + "surface": "増益", + "readging": "ぞうえき", + "pos": "名詞", + "pn": -0.0398407 + }, + { + "surface": "肩胛骨", + "readging": "けんこうこつ", + "pos": "名詞", + "pn": -0.0399569 + }, + { + "surface": "弥撒曲", + "readging": "ミサきょく", + "pos": "名詞", + "pn": -0.0399983 + }, + { + "surface": "末巻", + "readging": "まっかん", + "pos": "名詞", + "pn": -0.0401797 + }, + { + "surface": "雄蕊", + "readging": "ゆうずい", + "pos": "名詞", + "pn": -0.0402182 + }, + { + "surface": "力一杯", + "readging": "ちからいっぱい", + "pos": "副詞", + "pn": -0.0402572 + }, + { + "surface": "握力", + "readging": "あくりょく", + "pos": "名詞", + "pn": -0.0402572 + }, + { + "surface": "影身", + "readging": "かげみ", + "pos": "名詞", + "pn": -0.0402934 + }, + { + "surface": "脇士", + "readging": "わきじ", + "pos": "名詞", + "pn": -0.0404075 + }, + { + "surface": "うずうず", + "readging": "うずうず", + "pos": "名詞", + "pn": -0.0404081 + }, + { + "surface": "真夏", + "readging": "まなつ", + "pos": "名詞", + "pn": -0.04044 + }, + { + "surface": "家父", + "readging": "かふ", + "pos": "名詞", + "pn": -0.0404763 + }, + { + "surface": "不本意", + "readging": "ふほんい", + "pos": "名詞", + "pn": -0.0405796 + }, + { + "surface": "嬋娟", + "readging": "せんけん", + "pos": "名詞", + "pn": -0.0406101 + }, + { + "surface": "縞馬", + "readging": "しまうま", + "pos": "名詞", + "pn": -0.0407066 + }, + { + "surface": "使い手", + "readging": "つかいて", + "pos": "名詞", + "pn": -0.0407187 + }, + { + "surface": "うだつ", + "readging": "うだつ", + "pos": "名詞", + "pn": -0.0407464 + }, + { + "surface": "知得", + "readging": "ちとく", + "pos": "名詞", + "pn": -0.0409156 + }, + { + "surface": "鎮護", + "readging": "ちんご", + "pos": "名詞", + "pn": -0.0409626 + }, + { + "surface": "振合い", + "readging": "ふりあい", + "pos": "名詞", + "pn": -0.0411464 + }, + { + "surface": "順行", + "readging": "じゅんこう", + "pos": "名詞", + "pn": -0.0412149 + }, + { + "surface": "隠し芸", + "readging": "かくしげい", + "pos": "名詞", + "pn": -0.0412171 + }, + { + "surface": "高率", + "readging": "こうりつ", + "pos": "名詞", + "pn": -0.0412224 + }, + { + "surface": "和製", + "readging": "わせい", + "pos": "名詞", + "pn": -0.0413302 + }, + { + "surface": "薄命", + "readging": "はくめい", + "pos": "名詞", + "pn": -0.0413458 + }, + { + "surface": "にんまり", + "readging": "にんまり", + "pos": "副詞", + "pn": -0.0413582 + }, + { + "surface": "続き合い", + "readging": "つづきあい", + "pos": "名詞", + "pn": -0.0414021 + }, + { + "surface": "文治", + "readging": "ぶんち", + "pos": "名詞", + "pn": -0.0414528 + }, + { + "surface": "前日", + "readging": "ぜんじつ", + "pos": "名詞", + "pn": -0.0415516 + }, + { + "surface": "遊軍", + "readging": "ゆうぐん", + "pos": "名詞", + "pn": -0.041667 + }, + { + "surface": "栄位", + "readging": "えいい", + "pos": "名詞", + "pn": -0.0417001 + }, + { + "surface": "辛党", + "readging": "からとう", + "pos": "名詞", + "pn": -0.0417424 + }, + { + "surface": "バザール", + "readging": "バザール", + "pos": "名詞", + "pn": -0.0418333 + }, + { + "surface": "ハード", + "readging": "ハードウェア", + "pos": "名詞", + "pn": -0.0418377 + }, + { + "surface": "閃く", + "readging": "ひらめく", + "pos": "動詞", + "pn": -0.0418873 + }, + { + "surface": "君国", + "readging": "くんこく", + "pos": "名詞", + "pn": -0.0420296 + }, + { + "surface": "コケットリー", + "readging": "コケットリー", + "pos": "名詞", + "pn": -0.04204 + }, + { + "surface": "与力", + "readging": "よりき", + "pos": "名詞", + "pn": -0.0420496 + }, + { + "surface": "王制", + "readging": "おうせい", + "pos": "名詞", + "pn": -0.0420941 + }, + { + "surface": "既設", + "readging": "きせつ", + "pos": "名詞", + "pn": -0.0421075 + }, + { + "surface": "三竦み", + "readging": "さんすくみ", + "pos": "名詞", + "pn": -0.0421231 + }, + { + "surface": "鎌鼬", + "readging": "かまいたち", + "pos": "名詞", + "pn": -0.0421937 + }, + { + "surface": "金口", + "readging": "こんく", + "pos": "名詞", + "pn": -0.0422655 + }, + { + "surface": "百般", + "readging": "ひゃっぱん", + "pos": "名詞", + "pn": -0.0423114 + }, + { + "surface": "受賞", + "readging": "じゅしょう", + "pos": "名詞", + "pn": -0.0423629 + }, + { + "surface": "経蔵", + "readging": "きょうぞう", + "pos": "名詞", + "pn": -0.0423843 + }, + { + "surface": "長久", + "readging": "ちょうきゅう", + "pos": "名詞", + "pn": -0.0425806 + }, + { + "surface": "説経節", + "readging": "せっきょうぶし", + "pos": "名詞", + "pn": -0.0426356 + }, + { + "surface": "没理想", + "readging": "ぼつりそう", + "pos": "名詞", + "pn": -0.0426538 + }, + { + "surface": "着実", + "readging": "ちゃくじつ", + "pos": "名詞", + "pn": -0.0427265 + }, + { + "surface": "冷房", + "readging": "れいぼう", + "pos": "名詞", + "pn": -0.0427418 + }, + { + "surface": "霊刹", + "readging": "れいさつ", + "pos": "名詞", + "pn": -0.0427454 + }, + { + "surface": "納", + "readging": "おさめ", + "pos": "名詞", + "pn": -0.042746 + }, + { + "surface": "留任", + "readging": "りゅうにん", + "pos": "名詞", + "pn": -0.0427548 + }, + { + "surface": "兵", + "readging": "つわもの", + "pos": "名詞", + "pn": -0.0428023 + }, + { + "surface": "存じ", + "readging": "ぞんじ", + "pos": "名詞", + "pn": -0.042834 + }, + { + "surface": "粳", + "readging": "うるち", + "pos": "名詞", + "pn": -0.0428433 + }, + { + "surface": "盛切り", + "readging": "もりきり", + "pos": "名詞", + "pn": -0.0428448 + }, + { + "surface": "賛否", + "readging": "さんぴ", + "pos": "名詞", + "pn": -0.0428522 + }, + { + "surface": "偶像崇拝", + "readging": "ぐうぞうすうはい", + "pos": "名詞", + "pn": -0.0428996 + }, + { + "surface": "忘却", + "readging": "ぼうきゃく", + "pos": "名詞", + "pn": -0.0429047 + }, + { + "surface": "忘ず", + "readging": "ぼうず", + "pos": "動詞", + "pn": -0.0429047 + }, + { + "surface": "屋内", + "readging": "おくない", + "pos": "名詞", + "pn": -0.0429372 + }, + { + "surface": "凝然", + "readging": "ぎょうぜん", + "pos": "名詞", + "pn": -0.0430178 + }, + { + "surface": "淫雨", + "readging": "いんう", + "pos": "名詞", + "pn": -0.0430291 + }, + { + "surface": "乾煎り", + "readging": "からいり", + "pos": "名詞", + "pn": -0.0431128 + }, + { + "surface": "孤剣", + "readging": "こけん", + "pos": "名詞", + "pn": -0.0431176 + }, + { + "surface": "早晩", + "readging": "そうばん", + "pos": "副詞", + "pn": -0.0431297 + }, + { + "surface": "夜光", + "readging": "やこう", + "pos": "名詞", + "pn": -0.0431378 + }, + { + "surface": "我知らず", + "readging": "われしらず", + "pos": "名詞", + "pn": -0.0431724 + }, + { + "surface": "閉業", + "readging": "へいぎょう", + "pos": "名詞", + "pn": -0.0432155 + }, + { + "surface": "盤根錯節", + "readging": "ばんこんさくせつ", + "pos": "名詞", + "pn": -0.0432751 + }, + { + "surface": "人柱", + "readging": "ひとばしら", + "pos": "名詞", + "pn": -0.0433141 + }, + { + "surface": "億劫", + "readging": "おっくう", + "pos": "名詞", + "pn": -0.0434244 + }, + { + "surface": "終列車", + "readging": "しゅうれっしゃ", + "pos": "名詞", + "pn": -0.0434647 + }, + { + "surface": "元年", + "readging": "がんねん", + "pos": "名詞", + "pn": -0.0434854 + }, + { + "surface": "共済", + "readging": "きょうさい", + "pos": "名詞", + "pn": -0.0434957 + }, + { + "surface": "開眼", + "readging": "かいげん", + "pos": "名詞", + "pn": -0.0435179 + }, + { + "surface": "世界観", + "readging": "せかいかん", + "pos": "名詞", + "pn": -0.0435258 + }, + { + "surface": "拘泥", + "readging": "こうでい", + "pos": "名詞", + "pn": -0.0435323 + }, + { + "surface": "生煮え", + "readging": "なまにえ", + "pos": "名詞", + "pn": -0.0435769 + }, + { + "surface": "黙す", + "readging": "もだす", + "pos": "動詞", + "pn": -0.0436727 + }, + { + "surface": "中庸", + "readging": "ちゅうよう", + "pos": "名詞", + "pn": -0.0437876 + }, + { + "surface": "係累", + "readging": "けいるい", + "pos": "名詞", + "pn": -0.0440237 + }, + { + "surface": "スルタン", + "readging": "スルタン", + "pos": "名詞", + "pn": -0.0440256 + }, + { + "surface": "哀楽", + "readging": "あいらく", + "pos": "名詞", + "pn": -0.0440654 + }, + { + "surface": "新案", + "readging": "しんあん", + "pos": "名詞", + "pn": -0.0440808 + }, + { + "surface": "空馬", + "readging": "からうま", + "pos": "名詞", + "pn": -0.0441362 + }, + { + "surface": "聴視", + "readging": "ちょうし", + "pos": "名詞", + "pn": -0.0443482 + }, + { + "surface": "開化", + "readging": "かいか", + "pos": "名詞", + "pn": -0.0443748 + }, + { + "surface": "学兄", + "readging": "がっけい", + "pos": "名詞", + "pn": -0.0443854 + }, + { + "surface": "元号", + "readging": "げんごう", + "pos": "名詞", + "pn": -0.0444719 + }, + { + "surface": "晴眼", + "readging": "せいがん", + "pos": "名詞", + "pn": -0.0444833 + }, + { + "surface": "同性愛", + "readging": "どうせいあい", + "pos": "名詞", + "pn": -0.044485 + }, + { + "surface": "鮮度", + "readging": "せんど", + "pos": "名詞", + "pn": -0.0445477 + }, + { + "surface": "非望", + "readging": "ひぼう", + "pos": "名詞", + "pn": -0.0446213 + }, + { + "surface": "完成", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.044728 + }, + { + "surface": "純化", + "readging": "じゅんか", + "pos": "名詞", + "pn": -0.0447823 + }, + { + "surface": "助役", + "readging": "じょやく", + "pos": "名詞", + "pn": -0.0448303 + }, + { + "surface": "記名", + "readging": "きめい", + "pos": "名詞", + "pn": -0.0448954 + }, + { + "surface": "不可抗力", + "readging": "ふかこうりょく", + "pos": "名詞", + "pn": -0.04491 + }, + { + "surface": "むり数", + "readging": "むりすう", + "pos": "名詞", + "pn": -0.044964 + }, + { + "surface": "中尉", + "readging": "ちゅうい", + "pos": "名詞", + "pn": -0.0449667 + }, + { + "surface": "汽笛", + "readging": "きてき", + "pos": "名詞", + "pn": -0.0450063 + }, + { + "surface": "下達", + "readging": "かたつ", + "pos": "名詞", + "pn": -0.0450859 + }, + { + "surface": "ハリケーン", + "readging": "ハリケーン", + "pos": "名詞", + "pn": -0.0450882 + }, + { + "surface": "生い先", + "readging": "おいさき", + "pos": "名詞", + "pn": -0.0450925 + }, + { + "surface": "苦楽", + "readging": "くらく", + "pos": "名詞", + "pn": -0.0450958 + }, + { + "surface": "お釈迦様", + "readging": "おしゃかさま", + "pos": "名詞", + "pn": -0.0451049 + }, + { + "surface": "老健", + "readging": "ろうけん", + "pos": "名詞", + "pn": -0.0452059 + }, + { + "surface": "贈名", + "readging": "おくりな", + "pos": "名詞", + "pn": -0.0452536 + }, + { + "surface": "真裏", + "readging": "まうら", + "pos": "名詞", + "pn": -0.0453336 + }, + { + "surface": "取残し", + "readging": "とりのこし", + "pos": "名詞", + "pn": -0.0453679 + }, + { + "surface": "奇計", + "readging": "きけい", + "pos": "名詞", + "pn": -0.0454414 + }, + { + "surface": "人生観", + "readging": "じんせいかん", + "pos": "名詞", + "pn": -0.0455212 + }, + { + "surface": "定論", + "readging": "ていろん", + "pos": "名詞", + "pn": -0.0455525 + }, + { + "surface": "明年", + "readging": "みょうねん", + "pos": "名詞", + "pn": -0.0456188 + }, + { + "surface": "点景", + "readging": "てんけい", + "pos": "名詞", + "pn": -0.045785 + }, + { + "surface": "抜取検査", + "readging": "ぬきとりけんさ", + "pos": "名詞", + "pn": -0.0457927 + }, + { + "surface": "酒宴", + "readging": "しゅえん", + "pos": "名詞", + "pn": -0.0457995 + }, + { + "surface": "茶花", + "readging": "ちゃばな", + "pos": "名詞", + "pn": -0.0458587 + }, + { + "surface": "和国", + "readging": "わこく", + "pos": "名詞", + "pn": -0.0458787 + }, + { + "surface": "理路", + "readging": "りろ", + "pos": "名詞", + "pn": -0.0459333 + }, + { + "surface": "岳", + "readging": "たけ", + "pos": "名詞", + "pn": -0.0459616 + }, + { + "surface": "何と", + "readging": "なんと", + "pos": "副詞", + "pn": -0.0460179 + }, + { + "surface": "南半球", + "readging": "みなみはんきゅう", + "pos": "名詞", + "pn": -0.0460223 + }, + { + "surface": "奉告", + "readging": "ほうこく", + "pos": "名詞", + "pn": -0.046028 + }, + { + "surface": "腹持ち", + "readging": "はらもち", + "pos": "名詞", + "pn": -0.0460863 + }, + { + "surface": "天王山", + "readging": "てんのうざん", + "pos": "名詞", + "pn": -0.0461006 + }, + { + "surface": "空籤", + "readging": "からくじ", + "pos": "名詞", + "pn": -0.0461319 + }, + { + "surface": "目端", + "readging": "めはし", + "pos": "名詞", + "pn": -0.0461733 + }, + { + "surface": "プレーン ソーダ", + "readging": "プレーン ソーダ", + "pos": "名詞", + "pn": -0.0461769 + }, + { + "surface": "水心", + "readging": "みずごころ", + "pos": "名詞", + "pn": -0.0461918 + }, + { + "surface": "忍ばせる", + "readging": "しのばせる", + "pos": "動詞", + "pn": -0.0462968 + }, + { + "surface": "日本間", + "readging": "にほんま", + "pos": "名詞", + "pn": -0.0463001 + }, + { + "surface": "力", + "readging": "ちから", + "pos": "名詞", + "pn": -0.0463054 + }, + { + "surface": "小品", + "readging": "しょうひん", + "pos": "名詞", + "pn": -0.0463136 + }, + { + "surface": "一気呵成", + "readging": "いっきかせい", + "pos": "名詞", + "pn": -0.046331 + }, + { + "surface": "習熟", + "readging": "しゅうじゅく", + "pos": "名詞", + "pn": -0.0463711 + }, + { + "surface": "外因", + "readging": "がいいん", + "pos": "名詞", + "pn": -0.0464164 + }, + { + "surface": "言込める", + "readging": "いいこめる", + "pos": "動詞", + "pn": -0.0464254 + }, + { + "surface": "現時", + "readging": "げんじ", + "pos": "名詞", + "pn": -0.0465346 + }, + { + "surface": "娘", + "readging": "じょう", + "pos": "名詞", + "pn": -0.0465442 + }, + { + "surface": "密宗", + "readging": "みっしゅう", + "pos": "名詞", + "pn": -0.0465788 + }, + { + "surface": "亀の甲", + "readging": "かめのこう", + "pos": "名詞", + "pn": -0.0465976 + }, + { + "surface": "所謂", + "readging": "いわゆる", + "pos": "名詞", + "pn": -0.0467336 + }, + { + "surface": "一双", + "readging": "いっそう", + "pos": "名詞", + "pn": -0.0467791 + }, + { + "surface": "国家公務員", + "readging": "こっかこうむいん", + "pos": "名詞", + "pn": -0.0468326 + }, + { + "surface": "手縫い", + "readging": "てぬい", + "pos": "名詞", + "pn": -0.0468466 + }, + { + "surface": "不生産", + "readging": "ふせいさん", + "pos": "名詞", + "pn": -0.0469427 + }, + { + "surface": "達観", + "readging": "たっかん", + "pos": "名詞", + "pn": -0.0469687 + }, + { + "surface": "雌鳥", + "readging": "めんどり", + "pos": "名詞", + "pn": -0.0469697 + }, + { + "surface": "雑書", + "readging": "ざっしょ", + "pos": "名詞", + "pn": -0.0470026 + }, + { + "surface": "御利生", + "readging": "ごりしょう", + "pos": "名詞", + "pn": -0.0470053 + }, + { + "surface": "付和雷同", + "readging": "ふわらいどう", + "pos": "名詞", + "pn": -0.0470169 + }, + { + "surface": "細事", + "readging": "さいじ", + "pos": "名詞", + "pn": -0.0470535 + }, + { + "surface": "認許", + "readging": "にんきょ", + "pos": "名詞", + "pn": -0.0470595 + }, + { + "surface": "明眸皓歯", + "readging": "めいぼうこうし", + "pos": "名詞", + "pn": -0.0471203 + }, + { + "surface": "邦人", + "readging": "ほうじん", + "pos": "名詞", + "pn": -0.0471297 + }, + { + "surface": "馳駆", + "readging": "ちく", + "pos": "名詞", + "pn": -0.0471831 + }, + { + "surface": "陸路", + "readging": "りくろ", + "pos": "名詞", + "pn": -0.0473316 + }, + { + "surface": "女神", + "readging": "めがみ", + "pos": "名詞", + "pn": -0.047401 + }, + { + "surface": "端尺", + "readging": "はじゃく", + "pos": "名詞", + "pn": -0.0475272 + }, + { + "surface": "黙許", + "readging": "もっきょ", + "pos": "名詞", + "pn": -0.0475858 + }, + { + "surface": "通力", + "readging": "つうりき", + "pos": "名詞", + "pn": -0.0476585 + }, + { + "surface": "両部", + "readging": "りょうぶ", + "pos": "名詞", + "pn": -0.0476884 + }, + { + "surface": "着着", + "readging": "ちゃくちゃく", + "pos": "副詞", + "pn": -0.0476966 + }, + { + "surface": "見聞き", + "readging": "みきき", + "pos": "名詞", + "pn": -0.0478305 + }, + { + "surface": "外苑", + "readging": "がいえん", + "pos": "名詞", + "pn": -0.0478959 + }, + { + "surface": "緑", + "readging": "みどり", + "pos": "名詞", + "pn": -0.0479226 + }, + { + "surface": "加速", + "readging": "かそく", + "pos": "名詞", + "pn": -0.0479579 + }, + { + "surface": "前生", + "readging": "ぜんしょう", + "pos": "名詞", + "pn": -0.0479747 + }, + { + "surface": "天意", + "readging": "てんい", + "pos": "名詞", + "pn": -0.0479801 + }, + { + "surface": "モラール", + "readging": "モラール", + "pos": "名詞", + "pn": -0.0480596 + }, + { + "surface": "生れ", + "readging": "うまれ", + "pos": "名詞", + "pn": -0.0481131 + }, + { + "surface": "巨艦", + "readging": "きょかん", + "pos": "名詞", + "pn": -0.0482131 + }, + { + "surface": "変光星", + "readging": "へんこうせい", + "pos": "名詞", + "pn": -0.0482402 + }, + { + "surface": "辞色", + "readging": "じしょく", + "pos": "名詞", + "pn": -0.0482446 + }, + { + "surface": "欠格", + "readging": "けっかく", + "pos": "名詞", + "pn": -0.0482796 + }, + { + "surface": "奇麗事", + "readging": "きれいごと", + "pos": "名詞", + "pn": -0.0483106 + }, + { + "surface": "水色", + "readging": "すいしょく", + "pos": "名詞", + "pn": -0.0483198 + }, + { + "surface": "軍備", + "readging": "ぐんび", + "pos": "名詞", + "pn": -0.0483291 + }, + { + "surface": "改称", + "readging": "かいしょう", + "pos": "名詞", + "pn": -0.0484152 + }, + { + "surface": "詩壇", + "readging": "しだん", + "pos": "名詞", + "pn": -0.0484923 + }, + { + "surface": "闘魂", + "readging": "とうこん", + "pos": "名詞", + "pn": -0.0485567 + }, + { + "surface": "併存", + "readging": "へいそん", + "pos": "名詞", + "pn": -0.0485939 + }, + { + "surface": "エートス", + "readging": "エートス", + "pos": "名詞", + "pn": -0.048629 + }, + { + "surface": "シナモン", + "readging": "シナモン", + "pos": "名詞", + "pn": -0.0486443 + }, + { + "surface": "きらめかす", + "readging": "きらめかす", + "pos": "動詞", + "pn": -0.04865 + }, + { + "surface": "十八番", + "readging": "じゅうはちばん", + "pos": "名詞", + "pn": -0.048745 + }, + { + "surface": "インチ", + "readging": "インチ", + "pos": "名詞", + "pn": -0.0489674 + }, + { + "surface": "学匠", + "readging": "がくしょう", + "pos": "名詞", + "pn": -0.0489875 + }, + { + "surface": "呪物", + "readging": "じゅぶつ", + "pos": "名詞", + "pn": -0.0489942 + }, + { + "surface": "美貌", + "readging": "びぼう", + "pos": "名詞", + "pn": -0.048996 + }, + { + "surface": "和協", + "readging": "わきょう", + "pos": "名詞", + "pn": -0.049018 + }, + { + "surface": "折節", + "readging": "おりふし", + "pos": "名詞", + "pn": -0.0490513 + }, + { + "surface": "入社", + "readging": "にゅうしゃ", + "pos": "名詞", + "pn": -0.0490877 + }, + { + "surface": "感興", + "readging": "かんきょう", + "pos": "名詞", + "pn": -0.0490895 + }, + { + "surface": "自活", + "readging": "じかつ", + "pos": "名詞", + "pn": -0.0491312 + }, + { + "surface": "撰修", + "readging": "せんしゅう", + "pos": "名詞", + "pn": -0.0492069 + }, + { + "surface": "確立", + "readging": "かくりつ", + "pos": "名詞", + "pn": -0.0492843 + }, + { + "surface": "雌蕊", + "readging": "しずい", + "pos": "名詞", + "pn": -0.0493081 + }, + { + "surface": "クリスマス", + "readging": "クリスマス", + "pos": "名詞", + "pn": -0.0493134 + }, + { + "surface": "狂恋", + "readging": "きょうれん", + "pos": "名詞", + "pn": -0.0493659 + }, + { + "surface": "寒冷前線", + "readging": "かんれいぜんせん", + "pos": "名詞", + "pn": -0.0493667 + }, + { + "surface": "真っさら", + "readging": "まっさら", + "pos": "名詞", + "pn": -0.0494809 + }, + { + "surface": "昇天", + "readging": "しょうてん", + "pos": "名詞", + "pn": -0.0495353 + }, + { + "surface": "音信", + "readging": "おんしん", + "pos": "名詞", + "pn": -0.0495376 + }, + { + "surface": "聖廟", + "readging": "せいびょう", + "pos": "名詞", + "pn": -0.0496274 + }, + { + "surface": "多作", + "readging": "たさく", + "pos": "名詞", + "pn": -0.0496524 + }, + { + "surface": "ぴかりと", + "readging": "ぴかりと", + "pos": "副詞", + "pn": -0.0496765 + }, + { + "surface": "清福", + "readging": "せいふく", + "pos": "名詞", + "pn": -0.049699 + }, + { + "surface": "大祭", + "readging": "たいさい", + "pos": "名詞", + "pn": -0.049719 + }, + { + "surface": "ばたつかせる", + "readging": "ばたつかせる", + "pos": "動詞", + "pn": -0.0497785 + }, + { + "surface": "必携", + "readging": "ひっけい", + "pos": "名詞", + "pn": -0.0498211 + }, + { + "surface": "シニア", + "readging": "シニア", + "pos": "名詞", + "pn": -0.0498906 + }, + { + "surface": "修練", + "readging": "しゅうれん", + "pos": "名詞", + "pn": -0.0499052 + }, + { + "surface": "何の某", + "readging": "なんのなにがし", + "pos": "名詞", + "pn": -0.04993 + }, + { + "surface": "応化", + "readging": "おうか", + "pos": "名詞", + "pn": -0.0502069 + }, + { + "surface": "すってんてん", + "readging": "すってんてん", + "pos": "名詞", + "pn": -0.0502084 + }, + { + "surface": "ブラウス", + "readging": "ブラウス", + "pos": "名詞", + "pn": -0.0502604 + }, + { + "surface": "通院", + "readging": "つういん", + "pos": "名詞", + "pn": -0.0502901 + }, + { + "surface": "格下げ", + "readging": "かくさげ", + "pos": "名詞", + "pn": -0.0503022 + }, + { + "surface": "自学自習", + "readging": "じがくじしゅう", + "pos": "名詞", + "pn": -0.0503074 + }, + { + "surface": "嫡出", + "readging": "ちゃくしゅつ", + "pos": "名詞", + "pn": -0.0503101 + }, + { + "surface": "楽日", + "readging": "らくび", + "pos": "名詞", + "pn": -0.0503696 + }, + { + "surface": "土葬", + "readging": "どそう", + "pos": "名詞", + "pn": -0.050448 + }, + { + "surface": "宿願", + "readging": "しゅくがん", + "pos": "名詞", + "pn": -0.0504509 + }, + { + "surface": "失恋", + "readging": "しつれん", + "pos": "名詞", + "pn": -0.0504911 + }, + { + "surface": "取片付ける", + "readging": "とりかたづける", + "pos": "動詞", + "pn": -0.0505194 + }, + { + "surface": "童歌", + "readging": "わらべうた", + "pos": "名詞", + "pn": -0.0505866 + }, + { + "surface": "孔雀石", + "readging": "くじゃくせき", + "pos": "名詞", + "pn": -0.050647 + }, + { + "surface": "祭主", + "readging": "さいしゅ", + "pos": "名詞", + "pn": -0.0506512 + }, + { + "surface": "暗号", + "readging": "あんごう", + "pos": "名詞", + "pn": -0.0506668 + }, + { + "surface": "世捨人", + "readging": "よすてびと", + "pos": "名詞", + "pn": -0.0506981 + }, + { + "surface": "鮮明", + "readging": "せんめい", + "pos": "名詞", + "pn": -0.0507132 + }, + { + "surface": "休戚", + "readging": "きゅうせき", + "pos": "名詞", + "pn": -0.0507134 + }, + { + "surface": "均整", + "readging": "きんせい", + "pos": "名詞", + "pn": -0.0507919 + }, + { + "surface": "内達", + "readging": "ないたつ", + "pos": "名詞", + "pn": -0.0508706 + }, + { + "surface": "盗作", + "readging": "とうさく", + "pos": "名詞", + "pn": -0.0508796 + }, + { + "surface": "戦塵", + "readging": "せんじん", + "pos": "名詞", + "pn": -0.0508801 + }, + { + "surface": "新体", + "readging": "しんたい", + "pos": "名詞", + "pn": -0.051018 + }, + { + "surface": "起床", + "readging": "きしょう", + "pos": "名詞", + "pn": -0.0510275 + }, + { + "surface": "春季", + "readging": "しゅんき", + "pos": "名詞", + "pn": -0.0511425 + }, + { + "surface": "心月", + "readging": "しんげつ", + "pos": "名詞", + "pn": -0.051168 + }, + { + "surface": "論評", + "readging": "ろんぴょう", + "pos": "名詞", + "pn": -0.05124 + }, + { + "surface": "小筒", + "readging": "こづつ", + "pos": "名詞", + "pn": -0.05135 + }, + { + "surface": "兵長", + "readging": "へいちょう", + "pos": "名詞", + "pn": -0.051448 + }, + { + "surface": "既知", + "readging": "きち", + "pos": "名詞", + "pn": -0.0514675 + }, + { + "surface": "宮人", + "readging": "みやびと", + "pos": "名詞", + "pn": -0.051527 + }, + { + "surface": "遠回し", + "readging": "とおまわし", + "pos": "名詞", + "pn": -0.051558 + }, + { + "surface": "子福者", + "readging": "こぶくしゃ", + "pos": "名詞", + "pn": -0.0516065 + }, + { + "surface": "洋才", + "readging": "ようさい", + "pos": "名詞", + "pn": -0.0516066 + }, + { + "surface": "ジン", + "readging": "ジン", + "pos": "名詞", + "pn": -0.0517003 + }, + { + "surface": "不正直", + "readging": "ふしょうじき", + "pos": "名詞", + "pn": -0.0517036 + }, + { + "surface": "男所帯", + "readging": "おとこじょたい", + "pos": "名詞", + "pn": -0.0517063 + }, + { + "surface": "蛍雪", + "readging": "けいせつ", + "pos": "名詞", + "pn": -0.0517188 + }, + { + "surface": "産地", + "readging": "さんち", + "pos": "名詞", + "pn": -0.0517411 + }, + { + "surface": "兄弟", + "readging": "きょうだい", + "pos": "名詞", + "pn": -0.051749 + }, + { + "surface": "内報", + "readging": "ないほう", + "pos": "名詞", + "pn": -0.0517564 + }, + { + "surface": "沈滞", + "readging": "ちんたい", + "pos": "名詞", + "pn": -0.0517643 + }, + { + "surface": "水天彷彿", + "readging": "すいてんほうふつ", + "pos": "名詞", + "pn": -0.0517744 + }, + { + "surface": "売掛け", + "readging": "うりかけ", + "pos": "名詞", + "pn": -0.0517985 + }, + { + "surface": "具合", + "readging": "ぐわい", + "pos": "名詞", + "pn": -0.0518166 + }, + { + "surface": "雷鳴", + "readging": "らいめい", + "pos": "名詞", + "pn": -0.0518379 + }, + { + "surface": "断交", + "readging": "だんこう", + "pos": "名詞", + "pn": -0.0518615 + }, + { + "surface": "研学", + "readging": "けんがく", + "pos": "名詞", + "pn": -0.0518856 + }, + { + "surface": "朝恩", + "readging": "ちょうおん", + "pos": "名詞", + "pn": -0.0519264 + }, + { + "surface": "多妻", + "readging": "たさい", + "pos": "名詞", + "pn": -0.0519737 + }, + { + "surface": "妻帯", + "readging": "さいたい", + "pos": "名詞", + "pn": -0.0519737 + }, + { + "surface": "拉ぐ", + "readging": "ひしぐ", + "pos": "動詞", + "pn": -0.0520062 + }, + { + "surface": "花見", + "readging": "はなみ", + "pos": "名詞", + "pn": -0.0520308 + }, + { + "surface": "禅学", + "readging": "ぜんがく", + "pos": "名詞", + "pn": -0.0520312 + }, + { + "surface": "見知り越し", + "readging": "みしりごし", + "pos": "名詞", + "pn": -0.0520563 + }, + { + "surface": "座持ち", + "readging": "ざもち", + "pos": "名詞", + "pn": -0.0520712 + }, + { + "surface": "促成", + "readging": "そくせい", + "pos": "名詞", + "pn": -0.0520842 + }, + { + "surface": "存", + "readging": "ぞん", + "pos": "名詞", + "pn": -0.0520889 + }, + { + "surface": "南無阿弥陀仏", + "readging": "なむあみだぶつ", + "pos": "名詞", + "pn": -0.0521142 + }, + { + "surface": "奔湍", + "readging": "ほんたん", + "pos": "名詞", + "pn": -0.0521861 + }, + { + "surface": "三蔵", + "readging": "さんぞう", + "pos": "名詞", + "pn": -0.0522855 + }, + { + "surface": "むしゃくしゃ", + "readging": "むしゃくしゃ", + "pos": "副詞", + "pn": -0.0523011 + }, + { + "surface": "相性", + "readging": "あいしょう", + "pos": "名詞", + "pn": -0.0523244 + }, + { + "surface": "新生面", + "readging": "しんせいめん", + "pos": "名詞", + "pn": -0.0523518 + }, + { + "surface": "格調", + "readging": "かくちょう", + "pos": "名詞", + "pn": -0.0523925 + }, + { + "surface": "生きとし生けるもの", + "readging": "いきとしいけるもの", + "pos": "名詞", + "pn": -0.0524209 + }, + { + "surface": "典故", + "readging": "てんこ", + "pos": "名詞", + "pn": -0.052437 + }, + { + "surface": "米搗き", + "readging": "こめつき", + "pos": "名詞", + "pn": -0.0524516 + }, + { + "surface": "安値", + "readging": "やすね", + "pos": "名詞", + "pn": -0.0526974 + }, + { + "surface": "仙洞", + "readging": "せんとう", + "pos": "名詞", + "pn": -0.0527191 + }, + { + "surface": "選民", + "readging": "せんみん", + "pos": "名詞", + "pn": -0.052742 + }, + { + "surface": "武臣", + "readging": "ぶしん", + "pos": "名詞", + "pn": -0.0527628 + }, + { + "surface": "先天", + "readging": "せんてん", + "pos": "名詞", + "pn": -0.0528795 + }, + { + "surface": "白文", + "readging": "はくぶん", + "pos": "名詞", + "pn": -0.0528913 + }, + { + "surface": "国主", + "readging": "こくしゅ", + "pos": "名詞", + "pn": -0.0529383 + }, + { + "surface": "誠", + "readging": "せい", + "pos": "名詞", + "pn": -0.052955 + }, + { + "surface": "乱視", + "readging": "らんし", + "pos": "名詞", + "pn": -0.0529588 + }, + { + "surface": "ヒューマニティー", + "readging": "ヒューマニティー", + "pos": "名詞", + "pn": -0.0529613 + }, + { + "surface": "造本", + "readging": "ぞうほん", + "pos": "名詞", + "pn": -0.0529636 + }, + { + "surface": "水栽培", + "readging": "みずさいばい", + "pos": "名詞", + "pn": -0.0530143 + }, + { + "surface": "出国", + "readging": "しゅっこく", + "pos": "名詞", + "pn": -0.0530726 + }, + { + "surface": "入会", + "readging": "いりあい", + "pos": "名詞", + "pn": -0.053094 + }, + { + "surface": "量感", + "readging": "りょうかん", + "pos": "名詞", + "pn": -0.053137 + }, + { + "surface": "成文法", + "readging": "せいぶんほう", + "pos": "名詞", + "pn": -0.0531417 + }, + { + "surface": "警視", + "readging": "けいし", + "pos": "名詞", + "pn": -0.0531571 + }, + { + "surface": "迸る", + "readging": "たばしる", + "pos": "動詞", + "pn": -0.0531629 + }, + { + "surface": "旧藩", + "readging": "きゅうはん", + "pos": "名詞", + "pn": -0.0531662 + }, + { + "surface": "衆道", + "readging": "しゅどう", + "pos": "名詞", + "pn": -0.0531803 + }, + { + "surface": "機嫌気褄", + "readging": "きげんきづま", + "pos": "名詞", + "pn": -0.0533097 + }, + { + "surface": "春眠", + "readging": "しゅんみん", + "pos": "名詞", + "pn": -0.0533516 + }, + { + "surface": "新生", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.0534082 + }, + { + "surface": "保守主義", + "readging": "ほしゅしゅぎ", + "pos": "名詞", + "pn": -0.0534502 + }, + { + "surface": "霊験", + "readging": "れいげん", + "pos": "名詞", + "pn": -0.0535721 + }, + { + "surface": "地久節", + "readging": "ちきゅうせつ", + "pos": "名詞", + "pn": -0.0536231 + }, + { + "surface": "是沙汰", + "readging": "これざた", + "pos": "名詞", + "pn": -0.0536285 + }, + { + "surface": "側聞", + "readging": "そくぶん", + "pos": "名詞", + "pn": -0.0536316 + }, + { + "surface": "静聴", + "readging": "せいちょう", + "pos": "名詞", + "pn": -0.0536316 + }, + { + "surface": "謹聴", + "readging": "きんちょう", + "pos": "名詞", + "pn": -0.0536316 + }, + { + "surface": "勢揃い", + "readging": "せいぞろい", + "pos": "名詞", + "pn": -0.0536335 + }, + { + "surface": "唐木", + "readging": "とうぼく", + "pos": "名詞", + "pn": -0.0536339 + }, + { + "surface": "甘酸", + "readging": "かんさん", + "pos": "名詞", + "pn": -0.0536769 + }, + { + "surface": "意力", + "readging": "いりょく", + "pos": "名詞", + "pn": -0.0537493 + }, + { + "surface": "与国", + "readging": "よこく", + "pos": "名詞", + "pn": -0.0538352 + }, + { + "surface": "献辞", + "readging": "けんじ", + "pos": "名詞", + "pn": -0.053845 + }, + { + "surface": "閣員", + "readging": "かくいん", + "pos": "名詞", + "pn": -0.0539329 + }, + { + "surface": "居心地", + "readging": "いごこち", + "pos": "名詞", + "pn": -0.053944 + }, + { + "surface": "実証主義", + "readging": "じっしょうしゅぎ", + "pos": "名詞", + "pn": -0.0539592 + }, + { + "surface": "巨富", + "readging": "きょふ", + "pos": "名詞", + "pn": -0.0539869 + }, + { + "surface": "局外中立", + "readging": "きょくがいちゅうりつ", + "pos": "名詞", + "pn": -0.053989 + }, + { + "surface": "門徒宗", + "readging": "もんとしゅう", + "pos": "名詞", + "pn": -0.0540071 + }, + { + "surface": "実子", + "readging": "じっし", + "pos": "名詞", + "pn": -0.0540289 + }, + { + "surface": "須要", + "readging": "しゅよう", + "pos": "名詞", + "pn": -0.0541649 + }, + { + "surface": "既得権", + "readging": "きとくけん", + "pos": "名詞", + "pn": -0.0541745 + }, + { + "surface": "セール", + "readging": "セール", + "pos": "名詞", + "pn": -0.0542379 + }, + { + "surface": "旬日", + "readging": "じゅんじつ", + "pos": "名詞", + "pn": -0.054257 + }, + { + "surface": "無任所", + "readging": "むにんしょ", + "pos": "名詞", + "pn": -0.0542571 + }, + { + "surface": "綾羅", + "readging": "りょうら", + "pos": "名詞", + "pn": -0.0543452 + }, + { + "surface": "篤学", + "readging": "とくがく", + "pos": "名詞", + "pn": -0.0543834 + }, + { + "surface": "勤学", + "readging": "きんがく", + "pos": "名詞", + "pn": -0.0543834 + }, + { + "surface": "当為", + "readging": "とうい", + "pos": "名詞", + "pn": -0.0544968 + }, + { + "surface": "富貴", + "readging": "ふうき", + "pos": "名詞", + "pn": -0.0544973 + }, + { + "surface": "上戸", + "readging": "じょうご", + "pos": "名詞", + "pn": -0.0545006 + }, + { + "surface": "花房", + "readging": "はなぶさ", + "pos": "名詞", + "pn": -0.054552 + }, + { + "surface": "真先", + "readging": "まっさき", + "pos": "名詞", + "pn": -0.0545729 + }, + { + "surface": "盲者", + "readging": "もうしゃ", + "pos": "名詞", + "pn": -0.0545967 + }, + { + "surface": "尉官", + "readging": "いかん", + "pos": "名詞", + "pn": -0.054598 + }, + { + "surface": "大勇", + "readging": "たいゆう", + "pos": "名詞", + "pn": -0.054624 + }, + { + "surface": "願人", + "readging": "がんにん", + "pos": "名詞", + "pn": -0.0546512 + }, + { + "surface": "旧訳", + "readging": "きゅうやく", + "pos": "名詞", + "pn": -0.0546641 + }, + { + "surface": "次兄", + "readging": "じけい", + "pos": "名詞", + "pn": -0.0547338 + }, + { + "surface": "仲兄", + "readging": "ちゅうけい", + "pos": "名詞", + "pn": -0.0547338 + }, + { + "surface": "硬論", + "readging": "こうろん", + "pos": "名詞", + "pn": -0.0547576 + }, + { + "surface": "リンチ", + "readging": "リンチ", + "pos": "名詞", + "pn": -0.0548659 + }, + { + "surface": "古刀", + "readging": "ことう", + "pos": "名詞", + "pn": -0.0549019 + }, + { + "surface": "照応", + "readging": "しょうおう", + "pos": "名詞", + "pn": -0.0549572 + }, + { + "surface": "外孫", + "readging": "そとまご", + "pos": "名詞", + "pn": -0.0550319 + }, + { + "surface": "不夜城", + "readging": "ふやじょう", + "pos": "名詞", + "pn": -0.055074 + }, + { + "surface": "与奪", + "readging": "よだつ", + "pos": "名詞", + "pn": -0.0550788 + }, + { + "surface": "花電車", + "readging": "はなでんしゃ", + "pos": "名詞", + "pn": -0.0550793 + }, + { + "surface": "文化勲章", + "readging": "ぶんかくんしょう", + "pos": "名詞", + "pn": -0.0550811 + }, + { + "surface": "巨岩", + "readging": "きょがん", + "pos": "名詞", + "pn": -0.0551269 + }, + { + "surface": "ぐにゃぐにゃ", + "readging": "ぐにゃぐにゃ", + "pos": "副詞", + "pn": -0.0551269 + }, + { + "surface": "允許", + "readging": "いんきょ", + "pos": "名詞", + "pn": -0.0551772 + }, + { + "surface": "凝り性", + "readging": "こりしょう", + "pos": "名詞", + "pn": -0.0551799 + }, + { + "surface": "産金", + "readging": "さんきん", + "pos": "名詞", + "pn": -0.0551992 + }, + { + "surface": "新柄", + "readging": "しんがら", + "pos": "名詞", + "pn": -0.0552227 + }, + { + "surface": "先の日", + "readging": "さきのひ", + "pos": "名詞", + "pn": -0.0552459 + }, + { + "surface": "明晰", + "readging": "めいせき", + "pos": "名詞", + "pn": -0.0552565 + }, + { + "surface": "まるばつ", + "readging": "まるばつ", + "pos": "名詞", + "pn": -0.0552888 + }, + { + "surface": "浮上", + "readging": "ふじょう", + "pos": "名詞", + "pn": -0.0553217 + }, + { + "surface": "美技", + "readging": "びぎ", + "pos": "名詞", + "pn": -0.0554102 + }, + { + "surface": "バレンタイン デー", + "readging": "バレンタイン デー", + "pos": "名詞", + "pn": -0.0554161 + }, + { + "surface": "存亡", + "readging": "そんぼう", + "pos": "名詞", + "pn": -0.0554173 + }, + { + "surface": "性合", + "readging": "しょうあい", + "pos": "名詞", + "pn": -0.0554717 + }, + { + "surface": "願行", + "readging": "がんぎょう", + "pos": "名詞", + "pn": -0.0555516 + }, + { + "surface": "助け船", + "readging": "たすけぶね", + "pos": "名詞", + "pn": -0.0555997 + }, + { + "surface": "成否", + "readging": "せいひ", + "pos": "名詞", + "pn": -0.0556938 + }, + { + "surface": "マズルカ", + "readging": "マズルカ", + "pos": "名詞", + "pn": -0.055711 + }, + { + "surface": "全備", + "readging": "ぜんび", + "pos": "名詞", + "pn": -0.0557159 + }, + { + "surface": "無所属", + "readging": "むしょぞく", + "pos": "名詞", + "pn": -0.0558541 + }, + { + "surface": "引導", + "readging": "いんどう", + "pos": "名詞", + "pn": -0.0558928 + }, + { + "surface": "ボディー", + "readging": "ボディービル", + "pos": "名詞", + "pn": -0.0560302 + }, + { + "surface": "後事", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.0560523 + }, + { + "surface": "人品", + "readging": "じんぴん", + "pos": "名詞", + "pn": -0.0560935 + }, + { + "surface": "帰命", + "readging": "きみょう", + "pos": "名詞", + "pn": -0.0561003 + }, + { + "surface": "さり", + "readging": "さり", + "pos": "動詞", + "pn": -0.056115 + }, + { + "surface": "熊公八公", + "readging": "くまこうはちこう", + "pos": "名詞", + "pn": -0.0561408 + }, + { + "surface": "自由結婚", + "readging": "じゆうけっこん", + "pos": "名詞", + "pn": -0.056185 + }, + { + "surface": "万能", + "readging": "まんのう", + "pos": "名詞", + "pn": -0.0561873 + }, + { + "surface": "具申", + "readging": "ぐしん", + "pos": "名詞", + "pn": -0.0562918 + }, + { + "surface": "俗説", + "readging": "ぞくせつ", + "pos": "名詞", + "pn": -0.0563996 + }, + { + "surface": "隆", + "readging": "りゅう", + "pos": "名詞", + "pn": -0.0565845 + }, + { + "surface": "白川夜船", + "readging": "しらかわよふね", + "pos": "名詞", + "pn": -0.0565935 + }, + { + "surface": "玉体", + "readging": "ぎょくたい", + "pos": "名詞", + "pn": -0.0566416 + }, + { + "surface": "人一倍", + "readging": "ひといちばい", + "pos": "副詞", + "pn": -0.0566489 + }, + { + "surface": "無賃", + "readging": "むちん", + "pos": "名詞", + "pn": -0.0566525 + }, + { + "surface": "悲喜", + "readging": "ひき", + "pos": "名詞", + "pn": -0.0566543 + }, + { + "surface": "ハンデ", + "readging": "ハンデ", + "pos": "名詞", + "pn": -0.0566916 + }, + { + "surface": "ぬっと", + "readging": "ぬっと", + "pos": "副詞", + "pn": -0.0567484 + }, + { + "surface": "酒席", + "readging": "しゅせき", + "pos": "名詞", + "pn": -0.0567607 + }, + { + "surface": "無恥", + "readging": "むち", + "pos": "名詞", + "pn": -0.0567951 + }, + { + "surface": "一芸", + "readging": "いちげい", + "pos": "名詞", + "pn": -0.0568091 + }, + { + "surface": "歩測", + "readging": "ほそく", + "pos": "名詞", + "pn": -0.0568194 + }, + { + "surface": "懇談", + "readging": "こんだん", + "pos": "名詞", + "pn": -0.0568434 + }, + { + "surface": "言挙げ", + "readging": "ことあげ", + "pos": "名詞", + "pn": -0.0568495 + }, + { + "surface": "先物", + "readging": "さきもの", + "pos": "名詞", + "pn": -0.0568601 + }, + { + "surface": "内用", + "readging": "ないよう", + "pos": "名詞", + "pn": -0.0569473 + }, + { + "surface": "生繭", + "readging": "なままゆ", + "pos": "名詞", + "pn": -0.0569701 + }, + { + "surface": "一報", + "readging": "いっぽう", + "pos": "名詞", + "pn": -0.0570402 + }, + { + "surface": "カプリチオ", + "readging": "カプリチオ", + "pos": "名詞", + "pn": -0.0570592 + }, + { + "surface": "旬間", + "readging": "じゅんかん", + "pos": "名詞", + "pn": -0.0570852 + }, + { + "surface": "直奏", + "readging": "じきそう", + "pos": "名詞", + "pn": -0.0571031 + }, + { + "surface": "不死鳥", + "readging": "ふしちょう", + "pos": "名詞", + "pn": -0.0571033 + }, + { + "surface": "何時", + "readging": "いつ", + "pos": "名詞", + "pn": -0.057117 + }, + { + "surface": "不眠", + "readging": "ふみん", + "pos": "名詞", + "pn": -0.057133 + }, + { + "surface": "尊家", + "readging": "そんか", + "pos": "名詞", + "pn": -0.057236 + }, + { + "surface": "至高", + "readging": "しこう", + "pos": "名詞", + "pn": -0.057245 + }, + { + "surface": "仙薬", + "readging": "せんやく", + "pos": "名詞", + "pn": -0.0572655 + }, + { + "surface": "修辞", + "readging": "しゅうじ", + "pos": "名詞", + "pn": -0.0573206 + }, + { + "surface": "お宮", + "readging": "おみや", + "pos": "名詞", + "pn": -0.0573293 + }, + { + "surface": "ゆらりと", + "readging": "ゆらりと", + "pos": "副詞", + "pn": -0.0573707 + }, + { + "surface": "天寿", + "readging": "てんじゅ", + "pos": "名詞", + "pn": -0.0573743 + }, + { + "surface": "名状", + "readging": "めいじょう", + "pos": "名詞", + "pn": -0.0574588 + }, + { + "surface": "虚位", + "readging": "きょい", + "pos": "名詞", + "pn": -0.0575874 + }, + { + "surface": "改版", + "readging": "かいはん", + "pos": "名詞", + "pn": -0.0575986 + }, + { + "surface": "受納", + "readging": "じゅのう", + "pos": "名詞", + "pn": -0.0576121 + }, + { + "surface": "受贈", + "readging": "じゅぞう", + "pos": "名詞", + "pn": -0.0576121 + }, + { + "surface": "爵禄", + "readging": "しゃくろく", + "pos": "名詞", + "pn": -0.0576711 + }, + { + "surface": "夜半", + "readging": "よわ", + "pos": "名詞", + "pn": -0.0576818 + }, + { + "surface": "蘆荻", + "readging": "ろてき", + "pos": "名詞", + "pn": -0.0576885 + }, + { + "surface": "いさき", + "readging": "いさき", + "pos": "名詞", + "pn": -0.0576979 + }, + { + "surface": "雑題", + "readging": "ざつだい", + "pos": "名詞", + "pn": -0.0577167 + }, + { + "surface": "美意識", + "readging": "びいしき", + "pos": "名詞", + "pn": -0.0577257 + }, + { + "surface": "著述", + "readging": "ちょじゅつ", + "pos": "名詞", + "pn": -0.0577598 + }, + { + "surface": "種付け", + "readging": "たねつけ", + "pos": "名詞", + "pn": -0.0578525 + }, + { + "surface": "不可知論", + "readging": "ふかちろん", + "pos": "名詞", + "pn": -0.0578676 + }, + { + "surface": "軍縮", + "readging": "ぐんしゅく", + "pos": "名詞", + "pn": -0.0579362 + }, + { + "surface": "小糠", + "readging": "こぬか", + "pos": "名詞", + "pn": -0.058003 + }, + { + "surface": "青嵐", + "readging": "せいらん", + "pos": "名詞", + "pn": -0.0580373 + }, + { + "surface": "虚報", + "readging": "きょほう", + "pos": "名詞", + "pn": -0.0580554 + }, + { + "surface": "隠退蔵", + "readging": "いんたいぞう", + "pos": "名詞", + "pn": -0.0580737 + }, + { + "surface": "百聞", + "readging": "ひゃくぶん", + "pos": "名詞", + "pn": -0.0581066 + }, + { + "surface": "聞知", + "readging": "ぶんち", + "pos": "名詞", + "pn": -0.0581066 + }, + { + "surface": "出頭", + "readging": "しゅっとう", + "pos": "名詞", + "pn": -0.0581985 + }, + { + "surface": "芸術至上主義", + "readging": "げいじゅつしじょうしゅぎ", + "pos": "名詞", + "pn": -0.0582514 + }, + { + "surface": "宮室", + "readging": "きゅうしつ", + "pos": "名詞", + "pn": -0.0582813 + }, + { + "surface": "取捌く", + "readging": "とりさばく", + "pos": "動詞", + "pn": -0.0583631 + }, + { + "surface": "翠巒", + "readging": "すいらん", + "pos": "名詞", + "pn": -0.0584055 + }, + { + "surface": "無冠", + "readging": "むかん", + "pos": "名詞", + "pn": -0.0584357 + }, + { + "surface": "理系", + "readging": "りけい", + "pos": "名詞", + "pn": -0.058487 + }, + { + "surface": "官学", + "readging": "かんがく", + "pos": "名詞", + "pn": -0.0585376 + }, + { + "surface": "矮性", + "readging": "わいせい", + "pos": "名詞", + "pn": -0.0586292 + }, + { + "surface": "丸腰", + "readging": "まるごし", + "pos": "名詞", + "pn": -0.0586743 + }, + { + "surface": "格上げ", + "readging": "かくあげ", + "pos": "名詞", + "pn": -0.0586845 + }, + { + "surface": "徒跣", + "readging": "かちはだし", + "pos": "名詞", + "pn": -0.0587067 + }, + { + "surface": "民情", + "readging": "みんじょう", + "pos": "名詞", + "pn": -0.05872 + }, + { + "surface": "被災", + "readging": "ひさい", + "pos": "名詞", + "pn": -0.0587382 + }, + { + "surface": "詩格", + "readging": "しかく", + "pos": "名詞", + "pn": -0.0587639 + }, + { + "surface": "不覚", + "readging": "ふかく", + "pos": "名詞", + "pn": -0.0587656 + }, + { + "surface": "不動", + "readging": "ふどう", + "pos": "名詞", + "pn": -0.0588248 + }, + { + "surface": "確定", + "readging": "かくてい", + "pos": "名詞", + "pn": -0.0588534 + }, + { + "surface": "新卒", + "readging": "しんそつ", + "pos": "名詞", + "pn": -0.058859 + }, + { + "surface": "痩せ我慢", + "readging": "やせがまん", + "pos": "名詞", + "pn": -0.0588835 + }, + { + "surface": "舎兄", + "readging": "しゃけい", + "pos": "名詞", + "pn": -0.0589049 + }, + { + "surface": "経学", + "readging": "けいがく", + "pos": "名詞", + "pn": -0.0589099 + }, + { + "surface": "例祭", + "readging": "れいさい", + "pos": "名詞", + "pn": -0.058912 + }, + { + "surface": "上方", + "readging": "かみがた", + "pos": "名詞", + "pn": -0.0589446 + }, + { + "surface": "絶世", + "readging": "ぜっせい", + "pos": "名詞", + "pn": -0.0589752 + }, + { + "surface": "左官", + "readging": "しゃかん", + "pos": "名詞", + "pn": -0.059015 + }, + { + "surface": "色男", + "readging": "いろおとこ", + "pos": "名詞", + "pn": -0.0590574 + }, + { + "surface": "受注", + "readging": "じゅちゅう", + "pos": "名詞", + "pn": -0.0590637 + }, + { + "surface": "冷酒", + "readging": "ひやざけ", + "pos": "名詞", + "pn": -0.0590641 + }, + { + "surface": "巨儒", + "readging": "きょじゅ", + "pos": "名詞", + "pn": -0.0590813 + }, + { + "surface": "酒徒", + "readging": "しゅと", + "pos": "名詞", + "pn": -0.0590818 + }, + { + "surface": "檜葉", + "readging": "ひば", + "pos": "名詞", + "pn": -0.0591255 + }, + { + "surface": "スクリュー", + "readging": "スクリュー", + "pos": "名詞", + "pn": -0.0591313 + }, + { + "surface": "現前", + "readging": "げんぜん", + "pos": "名詞", + "pn": -0.0591446 + }, + { + "surface": "旧来", + "readging": "きゅうらい", + "pos": "名詞", + "pn": -0.0592646 + }, + { + "surface": "供覧", + "readging": "きょうらん", + "pos": "名詞", + "pn": -0.0592774 + }, + { + "surface": "群小", + "readging": "ぐんしょう", + "pos": "名詞", + "pn": -0.0592774 + }, + { + "surface": "繽紛", + "readging": "ひんぷん", + "pos": "名詞", + "pn": -0.0592774 + }, + { + "surface": "列藩", + "readging": "れっぱん", + "pos": "名詞", + "pn": -0.0592774 + }, + { + "surface": "冷眼", + "readging": "れいがん", + "pos": "名詞", + "pn": -0.0592995 + }, + { + "surface": "一目散", + "readging": "いちもくさん", + "pos": "名詞", + "pn": -0.0593794 + }, + { + "surface": "藍碧", + "readging": "らんぺき", + "pos": "名詞", + "pn": -0.059421 + }, + { + "surface": "顕要", + "readging": "けんよう", + "pos": "名詞", + "pn": -0.0594254 + }, + { + "surface": "玉章", + "readging": "ぎょくしょう", + "pos": "名詞", + "pn": -0.0594599 + }, + { + "surface": "近体", + "readging": "きんたい", + "pos": "名詞", + "pn": -0.0594678 + }, + { + "surface": "素面", + "readging": "しらふ", + "pos": "名詞", + "pn": -0.0594733 + }, + { + "surface": "論及", + "readging": "ろんきゅう", + "pos": "名詞", + "pn": -0.0595073 + }, + { + "surface": "内圧", + "readging": "ないあつ", + "pos": "名詞", + "pn": -0.0596288 + }, + { + "surface": "想望", + "readging": "そうぼう", + "pos": "名詞", + "pn": -0.0596836 + }, + { + "surface": "綱要", + "readging": "こうよう", + "pos": "名詞", + "pn": -0.0596893 + }, + { + "surface": "何する", + "readging": "なにする", + "pos": "動詞", + "pn": -0.0597366 + }, + { + "surface": "牧神", + "readging": "ぼくしん", + "pos": "名詞", + "pn": -0.0598087 + }, + { + "surface": "手書", + "readging": "しゅしょ", + "pos": "名詞", + "pn": -0.0598378 + }, + { + "surface": "しんみり", + "readging": "しんみり", + "pos": "副詞", + "pn": -0.0599086 + }, + { + "surface": "向う意気", + "readging": "むこういき", + "pos": "名詞", + "pn": -0.0599171 + }, + { + "surface": "作興", + "readging": "さっこう", + "pos": "名詞", + "pn": -0.0599252 + }, + { + "surface": "お開き", + "readging": "おひらき", + "pos": "名詞", + "pn": -0.0599536 + }, + { + "surface": "接辞", + "readging": "せつじ", + "pos": "名詞", + "pn": -0.0599752 + }, + { + "surface": "著聞", + "readging": "ちょぶん", + "pos": "名詞", + "pn": -0.0600198 + }, + { + "surface": "温良", + "readging": "おんりょう", + "pos": "名詞", + "pn": -0.060048 + }, + { + "surface": "閻魔蟋蟀", + "readging": "えんまこおろぎ", + "pos": "名詞", + "pn": -0.0600602 + }, + { + "surface": "翕然", + "readging": "きゅうぜん", + "pos": "名詞", + "pn": -0.0600752 + }, + { + "surface": "先便", + "readging": "せんびん", + "pos": "名詞", + "pn": -0.0600772 + }, + { + "surface": "人件", + "readging": "じんけん", + "pos": "名詞", + "pn": -0.0601166 + }, + { + "surface": "飼鳥", + "readging": "かいどり", + "pos": "名詞", + "pn": -0.0601335 + }, + { + "surface": "受用", + "readging": "じゅよう", + "pos": "名詞", + "pn": -0.0601374 + }, + { + "surface": "尚且つ", + "readging": "なおかつ", + "pos": "副詞", + "pn": -0.0601649 + }, + { + "surface": "雌伏", + "readging": "しふく", + "pos": "名詞", + "pn": -0.0601834 + }, + { + "surface": "人間性", + "readging": "にんげんせい", + "pos": "名詞", + "pn": -0.0601864 + }, + { + "surface": "芳志", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.0601901 + }, + { + "surface": "天朝", + "readging": "てんちょう", + "pos": "名詞", + "pn": -0.0602501 + }, + { + "surface": "年輩", + "readging": "ねんぱい", + "pos": "名詞", + "pn": -0.0602795 + }, + { + "surface": "むつ", + "readging": "むつ", + "pos": "名詞", + "pn": -0.0602823 + }, + { + "surface": "若僧", + "readging": "わかぞう", + "pos": "名詞", + "pn": -0.0602938 + }, + { + "surface": "田紳", + "readging": "でんしん", + "pos": "名詞", + "pn": -0.0603092 + }, + { + "surface": "惟る", + "readging": "おもんみる", + "pos": "動詞", + "pn": -0.0603748 + }, + { + "surface": "思う壺", + "readging": "おもうつぼ", + "pos": "名詞", + "pn": -0.0603748 + }, + { + "surface": "肝要", + "readging": "かんよう", + "pos": "名詞", + "pn": -0.0604451 + }, + { + "surface": "嬌羞", + "readging": "きょうしゅう", + "pos": "名詞", + "pn": -0.060472 + }, + { + "surface": "芳信", + "readging": "ほうしん", + "pos": "名詞", + "pn": -0.0604842 + }, + { + "surface": "中略", + "readging": "ちゅうりゃく", + "pos": "名詞", + "pn": -0.0604978 + }, + { + "surface": "新編", + "readging": "しんぺん", + "pos": "名詞", + "pn": -0.0605045 + }, + { + "surface": "滅法界", + "readging": "めっぽうかい", + "pos": "副詞", + "pn": -0.0605063 + }, + { + "surface": "ラウド スピーカー", + "readging": "ラウド スピーカー", + "pos": "名詞", + "pn": -0.0605106 + }, + { + "surface": "花暦", + "readging": "はなごよみ", + "pos": "名詞", + "pn": -0.060519 + }, + { + "surface": "転住", + "readging": "てんじゅう", + "pos": "名詞", + "pn": -0.0605538 + }, + { + "surface": "当地", + "readging": "とうち", + "pos": "名詞", + "pn": -0.0605538 + }, + { + "surface": "同義", + "readging": "どうぎ", + "pos": "名詞", + "pn": -0.0606049 + }, + { + "surface": "案出", + "readging": "あんしゅつ", + "pos": "名詞", + "pn": -0.0606532 + }, + { + "surface": "酒杜氏", + "readging": "さかとうじ", + "pos": "名詞", + "pn": -0.0606785 + }, + { + "surface": "コサイン", + "readging": "コサイン", + "pos": "名詞", + "pn": -0.0607578 + }, + { + "surface": "宝刀", + "readging": "ほうとう", + "pos": "名詞", + "pn": -0.0607729 + }, + { + "surface": "清鑑", + "readging": "せいかん", + "pos": "名詞", + "pn": -0.0609068 + }, + { + "surface": "要望", + "readging": "ようぼう", + "pos": "名詞", + "pn": -0.0609088 + }, + { + "surface": "活人画", + "readging": "かつじんが", + "pos": "名詞", + "pn": -0.0609433 + }, + { + "surface": "博士号", + "readging": "はくしごう", + "pos": "名詞", + "pn": -0.0609788 + }, + { + "surface": "取回す", + "readging": "とりまわす", + "pos": "動詞", + "pn": -0.0609904 + }, + { + "surface": "利他", + "readging": "りた", + "pos": "名詞", + "pn": -0.0609986 + }, + { + "surface": "求道", + "readging": "きゅうどう", + "pos": "名詞", + "pn": -0.0609994 + }, + { + "surface": "お越し", + "readging": "おこし", + "pos": "名詞", + "pn": -0.0610258 + }, + { + "surface": "当歳", + "readging": "とうさい", + "pos": "名詞", + "pn": -0.0610507 + }, + { + "surface": "拾", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.0610807 + }, + { + "surface": "短躯", + "readging": "たんく", + "pos": "名詞", + "pn": -0.0610845 + }, + { + "surface": "一腹", + "readging": "いっぷく", + "pos": "名詞", + "pn": -0.0610968 + }, + { + "surface": "新郎", + "readging": "しんろう", + "pos": "名詞", + "pn": -0.0611067 + }, + { + "surface": "聖俗", + "readging": "せいぞく", + "pos": "名詞", + "pn": -0.0611548 + }, + { + "surface": "二刀流", + "readging": "にとうりゅう", + "pos": "名詞", + "pn": -0.0611829 + }, + { + "surface": "放伐", + "readging": "ほうばつ", + "pos": "名詞", + "pn": -0.0612128 + }, + { + "surface": "出兵", + "readging": "しゅっぺい", + "pos": "名詞", + "pn": -0.0612478 + }, + { + "surface": "トレード", + "readging": "トレード", + "pos": "名詞", + "pn": -0.0612572 + }, + { + "surface": "相当", + "readging": "そうとう", + "pos": "名詞", + "pn": -0.0613328 + }, + { + "surface": "不老", + "readging": "ふろう", + "pos": "名詞", + "pn": -0.0614573 + }, + { + "surface": "宝物", + "readging": "ほうもつ", + "pos": "名詞", + "pn": -0.0614681 + }, + { + "surface": "摩訶不思議", + "readging": "まかふしぎ", + "pos": "名詞", + "pn": -0.0614723 + }, + { + "surface": "不凍港", + "readging": "ふとうこう", + "pos": "名詞", + "pn": -0.0614841 + }, + { + "surface": "長文", + "readging": "ちょうぶん", + "pos": "名詞", + "pn": -0.0615508 + }, + { + "surface": "ホリドール", + "readging": "ホリドール", + "pos": "名詞", + "pn": -0.0615989 + }, + { + "surface": "飲干す", + "readging": "のみほす", + "pos": "動詞", + "pn": -0.0616212 + }, + { + "surface": "夫子", + "readging": "ふうし", + "pos": "名詞", + "pn": -0.0616391 + }, + { + "surface": "反哺", + "readging": "はんぽ", + "pos": "名詞", + "pn": -0.0616695 + }, + { + "surface": "再訂", + "readging": "さいてい", + "pos": "名詞", + "pn": -0.0617842 + }, + { + "surface": "移り気", + "readging": "うつりぎ", + "pos": "名詞", + "pn": -0.0618986 + }, + { + "surface": "複本位", + "readging": "ふくほんい", + "pos": "名詞", + "pn": -0.061942 + }, + { + "surface": "一段", + "readging": "いちだん", + "pos": "名詞", + "pn": -0.0619481 + }, + { + "surface": "海事", + "readging": "かいじ", + "pos": "名詞", + "pn": -0.0619575 + }, + { + "surface": "待付ける", + "readging": "まちつける", + "pos": "動詞", + "pn": -0.0619907 + }, + { + "surface": "定説", + "readging": "ていせつ", + "pos": "名詞", + "pn": -0.062024 + }, + { + "surface": "往日", + "readging": "おうじつ", + "pos": "名詞", + "pn": -0.0620296 + }, + { + "surface": "亭亭", + "readging": "ていてい", + "pos": "名詞", + "pn": -0.0620399 + }, + { + "surface": "域内", + "readging": "いきない", + "pos": "名詞", + "pn": -0.0620552 + }, + { + "surface": "護国", + "readging": "ごこく", + "pos": "名詞", + "pn": -0.0620639 + }, + { + "surface": "水声", + "readging": "すいせい", + "pos": "名詞", + "pn": -0.0620798 + }, + { + "surface": "働き盛り", + "readging": "はたらきざかり", + "pos": "名詞", + "pn": -0.0621008 + }, + { + "surface": "顕示", + "readging": "けんじ", + "pos": "名詞", + "pn": -0.0621753 + }, + { + "surface": "辻褄", + "readging": "つじつま", + "pos": "名詞", + "pn": -0.0623839 + }, + { + "surface": "餌付く", + "readging": "えづく", + "pos": "動詞", + "pn": -0.062446 + }, + { + "surface": "蓮歩", + "readging": "れんぽ", + "pos": "名詞", + "pn": -0.0624631 + }, + { + "surface": "決め所", + "readging": "きめどころ", + "pos": "名詞", + "pn": -0.0624729 + }, + { + "surface": "自著", + "readging": "じちょ", + "pos": "名詞", + "pn": -0.0625232 + }, + { + "surface": "迎春", + "readging": "げいしゅん", + "pos": "名詞", + "pn": -0.0625706 + }, + { + "surface": "単利", + "readging": "たんり", + "pos": "名詞", + "pn": -0.0625878 + }, + { + "surface": "足継ぎ", + "readging": "あしつぎ", + "pos": "名詞", + "pn": -0.0626163 + }, + { + "surface": "治者", + "readging": "ちしゃ", + "pos": "名詞", + "pn": -0.0626508 + }, + { + "surface": "胆力", + "readging": "たんりょく", + "pos": "名詞", + "pn": -0.0627373 + }, + { + "surface": "力行", + "readging": "りっこう", + "pos": "名詞", + "pn": -0.0628458 + }, + { + "surface": "叡聞", + "readging": "えいぶん", + "pos": "名詞", + "pn": -0.0628699 + }, + { + "surface": "見慣れる", + "readging": "みなれる", + "pos": "動詞", + "pn": -0.0628705 + }, + { + "surface": "達", + "readging": "たつ", + "pos": "名詞", + "pn": -0.0628878 + }, + { + "surface": "手漉き", + "readging": "てすき", + "pos": "名詞", + "pn": -0.0629099 + }, + { + "surface": "下仕事", + "readging": "したしごと", + "pos": "名詞", + "pn": -0.0629225 + }, + { + "surface": "デバッグ", + "readging": "デバッグ", + "pos": "名詞", + "pn": -0.0629281 + }, + { + "surface": "抑制", + "readging": "よくせい", + "pos": "名詞", + "pn": -0.0629357 + }, + { + "surface": "飛渡る", + "readging": "とびわたる", + "pos": "動詞", + "pn": -0.0629823 + }, + { + "surface": "詩興", + "readging": "しきょう", + "pos": "名詞", + "pn": -0.062992 + }, + { + "surface": "益友", + "readging": "えきゆう", + "pos": "名詞", + "pn": -0.0630579 + }, + { + "surface": "稚気", + "readging": "ちき", + "pos": "名詞", + "pn": -0.0630645 + }, + { + "surface": "松柏", + "readging": "しょうはく", + "pos": "名詞", + "pn": -0.063071 + }, + { + "surface": "リファイン", + "readging": "リファイン", + "pos": "名詞", + "pn": -0.0631656 + }, + { + "surface": "守護神", + "readging": "しゅごじん", + "pos": "名詞", + "pn": -0.0631691 + }, + { + "surface": "玉石", + "readging": "ぎょくせき", + "pos": "名詞", + "pn": -0.0631826 + }, + { + "surface": "満株", + "readging": "まんかぶ", + "pos": "名詞", + "pn": -0.0632377 + }, + { + "surface": "愚母", + "readging": "ぐぼ", + "pos": "名詞", + "pn": -0.0632757 + }, + { + "surface": "旧址", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.0632827 + }, + { + "surface": "町道場", + "readging": "まちどうじょう", + "pos": "名詞", + "pn": -0.0633125 + }, + { + "surface": "曳光弾", + "readging": "えいこうだん", + "pos": "名詞", + "pn": -0.0633231 + }, + { + "surface": "詩巻", + "readging": "しかん", + "pos": "名詞", + "pn": -0.0633953 + }, + { + "surface": "蔵匿", + "readging": "ぞうとく", + "pos": "名詞", + "pn": -0.063485 + }, + { + "surface": "大君", + "readging": "おおきみ", + "pos": "名詞", + "pn": -0.0635985 + }, + { + "surface": "矢先", + "readging": "やさき", + "pos": "名詞", + "pn": -0.0636335 + }, + { + "surface": "私有", + "readging": "しゆう", + "pos": "名詞", + "pn": -0.0636557 + }, + { + "surface": "訳書", + "readging": "やくしょ", + "pos": "名詞", + "pn": -0.0636696 + }, + { + "surface": "訳本", + "readging": "やくほん", + "pos": "名詞", + "pn": -0.0636696 + }, + { + "surface": "色恋", + "readging": "いろこい", + "pos": "名詞", + "pn": -0.0636746 + }, + { + "surface": "一本勝負", + "readging": "いっぽんしょうぶ", + "pos": "名詞", + "pn": -0.0636754 + }, + { + "surface": "権衡", + "readging": "けんこう", + "pos": "名詞", + "pn": -0.0637167 + }, + { + "surface": "陸行", + "readging": "りっこう", + "pos": "名詞", + "pn": -0.063774 + }, + { + "surface": "謹話", + "readging": "きんわ", + "pos": "名詞", + "pn": -0.0638378 + }, + { + "surface": "具眼", + "readging": "ぐがん", + "pos": "名詞", + "pn": -0.0638399 + }, + { + "surface": "魅力", + "readging": "みりょく", + "pos": "名詞", + "pn": -0.0638471 + }, + { + "surface": "マイナー", + "readging": "マイナー", + "pos": "名詞", + "pn": -0.0638579 + }, + { + "surface": "小槌", + "readging": "こづち", + "pos": "名詞", + "pn": -0.0638849 + }, + { + "surface": "類例", + "readging": "るいれい", + "pos": "名詞", + "pn": -0.0638871 + }, + { + "surface": "私文書", + "readging": "しぶんしょ", + "pos": "名詞", + "pn": -0.063911 + }, + { + "surface": "寡黙", + "readging": "かもく", + "pos": "名詞", + "pn": -0.0639183 + }, + { + "surface": "老臣", + "readging": "ろうしん", + "pos": "名詞", + "pn": -0.0639199 + }, + { + "surface": "頭数", + "readging": "あたまかず", + "pos": "名詞", + "pn": -0.0639694 + }, + { + "surface": "新手", + "readging": "あらて", + "pos": "名詞", + "pn": -0.0639853 + }, + { + "surface": "端役", + "readging": "はやく", + "pos": "名詞", + "pn": -0.0640528 + }, + { + "surface": "開示", + "readging": "かいじ", + "pos": "名詞", + "pn": -0.0641028 + }, + { + "surface": "主砲", + "readging": "しゅほう", + "pos": "名詞", + "pn": -0.0641503 + }, + { + "surface": "打倒", + "readging": "だとう", + "pos": "名詞", + "pn": -0.0641729 + }, + { + "surface": "決裂", + "readging": "けつれつ", + "pos": "名詞", + "pn": -0.0641769 + }, + { + "surface": "角とう", + "readging": "かくとう", + "pos": "名詞", + "pn": -0.0642207 + }, + { + "surface": "てくてく", + "readging": "てくてく", + "pos": "副詞", + "pn": -0.0642443 + }, + { + "surface": "師友", + "readging": "しゆう", + "pos": "名詞", + "pn": -0.0642748 + }, + { + "surface": "出荷", + "readging": "しゅっか", + "pos": "名詞", + "pn": -0.0642851 + }, + { + "surface": "新宅", + "readging": "しんたく", + "pos": "名詞", + "pn": -0.064327 + }, + { + "surface": "詩心", + "readging": "ししん", + "pos": "名詞", + "pn": -0.0643763 + }, + { + "surface": "斉一", + "readging": "せいいつ", + "pos": "名詞", + "pn": -0.0643901 + }, + { + "surface": "ブロンド", + "readging": "ブロンド", + "pos": "名詞", + "pn": -0.0644149 + }, + { + "surface": "涯分", + "readging": "がいぶん", + "pos": "名詞", + "pn": -0.064433 + }, + { + "surface": "終夜", + "readging": "しゅうや", + "pos": "名詞", + "pn": -0.0644475 + }, + { + "surface": "撥ね除ける", + "readging": "はねのける", + "pos": "動詞", + "pn": -0.0644618 + }, + { + "surface": "旬余", + "readging": "じゅんよ", + "pos": "名詞", + "pn": -0.0644755 + }, + { + "surface": "思量", + "readging": "しりょう", + "pos": "名詞", + "pn": -0.0644879 + }, + { + "surface": "義兄", + "readging": "ぎけい", + "pos": "名詞", + "pn": -0.0645451 + }, + { + "surface": "実否", + "readging": "じっぴ", + "pos": "名詞", + "pn": -0.0645707 + }, + { + "surface": "仁者", + "readging": "じんしゃ", + "pos": "名詞", + "pn": -0.0646382 + }, + { + "surface": "引抜く", + "readging": "ひきぬく", + "pos": "動詞", + "pn": -0.0646494 + }, + { + "surface": "道順", + "readging": "みちじゅん", + "pos": "名詞", + "pn": -0.0646664 + }, + { + "surface": "実在", + "readging": "じつざい", + "pos": "名詞", + "pn": -0.0647179 + }, + { + "surface": "支線", + "readging": "しせん", + "pos": "名詞", + "pn": -0.0647403 + }, + { + "surface": "手動", + "readging": "しゅどう", + "pos": "名詞", + "pn": -0.0647481 + }, + { + "surface": "無明", + "readging": "むみょう", + "pos": "名詞", + "pn": -0.0648407 + }, + { + "surface": "人国記", + "readging": "じんこくき", + "pos": "名詞", + "pn": -0.0648578 + }, + { + "surface": "軍属", + "readging": "ぐんぞく", + "pos": "名詞", + "pn": -0.0648687 + }, + { + "surface": "日限", + "readging": "にちげん", + "pos": "名詞", + "pn": -0.0648859 + }, + { + "surface": "色道", + "readging": "しきどう", + "pos": "名詞", + "pn": -0.0649021 + }, + { + "surface": "競争試験", + "readging": "きょうそうしけん", + "pos": "名詞", + "pn": -0.0649125 + }, + { + "surface": "刷毛序", + "readging": "はけついで", + "pos": "名詞", + "pn": -0.0649157 + }, + { + "surface": "老来", + "readging": "ろうらい", + "pos": "副詞", + "pn": -0.0649192 + }, + { + "surface": "老輩", + "readging": "ろうはい", + "pos": "名詞", + "pn": -0.0649192 + }, + { + "surface": "合縁奇縁", + "readging": "あいえんきえん", + "pos": "名詞", + "pn": -0.0649467 + }, + { + "surface": "仏子", + "readging": "ぶっし", + "pos": "名詞", + "pn": -0.0649575 + }, + { + "surface": "黙認", + "readging": "もくにん", + "pos": "名詞", + "pn": -0.0649943 + }, + { + "surface": "朝立ち", + "readging": "あさだち", + "pos": "名詞", + "pn": -0.065044 + }, + { + "surface": "詩語", + "readging": "しご", + "pos": "名詞", + "pn": -0.0650524 + }, + { + "surface": "顕現", + "readging": "けんげん", + "pos": "名詞", + "pn": -0.0650726 + }, + { + "surface": "況や", + "readging": "いわんや", + "pos": "副詞", + "pn": -0.0650876 + }, + { + "surface": "因果応報", + "readging": "いんがおうほう", + "pos": "名詞", + "pn": -0.0650932 + }, + { + "surface": "ずるずる", + "readging": "ずるずるべったり", + "pos": "名詞", + "pn": -0.0651094 + }, + { + "surface": "男", + "readging": "お", + "pos": "名詞", + "pn": -0.0651181 + }, + { + "surface": "盲亀", + "readging": "もうき", + "pos": "名詞", + "pn": -0.0651201 + }, + { + "surface": "蒸鮨", + "readging": "むしずし", + "pos": "名詞", + "pn": -0.0651455 + }, + { + "surface": "初学び", + "readging": "ういまなび", + "pos": "名詞", + "pn": -0.0651654 + }, + { + "surface": "俗名", + "readging": "ぞくめい", + "pos": "名詞", + "pn": -0.0652504 + }, + { + "surface": "持国天", + "readging": "じこくてん", + "pos": "名詞", + "pn": -0.0652736 + }, + { + "surface": "皆伝", + "readging": "かいでん", + "pos": "名詞", + "pn": -0.065317 + }, + { + "surface": "おふくろ", + "readging": "おふくろ", + "pos": "名詞", + "pn": -0.0653248 + }, + { + "surface": "考妣", + "readging": "こうひ", + "pos": "名詞", + "pn": -0.0653248 + }, + { + "surface": "教会堂", + "readging": "きょうかいどう", + "pos": "名詞", + "pn": -0.0653398 + }, + { + "surface": "付け値", + "readging": "つけね", + "pos": "名詞", + "pn": -0.065343 + }, + { + "surface": "甲論乙駁", + "readging": "こうろんおつばく", + "pos": "名詞", + "pn": -0.0654594 + }, + { + "surface": "一姫二太郎", + "readging": "いちひめにたろう", + "pos": "名詞", + "pn": -0.0654673 + }, + { + "surface": "尊厳死", + "readging": "そんげんし", + "pos": "名詞", + "pn": -0.0655158 + }, + { + "surface": "今上", + "readging": "きんじょう", + "pos": "名詞", + "pn": -0.0655982 + }, + { + "surface": "離船", + "readging": "りせん", + "pos": "名詞", + "pn": -0.0656171 + }, + { + "surface": "習合", + "readging": "しゅうごう", + "pos": "名詞", + "pn": -0.0656186 + }, + { + "surface": "はっしと", + "readging": "はっしと", + "pos": "副詞", + "pn": -0.0656996 + }, + { + "surface": "安売り", + "readging": "やすうり", + "pos": "名詞", + "pn": -0.0657581 + }, + { + "surface": "魔女", + "readging": "まじょ", + "pos": "名詞", + "pn": -0.0657756 + }, + { + "surface": "本姓", + "readging": "ほんせい", + "pos": "名詞", + "pn": -0.0658239 + }, + { + "surface": "撰文", + "readging": "せんぶん", + "pos": "名詞", + "pn": -0.0658871 + }, + { + "surface": "行文", + "readging": "こうぶん", + "pos": "名詞", + "pn": -0.0658871 + }, + { + "surface": "含み笑い", + "readging": "ふくみわらい", + "pos": "名詞", + "pn": -0.0658897 + }, + { + "surface": "貞節", + "readging": "ていせつ", + "pos": "名詞", + "pn": -0.065899 + }, + { + "surface": "迅雷", + "readging": "じんらい", + "pos": "名詞", + "pn": -0.0659115 + }, + { + "surface": "元帥", + "readging": "げんすい", + "pos": "名詞", + "pn": -0.0661575 + }, + { + "surface": "免責", + "readging": "めんせき", + "pos": "名詞", + "pn": -0.0661647 + }, + { + "surface": "社用", + "readging": "しゃよう", + "pos": "名詞", + "pn": -0.0661733 + }, + { + "surface": "八当り", + "readging": "やつあたり", + "pos": "名詞", + "pn": -0.066243 + }, + { + "surface": "斯界", + "readging": "しかい", + "pos": "名詞", + "pn": -0.0662688 + }, + { + "surface": "我田引水", + "readging": "がでんいんすい", + "pos": "名詞", + "pn": -0.0663079 + }, + { + "surface": "市部", + "readging": "しぶ", + "pos": "名詞", + "pn": -0.0663236 + }, + { + "surface": "仲夏", + "readging": "ちゅうか", + "pos": "名詞", + "pn": -0.0663998 + }, + { + "surface": "人寿", + "readging": "じんじゅ", + "pos": "名詞", + "pn": -0.0664219 + }, + { + "surface": "押し立てる", + "readging": "おしたてる", + "pos": "動詞", + "pn": -0.0664399 + }, + { + "surface": "朝家", + "readging": "ちょうか", + "pos": "名詞", + "pn": -0.0664477 + }, + { + "surface": "造物", + "readging": "ぞうぶつ", + "pos": "名詞", + "pn": -0.066485 + }, + { + "surface": "薪", + "readging": "まき", + "pos": "名詞", + "pn": -0.0664979 + }, + { + "surface": "近因", + "readging": "きんいん", + "pos": "名詞", + "pn": -0.0665152 + }, + { + "surface": "艶福", + "readging": "えんぷく", + "pos": "名詞", + "pn": -0.0665616 + }, + { + "surface": "はとこ", + "readging": "はとこ", + "pos": "名詞", + "pn": -0.0665652 + }, + { + "surface": "短文", + "readging": "たんぶん", + "pos": "名詞", + "pn": -0.0666058 + }, + { + "surface": "ちえ", + "readging": "ちえづく", + "pos": "動詞", + "pn": -0.0666542 + }, + { + "surface": "凝立", + "readging": "ぎょうりつ", + "pos": "名詞", + "pn": -0.0666554 + }, + { + "surface": "合う", + "readging": "あう", + "pos": "動詞", + "pn": -0.0667402 + }, + { + "surface": "ベテラン", + "readging": "ベテラン", + "pos": "名詞", + "pn": -0.0668354 + }, + { + "surface": "艶書", + "readging": "えんしょ", + "pos": "名詞", + "pn": -0.0669067 + }, + { + "surface": "支持", + "readging": "しじ", + "pos": "名詞", + "pn": -0.0669118 + }, + { + "surface": "通し馬", + "readging": "とおしうま", + "pos": "名詞", + "pn": -0.0669228 + }, + { + "surface": "面識", + "readging": "めんしき", + "pos": "名詞", + "pn": -0.0669594 + }, + { + "surface": "思慕", + "readging": "しぼ", + "pos": "名詞", + "pn": -0.0669716 + }, + { + "surface": "満額", + "readging": "まんがく", + "pos": "名詞", + "pn": -0.0670746 + }, + { + "surface": "絶対者", + "readging": "ぜったいしゃ", + "pos": "名詞", + "pn": -0.0670817 + }, + { + "surface": "出精", + "readging": "しゅっせい", + "pos": "名詞", + "pn": -0.0671289 + }, + { + "surface": "親御", + "readging": "おやご", + "pos": "名詞", + "pn": -0.0671467 + }, + { + "surface": "総桐", + "readging": "そうぎり", + "pos": "名詞", + "pn": -0.0671583 + }, + { + "surface": "日向", + "readging": "ひなた", + "pos": "名詞", + "pn": -0.0671585 + }, + { + "surface": "賑恤", + "readging": "しんじゅつ", + "pos": "名詞", + "pn": -0.0673013 + }, + { + "surface": "関東", + "readging": "かんとう", + "pos": "名詞", + "pn": -0.0673173 + }, + { + "surface": "尽力", + "readging": "じんりょく", + "pos": "名詞", + "pn": -0.0673652 + }, + { + "surface": "立候補", + "readging": "りっこうほ", + "pos": "名詞", + "pn": -0.0673751 + }, + { + "surface": "鳥瞰", + "readging": "ちょうかん", + "pos": "名詞", + "pn": -0.0673795 + }, + { + "surface": "客員", + "readging": "きゃくいん", + "pos": "名詞", + "pn": -0.0674571 + }, + { + "surface": "黙殺", + "readging": "もくさつ", + "pos": "名詞", + "pn": -0.0674657 + }, + { + "surface": "願わしい", + "readging": "ねがわしい", + "pos": "形容詞", + "pn": -0.0675124 + }, + { + "surface": "物する", + "readging": "ものする", + "pos": "動詞", + "pn": -0.0675286 + }, + { + "surface": "異数", + "readging": "いすう", + "pos": "名詞", + "pn": -0.0675511 + }, + { + "surface": "助演", + "readging": "じょえん", + "pos": "名詞", + "pn": -0.0675667 + }, + { + "surface": "掛持ち", + "readging": "かけもち", + "pos": "名詞", + "pn": -0.0676046 + }, + { + "surface": "蘭書", + "readging": "らんしょ", + "pos": "名詞", + "pn": -0.0676276 + }, + { + "surface": "焚書", + "readging": "ふんしょ", + "pos": "名詞", + "pn": -0.0676276 + }, + { + "surface": "曝書", + "readging": "ばくしょ", + "pos": "名詞", + "pn": -0.0676276 + }, + { + "surface": "呈示", + "readging": "ていじ", + "pos": "名詞", + "pn": -0.067634 + }, + { + "surface": "ぴかぴか", + "readging": "ぴかぴか", + "pos": "副詞", + "pn": -0.0676345 + }, + { + "surface": "戦機", + "readging": "せんき", + "pos": "名詞", + "pn": -0.0676989 + }, + { + "surface": "ノクターン", + "readging": "ノクターン", + "pos": "名詞", + "pn": -0.0677371 + }, + { + "surface": "野放し", + "readging": "のばなし", + "pos": "名詞", + "pn": -0.0677934 + }, + { + "surface": "痛棒", + "readging": "つうぼう", + "pos": "名詞", + "pn": -0.0678077 + }, + { + "surface": "世の習い", + "readging": "よのならい", + "pos": "名詞", + "pn": -0.0678526 + }, + { + "surface": "国原", + "readging": "くにはら", + "pos": "名詞", + "pn": -0.0678754 + }, + { + "surface": "推進", + "readging": "すいしん", + "pos": "名詞", + "pn": -0.0678829 + }, + { + "surface": "見通す", + "readging": "みとおす", + "pos": "動詞", + "pn": -0.0679116 + }, + { + "surface": "異体", + "readging": "いたい", + "pos": "名詞", + "pn": -0.067973 + }, + { + "surface": "巨資", + "readging": "きょし", + "pos": "名詞", + "pn": -0.0679758 + }, + { + "surface": "南下", + "readging": "なんか", + "pos": "名詞", + "pn": -0.0680051 + }, + { + "surface": "連打", + "readging": "れんだ", + "pos": "名詞", + "pn": -0.068075 + }, + { + "surface": "西漸", + "readging": "せいぜん", + "pos": "名詞", + "pn": -0.0681197 + }, + { + "surface": "愛嬢", + "readging": "あいじょう", + "pos": "名詞", + "pn": -0.0681424 + }, + { + "surface": "南無妙法蓮華経", + "readging": "なむみょうほうれんげきょう", + "pos": "名詞", + "pn": -0.0681653 + }, + { + "surface": "新年", + "readging": "しんねん", + "pos": "名詞", + "pn": -0.0681957 + }, + { + "surface": "西諺", + "readging": "せいげん", + "pos": "名詞", + "pn": -0.0682548 + }, + { + "surface": "馬主", + "readging": "ばしゅ", + "pos": "名詞", + "pn": -0.0682644 + }, + { + "surface": "信賞必罰", + "readging": "しんしょうひつばつ", + "pos": "名詞", + "pn": -0.0682784 + }, + { + "surface": "教書", + "readging": "きょうしょ", + "pos": "名詞", + "pn": -0.0682795 + }, + { + "surface": "人災", + "readging": "じんさい", + "pos": "名詞", + "pn": -0.0682799 + }, + { + "surface": "先着", + "readging": "せんちゃく", + "pos": "名詞", + "pn": -0.0682926 + }, + { + "surface": "先取", + "readging": "せんしゅ", + "pos": "名詞", + "pn": -0.0682926 + }, + { + "surface": "下職", + "readging": "したしょく", + "pos": "名詞", + "pn": -0.0683044 + }, + { + "surface": "人心地", + "readging": "ひとごこち", + "pos": "名詞", + "pn": -0.0684096 + }, + { + "surface": "筆舌", + "readging": "ひつぜつ", + "pos": "名詞", + "pn": -0.0684242 + }, + { + "surface": "星明り", + "readging": "ほしあかり", + "pos": "名詞", + "pn": -0.0684309 + }, + { + "surface": "聖寿", + "readging": "せいじゅ", + "pos": "名詞", + "pn": -0.0684603 + }, + { + "surface": "無学文盲", + "readging": "むがくもんもう", + "pos": "名詞", + "pn": -0.0684849 + }, + { + "surface": "骨身", + "readging": "ほねみ", + "pos": "名詞", + "pn": -0.0685026 + }, + { + "surface": "思す", + "readging": "おぼす", + "pos": "動詞", + "pn": -0.0685292 + }, + { + "surface": "一等星", + "readging": "いっとうせい", + "pos": "名詞", + "pn": -0.0685463 + }, + { + "surface": "本職", + "readging": "ほんしょく", + "pos": "名詞", + "pn": -0.0685501 + }, + { + "surface": "天人", + "readging": "てんじん", + "pos": "名詞", + "pn": -0.0685507 + }, + { + "surface": "二院", + "readging": "にいん", + "pos": "名詞", + "pn": -0.0685946 + }, + { + "surface": "霊草", + "readging": "れいそう", + "pos": "名詞", + "pn": -0.0686447 + }, + { + "surface": "短調", + "readging": "たんちょう", + "pos": "名詞", + "pn": -0.0686767 + }, + { + "surface": "育種", + "readging": "いくしゅ", + "pos": "名詞", + "pn": -0.0686993 + }, + { + "surface": "代置", + "readging": "だいち", + "pos": "名詞", + "pn": -0.0687927 + }, + { + "surface": "尽瘁", + "readging": "じんすい", + "pos": "名詞", + "pn": -0.0688164 + }, + { + "surface": "武技", + "readging": "ぶぎ", + "pos": "名詞", + "pn": -0.0688224 + }, + { + "surface": "新譜", + "readging": "しんぷ", + "pos": "名詞", + "pn": -0.0688628 + }, + { + "surface": "唯名論", + "readging": "ゆいめいろん", + "pos": "名詞", + "pn": -0.0688969 + }, + { + "surface": "操舵", + "readging": "そうだ", + "pos": "名詞", + "pn": -0.0689325 + }, + { + "surface": "異相", + "readging": "いそう", + "pos": "名詞", + "pn": -0.0689435 + }, + { + "surface": "眉間", + "readging": "みけん", + "pos": "名詞", + "pn": -0.069061 + }, + { + "surface": "続出", + "readging": "ぞくしゅつ", + "pos": "名詞", + "pn": -0.069066 + }, + { + "surface": "名月", + "readging": "めいげつ", + "pos": "名詞", + "pn": -0.069104 + }, + { + "surface": "筆まめ", + "readging": "ふでまめ", + "pos": "名詞", + "pn": -0.0691188 + }, + { + "surface": "馴化", + "readging": "じゅんか", + "pos": "名詞", + "pn": -0.0692129 + }, + { + "surface": "多彩", + "readging": "たさい", + "pos": "名詞", + "pn": -0.069216 + }, + { + "surface": "虚礼", + "readging": "きょれい", + "pos": "名詞", + "pn": -0.0692215 + }, + { + "surface": "数輩", + "readging": "すはい", + "pos": "名詞", + "pn": -0.0692637 + }, + { + "surface": "数刻", + "readging": "すうこく", + "pos": "名詞", + "pn": -0.0692637 + }, + { + "surface": "クラブサン", + "readging": "クラブサン", + "pos": "名詞", + "pn": -0.0693044 + }, + { + "surface": "允", + "readging": "いん", + "pos": "名詞", + "pn": -0.0693785 + }, + { + "surface": "空似", + "readging": "そらに", + "pos": "名詞", + "pn": -0.0693852 + }, + { + "surface": "人性", + "readging": "じんせい", + "pos": "名詞", + "pn": -0.0693911 + }, + { + "surface": "ハード", + "readging": "ハードボイルド", + "pos": "名詞", + "pn": -0.0693943 + }, + { + "surface": "自然物", + "readging": "しぜんぶつ", + "pos": "名詞", + "pn": -0.069415 + }, + { + "surface": "イズム", + "readging": "イズム", + "pos": "名詞", + "pn": -0.0694173 + }, + { + "surface": "王命", + "readging": "おうめい", + "pos": "名詞", + "pn": -0.0694832 + }, + { + "surface": "愛他主義", + "readging": "あいたしゅぎ", + "pos": "名詞", + "pn": -0.0694849 + }, + { + "surface": "外典", + "readging": "げてん", + "pos": "名詞", + "pn": -0.0694907 + }, + { + "surface": "臨幸", + "readging": "りんこう", + "pos": "名詞", + "pn": -0.0694978 + }, + { + "surface": "迷霧", + "readging": "めいむ", + "pos": "名詞", + "pn": -0.069524 + }, + { + "surface": "情知らず", + "readging": "なさけしらず", + "pos": "名詞", + "pn": -0.0695317 + }, + { + "surface": "全天候", + "readging": "ぜんてんこう", + "pos": "名詞", + "pn": -0.0695326 + }, + { + "surface": "五十歩百歩", + "readging": "ごじっぽひゃっぽ", + "pos": "名詞", + "pn": -0.0695351 + }, + { + "surface": "好奇", + "readging": "こうき", + "pos": "名詞", + "pn": -0.0695415 + }, + { + "surface": "親筆", + "readging": "しんぴつ", + "pos": "名詞", + "pn": -0.0695652 + }, + { + "surface": "選り抜き", + "readging": "えりぬき", + "pos": "名詞", + "pn": -0.0696098 + }, + { + "surface": "女心", + "readging": "おんなごころ", + "pos": "名詞", + "pn": -0.069662 + }, + { + "surface": "経籍", + "readging": "けいせき", + "pos": "名詞", + "pn": -0.0696788 + }, + { + "surface": "印欧語", + "readging": "いんおうご", + "pos": "名詞", + "pn": -0.0696867 + }, + { + "surface": "銀紙", + "readging": "ぎんがみ", + "pos": "名詞", + "pn": -0.0696985 + }, + { + "surface": "無遠慮", + "readging": "ぶえんりょ", + "pos": "名詞", + "pn": -0.0697562 + }, + { + "surface": "歌い文句", + "readging": "うたいもんく", + "pos": "名詞", + "pn": -0.069761 + }, + { + "surface": "着付け", + "readging": "きつけ", + "pos": "名詞", + "pn": -0.0697707 + }, + { + "surface": "認容", + "readging": "にんよう", + "pos": "名詞", + "pn": -0.069818 + }, + { + "surface": "ソリスト", + "readging": "ソリスト", + "pos": "名詞", + "pn": -0.0698645 + }, + { + "surface": "脳味噌", + "readging": "のうみそ", + "pos": "名詞", + "pn": -0.0698988 + }, + { + "surface": "邦画", + "readging": "ほうが", + "pos": "名詞", + "pn": -0.0699168 + }, + { + "surface": "めっきり", + "readging": "めっきり", + "pos": "副詞", + "pn": -0.0699456 + }, + { + "surface": "可変", + "readging": "かへん", + "pos": "名詞", + "pn": -0.0699497 + }, + { + "surface": "直弟子", + "readging": "じきでし", + "pos": "名詞", + "pn": -0.0699545 + }, + { + "surface": "財閥", + "readging": "ざいばつ", + "pos": "名詞", + "pn": -0.0699698 + }, + { + "surface": "学究", + "readging": "がっきゅう", + "pos": "名詞", + "pn": -0.0699819 + }, + { + "surface": "平分", + "readging": "へいぶん", + "pos": "名詞", + "pn": -0.069995 + }, + { + "surface": "身空", + "readging": "みそら", + "pos": "名詞", + "pn": -0.0700218 + }, + { + "surface": "小春日和", + "readging": "こはるびより", + "pos": "名詞", + "pn": -0.0700303 + }, + { + "surface": "仰せ付ける", + "readging": "おおせつける", + "pos": "動詞", + "pn": -0.0700625 + }, + { + "surface": "断固", + "readging": "だんこ", + "pos": "副詞", + "pn": -0.0701276 + }, + { + "surface": "俳壇", + "readging": "はいだん", + "pos": "名詞", + "pn": -0.0701519 + }, + { + "surface": "コミック", + "readging": "コミック", + "pos": "名詞", + "pn": -0.0701636 + }, + { + "surface": "法嗣", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.0701789 + }, + { + "surface": "新法", + "readging": "しんぽう", + "pos": "名詞", + "pn": -0.0701818 + }, + { + "surface": "有配", + "readging": "ゆうはい", + "pos": "名詞", + "pn": -0.0701844 + }, + { + "surface": "賜金", + "readging": "しきん", + "pos": "名詞", + "pn": -0.0701951 + }, + { + "surface": "比較多数", + "readging": "ひかくたすう", + "pos": "名詞", + "pn": -0.070196 + }, + { + "surface": "美学", + "readging": "びがく", + "pos": "名詞", + "pn": -0.0702064 + }, + { + "surface": "徒食", + "readging": "としょく", + "pos": "名詞", + "pn": -0.0702391 + }, + { + "surface": "霊送り", + "readging": "たまおくり", + "pos": "名詞", + "pn": -0.0702605 + }, + { + "surface": "低圧", + "readging": "ていあつ", + "pos": "名詞", + "pn": -0.0702677 + }, + { + "surface": "今次", + "readging": "こんじ", + "pos": "名詞", + "pn": -0.0703101 + }, + { + "surface": "原題", + "readging": "げんだい", + "pos": "名詞", + "pn": -0.0703174 + }, + { + "surface": "余事", + "readging": "よじ", + "pos": "名詞", + "pn": -0.0703626 + }, + { + "surface": "目礼", + "readging": "もくれい", + "pos": "名詞", + "pn": -0.0703856 + }, + { + "surface": "シスター", + "readging": "シスター", + "pos": "名詞", + "pn": -0.070391 + }, + { + "surface": "笑い飛ばす", + "readging": "わらいとばす", + "pos": "動詞", + "pn": -0.0704064 + }, + { + "surface": "生漉き", + "readging": "きずき", + "pos": "名詞", + "pn": -0.0704644 + }, + { + "surface": "褒貶", + "readging": "ほうへん", + "pos": "名詞", + "pn": -0.0705025 + }, + { + "surface": "旧任", + "readging": "きゅうにん", + "pos": "名詞", + "pn": -0.0705191 + }, + { + "surface": "秘湯", + "readging": "ひとう", + "pos": "名詞", + "pn": -0.0705287 + }, + { + "surface": "競作", + "readging": "きょうさく", + "pos": "名詞", + "pn": -0.0706138 + }, + { + "surface": "角逐", + "readging": "かくちく", + "pos": "名詞", + "pn": -0.0706138 + }, + { + "surface": "山陽", + "readging": "さんよう", + "pos": "名詞", + "pn": -0.0706924 + }, + { + "surface": "斯道", + "readging": "しどう", + "pos": "名詞", + "pn": -0.0706979 + }, + { + "surface": "負けん気", + "readging": "まけんき", + "pos": "名詞", + "pn": -0.0707033 + }, + { + "surface": "射光", + "readging": "しゃこう", + "pos": "名詞", + "pn": -0.070709 + }, + { + "surface": "巨漢", + "readging": "きょかん", + "pos": "名詞", + "pn": -0.0707637 + }, + { + "surface": "国守", + "readging": "こくしゅ", + "pos": "名詞", + "pn": -0.0707917 + }, + { + "surface": "手料理", + "readging": "てりょうり", + "pos": "名詞", + "pn": -0.0708041 + }, + { + "surface": "詩眼", + "readging": "しがん", + "pos": "名詞", + "pn": -0.0708279 + }, + { + "surface": "長物", + "readging": "ちょうぶつ", + "pos": "名詞", + "pn": -0.0708418 + }, + { + "surface": "大足", + "readging": "おおあし", + "pos": "名詞", + "pn": -0.0708697 + }, + { + "surface": "全豹", + "readging": "ぜんぴょう", + "pos": "名詞", + "pn": -0.070878 + }, + { + "surface": "閥", + "readging": "ばつ", + "pos": "名詞", + "pn": -0.0708861 + }, + { + "surface": "巨財", + "readging": "きょざい", + "pos": "名詞", + "pn": -0.0709623 + }, + { + "surface": "安請合い", + "readging": "やすうけあい", + "pos": "名詞", + "pn": -0.0709859 + }, + { + "surface": "通俗小説", + "readging": "つうぞくしょうせつ", + "pos": "名詞", + "pn": -0.0710261 + }, + { + "surface": "新家", + "readging": "しんけ", + "pos": "名詞", + "pn": -0.0710275 + }, + { + "surface": "国富", + "readging": "こくふ", + "pos": "名詞", + "pn": -0.0710941 + }, + { + "surface": "事後承諾", + "readging": "じごしょうだく", + "pos": "名詞", + "pn": -0.0711374 + }, + { + "surface": "雛", + "readging": "ひいな", + "pos": "名詞", + "pn": -0.0711699 + }, + { + "surface": "政略結婚", + "readging": "せいりゃくけっこん", + "pos": "名詞", + "pn": -0.0711897 + }, + { + "surface": "武芸", + "readging": "ぶげい", + "pos": "名詞", + "pn": -0.0712422 + }, + { + "surface": "持上げる", + "readging": "もちあげる", + "pos": "動詞", + "pn": -0.0713149 + }, + { + "surface": "専任", + "readging": "せんにん", + "pos": "名詞", + "pn": -0.0713236 + }, + { + "surface": "下戸", + "readging": "げこ", + "pos": "名詞", + "pn": -0.0714455 + }, + { + "surface": "監守", + "readging": "かんしゅ", + "pos": "名詞", + "pn": -0.0715258 + }, + { + "surface": "会堂", + "readging": "かいどう", + "pos": "名詞", + "pn": -0.0716555 + }, + { + "surface": "祠", + "readging": "ほこら", + "pos": "名詞", + "pn": -0.0716891 + }, + { + "surface": "御名", + "readging": "ぎょめい", + "pos": "名詞", + "pn": -0.0717233 + }, + { + "surface": "阿闍梨", + "readging": "あじゃり", + "pos": "名詞", + "pn": -0.0717342 + }, + { + "surface": "テラマイシン", + "readging": "テラマイシン", + "pos": "名詞", + "pn": -0.0717375 + }, + { + "surface": "改廃", + "readging": "かいはい", + "pos": "名詞", + "pn": -0.0717915 + }, + { + "surface": "茶園", + "readging": "ちゃえん", + "pos": "名詞", + "pn": -0.0718141 + }, + { + "surface": "次子", + "readging": "じし", + "pos": "名詞", + "pn": -0.0718365 + }, + { + "surface": "謹告", + "readging": "きんこく", + "pos": "名詞", + "pn": -0.0718443 + }, + { + "surface": "をや", + "readging": "をや", + "pos": "名詞", + "pn": -0.0718443 + }, + { + "surface": "体たらく", + "readging": "ていたらく", + "pos": "名詞", + "pn": -0.0718473 + }, + { + "surface": "揚言", + "readging": "ようげん", + "pos": "名詞", + "pn": -0.0718528 + }, + { + "surface": "玉目", + "readging": "たまもく", + "pos": "名詞", + "pn": -0.0718702 + }, + { + "surface": "粋人", + "readging": "すいじん", + "pos": "名詞", + "pn": -0.0718942 + }, + { + "surface": "江戸表", + "readging": "えどおもて", + "pos": "名詞", + "pn": -0.0719871 + }, + { + "surface": "其の道", + "readging": "そのみち", + "pos": "名詞", + "pn": -0.0719929 + }, + { + "surface": "キャラクター", + "readging": "キャラクター", + "pos": "名詞", + "pn": -0.0720116 + }, + { + "surface": "語族", + "readging": "ごぞく", + "pos": "名詞", + "pn": -0.0720468 + }, + { + "surface": "没書", + "readging": "ぼっしょ", + "pos": "名詞", + "pn": -0.0720574 + }, + { + "surface": "定府", + "readging": "じょうふ", + "pos": "名詞", + "pn": -0.0721044 + }, + { + "surface": "楽匠", + "readging": "がくしょう", + "pos": "名詞", + "pn": -0.0721058 + }, + { + "surface": "お運び", + "readging": "おはこび", + "pos": "名詞", + "pn": -0.072122 + }, + { + "surface": "教学", + "readging": "きょうがく", + "pos": "名詞", + "pn": -0.0721422 + }, + { + "surface": "老妓", + "readging": "ろうぎ", + "pos": "名詞", + "pn": -0.0721478 + }, + { + "surface": "試し切り", + "readging": "ためしぎり", + "pos": "名詞", + "pn": -0.0721492 + }, + { + "surface": "カソリック", + "readging": "カソリック", + "pos": "名詞", + "pn": -0.0721606 + }, + { + "surface": "正否", + "readging": "せいひ", + "pos": "名詞", + "pn": -0.0721608 + }, + { + "surface": "深度", + "readging": "しんど", + "pos": "名詞", + "pn": -0.0721708 + }, + { + "surface": "大兵", + "readging": "たいへい", + "pos": "名詞", + "pn": -0.072171 + }, + { + "surface": "ハッスル", + "readging": "ハッスル", + "pos": "名詞", + "pn": -0.0721723 + }, + { + "surface": "正念場", + "readging": "しょうねんば", + "pos": "名詞", + "pn": -0.0721775 + }, + { + "surface": "衒学", + "readging": "げんがく", + "pos": "名詞", + "pn": -0.0722079 + }, + { + "surface": "単科大学", + "readging": "たんかだいがく", + "pos": "名詞", + "pn": -0.0722608 + }, + { + "surface": "自問自答", + "readging": "じもんじとう", + "pos": "名詞", + "pn": -0.0722907 + }, + { + "surface": "急霰", + "readging": "きゅうさん", + "pos": "名詞", + "pn": -0.0723376 + }, + { + "surface": "涼み", + "readging": "すずみ", + "pos": "名詞", + "pn": -0.0723667 + }, + { + "surface": "嫡母", + "readging": "ちゃくぼ", + "pos": "名詞", + "pn": -0.0723869 + }, + { + "surface": "シェパード", + "readging": "シェパード", + "pos": "名詞", + "pn": -0.0724083 + }, + { + "surface": "霊泉", + "readging": "れいせん", + "pos": "名詞", + "pn": -0.0724095 + }, + { + "surface": "別製", + "readging": "べっせい", + "pos": "名詞", + "pn": -0.0725223 + }, + { + "surface": "船賃", + "readging": "ふなちん", + "pos": "名詞", + "pn": -0.0725736 + }, + { + "surface": "ちかちか", + "readging": "ちかちか", + "pos": "副詞", + "pn": -0.07259 + }, + { + "surface": "混沌", + "readging": "こんとん", + "pos": "名詞", + "pn": -0.0726053 + }, + { + "surface": "衆力", + "readging": "しゅうりょく", + "pos": "名詞", + "pn": -0.0726063 + }, + { + "surface": "屹立", + "readging": "きつりつ", + "pos": "名詞", + "pn": -0.0726264 + }, + { + "surface": "微酔", + "readging": "びすい", + "pos": "名詞", + "pn": -0.072655 + }, + { + "surface": "老兄", + "readging": "ろうけい", + "pos": "名詞", + "pn": -0.0726962 + }, + { + "surface": "完結", + "readging": "かんけつ", + "pos": "名詞", + "pn": -0.0727612 + }, + { + "surface": "百姓一揆", + "readging": "ひゃくしょういっき", + "pos": "名詞", + "pn": -0.0728535 + }, + { + "surface": "無手勝流", + "readging": "むてかつりゅう", + "pos": "名詞", + "pn": -0.0728985 + }, + { + "surface": "お役所仕事", + "readging": "おやくしょしごと", + "pos": "名詞", + "pn": -0.0729011 + }, + { + "surface": "陶然", + "readging": "とうぜん", + "pos": "名詞", + "pn": -0.0729268 + }, + { + "surface": "何気", + "readging": "なにげ", + "pos": "名詞", + "pn": -0.0729635 + }, + { + "surface": "大衆化", + "readging": "たいしゅうか", + "pos": "名詞", + "pn": -0.0729802 + }, + { + "surface": "模様替", + "readging": "もようがえ", + "pos": "名詞", + "pn": -0.0730109 + }, + { + "surface": "水没", + "readging": "すいぼつ", + "pos": "名詞", + "pn": -0.0730446 + }, + { + "surface": "有職", + "readging": "ゆうそく", + "pos": "名詞", + "pn": -0.0730545 + }, + { + "surface": "均霑", + "readging": "きんてん", + "pos": "名詞", + "pn": -0.0730589 + }, + { + "surface": "出目", + "readging": "でめ", + "pos": "名詞", + "pn": -0.07307 + }, + { + "surface": "暑熱", + "readging": "しょねつ", + "pos": "名詞", + "pn": -0.073082 + }, + { + "surface": "侍読", + "readging": "じどく", + "pos": "名詞", + "pn": -0.073086 + }, + { + "surface": "神職", + "readging": "しんしょく", + "pos": "名詞", + "pn": -0.0731026 + }, + { + "surface": "商会", + "readging": "しょうかい", + "pos": "名詞", + "pn": -0.0731185 + }, + { + "surface": "連破", + "readging": "れんぱ", + "pos": "名詞", + "pn": -0.0731253 + }, + { + "surface": "僧正", + "readging": "そうじょう", + "pos": "名詞", + "pn": -0.0731444 + }, + { + "surface": "ブルジョアジー", + "readging": "ブルジョアジー", + "pos": "名詞", + "pn": -0.0731798 + }, + { + "surface": "皚皚", + "readging": "がいがい", + "pos": "名詞", + "pn": -0.0731855 + }, + { + "surface": "交遊", + "readging": "こうゆう", + "pos": "名詞", + "pn": -0.0731921 + }, + { + "surface": "簡明", + "readging": "かんめい", + "pos": "名詞", + "pn": -0.073205 + }, + { + "surface": "深厚", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.0732794 + }, + { + "surface": "総見", + "readging": "そうけん", + "pos": "名詞", + "pn": -0.0732998 + }, + { + "surface": "尊公", + "readging": "そんこう", + "pos": "名詞", + "pn": -0.0733454 + }, + { + "surface": "お為筋", + "readging": "おためすじ", + "pos": "名詞", + "pn": -0.073356 + }, + { + "surface": "磊落", + "readging": "らいらく", + "pos": "名詞", + "pn": -0.0733679 + }, + { + "surface": "主客", + "readging": "しゅきゃく", + "pos": "名詞", + "pn": -0.0733913 + }, + { + "surface": "軽信", + "readging": "けいしん", + "pos": "名詞", + "pn": -0.0734513 + }, + { + "surface": "皇女", + "readging": "こうじょ", + "pos": "名詞", + "pn": -0.0735359 + }, + { + "surface": "凝り屋", + "readging": "こりや", + "pos": "名詞", + "pn": -0.0735543 + }, + { + "surface": "万能", + "readging": "ばんのう", + "pos": "名詞", + "pn": -0.0736074 + }, + { + "surface": "圏外", + "readging": "けんがい", + "pos": "名詞", + "pn": -0.0736335 + }, + { + "surface": "上澣", + "readging": "じょうかん", + "pos": "名詞", + "pn": -0.0736385 + }, + { + "surface": "行実", + "readging": "ぎょうじつ", + "pos": "名詞", + "pn": -0.0737421 + }, + { + "surface": "ノット", + "readging": "ノット", + "pos": "名詞", + "pn": -0.0737538 + }, + { + "surface": "美肌", + "readging": "びはだ", + "pos": "名詞", + "pn": -0.0738135 + }, + { + "surface": "今頃", + "readging": "いまごろ", + "pos": "名詞", + "pn": -0.0738311 + }, + { + "surface": "朝っぱら", + "readging": "あさっぱら", + "pos": "名詞", + "pn": -0.0738542 + }, + { + "surface": "美丈夫", + "readging": "びじょうふ", + "pos": "名詞", + "pn": -0.073875 + }, + { + "surface": "続騰", + "readging": "ぞくとう", + "pos": "名詞", + "pn": -0.0739223 + }, + { + "surface": "阿弥陀", + "readging": "あみだ", + "pos": "名詞", + "pn": -0.073924 + }, + { + "surface": "参究", + "readging": "さんきゅう", + "pos": "名詞", + "pn": -0.0739696 + }, + { + "surface": "客あしらい", + "readging": "きゃくあしらい", + "pos": "名詞", + "pn": -0.0739806 + }, + { + "surface": "白蓮", + "readging": "びゃくれん", + "pos": "名詞", + "pn": -0.0740104 + }, + { + "surface": "前世", + "readging": "ぜんせ", + "pos": "名詞", + "pn": -0.0740383 + }, + { + "surface": "そろそろ", + "readging": "そろそろ", + "pos": "副詞", + "pn": -0.0740496 + }, + { + "surface": "ユマニテ", + "readging": "ユマニテ", + "pos": "名詞", + "pn": -0.0741487 + }, + { + "surface": "新株", + "readging": "しんかぶ", + "pos": "名詞", + "pn": -0.0741498 + }, + { + "surface": "和敬", + "readging": "わけい", + "pos": "名詞", + "pn": -0.0741735 + }, + { + "surface": "お勤め", + "readging": "おつとめ", + "pos": "名詞", + "pn": -0.0741785 + }, + { + "surface": "深雪", + "readging": "みゆき", + "pos": "名詞", + "pn": -0.0742108 + }, + { + "surface": "便利", + "readging": "べんり", + "pos": "名詞", + "pn": -0.0743294 + }, + { + "surface": "法弟", + "readging": "ほうてい", + "pos": "名詞", + "pn": -0.074347 + }, + { + "surface": "好き好き", + "readging": "すきずき", + "pos": "名詞", + "pn": -0.0743687 + }, + { + "surface": "自由労働者", + "readging": "じゆうろうどうしゃ", + "pos": "名詞", + "pn": -0.0744202 + }, + { + "surface": "貸与", + "readging": "たいよ", + "pos": "名詞", + "pn": -0.0744256 + }, + { + "surface": "ピエロ", + "readging": "ピエロ", + "pos": "名詞", + "pn": -0.0744535 + }, + { + "surface": "大廈", + "readging": "たいか", + "pos": "名詞", + "pn": -0.0744722 + }, + { + "surface": "祭殿", + "readging": "さいでん", + "pos": "名詞", + "pn": -0.0744722 + }, + { + "surface": "聖堂", + "readging": "せいどう", + "pos": "名詞", + "pn": -0.074498 + }, + { + "surface": "魍魎", + "readging": "もうりょう", + "pos": "名詞", + "pn": -0.074512 + }, + { + "surface": "良夜", + "readging": "りょうや", + "pos": "名詞", + "pn": -0.0745368 + }, + { + "surface": "転義", + "readging": "てんぎ", + "pos": "名詞", + "pn": -0.0745857 + }, + { + "surface": "御新さん", + "readging": "ごしんさん", + "pos": "名詞", + "pn": -0.0746489 + }, + { + "surface": "背日性", + "readging": "はいじつせい", + "pos": "名詞", + "pn": -0.0746582 + }, + { + "surface": "淀み", + "readging": "よどみ", + "pos": "名詞", + "pn": -0.0746751 + }, + { + "surface": "海国", + "readging": "かいこく", + "pos": "名詞", + "pn": -0.0747048 + }, + { + "surface": "酒食らい", + "readging": "さけくらい", + "pos": "名詞", + "pn": -0.0748163 + }, + { + "surface": "校友", + "readging": "こうゆう", + "pos": "名詞", + "pn": -0.0748277 + }, + { + "surface": "着尺", + "readging": "きじゃく", + "pos": "名詞", + "pn": -0.0748577 + }, + { + "surface": "早まる", + "readging": "はやまる", + "pos": "動詞", + "pn": -0.0749677 + }, + { + "surface": "御稜威", + "readging": "みいつ", + "pos": "名詞", + "pn": -0.0749721 + }, + { + "surface": "奉迎", + "readging": "ほうげい", + "pos": "名詞", + "pn": -0.0749839 + }, + { + "surface": "貴紳", + "readging": "きしん", + "pos": "名詞", + "pn": -0.0749839 + }, + { + "surface": "採納", + "readging": "さいのう", + "pos": "名詞", + "pn": -0.0750375 + }, + { + "surface": "私学", + "readging": "しがく", + "pos": "名詞", + "pn": -0.0750692 + }, + { + "surface": "終バス", + "readging": "しゅうバス", + "pos": "名詞", + "pn": -0.075081 + }, + { + "surface": "本寺", + "readging": "ほんじ", + "pos": "名詞", + "pn": -0.0750966 + }, + { + "surface": "書幅", + "readging": "しょふく", + "pos": "名詞", + "pn": -0.075132 + }, + { + "surface": "一丁字", + "readging": "いっていじ", + "pos": "名詞", + "pn": -0.075132 + }, + { + "surface": "既決", + "readging": "きけつ", + "pos": "名詞", + "pn": -0.0751328 + }, + { + "surface": "借景", + "readging": "しゃっけい", + "pos": "名詞", + "pn": -0.0751957 + }, + { + "surface": "シェフ", + "readging": "シェフ", + "pos": "名詞", + "pn": -0.0752967 + }, + { + "surface": "菜館", + "readging": "さいかん", + "pos": "名詞", + "pn": -0.0752967 + }, + { + "surface": "クッキング", + "readging": "クッキング", + "pos": "名詞", + "pn": -0.0752967 + }, + { + "surface": "板場", + "readging": "いたば", + "pos": "名詞", + "pn": -0.0752967 + }, + { + "surface": "板前", + "readging": "いたまえ", + "pos": "名詞", + "pn": -0.0752967 + }, + { + "surface": "飯店", + "readging": "はんてん", + "pos": "名詞", + "pn": -0.0752967 + }, + { + "surface": "薪", + "readging": "たきぎ", + "pos": "名詞", + "pn": -0.0753351 + }, + { + "surface": "大兄", + "readging": "たいけい", + "pos": "名詞", + "pn": -0.0753497 + }, + { + "surface": "真俗", + "readging": "しんぞく", + "pos": "名詞", + "pn": -0.0753792 + }, + { + "surface": "居食い", + "readging": "いぐい", + "pos": "名詞", + "pn": -0.0753876 + }, + { + "surface": "儒仏", + "readging": "じゅぶつ", + "pos": "名詞", + "pn": -0.0754037 + }, + { + "surface": "和", + "readging": "わ", + "pos": "名詞", + "pn": -0.0754309 + }, + { + "surface": "散文", + "readging": "さんぶん", + "pos": "名詞", + "pn": -0.075459 + }, + { + "surface": "盛儀", + "readging": "せいぎ", + "pos": "名詞", + "pn": -0.0754651 + }, + { + "surface": "出揃う", + "readging": "でそろう", + "pos": "動詞", + "pn": -0.0754709 + }, + { + "surface": "メンタル テスト", + "readging": "メンタル テスト", + "pos": "名詞", + "pn": -0.0754818 + }, + { + "surface": "互市", + "readging": "ごし", + "pos": "名詞", + "pn": -0.0754951 + }, + { + "surface": "吹聴", + "readging": "ふいちょう", + "pos": "名詞", + "pn": -0.0755545 + }, + { + "surface": "棄権", + "readging": "きけん", + "pos": "名詞", + "pn": -0.0755744 + }, + { + "surface": "表作", + "readging": "おもてさく", + "pos": "名詞", + "pn": -0.0755933 + }, + { + "surface": "食通", + "readging": "しょくつう", + "pos": "名詞", + "pn": -0.0756391 + }, + { + "surface": "霊境", + "readging": "れいきょう", + "pos": "名詞", + "pn": -0.0757083 + }, + { + "surface": "松竹梅", + "readging": "しょうちくばい", + "pos": "名詞", + "pn": -0.0757467 + }, + { + "surface": "洒洒落落", + "readging": "しゃしゃらくらく", + "pos": "名詞", + "pn": -0.0757918 + }, + { + "surface": "言上", + "readging": "ごんじょう", + "pos": "名詞", + "pn": -0.0758165 + }, + { + "surface": "情義", + "readging": "じょうぎ", + "pos": "名詞", + "pn": -0.0758459 + }, + { + "surface": "付け上がる", + "readging": "つけあがる", + "pos": "動詞", + "pn": -0.0758557 + }, + { + "surface": "芸術家", + "readging": "げいじゅつか", + "pos": "名詞", + "pn": -0.0758912 + }, + { + "surface": "相嫁", + "readging": "あいよめ", + "pos": "名詞", + "pn": -0.0758959 + }, + { + "surface": "上略", + "readging": "じょうりゃく", + "pos": "名詞", + "pn": -0.0758998 + }, + { + "surface": "陸続", + "readging": "りくぞく", + "pos": "名詞", + "pn": -0.0759159 + }, + { + "surface": "強襲", + "readging": "きょうしゅう", + "pos": "名詞", + "pn": -0.0759272 + }, + { + "surface": "全形", + "readging": "ぜんけい", + "pos": "名詞", + "pn": -0.0759307 + }, + { + "surface": "来場", + "readging": "らいじょう", + "pos": "名詞", + "pn": -0.075971 + }, + { + "surface": "養蜂", + "readging": "ようほう", + "pos": "名詞", + "pn": -0.0760149 + }, + { + "surface": "養鶏", + "readging": "ようけい", + "pos": "名詞", + "pn": -0.0760149 + }, + { + "surface": "肉声", + "readging": "にくせい", + "pos": "名詞", + "pn": -0.0760197 + }, + { + "surface": "金髪", + "readging": "きんぱつ", + "pos": "名詞", + "pn": -0.0760197 + }, + { + "surface": "熟睡", + "readging": "じゅくすい", + "pos": "名詞", + "pn": -0.0760274 + }, + { + "surface": "真否", + "readging": "しんぴ", + "pos": "名詞", + "pn": -0.0760313 + }, + { + "surface": "激化", + "readging": "げきか", + "pos": "名詞", + "pn": -0.0760342 + }, + { + "surface": "てくる", + "readging": "てくる", + "pos": "動詞", + "pn": -0.0760391 + }, + { + "surface": "正株", + "readging": "しょうかぶ", + "pos": "名詞", + "pn": -0.0760526 + }, + { + "surface": "前厄", + "readging": "まえやく", + "pos": "名詞", + "pn": -0.076094 + }, + { + "surface": "諸王", + "readging": "しょおう", + "pos": "名詞", + "pn": -0.0761109 + }, + { + "surface": "立技", + "readging": "たちわざ", + "pos": "名詞", + "pn": -0.0761196 + }, + { + "surface": "えっちらおっちら", + "readging": "えっちらおっちら", + "pos": "副詞", + "pn": -0.0761541 + }, + { + "surface": "直納", + "readging": "じきのう", + "pos": "名詞", + "pn": -0.0761804 + }, + { + "surface": "生来", + "readging": "せいらい", + "pos": "副詞", + "pn": -0.0761817 + }, + { + "surface": "重囲", + "readging": "じゅうい", + "pos": "名詞", + "pn": -0.0761933 + }, + { + "surface": "怪我負", + "readging": "けがまけ", + "pos": "名詞", + "pn": -0.0762143 + }, + { + "surface": "君寵", + "readging": "くんちょう", + "pos": "名詞", + "pn": -0.0762156 + }, + { + "surface": "総合大学", + "readging": "そうごうだいがく", + "pos": "名詞", + "pn": -0.0762162 + }, + { + "surface": "超越", + "readging": "ちょうえつ", + "pos": "名詞", + "pn": -0.0762378 + }, + { + "surface": "雄", + "readging": "おす", + "pos": "名詞", + "pn": -0.0762699 + }, + { + "surface": "歌切", + "readging": "うたぎれ", + "pos": "名詞", + "pn": -0.0762722 + }, + { + "surface": "知悉", + "readging": "ちしつ", + "pos": "名詞", + "pn": -0.0763095 + }, + { + "surface": "性感", + "readging": "せいかん", + "pos": "名詞", + "pn": -0.0763528 + }, + { + "surface": "陽動", + "readging": "ようどう", + "pos": "名詞", + "pn": -0.0763536 + }, + { + "surface": "暴圧", + "readging": "ぼうあつ", + "pos": "名詞", + "pn": -0.0763536 + }, + { + "surface": "猛追", + "readging": "もうつい", + "pos": "名詞", + "pn": -0.0763641 + }, + { + "surface": "睦む", + "readging": "むつむ", + "pos": "動詞", + "pn": -0.0763714 + }, + { + "surface": "大尽", + "readging": "だいじん", + "pos": "名詞", + "pn": -0.0763746 + }, + { + "surface": "気疲れ", + "readging": "きづかれ", + "pos": "名詞", + "pn": -0.0764087 + }, + { + "surface": "将兵", + "readging": "しょうへい", + "pos": "名詞", + "pn": -0.0764148 + }, + { + "surface": "分らず屋", + "readging": "わからずや", + "pos": "名詞", + "pn": -0.0764435 + }, + { + "surface": "しっぽり", + "readging": "しっぽり", + "pos": "副詞", + "pn": -0.0764593 + }, + { + "surface": "人皇", + "readging": "にんのう", + "pos": "名詞", + "pn": -0.0765429 + }, + { + "surface": "院外団", + "readging": "いんがいだん", + "pos": "名詞", + "pn": -0.0765609 + }, + { + "surface": "上塗", + "readging": "うわぬり", + "pos": "名詞", + "pn": -0.0765962 + }, + { + "surface": "施政", + "readging": "しせい", + "pos": "名詞", + "pn": -0.0766088 + }, + { + "surface": "観覧", + "readging": "かんらん", + "pos": "名詞", + "pn": -0.0766111 + }, + { + "surface": "はんなり", + "readging": "はんなり", + "pos": "副詞", + "pn": -0.0766411 + }, + { + "surface": "真価", + "readging": "しんか", + "pos": "名詞", + "pn": -0.0766527 + }, + { + "surface": "技術開発", + "readging": "ぎじゅつかいはつ", + "pos": "名詞", + "pn": -0.0766812 + }, + { + "surface": "徳義", + "readging": "とくぎ", + "pos": "名詞", + "pn": -0.0767406 + }, + { + "surface": "題詞", + "readging": "だいし", + "pos": "名詞", + "pn": -0.0767493 + }, + { + "surface": "撤兵", + "readging": "てっぺい", + "pos": "名詞", + "pn": -0.0767505 + }, + { + "surface": "請書", + "readging": "うけしょ", + "pos": "名詞", + "pn": -0.0767632 + }, + { + "surface": "逸散", + "readging": "いっさん", + "pos": "名詞", + "pn": -0.0767927 + }, + { + "surface": "諾意", + "readging": "だくい", + "pos": "名詞", + "pn": -0.076799 + }, + { + "surface": "不犯", + "readging": "ふぼん", + "pos": "名詞", + "pn": -0.0768061 + }, + { + "surface": "聖霊降臨祭", + "readging": "せいれいこうりんさい", + "pos": "名詞", + "pn": -0.0768298 + }, + { + "surface": "人道主義", + "readging": "じんどうしゅぎ", + "pos": "名詞", + "pn": -0.0768564 + }, + { + "surface": "称号", + "readging": "しょうごう", + "pos": "名詞", + "pn": -0.0768641 + }, + { + "surface": "ティッシュ ペーパー", + "readging": "ティッシュ ペーパー", + "pos": "名詞", + "pn": -0.0768888 + }, + { + "surface": "盛事", + "readging": "せいじ", + "pos": "名詞", + "pn": -0.076899 + }, + { + "surface": "背伸び", + "readging": "せのび", + "pos": "名詞", + "pn": -0.0769332 + }, + { + "surface": "久", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.076963 + }, + { + "surface": "旬", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.0769654 + }, + { + "surface": "弟子", + "readging": "ていし", + "pos": "名詞", + "pn": -0.0769834 + }, + { + "surface": "夜勤", + "readging": "やきん", + "pos": "名詞", + "pn": -0.0769835 + }, + { + "surface": "狂風", + "readging": "きょうふう", + "pos": "名詞", + "pn": -0.0769954 + }, + { + "surface": "魯魚", + "readging": "ろぎょ", + "pos": "名詞", + "pn": -0.0771385 + }, + { + "surface": "百人力", + "readging": "ひゃくにんりき", + "pos": "名詞", + "pn": -0.0771405 + }, + { + "surface": "結縁", + "readging": "けちえん", + "pos": "名詞", + "pn": -0.0771442 + }, + { + "surface": "本邸", + "readging": "ほんてい", + "pos": "名詞", + "pn": -0.0771774 + }, + { + "surface": "政", + "readging": "まつりごと", + "pos": "名詞", + "pn": -0.0771781 + }, + { + "surface": "梁間", + "readging": "はりま", + "pos": "名詞", + "pn": -0.0771799 + }, + { + "surface": "竜田姫", + "readging": "たつたひめ", + "pos": "名詞", + "pn": -0.0771884 + }, + { + "surface": "文教", + "readging": "ぶんきょう", + "pos": "名詞", + "pn": -0.0771955 + }, + { + "surface": "造物主", + "readging": "ぞうぶつしゅ", + "pos": "名詞", + "pn": -0.077218 + }, + { + "surface": "往歳", + "readging": "おうさい", + "pos": "名詞", + "pn": -0.077239 + }, + { + "surface": "離日", + "readging": "りにち", + "pos": "名詞", + "pn": -0.0772495 + }, + { + "surface": "陽画", + "readging": "ようが", + "pos": "名詞", + "pn": -0.077281 + }, + { + "surface": "新渡", + "readging": "しんと", + "pos": "名詞", + "pn": -0.077292 + }, + { + "surface": "推進器", + "readging": "すいしんき", + "pos": "名詞", + "pn": -0.0773276 + }, + { + "surface": "今体", + "readging": "きんたい", + "pos": "名詞", + "pn": -0.0773291 + }, + { + "surface": "向暑", + "readging": "こうしょ", + "pos": "名詞", + "pn": -0.0773506 + }, + { + "surface": "哲学", + "readging": "てつがく", + "pos": "名詞", + "pn": -0.0774705 + }, + { + "surface": "遺稿", + "readging": "いこう", + "pos": "名詞", + "pn": -0.0774798 + }, + { + "surface": "新説", + "readging": "しんせつ", + "pos": "名詞", + "pn": -0.0774912 + }, + { + "surface": "生れつき", + "readging": "うまれつき", + "pos": "名詞", + "pn": -0.0774919 + }, + { + "surface": "二重否定", + "readging": "にじゅうひてい", + "pos": "名詞", + "pn": -0.0775695 + }, + { + "surface": "お多福豆", + "readging": "おたふくまめ", + "pos": "名詞", + "pn": -0.0776715 + }, + { + "surface": "訓蒙", + "readging": "くんもう", + "pos": "名詞", + "pn": -0.0777064 + }, + { + "surface": "地方庁", + "readging": "ちほうちょう", + "pos": "名詞", + "pn": -0.0777168 + }, + { + "surface": "薄化粧", + "readging": "うすげしょう", + "pos": "名詞", + "pn": -0.077743 + }, + { + "surface": "口授", + "readging": "くじゅ", + "pos": "名詞", + "pn": -0.0777773 + }, + { + "surface": "向う槌", + "readging": "むこうづち", + "pos": "名詞", + "pn": -0.0777868 + }, + { + "surface": "姪", + "readging": "めい", + "pos": "名詞", + "pn": -0.0778183 + }, + { + "surface": "老幼", + "readging": "ろうよう", + "pos": "名詞", + "pn": -0.077867 + }, + { + "surface": "タンジェント", + "readging": "タンジェント", + "pos": "名詞", + "pn": -0.0778993 + }, + { + "surface": "天聴", + "readging": "てんちょう", + "pos": "名詞", + "pn": -0.077924 + }, + { + "surface": "草丈", + "readging": "くさたけ", + "pos": "名詞", + "pn": -0.0779514 + }, + { + "surface": "引抜き", + "readging": "ひきぬき", + "pos": "名詞", + "pn": -0.0779563 + }, + { + "surface": "大規模", + "readging": "だいきぼ", + "pos": "名詞", + "pn": -0.0779596 + }, + { + "surface": "衆議院", + "readging": "しゅうぎいん", + "pos": "名詞", + "pn": -0.0779732 + }, + { + "surface": "霊光", + "readging": "れいこう", + "pos": "名詞", + "pn": -0.0780037 + }, + { + "surface": "不得要領", + "readging": "ふとくようりょう", + "pos": "名詞", + "pn": -0.0780303 + }, + { + "surface": "間接証明", + "readging": "かんせつしょうめい", + "pos": "名詞", + "pn": -0.0780998 + }, + { + "surface": "クローカス", + "readging": "クローカス", + "pos": "名詞", + "pn": -0.0781374 + }, + { + "surface": "一存", + "readging": "いちぞん", + "pos": "名詞", + "pn": -0.0781772 + }, + { + "surface": "熟議", + "readging": "じゅくぎ", + "pos": "名詞", + "pn": -0.0783095 + }, + { + "surface": "一等兵", + "readging": "いっとうへい", + "pos": "名詞", + "pn": -0.0783577 + }, + { + "surface": "霊木", + "readging": "れいぼく", + "pos": "名詞", + "pn": -0.078373 + }, + { + "surface": "フェンシング", + "readging": "フェンシング", + "pos": "名詞", + "pn": -0.0783996 + }, + { + "surface": "同年", + "readging": "どうねん", + "pos": "名詞", + "pn": -0.0784155 + }, + { + "surface": "特恵", + "readging": "とっけい", + "pos": "名詞", + "pn": -0.0784687 + }, + { + "surface": "一切衆生", + "readging": "いっさいしゅじょう", + "pos": "名詞", + "pn": -0.0785033 + }, + { + "surface": "智", + "readging": "ち", + "pos": "名詞", + "pn": -0.0785227 + }, + { + "surface": "修業", + "readging": "しゅうぎょう", + "pos": "名詞", + "pn": -0.078535 + }, + { + "surface": "内示", + "readging": "ないじ", + "pos": "名詞", + "pn": -0.0785527 + }, + { + "surface": "極微", + "readging": "きょくび", + "pos": "名詞", + "pn": -0.0785551 + }, + { + "surface": "一体全体", + "readging": "いったいぜんたい", + "pos": "副詞", + "pn": -0.0785575 + }, + { + "surface": "売人", + "readging": "ばいにん", + "pos": "名詞", + "pn": -0.0785608 + }, + { + "surface": "酣", + "readging": "たけなわ", + "pos": "名詞", + "pn": -0.0785614 + }, + { + "surface": "特認", + "readging": "とくにん", + "pos": "名詞", + "pn": -0.0785653 + }, + { + "surface": "口茶", + "readging": "くちぢゃ", + "pos": "名詞", + "pn": -0.0786253 + }, + { + "surface": "買得", + "readging": "かいどく", + "pos": "名詞", + "pn": -0.0787074 + }, + { + "surface": "来報", + "readging": "らいほう", + "pos": "名詞", + "pn": -0.0787221 + }, + { + "surface": "来観", + "readging": "らいかん", + "pos": "名詞", + "pn": -0.0787221 + }, + { + "surface": "断食", + "readging": "だんじき", + "pos": "名詞", + "pn": -0.0787306 + }, + { + "surface": "伽羅", + "readging": "きゃら", + "pos": "名詞", + "pn": -0.0787318 + }, + { + "surface": "速決", + "readging": "そっけつ", + "pos": "名詞", + "pn": -0.078733 + }, + { + "surface": "気迷い", + "readging": "きまよい", + "pos": "名詞", + "pn": -0.0787792 + }, + { + "surface": "大神宮", + "readging": "だいじんぐう", + "pos": "名詞", + "pn": -0.0787837 + }, + { + "surface": "真向", + "readging": "まっこう", + "pos": "名詞", + "pn": -0.0788145 + }, + { + "surface": "狂詩曲", + "readging": "きょうしきょく", + "pos": "名詞", + "pn": -0.0788174 + }, + { + "surface": "女尊男卑", + "readging": "じょそんだんぴ", + "pos": "名詞", + "pn": -0.0788708 + }, + { + "surface": "候補", + "readging": "こうほ", + "pos": "名詞", + "pn": -0.078929 + }, + { + "surface": "逢瀬", + "readging": "おうせ", + "pos": "名詞", + "pn": -0.0789364 + }, + { + "surface": "規模", + "readging": "きぼ", + "pos": "名詞", + "pn": -0.0789425 + }, + { + "surface": "導入", + "readging": "どうにゅう", + "pos": "名詞", + "pn": -0.0789599 + }, + { + "surface": "越権", + "readging": "えっけん", + "pos": "名詞", + "pn": -0.0789692 + }, + { + "surface": "薺", + "readging": "なずな", + "pos": "名詞", + "pn": -0.0789709 + }, + { + "surface": "客観性", + "readging": "きゃっかんせい", + "pos": "名詞", + "pn": -0.0789746 + }, + { + "surface": "肉片", + "readging": "にくへん", + "pos": "名詞", + "pn": -0.0790457 + }, + { + "surface": "宝算", + "readging": "ほうさん", + "pos": "名詞", + "pn": -0.079047 + }, + { + "surface": "別枠", + "readging": "べつわく", + "pos": "名詞", + "pn": -0.0791409 + }, + { + "surface": "ずいと", + "readging": "ずいと", + "pos": "副詞", + "pn": -0.0791567 + }, + { + "surface": "低湿", + "readging": "ていしつ", + "pos": "名詞", + "pn": -0.0791755 + }, + { + "surface": "奉唱", + "readging": "ほうしょう", + "pos": "名詞", + "pn": -0.0791868 + }, + { + "surface": "詰襟", + "readging": "つめえり", + "pos": "名詞", + "pn": -0.0792423 + }, + { + "surface": "独学", + "readging": "どくがく", + "pos": "名詞", + "pn": -0.0792447 + }, + { + "surface": "清雅", + "readging": "せいが", + "pos": "名詞", + "pn": -0.0792576 + }, + { + "surface": "聞書", + "readging": "ききがき", + "pos": "名詞", + "pn": -0.0794007 + }, + { + "surface": "相生", + "readging": "あいおい", + "pos": "名詞", + "pn": -0.0794169 + }, + { + "surface": "献言", + "readging": "けんげん", + "pos": "名詞", + "pn": -0.0794257 + }, + { + "surface": "履践", + "readging": "りせん", + "pos": "名詞", + "pn": -0.0794755 + }, + { + "surface": "主立つ", + "readging": "おもだつ", + "pos": "動詞", + "pn": -0.0794794 + }, + { + "surface": "月産", + "readging": "げっさん", + "pos": "名詞", + "pn": -0.0794808 + }, + { + "surface": "浄土宗", + "readging": "じょうどしゅう", + "pos": "名詞", + "pn": -0.0795428 + }, + { + "surface": "ギルダー", + "readging": "ギルダー", + "pos": "名詞", + "pn": -0.0795835 + }, + { + "surface": "戦意", + "readging": "せんい", + "pos": "名詞", + "pn": -0.0795843 + }, + { + "surface": "客演", + "readging": "きゃくえん", + "pos": "名詞", + "pn": -0.0796115 + }, + { + "surface": "心学", + "readging": "しんがく", + "pos": "名詞", + "pn": -0.0797089 + }, + { + "surface": "君主政体", + "readging": "くんしゅせいたい", + "pos": "名詞", + "pn": -0.0797431 + }, + { + "surface": "弛む", + "readging": "たゆむ", + "pos": "動詞", + "pn": -0.0797741 + }, + { + "surface": "平叙", + "readging": "へいじょ", + "pos": "名詞", + "pn": -0.0797888 + }, + { + "surface": "年功", + "readging": "ねんこう", + "pos": "名詞", + "pn": -0.0797894 + }, + { + "surface": "純系", + "readging": "じゅんけい", + "pos": "名詞", + "pn": -0.0798324 + }, + { + "surface": "一毫", + "readging": "いちごう", + "pos": "名詞", + "pn": -0.07984 + }, + { + "surface": "小味", + "readging": "こあじ", + "pos": "名詞", + "pn": -0.0798582 + }, + { + "surface": "芸林", + "readging": "げいりん", + "pos": "名詞", + "pn": -0.0798981 + }, + { + "surface": "又頼み", + "readging": "まただのみ", + "pos": "名詞", + "pn": -0.0799046 + }, + { + "surface": "たん瘤", + "readging": "たんこぶ", + "pos": "名詞", + "pn": -0.0799196 + }, + { + "surface": "成道", + "readging": "じょうどう", + "pos": "名詞", + "pn": -0.079941 + }, + { + "surface": "法問", + "readging": "ほうもん", + "pos": "名詞", + "pn": -0.0799729 + }, + { + "surface": "無形", + "readging": "むけい", + "pos": "名詞", + "pn": -0.0800362 + }, + { + "surface": "ドライブ", + "readging": "ドライブウエー", + "pos": "名詞", + "pn": -0.0800564 + }, + { + "surface": "金目", + "readging": "かねめ", + "pos": "名詞", + "pn": -0.0800845 + }, + { + "surface": "巨億", + "readging": "きょおく", + "pos": "名詞", + "pn": -0.0800949 + }, + { + "surface": "古来", + "readging": "こらい", + "pos": "副詞", + "pn": -0.08014 + }, + { + "surface": "縹渺", + "readging": "ひょうびょう", + "pos": "名詞", + "pn": -0.0801416 + }, + { + "surface": "心力", + "readging": "しんりょく", + "pos": "名詞", + "pn": -0.0801519 + }, + { + "surface": "神慮", + "readging": "しんりょ", + "pos": "名詞", + "pn": -0.0801757 + }, + { + "surface": "栄養食", + "readging": "えいようしょく", + "pos": "名詞", + "pn": -0.080213 + }, + { + "surface": "通人", + "readging": "つうじん", + "pos": "名詞", + "pn": -0.0802244 + }, + { + "surface": "新刀", + "readging": "しんとう", + "pos": "名詞", + "pn": -0.08024 + }, + { + "surface": "画然", + "readging": "かくぜん", + "pos": "名詞", + "pn": -0.0802429 + }, + { + "surface": "艶文", + "readging": "えんぶん", + "pos": "名詞", + "pn": -0.0802582 + }, + { + "surface": "回顧", + "readging": "かいこ", + "pos": "名詞", + "pn": -0.080264 + }, + { + "surface": "実包", + "readging": "じっぽう", + "pos": "名詞", + "pn": -0.0802803 + }, + { + "surface": "育む", + "readging": "はぐくむ", + "pos": "動詞", + "pn": -0.0802861 + }, + { + "surface": "虚字", + "readging": "きょじ", + "pos": "名詞", + "pn": -0.0803067 + }, + { + "surface": "養父", + "readging": "ようふ", + "pos": "名詞", + "pn": -0.0803518 + }, + { + "surface": "カレッジ", + "readging": "カレッジ", + "pos": "名詞", + "pn": -0.0803597 + }, + { + "surface": "本給", + "readging": "ほんきゅう", + "pos": "名詞", + "pn": -0.0804259 + }, + { + "surface": "清覧", + "readging": "せいらん", + "pos": "名詞", + "pn": -0.0804495 + }, + { + "surface": "終始", + "readging": "しゅうし", + "pos": "副詞", + "pn": -0.0804591 + }, + { + "surface": "客員", + "readging": "かくいん", + "pos": "名詞", + "pn": -0.0804879 + }, + { + "surface": "能動", + "readging": "のうどう", + "pos": "名詞", + "pn": -0.0805048 + }, + { + "surface": "雷神", + "readging": "らいじん", + "pos": "名詞", + "pn": -0.0805083 + }, + { + "surface": "僻説", + "readging": "へきせつ", + "pos": "名詞", + "pn": -0.0805589 + }, + { + "surface": "公約数", + "readging": "こうやくすう", + "pos": "名詞", + "pn": -0.0805717 + }, + { + "surface": "闇路", + "readging": "やみじ", + "pos": "名詞", + "pn": -0.080581 + }, + { + "surface": "下界", + "readging": "げかい", + "pos": "名詞", + "pn": -0.0806025 + }, + { + "surface": "歩一歩", + "readging": "ほいっぽ", + "pos": "名詞", + "pn": -0.0806056 + }, + { + "surface": "期する所", + "readging": "きするところ", + "pos": "名詞", + "pn": -0.0806177 + }, + { + "surface": "減水", + "readging": "げんすい", + "pos": "名詞", + "pn": -0.0806571 + }, + { + "surface": "フォト", + "readging": "フォト", + "pos": "名詞", + "pn": -0.0806572 + }, + { + "surface": "発情", + "readging": "はつじょう", + "pos": "名詞", + "pn": -0.0806609 + }, + { + "surface": "特典", + "readging": "とくてん", + "pos": "名詞", + "pn": -0.0806666 + }, + { + "surface": "成就", + "readging": "じょうじゅ", + "pos": "名詞", + "pn": -0.0806689 + }, + { + "surface": "セパレート", + "readging": "セパレート", + "pos": "名詞", + "pn": -0.0806724 + }, + { + "surface": "分納", + "readging": "ぶんのう", + "pos": "名詞", + "pn": -0.0806724 + }, + { + "surface": "糾合", + "readging": "きゅうごう", + "pos": "名詞", + "pn": -0.0807523 + }, + { + "surface": "続演", + "readging": "ぞくえん", + "pos": "名詞", + "pn": -0.0807578 + }, + { + "surface": "尊霊", + "readging": "そんれい", + "pos": "名詞", + "pn": -0.0807677 + }, + { + "surface": "勝勢", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.0807722 + }, + { + "surface": "農学", + "readging": "のうがく", + "pos": "名詞", + "pn": -0.0808717 + }, + { + "surface": "忍び笑い", + "readging": "しのびわらい", + "pos": "名詞", + "pn": -0.0808752 + }, + { + "surface": "家", + "readging": "いえ", + "pos": "名詞", + "pn": -0.0808767 + }, + { + "surface": "社主", + "readging": "しゃしゅ", + "pos": "名詞", + "pn": -0.0808798 + }, + { + "surface": "公司", + "readging": "こうし", + "pos": "名詞", + "pn": -0.0808798 + }, + { + "surface": "在社", + "readging": "ざいしゃ", + "pos": "名詞", + "pn": -0.0808798 + }, + { + "surface": "貴慮", + "readging": "きりょ", + "pos": "名詞", + "pn": -0.0809123 + }, + { + "surface": "寝泊り", + "readging": "ねとまり", + "pos": "名詞", + "pn": -0.0809286 + }, + { + "surface": "東男", + "readging": "あずまおとこ", + "pos": "名詞", + "pn": -0.080995 + }, + { + "surface": "入れ替り立ち替り", + "readging": "いれかわりたちかわり", + "pos": "名詞", + "pn": -0.0810739 + }, + { + "surface": "純血", + "readging": "じゅんけつ", + "pos": "名詞", + "pn": -0.0811047 + }, + { + "surface": "邦貨", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.0811221 + }, + { + "surface": "嘸", + "readging": "さぞ", + "pos": "副詞", + "pn": -0.0812009 + }, + { + "surface": "生かす", + "readging": "いかす", + "pos": "動詞", + "pn": -0.0812409 + }, + { + "surface": "儒道", + "readging": "じゅどう", + "pos": "名詞", + "pn": -0.0812622 + }, + { + "surface": "品隲", + "readging": "ひんしつ", + "pos": "名詞", + "pn": -0.0812811 + }, + { + "surface": "洋学", + "readging": "ようがく", + "pos": "名詞", + "pn": -0.0813383 + }, + { + "surface": "セレクト", + "readging": "セレクト", + "pos": "名詞", + "pn": -0.0813702 + }, + { + "surface": "渦動", + "readging": "かどう", + "pos": "名詞", + "pn": -0.0813721 + }, + { + "surface": "商売気質", + "readging": "しょうばいかたぎ", + "pos": "名詞", + "pn": -0.081423 + }, + { + "surface": "表面化", + "readging": "ひょうめんか", + "pos": "名詞", + "pn": -0.0814324 + }, + { + "surface": "腕試し", + "readging": "うでだめし", + "pos": "名詞", + "pn": -0.0814431 + }, + { + "surface": "じろじろ", + "readging": "じろじろ", + "pos": "副詞", + "pn": -0.0814828 + }, + { + "surface": "破顔", + "readging": "はがん", + "pos": "名詞", + "pn": -0.0814828 + }, + { + "surface": "尊顔", + "readging": "そんがん", + "pos": "名詞", + "pn": -0.0814828 + }, + { + "surface": "満点", + "readging": "まんてん", + "pos": "名詞", + "pn": -0.0815285 + }, + { + "surface": "乙姫", + "readging": "おとひめ", + "pos": "名詞", + "pn": -0.0815387 + }, + { + "surface": "共感", + "readging": "きょうかん", + "pos": "名詞", + "pn": -0.0815387 + }, + { + "surface": "芸文", + "readging": "げいぶん", + "pos": "名詞", + "pn": -0.081581 + }, + { + "surface": "カスト", + "readging": "カスト", + "pos": "名詞", + "pn": -0.0815884 + }, + { + "surface": "末学", + "readging": "まつがく", + "pos": "名詞", + "pn": -0.0815974 + }, + { + "surface": "上質", + "readging": "じょうしつ", + "pos": "名詞", + "pn": -0.0816223 + }, + { + "surface": "求知心", + "readging": "きゅうちしん", + "pos": "名詞", + "pn": -0.0816672 + }, + { + "surface": "見聞", + "readging": "けんぶん", + "pos": "名詞", + "pn": -0.081672 + }, + { + "surface": "列国", + "readging": "れっこく", + "pos": "名詞", + "pn": -0.0816966 + }, + { + "surface": "定詰", + "readging": "じょうづめ", + "pos": "名詞", + "pn": -0.0817435 + }, + { + "surface": "籾殻", + "readging": "もみがら", + "pos": "名詞", + "pn": -0.081756 + }, + { + "surface": "判明", + "readging": "はんめい", + "pos": "名詞", + "pn": -0.0817656 + }, + { + "surface": "謝状", + "readging": "しゃじょう", + "pos": "名詞", + "pn": -0.0817754 + }, + { + "surface": "夜立ち", + "readging": "よだち", + "pos": "名詞", + "pn": -0.0819016 + }, + { + "surface": "加筆", + "readging": "かひつ", + "pos": "名詞", + "pn": -0.0819049 + }, + { + "surface": "文系", + "readging": "ぶんけい", + "pos": "名詞", + "pn": -0.0819149 + }, + { + "surface": "現員", + "readging": "げんいん", + "pos": "名詞", + "pn": -0.0819751 + }, + { + "surface": "猟人", + "readging": "りょうじん", + "pos": "名詞", + "pn": -0.0820339 + }, + { + "surface": "努", + "readging": "ど", + "pos": "名詞", + "pn": -0.082083 + }, + { + "surface": "住着く", + "readging": "すみつく", + "pos": "動詞", + "pn": -0.0820847 + }, + { + "surface": "皓歯", + "readging": "こうし", + "pos": "名詞", + "pn": -0.0821418 + }, + { + "surface": "余徳", + "readging": "よとく", + "pos": "名詞", + "pn": -0.082199 + }, + { + "surface": "価値観", + "readging": "かちかん", + "pos": "名詞", + "pn": -0.0822086 + }, + { + "surface": "身命", + "readging": "しんめい", + "pos": "名詞", + "pn": -0.0822189 + }, + { + "surface": "聞手", + "readging": "ききて", + "pos": "名詞", + "pn": -0.0822554 + }, + { + "surface": "年初", + "readging": "ねんしょ", + "pos": "名詞", + "pn": -0.0822618 + }, + { + "surface": "新世界", + "readging": "しんせかい", + "pos": "名詞", + "pn": -0.0822951 + }, + { + "surface": "大店", + "readging": "おおだな", + "pos": "名詞", + "pn": -0.0823115 + }, + { + "surface": "平等", + "readging": "びょうどう", + "pos": "名詞", + "pn": -0.082362 + }, + { + "surface": "ジェネレーション", + "readging": "ジェネレーション", + "pos": "名詞", + "pn": -0.082372 + }, + { + "surface": "対内", + "readging": "たいない", + "pos": "名詞", + "pn": -0.0823775 + }, + { + "surface": "趣味", + "readging": "しゅみ", + "pos": "名詞", + "pn": -0.082412 + }, + { + "surface": "林間学校", + "readging": "りんかんがっこう", + "pos": "名詞", + "pn": -0.0824401 + }, + { + "surface": "遺著", + "readging": "いちょ", + "pos": "名詞", + "pn": -0.0824466 + }, + { + "surface": "待命", + "readging": "たいめい", + "pos": "名詞", + "pn": -0.0825005 + }, + { + "surface": "遠雷", + "readging": "えんらい", + "pos": "名詞", + "pn": -0.0825532 + }, + { + "surface": "役立つ", + "readging": "やくだつ", + "pos": "動詞", + "pn": -0.0825675 + }, + { + "surface": "狎昵", + "readging": "こうじつ", + "pos": "名詞", + "pn": -0.0826144 + }, + { + "surface": "ジャンボリー", + "readging": "ジャンボリー", + "pos": "名詞", + "pn": -0.082618 + }, + { + "surface": "藩儒", + "readging": "はんじゅ", + "pos": "名詞", + "pn": -0.0826224 + }, + { + "surface": "内皮", + "readging": "ないひ", + "pos": "名詞", + "pn": -0.0826399 + }, + { + "surface": "原画", + "readging": "げんが", + "pos": "名詞", + "pn": -0.0826614 + }, + { + "surface": "残品", + "readging": "ざんぴん", + "pos": "名詞", + "pn": -0.0827142 + }, + { + "surface": "和俗", + "readging": "わぞく", + "pos": "名詞", + "pn": -0.0827518 + }, + { + "surface": "同臭", + "readging": "どうしゅう", + "pos": "名詞", + "pn": -0.0827722 + }, + { + "surface": "厚相", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.0827738 + }, + { + "surface": "奥まる", + "readging": "おくまる", + "pos": "動詞", + "pn": -0.0828676 + }, + { + "surface": "禿山", + "readging": "はげやま", + "pos": "名詞", + "pn": -0.0829022 + }, + { + "surface": "原盤", + "readging": "げんばん", + "pos": "名詞", + "pn": -0.0829545 + }, + { + "surface": "満期", + "readging": "まんき", + "pos": "名詞", + "pn": -0.0829602 + }, + { + "surface": "曲線美", + "readging": "きょくせんび", + "pos": "名詞", + "pn": -0.0829622 + }, + { + "surface": "盛典", + "readging": "せいてん", + "pos": "名詞", + "pn": -0.0829645 + }, + { + "surface": "富強", + "readging": "ふきょう", + "pos": "名詞", + "pn": -0.0829826 + }, + { + "surface": "見送る", + "readging": "みおくる", + "pos": "動詞", + "pn": -0.0830087 + }, + { + "surface": "聞澄ます", + "readging": "ききすます", + "pos": "動詞", + "pn": -0.0830663 + }, + { + "surface": "聴聞", + "readging": "ちょうもん", + "pos": "名詞", + "pn": -0.0831077 + }, + { + "surface": "火食", + "readging": "かしょく", + "pos": "名詞", + "pn": -0.0831103 + }, + { + "surface": "過食", + "readging": "かしょく", + "pos": "名詞", + "pn": -0.0831103 + }, + { + "surface": "捨扶持", + "readging": "すてぶち", + "pos": "名詞", + "pn": -0.0831958 + }, + { + "surface": "普通文", + "readging": "ふつうぶん", + "pos": "名詞", + "pn": -0.0832311 + }, + { + "surface": "刹那主義", + "readging": "せつなしゅぎ", + "pos": "名詞", + "pn": -0.0832572 + }, + { + "surface": "ヴァイオリン", + "readging": "ヴァイオリン", + "pos": "名詞", + "pn": -0.0832769 + }, + { + "surface": "ワンサイド ゲーム", + "readging": "ワンサイド ゲーム", + "pos": "名詞", + "pn": -0.0833013 + }, + { + "surface": "航法", + "readging": "こうほう", + "pos": "名詞", + "pn": -0.0833168 + }, + { + "surface": "無かりせば", + "readging": "なかりせば", + "pos": "名詞", + "pn": -0.0833202 + }, + { + "surface": "新家", + "readging": "しんや", + "pos": "名詞", + "pn": -0.0833217 + }, + { + "surface": "ちび", + "readging": "ちび", + "pos": "名詞", + "pn": -0.0833372 + }, + { + "surface": "特等", + "readging": "とくとう", + "pos": "名詞", + "pn": -0.0833401 + }, + { + "surface": "百貨", + "readging": "ひゃっか", + "pos": "名詞", + "pn": -0.0833443 + }, + { + "surface": "出欠", + "readging": "しゅっけつ", + "pos": "名詞", + "pn": -0.0833724 + }, + { + "surface": "一切経", + "readging": "いっさいきょう", + "pos": "名詞", + "pn": -0.0834006 + }, + { + "surface": "人死", + "readging": "ひとじに", + "pos": "名詞", + "pn": -0.0834036 + }, + { + "surface": "黙祷", + "readging": "もくとう", + "pos": "名詞", + "pn": -0.0834409 + }, + { + "surface": "随意", + "readging": "ずいい", + "pos": "名詞", + "pn": -0.0834559 + }, + { + "surface": "大宇宙", + "readging": "だいうちゅう", + "pos": "名詞", + "pn": -0.0834766 + }, + { + "surface": "不徹底", + "readging": "ふてってい", + "pos": "名詞", + "pn": -0.083511 + }, + { + "surface": "学士", + "readging": "がくし", + "pos": "名詞", + "pn": -0.0835321 + }, + { + "surface": "対当", + "readging": "たいとう", + "pos": "名詞", + "pn": -0.0835336 + }, + { + "surface": "気移り", + "readging": "きうつり", + "pos": "名詞", + "pn": -0.0835549 + }, + { + "surface": "一説", + "readging": "いっせつ", + "pos": "名詞", + "pn": -0.0836142 + }, + { + "surface": "主演", + "readging": "しゅえん", + "pos": "名詞", + "pn": -0.083638 + }, + { + "surface": "牽牛花", + "readging": "けんぎゅうか", + "pos": "名詞", + "pn": -0.083665 + }, + { + "surface": "共通語", + "readging": "きょうつうご", + "pos": "名詞", + "pn": -0.0836962 + }, + { + "surface": "有産", + "readging": "ゆうさん", + "pos": "名詞", + "pn": -0.0837446 + }, + { + "surface": "勤労所得", + "readging": "きんろうしょとく", + "pos": "名詞", + "pn": -0.0837543 + }, + { + "surface": "主位", + "readging": "しゅい", + "pos": "名詞", + "pn": -0.0837686 + }, + { + "surface": "私営", + "readging": "しえい", + "pos": "名詞", + "pn": -0.0837936 + }, + { + "surface": "雷", + "readging": "いかずち", + "pos": "名詞", + "pn": -0.0838264 + }, + { + "surface": "浮沈", + "readging": "ふちん", + "pos": "名詞", + "pn": -0.0839339 + }, + { + "surface": "雲集", + "readging": "うんしゅう", + "pos": "名詞", + "pn": -0.0839374 + }, + { + "surface": "味得", + "readging": "みとく", + "pos": "名詞", + "pn": -0.0839439 + }, + { + "surface": "真義", + "readging": "しんぎ", + "pos": "名詞", + "pn": -0.0839482 + }, + { + "surface": "歌話", + "readging": "かわ", + "pos": "名詞", + "pn": -0.0839535 + }, + { + "surface": "爽秋", + "readging": "そうしゅう", + "pos": "名詞", + "pn": -0.0839907 + }, + { + "surface": "層倍", + "readging": "そうばい", + "pos": "名詞", + "pn": -0.0840096 + }, + { + "surface": "素泊り", + "readging": "すどまり", + "pos": "名詞", + "pn": -0.0840509 + }, + { + "surface": "新制", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.0840557 + }, + { + "surface": "渙発", + "readging": "かんぱつ", + "pos": "名詞", + "pn": -0.0840665 + }, + { + "surface": "着水", + "readging": "ちゃくすい", + "pos": "名詞", + "pn": -0.084089 + }, + { + "surface": "内済", + "readging": "ないさい", + "pos": "名詞", + "pn": -0.0841433 + }, + { + "surface": "急募", + "readging": "きゅうぼ", + "pos": "名詞", + "pn": -0.0841573 + }, + { + "surface": "興起", + "readging": "こうき", + "pos": "名詞", + "pn": -0.0841733 + }, + { + "surface": "一盞", + "readging": "いっさん", + "pos": "名詞", + "pn": -0.0841781 + }, + { + "surface": "後方", + "readging": "こうほう", + "pos": "名詞", + "pn": -0.0841848 + }, + { + "surface": "同船", + "readging": "どうせん", + "pos": "名詞", + "pn": -0.0841871 + }, + { + "surface": "乗っかる", + "readging": "のっかる", + "pos": "動詞", + "pn": -0.0841871 + }, + { + "surface": "私淑", + "readging": "ししゅく", + "pos": "名詞", + "pn": -0.0842131 + }, + { + "surface": "飛耳長目", + "readging": "ひじちょうもく", + "pos": "名詞", + "pn": -0.0842196 + }, + { + "surface": "私版", + "readging": "しはん", + "pos": "名詞", + "pn": -0.0842265 + }, + { + "surface": "男好き", + "readging": "おとこずき", + "pos": "名詞", + "pn": -0.0842396 + }, + { + "surface": "モニュメント", + "readging": "モニュメント", + "pos": "名詞", + "pn": -0.0842488 + }, + { + "surface": "朝政", + "readging": "ちょうせい", + "pos": "名詞", + "pn": -0.084301 + }, + { + "surface": "過不足", + "readging": "かふそく", + "pos": "名詞", + "pn": -0.0843085 + }, + { + "surface": "酒太り", + "readging": "さけぶとり", + "pos": "名詞", + "pn": -0.0843201 + }, + { + "surface": "視話法", + "readging": "しわほう", + "pos": "名詞", + "pn": -0.0843326 + }, + { + "surface": "急ぎ足", + "readging": "いそぎあし", + "pos": "名詞", + "pn": -0.0843509 + }, + { + "surface": "抱負", + "readging": "ほうふ", + "pos": "名詞", + "pn": -0.0843709 + }, + { + "surface": "司会", + "readging": "しかい", + "pos": "名詞", + "pn": -0.0844031 + }, + { + "surface": "相恩", + "readging": "そうおん", + "pos": "名詞", + "pn": -0.0844171 + }, + { + "surface": "宮腹", + "readging": "みやばら", + "pos": "名詞", + "pn": -0.0844473 + }, + { + "surface": "男色", + "readging": "だんしょく", + "pos": "名詞", + "pn": -0.0845066 + }, + { + "surface": "寂寂", + "readging": "せきせき", + "pos": "名詞", + "pn": -0.0845121 + }, + { + "surface": "天守閣", + "readging": "てんしゅかく", + "pos": "名詞", + "pn": -0.0845798 + }, + { + "surface": "旧教", + "readging": "きゅうきょう", + "pos": "名詞", + "pn": -0.0846387 + }, + { + "surface": "盲目", + "readging": "もうもく", + "pos": "名詞", + "pn": -0.0846903 + }, + { + "surface": "外紙", + "readging": "がいし", + "pos": "名詞", + "pn": -0.0847347 + }, + { + "surface": "営繕", + "readging": "えいぜん", + "pos": "名詞", + "pn": -0.0847362 + }, + { + "surface": "確約", + "readging": "かくやく", + "pos": "名詞", + "pn": -0.0847379 + }, + { + "surface": "一読", + "readging": "いちどく", + "pos": "名詞", + "pn": -0.0847639 + }, + { + "surface": "再読", + "readging": "さいどく", + "pos": "名詞", + "pn": -0.0847639 + }, + { + "surface": "使送", + "readging": "しそう", + "pos": "名詞", + "pn": -0.0847709 + }, + { + "surface": "返送", + "readging": "へんそう", + "pos": "名詞", + "pn": -0.0847709 + }, + { + "surface": "鬨の声", + "readging": "ときのこえ", + "pos": "名詞", + "pn": -0.0848174 + }, + { + "surface": "帝王神権説", + "readging": "ていおうしんけんせつ", + "pos": "名詞", + "pn": -0.0848284 + }, + { + "surface": "多神教", + "readging": "たしんきょう", + "pos": "名詞", + "pn": -0.084853 + }, + { + "surface": "鼎談", + "readging": "ていだん", + "pos": "名詞", + "pn": -0.0848558 + }, + { + "surface": "独習", + "readging": "どくしゅう", + "pos": "名詞", + "pn": -0.084859 + }, + { + "surface": "百薬", + "readging": "ひゃくやく", + "pos": "名詞", + "pn": -0.0848963 + }, + { + "surface": "極官", + "readging": "きょっかん", + "pos": "名詞", + "pn": -0.0849205 + }, + { + "surface": "断断乎", + "readging": "だんだんこ", + "pos": "名詞", + "pn": -0.0849336 + }, + { + "surface": "奇奇妙妙", + "readging": "ききみょうみょう", + "pos": "名詞", + "pn": -0.0849336 + }, + { + "surface": "おっぽりだす", + "readging": "おっぽりだす", + "pos": "動詞", + "pn": -0.0849336 + }, + { + "surface": "半ドア", + "readging": "はんドア", + "pos": "名詞", + "pn": -0.0849609 + }, + { + "surface": "護憲", + "readging": "ごけん", + "pos": "名詞", + "pn": -0.0849698 + }, + { + "surface": "コミュニケ", + "readging": "コミュニケ", + "pos": "名詞", + "pn": -0.0849856 + }, + { + "surface": "ハーモニー", + "readging": "ハーモニー", + "pos": "名詞", + "pn": -0.0850005 + }, + { + "surface": "親愛", + "readging": "しんあい", + "pos": "名詞", + "pn": -0.0850038 + }, + { + "surface": "華客", + "readging": "かかく", + "pos": "名詞", + "pn": -0.0850131 + }, + { + "surface": "神変", + "readging": "しんぺん", + "pos": "名詞", + "pn": -0.08508 + }, + { + "surface": "登校", + "readging": "とうこう", + "pos": "名詞", + "pn": -0.0851004 + }, + { + "surface": "見合う", + "readging": "みあう", + "pos": "動詞", + "pn": -0.0851592 + }, + { + "surface": "テノール", + "readging": "テノール", + "pos": "名詞", + "pn": -0.0852207 + }, + { + "surface": "英訳", + "readging": "えいやく", + "pos": "名詞", + "pn": -0.0852503 + }, + { + "surface": "高音", + "readging": "こうおん", + "pos": "名詞", + "pn": -0.0852752 + }, + { + "surface": "開眼", + "readging": "かいがん", + "pos": "名詞", + "pn": -0.0853147 + }, + { + "surface": "序品", + "readging": "じょぼん", + "pos": "名詞", + "pn": -0.0853557 + }, + { + "surface": "完", + "readging": "かん", + "pos": "名詞", + "pn": -0.0853776 + }, + { + "surface": "法螺", + "readging": "ほら", + "pos": "名詞", + "pn": -0.0854126 + }, + { + "surface": "馬鹿力", + "readging": "ばかぢから", + "pos": "名詞", + "pn": -0.0854191 + }, + { + "surface": "旧跡", + "readging": "きゅうせき", + "pos": "名詞", + "pn": -0.0854304 + }, + { + "surface": "厚生", + "readging": "こうせい", + "pos": "名詞", + "pn": -0.0854357 + }, + { + "surface": "新約聖書", + "readging": "しんやくせいしょ", + "pos": "名詞", + "pn": -0.0854473 + }, + { + "surface": "利他主義", + "readging": "りたしゅぎ", + "pos": "名詞", + "pn": -0.0854506 + }, + { + "surface": "神器", + "readging": "じんぎ", + "pos": "名詞", + "pn": -0.0854757 + }, + { + "surface": "唐菜", + "readging": "とうな", + "pos": "名詞", + "pn": -0.0855187 + }, + { + "surface": "短期", + "readging": "たんき", + "pos": "名詞", + "pn": -0.0855225 + }, + { + "surface": "もう先", + "readging": "もうせん", + "pos": "名詞", + "pn": -0.0855231 + }, + { + "surface": "一家言", + "readging": "いっかげん", + "pos": "名詞", + "pn": -0.085535 + }, + { + "surface": "他愛", + "readging": "たあい", + "pos": "名詞", + "pn": -0.0855448 + }, + { + "surface": "深み", + "readging": "ふかみ", + "pos": "名詞", + "pn": -0.0855545 + }, + { + "surface": "截然", + "readging": "せつぜん", + "pos": "名詞", + "pn": -0.0855652 + }, + { + "surface": "督励", + "readging": "とくれい", + "pos": "名詞", + "pn": -0.0855705 + }, + { + "surface": "有期", + "readging": "ゆうき", + "pos": "名詞", + "pn": -0.0855851 + }, + { + "surface": "県下", + "readging": "けんか", + "pos": "名詞", + "pn": -0.0856249 + }, + { + "surface": "発揚", + "readging": "はつよう", + "pos": "名詞", + "pn": -0.0856326 + }, + { + "surface": "オーナー", + "readging": "オーナー", + "pos": "名詞", + "pn": -0.0856497 + }, + { + "surface": "掛値", + "readging": "かけね", + "pos": "名詞", + "pn": -0.0856646 + }, + { + "surface": "露光", + "readging": "ろこう", + "pos": "名詞", + "pn": -0.0856715 + }, + { + "surface": "山陵", + "readging": "さんりょう", + "pos": "名詞", + "pn": -0.0856994 + }, + { + "surface": "技官", + "readging": "ぎかん", + "pos": "名詞", + "pn": -0.0857241 + }, + { + "surface": "中学", + "readging": "ちゅうがく", + "pos": "名詞", + "pn": -0.0857331 + }, + { + "surface": "益する", + "readging": "えきする", + "pos": "動詞", + "pn": -0.0857502 + }, + { + "surface": "選出", + "readging": "せんしゅつ", + "pos": "名詞", + "pn": -0.0858493 + }, + { + "surface": "細める", + "readging": "ほそめる", + "pos": "動詞", + "pn": -0.0859202 + }, + { + "surface": "手解き", + "readging": "てほどき", + "pos": "名詞", + "pn": -0.0859298 + }, + { + "surface": "退会", + "readging": "たいかい", + "pos": "名詞", + "pn": -0.0859654 + }, + { + "surface": "同体", + "readging": "どうたい", + "pos": "名詞", + "pn": -0.0859656 + }, + { + "surface": "王女", + "readging": "おうじょ", + "pos": "名詞", + "pn": -0.0859687 + }, + { + "surface": "大持て", + "readging": "おおもて", + "pos": "名詞", + "pn": -0.085972 + }, + { + "surface": "農相", + "readging": "のうしょう", + "pos": "名詞", + "pn": -0.0860785 + }, + { + "surface": "蔵相", + "readging": "ぞうしょう", + "pos": "名詞", + "pn": -0.0860785 + }, + { + "surface": "文相", + "readging": "ぶんしょう", + "pos": "名詞", + "pn": -0.0860785 + }, + { + "surface": "金詰り", + "readging": "かねづまり", + "pos": "名詞", + "pn": -0.0861364 + }, + { + "surface": "魚心", + "readging": "うおごころ", + "pos": "名詞", + "pn": -0.0861372 + }, + { + "surface": "音引き", + "readging": "おんびき", + "pos": "名詞", + "pn": -0.0861738 + }, + { + "surface": "檀徒", + "readging": "だんと", + "pos": "名詞", + "pn": -0.0861994 + }, + { + "surface": "合せ糸", + "readging": "あわせいと", + "pos": "名詞", + "pn": -0.0862154 + }, + { + "surface": "九死", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.0862158 + }, + { + "surface": "卑小", + "readging": "ひしょう", + "pos": "名詞", + "pn": -0.0862611 + }, + { + "surface": "合祀", + "readging": "ごうし", + "pos": "名詞", + "pn": -0.0862621 + }, + { + "surface": "法華三昧", + "readging": "ほっけざんまい", + "pos": "名詞", + "pn": -0.0862765 + }, + { + "surface": "怪盗", + "readging": "かいとう", + "pos": "名詞", + "pn": -0.0862766 + }, + { + "surface": "詩学", + "readging": "しがく", + "pos": "名詞", + "pn": -0.0862861 + }, + { + "surface": "自家発電", + "readging": "じかはつでん", + "pos": "名詞", + "pn": -0.0863041 + }, + { + "surface": "心掛け", + "readging": "こころがけ", + "pos": "名詞", + "pn": -0.0863381 + }, + { + "surface": "批正", + "readging": "ひせい", + "pos": "名詞", + "pn": -0.0863699 + }, + { + "surface": "表高", + "readging": "おもてだか", + "pos": "名詞", + "pn": -0.0863764 + }, + { + "surface": "市販", + "readging": "しはん", + "pos": "名詞", + "pn": -0.0863899 + }, + { + "surface": "鬻ぐ", + "readging": "ひさぐ", + "pos": "動詞", + "pn": -0.0863899 + }, + { + "surface": "多売", + "readging": "たばい", + "pos": "名詞", + "pn": -0.0863899 + }, + { + "surface": "在宿", + "readging": "ざいしゅく", + "pos": "名詞", + "pn": -0.0863928 + }, + { + "surface": "静物", + "readging": "せいぶつ", + "pos": "名詞", + "pn": -0.0864349 + }, + { + "surface": "変り果てる", + "readging": "かわりはてる", + "pos": "動詞", + "pn": -0.0864455 + }, + { + "surface": "仏師", + "readging": "ぶっし", + "pos": "名詞", + "pn": -0.0864729 + }, + { + "surface": "国益", + "readging": "こくえき", + "pos": "名詞", + "pn": -0.0864929 + }, + { + "surface": "福分", + "readging": "ふくぶん", + "pos": "名詞", + "pn": -0.0865002 + }, + { + "surface": "カルチャー", + "readging": "カルチャー", + "pos": "名詞", + "pn": -0.0865953 + }, + { + "surface": "酒好き", + "readging": "さけずき", + "pos": "名詞", + "pn": -0.0865987 + }, + { + "surface": "教わる", + "readging": "おそわる", + "pos": "動詞", + "pn": -0.0866346 + }, + { + "surface": "押し借り", + "readging": "おしがり", + "pos": "名詞", + "pn": -0.0866402 + }, + { + "surface": "更正", + "readging": "こうせい", + "pos": "名詞", + "pn": -0.0866467 + }, + { + "surface": "毎期", + "readging": "まいき", + "pos": "名詞", + "pn": -0.0866476 + }, + { + "surface": "鎮西", + "readging": "ちんぜい", + "pos": "名詞", + "pn": -0.0866622 + }, + { + "surface": "両立", + "readging": "りょうりつ", + "pos": "名詞", + "pn": -0.0866705 + }, + { + "surface": "球場", + "readging": "きゅうじょう", + "pos": "名詞", + "pn": -0.0866817 + }, + { + "surface": "虫食い", + "readging": "むしくい", + "pos": "名詞", + "pn": -0.0866882 + }, + { + "surface": "名題下", + "readging": "なだいした", + "pos": "名詞", + "pn": -0.0867347 + }, + { + "surface": "絶食", + "readging": "ぜっしょく", + "pos": "名詞", + "pn": -0.0867607 + }, + { + "surface": "知己", + "readging": "ちき", + "pos": "名詞", + "pn": -0.0868269 + }, + { + "surface": "取捨", + "readging": "しゅしゃ", + "pos": "名詞", + "pn": -0.0868284 + }, + { + "surface": "芸術院", + "readging": "げいじゅついん", + "pos": "名詞", + "pn": -0.0868358 + }, + { + "surface": "オリジナリティー", + "readging": "オリジナリティー", + "pos": "名詞", + "pn": -0.0868583 + }, + { + "surface": "徳用", + "readging": "とくよう", + "pos": "名詞", + "pn": -0.0869215 + }, + { + "surface": "遊侠", + "readging": "ゆうきょう", + "pos": "名詞", + "pn": -0.0869945 + }, + { + "surface": "南宗画", + "readging": "なんしゅうが", + "pos": "名詞", + "pn": -0.0869976 + }, + { + "surface": "所柄", + "readging": "ところがら", + "pos": "名詞", + "pn": -0.0870078 + }, + { + "surface": "続行", + "readging": "ぞっこう", + "pos": "名詞", + "pn": -0.0870323 + }, + { + "surface": "出師", + "readging": "すいし", + "pos": "名詞", + "pn": -0.0870461 + }, + { + "surface": "散策", + "readging": "さんさく", + "pos": "名詞", + "pn": -0.0870539 + }, + { + "surface": "没法子", + "readging": "メーファーズ", + "pos": "名詞", + "pn": -0.0870658 + }, + { + "surface": "円舞曲", + "readging": "えんぶきょく", + "pos": "名詞", + "pn": -0.087112 + }, + { + "surface": "閉幕", + "readging": "へいまく", + "pos": "名詞", + "pn": -0.0871162 + }, + { + "surface": "白糸", + "readging": "しらいと", + "pos": "名詞", + "pn": -0.0871195 + }, + { + "surface": "ぺろりと", + "readging": "ぺろりと", + "pos": "副詞", + "pn": -0.0871383 + }, + { + "surface": "クローズド ショップ", + "readging": "クローズド ショップ", + "pos": "名詞", + "pn": -0.0871822 + }, + { + "surface": "出水", + "readging": "しゅっすい", + "pos": "名詞", + "pn": -0.0871877 + }, + { + "surface": "冥冥", + "readging": "めいめい", + "pos": "名詞", + "pn": -0.0871911 + }, + { + "surface": "突破口", + "readging": "とっぱこう", + "pos": "名詞", + "pn": -0.0871921 + }, + { + "surface": "ろれつ", + "readging": "ろれつ", + "pos": "名詞", + "pn": -0.0872035 + }, + { + "surface": "予断", + "readging": "よだん", + "pos": "名詞", + "pn": -0.0872154 + }, + { + "surface": "精神生活", + "readging": "せいしんせいかつ", + "pos": "名詞", + "pn": -0.0872875 + }, + { + "surface": "王政", + "readging": "おうせい", + "pos": "名詞", + "pn": -0.0873181 + }, + { + "surface": "手跡", + "readging": "しゅせき", + "pos": "名詞", + "pn": -0.0873296 + }, + { + "surface": "いっかな", + "readging": "いっかな", + "pos": "副詞", + "pn": -0.0873449 + }, + { + "surface": "完遂", + "readging": "かんすい", + "pos": "名詞", + "pn": -0.0873505 + }, + { + "surface": "哀れがる", + "readging": "あわれがる", + "pos": "動詞", + "pn": -0.0873784 + }, + { + "surface": "余沢", + "readging": "よたく", + "pos": "名詞", + "pn": -0.0874086 + }, + { + "surface": "ぞっこん", + "readging": "ぞっこん", + "pos": "副詞", + "pn": -0.0874191 + }, + { + "surface": "新田", + "readging": "しんでん", + "pos": "名詞", + "pn": -0.087421 + }, + { + "surface": "力説", + "readging": "りきせつ", + "pos": "名詞", + "pn": -0.0874933 + }, + { + "surface": "千尋", + "readging": "せんじん", + "pos": "名詞", + "pn": -0.0875001 + }, + { + "surface": "土豪", + "readging": "どごう", + "pos": "名詞", + "pn": -0.0875284 + }, + { + "surface": "乗手", + "readging": "のりて", + "pos": "名詞", + "pn": -0.08753 + }, + { + "surface": "無題", + "readging": "むだい", + "pos": "名詞", + "pn": -0.0875457 + }, + { + "surface": "カンデラ", + "readging": "カンデラ", + "pos": "名詞", + "pn": -0.0875512 + }, + { + "surface": "日向臭い", + "readging": "ひなたくさい", + "pos": "形容詞", + "pn": -0.0875994 + }, + { + "surface": "修法", + "readging": "しゅほう", + "pos": "名詞", + "pn": -0.0876166 + }, + { + "surface": "蜀錦", + "readging": "しょっきん", + "pos": "名詞", + "pn": -0.0876842 + }, + { + "surface": "切望", + "readging": "せつぼう", + "pos": "名詞", + "pn": -0.0877867 + }, + { + "surface": "沼", + "readging": "しょう", + "pos": "名詞", + "pn": -0.0878912 + }, + { + "surface": "古往今来", + "readging": "こおうこんらい", + "pos": "名詞", + "pn": -0.0879014 + }, + { + "surface": "身知らず", + "readging": "みしらず", + "pos": "名詞", + "pn": -0.0879088 + }, + { + "surface": "人文科学", + "readging": "じんぶんかがく", + "pos": "名詞", + "pn": -0.0879104 + }, + { + "surface": "在住", + "readging": "ざいじゅう", + "pos": "名詞", + "pn": -0.0879267 + }, + { + "surface": "在世", + "readging": "ざいせ", + "pos": "名詞", + "pn": -0.087932 + }, + { + "surface": "冷灰", + "readging": "れいかい", + "pos": "名詞", + "pn": -0.087993 + }, + { + "surface": "一毛作", + "readging": "いちもうさく", + "pos": "名詞", + "pn": -0.0880417 + }, + { + "surface": "激戦", + "readging": "げきせん", + "pos": "名詞", + "pn": -0.0880453 + }, + { + "surface": "主恩", + "readging": "しゅおん", + "pos": "名詞", + "pn": -0.0880543 + }, + { + "surface": "自然界", + "readging": "しぜんかい", + "pos": "名詞", + "pn": -0.0880577 + }, + { + "surface": "及落", + "readging": "きゅうらく", + "pos": "名詞", + "pn": -0.0880636 + }, + { + "surface": "血盟", + "readging": "けつめい", + "pos": "名詞", + "pn": -0.0880857 + }, + { + "surface": "誓", + "readging": "ちかい", + "pos": "名詞", + "pn": -0.0880857 + }, + { + "surface": "正覚", + "readging": "しょうがく", + "pos": "名詞", + "pn": -0.0880992 + }, + { + "surface": "つんどく", + "readging": "つんどく", + "pos": "名詞", + "pn": -0.088114 + }, + { + "surface": "雷電", + "readging": "らいでん", + "pos": "名詞", + "pn": -0.0881243 + }, + { + "surface": "造艦", + "readging": "ぞうかん", + "pos": "名詞", + "pn": -0.0881571 + }, + { + "surface": "藩老", + "readging": "はんろう", + "pos": "名詞", + "pn": -0.088169 + }, + { + "surface": "学徒", + "readging": "がくと", + "pos": "名詞", + "pn": -0.0881777 + }, + { + "surface": "学寮", + "readging": "がくりょう", + "pos": "名詞", + "pn": -0.0882179 + }, + { + "surface": "ショー", + "readging": "ショー", + "pos": "名詞", + "pn": -0.0882201 + }, + { + "surface": "ギブ アップ", + "readging": "ギブ アップ", + "pos": "名詞", + "pn": -0.088238 + }, + { + "surface": "据える", + "readging": "すえる", + "pos": "動詞", + "pn": -0.0882423 + }, + { + "surface": "バッカス", + "readging": "バッカス", + "pos": "名詞", + "pn": -0.0882999 + }, + { + "surface": "立党", + "readging": "りっとう", + "pos": "名詞", + "pn": -0.0883047 + }, + { + "surface": "姉女房", + "readging": "あねにょうぼう", + "pos": "名詞", + "pn": -0.0883754 + }, + { + "surface": "判官", + "readging": "ほうがん", + "pos": "名詞", + "pn": -0.0884227 + }, + { + "surface": "王侯", + "readging": "おうこう", + "pos": "名詞", + "pn": -0.0884944 + }, + { + "surface": "和暦", + "readging": "われき", + "pos": "名詞", + "pn": -0.0885014 + }, + { + "surface": "都市計画", + "readging": "としけいかく", + "pos": "名詞", + "pn": -0.0885224 + }, + { + "surface": "太初", + "readging": "たいしょ", + "pos": "名詞", + "pn": -0.0885358 + }, + { + "surface": "暴力革命", + "readging": "ぼうりょくかくめい", + "pos": "名詞", + "pn": -0.0885487 + }, + { + "surface": "夜直", + "readging": "やちょく", + "pos": "名詞", + "pn": -0.0885572 + }, + { + "surface": "神祇", + "readging": "じんぎ", + "pos": "名詞", + "pn": -0.0885661 + }, + { + "surface": "食い道楽", + "readging": "くいどうらく", + "pos": "名詞", + "pn": -0.0885849 + }, + { + "surface": "遥遠", + "readging": "ようえん", + "pos": "名詞", + "pn": -0.0886034 + }, + { + "surface": "鵬程", + "readging": "ほうてい", + "pos": "名詞", + "pn": -0.0886034 + }, + { + "surface": "僻遠", + "readging": "へきえん", + "pos": "名詞", + "pn": -0.0886034 + }, + { + "surface": "胆略", + "readging": "たんりゃく", + "pos": "名詞", + "pn": -0.0886647 + }, + { + "surface": "大義名分", + "readging": "たいぎめいぶん", + "pos": "名詞", + "pn": -0.0886648 + }, + { + "surface": "玉什", + "readging": "ぎょくじゅう", + "pos": "名詞", + "pn": -0.0886779 + }, + { + "surface": "退庁", + "readging": "たいちょう", + "pos": "名詞", + "pn": -0.0887138 + }, + { + "surface": "寂声", + "readging": "さびごえ", + "pos": "名詞", + "pn": -0.0887143 + }, + { + "surface": "新身", + "readging": "あらみ", + "pos": "名詞", + "pn": -0.0887281 + }, + { + "surface": "洋本", + "readging": "ようほん", + "pos": "名詞", + "pn": -0.0887326 + }, + { + "surface": "ネプチューン", + "readging": "ネプチューン", + "pos": "名詞", + "pn": -0.0887598 + }, + { + "surface": "月旦", + "readging": "げったん", + "pos": "名詞", + "pn": -0.0887709 + }, + { + "surface": "花芽", + "readging": "はなめ", + "pos": "名詞", + "pn": -0.0887803 + }, + { + "surface": "字解", + "readging": "じかい", + "pos": "名詞", + "pn": -0.0887903 + }, + { + "surface": "お手上げ", + "readging": "おてあげ", + "pos": "名詞", + "pn": -0.0888293 + }, + { + "surface": "無感覚", + "readging": "むかんかく", + "pos": "名詞", + "pn": -0.0888541 + }, + { + "surface": "僻見", + "readging": "へきけん", + "pos": "名詞", + "pn": -0.0888822 + }, + { + "surface": "終業", + "readging": "しゅうぎょう", + "pos": "名詞", + "pn": -0.0888919 + }, + { + "surface": "基点", + "readging": "きてん", + "pos": "名詞", + "pn": -0.0889106 + }, + { + "surface": "笑殺", + "readging": "しょうさつ", + "pos": "名詞", + "pn": -0.0889351 + }, + { + "surface": "具備", + "readging": "ぐび", + "pos": "名詞", + "pn": -0.0889352 + }, + { + "surface": "手裏剣", + "readging": "しゅりけん", + "pos": "名詞", + "pn": -0.0889428 + }, + { + "surface": "重文", + "readging": "じゅうぶん", + "pos": "名詞", + "pn": -0.0889598 + }, + { + "surface": "講筵", + "readging": "こうえん", + "pos": "名詞", + "pn": -0.0889782 + }, + { + "surface": "聞届ける", + "readging": "ききとどける", + "pos": "動詞", + "pn": -0.0890065 + }, + { + "surface": "偶因", + "readging": "ぐういん", + "pos": "名詞", + "pn": -0.0890081 + }, + { + "surface": "外の面", + "readging": "とのも", + "pos": "名詞", + "pn": -0.0890333 + }, + { + "surface": "神国", + "readging": "しんこく", + "pos": "名詞", + "pn": -0.0890444 + }, + { + "surface": "非業", + "readging": "ひごう", + "pos": "名詞", + "pn": -0.0890507 + }, + { + "surface": "弓馬", + "readging": "きゅうば", + "pos": "名詞", + "pn": -0.0891195 + }, + { + "surface": "正格", + "readging": "せいかく", + "pos": "名詞", + "pn": -0.0891591 + }, + { + "surface": "得心", + "readging": "とくしん", + "pos": "名詞", + "pn": -0.0891627 + }, + { + "surface": "足熱", + "readging": "そくねつ", + "pos": "名詞", + "pn": -0.0891827 + }, + { + "surface": "ぴりっと", + "readging": "ぴりっと", + "pos": "副詞", + "pn": -0.0891846 + }, + { + "surface": "成算", + "readging": "せいさん", + "pos": "名詞", + "pn": -0.089198 + }, + { + "surface": "借倒す", + "readging": "かりたおす", + "pos": "動詞", + "pn": -0.0892286 + }, + { + "surface": "朝駆け", + "readging": "あさがけ", + "pos": "名詞", + "pn": -0.0892291 + }, + { + "surface": "紀綱", + "readging": "きこう", + "pos": "名詞", + "pn": -0.0892663 + }, + { + "surface": "忍び足", + "readging": "しのびあし", + "pos": "名詞", + "pn": -0.0893332 + }, + { + "surface": "座視", + "readging": "ざし", + "pos": "名詞", + "pn": -0.0893414 + }, + { + "surface": "新装", + "readging": "しんそう", + "pos": "名詞", + "pn": -0.089346 + }, + { + "surface": "生気", + "readging": "せいき", + "pos": "名詞", + "pn": -0.0893533 + }, + { + "surface": "小曲", + "readging": "しょうきょく", + "pos": "名詞", + "pn": -0.0893565 + }, + { + "surface": "人界", + "readging": "にんがい", + "pos": "名詞", + "pn": -0.0894039 + }, + { + "surface": "軍機", + "readging": "ぐんき", + "pos": "名詞", + "pn": -0.089438 + }, + { + "surface": "正しく", + "readging": "まさしく", + "pos": "副詞", + "pn": -0.0894384 + }, + { + "surface": "先進", + "readging": "せんしん", + "pos": "名詞", + "pn": -0.0894404 + }, + { + "surface": "異質", + "readging": "いしつ", + "pos": "名詞", + "pn": -0.0894487 + }, + { + "surface": "遺風", + "readging": "いふう", + "pos": "名詞", + "pn": -0.0894551 + }, + { + "surface": "盗電", + "readging": "とうでん", + "pos": "名詞", + "pn": -0.0894586 + }, + { + "surface": "国文法", + "readging": "こくぶんぽう", + "pos": "名詞", + "pn": -0.0894717 + }, + { + "surface": "隠然", + "readging": "いんぜん", + "pos": "名詞", + "pn": -0.0895057 + }, + { + "surface": "学風", + "readging": "がくふう", + "pos": "名詞", + "pn": -0.0895124 + }, + { + "surface": "旧幕", + "readging": "きゅうばく", + "pos": "名詞", + "pn": -0.0895372 + }, + { + "surface": "感謝", + "readging": "かんしゃ", + "pos": "名詞", + "pn": -0.0895779 + }, + { + "surface": "差す手", + "readging": "さすて", + "pos": "名詞", + "pn": -0.0896016 + }, + { + "surface": "早引け", + "readging": "はやびけ", + "pos": "名詞", + "pn": -0.0896568 + }, + { + "surface": "遠眼", + "readging": "えんがん", + "pos": "名詞", + "pn": -0.0896884 + }, + { + "surface": "旧情", + "readging": "きゅうじょう", + "pos": "名詞", + "pn": -0.0897788 + }, + { + "surface": "楽壇", + "readging": "がくだん", + "pos": "名詞", + "pn": -0.0897805 + }, + { + "surface": "等差級数", + "readging": "とうさきゅうすう", + "pos": "名詞", + "pn": -0.0897888 + }, + { + "surface": "片肌", + "readging": "かたはだ", + "pos": "名詞", + "pn": -0.0897912 + }, + { + "surface": "テクニカル ターム", + "readging": "テクニカル ターム", + "pos": "名詞", + "pn": -0.0897983 + }, + { + "surface": "味読", + "readging": "みどく", + "pos": "名詞", + "pn": -0.089843 + }, + { + "surface": "知日家", + "readging": "ちにちか", + "pos": "名詞", + "pn": -0.0898469 + }, + { + "surface": "不惑", + "readging": "ふわく", + "pos": "名詞", + "pn": -0.0898675 + }, + { + "surface": "爽涼", + "readging": "そうりょう", + "pos": "名詞", + "pn": -0.0898892 + }, + { + "surface": "散文詩", + "readging": "さんぶんし", + "pos": "名詞", + "pn": -0.0899002 + }, + { + "surface": "終戦", + "readging": "しゅうせん", + "pos": "名詞", + "pn": -0.0899299 + }, + { + "surface": "昇格", + "readging": "しょうかく", + "pos": "名詞", + "pn": -0.0899343 + }, + { + "surface": "年産", + "readging": "ねんさん", + "pos": "名詞", + "pn": -0.0900482 + }, + { + "surface": "荷引き", + "readging": "にびき", + "pos": "名詞", + "pn": -0.0900482 + }, + { + "surface": "没常識", + "readging": "ぼつじょうしき", + "pos": "名詞", + "pn": -0.0900515 + }, + { + "surface": "吟味", + "readging": "ぎんみ", + "pos": "名詞", + "pn": -0.0900772 + }, + { + "surface": "語録", + "readging": "ごろく", + "pos": "名詞", + "pn": -0.0900999 + }, + { + "surface": "竿竹", + "readging": "さおだけ", + "pos": "名詞", + "pn": -0.0901209 + }, + { + "surface": "上刻", + "readging": "じょうこく", + "pos": "名詞", + "pn": -0.0901268 + }, + { + "surface": "咲揃う", + "readging": "さきそろう", + "pos": "動詞", + "pn": -0.0901561 + }, + { + "surface": "購買力", + "readging": "こうばいりょく", + "pos": "名詞", + "pn": -0.0901599 + }, + { + "surface": "唱道", + "readging": "しょうどう", + "pos": "名詞", + "pn": -0.0901668 + }, + { + "surface": "開板", + "readging": "かいはん", + "pos": "名詞", + "pn": -0.0902054 + }, + { + "surface": "大いに", + "readging": "おおいに", + "pos": "副詞", + "pn": -0.0902302 + }, + { + "surface": "明度", + "readging": "めいど", + "pos": "名詞", + "pn": -0.0902438 + }, + { + "surface": "一風", + "readging": "いっぷう", + "pos": "名詞", + "pn": -0.0902474 + }, + { + "surface": "川開き", + "readging": "かわびらき", + "pos": "名詞", + "pn": -0.0902705 + }, + { + "surface": "禄高", + "readging": "ろくだか", + "pos": "名詞", + "pn": -0.0902869 + }, + { + "surface": "億万長者", + "readging": "おくまんちょうじゃ", + "pos": "名詞", + "pn": -0.0903374 + }, + { + "surface": "入定", + "readging": "にゅうじょう", + "pos": "名詞", + "pn": -0.0903398 + }, + { + "surface": "吹捲る", + "readging": "ふきまくる", + "pos": "動詞", + "pn": -0.090357 + }, + { + "surface": "金権", + "readging": "きんけん", + "pos": "名詞", + "pn": -0.0903864 + }, + { + "surface": "若殿", + "readging": "わかとの", + "pos": "名詞", + "pn": -0.0903956 + }, + { + "surface": "土俗", + "readging": "どぞく", + "pos": "名詞", + "pn": -0.0904272 + }, + { + "surface": "儀典", + "readging": "ぎてん", + "pos": "名詞", + "pn": -0.0904282 + }, + { + "surface": "暁天", + "readging": "ぎょうてん", + "pos": "名詞", + "pn": -0.0904663 + }, + { + "surface": "四恩", + "readging": "しおん", + "pos": "名詞", + "pn": -0.0904833 + }, + { + "surface": "電鍍", + "readging": "でんと", + "pos": "名詞", + "pn": -0.0904933 + }, + { + "surface": "気息", + "readging": "きそく", + "pos": "名詞", + "pn": -0.0905034 + }, + { + "surface": "宮家", + "readging": "みやけ", + "pos": "名詞", + "pn": -0.0905493 + }, + { + "surface": "打続く", + "readging": "うちつづく", + "pos": "動詞", + "pn": -0.0905508 + }, + { + "surface": "正弦", + "readging": "せいげん", + "pos": "名詞", + "pn": -0.09058 + }, + { + "surface": "夜郎自大", + "readging": "やろうじだい", + "pos": "名詞", + "pn": -0.0905836 + }, + { + "surface": "利口", + "readging": "りこう", + "pos": "名詞", + "pn": -0.0905838 + }, + { + "surface": "雪化粧", + "readging": "ゆきげしょう", + "pos": "名詞", + "pn": -0.0906071 + }, + { + "surface": "廃朝", + "readging": "はいちょう", + "pos": "名詞", + "pn": -0.09062 + }, + { + "surface": "延延", + "readging": "えんえん", + "pos": "副詞", + "pn": -0.0907348 + }, + { + "surface": "論叢", + "readging": "ろんそう", + "pos": "名詞", + "pn": -0.090756 + }, + { + "surface": "歌人", + "readging": "うたびと", + "pos": "名詞", + "pn": -0.0907744 + }, + { + "surface": "類える", + "readging": "たぐえる", + "pos": "動詞", + "pn": -0.090809 + }, + { + "surface": "ホスト", + "readging": "ホスト", + "pos": "名詞", + "pn": -0.0908154 + }, + { + "surface": "韋駄天", + "readging": "いだてん", + "pos": "名詞", + "pn": -0.090897 + }, + { + "surface": "本意", + "readging": "ほんい", + "pos": "名詞", + "pn": -0.0909153 + }, + { + "surface": "活況", + "readging": "かっきょう", + "pos": "名詞", + "pn": -0.0909659 + }, + { + "surface": "初筆", + "readging": "しょひつ", + "pos": "名詞", + "pn": -0.0909832 + }, + { + "surface": "初度", + "readging": "しょど", + "pos": "名詞", + "pn": -0.0909832 + }, + { + "surface": "水瓶", + "readging": "みずがめ", + "pos": "名詞", + "pn": -0.0910115 + }, + { + "surface": "鳴神", + "readging": "なるかみ", + "pos": "名詞", + "pn": -0.0910115 + }, + { + "surface": "目今", + "readging": "もっこん", + "pos": "名詞", + "pn": -0.091038 + }, + { + "surface": "湛える", + "readging": "たたえる", + "pos": "動詞", + "pn": -0.0910754 + }, + { + "surface": "実数", + "readging": "じっすう", + "pos": "名詞", + "pn": -0.0910806 + }, + { + "surface": "利殖", + "readging": "りしょく", + "pos": "名詞", + "pn": -0.0910825 + }, + { + "surface": "所望", + "readging": "しょもう", + "pos": "名詞", + "pn": -0.0910826 + }, + { + "surface": "芳書", + "readging": "ほうしょ", + "pos": "名詞", + "pn": -0.0911197 + }, + { + "surface": "手間損", + "readging": "てまぞん", + "pos": "名詞", + "pn": -0.0911352 + }, + { + "surface": "賢台", + "readging": "けんだい", + "pos": "名詞", + "pn": -0.0911508 + }, + { + "surface": "威令", + "readging": "いれい", + "pos": "名詞", + "pn": -0.0911755 + }, + { + "surface": "保菌者", + "readging": "ほきんしゃ", + "pos": "名詞", + "pn": -0.0912047 + }, + { + "surface": "英字", + "readging": "えいじ", + "pos": "名詞", + "pn": -0.0912239 + }, + { + "surface": "交響楽", + "readging": "こうきょうがく", + "pos": "名詞", + "pn": -0.0912322 + }, + { + "surface": "知慮", + "readging": "ちりょ", + "pos": "名詞", + "pn": -0.0912373 + }, + { + "surface": "御門", + "readging": "みかど", + "pos": "名詞", + "pn": -0.0912901 + }, + { + "surface": "無口", + "readging": "むくち", + "pos": "名詞", + "pn": -0.0912977 + }, + { + "surface": "蘭方", + "readging": "らんぽう", + "pos": "名詞", + "pn": -0.0913085 + }, + { + "surface": "私道", + "readging": "しどう", + "pos": "名詞", + "pn": -0.0913619 + }, + { + "surface": "啻に", + "readging": "ただに", + "pos": "副詞", + "pn": -0.0913839 + }, + { + "surface": "詰切る", + "readging": "つめきる", + "pos": "動詞", + "pn": -0.0913866 + }, + { + "surface": "尨", + "readging": "むく", + "pos": "名詞", + "pn": -0.091401 + }, + { + "surface": "成人教育", + "readging": "せいじんきょういく", + "pos": "名詞", + "pn": -0.091415 + }, + { + "surface": "ショッピング", + "readging": "ショッピング", + "pos": "名詞", + "pn": -0.0914314 + }, + { + "surface": "玉章", + "readging": "たまずさ", + "pos": "名詞", + "pn": -0.0914353 + }, + { + "surface": "メルクマール", + "readging": "メルクマール", + "pos": "名詞", + "pn": -0.0915025 + }, + { + "surface": "高教", + "readging": "こうきょう", + "pos": "名詞", + "pn": -0.091514 + }, + { + "surface": "ウラニウム", + "readging": "ウラニウム", + "pos": "名詞", + "pn": -0.0915453 + }, + { + "surface": "奇問", + "readging": "きもん", + "pos": "名詞", + "pn": -0.0915831 + }, + { + "surface": "欠配", + "readging": "けっぱい", + "pos": "名詞", + "pn": -0.0916026 + }, + { + "surface": "不定型詩", + "readging": "ふていけいし", + "pos": "名詞", + "pn": -0.0916036 + }, + { + "surface": "一時金", + "readging": "いちじきん", + "pos": "名詞", + "pn": -0.091625 + }, + { + "surface": "母乳", + "readging": "ぼにゅう", + "pos": "名詞", + "pn": -0.091659 + }, + { + "surface": "合成酒", + "readging": "ごうせいしゅ", + "pos": "名詞", + "pn": -0.0916917 + }, + { + "surface": "特設", + "readging": "とくせつ", + "pos": "名詞", + "pn": -0.0916924 + }, + { + "surface": "宣揚", + "readging": "せんよう", + "pos": "名詞", + "pn": -0.0916953 + }, + { + "surface": "れこ", + "readging": "れこ", + "pos": "名詞", + "pn": -0.0917346 + }, + { + "surface": "小宇宙", + "readging": "しょううちゅう", + "pos": "名詞", + "pn": -0.0917645 + }, + { + "surface": "無主", + "readging": "むしゅ", + "pos": "名詞", + "pn": -0.0917874 + }, + { + "surface": "マテリアリズム", + "readging": "マテリアリズム", + "pos": "名詞", + "pn": -0.0918023 + }, + { + "surface": "理非", + "readging": "りひ", + "pos": "名詞", + "pn": -0.0918314 + }, + { + "surface": "口振り", + "readging": "くちぶり", + "pos": "名詞", + "pn": -0.0918383 + }, + { + "surface": "家鳴り", + "readging": "やなり", + "pos": "名詞", + "pn": -0.091843 + }, + { + "surface": "野育ち", + "readging": "のそだち", + "pos": "名詞", + "pn": -0.0918621 + }, + { + "surface": "再吟味", + "readging": "さいぎんみ", + "pos": "名詞", + "pn": -0.091898 + }, + { + "surface": "押し掛ける", + "readging": "おしかける", + "pos": "動詞", + "pn": -0.0919299 + }, + { + "surface": "物腰", + "readging": "ものごし", + "pos": "名詞", + "pn": -0.0919569 + }, + { + "surface": "丁と", + "readging": "ちょうと", + "pos": "副詞", + "pn": -0.0920002 + }, + { + "surface": "忠義", + "readging": "ちゅうぎ", + "pos": "名詞", + "pn": -0.092007 + }, + { + "surface": "網羅", + "readging": "もうら", + "pos": "名詞", + "pn": -0.0920428 + }, + { + "surface": "優形", + "readging": "やさがた", + "pos": "名詞", + "pn": -0.0920689 + }, + { + "surface": "付帯", + "readging": "ふたい", + "pos": "名詞", + "pn": -0.0920821 + }, + { + "surface": "深沈", + "readging": "しんちん", + "pos": "名詞", + "pn": -0.0920893 + }, + { + "surface": "多生", + "readging": "たしょう", + "pos": "名詞", + "pn": -0.0921096 + }, + { + "surface": "官版", + "readging": "かんぱん", + "pos": "名詞", + "pn": -0.0921133 + }, + { + "surface": "中性", + "readging": "ちゅうせい", + "pos": "名詞", + "pn": -0.0921214 + }, + { + "surface": "二等親", + "readging": "にとうしん", + "pos": "名詞", + "pn": -0.0921666 + }, + { + "surface": "入寇", + "readging": "にゅうこう", + "pos": "名詞", + "pn": -0.0921898 + }, + { + "surface": "カム バック", + "readging": "カム バック", + "pos": "名詞", + "pn": -0.0922135 + }, + { + "surface": "受入れ", + "readging": "うけいれ", + "pos": "名詞", + "pn": -0.0922202 + }, + { + "surface": "家捜し", + "readging": "やさがし", + "pos": "名詞", + "pn": -0.0923023 + }, + { + "surface": "キング", + "readging": "キングメーカー", + "pos": "名詞", + "pn": -0.0923338 + }, + { + "surface": "同性", + "readging": "どうせい", + "pos": "名詞", + "pn": -0.092367 + }, + { + "surface": "他聞", + "readging": "たぶん", + "pos": "名詞", + "pn": -0.0924076 + }, + { + "surface": "参観", + "readging": "さんかん", + "pos": "名詞", + "pn": -0.0924243 + }, + { + "surface": "亜喬木", + "readging": "あきょうぼく", + "pos": "名詞", + "pn": -0.0924629 + }, + { + "surface": "涼雨", + "readging": "りょうう", + "pos": "名詞", + "pn": -0.0924865 + }, + { + "surface": "新発意", + "readging": "しんぼち", + "pos": "名詞", + "pn": -0.092509 + }, + { + "surface": "第三国", + "readging": "だいさんごく", + "pos": "名詞", + "pn": -0.0925236 + }, + { + "surface": "花供養", + "readging": "はなくよう", + "pos": "名詞", + "pn": -0.0925483 + }, + { + "surface": "進航", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.0925767 + }, + { + "surface": "無熱", + "readging": "むねつ", + "pos": "名詞", + "pn": -0.0925865 + }, + { + "surface": "虚心", + "readging": "きょしん", + "pos": "名詞", + "pn": -0.0926693 + }, + { + "surface": "洛中", + "readging": "らくちゅう", + "pos": "名詞", + "pn": -0.0926878 + }, + { + "surface": "趣向", + "readging": "しゅこう", + "pos": "名詞", + "pn": -0.0927207 + }, + { + "surface": "開戦", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.0927679 + }, + { + "surface": "自家製", + "readging": "じかせい", + "pos": "名詞", + "pn": -0.0927983 + }, + { + "surface": "平屋", + "readging": "ひらや", + "pos": "名詞", + "pn": -0.0927983 + }, + { + "surface": "清華", + "readging": "せいが", + "pos": "名詞", + "pn": -0.0928123 + }, + { + "surface": "アナーキスト", + "readging": "アナーキスト", + "pos": "名詞", + "pn": -0.0928346 + }, + { + "surface": "自乗", + "readging": "じじょう", + "pos": "名詞", + "pn": -0.0928787 + }, + { + "surface": "門外不出", + "readging": "もんがいふしゅつ", + "pos": "名詞", + "pn": -0.0928983 + }, + { + "surface": "ゼウス", + "readging": "ゼウス", + "pos": "名詞", + "pn": -0.0929429 + }, + { + "surface": "有神論", + "readging": "ゆうしんろん", + "pos": "名詞", + "pn": -0.0929492 + }, + { + "surface": "社交家", + "readging": "しゃこうか", + "pos": "名詞", + "pn": -0.0929679 + }, + { + "surface": "さんざっぱら", + "readging": "さんざっぱら", + "pos": "副詞", + "pn": -0.0929735 + }, + { + "surface": "シンフォニー", + "readging": "シンフォニー", + "pos": "名詞", + "pn": -0.09301 + }, + { + "surface": "エチケット", + "readging": "エチケット", + "pos": "名詞", + "pn": -0.0930428 + }, + { + "surface": "一刀彫", + "readging": "いっとうぼり", + "pos": "名詞", + "pn": -0.0930659 + }, + { + "surface": "衰容", + "readging": "すいよう", + "pos": "名詞", + "pn": -0.0931075 + }, + { + "surface": "有産階級", + "readging": "ゆうさんかいきゅう", + "pos": "名詞", + "pn": -0.0931115 + }, + { + "surface": "ストア学派", + "readging": "ストアがくは", + "pos": "名詞", + "pn": -0.0931286 + }, + { + "surface": "噛合せる", + "readging": "かみあわせる", + "pos": "動詞", + "pn": -0.093137 + }, + { + "surface": "末弟", + "readging": "ばってい", + "pos": "名詞", + "pn": -0.0931798 + }, + { + "surface": "古筆切", + "readging": "こひつぎれ", + "pos": "名詞", + "pn": -0.09324 + }, + { + "surface": "借用", + "readging": "しゃくよう", + "pos": "名詞", + "pn": -0.0932819 + }, + { + "surface": "借覧", + "readging": "しゃくらん", + "pos": "名詞", + "pn": -0.0932819 + }, + { + "surface": "入湯", + "readging": "にゅうとう", + "pos": "名詞", + "pn": -0.0932986 + }, + { + "surface": "撰する", + "readging": "せんする", + "pos": "動詞", + "pn": -0.0932986 + }, + { + "surface": "懐疑論", + "readging": "かいぎろん", + "pos": "名詞", + "pn": -0.0933063 + }, + { + "surface": "チアリーダー", + "readging": "チアリーダー", + "pos": "名詞", + "pn": -0.0933598 + }, + { + "surface": "係員", + "readging": "かかりいん", + "pos": "名詞", + "pn": -0.0933675 + }, + { + "surface": "ウエスタン", + "readging": "ウエスタン", + "pos": "名詞", + "pn": -0.0933922 + }, + { + "surface": "総帥", + "readging": "そうすい", + "pos": "名詞", + "pn": -0.0934102 + }, + { + "surface": "道標", + "readging": "どうひょう", + "pos": "名詞", + "pn": -0.0934416 + }, + { + "surface": "献ずる", + "readging": "けんずる", + "pos": "動詞", + "pn": -0.0934592 + }, + { + "surface": "ローカル", + "readging": "ローカル", + "pos": "名詞", + "pn": -0.0934633 + }, + { + "surface": "手釣", + "readging": "てづり", + "pos": "名詞", + "pn": -0.0934847 + }, + { + "surface": "鋭意", + "readging": "えいい", + "pos": "副詞", + "pn": -0.0935277 + }, + { + "surface": "倍大", + "readging": "ばいだい", + "pos": "名詞", + "pn": -0.0935285 + }, + { + "surface": "校紀", + "readging": "こうき", + "pos": "名詞", + "pn": -0.0935511 + }, + { + "surface": "追想", + "readging": "ついそう", + "pos": "名詞", + "pn": -0.0935829 + }, + { + "surface": "サービス", + "readging": "サービス", + "pos": "名詞", + "pn": -0.0936195 + }, + { + "surface": "例示", + "readging": "れいじ", + "pos": "名詞", + "pn": -0.0936291 + }, + { + "surface": "完工", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.0936368 + }, + { + "surface": "年越し", + "readging": "としこし", + "pos": "名詞", + "pn": -0.0937049 + }, + { + "surface": "閾値", + "readging": "いきち", + "pos": "名詞", + "pn": -0.0937078 + }, + { + "surface": "雌松", + "readging": "めまつ", + "pos": "名詞", + "pn": -0.0937313 + }, + { + "surface": "熱線", + "readging": "ねっせん", + "pos": "名詞", + "pn": -0.09375 + }, + { + "surface": "ハープシコード", + "readging": "ハープシコード", + "pos": "名詞", + "pn": -0.0937576 + }, + { + "surface": "同旨", + "readging": "どうし", + "pos": "名詞", + "pn": -0.0937972 + }, + { + "surface": "喬木", + "readging": "きょうぼく", + "pos": "名詞", + "pn": -0.0938076 + }, + { + "surface": "絶対量", + "readging": "ぜったいりょう", + "pos": "名詞", + "pn": -0.0938231 + }, + { + "surface": "感化院", + "readging": "かんかいん", + "pos": "名詞", + "pn": -0.0938484 + }, + { + "surface": "念仏宗", + "readging": "ねんぶつしゅう", + "pos": "名詞", + "pn": -0.0939036 + }, + { + "surface": "はたと", + "readging": "はたと", + "pos": "副詞", + "pn": -0.0939554 + }, + { + "surface": "日輪", + "readging": "にちりん", + "pos": "名詞", + "pn": -0.0939815 + }, + { + "surface": "容", + "readging": "よう", + "pos": "名詞", + "pn": -0.0939954 + }, + { + "surface": "早生児", + "readging": "そうせいじ", + "pos": "名詞", + "pn": -0.0940321 + }, + { + "surface": "夏日", + "readging": "なつび", + "pos": "名詞", + "pn": -0.0940445 + }, + { + "surface": "親代り", + "readging": "おやがわり", + "pos": "名詞", + "pn": -0.0940976 + }, + { + "surface": "塞翁が馬", + "readging": "さいおうがうま", + "pos": "名詞", + "pn": -0.0941244 + }, + { + "surface": "超自然", + "readging": "ちょうしぜん", + "pos": "名詞", + "pn": -0.0941719 + }, + { + "surface": "道話", + "readging": "どうわ", + "pos": "名詞", + "pn": -0.0942334 + }, + { + "surface": "参政", + "readging": "さんせい", + "pos": "名詞", + "pn": -0.0942427 + }, + { + "surface": "社会科学", + "readging": "しゃかいかがく", + "pos": "名詞", + "pn": -0.0942505 + }, + { + "surface": "刻下", + "readging": "こっか", + "pos": "名詞", + "pn": -0.0942591 + }, + { + "surface": "長座", + "readging": "ちょうざ", + "pos": "名詞", + "pn": -0.0942998 + }, + { + "surface": "法相", + "readging": "ほうしょう", + "pos": "名詞", + "pn": -0.0943127 + }, + { + "surface": "続落", + "readging": "ぞくらく", + "pos": "名詞", + "pn": -0.0943148 + }, + { + "surface": "赤める", + "readging": "あかめる", + "pos": "動詞", + "pn": -0.0943417 + }, + { + "surface": "何様", + "readging": "なにさま", + "pos": "名詞", + "pn": -0.0943985 + }, + { + "surface": "特派", + "readging": "とくは", + "pos": "名詞", + "pn": -0.0944592 + }, + { + "surface": "直門", + "readging": "じきもん", + "pos": "名詞", + "pn": -0.0944733 + }, + { + "surface": "現有", + "readging": "げんゆう", + "pos": "名詞", + "pn": -0.0944905 + }, + { + "surface": "雲表", + "readging": "うんぴょう", + "pos": "名詞", + "pn": -0.0945018 + }, + { + "surface": "仄めく", + "readging": "ほのめく", + "pos": "動詞", + "pn": -0.0945284 + }, + { + "surface": "中旬", + "readging": "ちゅうじゅん", + "pos": "名詞", + "pn": -0.0945312 + }, + { + "surface": "出廬", + "readging": "しゅつろ", + "pos": "名詞", + "pn": -0.0945507 + }, + { + "surface": "グラマー", + "readging": "グラマー", + "pos": "名詞", + "pn": -0.0945575 + }, + { + "surface": "譬え", + "readging": "たとえ", + "pos": "名詞", + "pn": -0.0945591 + }, + { + "surface": "イニシアチブ", + "readging": "イニシアチブ", + "pos": "名詞", + "pn": -0.0945922 + }, + { + "surface": "続映", + "readging": "ぞくえい", + "pos": "名詞", + "pn": -0.0946441 + }, + { + "surface": "灌木", + "readging": "かんぼく", + "pos": "名詞", + "pn": -0.0946568 + }, + { + "surface": "左近", + "readging": "さこん", + "pos": "名詞", + "pn": -0.0946656 + }, + { + "surface": "掛軸", + "readging": "かけじく", + "pos": "名詞", + "pn": -0.0946946 + }, + { + "surface": "あちら帰り", + "readging": "あちらがえり", + "pos": "名詞", + "pn": -0.0947613 + }, + { + "surface": "決河", + "readging": "けっか", + "pos": "名詞", + "pn": -0.094762 + }, + { + "surface": "学制", + "readging": "がくせい", + "pos": "名詞", + "pn": -0.0948205 + }, + { + "surface": "のべたら", + "readging": "のべたら", + "pos": "副詞", + "pn": -0.0948399 + }, + { + "surface": "クローズ アップ", + "readging": "クローズ アップ", + "pos": "名詞", + "pn": -0.0948802 + }, + { + "surface": "在室", + "readging": "ざいしつ", + "pos": "名詞", + "pn": -0.0948882 + }, + { + "surface": "阿古屋貝", + "readging": "あこやがい", + "pos": "名詞", + "pn": -0.0948949 + }, + { + "surface": "唖", + "readging": "あ", + "pos": "名詞", + "pn": -0.0949086 + }, + { + "surface": "似た者夫婦", + "readging": "にたものふうふ", + "pos": "名詞", + "pn": -0.0949402 + }, + { + "surface": "似寄り", + "readging": "により", + "pos": "名詞", + "pn": -0.0949493 + }, + { + "surface": "復興", + "readging": "ふっこう", + "pos": "名詞", + "pn": -0.0950534 + }, + { + "surface": "藹藹", + "readging": "あいあい", + "pos": "名詞", + "pn": -0.0950721 + }, + { + "surface": "遺留", + "readging": "いりゅう", + "pos": "名詞", + "pn": -0.0950844 + }, + { + "surface": "諷詠", + "readging": "ふうえい", + "pos": "名詞", + "pn": -0.0951073 + }, + { + "surface": "綿密", + "readging": "めんみつ", + "pos": "名詞", + "pn": -0.0951297 + }, + { + "surface": "双頭", + "readging": "そうとう", + "pos": "名詞", + "pn": -0.0951398 + }, + { + "surface": "活用語", + "readging": "かつようご", + "pos": "名詞", + "pn": -0.0951462 + }, + { + "surface": "引掛り", + "readging": "ひっかかり", + "pos": "名詞", + "pn": -0.095167 + }, + { + "surface": "庶政", + "readging": "しょせい", + "pos": "名詞", + "pn": -0.0952129 + }, + { + "surface": "惚れ込む", + "readging": "ほれこむ", + "pos": "動詞", + "pn": -0.0952133 + }, + { + "surface": "秘中", + "readging": "ひちゅう", + "pos": "名詞", + "pn": -0.0952972 + }, + { + "surface": "ミモザ", + "readging": "ミモザ", + "pos": "名詞", + "pn": -0.0953105 + }, + { + "surface": "弁別", + "readging": "べんべつ", + "pos": "名詞", + "pn": -0.0953111 + }, + { + "surface": "七珍", + "readging": "しっちん", + "pos": "名詞", + "pn": -0.0953929 + }, + { + "surface": "鬨", + "readging": "とき", + "pos": "名詞", + "pn": -0.0953988 + }, + { + "surface": "堡塁", + "readging": "ほうるい", + "pos": "名詞", + "pn": -0.0954023 + }, + { + "surface": "移ろう", + "readging": "うつろう", + "pos": "動詞", + "pn": -0.0954191 + }, + { + "surface": "独り案内", + "readging": "ひとりあんない", + "pos": "名詞", + "pn": -0.0954356 + }, + { + "surface": "義姉", + "readging": "ぎし", + "pos": "名詞", + "pn": -0.0954381 + }, + { + "surface": "叙位", + "readging": "じょい", + "pos": "名詞", + "pn": -0.09544 + }, + { + "surface": "用益", + "readging": "ようえき", + "pos": "名詞", + "pn": -0.0954459 + }, + { + "surface": "気紛れ", + "readging": "きまぐれ", + "pos": "名詞", + "pn": -0.0954492 + }, + { + "surface": "クァルテット", + "readging": "クァルテット", + "pos": "名詞", + "pn": -0.0954663 + }, + { + "surface": "禅話", + "readging": "ぜんわ", + "pos": "名詞", + "pn": -0.0954698 + }, + { + "surface": "オー デ コロン", + "readging": "オー デ コロン", + "pos": "名詞", + "pn": -0.0954736 + }, + { + "surface": "和食", + "readging": "わしょく", + "pos": "名詞", + "pn": -0.0954749 + }, + { + "surface": "和漢洋", + "readging": "わかんよう", + "pos": "名詞", + "pn": -0.095491 + }, + { + "surface": "和洋", + "readging": "わよう", + "pos": "名詞", + "pn": -0.095491 + }, + { + "surface": "泰西", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.095491 + }, + { + "surface": "詩箋", + "readging": "しせん", + "pos": "名詞", + "pn": -0.0955118 + }, + { + "surface": "付言", + "readging": "ふげん", + "pos": "名詞", + "pn": -0.0955603 + }, + { + "surface": "謝辞", + "readging": "しゃじ", + "pos": "名詞", + "pn": -0.0955603 + }, + { + "surface": "学務", + "readging": "がくむ", + "pos": "名詞", + "pn": -0.0955829 + }, + { + "surface": "コメディー", + "readging": "コメディー", + "pos": "名詞", + "pn": -0.0955857 + }, + { + "surface": "借物", + "readging": "かりもの", + "pos": "名詞", + "pn": -0.0955886 + }, + { + "surface": "蕪雑", + "readging": "ぶざつ", + "pos": "名詞", + "pn": -0.095596 + }, + { + "surface": "断編", + "readging": "だんぺん", + "pos": "名詞", + "pn": -0.095601 + }, + { + "surface": "尊命", + "readging": "そんめい", + "pos": "名詞", + "pn": -0.0956045 + }, + { + "surface": "依命", + "readging": "いめい", + "pos": "名詞", + "pn": -0.0956045 + }, + { + "surface": "地味", + "readging": "じみ", + "pos": "名詞", + "pn": -0.0956052 + }, + { + "surface": "豪農", + "readging": "ごうのう", + "pos": "名詞", + "pn": -0.0956154 + }, + { + "surface": "出港", + "readging": "しゅっこう", + "pos": "名詞", + "pn": -0.0956341 + }, + { + "surface": "片男波", + "readging": "かたおなみ", + "pos": "名詞", + "pn": -0.0956673 + }, + { + "surface": "女体", + "readging": "にょたい", + "pos": "名詞", + "pn": -0.0956673 + }, + { + "surface": "進度", + "readging": "しんど", + "pos": "名詞", + "pn": -0.0956858 + }, + { + "surface": "おかわ", + "readging": "おかわ", + "pos": "名詞", + "pn": -0.0956876 + }, + { + "surface": "代議", + "readging": "だいぎ", + "pos": "名詞", + "pn": -0.0957508 + }, + { + "surface": "男腹", + "readging": "おとこばら", + "pos": "名詞", + "pn": -0.0957561 + }, + { + "surface": "ダース", + "readging": "ダース", + "pos": "名詞", + "pn": -0.0958257 + }, + { + "surface": "情宜", + "readging": "じょうぎ", + "pos": "名詞", + "pn": -0.0958346 + }, + { + "surface": "得道", + "readging": "とくどう", + "pos": "名詞", + "pn": -0.0958546 + }, + { + "surface": "遣り場", + "readging": "やりば", + "pos": "名詞", + "pn": -0.0959002 + }, + { + "surface": "連込む", + "readging": "つれこむ", + "pos": "動詞", + "pn": -0.0959016 + }, + { + "surface": "句集", + "readging": "くしゅう", + "pos": "名詞", + "pn": -0.0959334 + }, + { + "surface": "便蒙", + "readging": "べんもう", + "pos": "名詞", + "pn": -0.0959502 + }, + { + "surface": "来宅", + "readging": "らいたく", + "pos": "名詞", + "pn": -0.0959567 + }, + { + "surface": "プリンス", + "readging": "プリンス", + "pos": "名詞", + "pn": -0.0959664 + }, + { + "surface": "希求", + "readging": "ききゅう", + "pos": "名詞", + "pn": -0.0960076 + }, + { + "surface": "成約", + "readging": "せいやく", + "pos": "名詞", + "pn": -0.0960391 + }, + { + "surface": "献金", + "readging": "けんきん", + "pos": "名詞", + "pn": -0.0960395 + }, + { + "surface": "藩校", + "readging": "はんこう", + "pos": "名詞", + "pn": -0.0960792 + }, + { + "surface": "竜顔", + "readging": "りょうがん", + "pos": "名詞", + "pn": -0.096085 + }, + { + "surface": "本家", + "readging": "ほんけ", + "pos": "名詞", + "pn": -0.0961278 + }, + { + "surface": "昇順", + "readging": "しょうじゅん", + "pos": "名詞", + "pn": -0.096139 + }, + { + "surface": "同胞", + "readging": "どうほう", + "pos": "名詞", + "pn": -0.0961422 + }, + { + "surface": "緑酒", + "readging": "りょくしゅ", + "pos": "名詞", + "pn": -0.0961487 + }, + { + "surface": "底積み", + "readging": "そこづみ", + "pos": "名詞", + "pn": -0.0961629 + }, + { + "surface": "出合頭", + "readging": "であい", + "pos": "名詞", + "pn": -0.0961676 + }, + { + "surface": "新旧", + "readging": "しんきゅう", + "pos": "名詞", + "pn": -0.096169 + }, + { + "surface": "順潮", + "readging": "じゅんちょう", + "pos": "名詞", + "pn": -0.0961994 + }, + { + "surface": "挺身", + "readging": "ていしん", + "pos": "名詞", + "pn": -0.0962148 + }, + { + "surface": "下記", + "readging": "かき", + "pos": "名詞", + "pn": -0.0962303 + }, + { + "surface": "轢殺", + "readging": "れきさつ", + "pos": "名詞", + "pn": -0.0962829 + }, + { + "surface": "話者", + "readging": "わしゃ", + "pos": "名詞", + "pn": -0.0962935 + }, + { + "surface": "括弧", + "readging": "かっこ", + "pos": "名詞", + "pn": -0.0963729 + }, + { + "surface": "断トツ", + "readging": "だんトツ", + "pos": "名詞", + "pn": -0.0963829 + }, + { + "surface": "早変り", + "readging": "はやがわり", + "pos": "名詞", + "pn": -0.096393 + }, + { + "surface": "愛国", + "readging": "あいこく", + "pos": "名詞", + "pn": -0.0963998 + }, + { + "surface": "男女", + "readging": "だんじょ", + "pos": "名詞", + "pn": -0.0964235 + }, + { + "surface": "気取る", + "readging": "けどる", + "pos": "動詞", + "pn": -0.0964474 + }, + { + "surface": "富豪", + "readging": "ふごう", + "pos": "名詞", + "pn": -0.0964797 + }, + { + "surface": "最大限", + "readging": "さいだいげん", + "pos": "名詞", + "pn": -0.0964867 + }, + { + "surface": "会意", + "readging": "かいい", + "pos": "名詞", + "pn": -0.0964964 + }, + { + "surface": "一腰", + "readging": "ひとこし", + "pos": "名詞", + "pn": -0.0965156 + }, + { + "surface": "日系", + "readging": "にっけい", + "pos": "名詞", + "pn": -0.0965541 + }, + { + "surface": "大卒", + "readging": "だいそつ", + "pos": "名詞", + "pn": -0.0965651 + }, + { + "surface": "ア ラ モード", + "readging": "ア ラ モード", + "pos": "名詞", + "pn": -0.0966495 + }, + { + "surface": "アセスメント", + "readging": "アセスメント", + "pos": "名詞", + "pn": -0.0966866 + }, + { + "surface": "磯臭い", + "readging": "いそくさい", + "pos": "形容詞", + "pn": -0.0966953 + }, + { + "surface": "民業", + "readging": "みんぎょう", + "pos": "名詞", + "pn": -0.0966998 + }, + { + "surface": "録する", + "readging": "ろくする", + "pos": "動詞", + "pn": -0.0967502 + }, + { + "surface": "進発", + "readging": "しんぱつ", + "pos": "名詞", + "pn": -0.0968124 + }, + { + "surface": "件名", + "readging": "けんめい", + "pos": "名詞", + "pn": -0.0968586 + }, + { + "surface": "兄嫁", + "readging": "あによめ", + "pos": "名詞", + "pn": -0.0968843 + }, + { + "surface": "前述", + "readging": "ぜんじゅつ", + "pos": "名詞", + "pn": -0.0968882 + }, + { + "surface": "二途", + "readging": "にと", + "pos": "名詞", + "pn": -0.0968883 + }, + { + "surface": "人心", + "readging": "ひとごころ", + "pos": "名詞", + "pn": -0.0969878 + }, + { + "surface": "黒む", + "readging": "くろむ", + "pos": "動詞", + "pn": -0.0970131 + }, + { + "surface": "両統", + "readging": "りょうとう", + "pos": "名詞", + "pn": -0.0970621 + }, + { + "surface": "純良", + "readging": "じゅんりょう", + "pos": "名詞", + "pn": -0.0970871 + }, + { + "surface": "講話", + "readging": "こうわ", + "pos": "名詞", + "pn": -0.0970963 + }, + { + "surface": "超弩級", + "readging": "ちょうどきゅう", + "pos": "名詞", + "pn": -0.0971014 + }, + { + "surface": "空前", + "readging": "くうぜん", + "pos": "名詞", + "pn": -0.0971134 + }, + { + "surface": "納所", + "readging": "なっしょ", + "pos": "名詞", + "pn": -0.0971663 + }, + { + "surface": "どろん", + "readging": "どろん", + "pos": "名詞", + "pn": -0.0971862 + }, + { + "surface": "急転", + "readging": "きゅうてん", + "pos": "名詞", + "pn": -0.0971862 + }, + { + "surface": "上述", + "readging": "じょうじゅつ", + "pos": "名詞", + "pn": -0.0971874 + }, + { + "surface": "誠", + "readging": "まこと", + "pos": "名詞", + "pn": -0.0972159 + }, + { + "surface": "雑婚", + "readging": "ざっこん", + "pos": "名詞", + "pn": -0.0972197 + }, + { + "surface": "愛郷", + "readging": "あいきょう", + "pos": "名詞", + "pn": -0.0972395 + }, + { + "surface": "挙国一致", + "readging": "きょこくいっち", + "pos": "名詞", + "pn": -0.097282 + }, + { + "surface": "切崩す", + "readging": "きりくずす", + "pos": "動詞", + "pn": -0.0972915 + }, + { + "surface": "先後", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.0973232 + }, + { + "surface": "唐衣", + "readging": "からころも", + "pos": "名詞", + "pn": -0.0973238 + }, + { + "surface": "道道", + "readging": "みちみち", + "pos": "副詞", + "pn": -0.0973565 + }, + { + "surface": "神通力", + "readging": "じんづうりき", + "pos": "名詞", + "pn": -0.0973678 + }, + { + "surface": "生物", + "readging": "せいぶつ", + "pos": "名詞", + "pn": -0.0973713 + }, + { + "surface": "思惟", + "readging": "しい", + "pos": "名詞", + "pn": -0.0973811 + }, + { + "surface": "楚", + "readging": "そ", + "pos": "名詞", + "pn": -0.097416 + }, + { + "surface": "般若湯", + "readging": "はんにゃとう", + "pos": "名詞", + "pn": -0.0974423 + }, + { + "surface": "手序", + "readging": "てついで", + "pos": "名詞", + "pn": -0.0974476 + }, + { + "surface": "ずんと", + "readging": "ずんと", + "pos": "副詞", + "pn": -0.0974566 + }, + { + "surface": "国産", + "readging": "こくさん", + "pos": "名詞", + "pn": -0.0974589 + }, + { + "surface": "檀", + "readging": "だん", + "pos": "名詞", + "pn": -0.0974711 + }, + { + "surface": "多義", + "readging": "たぎ", + "pos": "名詞", + "pn": -0.0974871 + }, + { + "surface": "傘寿", + "readging": "さんじゅ", + "pos": "名詞", + "pn": -0.0974933 + }, + { + "surface": "加配", + "readging": "かはい", + "pos": "名詞", + "pn": -0.0975009 + }, + { + "surface": "沙汰", + "readging": "さた", + "pos": "名詞", + "pn": -0.0975449 + }, + { + "surface": "甥", + "readging": "おい", + "pos": "名詞", + "pn": -0.0975684 + }, + { + "surface": "かけくらべ", + "readging": "かけくらべ", + "pos": "名詞", + "pn": -0.0975927 + }, + { + "surface": "継竿", + "readging": "つぎざお", + "pos": "名詞", + "pn": -0.0976418 + }, + { + "surface": "漢籍", + "readging": "かんせき", + "pos": "名詞", + "pn": -0.0976443 + }, + { + "surface": "タイトル", + "readging": "タイトル", + "pos": "名詞", + "pn": -0.0976506 + }, + { + "surface": "偏西風", + "readging": "へんせいふう", + "pos": "名詞", + "pn": -0.0976726 + }, + { + "surface": "山窩", + "readging": "さんか", + "pos": "名詞", + "pn": -0.0976958 + }, + { + "surface": "逆睹", + "readging": "げきと", + "pos": "名詞", + "pn": -0.0977018 + }, + { + "surface": "発起", + "readging": "ほっき", + "pos": "名詞", + "pn": -0.0977041 + }, + { + "surface": "外在", + "readging": "がいざい", + "pos": "名詞", + "pn": -0.0977385 + }, + { + "surface": "御用邸", + "readging": "ごようてい", + "pos": "名詞", + "pn": -0.0977579 + }, + { + "surface": "芳紀", + "readging": "ほうき", + "pos": "名詞", + "pn": -0.0978125 + }, + { + "surface": "プロポーション", + "readging": "プロポーション", + "pos": "名詞", + "pn": -0.0978174 + }, + { + "surface": "一癖", + "readging": "ひとくせ", + "pos": "名詞", + "pn": -0.0978308 + }, + { + "surface": "紫宸殿", + "readging": "ししんでん", + "pos": "名詞", + "pn": -0.0978364 + }, + { + "surface": "忍耐", + "readging": "にんたい", + "pos": "名詞", + "pn": -0.0978528 + }, + { + "surface": "新任", + "readging": "しんにん", + "pos": "名詞", + "pn": -0.0978535 + }, + { + "surface": "掘出し物", + "readging": "ほりだしもの", + "pos": "名詞", + "pn": -0.0979213 + }, + { + "surface": "戦利", + "readging": "せんり", + "pos": "名詞", + "pn": -0.0979259 + }, + { + "surface": "便法", + "readging": "べんぽう", + "pos": "名詞", + "pn": -0.097927 + }, + { + "surface": "著", + "readging": "ちょ", + "pos": "名詞", + "pn": -0.0979518 + }, + { + "surface": "其の筈", + "readging": "そのはず", + "pos": "名詞", + "pn": -0.0979671 + }, + { + "surface": "須らく", + "readging": "すべからく", + "pos": "副詞", + "pn": -0.0979671 + }, + { + "surface": "花言葉", + "readging": "はなことば", + "pos": "名詞", + "pn": -0.0979797 + }, + { + "surface": "平織", + "readging": "ひらおり", + "pos": "名詞", + "pn": -0.0980349 + }, + { + "surface": "切口上", + "readging": "きりこうじょう", + "pos": "名詞", + "pn": -0.0981128 + }, + { + "surface": "三遷の教え", + "readging": "さんせんのおしえ", + "pos": "名詞", + "pn": -0.0981444 + }, + { + "surface": "教育者", + "readging": "きょういくしゃ", + "pos": "名詞", + "pn": -0.0981532 + }, + { + "surface": "お呼び立て", + "readging": "およびたて", + "pos": "名詞", + "pn": -0.098178 + }, + { + "surface": "ぶっつけ", + "readging": "ぶっつけ", + "pos": "名詞", + "pn": -0.098182 + }, + { + "surface": "批准", + "readging": "ひじゅん", + "pos": "名詞", + "pn": -0.098225 + }, + { + "surface": "土地っ子", + "readging": "とちっこ", + "pos": "名詞", + "pn": -0.0982283 + }, + { + "surface": "対外", + "readging": "たいがい", + "pos": "名詞", + "pn": -0.0982357 + }, + { + "surface": "見様", + "readging": "みよう", + "pos": "名詞", + "pn": -0.0982686 + }, + { + "surface": "縁起棚", + "readging": "えんぎだな", + "pos": "名詞", + "pn": -0.0982935 + }, + { + "surface": "秘説", + "readging": "ひせつ", + "pos": "名詞", + "pn": -0.0983386 + }, + { + "surface": "ママ", + "readging": "ママ", + "pos": "名詞", + "pn": -0.0983551 + }, + { + "surface": "ユース ホステル", + "readging": "ユース ホステル", + "pos": "名詞", + "pn": -0.0983593 + }, + { + "surface": "小千世界", + "readging": "しょうせんせかい", + "pos": "名詞", + "pn": -0.0984014 + }, + { + "surface": "禅師", + "readging": "ぜんじ", + "pos": "名詞", + "pn": -0.0984079 + }, + { + "surface": "母堂", + "readging": "ぼどう", + "pos": "名詞", + "pn": -0.0984297 + }, + { + "surface": "小舅", + "readging": "こじゅうと", + "pos": "名詞", + "pn": -0.0984497 + }, + { + "surface": "今般", + "readging": "こんぱん", + "pos": "名詞", + "pn": -0.0984666 + }, + { + "surface": "民営", + "readging": "みんえい", + "pos": "名詞", + "pn": -0.0984672 + }, + { + "surface": "成業", + "readging": "せいぎょう", + "pos": "名詞", + "pn": -0.0984859 + }, + { + "surface": "除隊", + "readging": "じょたい", + "pos": "名詞", + "pn": -0.0984878 + }, + { + "surface": "抱き寝", + "readging": "だきね", + "pos": "名詞", + "pn": -0.0985189 + }, + { + "surface": "西下", + "readging": "さいか", + "pos": "名詞", + "pn": -0.0985308 + }, + { + "surface": "ジープ", + "readging": "ジープ", + "pos": "名詞", + "pn": -0.0985346 + }, + { + "surface": "婚儀", + "readging": "こんぎ", + "pos": "名詞", + "pn": -0.0985771 + }, + { + "surface": "元肥", + "readging": "もとごえ", + "pos": "名詞", + "pn": -0.0985803 + }, + { + "surface": "神色", + "readging": "しんしょく", + "pos": "名詞", + "pn": -0.098589 + }, + { + "surface": "絵かき", + "readging": "えかき", + "pos": "名詞", + "pn": -0.0986169 + }, + { + "surface": "同韻", + "readging": "どういん", + "pos": "名詞", + "pn": -0.0986191 + }, + { + "surface": "やけに", + "readging": "やけに", + "pos": "副詞", + "pn": -0.0986501 + }, + { + "surface": "孫", + "readging": "そん", + "pos": "名詞", + "pn": -0.0987042 + }, + { + "surface": "多食", + "readging": "たしょく", + "pos": "名詞", + "pn": -0.0987164 + }, + { + "surface": "買取る", + "readging": "かいとる", + "pos": "動詞", + "pn": -0.0987458 + }, + { + "surface": "論功", + "readging": "ろんこう", + "pos": "名詞", + "pn": -0.0987506 + }, + { + "surface": "序数詞", + "readging": "じょすうし", + "pos": "名詞", + "pn": -0.0987645 + }, + { + "surface": "ども", + "readging": "ども", + "pos": "名詞", + "pn": -0.0987742 + }, + { + "surface": "舎営", + "readging": "しゃえい", + "pos": "名詞", + "pn": -0.0987972 + }, + { + "surface": "不可侵", + "readging": "ふかしん", + "pos": "名詞", + "pn": -0.0988123 + }, + { + "surface": "手間代", + "readging": "てまだい", + "pos": "名詞", + "pn": -0.0988222 + }, + { + "surface": "非婚", + "readging": "ひこん", + "pos": "名詞", + "pn": -0.0989604 + }, + { + "surface": "新盤", + "readging": "しんばん", + "pos": "名詞", + "pn": -0.0989845 + }, + { + "surface": "口達", + "readging": "こうたつ", + "pos": "名詞", + "pn": -0.0989981 + }, + { + "surface": "数行", + "readging": "すうこう", + "pos": "名詞", + "pn": -0.0989983 + }, + { + "surface": "本命", + "readging": "ほんめい", + "pos": "名詞", + "pn": -0.0990032 + }, + { + "surface": "学位", + "readging": "がくい", + "pos": "名詞", + "pn": -0.0990039 + }, + { + "surface": "国利", + "readging": "こくり", + "pos": "名詞", + "pn": -0.0990331 + }, + { + "surface": "師父", + "readging": "しふ", + "pos": "名詞", + "pn": -0.0990518 + }, + { + "surface": "半寿", + "readging": "はんじゅ", + "pos": "名詞", + "pn": -0.0990769 + }, + { + "surface": "想到", + "readging": "そうとう", + "pos": "名詞", + "pn": -0.0990965 + }, + { + "surface": "喪主", + "readging": "もしゅ", + "pos": "名詞", + "pn": -0.0991223 + }, + { + "surface": "万骨", + "readging": "ばんこつ", + "pos": "名詞", + "pn": -0.099132 + }, + { + "surface": "公海", + "readging": "こうかい", + "pos": "名詞", + "pn": -0.0991384 + }, + { + "surface": "一蹴", + "readging": "いっしゅう", + "pos": "名詞", + "pn": -0.0991518 + }, + { + "surface": "容認", + "readging": "ようにん", + "pos": "名詞", + "pn": -0.0991584 + }, + { + "surface": "凡眼", + "readging": "ぼんがん", + "pos": "名詞", + "pn": -0.0991631 + }, + { + "surface": "入浸る", + "readging": "いりびたる", + "pos": "動詞", + "pn": -0.0991695 + }, + { + "surface": "官服", + "readging": "かんぷく", + "pos": "名詞", + "pn": -0.0991823 + }, + { + "surface": "ぱっちり", + "readging": "ぱっちり", + "pos": "副詞", + "pn": -0.0991894 + }, + { + "surface": "小計", + "readging": "しょうけい", + "pos": "名詞", + "pn": -0.0992306 + }, + { + "surface": "ガム", + "readging": "ガム", + "pos": "名詞", + "pn": -0.0992322 + }, + { + "surface": "技", + "readging": "ぎ", + "pos": "名詞", + "pn": -0.0992395 + }, + { + "surface": "男優", + "readging": "だんゆう", + "pos": "名詞", + "pn": -0.0992418 + }, + { + "surface": "間接選挙", + "readging": "かんせつせんきょ", + "pos": "名詞", + "pn": -0.0992434 + }, + { + "surface": "終始一貫", + "readging": "しゅうしいっかん", + "pos": "副詞", + "pn": -0.0993038 + }, + { + "surface": "白星", + "readging": "しろぼし", + "pos": "名詞", + "pn": -0.0993341 + }, + { + "surface": "表替", + "readging": "おもてがえ", + "pos": "名詞", + "pn": -0.0994215 + }, + { + "surface": "使い走り", + "readging": "つかいはしり", + "pos": "名詞", + "pn": -0.0994231 + }, + { + "surface": "全姿", + "readging": "ぜんし", + "pos": "名詞", + "pn": -0.0994468 + }, + { + "surface": "有理数", + "readging": "ゆうりすう", + "pos": "名詞", + "pn": -0.0994468 + }, + { + "surface": "国威", + "readging": "こくい", + "pos": "名詞", + "pn": -0.0994982 + }, + { + "surface": "当選", + "readging": "とうせん", + "pos": "名詞", + "pn": -0.0995169 + }, + { + "surface": "少尉", + "readging": "しょうい", + "pos": "名詞", + "pn": -0.0995312 + }, + { + "surface": "八", + "readging": "や", + "pos": "名詞", + "pn": -0.0995511 + }, + { + "surface": "フリーター", + "readging": "フリーター", + "pos": "名詞", + "pn": -0.0995632 + }, + { + "surface": "水冷", + "readging": "すいれい", + "pos": "名詞", + "pn": -0.0995716 + }, + { + "surface": "陶酔", + "readging": "とうすい", + "pos": "名詞", + "pn": -0.0995784 + }, + { + "surface": "都営", + "readging": "とえい", + "pos": "名詞", + "pn": -0.0996133 + }, + { + "surface": "ひょろつく", + "readging": "ひょろつく", + "pos": "動詞", + "pn": -0.0996465 + }, + { + "surface": "任国", + "readging": "にんごく", + "pos": "名詞", + "pn": -0.0996564 + }, + { + "surface": "仮綴", + "readging": "かりとじ", + "pos": "名詞", + "pn": -0.0997137 + }, + { + "surface": "学術", + "readging": "がくじゅつ", + "pos": "名詞", + "pn": -0.0997332 + }, + { + "surface": "律蔵", + "readging": "りつぞう", + "pos": "名詞", + "pn": -0.0997424 + }, + { + "surface": "パルテノン", + "readging": "パルテノン", + "pos": "名詞", + "pn": -0.0997439 + }, + { + "surface": "農法", + "readging": "のうほう", + "pos": "名詞", + "pn": -0.0997628 + }, + { + "surface": "賃上げ", + "readging": "ちんあげ", + "pos": "名詞", + "pn": -0.0997903 + }, + { + "surface": "赤芽芋", + "readging": "あかめいも", + "pos": "名詞", + "pn": -0.099792 + }, + { + "surface": "評議員", + "readging": "ひょうぎいん", + "pos": "名詞", + "pn": -0.0998205 + }, + { + "surface": "かいなで", + "readging": "かいなで", + "pos": "名詞", + "pn": -0.0998523 + }, + { + "surface": "師家", + "readging": "しけ", + "pos": "名詞", + "pn": -0.0998661 + }, + { + "surface": "産声", + "readging": "うぶごえ", + "pos": "名詞", + "pn": -0.0998741 + }, + { + "surface": "追求", + "readging": "ついきゅう", + "pos": "名詞", + "pn": -0.0998839 + }, + { + "surface": "主峰", + "readging": "しゅほう", + "pos": "名詞", + "pn": -0.0998937 + }, + { + "surface": "半人足", + "readging": "はんにんそく", + "pos": "名詞", + "pn": -0.0999261 + }, + { + "surface": "棍棒", + "readging": "こんぼう", + "pos": "名詞", + "pn": -0.0999264 + }, + { + "surface": "当座預金", + "readging": "とうざよきん", + "pos": "名詞", + "pn": -0.0999526 + }, + { + "surface": "復習", + "readging": "ふくしゅう", + "pos": "名詞", + "pn": -0.0999543 + }, + { + "surface": "学理", + "readging": "がくり", + "pos": "名詞", + "pn": -0.0999966 + }, + { + "surface": "無始無終", + "readging": "むしむしゅう", + "pos": "名詞", + "pn": -0.1 + }, + { + "surface": "再調", + "readging": "さいちょう", + "pos": "名詞", + "pn": -0.100038 + }, + { + "surface": "偸安", + "readging": "とうあん", + "pos": "名詞", + "pn": -0.100053 + }, + { + "surface": "王族", + "readging": "おうぞく", + "pos": "名詞", + "pn": -0.100077 + }, + { + "surface": "風折れ", + "readging": "かざおれ", + "pos": "名詞", + "pn": -0.100089 + }, + { + "surface": "さらさら", + "readging": "さらさら", + "pos": "副詞", + "pn": -0.100105 + }, + { + "surface": "抱合", + "readging": "ほうごう", + "pos": "名詞", + "pn": -0.100112 + }, + { + "surface": "逢引", + "readging": "あいびき", + "pos": "名詞", + "pn": -0.100183 + }, + { + "surface": "県勢", + "readging": "けんせい", + "pos": "名詞", + "pn": -0.100256 + }, + { + "surface": "年頭", + "readging": "ねんとう", + "pos": "名詞", + "pn": -0.100289 + }, + { + "surface": "オン エア", + "readging": "オン エア", + "pos": "名詞", + "pn": -0.100296 + }, + { + "surface": "公営", + "readging": "こうえい", + "pos": "名詞", + "pn": -0.100302 + }, + { + "surface": "生生", + "readging": "せいせい", + "pos": "名詞", + "pn": -0.100319 + }, + { + "surface": "生死", + "readging": "しょうし", + "pos": "名詞", + "pn": -0.100322 + }, + { + "surface": "朝間", + "readging": "あさま", + "pos": "名詞", + "pn": -0.100324 + }, + { + "surface": "縦隊", + "readging": "じゅうたい", + "pos": "名詞", + "pn": -0.10035 + }, + { + "surface": "訥訥", + "readging": "とつとつ", + "pos": "名詞", + "pn": -0.100378 + }, + { + "surface": "浮流", + "readging": "ふりゅう", + "pos": "名詞", + "pn": -0.100409 + }, + { + "surface": "弥助", + "readging": "やすけ", + "pos": "名詞", + "pn": -0.100413 + }, + { + "surface": "庭叩き", + "readging": "にわたたき", + "pos": "名詞", + "pn": -0.100413 + }, + { + "surface": "いとど", + "readging": "いとど", + "pos": "副詞", + "pn": -0.100413 + }, + { + "surface": "帰営", + "readging": "きえい", + "pos": "名詞", + "pn": -0.100415 + }, + { + "surface": "目頭", + "readging": "めがしら", + "pos": "名詞", + "pn": -0.100416 + }, + { + "surface": "カップル", + "readging": "カップル", + "pos": "名詞", + "pn": -0.100424 + }, + { + "surface": "地方分権", + "readging": "ちほうぶんけん", + "pos": "名詞", + "pn": -0.100446 + }, + { + "surface": "半夜", + "readging": "はんや", + "pos": "名詞", + "pn": -0.100457 + }, + { + "surface": "場所割", + "readging": "ばしょわり", + "pos": "名詞", + "pn": -0.100462 + }, + { + "surface": "殿宇", + "readging": "でんう", + "pos": "名詞", + "pn": -0.100478 + }, + { + "surface": "先覚", + "readging": "せんかく", + "pos": "名詞", + "pn": -0.10048 + }, + { + "surface": "例題", + "readging": "れいだい", + "pos": "名詞", + "pn": -0.100504 + }, + { + "surface": "関心事", + "readging": "かんしんじ", + "pos": "名詞", + "pn": -0.100531 + }, + { + "surface": "長欠", + "readging": "ちょうけつ", + "pos": "名詞", + "pn": -0.100532 + }, + { + "surface": "王子", + "readging": "おうじ", + "pos": "名詞", + "pn": -0.100563 + }, + { + "surface": "仏界", + "readging": "ぶっかい", + "pos": "名詞", + "pn": -0.100603 + }, + { + "surface": "約諾", + "readging": "やくだく", + "pos": "名詞", + "pn": -0.100607 + }, + { + "surface": "立食い", + "readging": "たちぐい", + "pos": "名詞", + "pn": -0.10061 + }, + { + "surface": "切片", + "readging": "せっぺん", + "pos": "名詞", + "pn": -0.10062 + }, + { + "surface": "創造", + "readging": "そうぞう", + "pos": "名詞", + "pn": -0.100648 + }, + { + "surface": "履行", + "readging": "りこう", + "pos": "名詞", + "pn": -0.100657 + }, + { + "surface": "日直", + "readging": "にっちょく", + "pos": "名詞", + "pn": -0.100666 + }, + { + "surface": "酒客", + "readging": "しゅかく", + "pos": "名詞", + "pn": -0.10067 + }, + { + "surface": "空位", + "readging": "くうい", + "pos": "名詞", + "pn": -0.100674 + }, + { + "surface": "具現", + "readging": "ぐげん", + "pos": "名詞", + "pn": -0.100683 + }, + { + "surface": "御方", + "readging": "おかた", + "pos": "名詞", + "pn": -0.100689 + }, + { + "surface": "音譜", + "readging": "おんぷ", + "pos": "名詞", + "pn": -0.100706 + }, + { + "surface": "訳出", + "readging": "やくしゅつ", + "pos": "名詞", + "pn": -0.100722 + }, + { + "surface": "向日性", + "readging": "こうじつせい", + "pos": "名詞", + "pn": -0.100742 + }, + { + "surface": "壁掛", + "readging": "かべかけ", + "pos": "名詞", + "pn": -0.100771 + }, + { + "surface": "丁年", + "readging": "ていねん", + "pos": "名詞", + "pn": -0.100772 + }, + { + "surface": "専行", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.100802 + }, + { + "surface": "百戦", + "readging": "ひゃくせん", + "pos": "名詞", + "pn": -0.100808 + }, + { + "surface": "師範代", + "readging": "しはんだい", + "pos": "名詞", + "pn": -0.10082 + }, + { + "surface": "ターン", + "readging": "ターン", + "pos": "名詞", + "pn": -0.100865 + }, + { + "surface": "童詩", + "readging": "どうし", + "pos": "名詞", + "pn": -0.100884 + }, + { + "surface": "草色", + "readging": "くさいろ", + "pos": "名詞", + "pn": -0.100894 + }, + { + "surface": "分地", + "readging": "ぶんち", + "pos": "名詞", + "pn": -0.100948 + }, + { + "surface": "独り者", + "readging": "ひとりもの", + "pos": "名詞", + "pn": -0.100951 + }, + { + "surface": "メーカー", + "readging": "メーカー", + "pos": "名詞", + "pn": -0.100978 + }, + { + "surface": "処世", + "readging": "しょせい", + "pos": "名詞", + "pn": -0.101011 + }, + { + "surface": "初声", + "readging": "はつこえ", + "pos": "名詞", + "pn": -0.101017 + }, + { + "surface": "採石", + "readging": "さいせき", + "pos": "名詞", + "pn": -0.101018 + }, + { + "surface": "扶植", + "readging": "ふしょく", + "pos": "名詞", + "pn": -0.101033 + }, + { + "surface": "右折", + "readging": "うせつ", + "pos": "名詞", + "pn": -0.101044 + }, + { + "surface": "共編", + "readging": "きょうへん", + "pos": "名詞", + "pn": -0.101084 + }, + { + "surface": "敵勢", + "readging": "てきせい", + "pos": "名詞", + "pn": -0.101107 + }, + { + "surface": "寸書", + "readging": "すんしょ", + "pos": "名詞", + "pn": -0.101122 + }, + { + "surface": "変容", + "readging": "へんよう", + "pos": "名詞", + "pn": -0.101138 + }, + { + "surface": "変貌", + "readging": "へんぼう", + "pos": "名詞", + "pn": -0.101138 + }, + { + "surface": "ズロース", + "readging": "ズロース", + "pos": "名詞", + "pn": -0.101151 + }, + { + "surface": "監修", + "readging": "かんしゅう", + "pos": "名詞", + "pn": -0.101174 + }, + { + "surface": "長考", + "readging": "ちょうこう", + "pos": "名詞", + "pn": -0.101183 + }, + { + "surface": "其者", + "readging": "それしゃ", + "pos": "名詞", + "pn": -0.101184 + }, + { + "surface": "応募", + "readging": "おうぼ", + "pos": "名詞", + "pn": -0.101192 + }, + { + "surface": "筆無精", + "readging": "ふでぶしょう", + "pos": "名詞", + "pn": -0.101225 + }, + { + "surface": "上半期", + "readging": "かみはんき", + "pos": "名詞", + "pn": -0.101238 + }, + { + "surface": "摘果", + "readging": "てきか", + "pos": "名詞", + "pn": -0.101252 + }, + { + "surface": "壌土", + "readging": "じょうど", + "pos": "名詞", + "pn": -0.101278 + }, + { + "surface": "地銀", + "readging": "ちぎん", + "pos": "名詞", + "pn": -0.10129 + }, + { + "surface": "予言", + "readging": "よげん", + "pos": "名詞", + "pn": -0.101299 + }, + { + "surface": "無医村", + "readging": "むいそん", + "pos": "名詞", + "pn": -0.101316 + }, + { + "surface": "目配り", + "readging": "めくばり", + "pos": "名詞", + "pn": -0.101343 + }, + { + "surface": "満山", + "readging": "まんざん", + "pos": "名詞", + "pn": -0.101354 + }, + { + "surface": "来世", + "readging": "らいせ", + "pos": "名詞", + "pn": -0.101384 + }, + { + "surface": "身嗜み", + "readging": "みだしなみ", + "pos": "名詞", + "pn": -0.101386 + }, + { + "surface": "熱愛", + "readging": "ねつあい", + "pos": "名詞", + "pn": -0.101387 + }, + { + "surface": "棒ちぎり", + "readging": "ぼうちぎり", + "pos": "名詞", + "pn": -0.101394 + }, + { + "surface": "メヌエット", + "readging": "メヌエット", + "pos": "名詞", + "pn": -0.101409 + }, + { + "surface": "出郷", + "readging": "しゅっきょう", + "pos": "名詞", + "pn": -0.101445 + }, + { + "surface": "空茶", + "readging": "からちゃ", + "pos": "名詞", + "pn": -0.101507 + }, + { + "surface": "奉呈", + "readging": "ほうてい", + "pos": "名詞", + "pn": -0.101519 + }, + { + "surface": "雑益", + "readging": "ざつえき", + "pos": "名詞", + "pn": -0.101542 + }, + { + "surface": "雑学", + "readging": "ざつがく", + "pos": "名詞", + "pn": -0.101568 + }, + { + "surface": "詩境", + "readging": "しきょう", + "pos": "名詞", + "pn": -0.101573 + }, + { + "surface": "域外", + "readging": "いきがい", + "pos": "名詞", + "pn": -0.101588 + }, + { + "surface": "猛攻", + "readging": "もうこう", + "pos": "名詞", + "pn": -0.101593 + }, + { + "surface": "排撃", + "readging": "はいげき", + "pos": "名詞", + "pn": -0.101593 + }, + { + "surface": "現制", + "readging": "げんせい", + "pos": "名詞", + "pn": -0.101594 + }, + { + "surface": "早便", + "readging": "はやびん", + "pos": "名詞", + "pn": -0.101602 + }, + { + "surface": "起稿", + "readging": "きこう", + "pos": "名詞", + "pn": -0.101619 + }, + { + "surface": "下賤", + "readging": "げせん", + "pos": "名詞", + "pn": -0.101638 + }, + { + "surface": "病勢", + "readging": "びょうせい", + "pos": "名詞", + "pn": -0.10167 + }, + { + "surface": "痛飲", + "readging": "つういん", + "pos": "名詞", + "pn": -0.101678 + }, + { + "surface": "蚕棚", + "readging": "こだな", + "pos": "名詞", + "pn": -0.101696 + }, + { + "surface": "枠内", + "readging": "わくない", + "pos": "名詞", + "pn": -0.101716 + }, + { + "surface": "銀燭", + "readging": "ぎんしょく", + "pos": "名詞", + "pn": -0.101725 + }, + { + "surface": "機上", + "readging": "きじょう", + "pos": "名詞", + "pn": -0.10176 + }, + { + "surface": "ぱっくり", + "readging": "ぱっくり", + "pos": "副詞", + "pn": -0.101762 + }, + { + "surface": "オルグ", + "readging": "オルグ", + "pos": "名詞", + "pn": -0.101785 + }, + { + "surface": "準則", + "readging": "じゅんそく", + "pos": "名詞", + "pn": -0.101786 + }, + { + "surface": "修法", + "readging": "ずほう", + "pos": "名詞", + "pn": -0.101808 + }, + { + "surface": "和様", + "readging": "わよう", + "pos": "名詞", + "pn": -0.101855 + }, + { + "surface": "大写し", + "readging": "おおうつし", + "pos": "名詞", + "pn": -0.101868 + }, + { + "surface": "思い設ける", + "readging": "おもいもうける", + "pos": "動詞", + "pn": -0.101883 + }, + { + "surface": "大政", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.101883 + }, + { + "surface": "矮躯", + "readging": "わいく", + "pos": "名詞", + "pn": -0.101897 + }, + { + "surface": "大命", + "readging": "たいめい", + "pos": "名詞", + "pn": -0.101913 + }, + { + "surface": "難行道", + "readging": "なんぎょうどう", + "pos": "名詞", + "pn": -0.101917 + }, + { + "surface": "聖業", + "readging": "せいぎょう", + "pos": "名詞", + "pn": -0.101941 + }, + { + "surface": "格段", + "readging": "かくだん", + "pos": "副詞", + "pn": -0.101951 + }, + { + "surface": "暮夜", + "readging": "ぼや", + "pos": "名詞", + "pn": -0.101953 + }, + { + "surface": "文人画", + "readging": "ぶんじんが", + "pos": "名詞", + "pn": -0.102002 + }, + { + "surface": "祈念", + "readging": "きねん", + "pos": "名詞", + "pn": -0.10202 + }, + { + "surface": "大方", + "readging": "たいほう", + "pos": "名詞", + "pn": -0.102021 + }, + { + "surface": "持参", + "readging": "じさん", + "pos": "名詞", + "pn": -0.102029 + }, + { + "surface": "年頭", + "readging": "としがしら", + "pos": "名詞", + "pn": -0.102037 + }, + { + "surface": "大奥", + "readging": "おおおく", + "pos": "名詞", + "pn": -0.102079 + }, + { + "surface": "時間帯", + "readging": "じかんたい", + "pos": "名詞", + "pn": -0.102148 + }, + { + "surface": "打留め", + "readging": "うちどめ", + "pos": "名詞", + "pn": -0.10215 + }, + { + "surface": "宿敵", + "readging": "しゅくてき", + "pos": "名詞", + "pn": -0.102173 + }, + { + "surface": "無制限", + "readging": "むせいげん", + "pos": "名詞", + "pn": -0.102178 + }, + { + "surface": "居着く", + "readging": "いつく", + "pos": "動詞", + "pn": -0.102224 + }, + { + "surface": "縷説", + "readging": "るせつ", + "pos": "名詞", + "pn": -0.102266 + }, + { + "surface": "因由", + "readging": "いんゆ", + "pos": "名詞", + "pn": -0.10229 + }, + { + "surface": "人好き", + "readging": "ひとずき", + "pos": "名詞", + "pn": -0.102309 + }, + { + "surface": "見上げる", + "readging": "みあげる", + "pos": "動詞", + "pn": -0.102319 + }, + { + "surface": "拝外", + "readging": "はいがい", + "pos": "名詞", + "pn": -0.10233 + }, + { + "surface": "臨書", + "readging": "りんしょ", + "pos": "名詞", + "pn": -0.102337 + }, + { + "surface": "下刻", + "readging": "げこく", + "pos": "名詞", + "pn": -0.102339 + }, + { + "surface": "引喩", + "readging": "いんゆ", + "pos": "名詞", + "pn": -0.102348 + }, + { + "surface": "人身売買", + "readging": "じんしんばいばい", + "pos": "名詞", + "pn": -0.10236 + }, + { + "surface": "帥", + "readging": "そち", + "pos": "名詞", + "pn": -0.102388 + }, + { + "surface": "素肌", + "readging": "すはだ", + "pos": "名詞", + "pn": -0.102389 + }, + { + "surface": "赤誠", + "readging": "せきせい", + "pos": "名詞", + "pn": -0.102404 + }, + { + "surface": "真宗", + "readging": "しんしゅう", + "pos": "名詞", + "pn": -0.102426 + }, + { + "surface": "読人", + "readging": "よみびと", + "pos": "名詞", + "pn": -0.102435 + }, + { + "surface": "純朴", + "readging": "じゅんぼく", + "pos": "名詞", + "pn": -0.102462 + }, + { + "surface": "沢山", + "readging": "たくさん", + "pos": "副詞", + "pn": -0.102477 + }, + { + "surface": "相愛", + "readging": "そうあい", + "pos": "名詞", + "pn": -0.102486 + }, + { + "surface": "降順", + "readging": "こうじゅん", + "pos": "名詞", + "pn": -0.102526 + }, + { + "surface": "転戦", + "readging": "てんせん", + "pos": "名詞", + "pn": -0.102555 + }, + { + "surface": "外教", + "readging": "がいきょう", + "pos": "名詞", + "pn": -0.102563 + }, + { + "surface": "清栄", + "readging": "せいえい", + "pos": "名詞", + "pn": -0.102566 + }, + { + "surface": "此岸", + "readging": "しがん", + "pos": "名詞", + "pn": -0.102566 + }, + { + "surface": "竜王", + "readging": "りゅうおう", + "pos": "名詞", + "pn": -0.102594 + }, + { + "surface": "ライブ", + "readging": "ライブ", + "pos": "名詞", + "pn": -0.102606 + }, + { + "surface": "立つ瀬", + "readging": "たつせ", + "pos": "名詞", + "pn": -0.102607 + }, + { + "surface": "勅許", + "readging": "ちょっきょ", + "pos": "名詞", + "pn": -0.102626 + }, + { + "surface": "水耕法", + "readging": "すいこうほう", + "pos": "名詞", + "pn": -0.102628 + }, + { + "surface": "処断", + "readging": "しょだん", + "pos": "名詞", + "pn": -0.102687 + }, + { + "surface": "プロバビリティー", + "readging": "プロバビリティー", + "pos": "名詞", + "pn": -0.102693 + }, + { + "surface": "定植", + "readging": "ていしょく", + "pos": "名詞", + "pn": -0.102696 + }, + { + "surface": "貴僧", + "readging": "きそう", + "pos": "名詞", + "pn": -0.102713 + }, + { + "surface": "聴講", + "readging": "ちょうこう", + "pos": "名詞", + "pn": -0.102724 + }, + { + "surface": "上履", + "readging": "うわばき", + "pos": "名詞", + "pn": -0.102731 + }, + { + "surface": "提琴", + "readging": "ていきん", + "pos": "名詞", + "pn": -0.102738 + }, + { + "surface": "面談", + "readging": "めんだん", + "pos": "名詞", + "pn": -0.10283 + }, + { + "surface": "お新香", + "readging": "おしんこ", + "pos": "名詞", + "pn": -0.10284 + }, + { + "surface": "配球", + "readging": "はいきゅう", + "pos": "名詞", + "pn": -0.102861 + }, + { + "surface": "真筆", + "readging": "しんぴつ", + "pos": "名詞", + "pn": -0.102866 + }, + { + "surface": "最盛期", + "readging": "さいせいき", + "pos": "名詞", + "pn": -0.10292 + }, + { + "surface": "芸苑", + "readging": "げいえん", + "pos": "名詞", + "pn": -0.102923 + }, + { + "surface": "薬学", + "readging": "やくがく", + "pos": "名詞", + "pn": -0.102938 + }, + { + "surface": "宗務", + "readging": "しゅうむ", + "pos": "名詞", + "pn": -0.102939 + }, + { + "surface": "登極", + "readging": "とうきょく", + "pos": "名詞", + "pn": -0.102947 + }, + { + "surface": "招宴", + "readging": "しょうえん", + "pos": "名詞", + "pn": -0.102948 + }, + { + "surface": "公募", + "readging": "こうぼ", + "pos": "名詞", + "pn": -0.103014 + }, + { + "surface": "命乞い", + "readging": "いのちごい", + "pos": "名詞", + "pn": -0.103026 + }, + { + "surface": "画壇", + "readging": "がだん", + "pos": "名詞", + "pn": -0.103043 + }, + { + "surface": "因果律", + "readging": "いんがりつ", + "pos": "名詞", + "pn": -0.103054 + }, + { + "surface": "知能指数", + "readging": "ちのうしすう", + "pos": "名詞", + "pn": -0.103071 + }, + { + "surface": "名称", + "readging": "めいしょう", + "pos": "名詞", + "pn": -0.103093 + }, + { + "surface": "二人", + "readging": "ふたり", + "pos": "名詞", + "pn": -0.103128 + }, + { + "surface": "レジャー", + "readging": "レジャー", + "pos": "名詞", + "pn": -0.103169 + }, + { + "surface": "倍額", + "readging": "ばいがく", + "pos": "名詞", + "pn": -0.103174 + }, + { + "surface": "掴み金", + "readging": "つかみがね", + "pos": "名詞", + "pn": -0.103174 + }, + { + "surface": "大枚", + "readging": "たいまい", + "pos": "名詞", + "pn": -0.103174 + }, + { + "surface": "名訳", + "readging": "めいやく", + "pos": "名詞", + "pn": -0.103215 + }, + { + "surface": "同職", + "readging": "どうしょく", + "pos": "名詞", + "pn": -0.103227 + }, + { + "surface": "追立てる", + "readging": "おいたてる", + "pos": "動詞", + "pn": -0.103283 + }, + { + "surface": "造血", + "readging": "ぞうけつ", + "pos": "名詞", + "pn": -0.103314 + }, + { + "surface": "夕ずつ", + "readging": "ゆうずつ", + "pos": "名詞", + "pn": -0.103335 + }, + { + "surface": "懇命", + "readging": "こんめい", + "pos": "名詞", + "pn": -0.103343 + }, + { + "surface": "サクラメント", + "readging": "サクラメント", + "pos": "名詞", + "pn": -0.103355 + }, + { + "surface": "外征", + "readging": "がいせい", + "pos": "名詞", + "pn": -0.10337 + }, + { + "surface": "自宗", + "readging": "じしゅう", + "pos": "名詞", + "pn": -0.103405 + }, + { + "surface": "丹前", + "readging": "たんぜん", + "pos": "名詞", + "pn": -0.103407 + }, + { + "surface": "面忘れ", + "readging": "おもわすれ", + "pos": "名詞", + "pn": -0.103419 + }, + { + "surface": "富本節", + "readging": "とみもとぶし", + "pos": "名詞", + "pn": -0.103474 + }, + { + "surface": "卑屈", + "readging": "ひくつ", + "pos": "名詞", + "pn": -0.103495 + }, + { + "surface": "強直", + "readging": "きょうちょく", + "pos": "名詞", + "pn": -0.103513 + }, + { + "surface": "アナ", + "readging": "アナ", + "pos": "名詞", + "pn": -0.103538 + }, + { + "surface": "書入れる", + "readging": "かきいれる", + "pos": "動詞", + "pn": -0.103576 + }, + { + "surface": "忘年", + "readging": "ぼうねん", + "pos": "名詞", + "pn": -0.103603 + }, + { + "surface": "秘話", + "readging": "ひわ", + "pos": "名詞", + "pn": -0.103624 + }, + { + "surface": "史跡", + "readging": "しせき", + "pos": "名詞", + "pn": -0.103641 + }, + { + "surface": "湯冷まし", + "readging": "ゆざまし", + "pos": "名詞", + "pn": -0.103661 + }, + { + "surface": "総ぐるみ", + "readging": "そうぐるみ", + "pos": "名詞", + "pn": -0.103677 + }, + { + "surface": "身代限", + "readging": "しんだいかぎり", + "pos": "名詞", + "pn": -0.103677 + }, + { + "surface": "旧制", + "readging": "きゅうせい", + "pos": "名詞", + "pn": -0.103697 + }, + { + "surface": "微賤", + "readging": "びせん", + "pos": "名詞", + "pn": -0.103741 + }, + { + "surface": "憲政", + "readging": "けんせい", + "pos": "名詞", + "pn": -0.103783 + }, + { + "surface": "候文", + "readging": "そうろうぶん", + "pos": "名詞", + "pn": -0.103819 + }, + { + "surface": "翹望", + "readging": "ぎょうぼう", + "pos": "名詞", + "pn": -0.103825 + }, + { + "surface": "再考", + "readging": "さいこう", + "pos": "名詞", + "pn": -0.103913 + }, + { + "surface": "無添加", + "readging": "むてんか", + "pos": "名詞", + "pn": -0.103972 + }, + { + "surface": "自席", + "readging": "じせき", + "pos": "名詞", + "pn": -0.103974 + }, + { + "surface": "地方自治体", + "readging": "ちほうじちたい", + "pos": "名詞", + "pn": -0.10402 + }, + { + "surface": "単体", + "readging": "たんたい", + "pos": "名詞", + "pn": -0.104046 + }, + { + "surface": "顕", + "readging": "けん", + "pos": "名詞", + "pn": -0.104077 + }, + { + "surface": "ユーモレスク", + "readging": "ユーモレスク", + "pos": "名詞", + "pn": -0.10408 + }, + { + "surface": "陸風", + "readging": "りくふう", + "pos": "名詞", + "pn": -0.104097 + }, + { + "surface": "二重腰", + "readging": "ふたえ", + "pos": "名詞", + "pn": -0.104102 + }, + { + "surface": "碌碌", + "readging": "ろくろく", + "pos": "名詞", + "pn": -0.104122 + }, + { + "surface": "十善", + "readging": "じゅうぜん", + "pos": "名詞", + "pn": -0.104214 + }, + { + "surface": "輪栽", + "readging": "りんさい", + "pos": "名詞", + "pn": -0.104284 + }, + { + "surface": "丹精", + "readging": "たんせい", + "pos": "名詞", + "pn": -0.104296 + }, + { + "surface": "戦績", + "readging": "せんせき", + "pos": "名詞", + "pn": -0.104311 + }, + { + "surface": "劇通", + "readging": "げきつう", + "pos": "名詞", + "pn": -0.104328 + }, + { + "surface": "深追い", + "readging": "ふかおい", + "pos": "名詞", + "pn": -0.104335 + }, + { + "surface": "古語", + "readging": "こご", + "pos": "名詞", + "pn": -0.104411 + }, + { + "surface": "遺筆", + "readging": "いひつ", + "pos": "名詞", + "pn": -0.104417 + }, + { + "surface": "友禅", + "readging": "ゆうぜん", + "pos": "名詞", + "pn": -0.104425 + }, + { + "surface": "再選", + "readging": "さいせん", + "pos": "名詞", + "pn": -0.104438 + }, + { + "surface": "転成", + "readging": "てんせい", + "pos": "名詞", + "pn": -0.10449 + }, + { + "surface": "天台宗", + "readging": "てんだいしゅう", + "pos": "名詞", + "pn": -0.104509 + }, + { + "surface": "偶発", + "readging": "ぐうはつ", + "pos": "名詞", + "pn": -0.104513 + }, + { + "surface": "上手者", + "readging": "じょうずもの", + "pos": "名詞", + "pn": -0.104519 + }, + { + "surface": "ダーウィニズム", + "readging": "ダーウィニズム", + "pos": "名詞", + "pn": -0.104544 + }, + { + "surface": "行宮", + "readging": "あんぐう", + "pos": "名詞", + "pn": -0.104549 + }, + { + "surface": "既達", + "readging": "きたつ", + "pos": "名詞", + "pn": -0.104553 + }, + { + "surface": "同士討", + "readging": "どうしうち", + "pos": "名詞", + "pn": -0.104558 + }, + { + "surface": "娑婆気", + "readging": "しゃばけ", + "pos": "名詞", + "pn": -0.104562 + }, + { + "surface": "国父", + "readging": "こくふ", + "pos": "名詞", + "pn": -0.104572 + }, + { + "surface": "タワー", + "readging": "タワー", + "pos": "名詞", + "pn": -0.104579 + }, + { + "surface": "二食", + "readging": "にじき", + "pos": "名詞", + "pn": -0.104644 + }, + { + "surface": "一片食", + "readging": "ひとかたけ", + "pos": "名詞", + "pn": -0.104644 + }, + { + "surface": "毎食", + "readging": "まいしょく", + "pos": "名詞", + "pn": -0.104644 + }, + { + "surface": "食間", + "readging": "しょっかん", + "pos": "名詞", + "pn": -0.104644 + }, + { + "surface": "人界", + "readging": "じんかい", + "pos": "名詞", + "pn": -0.104654 + }, + { + "surface": "分冊", + "readging": "ぶんさつ", + "pos": "名詞", + "pn": -0.104701 + }, + { + "surface": "氏姓", + "readging": "しせい", + "pos": "名詞", + "pn": -0.104715 + }, + { + "surface": "三十路", + "readging": "みそじ", + "pos": "名詞", + "pn": -0.10472 + }, + { + "surface": "新風", + "readging": "しんぷう", + "pos": "名詞", + "pn": -0.104723 + }, + { + "surface": "希有", + "readging": "けう", + "pos": "名詞", + "pn": -0.104723 + }, + { + "surface": "三組", + "readging": "みつぐみ", + "pos": "名詞", + "pn": -0.10473 + }, + { + "surface": "歌論", + "readging": "かろん", + "pos": "名詞", + "pn": -0.104736 + }, + { + "surface": "打出す", + "readging": "うちだす", + "pos": "動詞", + "pn": -0.104752 + }, + { + "surface": "打落す", + "readging": "うちおとす", + "pos": "動詞", + "pn": -0.104752 + }, + { + "surface": "湧", + "readging": "よう", + "pos": "名詞", + "pn": -0.104753 + }, + { + "surface": "踏査", + "readging": "とうさ", + "pos": "名詞", + "pn": -0.104772 + }, + { + "surface": "古体", + "readging": "こたい", + "pos": "名詞", + "pn": -0.104797 + }, + { + "surface": "文勢", + "readging": "ぶんせい", + "pos": "名詞", + "pn": -0.104836 + }, + { + "surface": "角界", + "readging": "かくかい", + "pos": "名詞", + "pn": -0.104859 + }, + { + "surface": "講中", + "readging": "こうぢゅう", + "pos": "名詞", + "pn": -0.104869 + }, + { + "surface": "百万言", + "readging": "ひゃくまんげん", + "pos": "名詞", + "pn": -0.104894 + }, + { + "surface": "登庁", + "readging": "とうちょう", + "pos": "名詞", + "pn": -0.104934 + }, + { + "surface": "句会", + "readging": "くかい", + "pos": "名詞", + "pn": -0.104947 + }, + { + "surface": "民主国", + "readging": "みんしゅこく", + "pos": "名詞", + "pn": -0.104955 + }, + { + "surface": "式台", + "readging": "しきだい", + "pos": "名詞", + "pn": -0.104988 + }, + { + "surface": "無官", + "readging": "むかん", + "pos": "名詞", + "pn": -0.105009 + }, + { + "surface": "バランス", + "readging": "バランス", + "pos": "名詞", + "pn": -0.105016 + }, + { + "surface": "人人", + "readging": "ひとびと", + "pos": "名詞", + "pn": -0.105018 + }, + { + "surface": "ありうち", + "readging": "ありうち", + "pos": "名詞", + "pn": -0.105174 + }, + { + "surface": "道産", + "readging": "どうさん", + "pos": "名詞", + "pn": -0.105175 + }, + { + "surface": "新政", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.105195 + }, + { + "surface": "母港", + "readging": "ぼこう", + "pos": "名詞", + "pn": -0.105213 + }, + { + "surface": "着船", + "readging": "ちゃくせん", + "pos": "名詞", + "pn": -0.105213 + }, + { + "surface": "天津", + "readging": "あまつ", + "pos": "名詞", + "pn": -0.105231 + }, + { + "surface": "老師", + "readging": "ろうし", + "pos": "名詞", + "pn": -0.105245 + }, + { + "surface": "貴賓", + "readging": "きひん", + "pos": "名詞", + "pn": -0.105268 + }, + { + "surface": "余儀無い", + "readging": "よぎない", + "pos": "形容詞", + "pn": -0.105269 + }, + { + "surface": "小品文", + "readging": "しょうひんぶん", + "pos": "名詞", + "pn": -0.105271 + }, + { + "surface": "忌明け", + "readging": "いみあけ", + "pos": "名詞", + "pn": -0.105279 + }, + { + "surface": "沈香", + "readging": "じんこう", + "pos": "名詞", + "pn": -0.105282 + }, + { + "surface": "納金", + "readging": "のうきん", + "pos": "名詞", + "pn": -0.105313 + }, + { + "surface": "手渡し", + "readging": "てわたし", + "pos": "名詞", + "pn": -0.105324 + }, + { + "surface": "ハイ クラス", + "readging": "ハイ クラス", + "pos": "名詞", + "pn": -0.105326 + }, + { + "surface": "プレタポルテ", + "readging": "プレタポルテ", + "pos": "名詞", + "pn": -0.105326 + }, + { + "surface": "短章", + "readging": "たんしょう", + "pos": "名詞", + "pn": -0.10533 + }, + { + "surface": "初参り", + "readging": "はつまいり", + "pos": "名詞", + "pn": -0.105342 + }, + { + "surface": "馬面", + "readging": "うまづら", + "pos": "名詞", + "pn": -0.105349 + }, + { + "surface": "主命", + "readging": "しゅめい", + "pos": "名詞", + "pn": -0.105382 + }, + { + "surface": "納涼", + "readging": "のうりょう", + "pos": "名詞", + "pn": -0.105392 + }, + { + "surface": "上値", + "readging": "うわね", + "pos": "名詞", + "pn": -0.105413 + }, + { + "surface": "人定", + "readging": "じんてい", + "pos": "名詞", + "pn": -0.105415 + }, + { + "surface": "校舎", + "readging": "こうしゃ", + "pos": "名詞", + "pn": -0.105415 + }, + { + "surface": "朝議", + "readging": "ちょうぎ", + "pos": "名詞", + "pn": -0.105434 + }, + { + "surface": "皇帝", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.105475 + }, + { + "surface": "生動", + "readging": "せいどう", + "pos": "名詞", + "pn": -0.105489 + }, + { + "surface": "命運", + "readging": "めいうん", + "pos": "名詞", + "pn": -0.105507 + }, + { + "surface": "上旬", + "readging": "じょうじゅん", + "pos": "名詞", + "pn": -0.105531 + }, + { + "surface": "遣る気", + "readging": "やるき", + "pos": "名詞", + "pn": -0.105559 + }, + { + "surface": "無辜", + "readging": "むこ", + "pos": "名詞", + "pn": -0.105608 + }, + { + "surface": "用木", + "readging": "ようぼく", + "pos": "名詞", + "pn": -0.105639 + }, + { + "surface": "入手", + "readging": "にゅうしゅ", + "pos": "名詞", + "pn": -0.105649 + }, + { + "surface": "物心", + "readging": "ぶっしん", + "pos": "名詞", + "pn": -0.105664 + }, + { + "surface": "広域", + "readging": "こういき", + "pos": "名詞", + "pn": -0.105669 + }, + { + "surface": "噤む", + "readging": "つぐむ", + "pos": "動詞", + "pn": -0.105687 + }, + { + "surface": "無神論", + "readging": "むしんろん", + "pos": "名詞", + "pn": -0.10569 + }, + { + "surface": "富", + "readging": "とみ", + "pos": "名詞", + "pn": -0.105694 + }, + { + "surface": "持経", + "readging": "じきょう", + "pos": "名詞", + "pn": -0.105725 + }, + { + "surface": "アベニュー", + "readging": "アベニュー", + "pos": "名詞", + "pn": -0.105755 + }, + { + "surface": "承合", + "readging": "しょうごう", + "pos": "名詞", + "pn": -0.105761 + }, + { + "surface": "相国", + "readging": "しょうこく", + "pos": "名詞", + "pn": -0.105782 + }, + { + "surface": "進歩主義", + "readging": "しんぽしゅぎ", + "pos": "名詞", + "pn": -0.105788 + }, + { + "surface": "心火", + "readging": "しんか", + "pos": "名詞", + "pn": -0.105807 + }, + { + "surface": "在宅", + "readging": "ざいたく", + "pos": "名詞", + "pn": -0.105817 + }, + { + "surface": "短夜", + "readging": "たんや", + "pos": "名詞", + "pn": -0.105834 + }, + { + "surface": "自沈", + "readging": "じちん", + "pos": "名詞", + "pn": -0.105841 + }, + { + "surface": "素地", + "readging": "そじ", + "pos": "名詞", + "pn": -0.105848 + }, + { + "surface": "皇統", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.105853 + }, + { + "surface": "クロース", + "readging": "クロース", + "pos": "名詞", + "pn": -0.105874 + }, + { + "surface": "故主", + "readging": "こしゅ", + "pos": "名詞", + "pn": -0.105886 + }, + { + "surface": "お目もじ", + "readging": "おめもじ", + "pos": "名詞", + "pn": -0.105896 + }, + { + "surface": "新機軸", + "readging": "しんきじく", + "pos": "名詞", + "pn": -0.105909 + }, + { + "surface": "細大", + "readging": "さいだい", + "pos": "名詞", + "pn": -0.105919 + }, + { + "surface": "出来秋", + "readging": "できあき", + "pos": "名詞", + "pn": -0.105926 + }, + { + "surface": "笹竹", + "readging": "ささたけ", + "pos": "名詞", + "pn": -0.105937 + }, + { + "surface": "居開帳", + "readging": "いがいちょう", + "pos": "名詞", + "pn": -0.105982 + }, + { + "surface": "交す", + "readging": "かわす", + "pos": "動詞", + "pn": -0.105989 + }, + { + "surface": "増収", + "readging": "ぞうしゅう", + "pos": "名詞", + "pn": -0.10599 + }, + { + "surface": "観桜", + "readging": "かんおう", + "pos": "名詞", + "pn": -0.106041 + }, + { + "surface": "学則", + "readging": "がくそく", + "pos": "名詞", + "pn": -0.106054 + }, + { + "surface": "禁鳥", + "readging": "きんちょう", + "pos": "名詞", + "pn": -0.106075 + }, + { + "surface": "ぐいぐい", + "readging": "ぐいぐい", + "pos": "副詞", + "pn": -0.106078 + }, + { + "surface": "俗解", + "readging": "ぞっかい", + "pos": "名詞", + "pn": -0.106088 + }, + { + "surface": "温色", + "readging": "おんしょく", + "pos": "名詞", + "pn": -0.106114 + }, + { + "surface": "大君", + "readging": "たいくん", + "pos": "名詞", + "pn": -0.10613 + }, + { + "surface": "純理", + "readging": "じゅんり", + "pos": "名詞", + "pn": -0.106159 + }, + { + "surface": "界標", + "readging": "かいひょう", + "pos": "名詞", + "pn": -0.106171 + }, + { + "surface": "立憲政治", + "readging": "りっけんせいじ", + "pos": "名詞", + "pn": -0.106216 + }, + { + "surface": "捻出", + "readging": "ねんしゅつ", + "pos": "名詞", + "pn": -0.106229 + }, + { + "surface": "シャット アウト", + "readging": "シャット アウト", + "pos": "名詞", + "pn": -0.10623 + }, + { + "surface": "帯出", + "readging": "たいしゅつ", + "pos": "名詞", + "pn": -0.106233 + }, + { + "surface": "開場", + "readging": "かいじょう", + "pos": "名詞", + "pn": -0.106236 + }, + { + "surface": "守", + "readging": "かみ", + "pos": "名詞", + "pn": -0.106242 + }, + { + "surface": "注意人物", + "readging": "ちゅういじんぶつ", + "pos": "名詞", + "pn": -0.106253 + }, + { + "surface": "研澄ます", + "readging": "とぎすます", + "pos": "動詞", + "pn": -0.10626 + }, + { + "surface": "両所", + "readging": "りょうしょ", + "pos": "名詞", + "pn": -0.10627 + }, + { + "surface": "画業", + "readging": "がぎょう", + "pos": "名詞", + "pn": -0.106305 + }, + { + "surface": "尊皇", + "readging": "そんのう", + "pos": "名詞", + "pn": -0.106311 + }, + { + "surface": "士風", + "readging": "しふう", + "pos": "名詞", + "pn": -0.106326 + }, + { + "surface": "力不足", + "readging": "ちからぶそく", + "pos": "名詞", + "pn": -0.10633 + }, + { + "surface": "会釈", + "readging": "えしゃく", + "pos": "名詞", + "pn": -0.10636 + }, + { + "surface": "天上天下", + "readging": "てんじょうてんげ", + "pos": "名詞", + "pn": -0.106381 + }, + { + "surface": "むら消え", + "readging": "むらぎえ", + "pos": "名詞", + "pn": -0.106386 + }, + { + "surface": "監護", + "readging": "かんご", + "pos": "名詞", + "pn": -0.106395 + }, + { + "surface": "典例", + "readging": "てんれい", + "pos": "名詞", + "pn": -0.106431 + }, + { + "surface": "再編", + "readging": "さいへん", + "pos": "名詞", + "pn": -0.106438 + }, + { + "surface": "無自覚", + "readging": "むじかく", + "pos": "名詞", + "pn": -0.106462 + }, + { + "surface": "伝写", + "readging": "でんしゃ", + "pos": "名詞", + "pn": -0.106515 + }, + { + "surface": "雪線", + "readging": "せっせん", + "pos": "名詞", + "pn": -0.106515 + }, + { + "surface": "大御言", + "readging": "おおみこと", + "pos": "名詞", + "pn": -0.106528 + }, + { + "surface": "公主", + "readging": "こうしゅ", + "pos": "名詞", + "pn": -0.106549 + }, + { + "surface": "アート", + "readging": "アート", + "pos": "名詞", + "pn": -0.106572 + }, + { + "surface": "主知", + "readging": "しゅち", + "pos": "名詞", + "pn": -0.106592 + }, + { + "surface": "沃土", + "readging": "よくど", + "pos": "名詞", + "pn": -0.106595 + }, + { + "surface": "教導", + "readging": "きょうどう", + "pos": "名詞", + "pn": -0.106664 + }, + { + "surface": "別条", + "readging": "べつじょう", + "pos": "名詞", + "pn": -0.106692 + }, + { + "surface": "手際", + "readging": "てぎわ", + "pos": "名詞", + "pn": -0.106695 + }, + { + "surface": "十念", + "readging": "じゅうねん", + "pos": "名詞", + "pn": -0.106716 + }, + { + "surface": "貧鉱", + "readging": "ひんこう", + "pos": "名詞", + "pn": -0.10674 + }, + { + "surface": "前場", + "readging": "ぜんば", + "pos": "名詞", + "pn": -0.106754 + }, + { + "surface": "当路", + "readging": "とうろ", + "pos": "名詞", + "pn": -0.106774 + }, + { + "surface": "閨", + "readging": "ねや", + "pos": "名詞", + "pn": -0.106795 + }, + { + "surface": "麦作", + "readging": "むぎさく", + "pos": "名詞", + "pn": -0.106865 + }, + { + "surface": "経営者", + "readging": "けいえいしゃ", + "pos": "名詞", + "pn": -0.106875 + }, + { + "surface": "想見", + "readging": "そうけん", + "pos": "名詞", + "pn": -0.106904 + }, + { + "surface": "こくる", + "readging": "こくる", + "pos": "動詞", + "pn": -0.106928 + }, + { + "surface": "高価", + "readging": "こうか", + "pos": "名詞", + "pn": -0.106932 + }, + { + "surface": "高祖", + "readging": "こうそ", + "pos": "名詞", + "pn": -0.106934 + }, + { + "surface": "事事", + "readging": "ことごと", + "pos": "名詞", + "pn": -0.106934 + }, + { + "surface": "林道", + "readging": "りんどう", + "pos": "名詞", + "pn": -0.106946 + }, + { + "surface": "施工", + "readging": "しこう", + "pos": "名詞", + "pn": -0.106977 + }, + { + "surface": "素懐", + "readging": "そかい", + "pos": "名詞", + "pn": -0.106987 + }, + { + "surface": "大黒柱", + "readging": "だいこくばしら", + "pos": "名詞", + "pn": -0.10699 + }, + { + "surface": "閣下", + "readging": "かっか", + "pos": "名詞", + "pn": -0.107034 + }, + { + "surface": "私物", + "readging": "しぶつ", + "pos": "名詞", + "pn": -0.107116 + }, + { + "surface": "林政", + "readging": "りんせい", + "pos": "名詞", + "pn": -0.107121 + }, + { + "surface": "木仏", + "readging": "きぶつ", + "pos": "名詞", + "pn": -0.107131 + }, + { + "surface": "旧師", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.107192 + }, + { + "surface": "寸描", + "readging": "すんびょう", + "pos": "名詞", + "pn": -0.107209 + }, + { + "surface": "確証", + "readging": "かくしょう", + "pos": "名詞", + "pn": -0.107226 + }, + { + "surface": "押収", + "readging": "おうしゅう", + "pos": "名詞", + "pn": -0.107226 + }, + { + "surface": "リセット", + "readging": "リセット", + "pos": "名詞", + "pn": -0.107235 + }, + { + "surface": "白", + "readging": "しろ", + "pos": "名詞", + "pn": -0.107242 + }, + { + "surface": "取得", + "readging": "しゅとく", + "pos": "名詞", + "pn": -0.107246 + }, + { + "surface": "有志", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.107248 + }, + { + "surface": "表記", + "readging": "ひょうき", + "pos": "名詞", + "pn": -0.107249 + }, + { + "surface": "朝来", + "readging": "ちょうらい", + "pos": "副詞", + "pn": -0.107257 + }, + { + "surface": "生地", + "readging": "きじ", + "pos": "名詞", + "pn": -0.107259 + }, + { + "surface": "仏徒", + "readging": "ぶっと", + "pos": "名詞", + "pn": -0.107271 + }, + { + "surface": "山海", + "readging": "さんかい", + "pos": "名詞", + "pn": -0.107289 + }, + { + "surface": "哲理", + "readging": "てつり", + "pos": "名詞", + "pn": -0.107382 + }, + { + "surface": "警視総監", + "readging": "けいしそうかん", + "pos": "名詞", + "pn": -0.107395 + }, + { + "surface": "数次", + "readging": "すうじ", + "pos": "名詞", + "pn": -0.107396 + }, + { + "surface": "翔る", + "readging": "かける", + "pos": "動詞", + "pn": -0.107396 + }, + { + "surface": "フープ", + "readging": "フープ", + "pos": "名詞", + "pn": -0.107416 + }, + { + "surface": "年強", + "readging": "としづよ", + "pos": "名詞", + "pn": -0.107423 + }, + { + "surface": "公有", + "readging": "こうゆう", + "pos": "名詞", + "pn": -0.107481 + }, + { + "surface": "ナンバー", + "readging": "ナンバーワン", + "pos": "名詞", + "pn": -0.107493 + }, + { + "surface": "近着", + "readging": "きんちゃく", + "pos": "名詞", + "pn": -0.107506 + }, + { + "surface": "コロラチュラ", + "readging": "コロラチュラ", + "pos": "名詞", + "pn": -0.107528 + }, + { + "surface": "轟轟", + "readging": "ごうごう", + "pos": "名詞", + "pn": -0.107557 + }, + { + "surface": "再思", + "readging": "さいし", + "pos": "名詞", + "pn": -0.107558 + }, + { + "surface": "百万長者", + "readging": "ひゃくまんちょうじゃ", + "pos": "名詞", + "pn": -0.107566 + }, + { + "surface": "恐妻", + "readging": "きょうさい", + "pos": "名詞", + "pn": -0.107587 + }, + { + "surface": "前便", + "readging": "ぜんびん", + "pos": "名詞", + "pn": -0.107592 + }, + { + "surface": "得意満面", + "readging": "とくいまんめん", + "pos": "名詞", + "pn": -0.107596 + }, + { + "surface": "満面", + "readging": "まんめん", + "pos": "名詞", + "pn": -0.107596 + }, + { + "surface": "給源", + "readging": "きゅうげん", + "pos": "名詞", + "pn": -0.10762 + }, + { + "surface": "誇示", + "readging": "こじ", + "pos": "名詞", + "pn": -0.107623 + }, + { + "surface": "発兌", + "readging": "はつだ", + "pos": "名詞", + "pn": -0.107634 + }, + { + "surface": "存ずる", + "readging": "ぞんずる", + "pos": "動詞", + "pn": -0.107685 + }, + { + "surface": "かいしき", + "readging": "かいしき", + "pos": "副詞", + "pn": -0.107702 + }, + { + "surface": "置土", + "readging": "おきつち", + "pos": "名詞", + "pn": -0.107735 + }, + { + "surface": "特待", + "readging": "とくたい", + "pos": "名詞", + "pn": -0.107745 + }, + { + "surface": "書道", + "readging": "しょどう", + "pos": "名詞", + "pn": -0.10775 + }, + { + "surface": "書林", + "readging": "しょりん", + "pos": "名詞", + "pn": -0.107765 + }, + { + "surface": "騎乗", + "readging": "きじょう", + "pos": "名詞", + "pn": -0.107769 + }, + { + "surface": "騎行", + "readging": "きこう", + "pos": "名詞", + "pn": -0.107769 + }, + { + "surface": "ハイ スピード", + "readging": "ハイ スピード", + "pos": "名詞", + "pn": -0.10779 + }, + { + "surface": "男一匹", + "readging": "おとこいっぴき", + "pos": "名詞", + "pn": -0.107799 + }, + { + "surface": "著作者", + "readging": "ちょさくしゃ", + "pos": "名詞", + "pn": -0.107822 + }, + { + "surface": "付記", + "readging": "ふき", + "pos": "名詞", + "pn": -0.10784 + }, + { + "surface": "それしき", + "readging": "それしき", + "pos": "名詞", + "pn": -0.107843 + }, + { + "surface": "これしき", + "readging": "これしき", + "pos": "名詞", + "pn": -0.107843 + }, + { + "surface": "打消す", + "readging": "うちけす", + "pos": "動詞", + "pn": -0.107852 + }, + { + "surface": "翌年", + "readging": "よくとし", + "pos": "名詞", + "pn": -0.10786 + }, + { + "surface": "度外視", + "readging": "どがいし", + "pos": "名詞", + "pn": -0.107875 + }, + { + "surface": "増水", + "readging": "ぞうすい", + "pos": "名詞", + "pn": -0.10788 + }, + { + "surface": "伯仲", + "readging": "はくちゅう", + "pos": "名詞", + "pn": -0.107893 + }, + { + "surface": "遠因", + "readging": "えんいん", + "pos": "名詞", + "pn": -0.107909 + }, + { + "surface": "引歌", + "readging": "ひきうた", + "pos": "名詞", + "pn": -0.10791 + }, + { + "surface": "根っきり葉っきり", + "readging": "ねっきりはっきり", + "pos": "名詞", + "pn": -0.107915 + }, + { + "surface": "イラスト", + "readging": "イラスト", + "pos": "名詞", + "pn": -0.107934 + }, + { + "surface": "継起", + "readging": "けいき", + "pos": "名詞", + "pn": -0.107988 + }, + { + "surface": "亡失", + "readging": "ぼうしつ", + "pos": "名詞", + "pn": -0.107995 + }, + { + "surface": "回心", + "readging": "かいしん", + "pos": "名詞", + "pn": -0.108003 + }, + { + "surface": "かねごと", + "readging": "かねごと", + "pos": "名詞", + "pn": -0.108026 + }, + { + "surface": "そのかみ", + "readging": "そのかみ", + "pos": "名詞", + "pn": -0.108029 + }, + { + "surface": "ハイライト", + "readging": "ハイライト", + "pos": "名詞", + "pn": -0.108043 + }, + { + "surface": "Aクラス", + "readging": "エー クラス", + "pos": "名詞", + "pn": -0.108067 + }, + { + "surface": "閲兵", + "readging": "えっぺい", + "pos": "名詞", + "pn": -0.10813 + }, + { + "surface": "兵曹", + "readging": "へいそう", + "pos": "名詞", + "pn": -0.108188 + }, + { + "surface": "かつぶし", + "readging": "かつぶし", + "pos": "名詞", + "pn": -0.108212 + }, + { + "surface": "宸筆", + "readging": "しんぴつ", + "pos": "名詞", + "pn": -0.108214 + }, + { + "surface": "日貨", + "readging": "にっか", + "pos": "名詞", + "pn": -0.108221 + }, + { + "surface": "帰国", + "readging": "きこく", + "pos": "名詞", + "pn": -0.108223 + }, + { + "surface": "力落し", + "readging": "ちからおとし", + "pos": "名詞", + "pn": -0.108238 + }, + { + "surface": "協調", + "readging": "きょうちょう", + "pos": "名詞", + "pn": -0.108249 + }, + { + "surface": "母后", + "readging": "ぼこう", + "pos": "名詞", + "pn": -0.108263 + }, + { + "surface": "御霊", + "readging": "みたま", + "pos": "名詞", + "pn": -0.108265 + }, + { + "surface": "多元", + "readging": "たげん", + "pos": "名詞", + "pn": -0.108289 + }, + { + "surface": "山鯨", + "readging": "やまくじら", + "pos": "名詞", + "pn": -0.10829 + }, + { + "surface": "宗主", + "readging": "そうしゅ", + "pos": "名詞", + "pn": -0.108293 + }, + { + "surface": "完訳", + "readging": "かんやく", + "pos": "名詞", + "pn": -0.108312 + }, + { + "surface": "木工", + "readging": "もっこう", + "pos": "名詞", + "pn": -0.10832 + }, + { + "surface": "石女", + "readging": "うまずめ", + "pos": "名詞", + "pn": -0.108321 + }, + { + "surface": "原動", + "readging": "げんどう", + "pos": "名詞", + "pn": -0.108337 + }, + { + "surface": "且つ", + "readging": "かつ", + "pos": "副詞", + "pn": -0.108348 + }, + { + "surface": "お互い様", + "readging": "おたがいさま", + "pos": "名詞", + "pn": -0.108348 + }, + { + "surface": "如何", + "readging": "いかん", + "pos": "副詞", + "pn": -0.108348 + }, + { + "surface": "受益", + "readging": "じゅえき", + "pos": "名詞", + "pn": -0.108374 + }, + { + "surface": "物相", + "readging": "もっそう", + "pos": "名詞", + "pn": -0.108387 + }, + { + "surface": "両部神道", + "readging": "りょうぶしんとう", + "pos": "名詞", + "pn": -0.10842 + }, + { + "surface": "幾重", + "readging": "いくえ", + "pos": "名詞", + "pn": -0.108434 + }, + { + "surface": "明断", + "readging": "めいだん", + "pos": "名詞", + "pn": -0.108442 + }, + { + "surface": "遠交近攻", + "readging": "えんこうきんこう", + "pos": "名詞", + "pn": -0.108459 + }, + { + "surface": "下仕え", + "readging": "しもづかえ", + "pos": "名詞", + "pn": -0.108476 + }, + { + "surface": "直走り", + "readging": "ひたはしり", + "pos": "名詞", + "pn": -0.108477 + }, + { + "surface": "笑い物", + "readging": "わらいもの", + "pos": "名詞", + "pn": -0.108514 + }, + { + "surface": "流布", + "readging": "るふ", + "pos": "名詞", + "pn": -0.108516 + }, + { + "surface": "大潮", + "readging": "おおしお", + "pos": "名詞", + "pn": -0.108518 + }, + { + "surface": "教場", + "readging": "きょうじょう", + "pos": "名詞", + "pn": -0.108572 + }, + { + "surface": "全学", + "readging": "ぜんがく", + "pos": "名詞", + "pn": -0.108648 + }, + { + "surface": "強化食品", + "readging": "きょうかしょくひん", + "pos": "名詞", + "pn": -0.108681 + }, + { + "surface": "呉呉", + "readging": "くれぐれ", + "pos": "副詞", + "pn": -0.108693 + }, + { + "surface": "踏襲", + "readging": "とうしゅう", + "pos": "名詞", + "pn": -0.108713 + }, + { + "surface": "実勢", + "readging": "じっせい", + "pos": "名詞", + "pn": -0.10872 + }, + { + "surface": "再来", + "readging": "さらい", + "pos": "名詞", + "pn": -0.108728 + }, + { + "surface": "迦陵頻伽", + "readging": "かりょうびんが", + "pos": "名詞", + "pn": -0.108728 + }, + { + "surface": "雅称", + "readging": "がしょう", + "pos": "名詞", + "pn": -0.108784 + }, + { + "surface": "祭政", + "readging": "さいせい", + "pos": "名詞", + "pn": -0.108787 + }, + { + "surface": "そこばく", + "readging": "そこばく", + "pos": "副詞", + "pn": -0.108804 + }, + { + "surface": "迫出す", + "readging": "せりだす", + "pos": "動詞", + "pn": -0.108839 + }, + { + "surface": "文事", + "readging": "ぶんじ", + "pos": "名詞", + "pn": -0.108849 + }, + { + "surface": "本件", + "readging": "ほんけん", + "pos": "名詞", + "pn": -0.1089 + }, + { + "surface": "廉", + "readging": "れん", + "pos": "名詞", + "pn": -0.10897 + }, + { + "surface": "競艇", + "readging": "きょうてい", + "pos": "名詞", + "pn": -0.108978 + }, + { + "surface": "法理", + "readging": "ほうり", + "pos": "名詞", + "pn": -0.108981 + }, + { + "surface": "太政大臣", + "readging": "だいじょうだいじん", + "pos": "名詞", + "pn": -0.109016 + }, + { + "surface": "近県", + "readging": "きんけん", + "pos": "名詞", + "pn": -0.109017 + }, + { + "surface": "臨機応変", + "readging": "りんきおうへん", + "pos": "名詞", + "pn": -0.109046 + }, + { + "surface": "人本主義", + "readging": "じんぽんしゅぎ", + "pos": "名詞", + "pn": -0.109048 + }, + { + "surface": "海食", + "readging": "かいしょく", + "pos": "名詞", + "pn": -0.109096 + }, + { + "surface": "兼愛", + "readging": "けんあい", + "pos": "名詞", + "pn": -0.109112 + }, + { + "surface": "利己主義", + "readging": "りこしゅぎ", + "pos": "名詞", + "pn": -0.109139 + }, + { + "surface": "寺僧", + "readging": "じそう", + "pos": "名詞", + "pn": -0.10914 + }, + { + "surface": "卒寿", + "readging": "そつじゅ", + "pos": "名詞", + "pn": -0.109146 + }, + { + "surface": "コンセンサス", + "readging": "コンセンサス", + "pos": "名詞", + "pn": -0.109179 + }, + { + "surface": "末代物", + "readging": "まつだいもの", + "pos": "名詞", + "pn": -0.10924 + }, + { + "surface": "腹蔵", + "readging": "ふくぞう", + "pos": "名詞", + "pn": -0.109254 + }, + { + "surface": "組閣", + "readging": "そかく", + "pos": "名詞", + "pn": -0.109261 + }, + { + "surface": "文芸映画", + "readging": "ぶんげいえいが", + "pos": "名詞", + "pn": -0.10927 + }, + { + "surface": "帝廟", + "readging": "ていびょう", + "pos": "名詞", + "pn": -0.109279 + }, + { + "surface": "所化", + "readging": "しょけ", + "pos": "名詞", + "pn": -0.109284 + }, + { + "surface": "情交", + "readging": "じょうこう", + "pos": "名詞", + "pn": -0.109291 + }, + { + "surface": "見学", + "readging": "けんがく", + "pos": "名詞", + "pn": -0.109322 + }, + { + "surface": "養子縁組", + "readging": "ようしえんぐみ", + "pos": "名詞", + "pn": -0.109329 + }, + { + "surface": "同郷", + "readging": "どうきょう", + "pos": "名詞", + "pn": -0.109334 + }, + { + "surface": "残置", + "readging": "ざんち", + "pos": "名詞", + "pn": -0.109336 + }, + { + "surface": "初出", + "readging": "しょしゅつ", + "pos": "名詞", + "pn": -0.109337 + }, + { + "surface": "本性", + "readging": "ほんせい", + "pos": "名詞", + "pn": -0.109348 + }, + { + "surface": "イスラム教", + "readging": "イスラムきょう", + "pos": "名詞", + "pn": -0.109407 + }, + { + "surface": "立働く", + "readging": "たちはたらく", + "pos": "動詞", + "pn": -0.109409 + }, + { + "surface": "どんより", + "readging": "どんより", + "pos": "副詞", + "pn": -0.109455 + }, + { + "surface": "正使", + "readging": "せいし", + "pos": "名詞", + "pn": -0.109477 + }, + { + "surface": "集金", + "readging": "しゅうきん", + "pos": "名詞", + "pn": -0.109481 + }, + { + "surface": "当家", + "readging": "とうけ", + "pos": "名詞", + "pn": -0.109497 + }, + { + "surface": "国帑", + "readging": "こくど", + "pos": "名詞", + "pn": -0.1095 + }, + { + "surface": "手巾", + "readging": "しゅきん", + "pos": "名詞", + "pn": -0.109513 + }, + { + "surface": "和楽", + "readging": "わがく", + "pos": "名詞", + "pn": -0.109523 + }, + { + "surface": "振興", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.109546 + }, + { + "surface": "冶金", + "readging": "やきん", + "pos": "名詞", + "pn": -0.109561 + }, + { + "surface": "殺戮", + "readging": "さつりく", + "pos": "名詞", + "pn": -0.109571 + }, + { + "surface": "殺害", + "readging": "さつがい", + "pos": "名詞", + "pn": -0.109571 + }, + { + "surface": "貂", + "readging": "てん", + "pos": "名詞", + "pn": -0.109572 + }, + { + "surface": "貴簡", + "readging": "きかん", + "pos": "名詞", + "pn": -0.10958 + }, + { + "surface": "晩学", + "readging": "ばんがく", + "pos": "名詞", + "pn": -0.109583 + }, + { + "surface": "生絹", + "readging": "きぎぬ", + "pos": "名詞", + "pn": -0.109591 + }, + { + "surface": "殺陣師", + "readging": "たてし", + "pos": "名詞", + "pn": -0.109606 + }, + { + "surface": "君主", + "readging": "くんしゅ", + "pos": "名詞", + "pn": -0.10961 + }, + { + "surface": "失陥", + "readging": "しっかん", + "pos": "名詞", + "pn": -0.109651 + }, + { + "surface": "霊屋", + "readging": "たまや", + "pos": "名詞", + "pn": -0.109651 + }, + { + "surface": "間柱", + "readging": "まばしら", + "pos": "名詞", + "pn": -0.109653 + }, + { + "surface": "現尺", + "readging": "げんしゃく", + "pos": "名詞", + "pn": -0.109656 + }, + { + "surface": "社屋", + "readging": "しゃおく", + "pos": "名詞", + "pn": -0.109664 + }, + { + "surface": "切絵", + "readging": "きりえ", + "pos": "名詞", + "pn": -0.109674 + }, + { + "surface": "形式主義", + "readging": "けいしきしゅぎ", + "pos": "名詞", + "pn": -0.10968 + }, + { + "surface": "身代り", + "readging": "みがわり", + "pos": "名詞", + "pn": -0.109698 + }, + { + "surface": "授爵", + "readging": "じゅしゃく", + "pos": "名詞", + "pn": -0.109748 + }, + { + "surface": "温血動物", + "readging": "おんけつどうぶつ", + "pos": "名詞", + "pn": -0.109781 + }, + { + "surface": "水飼い", + "readging": "みずかい", + "pos": "名詞", + "pn": -0.109788 + }, + { + "surface": "社稷", + "readging": "しゃしょく", + "pos": "名詞", + "pn": -0.109807 + }, + { + "surface": "性行", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.109814 + }, + { + "surface": "霊夢", + "readging": "れいむ", + "pos": "名詞", + "pn": -0.109841 + }, + { + "surface": "有り金", + "readging": "ありがね", + "pos": "名詞", + "pn": -0.109859 + }, + { + "surface": "最前", + "readging": "さいぜん", + "pos": "名詞", + "pn": -0.109872 + }, + { + "surface": "下準備", + "readging": "したじゅんび", + "pos": "名詞", + "pn": -0.109873 + }, + { + "surface": "言明", + "readging": "げんめい", + "pos": "名詞", + "pn": -0.109873 + }, + { + "surface": "玉杯", + "readging": "ぎょくはい", + "pos": "名詞", + "pn": -0.109892 + }, + { + "surface": "海域", + "readging": "かいいき", + "pos": "名詞", + "pn": -0.109913 + }, + { + "surface": "オラトリオ", + "readging": "オラトリオ", + "pos": "名詞", + "pn": -0.109927 + }, + { + "surface": "持回り", + "readging": "もちまわり", + "pos": "名詞", + "pn": -0.109928 + }, + { + "surface": "実践躬行", + "readging": "じっせんきゅうこう", + "pos": "名詞", + "pn": -0.109944 + }, + { + "surface": "旧友", + "readging": "きゅうゆう", + "pos": "名詞", + "pn": -0.109966 + }, + { + "surface": "ちんと", + "readging": "ちんと", + "pos": "副詞", + "pn": -0.109996 + }, + { + "surface": "初釜", + "readging": "はつがま", + "pos": "名詞", + "pn": -0.109999 + }, + { + "surface": "ハムレット", + "readging": "ハムレット", + "pos": "名詞", + "pn": -0.110004 + }, + { + "surface": "プリンセス", + "readging": "プリンセス", + "pos": "名詞", + "pn": -0.110004 + }, + { + "surface": "政見", + "readging": "せいけん", + "pos": "名詞", + "pn": -0.110029 + }, + { + "surface": "外米", + "readging": "がいまい", + "pos": "名詞", + "pn": -0.110032 + }, + { + "surface": "格式", + "readging": "かくしき", + "pos": "名詞", + "pn": -0.110055 + }, + { + "surface": "朝命", + "readging": "ちょうめい", + "pos": "名詞", + "pn": -0.110056 + }, + { + "surface": "換金", + "readging": "かんきん", + "pos": "名詞", + "pn": -0.110078 + }, + { + "surface": "出世作", + "readging": "しゅっせさく", + "pos": "名詞", + "pn": -0.11011 + }, + { + "surface": "代筆", + "readging": "だいひつ", + "pos": "名詞", + "pn": -0.110119 + }, + { + "surface": "ニュートロン", + "readging": "ニュートロン", + "pos": "名詞", + "pn": -0.110148 + }, + { + "surface": "公述", + "readging": "こうじゅつ", + "pos": "名詞", + "pn": -0.110151 + }, + { + "surface": "開陳", + "readging": "かいちん", + "pos": "名詞", + "pn": -0.110151 + }, + { + "surface": "野狐禅", + "readging": "やこぜん", + "pos": "名詞", + "pn": -0.110155 + }, + { + "surface": "入寮", + "readging": "にゅうりょう", + "pos": "名詞", + "pn": -0.110177 + }, + { + "surface": "クローネ", + "readging": "クローネ", + "pos": "名詞", + "pn": -0.110183 + }, + { + "surface": "ダッシュ", + "readging": "ダッシュ", + "pos": "名詞", + "pn": -0.110185 + }, + { + "surface": "苦手", + "readging": "にがて", + "pos": "名詞", + "pn": -0.110207 + }, + { + "surface": "木戸御免", + "readging": "きどごめん", + "pos": "名詞", + "pn": -0.110235 + }, + { + "surface": "おはこ", + "readging": "おはこ", + "pos": "名詞", + "pn": -0.110247 + }, + { + "surface": "集結", + "readging": "しゅうけつ", + "pos": "名詞", + "pn": -0.110262 + }, + { + "surface": "必ずや", + "readging": "かならずや", + "pos": "副詞", + "pn": -0.110276 + }, + { + "surface": "所載", + "readging": "しょさい", + "pos": "名詞", + "pn": -0.110279 + }, + { + "surface": "蓬ける", + "readging": "ほおける", + "pos": "動詞", + "pn": -0.110297 + }, + { + "surface": "作麼生", + "readging": "そもさん", + "pos": "副詞", + "pn": -0.110305 + }, + { + "surface": "破天荒", + "readging": "はてんこう", + "pos": "名詞", + "pn": -0.110307 + }, + { + "surface": "在庁", + "readging": "ざいちょう", + "pos": "名詞", + "pn": -0.110323 + }, + { + "surface": "熱願", + "readging": "ねつがん", + "pos": "名詞", + "pn": -0.110338 + }, + { + "surface": "法印", + "readging": "ほういん", + "pos": "名詞", + "pn": -0.11034 + }, + { + "surface": "献策", + "readging": "けんさく", + "pos": "名詞", + "pn": -0.110341 + }, + { + "surface": "粗菓", + "readging": "そか", + "pos": "名詞", + "pn": -0.110356 + }, + { + "surface": "初日の出", + "readging": "はつひので", + "pos": "名詞", + "pn": -0.110369 + }, + { + "surface": "忠霊", + "readging": "ちゅうれい", + "pos": "名詞", + "pn": -0.110379 + }, + { + "surface": "日舞", + "readging": "にちぶ", + "pos": "名詞", + "pn": -0.110385 + }, + { + "surface": "短期大学", + "readging": "たんきだいがく", + "pos": "名詞", + "pn": -0.110388 + }, + { + "surface": "抄訳", + "readging": "しょうやく", + "pos": "名詞", + "pn": -0.110402 + }, + { + "surface": "早立ち", + "readging": "はやだち", + "pos": "名詞", + "pn": -0.110406 + }, + { + "surface": "幾夜", + "readging": "いくよ", + "pos": "名詞", + "pn": -0.110411 + }, + { + "surface": "前庭", + "readging": "ぜんてい", + "pos": "名詞", + "pn": -0.110456 + }, + { + "surface": "人臣", + "readging": "じんしん", + "pos": "名詞", + "pn": -0.110458 + }, + { + "surface": "七十路", + "readging": "ななそじ", + "pos": "名詞", + "pn": -0.110481 + }, + { + "surface": "サンボリスム", + "readging": "サンボリスム", + "pos": "名詞", + "pn": -0.11049 + }, + { + "surface": "極北", + "readging": "きょくほく", + "pos": "名詞", + "pn": -0.110493 + }, + { + "surface": "失禁", + "readging": "しっきん", + "pos": "名詞", + "pn": -0.110501 + }, + { + "surface": "創案", + "readging": "そうあん", + "pos": "名詞", + "pn": -0.110523 + }, + { + "surface": "駆足", + "readging": "かけあし", + "pos": "名詞", + "pn": -0.110528 + }, + { + "surface": "波間", + "readging": "なみま", + "pos": "名詞", + "pn": -0.110535 + }, + { + "surface": "永字八法", + "readging": "えいじはっぽう", + "pos": "名詞", + "pn": -0.110558 + }, + { + "surface": "朝臣", + "readging": "ちょうしん", + "pos": "名詞", + "pn": -0.110567 + }, + { + "surface": "前景", + "readging": "ぜんけい", + "pos": "名詞", + "pn": -0.110569 + }, + { + "surface": "不問", + "readging": "ふもん", + "pos": "名詞", + "pn": -0.110595 + }, + { + "surface": "胆汁質", + "readging": "たんじゅうしつ", + "pos": "名詞", + "pn": -0.110602 + }, + { + "surface": "格好", + "readging": "かっこう", + "pos": "名詞", + "pn": -0.110604 + }, + { + "surface": "固定資産", + "readging": "こていしさん", + "pos": "名詞", + "pn": -0.110657 + }, + { + "surface": "心酔", + "readging": "しんすい", + "pos": "名詞", + "pn": -0.11071 + }, + { + "surface": "大手", + "readging": "おおて", + "pos": "名詞", + "pn": -0.110711 + }, + { + "surface": "私小説", + "readging": "ししょうせつ", + "pos": "名詞", + "pn": -0.110715 + }, + { + "surface": "直接選挙", + "readging": "ちょくせつせんきょ", + "pos": "名詞", + "pn": -0.110716 + }, + { + "surface": "地代", + "readging": "ちだい", + "pos": "名詞", + "pn": -0.11072 + }, + { + "surface": "上目使い", + "readging": "うわめ", + "pos": "名詞", + "pn": -0.110736 + }, + { + "surface": "敵勢", + "readging": "てきぜい", + "pos": "名詞", + "pn": -0.110764 + }, + { + "surface": "兄弟子", + "readging": "あにでし", + "pos": "名詞", + "pn": -0.110764 + }, + { + "surface": "万夫不当", + "readging": "ばんぷふとう", + "pos": "名詞", + "pn": -0.110769 + }, + { + "surface": "特務", + "readging": "とくむ", + "pos": "名詞", + "pn": -0.110783 + }, + { + "surface": "極微", + "readging": "ごくび", + "pos": "名詞", + "pn": -0.110808 + }, + { + "surface": "単利法", + "readging": "たんりほう", + "pos": "名詞", + "pn": -0.110819 + }, + { + "surface": "余所事", + "readging": "よそごと", + "pos": "名詞", + "pn": -0.110825 + }, + { + "surface": "捨身成道", + "readging": "しゃしんじょうどう", + "pos": "名詞", + "pn": -0.110841 + }, + { + "surface": "題跋", + "readging": "だいばつ", + "pos": "名詞", + "pn": -0.110868 + }, + { + "surface": "所生", + "readging": "しょせい", + "pos": "名詞", + "pn": -0.110869 + }, + { + "surface": "飽食", + "readging": "ほうしょく", + "pos": "名詞", + "pn": -0.110874 + }, + { + "surface": "海軟風", + "readging": "かいなんぷう", + "pos": "名詞", + "pn": -0.110895 + }, + { + "surface": "付かぬ事", + "readging": "つかぬこと", + "pos": "名詞", + "pn": -0.110896 + }, + { + "surface": "共存", + "readging": "きょうそん", + "pos": "名詞", + "pn": -0.110935 + }, + { + "surface": "ボス", + "readging": "ボス", + "pos": "名詞", + "pn": -0.11096 + }, + { + "surface": "元値", + "readging": "もとね", + "pos": "名詞", + "pn": -0.110994 + }, + { + "surface": "取立て", + "readging": "とりたて", + "pos": "名詞", + "pn": -0.110997 + }, + { + "surface": "老少不定", + "readging": "ろうしょうふじょう", + "pos": "名詞", + "pn": -0.111004 + }, + { + "surface": "充員", + "readging": "じゅういん", + "pos": "名詞", + "pn": -0.111018 + }, + { + "surface": "門流", + "readging": "もんりゅう", + "pos": "名詞", + "pn": -0.111023 + }, + { + "surface": "写経", + "readging": "しゃきょう", + "pos": "名詞", + "pn": -0.111046 + }, + { + "surface": "買主", + "readging": "かいぬし", + "pos": "名詞", + "pn": -0.111073 + }, + { + "surface": "余色", + "readging": "よしょく", + "pos": "名詞", + "pn": -0.111088 + }, + { + "surface": "久闊", + "readging": "きゅうかつ", + "pos": "名詞", + "pn": -0.111092 + }, + { + "surface": "ダンディー", + "readging": "ダンディー", + "pos": "名詞", + "pn": -0.111109 + }, + { + "surface": "肩書", + "readging": "かたがき", + "pos": "名詞", + "pn": -0.111115 + }, + { + "surface": "ずから", + "readging": "ずから", + "pos": "名詞", + "pn": -0.111137 + }, + { + "surface": "我と", + "readging": "われと", + "pos": "副詞", + "pn": -0.111137 + }, + { + "surface": "自ら", + "readging": "みずから", + "pos": "副詞", + "pn": -0.111137 + }, + { + "surface": "玉稿", + "readging": "ぎょっこう", + "pos": "名詞", + "pn": -0.111184 + }, + { + "surface": "発意", + "readging": "ほつい", + "pos": "名詞", + "pn": -0.111194 + }, + { + "surface": "益", + "readging": "えき", + "pos": "名詞", + "pn": -0.111215 + }, + { + "surface": "割切れる", + "readging": "わりきれる", + "pos": "動詞", + "pn": -0.111263 + }, + { + "surface": "古癖", + "readging": "こへき", + "pos": "名詞", + "pn": -0.111292 + }, + { + "surface": "母", + "readging": "はは", + "pos": "名詞", + "pn": -0.111313 + }, + { + "surface": "石塔", + "readging": "せきとう", + "pos": "名詞", + "pn": -0.111351 + }, + { + "surface": "高天原", + "readging": "たかまがはら", + "pos": "名詞", + "pn": -0.111389 + }, + { + "surface": "高直", + "readging": "こうじき", + "pos": "名詞", + "pn": -0.11139 + }, + { + "surface": "種違い", + "readging": "たねちがい", + "pos": "名詞", + "pn": -0.111391 + }, + { + "surface": "返還", + "readging": "へんかん", + "pos": "名詞", + "pn": -0.1114 + }, + { + "surface": "認否", + "readging": "にんぴ", + "pos": "名詞", + "pn": -0.111404 + }, + { + "surface": "パルナシアン", + "readging": "パルナシアン", + "pos": "名詞", + "pn": -0.111408 + }, + { + "surface": "大きに", + "readging": "おおきに", + "pos": "副詞", + "pn": -0.111417 + }, + { + "surface": "切りこまざく", + "readging": "きりこまざく", + "pos": "動詞", + "pn": -0.111427 + }, + { + "surface": "切組む", + "readging": "きりくむ", + "pos": "動詞", + "pn": -0.111427 + }, + { + "surface": "ふっこ", + "readging": "ふっこ", + "pos": "名詞", + "pn": -0.111435 + }, + { + "surface": "夜っぴて", + "readging": "よっぴて", + "pos": "副詞", + "pn": -0.111442 + }, + { + "surface": "題詠", + "readging": "だいえい", + "pos": "名詞", + "pn": -0.111455 + }, + { + "surface": "お出まし", + "readging": "おでまし", + "pos": "名詞", + "pn": -0.111481 + }, + { + "surface": "参着", + "readging": "さんちゃく", + "pos": "名詞", + "pn": -0.111496 + }, + { + "surface": "正真", + "readging": "しょうしん", + "pos": "名詞", + "pn": -0.111528 + }, + { + "surface": "細面", + "readging": "ほそおもて", + "pos": "名詞", + "pn": -0.111564 + }, + { + "surface": "悲母", + "readging": "ひぼ", + "pos": "名詞", + "pn": -0.111566 + }, + { + "surface": "跼蹐", + "readging": "きょくせき", + "pos": "名詞", + "pn": -0.111566 + }, + { + "surface": "立像", + "readging": "りつぞう", + "pos": "名詞", + "pn": -0.111573 + }, + { + "surface": "桂皮", + "readging": "けいひ", + "pos": "名詞", + "pn": -0.11158 + }, + { + "surface": "需品", + "readging": "じゅひん", + "pos": "名詞", + "pn": -0.111607 + }, + { + "surface": "蟹股", + "readging": "がにまた", + "pos": "名詞", + "pn": -0.111642 + }, + { + "surface": "母子", + "readging": "ぼし", + "pos": "名詞", + "pn": -0.111691 + }, + { + "surface": "陰湿", + "readging": "いんしつ", + "pos": "名詞", + "pn": -0.111695 + }, + { + "surface": "皺伸ばし", + "readging": "しわのばし", + "pos": "名詞", + "pn": -0.111696 + }, + { + "surface": "国語学", + "readging": "こくごがく", + "pos": "名詞", + "pn": -0.111701 + }, + { + "surface": "物界", + "readging": "ぶっかい", + "pos": "名詞", + "pn": -0.111725 + }, + { + "surface": "声量", + "readging": "せいりょう", + "pos": "名詞", + "pn": -0.111761 + }, + { + "surface": "野犬", + "readging": "やけん", + "pos": "名詞", + "pn": -0.111762 + }, + { + "surface": "口証", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.111766 + }, + { + "surface": "生者", + "readging": "しょうじゃ", + "pos": "名詞", + "pn": -0.111768 + }, + { + "surface": "防塁", + "readging": "ぼうるい", + "pos": "名詞", + "pn": -0.111807 + }, + { + "surface": "前夫", + "readging": "ぜんぷ", + "pos": "名詞", + "pn": -0.111843 + }, + { + "surface": "菩提所", + "readging": "ぼだいしょ", + "pos": "名詞", + "pn": -0.111844 + }, + { + "surface": "留年", + "readging": "りゅうねん", + "pos": "名詞", + "pn": -0.111848 + }, + { + "surface": "転業", + "readging": "てんぎょう", + "pos": "名詞", + "pn": -0.111901 + }, + { + "surface": "転職", + "readging": "てんしょく", + "pos": "名詞", + "pn": -0.111901 + }, + { + "surface": "礼典", + "readging": "れいてん", + "pos": "名詞", + "pn": -0.111917 + }, + { + "surface": "土管", + "readging": "どかん", + "pos": "名詞", + "pn": -0.111933 + }, + { + "surface": "着火点", + "readging": "ちゃっかてん", + "pos": "名詞", + "pn": -0.111941 + }, + { + "surface": "本属", + "readging": "ほんぞく", + "pos": "名詞", + "pn": -0.111943 + }, + { + "surface": "無礼講", + "readging": "ぶれいこう", + "pos": "名詞", + "pn": -0.111946 + }, + { + "surface": "大敗", + "readging": "たいはい", + "pos": "名詞", + "pn": -0.111978 + }, + { + "surface": "訓詁", + "readging": "くんこ", + "pos": "名詞", + "pn": -0.11198 + }, + { + "surface": "レンタカー", + "readging": "レンタカー", + "pos": "名詞", + "pn": -0.111982 + }, + { + "surface": "督戦", + "readging": "とくせん", + "pos": "名詞", + "pn": -0.112021 + }, + { + "surface": "一矢", + "readging": "いっし", + "pos": "名詞", + "pn": -0.112046 + }, + { + "surface": "定則", + "readging": "ていそく", + "pos": "名詞", + "pn": -0.112067 + }, + { + "surface": "開明", + "readging": "かいめい", + "pos": "名詞", + "pn": -0.112096 + }, + { + "surface": "検死", + "readging": "けんし", + "pos": "名詞", + "pn": -0.112126 + }, + { + "surface": "脱走", + "readging": "だっそう", + "pos": "名詞", + "pn": -0.112144 + }, + { + "surface": "住僧", + "readging": "じゅうそう", + "pos": "名詞", + "pn": -0.112158 + }, + { + "surface": "廃位", + "readging": "はいい", + "pos": "名詞", + "pn": -0.112165 + }, + { + "surface": "純", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.112171 + }, + { + "surface": "黒炭", + "readging": "こくたん", + "pos": "名詞", + "pn": -0.112172 + }, + { + "surface": "実需", + "readging": "じつじゅ", + "pos": "名詞", + "pn": -0.112174 + }, + { + "surface": "好古", + "readging": "こうこ", + "pos": "名詞", + "pn": -0.112183 + }, + { + "surface": "卜居", + "readging": "ぼっきょ", + "pos": "名詞", + "pn": -0.112183 + }, + { + "surface": "博聞強記", + "readging": "はくぶんきょうき", + "pos": "名詞", + "pn": -0.112184 + }, + { + "surface": "ロイヤリティー", + "readging": "ロイヤリティー", + "pos": "名詞", + "pn": -0.112213 + }, + { + "surface": "大弐", + "readging": "だいに", + "pos": "名詞", + "pn": -0.11226 + }, + { + "surface": "政教", + "readging": "せいきょう", + "pos": "名詞", + "pn": -0.112281 + }, + { + "surface": "娘盛り", + "readging": "むすめざかり", + "pos": "名詞", + "pn": -0.1123 + }, + { + "surface": "輝度", + "readging": "きど", + "pos": "名詞", + "pn": -0.112303 + }, + { + "surface": "非公式", + "readging": "ひこうしき", + "pos": "名詞", + "pn": -0.11231 + }, + { + "surface": "敗訴", + "readging": "はいそ", + "pos": "名詞", + "pn": -0.112311 + }, + { + "surface": "金風", + "readging": "きんぷう", + "pos": "名詞", + "pn": -0.112346 + }, + { + "surface": "お人好し", + "readging": "おひとよし", + "pos": "名詞", + "pn": -0.11235 + }, + { + "surface": "定量化", + "readging": "ていりょうか", + "pos": "名詞", + "pn": -0.112353 + }, + { + "surface": "同気", + "readging": "どうき", + "pos": "名詞", + "pn": -0.112393 + }, + { + "surface": "受命", + "readging": "じゅめい", + "pos": "名詞", + "pn": -0.112394 + }, + { + "surface": "一大", + "readging": "いちだい", + "pos": "名詞", + "pn": -0.112398 + }, + { + "surface": "りんさん肥料", + "readging": "りんさんひりょう", + "pos": "名詞", + "pn": -0.112399 + }, + { + "surface": "助長", + "readging": "じょちょう", + "pos": "名詞", + "pn": -0.11242 + }, + { + "surface": "千社参り", + "readging": "せんじゃまいり", + "pos": "名詞", + "pn": -0.112435 + }, + { + "surface": "載録", + "readging": "さいろく", + "pos": "名詞", + "pn": -0.112469 + }, + { + "surface": "陵駕", + "readging": "りょうが", + "pos": "名詞", + "pn": -0.112473 + }, + { + "surface": "堅陣", + "readging": "けんじん", + "pos": "名詞", + "pn": -0.112512 + }, + { + "surface": "盛会", + "readging": "せいかい", + "pos": "名詞", + "pn": -0.112532 + }, + { + "surface": "歯根", + "readging": "しこん", + "pos": "名詞", + "pn": -0.112535 + }, + { + "surface": "無勢", + "readging": "ぶぜい", + "pos": "名詞", + "pn": -0.112548 + }, + { + "surface": "佳麗", + "readging": "かれい", + "pos": "名詞", + "pn": -0.112566 + }, + { + "surface": "ゼネレーション", + "readging": "ゼネレーション", + "pos": "名詞", + "pn": -0.112583 + }, + { + "surface": "濛濛", + "readging": "もうもう", + "pos": "名詞", + "pn": -0.112597 + }, + { + "surface": "ピアストル", + "readging": "ピアストル", + "pos": "名詞", + "pn": -0.112602 + }, + { + "surface": "ペソ", + "readging": "ペソ", + "pos": "名詞", + "pn": -0.112602 + }, + { + "surface": "緑門", + "readging": "りょくもん", + "pos": "名詞", + "pn": -0.112642 + }, + { + "surface": "両全", + "readging": "りょうぜん", + "pos": "名詞", + "pn": -0.112652 + }, + { + "surface": "人後", + "readging": "じんご", + "pos": "名詞", + "pn": -0.112666 + }, + { + "surface": "醸成", + "readging": "じょうせい", + "pos": "名詞", + "pn": -0.112683 + }, + { + "surface": "専決", + "readging": "せんけつ", + "pos": "名詞", + "pn": -0.112699 + }, + { + "surface": "畝間", + "readging": "うねま", + "pos": "名詞", + "pn": -0.1127 + }, + { + "surface": "持仏堂", + "readging": "じぶつどう", + "pos": "名詞", + "pn": -0.112713 + }, + { + "surface": "左党", + "readging": "さとう", + "pos": "名詞", + "pn": -0.112735 + }, + { + "surface": "法制", + "readging": "ほうせい", + "pos": "名詞", + "pn": -0.112765 + }, + { + "surface": "正気", + "readging": "しょうき", + "pos": "名詞", + "pn": -0.112775 + }, + { + "surface": "御撰", + "readging": "ぎょせん", + "pos": "名詞", + "pn": -0.112776 + }, + { + "surface": "減税", + "readging": "げんぜい", + "pos": "名詞", + "pn": -0.112806 + }, + { + "surface": "滾滾と", + "readging": "こんこんと", + "pos": "副詞", + "pn": -0.112825 + }, + { + "surface": "ウルトラ", + "readging": "ウルトラ", + "pos": "名詞", + "pn": -0.112869 + }, + { + "surface": "収受", + "readging": "しゅうじゅ", + "pos": "名詞", + "pn": -0.112872 + }, + { + "surface": "初空", + "readging": "はつぞら", + "pos": "名詞", + "pn": -0.112894 + }, + { + "surface": "英知", + "readging": "えいち", + "pos": "名詞", + "pn": -0.112919 + }, + { + "surface": "増税", + "readging": "ぞうぜい", + "pos": "名詞", + "pn": -0.112923 + }, + { + "surface": "あしらい", + "readging": "あしらい", + "pos": "名詞", + "pn": -0.112928 + }, + { + "surface": "追贈", + "readging": "ついぞう", + "pos": "名詞", + "pn": -0.11294 + }, + { + "surface": "舌縺れ", + "readging": "したもつれ", + "pos": "名詞", + "pn": -0.112982 + }, + { + "surface": "ほいほい", + "readging": "ほいほい", + "pos": "副詞", + "pn": -0.113009 + }, + { + "surface": "ケース", + "readging": "ケースバイ ケース", + "pos": "名詞", + "pn": -0.113033 + }, + { + "surface": "足ついで", + "readging": "あしついで", + "pos": "名詞", + "pn": -0.113051 + }, + { + "surface": "畦道", + "readging": "あぜみち", + "pos": "名詞", + "pn": -0.113051 + }, + { + "surface": "鈍器", + "readging": "どんき", + "pos": "名詞", + "pn": -0.113074 + }, + { + "surface": "発意", + "readging": "はつい", + "pos": "名詞", + "pn": -0.11309 + }, + { + "surface": "遠音", + "readging": "とおね", + "pos": "名詞", + "pn": -0.113094 + }, + { + "surface": "錆付く", + "readging": "さびつく", + "pos": "動詞", + "pn": -0.113101 + }, + { + "surface": "どよめき", + "readging": "どよめき", + "pos": "名詞", + "pn": -0.113127 + }, + { + "surface": "ハンガー", + "readging": "ハンガーストライキ", + "pos": "名詞", + "pn": -0.113136 + }, + { + "surface": "衛", + "readging": "えい", + "pos": "名詞", + "pn": -0.113137 + }, + { + "surface": "豊沃", + "readging": "ほうよく", + "pos": "名詞", + "pn": -0.113145 + }, + { + "surface": "腹ごなし", + "readging": "はらごなし", + "pos": "名詞", + "pn": -0.11316 + }, + { + "surface": "無一文", + "readging": "むいちもん", + "pos": "名詞", + "pn": -0.113162 + }, + { + "surface": "七彩", + "readging": "しちさい", + "pos": "名詞", + "pn": -0.113173 + }, + { + "surface": "五里霧中", + "readging": "ごりむちゅう", + "pos": "名詞", + "pn": -0.113248 + }, + { + "surface": "通告", + "readging": "つうこく", + "pos": "名詞", + "pn": -0.1133 + }, + { + "surface": "手旗", + "readging": "てばた", + "pos": "名詞", + "pn": -0.113306 + }, + { + "surface": "人波", + "readging": "ひとなみ", + "pos": "名詞", + "pn": -0.113319 + }, + { + "surface": "オペレッタ", + "readging": "オペレッタ", + "pos": "名詞", + "pn": -0.113338 + }, + { + "surface": "雑詠", + "readging": "ざつえい", + "pos": "名詞", + "pn": -0.113343 + }, + { + "surface": "アンプ", + "readging": "アンプ", + "pos": "名詞", + "pn": -0.113362 + }, + { + "surface": "養魚", + "readging": "ようぎょ", + "pos": "名詞", + "pn": -0.113365 + }, + { + "surface": "修女", + "readging": "しゅうじょ", + "pos": "名詞", + "pn": -0.113419 + }, + { + "surface": "焼絵", + "readging": "やきえ", + "pos": "名詞", + "pn": -0.113426 + }, + { + "surface": "正比例", + "readging": "せいひれい", + "pos": "名詞", + "pn": -0.11344 + }, + { + "surface": "直談", + "readging": "じきだん", + "pos": "名詞", + "pn": -0.113458 + }, + { + "surface": "一元論", + "readging": "いちげんろん", + "pos": "名詞", + "pn": -0.113472 + }, + { + "surface": "実戦", + "readging": "じっせん", + "pos": "名詞", + "pn": -0.113492 + }, + { + "surface": "御命講", + "readging": "おめいこう", + "pos": "名詞", + "pn": -0.113492 + }, + { + "surface": "読後", + "readging": "どくご", + "pos": "名詞", + "pn": -0.113534 + }, + { + "surface": "多読", + "readging": "たどく", + "pos": "名詞", + "pn": -0.113534 + }, + { + "surface": "徴税", + "readging": "ちょうぜい", + "pos": "名詞", + "pn": -0.113535 + }, + { + "surface": "転勤", + "readging": "てんきん", + "pos": "名詞", + "pn": -0.113548 + }, + { + "surface": "心組み", + "readging": "こころぐみ", + "pos": "名詞", + "pn": -0.11355 + }, + { + "surface": "廉", + "readging": "かど", + "pos": "名詞", + "pn": -0.113552 + }, + { + "surface": "若い燕", + "readging": "わかいつばめ", + "pos": "名詞", + "pn": -0.113559 + }, + { + "surface": "三箇日", + "readging": "さんがにち", + "pos": "名詞", + "pn": -0.113565 + }, + { + "surface": "独立語", + "readging": "どくりつご", + "pos": "名詞", + "pn": -0.113576 + }, + { + "surface": "群議", + "readging": "ぐんぎ", + "pos": "名詞", + "pn": -0.113585 + }, + { + "surface": "国本", + "readging": "こくほん", + "pos": "名詞", + "pn": -0.113592 + }, + { + "surface": "友", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.113593 + }, + { + "surface": "求愛", + "readging": "きゅうあい", + "pos": "名詞", + "pn": -0.113617 + }, + { + "surface": "深情け", + "readging": "ふかなさけ", + "pos": "名詞", + "pn": -0.113621 + }, + { + "surface": "弱音", + "readging": "よわね", + "pos": "名詞", + "pn": -0.113652 + }, + { + "surface": "ファンド", + "readging": "ファンド", + "pos": "名詞", + "pn": -0.113663 + }, + { + "surface": "公衙", + "readging": "こうが", + "pos": "名詞", + "pn": -0.113681 + }, + { + "surface": "在外", + "readging": "ざいがい", + "pos": "名詞", + "pn": -0.113683 + }, + { + "surface": "淵叢", + "readging": "えんそう", + "pos": "名詞", + "pn": -0.113692 + }, + { + "surface": "買値", + "readging": "かいね", + "pos": "名詞", + "pn": -0.113729 + }, + { + "surface": "遠来", + "readging": "えんらい", + "pos": "名詞", + "pn": -0.113747 + }, + { + "surface": "釈迦如来", + "readging": "しゃかにょらい", + "pos": "名詞", + "pn": -0.113749 + }, + { + "surface": "がっぷり", + "readging": "がっぷり", + "pos": "副詞", + "pn": -0.113789 + }, + { + "surface": "老台", + "readging": "ろうだい", + "pos": "名詞", + "pn": -0.11382 + }, + { + "surface": "休火山", + "readging": "きゅうかざん", + "pos": "名詞", + "pn": -0.113822 + }, + { + "surface": "粗酒", + "readging": "そしゅ", + "pos": "名詞", + "pn": -0.113838 + }, + { + "surface": "拝観", + "readging": "はいかん", + "pos": "名詞", + "pn": -0.113853 + }, + { + "surface": "大黒天", + "readging": "だいこくてん", + "pos": "名詞", + "pn": -0.113872 + }, + { + "surface": "外資", + "readging": "がいし", + "pos": "名詞", + "pn": -0.113917 + }, + { + "surface": "無声音", + "readging": "むせいおん", + "pos": "名詞", + "pn": -0.113918 + }, + { + "surface": "妖女", + "readging": "ようじょ", + "pos": "名詞", + "pn": -0.113965 + }, + { + "surface": "噛合う", + "readging": "かみあう", + "pos": "動詞", + "pn": -0.114006 + }, + { + "surface": "照会", + "readging": "しょうかい", + "pos": "名詞", + "pn": -0.114007 + }, + { + "surface": "剛体", + "readging": "ごうたい", + "pos": "名詞", + "pn": -0.114012 + }, + { + "surface": "朝野", + "readging": "ちょうや", + "pos": "名詞", + "pn": -0.114051 + }, + { + "surface": "不逞", + "readging": "ふてい", + "pos": "名詞", + "pn": -0.114052 + }, + { + "surface": "臨戦", + "readging": "りんせん", + "pos": "名詞", + "pn": -0.114062 + }, + { + "surface": "大政所", + "readging": "おおまんどころ", + "pos": "名詞", + "pn": -0.114066 + }, + { + "surface": "水稲", + "readging": "すいとう", + "pos": "名詞", + "pn": -0.114072 + }, + { + "surface": "詩論", + "readging": "しろん", + "pos": "名詞", + "pn": -0.114077 + }, + { + "surface": "定率", + "readging": "ていりつ", + "pos": "名詞", + "pn": -0.114094 + }, + { + "surface": "新型", + "readging": "しんがた", + "pos": "名詞", + "pn": -0.114096 + }, + { + "surface": "青道心", + "readging": "あおどうしん", + "pos": "名詞", + "pn": -0.114137 + }, + { + "surface": "異見", + "readging": "いけん", + "pos": "名詞", + "pn": -0.11415 + }, + { + "surface": "残花", + "readging": "ざんか", + "pos": "名詞", + "pn": -0.114152 + }, + { + "surface": "俳味", + "readging": "はいみ", + "pos": "名詞", + "pn": -0.114169 + }, + { + "surface": "僻論", + "readging": "へきろん", + "pos": "名詞", + "pn": -0.114176 + }, + { + "surface": "前門", + "readging": "ぜんもん", + "pos": "名詞", + "pn": -0.11419 + }, + { + "surface": "器", + "readging": "うつわ", + "pos": "名詞", + "pn": -0.11419 + }, + { + "surface": "裁許", + "readging": "さいきょ", + "pos": "名詞", + "pn": -0.114199 + }, + { + "surface": "近国", + "readging": "きんごく", + "pos": "名詞", + "pn": -0.1142 + }, + { + "surface": "炭壺", + "readging": "すみつぼ", + "pos": "名詞", + "pn": -0.114211 + }, + { + "surface": "飾り立てる", + "readging": "かざりたてる", + "pos": "動詞", + "pn": -0.114228 + }, + { + "surface": "ヘゲモニー", + "readging": "ヘゲモニー", + "pos": "名詞", + "pn": -0.114251 + }, + { + "surface": "三七日", + "readging": "さんしちにち", + "pos": "名詞", + "pn": -0.114252 + }, + { + "surface": "早産", + "readging": "そうざん", + "pos": "名詞", + "pn": -0.114275 + }, + { + "surface": "上回る", + "readging": "うわまわる", + "pos": "動詞", + "pn": -0.114302 + }, + { + "surface": "銀髯", + "readging": "ぎんぜん", + "pos": "名詞", + "pn": -0.114306 + }, + { + "surface": "旧姓", + "readging": "きゅうせい", + "pos": "名詞", + "pn": -0.114312 + }, + { + "surface": "興醒める", + "readging": "きょうざめる", + "pos": "動詞", + "pn": -0.114327 + }, + { + "surface": "同着", + "readging": "どうちゃく", + "pos": "名詞", + "pn": -0.114334 + }, + { + "surface": "口約", + "readging": "こうやく", + "pos": "名詞", + "pn": -0.114407 + }, + { + "surface": "酒池肉林", + "readging": "しゅちにくりん", + "pos": "名詞", + "pn": -0.114417 + }, + { + "surface": "主調音", + "readging": "しゅちょうおん", + "pos": "名詞", + "pn": -0.114436 + }, + { + "surface": "十目", + "readging": "じゅうもく", + "pos": "名詞", + "pn": -0.11444 + }, + { + "surface": "独裁政治", + "readging": "どくさいせいじ", + "pos": "名詞", + "pn": -0.114442 + }, + { + "surface": "葉月", + "readging": "はづき", + "pos": "名詞", + "pn": -0.114458 + }, + { + "surface": "百済琴", + "readging": "くだらごと", + "pos": "名詞", + "pn": -0.114484 + }, + { + "surface": "在日", + "readging": "ざいにち", + "pos": "名詞", + "pn": -0.114514 + }, + { + "surface": "ぐでんぐでん", + "readging": "ぐでんぐでん", + "pos": "副詞", + "pn": -0.114531 + }, + { + "surface": "宰相", + "readging": "さいしょう", + "pos": "名詞", + "pn": -0.114535 + }, + { + "surface": "男工", + "readging": "だんこう", + "pos": "名詞", + "pn": -0.114554 + }, + { + "surface": "官紀", + "readging": "かんき", + "pos": "名詞", + "pn": -0.114568 + }, + { + "surface": "煮花", + "readging": "にばな", + "pos": "名詞", + "pn": -0.114583 + }, + { + "surface": "神さびる", + "readging": "かんさびる", + "pos": "動詞", + "pn": -0.114594 + }, + { + "surface": "聖火", + "readging": "せいか", + "pos": "名詞", + "pn": -0.114628 + }, + { + "surface": "炎天", + "readging": "えんてん", + "pos": "名詞", + "pn": -0.114634 + }, + { + "surface": "美粧", + "readging": "びしょう", + "pos": "名詞", + "pn": -0.114679 + }, + { + "surface": "年子", + "readging": "としご", + "pos": "名詞", + "pn": -0.114686 + }, + { + "surface": "昼夜兼行", + "readging": "ちゅうやけんこう", + "pos": "名詞", + "pn": -0.11472 + }, + { + "surface": "家借", + "readging": "かしゃく", + "pos": "名詞", + "pn": -0.114725 + }, + { + "surface": "菜っ葉服", + "readging": "なっぱふく", + "pos": "名詞", + "pn": -0.114733 + }, + { + "surface": "道断", + "readging": "どうだん", + "pos": "名詞", + "pn": -0.114743 + }, + { + "surface": "一系", + "readging": "いっけい", + "pos": "名詞", + "pn": -0.114745 + }, + { + "surface": "国衙", + "readging": "こくが", + "pos": "名詞", + "pn": -0.114798 + }, + { + "surface": "外債", + "readging": "がいさい", + "pos": "名詞", + "pn": -0.114811 + }, + { + "surface": "調", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.114819 + }, + { + "surface": "パテント", + "readging": "パテント", + "pos": "名詞", + "pn": -0.114864 + }, + { + "surface": "商学", + "readging": "しょうがく", + "pos": "名詞", + "pn": -0.114865 + }, + { + "surface": "緩徐", + "readging": "かんじょ", + "pos": "名詞", + "pn": -0.114884 + }, + { + "surface": "説伏", + "readging": "せっぷく", + "pos": "名詞", + "pn": -0.114912 + }, + { + "surface": "非現業", + "readging": "ひげんぎょう", + "pos": "名詞", + "pn": -0.114942 + }, + { + "surface": "言習わす", + "readging": "いいならわす", + "pos": "動詞", + "pn": -0.114945 + }, + { + "surface": "管下", + "readging": "かんか", + "pos": "名詞", + "pn": -0.114985 + }, + { + "surface": "左利き", + "readging": "ひだりきき", + "pos": "名詞", + "pn": -0.114994 + }, + { + "surface": "媚薬", + "readging": "びやく", + "pos": "名詞", + "pn": -0.115001 + }, + { + "surface": "御百度", + "readging": "おひゃくど", + "pos": "名詞", + "pn": -0.115021 + }, + { + "surface": "定温", + "readging": "ていおん", + "pos": "名詞", + "pn": -0.115026 + }, + { + "surface": "パパイア", + "readging": "パパイア", + "pos": "名詞", + "pn": -0.115046 + }, + { + "surface": "オペラ", + "readging": "オペラ", + "pos": "名詞", + "pn": -0.115069 + }, + { + "surface": "精進明け", + "readging": "しょうじんあけ", + "pos": "名詞", + "pn": -0.115099 + }, + { + "surface": "前車", + "readging": "ぜんしゃ", + "pos": "名詞", + "pn": -0.115142 + }, + { + "surface": "選挙人", + "readging": "せんきょにん", + "pos": "名詞", + "pn": -0.11515 + }, + { + "surface": "真に受ける", + "readging": "まにうける", + "pos": "動詞", + "pn": -0.115156 + }, + { + "surface": "図譜", + "readging": "ずふ", + "pos": "名詞", + "pn": -0.115213 + }, + { + "surface": "国尽し", + "readging": "くにづくし", + "pos": "名詞", + "pn": -0.115217 + }, + { + "surface": "忠士", + "readging": "ちゅうし", + "pos": "名詞", + "pn": -0.115227 + }, + { + "surface": "皇宗", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.115231 + }, + { + "surface": "政友", + "readging": "せいゆう", + "pos": "名詞", + "pn": -0.115253 + }, + { + "surface": "近流", + "readging": "きんる", + "pos": "名詞", + "pn": -0.115271 + }, + { + "surface": "同窓", + "readging": "どうそう", + "pos": "名詞", + "pn": -0.11528 + }, + { + "surface": "手抄", + "readging": "しゅしょう", + "pos": "名詞", + "pn": -0.115296 + }, + { + "surface": "整形", + "readging": "せいけい", + "pos": "名詞", + "pn": -0.115304 + }, + { + "surface": "葬具", + "readging": "そうぐ", + "pos": "名詞", + "pn": -0.115304 + }, + { + "surface": "示談", + "readging": "じだん", + "pos": "名詞", + "pn": -0.11531 + }, + { + "surface": "客扱い", + "readging": "きゃくあつかい", + "pos": "名詞", + "pn": -0.115333 + }, + { + "surface": "引用", + "readging": "いんよう", + "pos": "名詞", + "pn": -0.115374 + }, + { + "surface": "白白", + "readging": "しらじら", + "pos": "副詞", + "pn": -0.115392 + }, + { + "surface": "宿徳", + "readging": "しゅくとく", + "pos": "名詞", + "pn": -0.115398 + }, + { + "surface": "穀雨", + "readging": "こくう", + "pos": "名詞", + "pn": -0.115411 + }, + { + "surface": "マルキシズム", + "readging": "マルキシズム", + "pos": "名詞", + "pn": -0.115426 + }, + { + "surface": "マルキシスト", + "readging": "マルキシスト", + "pos": "名詞", + "pn": -0.115426 + }, + { + "surface": "万乗", + "readging": "ばんじょう", + "pos": "名詞", + "pn": -0.115452 + }, + { + "surface": "類従", + "readging": "るいじゅう", + "pos": "名詞", + "pn": -0.115458 + }, + { + "surface": "花守", + "readging": "はなもり", + "pos": "名詞", + "pn": -0.115477 + }, + { + "surface": "受戒", + "readging": "じゅかい", + "pos": "名詞", + "pn": -0.11548 + }, + { + "surface": "実写", + "readging": "じっしゃ", + "pos": "名詞", + "pn": -0.115484 + }, + { + "surface": "教習", + "readging": "きょうしゅう", + "pos": "名詞", + "pn": -0.115487 + }, + { + "surface": "目送", + "readging": "もくそう", + "pos": "名詞", + "pn": -0.115496 + }, + { + "surface": "鴃舌", + "readging": "げきぜつ", + "pos": "名詞", + "pn": -0.115502 + }, + { + "surface": "合資", + "readging": "ごうし", + "pos": "名詞", + "pn": -0.115531 + }, + { + "surface": "モラル", + "readging": "モラル", + "pos": "名詞", + "pn": -0.115552 + }, + { + "surface": "全会", + "readging": "ぜんかい", + "pos": "名詞", + "pn": -0.115561 + }, + { + "surface": "唐楽", + "readging": "とうがく", + "pos": "名詞", + "pn": -0.115563 + }, + { + "surface": "技能", + "readging": "ぎのう", + "pos": "名詞", + "pn": -0.115588 + }, + { + "surface": "事務次官", + "readging": "じむじかん", + "pos": "名詞", + "pn": -0.115601 + }, + { + "surface": "名目賃金", + "readging": "めいもくちんぎん", + "pos": "名詞", + "pn": -0.115609 + }, + { + "surface": "修羅場", + "readging": "しゅらば", + "pos": "名詞", + "pn": -0.11561 + }, + { + "surface": "ハイカラ", + "readging": "ハイカラ", + "pos": "名詞", + "pn": -0.115649 + }, + { + "surface": "湧", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.115652 + }, + { + "surface": "穀断ち", + "readging": "こくだち", + "pos": "名詞", + "pn": -0.1157 + }, + { + "surface": "付け出す", + "readging": "つけだす", + "pos": "動詞", + "pn": -0.115722 + }, + { + "surface": "付け出し", + "readging": "つけだし", + "pos": "名詞", + "pn": -0.115722 + }, + { + "surface": "金遣い", + "readging": "かねづかい", + "pos": "名詞", + "pn": -0.115735 + }, + { + "surface": "泣寄り", + "readging": "なきより", + "pos": "名詞", + "pn": -0.115746 + }, + { + "surface": "両院", + "readging": "りょういん", + "pos": "名詞", + "pn": -0.115748 + }, + { + "surface": "至上命令", + "readging": "しじょうめいれい", + "pos": "名詞", + "pn": -0.115782 + }, + { + "surface": "宣教", + "readging": "せんきょう", + "pos": "名詞", + "pn": -0.115789 + }, + { + "surface": "嘆願", + "readging": "たんがん", + "pos": "名詞", + "pn": -0.115847 + }, + { + "surface": "今昔", + "readging": "こんじゃく", + "pos": "名詞", + "pn": -0.115847 + }, + { + "surface": "商権", + "readging": "しょうけん", + "pos": "名詞", + "pn": -0.115858 + }, + { + "surface": "卒す", + "readging": "しゅっす", + "pos": "動詞", + "pn": -0.115859 + }, + { + "surface": "機材", + "readging": "きざい", + "pos": "名詞", + "pn": -0.115871 + }, + { + "surface": "セクシャル", + "readging": "セクシャル", + "pos": "名詞", + "pn": -0.115885 + }, + { + "surface": "アナロジー", + "readging": "アナロジー", + "pos": "名詞", + "pn": -0.115927 + }, + { + "surface": "粗木", + "readging": "あらき", + "pos": "名詞", + "pn": -0.115972 + }, + { + "surface": "一夫多妻", + "readging": "いっぷたさい", + "pos": "名詞", + "pn": -0.115988 + }, + { + "surface": "付け入る", + "readging": "つけいる", + "pos": "動詞", + "pn": -0.116008 + }, + { + "surface": "消息通", + "readging": "しょうそくつう", + "pos": "名詞", + "pn": -0.116065 + }, + { + "surface": "年収", + "readging": "ねんしゅう", + "pos": "名詞", + "pn": -0.116089 + }, + { + "surface": "日収", + "readging": "にっしゅう", + "pos": "名詞", + "pn": -0.116089 + }, + { + "surface": "地温", + "readging": "ちおん", + "pos": "名詞", + "pn": -0.116139 + }, + { + "surface": "小学", + "readging": "しょうがく", + "pos": "名詞", + "pn": -0.11615 + }, + { + "surface": "教護院", + "readging": "きょうごいん", + "pos": "名詞", + "pn": -0.11618 + }, + { + "surface": "原資", + "readging": "げんし", + "pos": "名詞", + "pn": -0.116184 + }, + { + "surface": "他力本願", + "readging": "たりきほんがん", + "pos": "名詞", + "pn": -0.116201 + }, + { + "surface": "迫真", + "readging": "はくしん", + "pos": "名詞", + "pn": -0.116204 + }, + { + "surface": "太上天皇", + "readging": "だじょうてんのう", + "pos": "名詞", + "pn": -0.11622 + }, + { + "surface": "斯業", + "readging": "しぎょう", + "pos": "名詞", + "pn": -0.116228 + }, + { + "surface": "交接", + "readging": "こうせつ", + "pos": "名詞", + "pn": -0.116261 + }, + { + "surface": "横流れ", + "readging": "よこながれ", + "pos": "名詞", + "pn": -0.116273 + }, + { + "surface": "根", + "readging": "こん", + "pos": "名詞", + "pn": -0.116276 + }, + { + "surface": "双生児", + "readging": "そうせいじ", + "pos": "名詞", + "pn": -0.116283 + }, + { + "surface": "登院", + "readging": "とういん", + "pos": "名詞", + "pn": -0.116302 + }, + { + "surface": "中軸", + "readging": "ちゅうじく", + "pos": "名詞", + "pn": -0.116332 + }, + { + "surface": "徐徐に", + "readging": "じょじょに", + "pos": "副詞", + "pn": -0.116362 + }, + { + "surface": "共著", + "readging": "きょうちょ", + "pos": "名詞", + "pn": -0.11637 + }, + { + "surface": "同工", + "readging": "どうこう", + "pos": "名詞", + "pn": -0.116391 + }, + { + "surface": "深更", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.116394 + }, + { + "surface": "祖宗", + "readging": "そそう", + "pos": "名詞", + "pn": -0.116411 + }, + { + "surface": "全域", + "readging": "ぜんいき", + "pos": "名詞", + "pn": -0.116459 + }, + { + "surface": "狐火", + "readging": "きつねび", + "pos": "名詞", + "pn": -0.11646 + }, + { + "surface": "巌", + "readging": "いわお", + "pos": "名詞", + "pn": -0.116499 + }, + { + "surface": "裂帛", + "readging": "れっぱく", + "pos": "名詞", + "pn": -0.116504 + }, + { + "surface": "学歴", + "readging": "がくれき", + "pos": "名詞", + "pn": -0.116505 + }, + { + "surface": "警務", + "readging": "けいむ", + "pos": "名詞", + "pn": -0.116508 + }, + { + "surface": "挟み撃ち", + "readging": "はさみうち", + "pos": "名詞", + "pn": -0.116523 + }, + { + "surface": "相弟子", + "readging": "あいでし", + "pos": "名詞", + "pn": -0.116539 + }, + { + "surface": "永", + "readging": "えい", + "pos": "名詞", + "pn": -0.116542 + }, + { + "surface": "啾啾", + "readging": "しゅうしゅう", + "pos": "名詞", + "pn": -0.116565 + }, + { + "surface": "シンドローム", + "readging": "シンドローム", + "pos": "名詞", + "pn": -0.116567 + }, + { + "surface": "然", + "readging": "しか", + "pos": "副詞", + "pn": -0.116572 + }, + { + "surface": "ナース", + "readging": "ナース", + "pos": "名詞", + "pn": -0.116577 + }, + { + "surface": "卑見", + "readging": "ひけん", + "pos": "名詞", + "pn": -0.116598 + }, + { + "surface": "臨地", + "readging": "りんち", + "pos": "名詞", + "pn": -0.116613 + }, + { + "surface": "防暑", + "readging": "ぼうしょ", + "pos": "名詞", + "pn": -0.116621 + }, + { + "surface": "売れ高", + "readging": "うれだか", + "pos": "名詞", + "pn": -0.116621 + }, + { + "surface": "重代", + "readging": "じゅうだい", + "pos": "名詞", + "pn": -0.116635 + }, + { + "surface": "極右", + "readging": "きょくう", + "pos": "名詞", + "pn": -0.116635 + }, + { + "surface": "撰述", + "readging": "せんじゅつ", + "pos": "名詞", + "pn": -0.116637 + }, + { + "surface": "和する", + "readging": "わする", + "pos": "動詞", + "pn": -0.11664 + }, + { + "surface": "矢印", + "readging": "やじるし", + "pos": "名詞", + "pn": -0.116641 + }, + { + "surface": "矢束", + "readging": "やつか", + "pos": "名詞", + "pn": -0.116641 + }, + { + "surface": "純文学", + "readging": "じゅんぶんがく", + "pos": "名詞", + "pn": -0.116652 + }, + { + "surface": "触書", + "readging": "ふれがき", + "pos": "名詞", + "pn": -0.116659 + }, + { + "surface": "入れ込み", + "readging": "いれこみ", + "pos": "名詞", + "pn": -0.116716 + }, + { + "surface": "天理教", + "readging": "てんりきょう", + "pos": "名詞", + "pn": -0.116733 + }, + { + "surface": "暮雨", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.116748 + }, + { + "surface": "楔状文字", + "readging": "けつじょうもんじ", + "pos": "名詞", + "pn": -0.116748 + }, + { + "surface": "異説", + "readging": "いせつ", + "pos": "名詞", + "pn": -0.11675 + }, + { + "surface": "持碁", + "readging": "じご", + "pos": "名詞", + "pn": -0.116751 + }, + { + "surface": "美神", + "readging": "びしん", + "pos": "名詞", + "pn": -0.116751 + }, + { + "surface": "孤客", + "readging": "こかく", + "pos": "名詞", + "pn": -0.116754 + }, + { + "surface": "並進", + "readging": "へいしん", + "pos": "名詞", + "pn": -0.116767 + }, + { + "surface": "征する", + "readging": "せいする", + "pos": "動詞", + "pn": -0.11678 + }, + { + "surface": "供御", + "readging": "くご", + "pos": "名詞", + "pn": -0.116821 + }, + { + "surface": "海神", + "readging": "わたつみ", + "pos": "名詞", + "pn": -0.11683 + }, + { + "surface": "梵文", + "readging": "ぼんぶん", + "pos": "名詞", + "pn": -0.116833 + }, + { + "surface": "啓蒙", + "readging": "けいもう", + "pos": "名詞", + "pn": -0.116838 + }, + { + "surface": "クライマックス", + "readging": "クライマックス", + "pos": "名詞", + "pn": -0.116858 + }, + { + "surface": "休演", + "readging": "きゅうえん", + "pos": "名詞", + "pn": -0.116875 + }, + { + "surface": "万人向き", + "readging": "まんにんむき", + "pos": "名詞", + "pn": -0.116889 + }, + { + "surface": "ボキャブラリー", + "readging": "ボキャブラリー", + "pos": "名詞", + "pn": -0.116893 + }, + { + "surface": "郡部", + "readging": "ぐんぶ", + "pos": "名詞", + "pn": -0.116907 + }, + { + "surface": "遺作", + "readging": "いさく", + "pos": "名詞", + "pn": -0.116917 + }, + { + "surface": "御詠", + "readging": "ぎょえい", + "pos": "名詞", + "pn": -0.11692 + }, + { + "surface": "盟邦", + "readging": "めいほう", + "pos": "名詞", + "pn": -0.116953 + }, + { + "surface": "ずしりと", + "readging": "ずしりと", + "pos": "副詞", + "pn": -0.116962 + }, + { + "surface": "京畿", + "readging": "けいき", + "pos": "名詞", + "pn": -0.116965 + }, + { + "surface": "社告", + "readging": "しゃこく", + "pos": "名詞", + "pn": -0.11697 + }, + { + "surface": "宿縁", + "readging": "しゅくえん", + "pos": "名詞", + "pn": -0.116987 + }, + { + "surface": "質朴", + "readging": "しつぼく", + "pos": "名詞", + "pn": -0.116989 + }, + { + "surface": "駄駄", + "readging": "だだ", + "pos": "名詞", + "pn": -0.117022 + }, + { + "surface": "呉竹", + "readging": "くれたけ", + "pos": "名詞", + "pn": -0.117027 + }, + { + "surface": "竜脳", + "readging": "りゅうのう", + "pos": "名詞", + "pn": -0.117054 + }, + { + "surface": "文型", + "readging": "ぶんけい", + "pos": "名詞", + "pn": -0.117062 + }, + { + "surface": "従兄弟", + "readging": "じゅうけいてい", + "pos": "名詞", + "pn": -0.117076 + }, + { + "surface": "黒鯛", + "readging": "くろだい", + "pos": "名詞", + "pn": -0.117111 + }, + { + "surface": "暴利", + "readging": "ぼうり", + "pos": "名詞", + "pn": -0.117115 + }, + { + "surface": "私選", + "readging": "しせん", + "pos": "名詞", + "pn": -0.117117 + }, + { + "surface": "別居", + "readging": "べっきょ", + "pos": "名詞", + "pn": -0.117131 + }, + { + "surface": "故老", + "readging": "ころう", + "pos": "名詞", + "pn": -0.117168 + }, + { + "surface": "登遐", + "readging": "とうか", + "pos": "名詞", + "pn": -0.117186 + }, + { + "surface": "共催", + "readging": "きょうさい", + "pos": "名詞", + "pn": -0.117223 + }, + { + "surface": "不換紙幣", + "readging": "ふかんしへい", + "pos": "名詞", + "pn": -0.117226 + }, + { + "surface": "微粒子", + "readging": "びりゅうし", + "pos": "名詞", + "pn": -0.117235 + }, + { + "surface": "地内", + "readging": "じない", + "pos": "名詞", + "pn": -0.117292 + }, + { + "surface": "挙党", + "readging": "きょとう", + "pos": "名詞", + "pn": -0.117305 + }, + { + "surface": "執達", + "readging": "しったつ", + "pos": "名詞", + "pn": -0.117337 + }, + { + "surface": "コメディアン", + "readging": "コメディアン", + "pos": "名詞", + "pn": -0.117361 + }, + { + "surface": "客位", + "readging": "きゃくい", + "pos": "名詞", + "pn": -0.117416 + }, + { + "surface": "団団", + "readging": "だんだん", + "pos": "名詞", + "pn": -0.117432 + }, + { + "surface": "会者定離", + "readging": "えしゃじょうり", + "pos": "名詞", + "pn": -0.117438 + }, + { + "surface": "一致", + "readging": "いっち", + "pos": "名詞", + "pn": -0.117439 + }, + { + "surface": "直送", + "readging": "ちょくそう", + "pos": "名詞", + "pn": -0.117455 + }, + { + "surface": "句碑", + "readging": "くひ", + "pos": "名詞", + "pn": -0.117465 + }, + { + "surface": "利鈍", + "readging": "りどん", + "pos": "名詞", + "pn": -0.117501 + }, + { + "surface": "鉄器", + "readging": "てっき", + "pos": "名詞", + "pn": -0.117507 + }, + { + "surface": "夏場", + "readging": "なつば", + "pos": "名詞", + "pn": -0.117507 + }, + { + "surface": "誅滅", + "readging": "ちゅうめつ", + "pos": "名詞", + "pn": -0.117533 + }, + { + "surface": "スポーツマン", + "readging": "スポーツマンシップ", + "pos": "名詞", + "pn": -0.117537 + }, + { + "surface": "スパイス", + "readging": "スパイス", + "pos": "名詞", + "pn": -0.117545 + }, + { + "surface": "罪作り", + "readging": "つみつくり", + "pos": "名詞", + "pn": -0.117549 + }, + { + "surface": "問罪", + "readging": "もんざい", + "pos": "名詞", + "pn": -0.117549 + }, + { + "surface": "国是", + "readging": "こくぜ", + "pos": "名詞", + "pn": -0.117568 + }, + { + "surface": "書中", + "readging": "しょちゅう", + "pos": "名詞", + "pn": -0.117579 + }, + { + "surface": "進化論", + "readging": "しんかろん", + "pos": "名詞", + "pn": -0.117626 + }, + { + "surface": "寡兵", + "readging": "かへい", + "pos": "名詞", + "pn": -0.117627 + }, + { + "surface": "糸車", + "readging": "いとぐるま", + "pos": "名詞", + "pn": -0.117655 + }, + { + "surface": "ウォン", + "readging": "ウォン", + "pos": "名詞", + "pn": -0.11771 + }, + { + "surface": "尊重", + "readging": "そんちょう", + "pos": "名詞", + "pn": -0.117711 + }, + { + "surface": "則闕の官", + "readging": "そっけつのかん", + "pos": "名詞", + "pn": -0.117714 + }, + { + "surface": "値上り", + "readging": "ねあがり", + "pos": "名詞", + "pn": -0.117728 + }, + { + "surface": "急談", + "readging": "きゅうだん", + "pos": "名詞", + "pn": -0.11775 + }, + { + "surface": "還啓", + "readging": "かんけい", + "pos": "名詞", + "pn": -0.11777 + }, + { + "surface": "海防", + "readging": "かいぼう", + "pos": "名詞", + "pn": -0.117773 + }, + { + "surface": "成代る", + "readging": "なりかわる", + "pos": "動詞", + "pn": -0.117785 + }, + { + "surface": "親木", + "readging": "おやき", + "pos": "名詞", + "pn": -0.117801 + }, + { + "surface": "手締", + "readging": "てじめ", + "pos": "名詞", + "pn": -0.117807 + }, + { + "surface": "首位", + "readging": "しゅい", + "pos": "名詞", + "pn": -0.117811 + }, + { + "surface": "会務", + "readging": "かいむ", + "pos": "名詞", + "pn": -0.117853 + }, + { + "surface": "案件", + "readging": "あんけん", + "pos": "名詞", + "pn": -0.117894 + }, + { + "surface": "連戦", + "readging": "れんせん", + "pos": "名詞", + "pn": -0.117898 + }, + { + "surface": "生地", + "readging": "せいち", + "pos": "名詞", + "pn": -0.117914 + }, + { + "surface": "女装", + "readging": "じょそう", + "pos": "名詞", + "pn": -0.117935 + }, + { + "surface": "元利", + "readging": "がんり", + "pos": "名詞", + "pn": -0.117938 + }, + { + "surface": "博識", + "readging": "はくしき", + "pos": "名詞", + "pn": -0.117965 + }, + { + "surface": "満開", + "readging": "まんかい", + "pos": "名詞", + "pn": -0.117978 + }, + { + "surface": "雷霆", + "readging": "らいてい", + "pos": "名詞", + "pn": -0.117986 + }, + { + "surface": "熱量", + "readging": "ねつりょう", + "pos": "名詞", + "pn": -0.117987 + }, + { + "surface": "ジム", + "readging": "ジム", + "pos": "名詞", + "pn": -0.118005 + }, + { + "surface": "使いで", + "readging": "つかいで", + "pos": "名詞", + "pn": -0.118016 + }, + { + "surface": "砂上", + "readging": "さじょう", + "pos": "名詞", + "pn": -0.118065 + }, + { + "surface": "休講", + "readging": "きゅうこう", + "pos": "名詞", + "pn": -0.118069 + }, + { + "surface": "田翁", + "readging": "でんおう", + "pos": "名詞", + "pn": -0.118076 + }, + { + "surface": "素読", + "readging": "そどく", + "pos": "名詞", + "pn": -0.1181 + }, + { + "surface": "活殺", + "readging": "かっさつ", + "pos": "名詞", + "pn": -0.118146 + }, + { + "surface": "官爵", + "readging": "かんしゃく", + "pos": "名詞", + "pn": -0.118148 + }, + { + "surface": "兼修", + "readging": "けんしゅう", + "pos": "名詞", + "pn": -0.118173 + }, + { + "surface": "入金", + "readging": "にゅうきん", + "pos": "名詞", + "pn": -0.118185 + }, + { + "surface": "一件", + "readging": "いっけん", + "pos": "名詞", + "pn": -0.118196 + }, + { + "surface": "てんねん色", + "readging": "てんねんしょく", + "pos": "名詞", + "pn": -0.118206 + }, + { + "surface": "とつおいつ", + "readging": "とつおいつ", + "pos": "副詞", + "pn": -0.118225 + }, + { + "surface": "薗八節", + "readging": "そのはちぶし", + "pos": "名詞", + "pn": -0.118238 + }, + { + "surface": "世過ぎ", + "readging": "よすぎ", + "pos": "名詞", + "pn": -0.118248 + }, + { + "surface": "兵曹長", + "readging": "へいそうちょう", + "pos": "名詞", + "pn": -0.118251 + }, + { + "surface": "川明り", + "readging": "かわあかり", + "pos": "名詞", + "pn": -0.118255 + }, + { + "surface": "好き好む", + "readging": "すきこのむ", + "pos": "動詞", + "pn": -0.118264 + }, + { + "surface": "癸", + "readging": "き", + "pos": "名詞", + "pn": -0.118269 + }, + { + "surface": "神学", + "readging": "しんがく", + "pos": "名詞", + "pn": -0.118278 + }, + { + "surface": "弁護", + "readging": "べんご", + "pos": "名詞", + "pn": -0.118278 + }, + { + "surface": "行在所", + "readging": "あんざいしょ", + "pos": "名詞", + "pn": -0.118321 + }, + { + "surface": "不作為", + "readging": "ふさくい", + "pos": "名詞", + "pn": -0.118348 + }, + { + "surface": "墜死", + "readging": "ついし", + "pos": "名詞", + "pn": -0.11835 + }, + { + "surface": "政客", + "readging": "せいかく", + "pos": "名詞", + "pn": -0.118392 + }, + { + "surface": "涎掛", + "readging": "よだれかけ", + "pos": "名詞", + "pn": -0.118396 + }, + { + "surface": "醵金", + "readging": "きょきん", + "pos": "名詞", + "pn": -0.1184 + }, + { + "surface": "優遇", + "readging": "ゆうぐう", + "pos": "名詞", + "pn": -0.118415 + }, + { + "surface": "剥奪", + "readging": "はくだつ", + "pos": "名詞", + "pn": -0.118426 + }, + { + "surface": "上洛", + "readging": "じょうらく", + "pos": "名詞", + "pn": -0.118444 + }, + { + "surface": "貴台", + "readging": "きだい", + "pos": "名詞", + "pn": -0.118462 + }, + { + "surface": "夕刊", + "readging": "ゆうかん", + "pos": "名詞", + "pn": -0.118468 + }, + { + "surface": "男心", + "readging": "おとこごころ", + "pos": "名詞", + "pn": -0.118512 + }, + { + "surface": "法律学", + "readging": "ほうりつがく", + "pos": "名詞", + "pn": -0.118514 + }, + { + "surface": "本因坊", + "readging": "ほんいんぼう", + "pos": "名詞", + "pn": -0.118531 + }, + { + "surface": "律儀", + "readging": "りちぎ", + "pos": "名詞", + "pn": -0.118532 + }, + { + "surface": "新暦", + "readging": "しんれき", + "pos": "名詞", + "pn": -0.11858 + }, + { + "surface": "食い逃げ", + "readging": "くいにげ", + "pos": "名詞", + "pn": -0.118581 + }, + { + "surface": "ゆとり", + "readging": "ゆとり", + "pos": "名詞", + "pn": -0.118583 + }, + { + "surface": "暗に", + "readging": "あんに", + "pos": "副詞", + "pn": -0.118588 + }, + { + "surface": "出たとこ勝負", + "readging": "でたとこしょうぶ", + "pos": "名詞", + "pn": -0.118616 + }, + { + "surface": "御成り", + "readging": "おなり", + "pos": "名詞", + "pn": -0.118626 + }, + { + "surface": "国策", + "readging": "こくさく", + "pos": "名詞", + "pn": -0.118628 + }, + { + "surface": "合格", + "readging": "ごうかく", + "pos": "名詞", + "pn": -0.118637 + }, + { + "surface": "御法", + "readging": "みのり", + "pos": "名詞", + "pn": -0.118656 + }, + { + "surface": "旧宅", + "readging": "きゅうたく", + "pos": "名詞", + "pn": -0.118665 + }, + { + "surface": "進学", + "readging": "しんがく", + "pos": "名詞", + "pn": -0.118684 + }, + { + "surface": "義父", + "readging": "ぎふ", + "pos": "名詞", + "pn": -0.11869 + }, + { + "surface": "酒", + "readging": "ささ", + "pos": "名詞", + "pn": -0.118701 + }, + { + "surface": "腕立て", + "readging": "うでだて", + "pos": "名詞", + "pn": -0.118739 + }, + { + "surface": "一意", + "readging": "いちい", + "pos": "名詞", + "pn": -0.118744 + }, + { + "surface": "入れ替える", + "readging": "いれかえる", + "pos": "動詞", + "pn": -0.118748 + }, + { + "surface": "剛毅", + "readging": "ごうき", + "pos": "名詞", + "pn": -0.118765 + }, + { + "surface": "僧階", + "readging": "そうかい", + "pos": "名詞", + "pn": -0.118784 + }, + { + "surface": "増価", + "readging": "ぞうか", + "pos": "名詞", + "pn": -0.118784 + }, + { + "surface": "剣", + "readging": "つるぎ", + "pos": "名詞", + "pn": -0.118793 + }, + { + "surface": "濫造", + "readging": "らんぞう", + "pos": "名詞", + "pn": -0.118802 + }, + { + "surface": "時服", + "readging": "じふく", + "pos": "名詞", + "pn": -0.118829 + }, + { + "surface": "御題", + "readging": "ぎょだい", + "pos": "名詞", + "pn": -0.118837 + }, + { + "surface": "祇園精舎", + "readging": "ぎおんしょうじゃ", + "pos": "名詞", + "pn": -0.118854 + }, + { + "surface": "下目", + "readging": "しため", + "pos": "名詞", + "pn": -0.118864 + }, + { + "surface": "兄事", + "readging": "けいじ", + "pos": "名詞", + "pn": -0.118877 + }, + { + "surface": "ローカル", + "readging": "ローカルカラー", + "pos": "名詞", + "pn": -0.118928 + }, + { + "surface": "高次", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.118952 + }, + { + "surface": "花曇", + "readging": "はなぐもり", + "pos": "名詞", + "pn": -0.118964 + }, + { + "surface": "共益", + "readging": "きょうえき", + "pos": "名詞", + "pn": -0.118969 + }, + { + "surface": "叙説", + "readging": "じょせつ", + "pos": "名詞", + "pn": -0.118997 + }, + { + "surface": "友人", + "readging": "ゆうじん", + "pos": "名詞", + "pn": -0.119046 + }, + { + "surface": "月来", + "readging": "げつらい", + "pos": "名詞", + "pn": -0.119093 + }, + { + "surface": "転乗", + "readging": "てんじょう", + "pos": "名詞", + "pn": -0.1191 + }, + { + "surface": "増加", + "readging": "ぞうか", + "pos": "名詞", + "pn": -0.119111 + }, + { + "surface": "余光", + "readging": "よこう", + "pos": "名詞", + "pn": -0.119133 + }, + { + "surface": "祭服", + "readging": "さいふく", + "pos": "名詞", + "pn": -0.119146 + }, + { + "surface": "上記", + "readging": "じょうき", + "pos": "名詞", + "pn": -0.119153 + }, + { + "surface": "収集", + "readging": "しゅうしゅう", + "pos": "名詞", + "pn": -0.11917 + }, + { + "surface": "定めし", + "readging": "さだめし", + "pos": "副詞", + "pn": -0.119189 + }, + { + "surface": "読札", + "readging": "よみふだ", + "pos": "名詞", + "pn": -0.119192 + }, + { + "surface": "トー ダンス", + "readging": "トー ダンス", + "pos": "名詞", + "pn": -0.119196 + }, + { + "surface": "地質", + "readging": "じしつ", + "pos": "名詞", + "pn": -0.119205 + }, + { + "surface": "楽勝", + "readging": "らくしょう", + "pos": "名詞", + "pn": -0.11921 + }, + { + "surface": "盗み聞き", + "readging": "ぬすみぎき", + "pos": "名詞", + "pn": -0.11921 + }, + { + "surface": "毛蚕", + "readging": "けご", + "pos": "名詞", + "pn": -0.119211 + }, + { + "surface": "早", + "readging": "そう", + "pos": "名詞", + "pn": -0.119214 + }, + { + "surface": "愛飲", + "readging": "あいいん", + "pos": "名詞", + "pn": -0.11924 + }, + { + "surface": "行き場", + "readging": "ゆきば", + "pos": "名詞", + "pn": -0.119272 + }, + { + "surface": "置忘れる", + "readging": "おきわすれる", + "pos": "動詞", + "pn": -0.119272 + }, + { + "surface": "ボードビリアン", + "readging": "ボードビリアン", + "pos": "名詞", + "pn": -0.119284 + }, + { + "surface": "表れる", + "readging": "あらわれる", + "pos": "動詞", + "pn": -0.119305 + }, + { + "surface": "ブラス バンド", + "readging": "ブラス バンド", + "pos": "名詞", + "pn": -0.119314 + }, + { + "surface": "役務", + "readging": "えきむ", + "pos": "名詞", + "pn": -0.119323 + }, + { + "surface": "外貨", + "readging": "がいか", + "pos": "名詞", + "pn": -0.119324 + }, + { + "surface": "金剛夜叉", + "readging": "こんごうやしゃ", + "pos": "名詞", + "pn": -0.119337 + }, + { + "surface": "尊堂", + "readging": "そんどう", + "pos": "名詞", + "pn": -0.11934 + }, + { + "surface": "脱法", + "readging": "だっぽう", + "pos": "名詞", + "pn": -0.11941 + }, + { + "surface": "豁然", + "readging": "かつぜん", + "pos": "名詞", + "pn": -0.119491 + }, + { + "surface": "遺留分", + "readging": "いりゅうぶん", + "pos": "名詞", + "pn": -0.119495 + }, + { + "surface": "占居", + "readging": "せんきょ", + "pos": "名詞", + "pn": -0.119517 + }, + { + "surface": "夜遊び", + "readging": "よあそび", + "pos": "名詞", + "pn": -0.119519 + }, + { + "surface": "朧夜", + "readging": "おぼろよ", + "pos": "名詞", + "pn": -0.119519 + }, + { + "surface": "ジャイロ コンパス", + "readging": "ジャイロ コンパス", + "pos": "名詞", + "pn": -0.119547 + }, + { + "surface": "山冠", + "readging": "やまかんむり", + "pos": "名詞", + "pn": -0.119568 + }, + { + "surface": "ふるとり", + "readging": "ふるとり", + "pos": "名詞", + "pn": -0.119568 + }, + { + "surface": "ひよみのとり", + "readging": "ひよみのとり", + "pos": "名詞", + "pn": -0.119568 + }, + { + "surface": "直", + "readging": "じき", + "pos": "名詞", + "pn": -0.119588 + }, + { + "surface": "山霊", + "readging": "さんれい", + "pos": "名詞", + "pn": -0.119598 + }, + { + "surface": "単記", + "readging": "たんき", + "pos": "名詞", + "pn": -0.119642 + }, + { + "surface": "守神", + "readging": "まもりがみ", + "pos": "名詞", + "pn": -0.11965 + }, + { + "surface": "理数", + "readging": "りすう", + "pos": "名詞", + "pn": -0.119652 + }, + { + "surface": "脂性", + "readging": "あぶらしょう", + "pos": "名詞", + "pn": -0.119654 + }, + { + "surface": "御国", + "readging": "おくに", + "pos": "名詞", + "pn": -0.119683 + }, + { + "surface": "放任", + "readging": "ほうにん", + "pos": "名詞", + "pn": -0.119692 + }, + { + "surface": "シャープ", + "readging": "シャープペンシル", + "pos": "名詞", + "pn": -0.119696 + }, + { + "surface": "本俸", + "readging": "ほんぽう", + "pos": "名詞", + "pn": -0.119707 + }, + { + "surface": "搗布", + "readging": "かじめ", + "pos": "名詞", + "pn": -0.119752 + }, + { + "surface": "主観性", + "readging": "しゅかんせい", + "pos": "名詞", + "pn": -0.119773 + }, + { + "surface": "外輪山", + "readging": "がいりんざん", + "pos": "名詞", + "pn": -0.119795 + }, + { + "surface": "文範", + "readging": "ぶんぱん", + "pos": "名詞", + "pn": -0.119918 + }, + { + "surface": "全訳", + "readging": "ぜんやく", + "pos": "名詞", + "pn": -0.119946 + }, + { + "surface": "有半", + "readging": "ゆうはん", + "pos": "名詞", + "pn": -0.119952 + }, + { + "surface": "数理", + "readging": "すうり", + "pos": "名詞", + "pn": -0.119979 + }, + { + "surface": "篆字", + "readging": "てんじ", + "pos": "名詞", + "pn": -0.12001 + }, + { + "surface": "使令", + "readging": "しれい", + "pos": "名詞", + "pn": -0.120011 + }, + { + "surface": "有無", + "readging": "ありなし", + "pos": "名詞", + "pn": -0.120021 + }, + { + "surface": "主権者", + "readging": "しゅけんしゃ", + "pos": "名詞", + "pn": -0.12003 + }, + { + "surface": "帝室", + "readging": "ていしつ", + "pos": "名詞", + "pn": -0.120034 + }, + { + "surface": "むり難題", + "readging": "むりなんだい", + "pos": "名詞", + "pn": -0.120039 + }, + { + "surface": "主取り", + "readging": "しゅうどり", + "pos": "名詞", + "pn": -0.120051 + }, + { + "surface": "容共", + "readging": "ようきょう", + "pos": "名詞", + "pn": -0.120063 + }, + { + "surface": "承知之助", + "readging": "しょうちのすけ", + "pos": "名詞", + "pn": -0.120086 + }, + { + "surface": "明答", + "readging": "めいとう", + "pos": "名詞", + "pn": -0.120111 + }, + { + "surface": "厭戦", + "readging": "えんせん", + "pos": "名詞", + "pn": -0.120114 + }, + { + "surface": "号音", + "readging": "ごうおん", + "pos": "名詞", + "pn": -0.12012 + }, + { + "surface": "加入", + "readging": "かにゅう", + "pos": "名詞", + "pn": -0.120131 + }, + { + "surface": "ロートル", + "readging": "ロートル", + "pos": "名詞", + "pn": -0.120157 + }, + { + "surface": "真因", + "readging": "しんいん", + "pos": "名詞", + "pn": -0.120176 + }, + { + "surface": "粘液質", + "readging": "ねんえきしつ", + "pos": "名詞", + "pn": -0.120189 + }, + { + "surface": "名木", + "readging": "めいぼく", + "pos": "名詞", + "pn": -0.120218 + }, + { + "surface": "観戦", + "readging": "かんせん", + "pos": "名詞", + "pn": -0.120224 + }, + { + "surface": "家作り", + "readging": "やづくり", + "pos": "名詞", + "pn": -0.120226 + }, + { + "surface": "諾否", + "readging": "だくひ", + "pos": "名詞", + "pn": -0.12025 + }, + { + "surface": "徳目", + "readging": "とくもく", + "pos": "名詞", + "pn": -0.120277 + }, + { + "surface": "閣内", + "readging": "かくない", + "pos": "名詞", + "pn": -0.120279 + }, + { + "surface": "恵方", + "readging": "えほう", + "pos": "名詞", + "pn": -0.120317 + }, + { + "surface": "サックス", + "readging": "サックス", + "pos": "名詞", + "pn": -0.120326 + }, + { + "surface": "語意", + "readging": "ごい", + "pos": "名詞", + "pn": -0.120351 + }, + { + "surface": "画竜点睛", + "readging": "がりょうてんせい", + "pos": "名詞", + "pn": -0.120355 + }, + { + "surface": "女腹", + "readging": "おんなばら", + "pos": "名詞", + "pn": -0.12037 + }, + { + "surface": "颯颯", + "readging": "さっさつ", + "pos": "名詞", + "pn": -0.120393 + }, + { + "surface": "相等", + "readging": "そうとう", + "pos": "名詞", + "pn": -0.120396 + }, + { + "surface": "極楽鳥", + "readging": "ごくらくちょう", + "pos": "名詞", + "pn": -0.120416 + }, + { + "surface": "予餞会", + "readging": "よせんかい", + "pos": "名詞", + "pn": -0.12042 + }, + { + "surface": "刷新", + "readging": "さっしん", + "pos": "名詞", + "pn": -0.120421 + }, + { + "surface": "勅額", + "readging": "ちょくがく", + "pos": "名詞", + "pn": -0.120446 + }, + { + "surface": "押し頂く", + "readging": "おしいただく", + "pos": "動詞", + "pn": -0.120454 + }, + { + "surface": "実説", + "readging": "じっせつ", + "pos": "名詞", + "pn": -0.120465 + }, + { + "surface": "寝物語", + "readging": "ねものがたり", + "pos": "名詞", + "pn": -0.120478 + }, + { + "surface": "文学者", + "readging": "ぶんがくしゃ", + "pos": "名詞", + "pn": -0.120501 + }, + { + "surface": "がぶがぶ", + "readging": "がぶがぶ", + "pos": "副詞", + "pn": -0.120553 + }, + { + "surface": "知識", + "readging": "ちしき", + "pos": "名詞", + "pn": -0.120559 + }, + { + "surface": "従姉妹", + "readging": "じゅうしまい", + "pos": "名詞", + "pn": -0.120577 + }, + { + "surface": "染め模様", + "readging": "そめもよう", + "pos": "名詞", + "pn": -0.120593 + }, + { + "surface": "次代", + "readging": "じだい", + "pos": "名詞", + "pn": -0.120617 + }, + { + "surface": "有る時払い", + "readging": "あるときばらい", + "pos": "名詞", + "pn": -0.120645 + }, + { + "surface": "海布", + "readging": "め", + "pos": "名詞", + "pn": -0.120649 + }, + { + "surface": "沼気", + "readging": "しょうき", + "pos": "名詞", + "pn": -0.120659 + }, + { + "surface": "ア式蹴球", + "readging": "アしきしゅうきゅう", + "pos": "名詞", + "pn": -0.120666 + }, + { + "surface": "パビリオン", + "readging": "パビリオン", + "pos": "名詞", + "pn": -0.120671 + }, + { + "surface": "余所目", + "readging": "よそめ", + "pos": "名詞", + "pn": -0.120674 + }, + { + "surface": "スタジアム", + "readging": "スタジアム", + "pos": "名詞", + "pn": -0.120676 + }, + { + "surface": "盗み読み", + "readging": "ぬすみよみ", + "pos": "名詞", + "pn": -0.120684 + }, + { + "surface": "天命", + "readging": "てんめい", + "pos": "名詞", + "pn": -0.120694 + }, + { + "surface": "併記", + "readging": "へいき", + "pos": "名詞", + "pn": -0.120714 + }, + { + "surface": "旧作", + "readging": "きゅうさく", + "pos": "名詞", + "pn": -0.120722 + }, + { + "surface": "天分", + "readging": "てんぶん", + "pos": "名詞", + "pn": -0.120752 + }, + { + "surface": "脱稿", + "readging": "だっこう", + "pos": "名詞", + "pn": -0.120752 + }, + { + "surface": "稿料", + "readging": "こうりょう", + "pos": "名詞", + "pn": -0.120752 + }, + { + "surface": "風前", + "readging": "ふうぜん", + "pos": "名詞", + "pn": -0.120781 + }, + { + "surface": "大御宝", + "readging": "おおみたから", + "pos": "名詞", + "pn": -0.120795 + }, + { + "surface": "創製", + "readging": "そうせい", + "pos": "名詞", + "pn": -0.120861 + }, + { + "surface": "弖爾乎波", + "readging": "てにをは", + "pos": "名詞", + "pn": -0.120869 + }, + { + "surface": "移調", + "readging": "いちょう", + "pos": "名詞", + "pn": -0.120872 + }, + { + "surface": "聖餐", + "readging": "せいさん", + "pos": "名詞", + "pn": -0.12088 + }, + { + "surface": "落成", + "readging": "らくせい", + "pos": "名詞", + "pn": -0.120909 + }, + { + "surface": "春雷", + "readging": "しゅんらい", + "pos": "名詞", + "pn": -0.120915 + }, + { + "surface": "歴朝", + "readging": "れきちょう", + "pos": "名詞", + "pn": -0.120931 + }, + { + "surface": "遺詠", + "readging": "いえい", + "pos": "名詞", + "pn": -0.120947 + }, + { + "surface": "東漸", + "readging": "とうぜん", + "pos": "名詞", + "pn": -0.120956 + }, + { + "surface": "自由詩", + "readging": "じゆうし", + "pos": "名詞", + "pn": -0.120972 + }, + { + "surface": "スイート ポテト", + "readging": "スイート ポテト", + "pos": "名詞", + "pn": -0.121025 + }, + { + "surface": "瘡痕", + "readging": "そうこん", + "pos": "名詞", + "pn": -0.121028 + }, + { + "surface": "舌鼓", + "readging": "したつづみ", + "pos": "名詞", + "pn": -0.121029 + }, + { + "surface": "台頭", + "readging": "たいとう", + "pos": "名詞", + "pn": -0.12104 + }, + { + "surface": "着映え", + "readging": "きばえ", + "pos": "名詞", + "pn": -0.12106 + }, + { + "surface": "微醺", + "readging": "びくん", + "pos": "名詞", + "pn": -0.121071 + }, + { + "surface": "被選挙権", + "readging": "ひせんきょけん", + "pos": "名詞", + "pn": -0.121088 + }, + { + "surface": "失格", + "readging": "しっかく", + "pos": "名詞", + "pn": -0.12109 + }, + { + "surface": "応札", + "readging": "おうさつ", + "pos": "名詞", + "pn": -0.121097 + }, + { + "surface": "中堅", + "readging": "ちゅうけん", + "pos": "名詞", + "pn": -0.121113 + }, + { + "surface": "誂", + "readging": "あつらえ", + "pos": "名詞", + "pn": -0.121118 + }, + { + "surface": "庭球", + "readging": "ていきゅう", + "pos": "名詞", + "pn": -0.121134 + }, + { + "surface": "治外法権", + "readging": "ちがいほうけん", + "pos": "名詞", + "pn": -0.121152 + }, + { + "surface": "緑化", + "readging": "りょくか", + "pos": "名詞", + "pn": -0.121157 + }, + { + "surface": "題辞", + "readging": "だいじ", + "pos": "名詞", + "pn": -0.121167 + }, + { + "surface": "舌代", + "readging": "しただい", + "pos": "名詞", + "pn": -0.121175 + }, + { + "surface": "自署", + "readging": "じしょ", + "pos": "名詞", + "pn": -0.121178 + }, + { + "surface": "婦道", + "readging": "ふどう", + "pos": "名詞", + "pn": -0.121193 + }, + { + "surface": "大僧正", + "readging": "だいそうじょう", + "pos": "名詞", + "pn": -0.121206 + }, + { + "surface": "寵愛", + "readging": "ちょうあい", + "pos": "名詞", + "pn": -0.121209 + }, + { + "surface": "偶然", + "readging": "ぐうぜん", + "pos": "副詞", + "pn": -0.121219 + }, + { + "surface": "萌え出る", + "readging": "もえでる", + "pos": "動詞", + "pn": -0.121223 + }, + { + "surface": "五十路", + "readging": "いそじ", + "pos": "名詞", + "pn": -0.121228 + }, + { + "surface": "筆録", + "readging": "ひつろく", + "pos": "名詞", + "pn": -0.121268 + }, + { + "surface": "乗進める", + "readging": "のりすすめる", + "pos": "動詞", + "pn": -0.121276 + }, + { + "surface": "持逃げ", + "readging": "もちにげ", + "pos": "名詞", + "pn": -0.121333 + }, + { + "surface": "真草", + "readging": "しんそう", + "pos": "名詞", + "pn": -0.121341 + }, + { + "surface": "歌手", + "readging": "かしゅ", + "pos": "名詞", + "pn": -0.121342 + }, + { + "surface": "北上", + "readging": "ほくじょう", + "pos": "名詞", + "pn": -0.121347 + }, + { + "surface": "御題目", + "readging": "おだいもく", + "pos": "名詞", + "pn": -0.121355 + }, + { + "surface": "散布", + "readging": "さんぷ", + "pos": "名詞", + "pn": -0.121356 + }, + { + "surface": "後場", + "readging": "ごば", + "pos": "名詞", + "pn": -0.121377 + }, + { + "surface": "散光", + "readging": "さんこう", + "pos": "名詞", + "pn": -0.12138 + }, + { + "surface": "黒人", + "readging": "こくじん", + "pos": "名詞", + "pn": -0.121388 + }, + { + "surface": "娘子軍", + "readging": "じょうしぐん", + "pos": "名詞", + "pn": -0.121398 + }, + { + "surface": "雨季", + "readging": "うき", + "pos": "名詞", + "pn": -0.121547 + }, + { + "surface": "初荷", + "readging": "はつに", + "pos": "名詞", + "pn": -0.121547 + }, + { + "surface": "罪滅ぼし", + "readging": "つみほろぼし", + "pos": "名詞", + "pn": -0.121549 + }, + { + "surface": "むり無体", + "readging": "むりむたい", + "pos": "名詞", + "pn": -0.121555 + }, + { + "surface": "収奪", + "readging": "しゅうだつ", + "pos": "名詞", + "pn": -0.121555 + }, + { + "surface": "還幸", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.121555 + }, + { + "surface": "国務省", + "readging": "こくむしょう", + "pos": "名詞", + "pn": -0.121558 + }, + { + "surface": "大千世界", + "readging": "だいせんせかい", + "pos": "名詞", + "pn": -0.121578 + }, + { + "surface": "乗艦", + "readging": "じょうかん", + "pos": "名詞", + "pn": -0.121627 + }, + { + "surface": "顔馴染", + "readging": "かおなじみ", + "pos": "名詞", + "pn": -0.121632 + }, + { + "surface": "額際", + "readging": "ひたいぎわ", + "pos": "名詞", + "pn": -0.121676 + }, + { + "surface": "斜", + "readging": "しゃ", + "pos": "名詞", + "pn": -0.121698 + }, + { + "surface": "自認", + "readging": "じにん", + "pos": "名詞", + "pn": -0.121705 + }, + { + "surface": "残雪", + "readging": "ざんせつ", + "pos": "名詞", + "pn": -0.121717 + }, + { + "surface": "子宝", + "readging": "こだから", + "pos": "名詞", + "pn": -0.12173 + }, + { + "surface": "ニュー", + "readging": "ニューフェース", + "pos": "名詞", + "pn": -0.121742 + }, + { + "surface": "戦端", + "readging": "せんたん", + "pos": "名詞", + "pn": -0.121748 + }, + { + "surface": "流行る", + "readging": "はやる", + "pos": "動詞", + "pn": -0.121758 + }, + { + "surface": "六十路", + "readging": "むそじ", + "pos": "名詞", + "pn": -0.121765 + }, + { + "surface": "杜撰", + "readging": "ずさん", + "pos": "名詞", + "pn": -0.121773 + }, + { + "surface": "中音", + "readging": "ちゅうおん", + "pos": "名詞", + "pn": -0.121795 + }, + { + "surface": "発注", + "readging": "はっちゅう", + "pos": "名詞", + "pn": -0.121814 + }, + { + "surface": "月日", + "readging": "がっぴ", + "pos": "名詞", + "pn": -0.121829 + }, + { + "surface": "薪能", + "readging": "たきぎのう", + "pos": "名詞", + "pn": -0.121831 + }, + { + "surface": "養母", + "readging": "ようぼ", + "pos": "名詞", + "pn": -0.12185 + }, + { + "surface": "見え隠れ", + "readging": "みえがくれ", + "pos": "名詞", + "pn": -0.121867 + }, + { + "surface": "転化", + "readging": "てんか", + "pos": "名詞", + "pn": -0.121869 + }, + { + "surface": "色弱", + "readging": "しきじゃく", + "pos": "名詞", + "pn": -0.121874 + }, + { + "surface": "実意", + "readging": "じつい", + "pos": "名詞", + "pn": -0.121877 + }, + { + "surface": "知人", + "readging": "ちじん", + "pos": "名詞", + "pn": -0.12189 + }, + { + "surface": "宮司", + "readging": "ぐうじ", + "pos": "名詞", + "pn": -0.121939 + }, + { + "surface": "平坦", + "readging": "へいたん", + "pos": "名詞", + "pn": -0.121971 + }, + { + "surface": "健常者", + "readging": "けんじょうしゃ", + "pos": "名詞", + "pn": -0.121987 + }, + { + "surface": "鉄管", + "readging": "てっかん", + "pos": "名詞", + "pn": -0.122006 + }, + { + "surface": "俚耳", + "readging": "りじ", + "pos": "名詞", + "pn": -0.122008 + }, + { + "surface": "丈余", + "readging": "じょうよ", + "pos": "名詞", + "pn": -0.122016 + }, + { + "surface": "夜気", + "readging": "やき", + "pos": "名詞", + "pn": -0.122029 + }, + { + "surface": "遣外", + "readging": "けんがい", + "pos": "名詞", + "pn": -0.122038 + }, + { + "surface": "定額", + "readging": "ていがく", + "pos": "名詞", + "pn": -0.122055 + }, + { + "surface": "スタンザ", + "readging": "スタンザ", + "pos": "名詞", + "pn": -0.122069 + }, + { + "surface": "宸翰", + "readging": "しんかん", + "pos": "名詞", + "pn": -0.122071 + }, + { + "surface": "離京", + "readging": "りきょう", + "pos": "名詞", + "pn": -0.122085 + }, + { + "surface": "原石", + "readging": "げんせき", + "pos": "名詞", + "pn": -0.122121 + }, + { + "surface": "遷幸", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.122123 + }, + { + "surface": "私刑", + "readging": "しけい", + "pos": "名詞", + "pn": -0.122135 + }, + { + "surface": "体する", + "readging": "たいする", + "pos": "動詞", + "pn": -0.12214 + }, + { + "surface": "七光", + "readging": "ななひかり", + "pos": "名詞", + "pn": -0.122161 + }, + { + "surface": "道学", + "readging": "どうがく", + "pos": "名詞", + "pn": -0.122179 + }, + { + "surface": "同根", + "readging": "どうこん", + "pos": "名詞", + "pn": -0.122199 + }, + { + "surface": "嫁御", + "readging": "よめご", + "pos": "名詞", + "pn": -0.122208 + }, + { + "surface": "宝船", + "readging": "たからぶね", + "pos": "名詞", + "pn": -0.122217 + }, + { + "surface": "元種", + "readging": "もとだね", + "pos": "名詞", + "pn": -0.12222 + }, + { + "surface": "段ち", + "readging": "だんち", + "pos": "名詞", + "pn": -0.122265 + }, + { + "surface": "仰ぐ", + "readging": "あおぐ", + "pos": "動詞", + "pn": -0.122352 + }, + { + "surface": "幕政", + "readging": "ばくせい", + "pos": "名詞", + "pn": -0.122356 + }, + { + "surface": "補完", + "readging": "ほかん", + "pos": "名詞", + "pn": -0.122378 + }, + { + "surface": "多目的", + "readging": "たもくてき", + "pos": "名詞", + "pn": -0.122413 + }, + { + "surface": "人文", + "readging": "じんぶん", + "pos": "名詞", + "pn": -0.122428 + }, + { + "surface": "雪肌", + "readging": "ゆきはだ", + "pos": "名詞", + "pn": -0.12247 + }, + { + "surface": "ブラック", + "readging": "ブラック", + "pos": "名詞", + "pn": -0.122482 + }, + { + "surface": "給電", + "readging": "きゅうでん", + "pos": "名詞", + "pn": -0.122489 + }, + { + "surface": "別法", + "readging": "べっぽう", + "pos": "名詞", + "pn": -0.122502 + }, + { + "surface": "ポート ワイン", + "readging": "ポート ワイン", + "pos": "名詞", + "pn": -0.122565 + }, + { + "surface": "翌月", + "readging": "よくげつ", + "pos": "名詞", + "pn": -0.122575 + }, + { + "surface": "共同社会", + "readging": "きょうどうしゃかい", + "pos": "名詞", + "pn": -0.122601 + }, + { + "surface": "懐手", + "readging": "ふところで", + "pos": "名詞", + "pn": -0.122605 + }, + { + "surface": "倍加", + "readging": "ばいか", + "pos": "名詞", + "pn": -0.12263 + }, + { + "surface": "謝儀", + "readging": "しゃぎ", + "pos": "名詞", + "pn": -0.122638 + }, + { + "surface": "結縄", + "readging": "けつじょう", + "pos": "名詞", + "pn": -0.122641 + }, + { + "surface": "むざむざ", + "readging": "むざむざ", + "pos": "副詞", + "pn": -0.122649 + }, + { + "surface": "別所", + "readging": "べっしょ", + "pos": "名詞", + "pn": -0.122656 + }, + { + "surface": "時報", + "readging": "じほう", + "pos": "名詞", + "pn": -0.122696 + }, + { + "surface": "秘境", + "readging": "ひきょう", + "pos": "名詞", + "pn": -0.122706 + }, + { + "surface": "立引", + "readging": "たてひき", + "pos": "名詞", + "pn": -0.122727 + }, + { + "surface": "妻室", + "readging": "さいしつ", + "pos": "名詞", + "pn": -0.12273 + }, + { + "surface": "低唱", + "readging": "ていしょう", + "pos": "名詞", + "pn": -0.122751 + }, + { + "surface": "水筆", + "readging": "すいひつ", + "pos": "名詞", + "pn": -0.12277 + }, + { + "surface": "読誦", + "readging": "どくしょう", + "pos": "名詞", + "pn": -0.122775 + }, + { + "surface": "待焦がれる", + "readging": "まちこがれる", + "pos": "動詞", + "pn": -0.122794 + }, + { + "surface": "ヤンキー", + "readging": "ヤンキー", + "pos": "名詞", + "pn": -0.122806 + }, + { + "surface": "必読", + "readging": "ひつどく", + "pos": "名詞", + "pn": -0.122836 + }, + { + "surface": "群像", + "readging": "ぐんぞう", + "pos": "名詞", + "pn": -0.122855 + }, + { + "surface": "前言", + "readging": "ぜんげん", + "pos": "名詞", + "pn": -0.122865 + }, + { + "surface": "公法", + "readging": "こうほう", + "pos": "名詞", + "pn": -0.122909 + }, + { + "surface": "唐錦", + "readging": "からにしき", + "pos": "名詞", + "pn": -0.122923 + }, + { + "surface": "看板倒れ", + "readging": "かんばんだおれ", + "pos": "名詞", + "pn": -0.122926 + }, + { + "surface": "赤目", + "readging": "あかめ", + "pos": "名詞", + "pn": -0.122952 + }, + { + "surface": "加除", + "readging": "かじょ", + "pos": "名詞", + "pn": -0.12299 + }, + { + "surface": "我利我利", + "readging": "がりがり", + "pos": "名詞", + "pn": -0.123013 + }, + { + "surface": "分教場", + "readging": "ぶんきょうじょう", + "pos": "名詞", + "pn": -0.123022 + }, + { + "surface": "同一視", + "readging": "どういつし", + "pos": "名詞", + "pn": -0.123023 + }, + { + "surface": "結団", + "readging": "けつだん", + "pos": "名詞", + "pn": -0.123048 + }, + { + "surface": "賊兵", + "readging": "ぞくへい", + "pos": "名詞", + "pn": -0.123079 + }, + { + "surface": "リベラリスト", + "readging": "リベラリスト", + "pos": "名詞", + "pn": -0.123113 + }, + { + "surface": "逸楽", + "readging": "いつらく", + "pos": "名詞", + "pn": -0.123115 + }, + { + "surface": "読取る", + "readging": "よみとる", + "pos": "動詞", + "pn": -0.123136 + }, + { + "surface": "読みこなす", + "readging": "よみこなす", + "pos": "動詞", + "pn": -0.123136 + }, + { + "surface": "被治者", + "readging": "ひちしゃ", + "pos": "名詞", + "pn": -0.123144 + }, + { + "surface": "頓証菩提", + "readging": "とんしょうぼだい", + "pos": "名詞", + "pn": -0.123162 + }, + { + "surface": "給", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.123194 + }, + { + "surface": "邦舞", + "readging": "ほうぶ", + "pos": "名詞", + "pn": -0.123209 + }, + { + "surface": "校則", + "readging": "こうそく", + "pos": "名詞", + "pn": -0.123209 + }, + { + "surface": "実検", + "readging": "じっけん", + "pos": "名詞", + "pn": -0.123214 + }, + { + "surface": "人格主義", + "readging": "じんかくしゅぎ", + "pos": "名詞", + "pn": -0.123237 + }, + { + "surface": "講説", + "readging": "こうせつ", + "pos": "名詞", + "pn": -0.123241 + }, + { + "surface": "昔馴染", + "readging": "むかしなじみ", + "pos": "名詞", + "pn": -0.123262 + }, + { + "surface": "後翅", + "readging": "こうし", + "pos": "名詞", + "pn": -0.123267 + }, + { + "surface": "グロス", + "readging": "グロス", + "pos": "名詞", + "pn": -0.123276 + }, + { + "surface": "盛業", + "readging": "せいぎょう", + "pos": "名詞", + "pn": -0.123323 + }, + { + "surface": "産業予備軍", + "readging": "さんぎょうよびぐん", + "pos": "名詞", + "pn": -0.123326 + }, + { + "surface": "エデン", + "readging": "エデン", + "pos": "名詞", + "pn": -0.123329 + }, + { + "surface": "新清酒", + "readging": "しんせいしゅ", + "pos": "名詞", + "pn": -0.123355 + }, + { + "surface": "差伸べる", + "readging": "さしのべる", + "pos": "動詞", + "pn": -0.123359 + }, + { + "surface": "従姉", + "readging": "じゅうし", + "pos": "名詞", + "pn": -0.123366 + }, + { + "surface": "始業", + "readging": "しぎょう", + "pos": "名詞", + "pn": -0.123427 + }, + { + "surface": "コンチネンタル", + "readging": "コンチネンタル", + "pos": "名詞", + "pn": -0.123429 + }, + { + "surface": "口腹", + "readging": "こうふく", + "pos": "名詞", + "pn": -0.123434 + }, + { + "surface": "連休", + "readging": "れんきゅう", + "pos": "名詞", + "pn": -0.12346 + }, + { + "surface": "筆戦", + "readging": "ひっせん", + "pos": "名詞", + "pn": -0.123469 + }, + { + "surface": "墨客", + "readging": "ぼっきゃく", + "pos": "名詞", + "pn": -0.123482 + }, + { + "surface": "ドキュメンタリー", + "readging": "ドキュメンタリー", + "pos": "名詞", + "pn": -0.123495 + }, + { + "surface": "完熟", + "readging": "かんじゅく", + "pos": "名詞", + "pn": -0.123506 + }, + { + "surface": "料る", + "readging": "りょうる", + "pos": "動詞", + "pn": -0.123514 + }, + { + "surface": "大原女", + "readging": "おはらめ", + "pos": "名詞", + "pn": -0.123527 + }, + { + "surface": "安価", + "readging": "あんか", + "pos": "名詞", + "pn": -0.123552 + }, + { + "surface": "照降り雨", + "readging": "てりふりあめ", + "pos": "名詞", + "pn": -0.123598 + }, + { + "surface": "高望み", + "readging": "たかのぞみ", + "pos": "名詞", + "pn": -0.123612 + }, + { + "surface": "汎神論", + "readging": "はんしんろん", + "pos": "名詞", + "pn": -0.123648 + }, + { + "surface": "おひろい", + "readging": "おひろい", + "pos": "名詞", + "pn": -0.123649 + }, + { + "surface": "廃案", + "readging": "はいあん", + "pos": "名詞", + "pn": -0.123654 + }, + { + "surface": "手編", + "readging": "てあみ", + "pos": "名詞", + "pn": -0.123667 + }, + { + "surface": "人文", + "readging": "じんもん", + "pos": "名詞", + "pn": -0.123673 + }, + { + "surface": "付け文", + "readging": "つけぶみ", + "pos": "名詞", + "pn": -0.123677 + }, + { + "surface": "諾する", + "readging": "だくする", + "pos": "動詞", + "pn": -0.123698 + }, + { + "surface": "カイゼル髭", + "readging": "カイゼルひげ", + "pos": "名詞", + "pn": -0.12371 + }, + { + "surface": "力走", + "readging": "りきそう", + "pos": "名詞", + "pn": -0.123727 + }, + { + "surface": "日本酒", + "readging": "にほんしゅ", + "pos": "名詞", + "pn": -0.123733 + }, + { + "surface": "拡充", + "readging": "かくじゅう", + "pos": "名詞", + "pn": -0.123764 + }, + { + "surface": "オリエンタル", + "readging": "オリエンタル", + "pos": "名詞", + "pn": -0.123772 + }, + { + "surface": "自然言語", + "readging": "しぜんげんご", + "pos": "名詞", + "pn": -0.123815 + }, + { + "surface": "雪渓", + "readging": "せっけい", + "pos": "名詞", + "pn": -0.123817 + }, + { + "surface": "諭旨", + "readging": "ゆし", + "pos": "名詞", + "pn": -0.123829 + }, + { + "surface": "火色", + "readging": "ひいろ", + "pos": "名詞", + "pn": -0.123831 + }, + { + "surface": "多発", + "readging": "たはつ", + "pos": "名詞", + "pn": -0.123871 + }, + { + "surface": "見立て", + "readging": "みたて", + "pos": "名詞", + "pn": -0.123877 + }, + { + "surface": "積立てる", + "readging": "つみたてる", + "pos": "動詞", + "pn": -0.12388 + }, + { + "surface": "校歌", + "readging": "こうか", + "pos": "名詞", + "pn": -0.123893 + }, + { + "surface": "べた一面", + "readging": "べたいちめん", + "pos": "名詞", + "pn": -0.123894 + }, + { + "surface": "重砲", + "readging": "じゅうほう", + "pos": "名詞", + "pn": -0.123898 + }, + { + "surface": "女帝", + "readging": "じょてい", + "pos": "名詞", + "pn": -0.123899 + }, + { + "surface": "逐一", + "readging": "ちくいち", + "pos": "副詞", + "pn": -0.123918 + }, + { + "surface": "等比級数", + "readging": "とうひきゅうすう", + "pos": "名詞", + "pn": -0.12397 + }, + { + "surface": "我流", + "readging": "がりゅう", + "pos": "名詞", + "pn": -0.123975 + }, + { + "surface": "無定型", + "readging": "むていけい", + "pos": "名詞", + "pn": -0.12399 + }, + { + "surface": "雌滝", + "readging": "めだき", + "pos": "名詞", + "pn": -0.124012 + }, + { + "surface": "直営", + "readging": "ちょくえい", + "pos": "名詞", + "pn": -0.12402 + }, + { + "surface": "高坏", + "readging": "たかつき", + "pos": "名詞", + "pn": -0.12403 + }, + { + "surface": "授業料", + "readging": "じゅぎょうりょう", + "pos": "名詞", + "pn": -0.124036 + }, + { + "surface": "講社", + "readging": "こうしゃ", + "pos": "名詞", + "pn": -0.124046 + }, + { + "surface": "モラリスト", + "readging": "モラリスト", + "pos": "名詞", + "pn": -0.124051 + }, + { + "surface": "教則", + "readging": "きょうそく", + "pos": "名詞", + "pn": -0.124062 + }, + { + "surface": "進攻", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.124065 + }, + { + "surface": "ファンタジー", + "readging": "ファンタジー", + "pos": "名詞", + "pn": -0.124068 + }, + { + "surface": "切れ長", + "readging": "きれなが", + "pos": "名詞", + "pn": -0.12407 + }, + { + "surface": "素戻り", + "readging": "すもどり", + "pos": "名詞", + "pn": -0.124087 + }, + { + "surface": "見す見す", + "readging": "みすみす", + "pos": "副詞", + "pn": -0.124135 + }, + { + "surface": "密奏", + "readging": "みっそう", + "pos": "名詞", + "pn": -0.124145 + }, + { + "surface": "最古", + "readging": "さいこ", + "pos": "名詞", + "pn": -0.124147 + }, + { + "surface": "外物", + "readging": "がいぶつ", + "pos": "名詞", + "pn": -0.12418 + }, + { + "surface": "言文一致", + "readging": "げんぶんいっち", + "pos": "名詞", + "pn": -0.124187 + }, + { + "surface": "見遣る", + "readging": "みやる", + "pos": "動詞", + "pn": -0.124201 + }, + { + "surface": "遠巻き", + "readging": "とおまき", + "pos": "名詞", + "pn": -0.124201 + }, + { + "surface": "接伴", + "readging": "せっぱん", + "pos": "名詞", + "pn": -0.12422 + }, + { + "surface": "浅知恵", + "readging": "あさぢえ", + "pos": "名詞", + "pn": -0.12422 + }, + { + "surface": "発給", + "readging": "はっきゅう", + "pos": "名詞", + "pn": -0.124226 + }, + { + "surface": "伊", + "readging": "い", + "pos": "名詞", + "pn": -0.124252 + }, + { + "surface": "諺文", + "readging": "おんもん", + "pos": "名詞", + "pn": -0.124261 + }, + { + "surface": "調練", + "readging": "ちょうれん", + "pos": "名詞", + "pn": -0.124319 + }, + { + "surface": "器材", + "readging": "きざい", + "pos": "名詞", + "pn": -0.124353 + }, + { + "surface": "立后", + "readging": "りっこう", + "pos": "名詞", + "pn": -0.124378 + }, + { + "surface": "威光", + "readging": "いこう", + "pos": "名詞", + "pn": -0.124379 + }, + { + "surface": "伝授", + "readging": "でんじゅ", + "pos": "名詞", + "pn": -0.124402 + }, + { + "surface": "軽食", + "readging": "けいしょく", + "pos": "名詞", + "pn": -0.124405 + }, + { + "surface": "体育", + "readging": "たいいく", + "pos": "名詞", + "pn": -0.124409 + }, + { + "surface": "常談", + "readging": "じょうだん", + "pos": "名詞", + "pn": -0.124413 + }, + { + "surface": "表門", + "readging": "おもてもん", + "pos": "名詞", + "pn": -0.124415 + }, + { + "surface": "浅み", + "readging": "あさみ", + "pos": "名詞", + "pn": -0.124424 + }, + { + "surface": "唐紙", + "readging": "とうし", + "pos": "名詞", + "pn": -0.124432 + }, + { + "surface": "修史", + "readging": "しゅうし", + "pos": "名詞", + "pn": -0.124466 + }, + { + "surface": "生酢", + "readging": "きず", + "pos": "名詞", + "pn": -0.124471 + }, + { + "surface": "口述", + "readging": "こうじゅつ", + "pos": "名詞", + "pn": -0.124473 + }, + { + "surface": "降格", + "readging": "こうかく", + "pos": "名詞", + "pn": -0.124479 + }, + { + "surface": "押して", + "readging": "おして", + "pos": "副詞", + "pn": -0.124481 + }, + { + "surface": "散米", + "readging": "さんまい", + "pos": "名詞", + "pn": -0.12449 + }, + { + "surface": "水田", + "readging": "すいでん", + "pos": "名詞", + "pn": -0.124494 + }, + { + "surface": "受領", + "readging": "じゅりょう", + "pos": "名詞", + "pn": -0.124508 + }, + { + "surface": "致死", + "readging": "ちし", + "pos": "名詞", + "pn": -0.124512 + }, + { + "surface": "初買", + "readging": "はつがい", + "pos": "名詞", + "pn": -0.124517 + }, + { + "surface": "山の神", + "readging": "やまのかみ", + "pos": "名詞", + "pn": -0.124517 + }, + { + "surface": "巨弾", + "readging": "きょだん", + "pos": "名詞", + "pn": -0.124533 + }, + { + "surface": "艦橋", + "readging": "かんきょう", + "pos": "名詞", + "pn": -0.124544 + }, + { + "surface": "買被る", + "readging": "かいかぶる", + "pos": "動詞", + "pn": -0.124545 + }, + { + "surface": "校医", + "readging": "こうい", + "pos": "名詞", + "pn": -0.124588 + }, + { + "surface": "備考", + "readging": "びこう", + "pos": "名詞", + "pn": -0.124593 + }, + { + "surface": "残夢", + "readging": "ざんむ", + "pos": "名詞", + "pn": -0.124605 + }, + { + "surface": "ヒロイン", + "readging": "ヒロイン", + "pos": "名詞", + "pn": -0.12462 + }, + { + "surface": "資産勘定", + "readging": "しさんかんじょう", + "pos": "名詞", + "pn": -0.124643 + }, + { + "surface": "揚棄", + "readging": "ようき", + "pos": "名詞", + "pn": -0.124667 + }, + { + "surface": "引責", + "readging": "いんせき", + "pos": "名詞", + "pn": -0.124673 + }, + { + "surface": "シャンソン", + "readging": "シャンソン", + "pos": "名詞", + "pn": -0.124689 + }, + { + "surface": "一揆", + "readging": "いっき", + "pos": "名詞", + "pn": -0.124723 + }, + { + "surface": "財宝", + "readging": "ざいほう", + "pos": "名詞", + "pn": -0.124728 + }, + { + "surface": "ローン テニス", + "readging": "ローン テニス", + "pos": "名詞", + "pn": -0.12475 + }, + { + "surface": "兵務", + "readging": "へいむ", + "pos": "名詞", + "pn": -0.124755 + }, + { + "surface": "自記", + "readging": "じき", + "pos": "名詞", + "pn": -0.124759 + }, + { + "surface": "純一", + "readging": "じゅんいつ", + "pos": "名詞", + "pn": -0.124785 + }, + { + "surface": "強行", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.124795 + }, + { + "surface": "唯識", + "readging": "ゆいしき", + "pos": "名詞", + "pn": -0.12481 + }, + { + "surface": "いちころ", + "readging": "いちころ", + "pos": "名詞", + "pn": -0.124823 + }, + { + "surface": "持時間", + "readging": "もちじかん", + "pos": "名詞", + "pn": -0.124851 + }, + { + "surface": "潜入", + "readging": "せんにゅう", + "pos": "名詞", + "pn": -0.124896 + }, + { + "surface": "出超", + "readging": "しゅっちょう", + "pos": "名詞", + "pn": -0.124909 + }, + { + "surface": "一張羅", + "readging": "いっちょうら", + "pos": "名詞", + "pn": -0.124915 + }, + { + "surface": "現収", + "readging": "げんしゅう", + "pos": "名詞", + "pn": -0.124924 + }, + { + "surface": "恋", + "readging": "こい", + "pos": "名詞", + "pn": -0.124942 + }, + { + "surface": "奏聞", + "readging": "そうもん", + "pos": "名詞", + "pn": -0.124947 + }, + { + "surface": "予納", + "readging": "よのう", + "pos": "名詞", + "pn": -0.124949 + }, + { + "surface": "用言", + "readging": "ようげん", + "pos": "名詞", + "pn": -0.124952 + }, + { + "surface": "新令", + "readging": "しんれい", + "pos": "名詞", + "pn": -0.124956 + }, + { + "surface": "原鉱", + "readging": "げんこう", + "pos": "名詞", + "pn": -0.124957 + }, + { + "surface": "八十路", + "readging": "やそじ", + "pos": "名詞", + "pn": -0.124958 + }, + { + "surface": "盗心", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.124962 + }, + { + "surface": "時針", + "readging": "じしん", + "pos": "名詞", + "pn": -0.124965 + }, + { + "surface": "浄書", + "readging": "じょうしょ", + "pos": "名詞", + "pn": -0.124968 + }, + { + "surface": "浄写", + "readging": "じょうしゃ", + "pos": "名詞", + "pn": -0.124968 + }, + { + "surface": "原票", + "readging": "げんぴょう", + "pos": "名詞", + "pn": -0.12497 + }, + { + "surface": "ディスコ", + "readging": "ディスコ", + "pos": "名詞", + "pn": -0.124982 + }, + { + "surface": "女波", + "readging": "めなみ", + "pos": "名詞", + "pn": -0.125009 + }, + { + "surface": "煮焼き", + "readging": "にやき", + "pos": "名詞", + "pn": -0.12501 + }, + { + "surface": "長流", + "readging": "ちょうりゅう", + "pos": "名詞", + "pn": -0.125015 + }, + { + "surface": "盲探し", + "readging": "めくらさがし", + "pos": "名詞", + "pn": -0.125025 + }, + { + "surface": "礼回り", + "readging": "れいまわり", + "pos": "名詞", + "pn": -0.125034 + }, + { + "surface": "十指", + "readging": "じっし", + "pos": "名詞", + "pn": -0.125035 + }, + { + "surface": "パッケージ", + "readging": "パッケージ", + "pos": "名詞", + "pn": -0.12504 + }, + { + "surface": "知者", + "readging": "ちしゃ", + "pos": "名詞", + "pn": -0.125045 + }, + { + "surface": "千言", + "readging": "せんげん", + "pos": "名詞", + "pn": -0.125049 + }, + { + "surface": "管財", + "readging": "かんざい", + "pos": "名詞", + "pn": -0.125086 + }, + { + "surface": "溶質", + "readging": "ようしつ", + "pos": "名詞", + "pn": -0.125102 + }, + { + "surface": "落花", + "readging": "らっか", + "pos": "名詞", + "pn": -0.125189 + }, + { + "surface": "大分", + "readging": "だいぶ", + "pos": "副詞", + "pn": -0.125201 + }, + { + "surface": "柿落し", + "readging": "こけらおとし", + "pos": "名詞", + "pn": -0.125229 + }, + { + "surface": "ファンファーレ", + "readging": "ファンファーレ", + "pos": "名詞", + "pn": -0.125253 + }, + { + "surface": "辻待ち", + "readging": "つじまち", + "pos": "名詞", + "pn": -0.12528 + }, + { + "surface": "刑訴", + "readging": "けいそ", + "pos": "名詞", + "pn": -0.125284 + }, + { + "surface": "湖沼", + "readging": "こしょう", + "pos": "名詞", + "pn": -0.125301 + }, + { + "surface": "勤倹", + "readging": "きんけん", + "pos": "名詞", + "pn": -0.125317 + }, + { + "surface": "曠職", + "readging": "こうしょく", + "pos": "名詞", + "pn": -0.125324 + }, + { + "surface": "学帽", + "readging": "がくぼう", + "pos": "名詞", + "pn": -0.125336 + }, + { + "surface": "初年兵", + "readging": "しょねんへい", + "pos": "名詞", + "pn": -0.125339 + }, + { + "surface": "神仙", + "readging": "しんせん", + "pos": "名詞", + "pn": -0.125369 + }, + { + "surface": "剣山", + "readging": "けんざん", + "pos": "名詞", + "pn": -0.125369 + }, + { + "surface": "古刹", + "readging": "こさつ", + "pos": "名詞", + "pn": -0.125392 + }, + { + "surface": "楽想", + "readging": "がくそう", + "pos": "名詞", + "pn": -0.125399 + }, + { + "surface": "祭式", + "readging": "さいしき", + "pos": "名詞", + "pn": -0.125414 + }, + { + "surface": "人間工学", + "readging": "にんげんこうがく", + "pos": "名詞", + "pn": -0.125427 + }, + { + "surface": "熟眠", + "readging": "じゅくみん", + "pos": "名詞", + "pn": -0.125428 + }, + { + "surface": "老公", + "readging": "ろうこう", + "pos": "名詞", + "pn": -0.125442 + }, + { + "surface": "民選", + "readging": "みんせん", + "pos": "名詞", + "pn": -0.125444 + }, + { + "surface": "対人", + "readging": "たいじん", + "pos": "名詞", + "pn": -0.125455 + }, + { + "surface": "百千", + "readging": "ひゃくせん", + "pos": "名詞", + "pn": -0.125461 + }, + { + "surface": "令姉", + "readging": "れいし", + "pos": "名詞", + "pn": -0.125464 + }, + { + "surface": "猛撃", + "readging": "もうげき", + "pos": "名詞", + "pn": -0.125493 + }, + { + "surface": "口拍子", + "readging": "くちびょうし", + "pos": "名詞", + "pn": -0.125493 + }, + { + "surface": "欲目", + "readging": "よくめ", + "pos": "名詞", + "pn": -0.125508 + }, + { + "surface": "名誉職", + "readging": "めいよしょく", + "pos": "名詞", + "pn": -0.125524 + }, + { + "surface": "統監", + "readging": "とうかん", + "pos": "名詞", + "pn": -0.125546 + }, + { + "surface": "何じゃもんじゃ", + "readging": "なんじゃもんじゃ", + "pos": "名詞", + "pn": -0.125565 + }, + { + "surface": "法益", + "readging": "ほうえき", + "pos": "名詞", + "pn": -0.125587 + }, + { + "surface": "風勢", + "readging": "ふうせい", + "pos": "名詞", + "pn": -0.125601 + }, + { + "surface": "免罪", + "readging": "めんざい", + "pos": "名詞", + "pn": -0.125604 + }, + { + "surface": "共白髪", + "readging": "ともしらが", + "pos": "名詞", + "pn": -0.125627 + }, + { + "surface": "遊園地", + "readging": "ゆうえんち", + "pos": "名詞", + "pn": -0.125636 + }, + { + "surface": "下屋敷", + "readging": "しもやしき", + "pos": "名詞", + "pn": -0.125641 + }, + { + "surface": "君父", + "readging": "くんぷ", + "pos": "名詞", + "pn": -0.125672 + }, + { + "surface": "私財", + "readging": "しざい", + "pos": "名詞", + "pn": -0.125683 + }, + { + "surface": "絶筆", + "readging": "ぜっぴつ", + "pos": "名詞", + "pn": -0.12572 + }, + { + "surface": "耐寒", + "readging": "たいかん", + "pos": "名詞", + "pn": -0.125733 + }, + { + "surface": "チャペル", + "readging": "チャペル", + "pos": "名詞", + "pn": -0.12574 + }, + { + "surface": "牧師", + "readging": "ぼくし", + "pos": "名詞", + "pn": -0.12574 + }, + { + "surface": "耽読", + "readging": "たんどく", + "pos": "名詞", + "pn": -0.12576 + }, + { + "surface": "帰山", + "readging": "きさん", + "pos": "名詞", + "pn": -0.125801 + }, + { + "surface": "従兄", + "readging": "じゅうけい", + "pos": "名詞", + "pn": -0.125818 + }, + { + "surface": "猛進", + "readging": "もうしん", + "pos": "名詞", + "pn": -0.125838 + }, + { + "surface": "風脚", + "readging": "かざあし", + "pos": "名詞", + "pn": -0.125846 + }, + { + "surface": "天顔", + "readging": "てんがん", + "pos": "名詞", + "pn": -0.125955 + }, + { + "surface": "厳封", + "readging": "げんぷう", + "pos": "名詞", + "pn": -0.125966 + }, + { + "surface": "天眼", + "readging": "てんがん", + "pos": "名詞", + "pn": -0.125969 + }, + { + "surface": "無記名", + "readging": "むきめい", + "pos": "名詞", + "pn": -0.125972 + }, + { + "surface": "画商", + "readging": "がしょう", + "pos": "名詞", + "pn": -0.125985 + }, + { + "surface": "読了", + "readging": "どくりょう", + "pos": "名詞", + "pn": -0.12602 + }, + { + "surface": "天地人", + "readging": "てんちじん", + "pos": "名詞", + "pn": -0.126022 + }, + { + "surface": "青鞜", + "readging": "せいとう", + "pos": "名詞", + "pn": -0.126023 + }, + { + "surface": "末裔", + "readging": "まつえい", + "pos": "名詞", + "pn": -0.126038 + }, + { + "surface": "来着", + "readging": "らいちゃく", + "pos": "名詞", + "pn": -0.126054 + }, + { + "surface": "分有", + "readging": "ぶんゆう", + "pos": "名詞", + "pn": -0.126067 + }, + { + "surface": "近刊", + "readging": "きんかん", + "pos": "名詞", + "pn": -0.126083 + }, + { + "surface": "血相", + "readging": "けっそう", + "pos": "名詞", + "pn": -0.126095 + }, + { + "surface": "印璽", + "readging": "いんじ", + "pos": "名詞", + "pn": -0.126101 + }, + { + "surface": "アトム", + "readging": "アトム", + "pos": "名詞", + "pn": -0.12612 + }, + { + "surface": "中卒", + "readging": "ちゅうそつ", + "pos": "名詞", + "pn": -0.126128 + }, + { + "surface": "成案", + "readging": "せいあん", + "pos": "名詞", + "pn": -0.126139 + }, + { + "surface": "立聞き", + "readging": "たちぎき", + "pos": "名詞", + "pn": -0.12614 + }, + { + "surface": "とことこ", + "readging": "とことこ", + "pos": "副詞", + "pn": -0.126146 + }, + { + "surface": "改築", + "readging": "かいちく", + "pos": "名詞", + "pn": -0.126149 + }, + { + "surface": "国務", + "readging": "こくむ", + "pos": "名詞", + "pn": -0.126151 + }, + { + "surface": "文責", + "readging": "ぶんせき", + "pos": "名詞", + "pn": -0.126159 + }, + { + "surface": "言触らす", + "readging": "いいふらす", + "pos": "動詞", + "pn": -0.126165 + }, + { + "surface": "半濁音", + "readging": "はんだくおん", + "pos": "名詞", + "pn": -0.12619 + }, + { + "surface": "文運", + "readging": "ぶんうん", + "pos": "名詞", + "pn": -0.126192 + }, + { + "surface": "遺構", + "readging": "いこう", + "pos": "名詞", + "pn": -0.126195 + }, + { + "surface": "強がる", + "readging": "つよがる", + "pos": "動詞", + "pn": -0.12623 + }, + { + "surface": "後厄", + "readging": "あとやく", + "pos": "名詞", + "pn": -0.126294 + }, + { + "surface": "若作り", + "readging": "わかづくり", + "pos": "名詞", + "pn": -0.126296 + }, + { + "surface": "大同小異", + "readging": "だいどうしょうい", + "pos": "名詞", + "pn": -0.126305 + }, + { + "surface": "高嶺", + "readging": "たかね", + "pos": "名詞", + "pn": -0.126323 + }, + { + "surface": "さびる", + "readging": "さびる", + "pos": "動詞", + "pn": -0.126338 + }, + { + "surface": "称名", + "readging": "しょうみょう", + "pos": "名詞", + "pn": -0.126352 + }, + { + "surface": "包摂", + "readging": "ほうせつ", + "pos": "名詞", + "pn": -0.126353 + }, + { + "surface": "幽玄", + "readging": "ゆうげん", + "pos": "名詞", + "pn": -0.126356 + }, + { + "surface": "証本", + "readging": "しょうほん", + "pos": "名詞", + "pn": -0.126356 + }, + { + "surface": "二業", + "readging": "にぎょう", + "pos": "名詞", + "pn": -0.126364 + }, + { + "surface": "内借り", + "readging": "うちがり", + "pos": "名詞", + "pn": -0.126381 + }, + { + "surface": "金離れ", + "readging": "かねばなれ", + "pos": "名詞", + "pn": -0.126383 + }, + { + "surface": "主務", + "readging": "しゅむ", + "pos": "名詞", + "pn": -0.126399 + }, + { + "surface": "尊者", + "readging": "そんじゃ", + "pos": "名詞", + "pn": -0.126423 + }, + { + "surface": "出来高", + "readging": "できだか", + "pos": "名詞", + "pn": -0.126445 + }, + { + "surface": "処暑", + "readging": "しょしょ", + "pos": "名詞", + "pn": -0.126446 + }, + { + "surface": "アカデミー", + "readging": "アカデミー", + "pos": "名詞", + "pn": -0.126457 + }, + { + "surface": "初子", + "readging": "ういご", + "pos": "名詞", + "pn": -0.126464 + }, + { + "surface": "群雄割拠", + "readging": "ぐんゆうかっきょ", + "pos": "名詞", + "pn": -0.126485 + }, + { + "surface": "頭でっかち", + "readging": "あたまでっかち", + "pos": "名詞", + "pn": -0.126487 + }, + { + "surface": "搬送", + "readging": "はんそう", + "pos": "名詞", + "pn": -0.126487 + }, + { + "surface": "醵出", + "readging": "きょしゅつ", + "pos": "名詞", + "pn": -0.126491 + }, + { + "surface": "水洗い", + "readging": "みずあらい", + "pos": "名詞", + "pn": -0.126511 + }, + { + "surface": "高調", + "readging": "こうちょう", + "pos": "名詞", + "pn": -0.126529 + }, + { + "surface": "物性", + "readging": "ぶっせい", + "pos": "名詞", + "pn": -0.12656 + }, + { + "surface": "官衙", + "readging": "かんが", + "pos": "名詞", + "pn": -0.126574 + }, + { + "surface": "陸生", + "readging": "りくせい", + "pos": "名詞", + "pn": -0.126575 + }, + { + "surface": "代読", + "readging": "だいどく", + "pos": "名詞", + "pn": -0.126585 + }, + { + "surface": "依願", + "readging": "いがん", + "pos": "名詞", + "pn": -0.126585 + }, + { + "surface": "秘蔵", + "readging": "ひぞう", + "pos": "名詞", + "pn": -0.12661 + }, + { + "surface": "堅牢", + "readging": "けんろう", + "pos": "名詞", + "pn": -0.12663 + }, + { + "surface": "雷同", + "readging": "らいどう", + "pos": "名詞", + "pn": -0.126635 + }, + { + "surface": "同舟", + "readging": "どうしゅう", + "pos": "名詞", + "pn": -0.126646 + }, + { + "surface": "ポジション", + "readging": "ポジション", + "pos": "名詞", + "pn": -0.126672 + }, + { + "surface": "ハネムーン", + "readging": "ハネムーン", + "pos": "名詞", + "pn": -0.126724 + }, + { + "surface": "刀泉", + "readging": "とうせん", + "pos": "名詞", + "pn": -0.126741 + }, + { + "surface": "曾遊", + "readging": "そうゆう", + "pos": "名詞", + "pn": -0.126772 + }, + { + "surface": "朽廃", + "readging": "きゅうはい", + "pos": "名詞", + "pn": -0.126781 + }, + { + "surface": "下院", + "readging": "かいん", + "pos": "名詞", + "pn": -0.126786 + }, + { + "surface": "心成し", + "readging": "こころなし", + "pos": "名詞", + "pn": -0.126793 + }, + { + "surface": "伝習", + "readging": "でんしゅう", + "pos": "名詞", + "pn": -0.126799 + }, + { + "surface": "下城", + "readging": "げじょう", + "pos": "名詞", + "pn": -0.126811 + }, + { + "surface": "心中立て", + "readging": "しんじゅうだて", + "pos": "名詞", + "pn": -0.12683 + }, + { + "surface": "偽作", + "readging": "ぎさく", + "pos": "名詞", + "pn": -0.126881 + }, + { + "surface": "高低", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.126884 + }, + { + "surface": "仏学", + "readging": "ぶつがく", + "pos": "名詞", + "pn": -0.126891 + }, + { + "surface": "読経", + "readging": "どきょう", + "pos": "名詞", + "pn": -0.1269 + }, + { + "surface": "月払", + "readging": "つきばらい", + "pos": "名詞", + "pn": -0.126905 + }, + { + "surface": "長躯", + "readging": "ちょうく", + "pos": "名詞", + "pn": -0.126914 + }, + { + "surface": "一碧", + "readging": "いっぺき", + "pos": "名詞", + "pn": -0.126955 + }, + { + "surface": "新着", + "readging": "しんちゃく", + "pos": "名詞", + "pn": -0.126959 + }, + { + "surface": "受かる", + "readging": "うかる", + "pos": "動詞", + "pn": -0.126971 + }, + { + "surface": "綺", + "readging": "き", + "pos": "名詞", + "pn": -0.126984 + }, + { + "surface": "褫奪", + "readging": "ちだつ", + "pos": "名詞", + "pn": -0.126988 + }, + { + "surface": "至論", + "readging": "しろん", + "pos": "名詞", + "pn": -0.126994 + }, + { + "surface": "勝率", + "readging": "しょうりつ", + "pos": "名詞", + "pn": -0.127004 + }, + { + "surface": "アウトドア", + "readging": "アウトドア", + "pos": "名詞", + "pn": -0.127007 + }, + { + "surface": "内面", + "readging": "うちづら", + "pos": "名詞", + "pn": -0.127031 + }, + { + "surface": "わんさと", + "readging": "わんさと", + "pos": "副詞", + "pn": -0.127052 + }, + { + "surface": "件数", + "readging": "けんすう", + "pos": "名詞", + "pn": -0.12706 + }, + { + "surface": "灯", + "readging": "てい", + "pos": "名詞", + "pn": -0.127068 + }, + { + "surface": "借主", + "readging": "かりぬし", + "pos": "名詞", + "pn": -0.127069 + }, + { + "surface": "藩士", + "readging": "はんし", + "pos": "名詞", + "pn": -0.127083 + }, + { + "surface": "先年", + "readging": "せんねん", + "pos": "名詞", + "pn": -0.127108 + }, + { + "surface": "高話", + "readging": "こうわ", + "pos": "名詞", + "pn": -0.12711 + }, + { + "surface": "当腹", + "readging": "とうふく", + "pos": "名詞", + "pn": -0.127135 + }, + { + "surface": "取直す", + "readging": "とりなおす", + "pos": "動詞", + "pn": -0.12714 + }, + { + "surface": "東上", + "readging": "とうじょう", + "pos": "名詞", + "pn": -0.127151 + }, + { + "surface": "媼", + "readging": "おうな", + "pos": "名詞", + "pn": -0.127152 + }, + { + "surface": "空株", + "readging": "からかぶ", + "pos": "名詞", + "pn": -0.127156 + }, + { + "surface": "有畜", + "readging": "ゆうちく", + "pos": "名詞", + "pn": -0.127168 + }, + { + "surface": "仏刹", + "readging": "ぶっさつ", + "pos": "名詞", + "pn": -0.127172 + }, + { + "surface": "初太刀", + "readging": "しょだち", + "pos": "名詞", + "pn": -0.127208 + }, + { + "surface": "黙秘権", + "readging": "もくひけん", + "pos": "名詞", + "pn": -0.127209 + }, + { + "surface": "釘応え", + "readging": "くぎごたえ", + "pos": "名詞", + "pn": -0.127215 + }, + { + "surface": "林", + "readging": "はやし", + "pos": "名詞", + "pn": -0.127219 + }, + { + "surface": "学長", + "readging": "がくちょう", + "pos": "名詞", + "pn": -0.127231 + }, + { + "surface": "戦傷死", + "readging": "せんしょうし", + "pos": "名詞", + "pn": -0.127232 + }, + { + "surface": "警部", + "readging": "けいぶ", + "pos": "名詞", + "pn": -0.127241 + }, + { + "surface": "彙報", + "readging": "いほう", + "pos": "名詞", + "pn": -0.127261 + }, + { + "surface": "居中", + "readging": "きょちゅう", + "pos": "名詞", + "pn": -0.127269 + }, + { + "surface": "旧劇", + "readging": "きゅうげき", + "pos": "名詞", + "pn": -0.127279 + }, + { + "surface": "口ずから", + "readging": "くちずから", + "pos": "副詞", + "pn": -0.127281 + }, + { + "surface": "性愛", + "readging": "せいあい", + "pos": "名詞", + "pn": -0.127293 + }, + { + "surface": "温存", + "readging": "おんぞん", + "pos": "名詞", + "pn": -0.127295 + }, + { + "surface": "別使", + "readging": "べっし", + "pos": "名詞", + "pn": -0.127303 + }, + { + "surface": "入居", + "readging": "にゅうきょ", + "pos": "名詞", + "pn": -0.127307 + }, + { + "surface": "一役", + "readging": "ひとやく", + "pos": "名詞", + "pn": -0.127363 + }, + { + "surface": "論弁", + "readging": "ろんべん", + "pos": "名詞", + "pn": -0.127368 + }, + { + "surface": "突撃", + "readging": "とつげき", + "pos": "名詞", + "pn": -0.127403 + }, + { + "surface": "無駄飯", + "readging": "むだめし", + "pos": "名詞", + "pn": -0.127413 + }, + { + "surface": "泥水稼業", + "readging": "どろみず", + "pos": "名詞", + "pn": -0.127426 + }, + { + "surface": "聞方", + "readging": "ききかた", + "pos": "名詞", + "pn": -0.12743 + }, + { + "surface": "所存", + "readging": "しょぞん", + "pos": "名詞", + "pn": -0.127444 + }, + { + "surface": "不参", + "readging": "ふさん", + "pos": "名詞", + "pn": -0.127464 + }, + { + "surface": "歌道", + "readging": "かどう", + "pos": "名詞", + "pn": -0.127531 + }, + { + "surface": "先送り", + "readging": "さきおくり", + "pos": "名詞", + "pn": -0.127535 + }, + { + "surface": "机上", + "readging": "きじょう", + "pos": "名詞", + "pn": -0.127564 + }, + { + "surface": "名乗る", + "readging": "なのる", + "pos": "動詞", + "pn": -0.127604 + }, + { + "surface": "嘸かし", + "readging": "さぞかし", + "pos": "副詞", + "pn": -0.127615 + }, + { + "surface": "舎弟", + "readging": "しゃてい", + "pos": "名詞", + "pn": -0.127623 + }, + { + "surface": "パラフレーズ", + "readging": "パラフレーズ", + "pos": "名詞", + "pn": -0.127624 + }, + { + "surface": "治国平天下", + "readging": "ちこくへいてんか", + "pos": "名詞", + "pn": -0.127624 + }, + { + "surface": "新兵", + "readging": "しんぺい", + "pos": "名詞", + "pn": -0.127635 + }, + { + "surface": "俗伝", + "readging": "ぞくでん", + "pos": "名詞", + "pn": -0.127639 + }, + { + "surface": "産みの子", + "readging": "うみのこ", + "pos": "名詞", + "pn": -0.12764 + }, + { + "surface": "減算", + "readging": "げんざん", + "pos": "名詞", + "pn": -0.127649 + }, + { + "surface": "初版", + "readging": "しょはん", + "pos": "名詞", + "pn": -0.127684 + }, + { + "surface": "正嫡", + "readging": "せいちゃく", + "pos": "名詞", + "pn": -0.127705 + }, + { + "surface": "口訣", + "readging": "くけつ", + "pos": "名詞", + "pn": -0.127803 + }, + { + "surface": "月世界", + "readging": "げっせかい", + "pos": "名詞", + "pn": -0.127806 + }, + { + "surface": "躍増", + "readging": "やくぞう", + "pos": "名詞", + "pn": -0.127813 + }, + { + "surface": "引け相場", + "readging": "ひけそうば", + "pos": "名詞", + "pn": -0.127817 + }, + { + "surface": "地熱", + "readging": "ちねつ", + "pos": "名詞", + "pn": -0.127821 + }, + { + "surface": "男波", + "readging": "おなみ", + "pos": "名詞", + "pn": -0.12783 + }, + { + "surface": "革偏", + "readging": "かわへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "片偏", + "readging": "かたへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "方偏", + "readging": "かたへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "貝偏", + "readging": "かいへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "女偏", + "readging": "おんなへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "馬偏", + "readging": "うまへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "牛偏", + "readging": "うしへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "魚偏", + "readging": "うおへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "石偏", + "readging": "いしへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "足偏", + "readging": "あしへん", + "pos": "名詞", + "pn": -0.127868 + }, + { + "surface": "見透かす", + "readging": "みすかす", + "pos": "動詞", + "pn": -0.127892 + }, + { + "surface": "スコンク", + "readging": "スコンク", + "pos": "名詞", + "pn": -0.127896 + }, + { + "surface": "神代", + "readging": "じんだい", + "pos": "名詞", + "pn": -0.127907 + }, + { + "surface": "旬月", + "readging": "じゅんげつ", + "pos": "名詞", + "pn": -0.127927 + }, + { + "surface": "隠退", + "readging": "いんたい", + "pos": "名詞", + "pn": -0.127927 + }, + { + "surface": "国儀", + "readging": "こくぎ", + "pos": "名詞", + "pn": -0.127929 + }, + { + "surface": "売れっ子", + "readging": "うれっこ", + "pos": "名詞", + "pn": -0.127929 + }, + { + "surface": "詠進", + "readging": "えいしん", + "pos": "名詞", + "pn": -0.127958 + }, + { + "surface": "男手", + "readging": "おとこで", + "pos": "名詞", + "pn": -0.127963 + }, + { + "surface": "頭割", + "readging": "あたまわり", + "pos": "名詞", + "pn": -0.127971 + }, + { + "surface": "国憲", + "readging": "こっけん", + "pos": "名詞", + "pn": -0.127984 + }, + { + "surface": "千日参り", + "readging": "せんにちまいり", + "pos": "名詞", + "pn": -0.127989 + }, + { + "surface": "先議", + "readging": "せんぎ", + "pos": "名詞", + "pn": -0.128014 + }, + { + "surface": "進じる", + "readging": "しんじる", + "pos": "動詞", + "pn": -0.128028 + }, + { + "surface": "もやい", + "readging": "もやい", + "pos": "名詞", + "pn": -0.12803 + }, + { + "surface": "等差数列", + "readging": "とうさすうれつ", + "pos": "名詞", + "pn": -0.128034 + }, + { + "surface": "先鋭化", + "readging": "せんえいか", + "pos": "名詞", + "pn": -0.128037 + }, + { + "surface": "処務", + "readging": "しょむ", + "pos": "名詞", + "pn": -0.128038 + }, + { + "surface": "枠外", + "readging": "わくがい", + "pos": "名詞", + "pn": -0.128041 + }, + { + "surface": "図体", + "readging": "ずうたい", + "pos": "名詞", + "pn": -0.12806 + }, + { + "surface": "口過ぎ", + "readging": "くちすぎ", + "pos": "名詞", + "pn": -0.128063 + }, + { + "surface": "応需", + "readging": "おうじゅ", + "pos": "名詞", + "pn": -0.128089 + }, + { + "surface": "万機", + "readging": "ばんき", + "pos": "名詞", + "pn": -0.12809 + }, + { + "surface": "表意文字", + "readging": "ひょういもんじ", + "pos": "名詞", + "pn": -0.128092 + }, + { + "surface": "内科", + "readging": "ないか", + "pos": "名詞", + "pn": -0.128107 + }, + { + "surface": "インテリア", + "readging": "インテリア", + "pos": "名詞", + "pn": -0.128109 + }, + { + "surface": "語釈", + "readging": "ごしゃく", + "pos": "名詞", + "pn": -0.128109 + }, + { + "surface": "官許", + "readging": "かんきょ", + "pos": "名詞", + "pn": -0.128136 + }, + { + "surface": "助教諭", + "readging": "じょきょうゆ", + "pos": "名詞", + "pn": -0.128148 + }, + { + "surface": "又借り", + "readging": "またがり", + "pos": "名詞", + "pn": -0.128157 + }, + { + "surface": "持て余す", + "readging": "もてあます", + "pos": "動詞", + "pn": -0.128157 + }, + { + "surface": "長調", + "readging": "ちょうちょう", + "pos": "名詞", + "pn": -0.128161 + }, + { + "surface": "請託", + "readging": "せいたく", + "pos": "名詞", + "pn": -0.128161 + }, + { + "surface": "子沢山", + "readging": "こだくさん", + "pos": "名詞", + "pn": -0.128161 + }, + { + "surface": "幼心", + "readging": "おさなごころ", + "pos": "名詞", + "pn": -0.128161 + }, + { + "surface": "服属", + "readging": "ふくぞく", + "pos": "名詞", + "pn": -0.128173 + }, + { + "surface": "取出す", + "readging": "とりだす", + "pos": "動詞", + "pn": -0.128184 + }, + { + "surface": "がら空き", + "readging": "がらあき", + "pos": "名詞", + "pn": -0.128184 + }, + { + "surface": "天外", + "readging": "てんがい", + "pos": "名詞", + "pn": -0.128189 + }, + { + "surface": "公吏", + "readging": "こうり", + "pos": "名詞", + "pn": -0.128227 + }, + { + "surface": "ふいと", + "readging": "ふいと", + "pos": "副詞", + "pn": -0.128233 + }, + { + "surface": "ギャロップ", + "readging": "ギャロップ", + "pos": "名詞", + "pn": -0.128238 + }, + { + "surface": "筆紙", + "readging": "ひっし", + "pos": "名詞", + "pn": -0.128242 + }, + { + "surface": "自習", + "readging": "じしゅう", + "pos": "名詞", + "pn": -0.128246 + }, + { + "surface": "酒気", + "readging": "しゅき", + "pos": "名詞", + "pn": -0.128262 + }, + { + "surface": "一蓮托生", + "readging": "いちれんたくしょう", + "pos": "名詞", + "pn": -0.128279 + }, + { + "surface": "位負け", + "readging": "くらいまけ", + "pos": "名詞", + "pn": -0.128284 + }, + { + "surface": "重用", + "readging": "じゅうよう", + "pos": "名詞", + "pn": -0.128294 + }, + { + "surface": "民本主義", + "readging": "みんぽんしゅぎ", + "pos": "名詞", + "pn": -0.128306 + }, + { + "surface": "無理押し", + "readging": "むりおし", + "pos": "名詞", + "pn": -0.128326 + }, + { + "surface": "第一義", + "readging": "だいいちぎ", + "pos": "名詞", + "pn": -0.12833 + }, + { + "surface": "劇壇", + "readging": "げきだん", + "pos": "名詞", + "pn": -0.128338 + }, + { + "surface": "早退", + "readging": "そうたい", + "pos": "名詞", + "pn": -0.128348 + }, + { + "surface": "言文", + "readging": "げんぶん", + "pos": "名詞", + "pn": -0.128379 + }, + { + "surface": "紙背", + "readging": "しはい", + "pos": "名詞", + "pn": -0.128384 + }, + { + "surface": "嗜み", + "readging": "たしなみ", + "pos": "名詞", + "pn": -0.128386 + }, + { + "surface": "対偶", + "readging": "たいぐう", + "pos": "名詞", + "pn": -0.128416 + }, + { + "surface": "素数", + "readging": "そすう", + "pos": "名詞", + "pn": -0.128421 + }, + { + "surface": "法話", + "readging": "ほうわ", + "pos": "名詞", + "pn": -0.128423 + }, + { + "surface": "反共", + "readging": "はんきょう", + "pos": "名詞", + "pn": -0.128426 + }, + { + "surface": "一樹", + "readging": "いちじゅ", + "pos": "名詞", + "pn": -0.128432 + }, + { + "surface": "シンクロ", + "readging": "シンクロ", + "pos": "名詞", + "pn": -0.128444 + }, + { + "surface": "欲求不満", + "readging": "よっきゅうふまん", + "pos": "名詞", + "pn": -0.128455 + }, + { + "surface": "求心力", + "readging": "きゅうしんりょく", + "pos": "名詞", + "pn": -0.128501 + }, + { + "surface": "速達", + "readging": "そくたつ", + "pos": "名詞", + "pn": -0.128508 + }, + { + "surface": "炉心", + "readging": "ろしん", + "pos": "名詞", + "pn": -0.128542 + }, + { + "surface": "無策", + "readging": "むさく", + "pos": "名詞", + "pn": -0.128545 + }, + { + "surface": "四次元", + "readging": "よじげん", + "pos": "名詞", + "pn": -0.12855 + }, + { + "surface": "参事", + "readging": "さんじ", + "pos": "名詞", + "pn": -0.128557 + }, + { + "surface": "素封家", + "readging": "そほうか", + "pos": "名詞", + "pn": -0.128575 + }, + { + "surface": "片端", + "readging": "かたわ", + "pos": "名詞", + "pn": -0.128576 + }, + { + "surface": "出迎える", + "readging": "でむかえる", + "pos": "動詞", + "pn": -0.128578 + }, + { + "surface": "入超", + "readging": "にゅうちょう", + "pos": "名詞", + "pn": -0.128584 + }, + { + "surface": "季題", + "readging": "きだい", + "pos": "名詞", + "pn": -0.128586 + }, + { + "surface": "試験地獄", + "readging": "しけんじごく", + "pos": "名詞", + "pn": -0.128639 + }, + { + "surface": "売約", + "readging": "ばいやく", + "pos": "名詞", + "pn": -0.128649 + }, + { + "surface": "文具", + "readging": "ぶんぐ", + "pos": "名詞", + "pn": -0.128671 + }, + { + "surface": "詩草", + "readging": "しそう", + "pos": "名詞", + "pn": -0.128682 + }, + { + "surface": "毎歳", + "readging": "まいさい", + "pos": "名詞", + "pn": -0.128684 + }, + { + "surface": "金蔓", + "readging": "かねづる", + "pos": "名詞", + "pn": -0.128716 + }, + { + "surface": "転位", + "readging": "てんい", + "pos": "名詞", + "pn": -0.128731 + }, + { + "surface": "所詮", + "readging": "しょせん", + "pos": "副詞", + "pn": -0.128734 + }, + { + "surface": "現行", + "readging": "げんこう", + "pos": "名詞", + "pn": -0.128734 + }, + { + "surface": "公設", + "readging": "こうせつ", + "pos": "名詞", + "pn": -0.128753 + }, + { + "surface": "属地", + "readging": "ぞくち", + "pos": "名詞", + "pn": -0.12877 + }, + { + "surface": "生協", + "readging": "せいきょう", + "pos": "名詞", + "pn": -0.128773 + }, + { + "surface": "母校", + "readging": "ぼこう", + "pos": "名詞", + "pn": -0.128774 + }, + { + "surface": "下地", + "readging": "したじ", + "pos": "名詞", + "pn": -0.128781 + }, + { + "surface": "大身", + "readging": "おおみ", + "pos": "名詞", + "pn": -0.128785 + }, + { + "surface": "知命", + "readging": "ちめい", + "pos": "名詞", + "pn": -0.128789 + }, + { + "surface": "佐幕", + "readging": "さばく", + "pos": "名詞", + "pn": -0.128805 + }, + { + "surface": "社人", + "readging": "しゃにん", + "pos": "名詞", + "pn": -0.128806 + }, + { + "surface": "証印", + "readging": "しょういん", + "pos": "名詞", + "pn": -0.128809 + }, + { + "surface": "黄銅", + "readging": "こうどう", + "pos": "名詞", + "pn": -0.128816 + }, + { + "surface": "嫦娥", + "readging": "じょうが", + "pos": "名詞", + "pn": -0.128863 + }, + { + "surface": "聾", + "readging": "つんぼ", + "pos": "名詞", + "pn": -0.128875 + }, + { + "surface": "庭訓", + "readging": "ていきん", + "pos": "名詞", + "pn": -0.128899 + }, + { + "surface": "八千代", + "readging": "やちよ", + "pos": "名詞", + "pn": -0.128921 + }, + { + "surface": "一つ覚え", + "readging": "ひとつおぼえ", + "pos": "名詞", + "pn": -0.128927 + }, + { + "surface": "読解", + "readging": "どっかい", + "pos": "名詞", + "pn": -0.128958 + }, + { + "surface": "莫大", + "readging": "ばくだい", + "pos": "名詞", + "pn": -0.128965 + }, + { + "surface": "四海兄弟", + "readging": "しかいけいてい", + "pos": "名詞", + "pn": -0.128972 + }, + { + "surface": "各論", + "readging": "かくろん", + "pos": "名詞", + "pn": -0.128993 + }, + { + "surface": "安息日", + "readging": "あんそくび", + "pos": "名詞", + "pn": -0.128995 + }, + { + "surface": "朝", + "readging": "あさ", + "pos": "名詞", + "pn": -0.128998 + }, + { + "surface": "自流", + "readging": "じりゅう", + "pos": "名詞", + "pn": -0.129 + }, + { + "surface": "製織", + "readging": "せいしょく", + "pos": "名詞", + "pn": -0.129069 + }, + { + "surface": "色街", + "readging": "いろまち", + "pos": "名詞", + "pn": -0.129082 + }, + { + "surface": "殿御", + "readging": "とのご", + "pos": "名詞", + "pn": -0.129082 + }, + { + "surface": "和合", + "readging": "わごう", + "pos": "名詞", + "pn": -0.129103 + }, + { + "surface": "零細", + "readging": "れいさい", + "pos": "名詞", + "pn": -0.129128 + }, + { + "surface": "水飛沫", + "readging": "みずしぶき", + "pos": "名詞", + "pn": -0.129128 + }, + { + "surface": "以下", + "readging": "いか", + "pos": "名詞", + "pn": -0.129139 + }, + { + "surface": "軽業", + "readging": "かるわざ", + "pos": "名詞", + "pn": -0.129139 + }, + { + "surface": "機動部隊", + "readging": "きどうぶたい", + "pos": "名詞", + "pn": -0.129157 + }, + { + "surface": "重出", + "readging": "じゅうしゅつ", + "pos": "名詞", + "pn": -0.12916 + }, + { + "surface": "ファイン プレー", + "readging": "ファイン プレー", + "pos": "名詞", + "pn": -0.129164 + }, + { + "surface": "滅期", + "readging": "めつご", + "pos": "名詞", + "pn": -0.129177 + }, + { + "surface": "忍草", + "readging": "しのぶぐさ", + "pos": "名詞", + "pn": -0.129179 + }, + { + "surface": "潮間", + "readging": "しおま", + "pos": "名詞", + "pn": -0.129185 + }, + { + "surface": "志士", + "readging": "しし", + "pos": "名詞", + "pn": -0.129223 + }, + { + "surface": "今し方", + "readging": "いましがた", + "pos": "名詞", + "pn": -0.129233 + }, + { + "surface": "照度", + "readging": "しょうど", + "pos": "名詞", + "pn": -0.129238 + }, + { + "surface": "霏霏", + "readging": "ひひ", + "pos": "名詞", + "pn": -0.129259 + }, + { + "surface": "ジュピター", + "readging": "ジュピター", + "pos": "名詞", + "pn": -0.129273 + }, + { + "surface": "十八般", + "readging": "じゅうはっぱん", + "pos": "名詞", + "pn": -0.129279 + }, + { + "surface": "余聞", + "readging": "よぶん", + "pos": "名詞", + "pn": -0.129285 + }, + { + "surface": "夜陰", + "readging": "やいん", + "pos": "名詞", + "pn": -0.129303 + }, + { + "surface": "屈従", + "readging": "くつじゅう", + "pos": "名詞", + "pn": -0.129306 + }, + { + "surface": "民度", + "readging": "みんど", + "pos": "名詞", + "pn": -0.12932 + }, + { + "surface": "レグホン", + "readging": "レグホン", + "pos": "名詞", + "pn": -0.129325 + }, + { + "surface": "倫理学", + "readging": "りんりがく", + "pos": "名詞", + "pn": -0.129329 + }, + { + "surface": "乗通す", + "readging": "のりとおす", + "pos": "動詞", + "pn": -0.129333 + }, + { + "surface": "ゼミ", + "readging": "ゼミ", + "pos": "名詞", + "pn": -0.129383 + }, + { + "surface": "民訴", + "readging": "みんそ", + "pos": "名詞", + "pn": -0.12939 + }, + { + "surface": "厚着", + "readging": "あつぎ", + "pos": "名詞", + "pn": -0.129418 + }, + { + "surface": "脱げる", + "readging": "ぬげる", + "pos": "動詞", + "pn": -0.129419 + }, + { + "surface": "船便", + "readging": "ふなびん", + "pos": "名詞", + "pn": -0.129424 + }, + { + "surface": "起訴", + "readging": "きそ", + "pos": "名詞", + "pn": -0.129431 + }, + { + "surface": "残火", + "readging": "のこりび", + "pos": "名詞", + "pn": -0.129436 + }, + { + "surface": "訓示", + "readging": "くんじ", + "pos": "名詞", + "pn": -0.129456 + }, + { + "surface": "当て事", + "readging": "あてごと", + "pos": "名詞", + "pn": -0.129478 + }, + { + "surface": "休会", + "readging": "きゅうかい", + "pos": "名詞", + "pn": -0.129501 + }, + { + "surface": "伊勢崎織", + "readging": "いせざきおり", + "pos": "名詞", + "pn": -0.129509 + }, + { + "surface": "死語", + "readging": "しご", + "pos": "名詞", + "pn": -0.12951 + }, + { + "surface": "最敬礼", + "readging": "さいけいれい", + "pos": "名詞", + "pn": -0.129555 + }, + { + "surface": "ってば", + "readging": "ってば", + "pos": "名詞", + "pn": -0.12956 + }, + { + "surface": "インター", + "readging": "インター", + "pos": "名詞", + "pn": -0.129574 + }, + { + "surface": "呼交す", + "readging": "よびかわす", + "pos": "動詞", + "pn": -0.129589 + }, + { + "surface": "先番", + "readging": "せんばん", + "pos": "名詞", + "pn": -0.129633 + }, + { + "surface": "玉案下", + "readging": "ぎょくあんか", + "pos": "名詞", + "pn": -0.129676 + }, + { + "surface": "射手", + "readging": "いて", + "pos": "名詞", + "pn": -0.129698 + }, + { + "surface": "老舗", + "readging": "しにせ", + "pos": "名詞", + "pn": -0.129715 + }, + { + "surface": "従妹", + "readging": "じゅうまい", + "pos": "名詞", + "pn": -0.129717 + }, + { + "surface": "受講", + "readging": "じゅこう", + "pos": "名詞", + "pn": -0.129728 + }, + { + "surface": "中盤", + "readging": "ちゅうばん", + "pos": "名詞", + "pn": -0.129728 + }, + { + "surface": "低周波", + "readging": "ていしゅうは", + "pos": "名詞", + "pn": -0.129735 + }, + { + "surface": "宝殿", + "readging": "ほうでん", + "pos": "名詞", + "pn": -0.129739 + }, + { + "surface": "電閃", + "readging": "でんせん", + "pos": "名詞", + "pn": -0.129768 + }, + { + "surface": "デテール", + "readging": "デテール", + "pos": "名詞", + "pn": -0.129793 + }, + { + "surface": "酷似", + "readging": "こくじ", + "pos": "名詞", + "pn": -0.129794 + }, + { + "surface": "歌稿", + "readging": "かこう", + "pos": "名詞", + "pn": -0.129798 + }, + { + "surface": "電界", + "readging": "でんかい", + "pos": "名詞", + "pn": -0.129806 + }, + { + "surface": "土侯国", + "readging": "どこうこく", + "pos": "名詞", + "pn": -0.129816 + }, + { + "surface": "バイオリニスト", + "readging": "バイオリニスト", + "pos": "名詞", + "pn": -0.129816 + }, + { + "surface": "中刻", + "readging": "ちゅうこく", + "pos": "名詞", + "pn": -0.129821 + }, + { + "surface": "万言", + "readging": "まんげん", + "pos": "名詞", + "pn": -0.129848 + }, + { + "surface": "店屋物", + "readging": "てんやもの", + "pos": "名詞", + "pn": -0.129852 + }, + { + "surface": "定圧", + "readging": "ていあつ", + "pos": "名詞", + "pn": -0.129852 + }, + { + "surface": "時様", + "readging": "じよう", + "pos": "名詞", + "pn": -0.129872 + }, + { + "surface": "食い潰す", + "readging": "くいつぶす", + "pos": "動詞", + "pn": -0.129911 + }, + { + "surface": "低調", + "readging": "ていちょう", + "pos": "名詞", + "pn": -0.129921 + }, + { + "surface": "コミュニスト", + "readging": "コミュニスト", + "pos": "名詞", + "pn": -0.129951 + }, + { + "surface": "追慕", + "readging": "ついぼ", + "pos": "名詞", + "pn": -0.129997 + }, + { + "surface": "印行", + "readging": "いんこう", + "pos": "名詞", + "pn": -0.130001 + }, + { + "surface": "読破る", + "readging": "よみやぶる", + "pos": "動詞", + "pn": -0.13001 + }, + { + "surface": "攘夷", + "readging": "じょうい", + "pos": "名詞", + "pn": -0.130019 + }, + { + "surface": "我が意", + "readging": "わがい", + "pos": "名詞", + "pn": -0.130033 + }, + { + "surface": "全集", + "readging": "ぜんしゅう", + "pos": "名詞", + "pn": -0.130046 + }, + { + "surface": "模糊", + "readging": "もこ", + "pos": "名詞", + "pn": -0.130057 + }, + { + "surface": "残務", + "readging": "ざんむ", + "pos": "名詞", + "pn": -0.13008 + }, + { + "surface": "舟偏", + "readging": "ふねへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "火偏", + "readging": "ひへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "日偏", + "readging": "ひへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "土偏", + "readging": "つちへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "月偏", + "readging": "つきへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "玉偏", + "readging": "たまへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "手偏", + "readging": "てへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "のぎへん", + "readging": "のぎへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "人偏", + "readging": "にんべん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "にすい", + "readging": "にすい", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "巾偏", + "readging": "はばへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "しめすへん", + "readging": "しめすへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "さんずい", + "readging": "さんずい", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "言偏", + "readging": "ごんべん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "衣偏", + "readging": "ころもへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "米偏", + "readging": "こめへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "こざとへん", + "readging": "こざとへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "けものへん", + "readging": "けものへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "車偏", + "readging": "くるまへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "口偏", + "readging": "くちへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "行人偏", + "readging": "ぎょうにんべん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "木偏", + "readging": "きへん", + "pos": "名詞", + "pn": -0.130089 + }, + { + "surface": "座州", + "readging": "ざす", + "pos": "名詞", + "pn": -0.130106 + }, + { + "surface": "磁界", + "readging": "じかい", + "pos": "名詞", + "pn": -0.130107 + }, + { + "surface": "令色", + "readging": "れいしょく", + "pos": "名詞", + "pn": -0.13015 + }, + { + "surface": "基本的人権", + "readging": "きほんてきじんけん", + "pos": "名詞", + "pn": -0.130165 + }, + { + "surface": "分水", + "readging": "ぶんすい", + "pos": "名詞", + "pn": -0.130166 + }, + { + "surface": "収量", + "readging": "しゅうりょう", + "pos": "名詞", + "pn": -0.130176 + }, + { + "surface": "口受", + "readging": "こうじゅ", + "pos": "名詞", + "pn": -0.130182 + }, + { + "surface": "犯意", + "readging": "はんい", + "pos": "名詞", + "pn": -0.130195 + }, + { + "surface": "隠士", + "readging": "いんし", + "pos": "名詞", + "pn": -0.13021 + }, + { + "surface": "俗耳", + "readging": "ぞくじ", + "pos": "名詞", + "pn": -0.13028 + }, + { + "surface": "むっつり", + "readging": "むっつり", + "pos": "副詞", + "pn": -0.130308 + }, + { + "surface": "特配", + "readging": "とくはい", + "pos": "名詞", + "pn": -0.130314 + }, + { + "surface": "被乗数", + "readging": "ひじょうすう", + "pos": "名詞", + "pn": -0.130321 + }, + { + "surface": "盲管銃創", + "readging": "もうかんじゅうそう", + "pos": "名詞", + "pn": -0.130325 + }, + { + "surface": "師事", + "readging": "しじ", + "pos": "名詞", + "pn": -0.130371 + }, + { + "surface": "法輪", + "readging": "ほうりん", + "pos": "名詞", + "pn": -0.130384 + }, + { + "surface": "スカウト", + "readging": "スカウト", + "pos": "名詞", + "pn": -0.130393 + }, + { + "surface": "有情", + "readging": "うじょう", + "pos": "名詞", + "pn": -0.130417 + }, + { + "surface": "時空", + "readging": "じくう", + "pos": "名詞", + "pn": -0.130422 + }, + { + "surface": "深緑", + "readging": "しんりょく", + "pos": "名詞", + "pn": -0.130426 + }, + { + "surface": "カオス", + "readging": "カオス", + "pos": "名詞", + "pn": -0.130438 + }, + { + "surface": "地響き", + "readging": "じひびき", + "pos": "名詞", + "pn": -0.130449 + }, + { + "surface": "飲込み", + "readging": "のみこみ", + "pos": "名詞", + "pn": -0.130454 + }, + { + "surface": "恐竜", + "readging": "きょうりゅう", + "pos": "名詞", + "pn": -0.130462 + }, + { + "surface": "薫風", + "readging": "くんぷう", + "pos": "名詞", + "pn": -0.130465 + }, + { + "surface": "回付", + "readging": "かいふ", + "pos": "名詞", + "pn": -0.130466 + }, + { + "surface": "おおがい", + "readging": "おおがい", + "pos": "名詞", + "pn": -0.130467 + }, + { + "surface": "おおざと", + "readging": "おおざと", + "pos": "名詞", + "pn": -0.130467 + }, + { + "surface": "前審", + "readging": "ぜんしん", + "pos": "名詞", + "pn": -0.130478 + }, + { + "surface": "安", + "readging": "あん", + "pos": "名詞", + "pn": -0.130485 + }, + { + "surface": "二極化", + "readging": "にきょくか", + "pos": "名詞", + "pn": -0.130509 + }, + { + "surface": "覚", + "readging": "かく", + "pos": "名詞", + "pn": -0.130538 + }, + { + "surface": "着流し", + "readging": "きながし", + "pos": "名詞", + "pn": -0.13054 + }, + { + "surface": "白羽", + "readging": "しらは", + "pos": "名詞", + "pn": -0.130552 + }, + { + "surface": "思い遣り", + "readging": "おもいやり", + "pos": "名詞", + "pn": -0.130563 + }, + { + "surface": "原著", + "readging": "げんちょ", + "pos": "名詞", + "pn": -0.130579 + }, + { + "surface": "答案", + "readging": "とうあん", + "pos": "名詞", + "pn": -0.13059 + }, + { + "surface": "立詰め", + "readging": "たちづめ", + "pos": "名詞", + "pn": -0.13059 + }, + { + "surface": "献血", + "readging": "けんけつ", + "pos": "名詞", + "pn": -0.130598 + }, + { + "surface": "回想", + "readging": "かいそう", + "pos": "名詞", + "pn": -0.130612 + }, + { + "surface": "直伝", + "readging": "じきでん", + "pos": "名詞", + "pn": -0.13062 + }, + { + "surface": "難行", + "readging": "なんぎょう", + "pos": "名詞", + "pn": -0.130645 + }, + { + "surface": "お為顔", + "readging": "おためがお", + "pos": "名詞", + "pn": -0.130657 + }, + { + "surface": "ソシアル ダンス", + "readging": "ソシアル ダンス", + "pos": "名詞", + "pn": -0.130686 + }, + { + "surface": "舎", + "readging": "しゃ", + "pos": "名詞", + "pn": -0.130687 + }, + { + "surface": "揚玉", + "readging": "あげだま", + "pos": "名詞", + "pn": -0.130688 + }, + { + "surface": "万邦", + "readging": "ばんぽう", + "pos": "名詞", + "pn": -0.13069 + }, + { + "surface": "ソップ", + "readging": "ソップ", + "pos": "名詞", + "pn": -0.130701 + }, + { + "surface": "両三", + "readging": "りょうさん", + "pos": "名詞", + "pn": -0.130714 + }, + { + "surface": "敵性", + "readging": "てきせい", + "pos": "名詞", + "pn": -0.13072 + }, + { + "surface": "衆寡", + "readging": "しゅうか", + "pos": "名詞", + "pn": -0.130726 + }, + { + "surface": "気風", + "readging": "きっぷ", + "pos": "名詞", + "pn": -0.130735 + }, + { + "surface": "両夫", + "readging": "りょうふ", + "pos": "名詞", + "pn": -0.130736 + }, + { + "surface": "ドレミファ", + "readging": "ドレミファ", + "pos": "名詞", + "pn": -0.130737 + }, + { + "surface": "氷炭", + "readging": "ひょうたん", + "pos": "名詞", + "pn": -0.13076 + }, + { + "surface": "配偶", + "readging": "はいぐう", + "pos": "名詞", + "pn": -0.130772 + }, + { + "surface": "神式", + "readging": "しんしき", + "pos": "名詞", + "pn": -0.130784 + }, + { + "surface": "儲け口", + "readging": "もうけぐち", + "pos": "名詞", + "pn": -0.130789 + }, + { + "surface": "おめかし", + "readging": "おめかし", + "pos": "名詞", + "pn": -0.130791 + }, + { + "surface": "管理者", + "readging": "かんりしゃ", + "pos": "名詞", + "pn": -0.130793 + }, + { + "surface": "貰い", + "readging": "もらい", + "pos": "名詞", + "pn": -0.130795 + }, + { + "surface": "技癢", + "readging": "ぎよう", + "pos": "名詞", + "pn": -0.130818 + }, + { + "surface": "人数", + "readging": "にんず", + "pos": "名詞", + "pn": -0.130822 + }, + { + "surface": "往古", + "readging": "おうこ", + "pos": "名詞", + "pn": -0.130824 + }, + { + "surface": "口承", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.130826 + }, + { + "surface": "詩史", + "readging": "しし", + "pos": "名詞", + "pn": -0.130828 + }, + { + "surface": "やっぱり", + "readging": "やっぱり", + "pos": "副詞", + "pn": -0.130857 + }, + { + "surface": "便船", + "readging": "びんせん", + "pos": "名詞", + "pn": -0.130861 + }, + { + "surface": "墨客", + "readging": "ぼっかく", + "pos": "名詞", + "pn": -0.130876 + }, + { + "surface": "政論", + "readging": "せいろん", + "pos": "名詞", + "pn": -0.130891 + }, + { + "surface": "タランテラ", + "readging": "タランテラ", + "pos": "名詞", + "pn": -0.130999 + }, + { + "surface": "御都合主義", + "readging": "ごつごうしゅぎ", + "pos": "名詞", + "pn": -0.131005 + }, + { + "surface": "平淡", + "readging": "へいたん", + "pos": "名詞", + "pn": -0.131009 + }, + { + "surface": "小結", + "readging": "こむすび", + "pos": "名詞", + "pn": -0.131016 + }, + { + "surface": "公選", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.131017 + }, + { + "surface": "係留", + "readging": "けいりゅう", + "pos": "名詞", + "pn": -0.131038 + }, + { + "surface": "新味", + "readging": "しんみ", + "pos": "名詞", + "pn": -0.131048 + }, + { + "surface": "禅譲", + "readging": "ぜんじょう", + "pos": "名詞", + "pn": -0.131048 + }, + { + "surface": "主義者", + "readging": "しゅぎしゃ", + "pos": "名詞", + "pn": -0.131057 + }, + { + "surface": "銀杏", + "readging": "ぎんなん", + "pos": "名詞", + "pn": -0.131079 + }, + { + "surface": "生らす", + "readging": "ならす", + "pos": "動詞", + "pn": -0.131079 + }, + { + "surface": "をば", + "readging": "をば", + "pos": "名詞", + "pn": -0.131119 + }, + { + "surface": "口伝え", + "readging": "くちづたえ", + "pos": "名詞", + "pn": -0.131119 + }, + { + "surface": "日の下開山", + "readging": "ひのしたかいさん", + "pos": "名詞", + "pn": -0.131129 + }, + { + "surface": "眼識", + "readging": "がんしき", + "pos": "名詞", + "pn": -0.131129 + }, + { + "surface": "送像", + "readging": "そうぞう", + "pos": "名詞", + "pn": -0.131192 + }, + { + "surface": "藩閥", + "readging": "はんばつ", + "pos": "名詞", + "pn": -0.131193 + }, + { + "surface": "先見", + "readging": "せんけん", + "pos": "名詞", + "pn": -0.131202 + }, + { + "surface": "万朶", + "readging": "ばんだ", + "pos": "名詞", + "pn": -0.13121 + }, + { + "surface": "御酒", + "readging": "ごしゅ", + "pos": "名詞", + "pn": -0.13121 + }, + { + "surface": "西の内", + "readging": "にしのうち", + "pos": "名詞", + "pn": -0.131211 + }, + { + "surface": "ハンケチ", + "readging": "ハンケチ", + "pos": "名詞", + "pn": -0.131233 + }, + { + "surface": "官製", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.131237 + }, + { + "surface": "取急ぎ", + "readging": "とりいそぎ", + "pos": "副詞", + "pn": -0.131286 + }, + { + "surface": "合体", + "readging": "がったい", + "pos": "名詞", + "pn": -0.131298 + }, + { + "surface": "出教授", + "readging": "できょうじゅ", + "pos": "名詞", + "pn": -0.131319 + }, + { + "surface": "論集", + "readging": "ろんしゅう", + "pos": "名詞", + "pn": -0.131345 + }, + { + "surface": "地続き", + "readging": "じつづき", + "pos": "名詞", + "pn": -0.131376 + }, + { + "surface": "宿老", + "readging": "しゅくろう", + "pos": "名詞", + "pn": -0.131378 + }, + { + "surface": "多方面", + "readging": "たほうめん", + "pos": "名詞", + "pn": -0.13138 + }, + { + "surface": "信用組合", + "readging": "しんようくみあい", + "pos": "名詞", + "pn": -0.131382 + }, + { + "surface": "月収", + "readging": "げっしゅう", + "pos": "名詞", + "pn": -0.131437 + }, + { + "surface": "軍事教練", + "readging": "ぐんじきょうれん", + "pos": "名詞", + "pn": -0.131462 + }, + { + "surface": "保冷", + "readging": "ほれい", + "pos": "名詞", + "pn": -0.131466 + }, + { + "surface": "身ぐるみ", + "readging": "みぐるみ", + "pos": "名詞", + "pn": -0.131501 + }, + { + "surface": "廃疾", + "readging": "はいしつ", + "pos": "名詞", + "pn": -0.131583 + }, + { + "surface": "斗酒", + "readging": "としゅ", + "pos": "名詞", + "pn": -0.131616 + }, + { + "surface": "夏時間", + "readging": "なつじかん", + "pos": "名詞", + "pn": -0.131616 + }, + { + "surface": "夫唱婦随", + "readging": "ふしょうふずい", + "pos": "名詞", + "pn": -0.131618 + }, + { + "surface": "座員", + "readging": "ざいん", + "pos": "名詞", + "pn": -0.131655 + }, + { + "surface": "攻勢", + "readging": "こうせい", + "pos": "名詞", + "pn": -0.131657 + }, + { + "surface": "心有る", + "readging": "こころある", + "pos": "動詞", + "pn": -0.131676 + }, + { + "surface": "単文", + "readging": "たんぶん", + "pos": "名詞", + "pn": -0.131707 + }, + { + "surface": "全体主義", + "readging": "ぜんたいしゅぎ", + "pos": "名詞", + "pn": -0.131709 + }, + { + "surface": "武力", + "readging": "ぶりょく", + "pos": "名詞", + "pn": -0.13171 + }, + { + "surface": "ショート", + "readging": "ショート", + "pos": "名詞", + "pn": -0.131711 + }, + { + "surface": "流通", + "readging": "りゅうつう", + "pos": "名詞", + "pn": -0.131717 + }, + { + "surface": "展観", + "readging": "てんかん", + "pos": "名詞", + "pn": -0.131724 + }, + { + "surface": "送受", + "readging": "そうじゅ", + "pos": "名詞", + "pn": -0.131757 + }, + { + "surface": "書送る", + "readging": "かきおくる", + "pos": "動詞", + "pn": -0.131757 + }, + { + "surface": "官立", + "readging": "かんりつ", + "pos": "名詞", + "pn": -0.131763 + }, + { + "surface": "甘茶", + "readging": "あまちゃ", + "pos": "名詞", + "pn": -0.131767 + }, + { + "surface": "創見", + "readging": "そうけん", + "pos": "名詞", + "pn": -0.131783 + }, + { + "surface": "鈍角", + "readging": "どんかく", + "pos": "名詞", + "pn": -0.131817 + }, + { + "surface": "夫重ね", + "readging": "つまがさね", + "pos": "名詞", + "pn": -0.131823 + }, + { + "surface": "官界", + "readging": "かんかい", + "pos": "名詞", + "pn": -0.131842 + }, + { + "surface": "点訳", + "readging": "てんやく", + "pos": "名詞", + "pn": -0.131845 + }, + { + "surface": "既得", + "readging": "きとく", + "pos": "名詞", + "pn": -0.131869 + }, + { + "surface": "市制", + "readging": "しせい", + "pos": "名詞", + "pn": -0.13187 + }, + { + "surface": "チンパニー", + "readging": "チンパニー", + "pos": "名詞", + "pn": -0.131879 + }, + { + "surface": "居中調停", + "readging": "きょちゅうちょうてい", + "pos": "名詞", + "pn": -0.131881 + }, + { + "surface": "植毛", + "readging": "しょくもう", + "pos": "名詞", + "pn": -0.131921 + }, + { + "surface": "非職", + "readging": "ひしょく", + "pos": "名詞", + "pn": -0.131958 + }, + { + "surface": "浄土真宗", + "readging": "じょうどしんしゅう", + "pos": "名詞", + "pn": -0.131965 + }, + { + "surface": "明文", + "readging": "めいぶん", + "pos": "名詞", + "pn": -0.131973 + }, + { + "surface": "養狐", + "readging": "ようこ", + "pos": "名詞", + "pn": -0.131982 + }, + { + "surface": "私署", + "readging": "ししょ", + "pos": "名詞", + "pn": -0.131982 + }, + { + "surface": "賦する", + "readging": "ふする", + "pos": "動詞", + "pn": -0.132009 + }, + { + "surface": "詩編", + "readging": "しへん", + "pos": "名詞", + "pn": -0.13203 + }, + { + "surface": "設題", + "readging": "せつだい", + "pos": "名詞", + "pn": -0.132033 + }, + { + "surface": "不可", + "readging": "ふか", + "pos": "名詞", + "pn": -0.132039 + }, + { + "surface": "思惟", + "readging": "しゆい", + "pos": "名詞", + "pn": -0.132053 + }, + { + "surface": "貨幣価値", + "readging": "かへいかち", + "pos": "名詞", + "pn": -0.132055 + }, + { + "surface": "選り取り", + "readging": "よりどり", + "pos": "名詞", + "pn": -0.132066 + }, + { + "surface": "新粧", + "readging": "しんそう", + "pos": "名詞", + "pn": -0.132081 + }, + { + "surface": "天台座主", + "readging": "てんだいざす", + "pos": "名詞", + "pn": -0.132087 + }, + { + "surface": "国際問題", + "readging": "こくさいもんだい", + "pos": "名詞", + "pn": -0.132113 + }, + { + "surface": "大風子", + "readging": "だいふうし", + "pos": "名詞", + "pn": -0.132151 + }, + { + "surface": "確答", + "readging": "かくとう", + "pos": "名詞", + "pn": -0.132154 + }, + { + "surface": "山家育ち", + "readging": "やまがそだち", + "pos": "名詞", + "pn": -0.132183 + }, + { + "surface": "西暦", + "readging": "せいれき", + "pos": "名詞", + "pn": -0.132202 + }, + { + "surface": "核家族", + "readging": "かくかぞく", + "pos": "名詞", + "pn": -0.132233 + }, + { + "surface": "禁園", + "readging": "きんえん", + "pos": "名詞", + "pn": -0.132262 + }, + { + "surface": "親政", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.13228 + }, + { + "surface": "造語", + "readging": "ぞうご", + "pos": "名詞", + "pn": -0.132316 + }, + { + "surface": "常識", + "readging": "じょうしき", + "pos": "名詞", + "pn": -0.132334 + }, + { + "surface": "武徳", + "readging": "ぶとく", + "pos": "名詞", + "pn": -0.132359 + }, + { + "surface": "音頭取", + "readging": "おんどとり", + "pos": "名詞", + "pn": -0.132383 + }, + { + "surface": "外舅", + "readging": "がいきゅう", + "pos": "名詞", + "pn": -0.13239 + }, + { + "surface": "従弟", + "readging": "じゅうてい", + "pos": "名詞", + "pn": -0.13241 + }, + { + "surface": "芸界", + "readging": "げいかい", + "pos": "名詞", + "pn": -0.132432 + }, + { + "surface": "夜鳥", + "readging": "やちょう", + "pos": "名詞", + "pn": -0.132437 + }, + { + "surface": "年率", + "readging": "ねんりつ", + "pos": "名詞", + "pn": -0.132446 + }, + { + "surface": "法案", + "readging": "ほうあん", + "pos": "名詞", + "pn": -0.132454 + }, + { + "surface": "通弁", + "readging": "つうべん", + "pos": "名詞", + "pn": -0.132468 + }, + { + "surface": "大司教", + "readging": "だいしきょう", + "pos": "名詞", + "pn": -0.132493 + }, + { + "surface": "練り上げる", + "readging": "ねりあげる", + "pos": "動詞", + "pn": -0.132501 + }, + { + "surface": "宣撫", + "readging": "せんぶ", + "pos": "名詞", + "pn": -0.13252 + }, + { + "surface": "肉食", + "readging": "にくじき", + "pos": "名詞", + "pn": -0.132541 + }, + { + "surface": "大内", + "readging": "おおうち", + "pos": "名詞", + "pn": -0.132553 + }, + { + "surface": "抗戦", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.132555 + }, + { + "surface": "服薬", + "readging": "ふくやく", + "pos": "名詞", + "pn": -0.132584 + }, + { + "surface": "放課", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.132585 + }, + { + "surface": "落石", + "readging": "らくせき", + "pos": "名詞", + "pn": -0.132589 + }, + { + "surface": "分団", + "readging": "ぶんだん", + "pos": "名詞", + "pn": -0.132602 + }, + { + "surface": "打物業", + "readging": "うちものわざ", + "pos": "名詞", + "pn": -0.132606 + }, + { + "surface": "男持", + "readging": "おとこもち", + "pos": "名詞", + "pn": -0.132648 + }, + { + "surface": "ジルバ", + "readging": "ジルバ", + "pos": "名詞", + "pn": -0.132658 + }, + { + "surface": "棚浚え", + "readging": "たなざらえ", + "pos": "名詞", + "pn": -0.132664 + }, + { + "surface": "廃油", + "readging": "はいゆ", + "pos": "名詞", + "pn": -0.132669 + }, + { + "surface": "此の分", + "readging": "このぶん", + "pos": "名詞", + "pn": -0.132675 + }, + { + "surface": "連覇", + "readging": "れんぱ", + "pos": "名詞", + "pn": -0.13268 + }, + { + "surface": "借間", + "readging": "しゃくま", + "pos": "名詞", + "pn": -0.13272 + }, + { + "surface": "映発", + "readging": "えいはつ", + "pos": "名詞", + "pn": -0.13274 + }, + { + "surface": "リライト", + "readging": "リライト", + "pos": "名詞", + "pn": -0.132744 + }, + { + "surface": "詞華", + "readging": "しか", + "pos": "名詞", + "pn": -0.132767 + }, + { + "surface": "物の本", + "readging": "もののほん", + "pos": "名詞", + "pn": -0.132771 + }, + { + "surface": "白露", + "readging": "しらつゆ", + "pos": "名詞", + "pn": -0.1328 + }, + { + "surface": "列聖", + "readging": "れっせい", + "pos": "名詞", + "pn": -0.132802 + }, + { + "surface": "淫婦", + "readging": "いんぷ", + "pos": "名詞", + "pn": -0.132847 + }, + { + "surface": "案下", + "readging": "あんか", + "pos": "名詞", + "pn": -0.132854 + }, + { + "surface": "内室", + "readging": "ないしつ", + "pos": "名詞", + "pn": -0.132856 + }, + { + "surface": "縫製", + "readging": "ほうせい", + "pos": "名詞", + "pn": -0.132866 + }, + { + "surface": "全文", + "readging": "ぜんぶん", + "pos": "名詞", + "pn": -0.132873 + }, + { + "surface": "性状", + "readging": "せいじょう", + "pos": "名詞", + "pn": -0.132884 + }, + { + "surface": "洗米", + "readging": "せんまい", + "pos": "名詞", + "pn": -0.132899 + }, + { + "surface": "作曲", + "readging": "さっきょく", + "pos": "名詞", + "pn": -0.132908 + }, + { + "surface": "野党", + "readging": "やとう", + "pos": "名詞", + "pn": -0.132928 + }, + { + "surface": "掛詞", + "readging": "かけことば", + "pos": "名詞", + "pn": -0.13293 + }, + { + "surface": "水嵩", + "readging": "みずかさ", + "pos": "名詞", + "pn": -0.132965 + }, + { + "surface": "牧民", + "readging": "ぼくみん", + "pos": "名詞", + "pn": -0.132969 + }, + { + "surface": "官有", + "readging": "かんゆう", + "pos": "名詞", + "pn": -0.13297 + }, + { + "surface": "仙宮", + "readging": "せんきゅう", + "pos": "名詞", + "pn": -0.132975 + }, + { + "surface": "変針", + "readging": "へんしん", + "pos": "名詞", + "pn": -0.132986 + }, + { + "surface": "招魂", + "readging": "しょうこん", + "pos": "名詞", + "pn": -0.132995 + }, + { + "surface": "噛分ける", + "readging": "かみわける", + "pos": "動詞", + "pn": -0.133019 + }, + { + "surface": "病家", + "readging": "びょうか", + "pos": "名詞", + "pn": -0.133025 + }, + { + "surface": "焼尽", + "readging": "しょうじん", + "pos": "名詞", + "pn": -0.133031 + }, + { + "surface": "尿意", + "readging": "にょうい", + "pos": "名詞", + "pn": -0.133057 + }, + { + "surface": "手話", + "readging": "しゅわ", + "pos": "名詞", + "pn": -0.133067 + }, + { + "surface": "類纂", + "readging": "るいさん", + "pos": "名詞", + "pn": -0.13307 + }, + { + "surface": "揚雲雀", + "readging": "あげひばり", + "pos": "名詞", + "pn": -0.133079 + }, + { + "surface": "金札", + "readging": "きんさつ", + "pos": "名詞", + "pn": -0.13308 + }, + { + "surface": "諸宗", + "readging": "しょしゅう", + "pos": "名詞", + "pn": -0.133093 + }, + { + "surface": "ファッション", + "readging": "ファッションショー", + "pos": "名詞", + "pn": -0.133098 + }, + { + "surface": "活社会", + "readging": "かっしゃかい", + "pos": "名詞", + "pn": -0.133103 + }, + { + "surface": "開ける", + "readging": "ひらける", + "pos": "動詞", + "pn": -0.133113 + }, + { + "surface": "三目", + "readging": "みつめ", + "pos": "名詞", + "pn": -0.133128 + }, + { + "surface": "鼻っぱし", + "readging": "はなっぱし", + "pos": "名詞", + "pn": -0.133129 + }, + { + "surface": "訴件", + "readging": "そけん", + "pos": "名詞", + "pn": -0.133129 + }, + { + "surface": "儒官", + "readging": "じゅかん", + "pos": "名詞", + "pn": -0.133147 + }, + { + "surface": "道具箱", + "readging": "どうぐばこ", + "pos": "名詞", + "pn": -0.133153 + }, + { + "surface": "零本", + "readging": "れいほん", + "pos": "名詞", + "pn": -0.133154 + }, + { + "surface": "会商", + "readging": "かいしょう", + "pos": "名詞", + "pn": -0.133179 + }, + { + "surface": "願わくは", + "readging": "ねがわくは", + "pos": "副詞", + "pn": -0.133194 + }, + { + "surface": "芸域", + "readging": "げいいき", + "pos": "名詞", + "pn": -0.133213 + }, + { + "surface": "協同組合", + "readging": "きょうどうくみあい", + "pos": "名詞", + "pn": -0.133235 + }, + { + "surface": "米産", + "readging": "べいさん", + "pos": "名詞", + "pn": -0.133236 + }, + { + "surface": "ポン柑", + "readging": "ポンかん", + "pos": "名詞", + "pn": -0.133239 + }, + { + "surface": "ちり鍋", + "readging": "ちりなべ", + "pos": "名詞", + "pn": -0.133243 + }, + { + "surface": "普茶料理", + "readging": "ふちゃりょうり", + "pos": "名詞", + "pn": -0.133275 + }, + { + "surface": "晩菊", + "readging": "ばんぎく", + "pos": "名詞", + "pn": -0.133277 + }, + { + "surface": "降り暮す", + "readging": "ふりくらす", + "pos": "動詞", + "pn": -0.133305 + }, + { + "surface": "純利", + "readging": "じゅんり", + "pos": "名詞", + "pn": -0.133305 + }, + { + "surface": "専攻", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.133318 + }, + { + "surface": "療病", + "readging": "りょうびょう", + "pos": "名詞", + "pn": -0.13336 + }, + { + "surface": "酸類", + "readging": "さんるい", + "pos": "名詞", + "pn": -0.133411 + }, + { + "surface": "対談", + "readging": "たいだん", + "pos": "名詞", + "pn": -0.133418 + }, + { + "surface": "詩型", + "readging": "しけい", + "pos": "名詞", + "pn": -0.133418 + }, + { + "surface": "愛染", + "readging": "あいぜん", + "pos": "名詞", + "pn": -0.133424 + }, + { + "surface": "CM", + "readging": "シーエム", + "pos": "名詞", + "pn": -0.133459 + }, + { + "surface": "唱導", + "readging": "しょうどう", + "pos": "名詞", + "pn": -0.133468 + }, + { + "surface": "衆徒", + "readging": "しゅうと", + "pos": "名詞", + "pn": -0.133482 + }, + { + "surface": "被選挙人", + "readging": "ひせんきょにん", + "pos": "名詞", + "pn": -0.133491 + }, + { + "surface": "直会", + "readging": "なおらい", + "pos": "名詞", + "pn": -0.133506 + }, + { + "surface": "付設", + "readging": "ふせつ", + "pos": "名詞", + "pn": -0.133523 + }, + { + "surface": "私室", + "readging": "ししつ", + "pos": "名詞", + "pn": -0.133527 + }, + { + "surface": "仏典", + "readging": "ぶってん", + "pos": "名詞", + "pn": -0.133534 + }, + { + "surface": "日切", + "readging": "ひぎり", + "pos": "名詞", + "pn": -0.13358 + }, + { + "surface": "涼秋", + "readging": "りょうしゅう", + "pos": "名詞", + "pn": -0.133622 + }, + { + "surface": "測地", + "readging": "そくち", + "pos": "名詞", + "pn": -0.133632 + }, + { + "surface": "令兄", + "readging": "れいけい", + "pos": "名詞", + "pn": -0.133653 + }, + { + "surface": "どか雪", + "readging": "どかゆき", + "pos": "名詞", + "pn": -0.133667 + }, + { + "surface": "パソコン", + "readging": "パソコン", + "pos": "名詞", + "pn": -0.133672 + }, + { + "surface": "無論", + "readging": "むろん", + "pos": "副詞", + "pn": -0.133712 + }, + { + "surface": "豹変", + "readging": "ひょうへん", + "pos": "名詞", + "pn": -0.133712 + }, + { + "surface": "紙価", + "readging": "しか", + "pos": "名詞", + "pn": -0.133718 + }, + { + "surface": "君命", + "readging": "くんめい", + "pos": "名詞", + "pn": -0.133721 + }, + { + "surface": "中頃", + "readging": "なかごろ", + "pos": "名詞", + "pn": -0.133722 + }, + { + "surface": "不文法", + "readging": "ふぶんほう", + "pos": "名詞", + "pn": -0.133737 + }, + { + "surface": "投遣り", + "readging": "なげやり", + "pos": "名詞", + "pn": -0.13378 + }, + { + "surface": "藩中", + "readging": "はんちゅう", + "pos": "名詞", + "pn": -0.133783 + }, + { + "surface": "種本", + "readging": "たねほん", + "pos": "名詞", + "pn": -0.133809 + }, + { + "surface": "比翼連理", + "readging": "ひよくれんり", + "pos": "名詞", + "pn": -0.133821 + }, + { + "surface": "おみ足", + "readging": "おみあし", + "pos": "名詞", + "pn": -0.133823 + }, + { + "surface": "乗ずる", + "readging": "じょうずる", + "pos": "動詞", + "pn": -0.133825 + }, + { + "surface": "座乗", + "readging": "ざじょう", + "pos": "名詞", + "pn": -0.133845 + }, + { + "surface": "飼主", + "readging": "かいぬし", + "pos": "名詞", + "pn": -0.13386 + }, + { + "surface": "効目", + "readging": "ききめ", + "pos": "名詞", + "pn": -0.133863 + }, + { + "surface": "片食", + "readging": "かたけ", + "pos": "名詞", + "pn": -0.133867 + }, + { + "surface": "活性", + "readging": "かっせい", + "pos": "名詞", + "pn": -0.133875 + }, + { + "surface": "慢心", + "readging": "まんしん", + "pos": "名詞", + "pn": -0.133888 + }, + { + "surface": "一夫一婦", + "readging": "いっぷいっぷ", + "pos": "名詞", + "pn": -0.133892 + }, + { + "surface": "あらあら", + "readging": "あらあら", + "pos": "名詞", + "pn": -0.133923 + }, + { + "surface": "綸言", + "readging": "りんげん", + "pos": "名詞", + "pn": -0.13393 + }, + { + "surface": "復員", + "readging": "ふくいん", + "pos": "名詞", + "pn": -0.133931 + }, + { + "surface": "りっしんべん", + "readging": "りっしんべん", + "pos": "名詞", + "pn": -0.133944 + }, + { + "surface": "弓偏", + "readging": "ゆみへん", + "pos": "名詞", + "pn": -0.133944 + }, + { + "surface": "耳偏", + "readging": "みみへん", + "pos": "名詞", + "pn": -0.133944 + }, + { + "surface": "虫偏", + "readging": "むしへん", + "pos": "名詞", + "pn": -0.133944 + }, + { + "surface": "目偏", + "readging": "めへん", + "pos": "名詞", + "pn": -0.133944 + }, + { + "surface": "山偏", + "readging": "やまへん", + "pos": "名詞", + "pn": -0.133944 + }, + { + "surface": "骨偏", + "readging": "ほねへん", + "pos": "名詞", + "pn": -0.133944 + }, + { + "surface": "大勢", + "readging": "おおぜい", + "pos": "名詞", + "pn": -0.133945 + }, + { + "surface": "国造", + "readging": "くにのみやつこ", + "pos": "名詞", + "pn": -0.133957 + }, + { + "surface": "接受", + "readging": "せつじゅ", + "pos": "名詞", + "pn": -0.133958 + }, + { + "surface": "沖天", + "readging": "ちゅうてん", + "pos": "名詞", + "pn": -0.133963 + }, + { + "surface": "抗病力", + "readging": "こうびょうりょく", + "pos": "名詞", + "pn": -0.134017 + }, + { + "surface": "世心", + "readging": "よごころ", + "pos": "名詞", + "pn": -0.134028 + }, + { + "surface": "企図", + "readging": "きと", + "pos": "名詞", + "pn": -0.134035 + }, + { + "surface": "衆目", + "readging": "しゅうもく", + "pos": "名詞", + "pn": -0.134049 + }, + { + "surface": "セールス", + "readging": "セールスマン", + "pos": "名詞", + "pn": -0.134049 + }, + { + "surface": "ペガサス", + "readging": "ペガサス", + "pos": "名詞", + "pn": -0.134055 + }, + { + "surface": "模索", + "readging": "もさく", + "pos": "名詞", + "pn": -0.134102 + }, + { + "surface": "築地", + "readging": "つきじ", + "pos": "名詞", + "pn": -0.134102 + }, + { + "surface": "木筋", + "readging": "もっきん", + "pos": "名詞", + "pn": -0.134109 + }, + { + "surface": "熱望", + "readging": "ねつぼう", + "pos": "名詞", + "pn": -0.134125 + }, + { + "surface": "色刷", + "readging": "いろずり", + "pos": "名詞", + "pn": -0.134129 + }, + { + "surface": "門外", + "readging": "もんがい", + "pos": "名詞", + "pn": -0.13413 + }, + { + "surface": "暖衣", + "readging": "だんい", + "pos": "名詞", + "pn": -0.134138 + }, + { + "surface": "仕立下し", + "readging": "したておろし", + "pos": "名詞", + "pn": -0.134138 + }, + { + "surface": "通説", + "readging": "つうせつ", + "pos": "名詞", + "pn": -0.134142 + }, + { + "surface": "画題", + "readging": "がだい", + "pos": "名詞", + "pn": -0.134149 + }, + { + "surface": "聞込む", + "readging": "ききこむ", + "pos": "動詞", + "pn": -0.134156 + }, + { + "surface": "色即是空", + "readging": "しきそくぜくう", + "pos": "名詞", + "pn": -0.134163 + }, + { + "surface": "唯心", + "readging": "ゆいしん", + "pos": "名詞", + "pn": -0.134195 + }, + { + "surface": "取合い", + "readging": "とりあい", + "pos": "名詞", + "pn": -0.134215 + }, + { + "surface": "作り笑い", + "readging": "つくりわらい", + "pos": "名詞", + "pn": -0.134225 + }, + { + "surface": "地声", + "readging": "じごえ", + "pos": "名詞", + "pn": -0.134237 + }, + { + "surface": "尋ね合せる", + "readging": "たずねあわせる", + "pos": "動詞", + "pn": -0.134241 + }, + { + "surface": "時艱", + "readging": "じかん", + "pos": "名詞", + "pn": -0.134255 + }, + { + "surface": "公許", + "readging": "こうきょ", + "pos": "名詞", + "pn": -0.134263 + }, + { + "surface": "初産", + "readging": "はつざん", + "pos": "名詞", + "pn": -0.134265 + }, + { + "surface": "立太子", + "readging": "りったいし", + "pos": "名詞", + "pn": -0.134273 + }, + { + "surface": "安危", + "readging": "あんき", + "pos": "名詞", + "pn": -0.13433 + }, + { + "surface": "年刊", + "readging": "ねんかん", + "pos": "名詞", + "pn": -0.134351 + }, + { + "surface": "酔余", + "readging": "すいよ", + "pos": "名詞", + "pn": -0.134377 + }, + { + "surface": "カルチャー", + "readging": "カルチャーショック", + "pos": "名詞", + "pn": -0.134378 + }, + { + "surface": "二化螟虫", + "readging": "にかめいちゅう", + "pos": "名詞", + "pn": -0.134383 + }, + { + "surface": "熱涙", + "readging": "ねつるい", + "pos": "名詞", + "pn": -0.134391 + }, + { + "surface": "祝電", + "readging": "しゅくでん", + "pos": "名詞", + "pn": -0.1344 + }, + { + "surface": "無産階級", + "readging": "むさんかいきゅう", + "pos": "名詞", + "pn": -0.134409 + }, + { + "surface": "労相", + "readging": "ろうしょう", + "pos": "名詞", + "pn": -0.134413 + }, + { + "surface": "内奏", + "readging": "ないそう", + "pos": "名詞", + "pn": -0.134425 + }, + { + "surface": "物情", + "readging": "ぶつじょう", + "pos": "名詞", + "pn": -0.134435 + }, + { + "surface": "まろうど", + "readging": "まろうど", + "pos": "名詞", + "pn": -0.134441 + }, + { + "surface": "腹囲", + "readging": "ふくい", + "pos": "名詞", + "pn": -0.134452 + }, + { + "surface": "アナーキズム", + "readging": "アナーキズム", + "pos": "名詞", + "pn": -0.134466 + }, + { + "surface": "ひけらかす", + "readging": "ひけらかす", + "pos": "動詞", + "pn": -0.134469 + }, + { + "surface": "尊慮", + "readging": "そんりょ", + "pos": "名詞", + "pn": -0.134483 + }, + { + "surface": "逃げ延びる", + "readging": "にげのびる", + "pos": "動詞", + "pn": -0.134512 + }, + { + "surface": "別命", + "readging": "べつめい", + "pos": "名詞", + "pn": -0.134517 + }, + { + "surface": "メソン", + "readging": "メソン", + "pos": "名詞", + "pn": -0.134536 + }, + { + "surface": "音読み", + "readging": "おんよみ", + "pos": "名詞", + "pn": -0.13454 + }, + { + "surface": "動機論", + "readging": "どうきろん", + "pos": "名詞", + "pn": -0.134542 + }, + { + "surface": "垂り穂", + "readging": "たりほ", + "pos": "名詞", + "pn": -0.134558 + }, + { + "surface": "所願", + "readging": "しょがん", + "pos": "名詞", + "pn": -0.134581 + }, + { + "surface": "不磨", + "readging": "ふま", + "pos": "名詞", + "pn": -0.134599 + }, + { + "surface": "聖跡", + "readging": "せいせき", + "pos": "名詞", + "pn": -0.134601 + }, + { + "surface": "色気", + "readging": "いろけ", + "pos": "名詞", + "pn": -0.134613 + }, + { + "surface": "笑顔", + "readging": "えがお", + "pos": "名詞", + "pn": -0.134628 + }, + { + "surface": "VS", + "readging": "ブイエス", + "pos": "名詞", + "pn": -0.134656 + }, + { + "surface": "回復", + "readging": "かいふく", + "pos": "名詞", + "pn": -0.134749 + }, + { + "surface": "題画", + "readging": "だいが", + "pos": "名詞", + "pn": -0.134782 + }, + { + "surface": "大家", + "readging": "おおや", + "pos": "名詞", + "pn": -0.134805 + }, + { + "surface": "私記", + "readging": "しき", + "pos": "名詞", + "pn": -0.134814 + }, + { + "surface": "快足", + "readging": "かいそく", + "pos": "名詞", + "pn": -0.134826 + }, + { + "surface": "飛信", + "readging": "ひしん", + "pos": "名詞", + "pn": -0.134845 + }, + { + "surface": "馬匹", + "readging": "ばひつ", + "pos": "名詞", + "pn": -0.134868 + }, + { + "surface": "顕職", + "readging": "けんしょく", + "pos": "名詞", + "pn": -0.134881 + }, + { + "surface": "アーベント", + "readging": "アーベント", + "pos": "名詞", + "pn": -0.1349 + }, + { + "surface": "店主", + "readging": "てんしゅ", + "pos": "名詞", + "pn": -0.134934 + }, + { + "surface": "お持たせ", + "readging": "おもたせ", + "pos": "名詞", + "pn": -0.134943 + }, + { + "surface": "参酌", + "readging": "さんしゃく", + "pos": "名詞", + "pn": -0.13499 + }, + { + "surface": "出職", + "readging": "でしょく", + "pos": "名詞", + "pn": -0.135009 + }, + { + "surface": "出来心", + "readging": "できごころ", + "pos": "名詞", + "pn": -0.135029 + }, + { + "surface": "激闘", + "readging": "げきとう", + "pos": "名詞", + "pn": -0.135071 + }, + { + "surface": "一色", + "readging": "ひといろ", + "pos": "名詞", + "pn": -0.135075 + }, + { + "surface": "薙伏せる", + "readging": "なぎふせる", + "pos": "動詞", + "pn": -0.135086 + }, + { + "surface": "俳書", + "readging": "はいしょ", + "pos": "名詞", + "pn": -0.13509 + }, + { + "surface": "長どす", + "readging": "ながどす", + "pos": "名詞", + "pn": -0.135118 + }, + { + "surface": "禅堂", + "readging": "ぜんどう", + "pos": "名詞", + "pn": -0.13512 + }, + { + "surface": "得する", + "readging": "とくする", + "pos": "動詞", + "pn": -0.135131 + }, + { + "surface": "白皙", + "readging": "はくせき", + "pos": "名詞", + "pn": -0.13514 + }, + { + "surface": "連勝", + "readging": "れんしょう", + "pos": "名詞", + "pn": -0.135167 + }, + { + "surface": "秘教", + "readging": "ひきょう", + "pos": "名詞", + "pn": -0.135168 + }, + { + "surface": "KO", + "readging": "ケーオー", + "pos": "名詞", + "pn": -0.135177 + }, + { + "surface": "抜穴", + "readging": "ぬけあな", + "pos": "名詞", + "pn": -0.135235 + }, + { + "surface": "呉れる", + "readging": "くれる", + "pos": "動詞", + "pn": -0.135261 + }, + { + "surface": "熊笹", + "readging": "くまざさ", + "pos": "名詞", + "pn": -0.13527 + }, + { + "surface": "当世", + "readging": "とうせい", + "pos": "名詞", + "pn": -0.135274 + }, + { + "surface": "女声", + "readging": "じょせい", + "pos": "名詞", + "pn": -0.135288 + }, + { + "surface": "さてこそ", + "readging": "さてこそ", + "pos": "名詞", + "pn": -0.13532 + }, + { + "surface": "薄薄", + "readging": "うすうす", + "pos": "副詞", + "pn": -0.135323 + }, + { + "surface": "邦訳", + "readging": "ほうやく", + "pos": "名詞", + "pn": -0.135344 + }, + { + "surface": "門並", + "readging": "かどなみ", + "pos": "名詞", + "pn": -0.135378 + }, + { + "surface": "要目", + "readging": "ようもく", + "pos": "名詞", + "pn": -0.135398 + }, + { + "surface": "異色", + "readging": "いしょく", + "pos": "名詞", + "pn": -0.135402 + }, + { + "surface": "同権", + "readging": "どうけん", + "pos": "名詞", + "pn": -0.135408 + }, + { + "surface": "灯光", + "readging": "とうこう", + "pos": "名詞", + "pn": -0.135409 + }, + { + "surface": "仏塔", + "readging": "ぶっとう", + "pos": "名詞", + "pn": -0.135413 + }, + { + "surface": "松飾", + "readging": "まつかざり", + "pos": "名詞", + "pn": -0.13546 + }, + { + "surface": "適者", + "readging": "てきしゃ", + "pos": "名詞", + "pn": -0.135465 + }, + { + "surface": "運動費", + "readging": "うんどうひ", + "pos": "名詞", + "pn": -0.135466 + }, + { + "surface": "訳知り", + "readging": "わけしり", + "pos": "名詞", + "pn": -0.13548 + }, + { + "surface": "陸運", + "readging": "りくうん", + "pos": "名詞", + "pn": -0.135497 + }, + { + "surface": "あららぎ", + "readging": "あららぎ", + "pos": "名詞", + "pn": -0.135497 + }, + { + "surface": "虞美人草", + "readging": "ぐびじんそう", + "pos": "名詞", + "pn": -0.135497 + }, + { + "surface": "川原}{河原撫子", + "readging": "かわら", + "pos": "名詞", + "pn": -0.135497 + }, + { + "surface": "市庁", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.135497 + }, + { + "surface": "滞陣", + "readging": "たいじん", + "pos": "名詞", + "pn": -0.135505 + }, + { + "surface": "競落", + "readging": "きょうらく", + "pos": "名詞", + "pn": -0.135508 + }, + { + "surface": "篤農", + "readging": "とくのう", + "pos": "名詞", + "pn": -0.135515 + }, + { + "surface": "起工", + "readging": "きこう", + "pos": "名詞", + "pn": -0.135532 + }, + { + "surface": "為", + "readging": "ため", + "pos": "名詞", + "pn": -0.135555 + }, + { + "surface": "技工", + "readging": "ぎこう", + "pos": "名詞", + "pn": -0.135574 + }, + { + "surface": "シリング", + "readging": "シリング", + "pos": "名詞", + "pn": -0.135657 + }, + { + "surface": "養蚕", + "readging": "ようさん", + "pos": "名詞", + "pn": -0.135661 + }, + { + "surface": "古株", + "readging": "ふるかぶ", + "pos": "名詞", + "pn": -0.135667 + }, + { + "surface": "晴姿", + "readging": "はれすがた", + "pos": "名詞", + "pn": -0.135676 + }, + { + "surface": "リンクス", + "readging": "リンクス", + "pos": "名詞", + "pn": -0.135684 + }, + { + "surface": "鳥人", + "readging": "ちょうじん", + "pos": "名詞", + "pn": -0.135696 + }, + { + "surface": "煎じ薬", + "readging": "せんじぐすり", + "pos": "名詞", + "pn": -0.135698 + }, + { + "surface": "焦がれる", + "readging": "こがれる", + "pos": "動詞", + "pn": -0.135708 + }, + { + "surface": "谷懐", + "readging": "たにぶところ", + "pos": "名詞", + "pn": -0.135711 + }, + { + "surface": "焼鈍", + "readging": "しょうどん", + "pos": "名詞", + "pn": -0.135717 + }, + { + "surface": "蝟集", + "readging": "いしゅう", + "pos": "名詞", + "pn": -0.135746 + }, + { + "surface": "閣老", + "readging": "かくろう", + "pos": "名詞", + "pn": -0.135757 + }, + { + "surface": "謝意", + "readging": "しゃい", + "pos": "名詞", + "pn": -0.135761 + }, + { + "surface": "親閲", + "readging": "しんえつ", + "pos": "名詞", + "pn": -0.135763 + }, + { + "surface": "出小作", + "readging": "でこさく", + "pos": "名詞", + "pn": -0.135779 + }, + { + "surface": "丁重", + "readging": "ていちょう", + "pos": "名詞", + "pn": -0.13578 + }, + { + "surface": "立証", + "readging": "りっしょう", + "pos": "名詞", + "pn": -0.135852 + }, + { + "surface": "掌握", + "readging": "しょうあく", + "pos": "名詞", + "pn": -0.135873 + }, + { + "surface": "国劇", + "readging": "こくげき", + "pos": "名詞", + "pn": -0.1359 + }, + { + "surface": "閣外", + "readging": "かくがい", + "pos": "名詞", + "pn": -0.135924 + }, + { + "surface": "陽暦", + "readging": "ようれき", + "pos": "名詞", + "pn": -0.135925 + }, + { + "surface": "取運ぶ", + "readging": "とりはこぶ", + "pos": "動詞", + "pn": -0.13594 + }, + { + "surface": "借入れる", + "readging": "かりいれる", + "pos": "動詞", + "pn": -0.135959 + }, + { + "surface": "責任感", + "readging": "せきにんかん", + "pos": "名詞", + "pn": -0.135965 + }, + { + "surface": "女医", + "readging": "じょい", + "pos": "名詞", + "pn": -0.135968 + }, + { + "surface": "忠魂", + "readging": "ちゅうこん", + "pos": "名詞", + "pn": -0.135981 + }, + { + "surface": "民意", + "readging": "みんい", + "pos": "名詞", + "pn": -0.136006 + }, + { + "surface": "宗廟", + "readging": "そうびょう", + "pos": "名詞", + "pn": -0.136009 + }, + { + "surface": "組織労働者", + "readging": "そしきろうどうしゃ", + "pos": "名詞", + "pn": -0.136026 + }, + { + "surface": "ガウン", + "readging": "ガウン", + "pos": "名詞", + "pn": -0.136028 + }, + { + "surface": "先取り", + "readging": "さきどり", + "pos": "名詞", + "pn": -0.136031 + }, + { + "surface": "深耕", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.136042 + }, + { + "surface": "形見分け", + "readging": "かたみわけ", + "pos": "名詞", + "pn": -0.136057 + }, + { + "surface": "印可", + "readging": "いんか", + "pos": "名詞", + "pn": -0.136102 + }, + { + "surface": "大所", + "readging": "おおどころ", + "pos": "名詞", + "pn": -0.136144 + }, + { + "surface": "古文", + "readging": "こぶん", + "pos": "名詞", + "pn": -0.136149 + }, + { + "surface": "見取る", + "readging": "みとる", + "pos": "動詞", + "pn": -0.13615 + }, + { + "surface": "青", + "readging": "あお", + "pos": "名詞", + "pn": -0.136182 + }, + { + "surface": "算入", + "readging": "さんにゅう", + "pos": "名詞", + "pn": -0.136196 + }, + { + "surface": "掻合せる", + "readging": "かきあわせる", + "pos": "動詞", + "pn": -0.136214 + }, + { + "surface": "繰寄せる", + "readging": "くりよせる", + "pos": "動詞", + "pn": -0.136214 + }, + { + "surface": "来迎", + "readging": "らいごう", + "pos": "名詞", + "pn": -0.136221 + }, + { + "surface": "早場米", + "readging": "はやばまい", + "pos": "名詞", + "pn": -0.136254 + }, + { + "surface": "作詞", + "readging": "さくし", + "pos": "名詞", + "pn": -0.136274 + }, + { + "surface": "買収", + "readging": "ばいしゅう", + "pos": "名詞", + "pn": -0.136287 + }, + { + "surface": "アミーバ", + "readging": "アミーバ", + "pos": "名詞", + "pn": -0.136308 + }, + { + "surface": "裂傷", + "readging": "れっしょう", + "pos": "名詞", + "pn": -0.136354 + }, + { + "surface": "馬券", + "readging": "ばけん", + "pos": "名詞", + "pn": -0.136364 + }, + { + "surface": "ショー", + "readging": "ショーケース", + "pos": "名詞", + "pn": -0.136372 + }, + { + "surface": "負託", + "readging": "ふたく", + "pos": "名詞", + "pn": -0.136383 + }, + { + "surface": "有権者", + "readging": "ゆうけんしゃ", + "pos": "名詞", + "pn": -0.136414 + }, + { + "surface": "伐木", + "readging": "ばつぼく", + "pos": "名詞", + "pn": -0.136459 + }, + { + "surface": "古今", + "readging": "ここん", + "pos": "名詞", + "pn": -0.1365 + }, + { + "surface": "差紙", + "readging": "さしがみ", + "pos": "名詞", + "pn": -0.136504 + }, + { + "surface": "条章", + "readging": "じょうしょう", + "pos": "名詞", + "pn": -0.136507 + }, + { + "surface": "嫡男", + "readging": "ちゃくなん", + "pos": "名詞", + "pn": -0.136523 + }, + { + "surface": "集成", + "readging": "しゅうせい", + "pos": "名詞", + "pn": -0.136534 + }, + { + "surface": "吸血", + "readging": "きゅうけつ", + "pos": "名詞", + "pn": -0.136534 + }, + { + "surface": "羽布団", + "readging": "はねぶとん", + "pos": "名詞", + "pn": -0.136537 + }, + { + "surface": "コニャック", + "readging": "コニャック", + "pos": "名詞", + "pn": -0.136552 + }, + { + "surface": "党勢", + "readging": "とうせい", + "pos": "名詞", + "pn": -0.136572 + }, + { + "surface": "愛敬", + "readging": "あいきょう", + "pos": "名詞", + "pn": -0.136573 + }, + { + "surface": "出来合", + "readging": "できあい", + "pos": "名詞", + "pn": -0.136586 + }, + { + "surface": "余所見", + "readging": "よそみ", + "pos": "名詞", + "pn": -0.136595 + }, + { + "surface": "閭巷", + "readging": "りょこう", + "pos": "名詞", + "pn": -0.136598 + }, + { + "surface": "典侍", + "readging": "てんじ", + "pos": "名詞", + "pn": -0.13662 + }, + { + "surface": "人道", + "readging": "じんどう", + "pos": "名詞", + "pn": -0.136625 + }, + { + "surface": "官途", + "readging": "かんと", + "pos": "名詞", + "pn": -0.13664 + }, + { + "surface": "両為", + "readging": "りょうだめ", + "pos": "名詞", + "pn": -0.136641 + }, + { + "surface": "理想主義", + "readging": "りそうしゅぎ", + "pos": "名詞", + "pn": -0.136683 + }, + { + "surface": "数等", + "readging": "すうとう", + "pos": "名詞", + "pn": -0.136695 + }, + { + "surface": "死票", + "readging": "しひょう", + "pos": "名詞", + "pn": -0.136698 + }, + { + "surface": "寺務", + "readging": "じむ", + "pos": "名詞", + "pn": -0.136705 + }, + { + "surface": "助祭", + "readging": "じょさい", + "pos": "名詞", + "pn": -0.136713 + }, + { + "surface": "船大工", + "readging": "ふなだいく", + "pos": "名詞", + "pn": -0.136721 + }, + { + "surface": "定律", + "readging": "ていりつ", + "pos": "名詞", + "pn": -0.136751 + }, + { + "surface": "教えの庭", + "readging": "おしえのにわ", + "pos": "名詞", + "pn": -0.136765 + }, + { + "surface": "補講", + "readging": "ほこう", + "pos": "名詞", + "pn": -0.136768 + }, + { + "surface": "夢路", + "readging": "ゆめじ", + "pos": "名詞", + "pn": -0.136797 + }, + { + "surface": "枝", + "readging": "えだ", + "pos": "名詞", + "pn": -0.136811 + }, + { + "surface": "ひりりと", + "readging": "ひりりと", + "pos": "副詞", + "pn": -0.136821 + }, + { + "surface": "古顔", + "readging": "ふるがお", + "pos": "名詞", + "pn": -0.136827 + }, + { + "surface": "交戦国", + "readging": "こうせんこく", + "pos": "名詞", + "pn": -0.13684 + }, + { + "surface": "得", + "readging": "とく", + "pos": "名詞", + "pn": -0.136859 + }, + { + "surface": "東進", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.136873 + }, + { + "surface": "花落", + "readging": "はなおち", + "pos": "名詞", + "pn": -0.136882 + }, + { + "surface": "千客万来", + "readging": "せんきゃくばんらい", + "pos": "名詞", + "pn": -0.136971 + }, + { + "surface": "用箪笥", + "readging": "ようだんす", + "pos": "名詞", + "pn": -0.136974 + }, + { + "surface": "通辞", + "readging": "つうじ", + "pos": "名詞", + "pn": -0.137005 + }, + { + "surface": "新調", + "readging": "しんちょう", + "pos": "名詞", + "pn": -0.137009 + }, + { + "surface": "薄物", + "readging": "うすもの", + "pos": "名詞", + "pn": -0.137029 + }, + { + "surface": "思郷", + "readging": "しきょう", + "pos": "名詞", + "pn": -0.13704 + }, + { + "surface": "極左", + "readging": "きょくさ", + "pos": "名詞", + "pn": -0.137043 + }, + { + "surface": "嫌嫌", + "readging": "いやいや", + "pos": "副詞", + "pn": -0.137052 + }, + { + "surface": "長駆", + "readging": "ちょうく", + "pos": "名詞", + "pn": -0.137058 + }, + { + "surface": "名数", + "readging": "めいすう", + "pos": "名詞", + "pn": -0.137062 + }, + { + "surface": "併出", + "readging": "へいしゅつ", + "pos": "名詞", + "pn": -0.137063 + }, + { + "surface": "狂女", + "readging": "きょうじょ", + "pos": "名詞", + "pn": -0.137064 + }, + { + "surface": "雨乞い", + "readging": "あまごい", + "pos": "名詞", + "pn": -0.137074 + }, + { + "surface": "秋草", + "readging": "あきくさ", + "pos": "名詞", + "pn": -0.137103 + }, + { + "surface": "単式", + "readging": "たんしき", + "pos": "名詞", + "pn": -0.137105 + }, + { + "surface": "まずまず", + "readging": "まずまず", + "pos": "副詞", + "pn": -0.13712 + }, + { + "surface": "ビジョン", + "readging": "ビジョン", + "pos": "名詞", + "pn": -0.137125 + }, + { + "surface": "春着", + "readging": "はるぎ", + "pos": "名詞", + "pn": -0.137135 + }, + { + "surface": "賢所", + "readging": "けんしょ", + "pos": "名詞", + "pn": -0.137146 + }, + { + "surface": "発向", + "readging": "はっこう", + "pos": "名詞", + "pn": -0.137167 + }, + { + "surface": "親身", + "readging": "しんみ", + "pos": "名詞", + "pn": -0.137201 + }, + { + "surface": "盲滅法", + "readging": "めくらめっぽう", + "pos": "名詞", + "pn": -0.137211 + }, + { + "surface": "盟休", + "readging": "めいきゅう", + "pos": "名詞", + "pn": -0.137211 + }, + { + "surface": "プロフィール", + "readging": "プロフィール", + "pos": "名詞", + "pn": -0.137216 + }, + { + "surface": "遅日", + "readging": "ちじつ", + "pos": "名詞", + "pn": -0.137231 + }, + { + "surface": "キャンパス", + "readging": "キャンパス", + "pos": "名詞", + "pn": -0.137237 + }, + { + "surface": "つうつう", + "readging": "つうつう", + "pos": "名詞", + "pn": -0.137261 + }, + { + "surface": "再臨", + "readging": "さいりん", + "pos": "名詞", + "pn": -0.137261 + }, + { + "surface": "代作", + "readging": "だいさく", + "pos": "名詞", + "pn": -0.137265 + }, + { + "surface": "辛口", + "readging": "からくち", + "pos": "名詞", + "pn": -0.13732 + }, + { + "surface": "胡麻幹", + "readging": "ごまがら", + "pos": "名詞", + "pn": -0.137321 + }, + { + "surface": "任官", + "readging": "にんかん", + "pos": "名詞", + "pn": -0.137323 + }, + { + "surface": "本宅", + "readging": "ほんたく", + "pos": "名詞", + "pn": -0.137345 + }, + { + "surface": "言消す", + "readging": "いいけす", + "pos": "動詞", + "pn": -0.137347 + }, + { + "surface": "献詞", + "readging": "けんし", + "pos": "名詞", + "pn": -0.137348 + }, + { + "surface": "富鉱", + "readging": "ふこう", + "pos": "名詞", + "pn": -0.13736 + }, + { + "surface": "偶有", + "readging": "ぐうゆう", + "pos": "名詞", + "pn": -0.13738 + }, + { + "surface": "木剣", + "readging": "ぼっけん", + "pos": "名詞", + "pn": -0.137402 + }, + { + "surface": "小禽", + "readging": "しょうきん", + "pos": "名詞", + "pn": -0.137415 + }, + { + "surface": "外来語", + "readging": "がいらいご", + "pos": "名詞", + "pn": -0.137423 + }, + { + "surface": "原書", + "readging": "げんしょ", + "pos": "名詞", + "pn": -0.137452 + }, + { + "surface": "再建", + "readging": "さいこん", + "pos": "名詞", + "pn": -0.137459 + }, + { + "surface": "米収", + "readging": "べいしゅう", + "pos": "名詞", + "pn": -0.137495 + }, + { + "surface": "攻略", + "readging": "こうりゃく", + "pos": "名詞", + "pn": -0.137496 + }, + { + "surface": "庁舎", + "readging": "ちょうしゃ", + "pos": "名詞", + "pn": -0.137535 + }, + { + "surface": "集大成", + "readging": "しゅうたいせい", + "pos": "名詞", + "pn": -0.137545 + }, + { + "surface": "這般", + "readging": "しゃはん", + "pos": "名詞", + "pn": -0.137552 + }, + { + "surface": "こびりつく", + "readging": "こびりつく", + "pos": "動詞", + "pn": -0.13757 + }, + { + "surface": "厳戒", + "readging": "げんかい", + "pos": "名詞", + "pn": -0.137579 + }, + { + "surface": "貴書", + "readging": "きしょ", + "pos": "名詞", + "pn": -0.137579 + }, + { + "surface": "米寿", + "readging": "べいじゅ", + "pos": "名詞", + "pn": -0.137623 + }, + { + "surface": "往年", + "readging": "おうねん", + "pos": "名詞", + "pn": -0.137626 + }, + { + "surface": "三国伝来", + "readging": "さんごくでんらい", + "pos": "名詞", + "pn": -0.137652 + }, + { + "surface": "俗諦", + "readging": "ぞくたい", + "pos": "名詞", + "pn": -0.137657 + }, + { + "surface": "論理学", + "readging": "ろんりがく", + "pos": "名詞", + "pn": -0.137658 + }, + { + "surface": "成層", + "readging": "せいそう", + "pos": "名詞", + "pn": -0.137668 + }, + { + "surface": "年商", + "readging": "ねんしょう", + "pos": "名詞", + "pn": -0.13771 + }, + { + "surface": "非核", + "readging": "ひかく", + "pos": "名詞", + "pn": -0.137722 + }, + { + "surface": "尊兄", + "readging": "そんけい", + "pos": "名詞", + "pn": -0.137725 + }, + { + "surface": "従犯", + "readging": "じゅうはん", + "pos": "名詞", + "pn": -0.137729 + }, + { + "surface": "帝政", + "readging": "ていせい", + "pos": "名詞", + "pn": -0.137732 + }, + { + "surface": "対空", + "readging": "たいくう", + "pos": "名詞", + "pn": -0.137734 + }, + { + "surface": "ハイカー", + "readging": "ハイカー", + "pos": "名詞", + "pn": -0.13776 + }, + { + "surface": "初志", + "readging": "しょし", + "pos": "名詞", + "pn": -0.137789 + }, + { + "surface": "受禅", + "readging": "じゅぜん", + "pos": "名詞", + "pn": -0.137845 + }, + { + "surface": "言直す", + "readging": "いいなおす", + "pos": "動詞", + "pn": -0.137864 + }, + { + "surface": "予知", + "readging": "よち", + "pos": "名詞", + "pn": -0.137872 + }, + { + "surface": "古戦場", + "readging": "こせんじょう", + "pos": "名詞", + "pn": -0.137926 + }, + { + "surface": "隠者", + "readging": "いんじゃ", + "pos": "名詞", + "pn": -0.137954 + }, + { + "surface": "造化", + "readging": "ぞうか", + "pos": "名詞", + "pn": -0.137968 + }, + { + "surface": "遺制", + "readging": "いせい", + "pos": "名詞", + "pn": -0.138058 + }, + { + "surface": "保護国", + "readging": "ほごこく", + "pos": "名詞", + "pn": -0.138095 + }, + { + "surface": "BG", + "readging": "ビージー", + "pos": "名詞", + "pn": -0.138101 + }, + { + "surface": "索敵", + "readging": "さくてき", + "pos": "名詞", + "pn": -0.138102 + }, + { + "surface": "太守", + "readging": "たいしゅ", + "pos": "名詞", + "pn": -0.138137 + }, + { + "surface": "姓名", + "readging": "せいめい", + "pos": "名詞", + "pn": -0.138144 + }, + { + "surface": "刺史", + "readging": "しし", + "pos": "名詞", + "pn": -0.138157 + }, + { + "surface": "姥捨山", + "readging": "うばすてやま", + "pos": "名詞", + "pn": -0.138159 + }, + { + "surface": "悠悠自適", + "readging": "ゆうゆうじてき", + "pos": "名詞", + "pn": -0.138166 + }, + { + "surface": "連れ子", + "readging": "つれこ", + "pos": "名詞", + "pn": -0.138181 + }, + { + "surface": "OEM", + "readging": "オーイーエム", + "pos": "名詞", + "pn": -0.1382 + }, + { + "surface": "アッピール", + "readging": "アッピール", + "pos": "名詞", + "pn": -0.138202 + }, + { + "surface": "直話", + "readging": "じきわ", + "pos": "名詞", + "pn": -0.138218 + }, + { + "surface": "旧株", + "readging": "きゅうかぶ", + "pos": "名詞", + "pn": -0.138233 + }, + { + "surface": "没我", + "readging": "ぼつが", + "pos": "名詞", + "pn": -0.138245 + }, + { + "surface": "手作り", + "readging": "てづくり", + "pos": "名詞", + "pn": -0.138277 + }, + { + "surface": "場裏", + "readging": "じょうり", + "pos": "名詞", + "pn": -0.138277 + }, + { + "surface": "値上げ", + "readging": "ねあげ", + "pos": "名詞", + "pn": -0.138286 + }, + { + "surface": "菊月", + "readging": "きくづき", + "pos": "名詞", + "pn": -0.138295 + }, + { + "surface": "歌書", + "readging": "かしょ", + "pos": "名詞", + "pn": -0.138305 + }, + { + "surface": "さざれ波", + "readging": "さざれなみ", + "pos": "名詞", + "pn": -0.138314 + }, + { + "surface": "横臥", + "readging": "おうが", + "pos": "名詞", + "pn": -0.13832 + }, + { + "surface": "歴世", + "readging": "れきせい", + "pos": "名詞", + "pn": -0.138321 + }, + { + "surface": "遣り遂げる", + "readging": "やりとげる", + "pos": "動詞", + "pn": -0.138323 + }, + { + "surface": "邦語", + "readging": "ほうご", + "pos": "名詞", + "pn": -0.138366 + }, + { + "surface": "西紀", + "readging": "せいき", + "pos": "名詞", + "pn": -0.138374 + }, + { + "surface": "発券", + "readging": "はっけん", + "pos": "名詞", + "pn": -0.138381 + }, + { + "surface": "勃興", + "readging": "ぼっこう", + "pos": "名詞", + "pn": -0.138383 + }, + { + "surface": "山蜂", + "readging": "やまばち", + "pos": "名詞", + "pn": -0.138434 + }, + { + "surface": "併置", + "readging": "へいち", + "pos": "名詞", + "pn": -0.138451 + }, + { + "surface": "雨夜", + "readging": "あまよ", + "pos": "名詞", + "pn": -0.138453 + }, + { + "surface": "お為ごかし", + "readging": "おためごかし", + "pos": "名詞", + "pn": -0.138454 + }, + { + "surface": "サロン", + "readging": "サロン", + "pos": "名詞", + "pn": -0.138516 + }, + { + "surface": "民泊", + "readging": "みんぱく", + "pos": "名詞", + "pn": -0.138523 + }, + { + "surface": "レトリック", + "readging": "レトリック", + "pos": "名詞", + "pn": -0.138532 + }, + { + "surface": "倍する", + "readging": "ばいする", + "pos": "動詞", + "pn": -0.138537 + }, + { + "surface": "マルク", + "readging": "マルク", + "pos": "名詞", + "pn": -0.138562 + }, + { + "surface": "耳順", + "readging": "じじゅん", + "pos": "名詞", + "pn": -0.138566 + }, + { + "surface": "刻苦", + "readging": "こっく", + "pos": "名詞", + "pn": -0.138575 + }, + { + "surface": "公舎", + "readging": "こうしゃ", + "pos": "名詞", + "pn": -0.138586 + }, + { + "surface": "糊する", + "readging": "のりする", + "pos": "動詞", + "pn": -0.138604 + }, + { + "surface": "二言", + "readging": "にごん", + "pos": "名詞", + "pn": -0.138614 + }, + { + "surface": "発頭", + "readging": "ほっとう", + "pos": "名詞", + "pn": -0.138617 + }, + { + "surface": "権臣", + "readging": "けんしん", + "pos": "名詞", + "pn": -0.138634 + }, + { + "surface": "なんぼ", + "readging": "なんぼ", + "pos": "副詞", + "pn": -0.138649 + }, + { + "surface": "茶飲み友達", + "readging": "ちゃのみともだち", + "pos": "名詞", + "pn": -0.138651 + }, + { + "surface": "シェリー酒", + "readging": "シェリーしゅ", + "pos": "名詞", + "pn": -0.138665 + }, + { + "surface": "導関数", + "readging": "どうかんすう", + "pos": "名詞", + "pn": -0.138667 + }, + { + "surface": "テスト", + "readging": "テスト", + "pos": "名詞", + "pn": -0.138678 + }, + { + "surface": "外遊", + "readging": "がいゆう", + "pos": "名詞", + "pn": -0.138678 + }, + { + "surface": "にょきにょき", + "readging": "にょきにょき", + "pos": "副詞", + "pn": -0.138728 + }, + { + "surface": "国務相", + "readging": "こくむしょう", + "pos": "名詞", + "pn": -0.138788 + }, + { + "surface": "単本位", + "readging": "たんほんい", + "pos": "名詞", + "pn": -0.138795 + }, + { + "surface": "体調", + "readging": "たいちょう", + "pos": "名詞", + "pn": -0.138813 + }, + { + "surface": "中日", + "readging": "なかび", + "pos": "名詞", + "pn": -0.138827 + }, + { + "surface": "稿本", + "readging": "こうほん", + "pos": "名詞", + "pn": -0.138827 + }, + { + "surface": "丸見え", + "readging": "まるみえ", + "pos": "名詞", + "pn": -0.138831 + }, + { + "surface": "葉越し", + "readging": "はごし", + "pos": "名詞", + "pn": -0.138833 + }, + { + "surface": "請ずる", + "readging": "しょうずる", + "pos": "動詞", + "pn": -0.138833 + }, + { + "surface": "漏水", + "readging": "ろうすい", + "pos": "名詞", + "pn": -0.138843 + }, + { + "surface": "正史", + "readging": "せいし", + "pos": "名詞", + "pn": -0.138854 + }, + { + "surface": "彫工", + "readging": "ちょうこう", + "pos": "名詞", + "pn": -0.138875 + }, + { + "surface": "奏鳴曲", + "readging": "そうめいきょく", + "pos": "名詞", + "pn": -0.138889 + }, + { + "surface": "苦労人", + "readging": "くろうにん", + "pos": "名詞", + "pn": -0.13889 + }, + { + "surface": "速戦即決", + "readging": "そくせんそっけつ", + "pos": "名詞", + "pn": -0.138891 + }, + { + "surface": "相好", + "readging": "そうごう", + "pos": "名詞", + "pn": -0.138936 + }, + { + "surface": "旅心", + "readging": "たびごころ", + "pos": "名詞", + "pn": -0.138962 + }, + { + "surface": "話し言葉", + "readging": "はなしことば", + "pos": "名詞", + "pn": -0.138962 + }, + { + "surface": "ダイジェスト", + "readging": "ダイジェスト", + "pos": "名詞", + "pn": -0.138965 + }, + { + "surface": "旧主", + "readging": "きゅうしゅ", + "pos": "名詞", + "pn": -0.138966 + }, + { + "surface": "家庭科", + "readging": "かていか", + "pos": "名詞", + "pn": -0.138979 + }, + { + "surface": "万人", + "readging": "ばんにん", + "pos": "名詞", + "pn": -0.138983 + }, + { + "surface": "国文学", + "readging": "こくぶんがく", + "pos": "名詞", + "pn": -0.138998 + }, + { + "surface": "廃材", + "readging": "はいざい", + "pos": "名詞", + "pn": -0.139 + }, + { + "surface": "有史", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.139005 + }, + { + "surface": "インタロゲーションマーク", + "readging": "インタロゲーションマーク", + "pos": "名詞", + "pn": -0.139014 + }, + { + "surface": "艶容", + "readging": "えんよう", + "pos": "名詞", + "pn": -0.139023 + }, + { + "surface": "整容", + "readging": "せいよう", + "pos": "名詞", + "pn": -0.139024 + }, + { + "surface": "ミーリング", + "readging": "ミーリング", + "pos": "名詞", + "pn": -0.139067 + }, + { + "surface": "海亀", + "readging": "うみがめ", + "pos": "名詞", + "pn": -0.139075 + }, + { + "surface": "独航", + "readging": "どっこう", + "pos": "名詞", + "pn": -0.139081 + }, + { + "surface": "消沈", + "readging": "しょうちん", + "pos": "名詞", + "pn": -0.139097 + }, + { + "surface": "消長", + "readging": "しょうちょう", + "pos": "名詞", + "pn": -0.139097 + }, + { + "surface": "式微", + "readging": "しきび", + "pos": "名詞", + "pn": -0.139097 + }, + { + "surface": "定日", + "readging": "ていじつ", + "pos": "名詞", + "pn": -0.139104 + }, + { + "surface": "発煙", + "readging": "はつえん", + "pos": "名詞", + "pn": -0.139113 + }, + { + "surface": "勢い込む", + "readging": "いきおいこむ", + "pos": "動詞", + "pn": -0.139139 + }, + { + "surface": "ブラジャー", + "readging": "ブラジャー", + "pos": "名詞", + "pn": -0.139147 + }, + { + "surface": "今更", + "readging": "いまさら", + "pos": "副詞", + "pn": -0.139152 + }, + { + "surface": "生兵法", + "readging": "なまびょうほう", + "pos": "名詞", + "pn": -0.139163 + }, + { + "surface": "日本紙", + "readging": "にほんし", + "pos": "名詞", + "pn": -0.13919 + }, + { + "surface": "ソシアリズム", + "readging": "ソシアリズム", + "pos": "名詞", + "pn": -0.139191 + }, + { + "surface": "月頃", + "readging": "つきごろ", + "pos": "名詞", + "pn": -0.139229 + }, + { + "surface": "造林", + "readging": "ぞうりん", + "pos": "名詞", + "pn": -0.139232 + }, + { + "surface": "原色", + "readging": "げんしょく", + "pos": "名詞", + "pn": -0.139247 + }, + { + "surface": "共和", + "readging": "きょうわ", + "pos": "名詞", + "pn": -0.139257 + }, + { + "surface": "清音", + "readging": "せいおん", + "pos": "名詞", + "pn": -0.139258 + }, + { + "surface": "折半", + "readging": "せっぱん", + "pos": "名詞", + "pn": -0.139258 + }, + { + "surface": "校了", + "readging": "こうりょう", + "pos": "名詞", + "pn": -0.139307 + }, + { + "surface": "野史", + "readging": "やし", + "pos": "名詞", + "pn": -0.139312 + }, + { + "surface": "寮舎", + "readging": "りょうしゃ", + "pos": "名詞", + "pn": -0.139324 + }, + { + "surface": "すべっこい", + "readging": "すべっこい", + "pos": "形容詞", + "pn": -0.139324 + }, + { + "surface": "昇叙", + "readging": "しょうじょ", + "pos": "名詞", + "pn": -0.139338 + }, + { + "surface": "義母", + "readging": "ぎぼ", + "pos": "名詞", + "pn": -0.139348 + }, + { + "surface": "多照", + "readging": "たしょう", + "pos": "名詞", + "pn": -0.13935 + }, + { + "surface": "複線", + "readging": "ふくせん", + "pos": "名詞", + "pn": -0.13936 + }, + { + "surface": "言古す", + "readging": "いいふるす", + "pos": "動詞", + "pn": -0.139368 + }, + { + "surface": "忍法", + "readging": "にんぽう", + "pos": "名詞", + "pn": -0.139377 + }, + { + "surface": "生産性", + "readging": "せいさんせい", + "pos": "名詞", + "pn": -0.139383 + }, + { + "surface": "コックス", + "readging": "コックス", + "pos": "名詞", + "pn": -0.139392 + }, + { + "surface": "嘸や", + "readging": "さぞや", + "pos": "副詞", + "pn": -0.139394 + }, + { + "surface": "無作為", + "readging": "むさくい", + "pos": "名詞", + "pn": -0.139415 + }, + { + "surface": "暴食", + "readging": "ぼうしょく", + "pos": "名詞", + "pn": -0.139425 + }, + { + "surface": "地誌", + "readging": "ちし", + "pos": "名詞", + "pn": -0.139434 + }, + { + "surface": "従前", + "readging": "じゅうぜん", + "pos": "名詞", + "pn": -0.139451 + }, + { + "surface": "挙用", + "readging": "きょよう", + "pos": "名詞", + "pn": -0.139451 + }, + { + "surface": "草する", + "readging": "そうする", + "pos": "動詞", + "pn": -0.139457 + }, + { + "surface": "便", + "readging": "びん", + "pos": "名詞", + "pn": -0.139459 + }, + { + "surface": "和子", + "readging": "わこ", + "pos": "名詞", + "pn": -0.139461 + }, + { + "surface": "週休", + "readging": "しゅうきゅう", + "pos": "名詞", + "pn": -0.13947 + }, + { + "surface": "俳人", + "readging": "はいじん", + "pos": "名詞", + "pn": -0.139471 + }, + { + "surface": "有償", + "readging": "ゆうしょう", + "pos": "名詞", + "pn": -0.139479 + }, + { + "surface": "活着", + "readging": "かっちゃく", + "pos": "名詞", + "pn": -0.139487 + }, + { + "surface": "院主", + "readging": "いんじゅ", + "pos": "名詞", + "pn": -0.139487 + }, + { + "surface": "針葉樹", + "readging": "しんようじゅ", + "pos": "名詞", + "pn": -0.13949 + }, + { + "surface": "切れ", + "readging": "きれ", + "pos": "名詞", + "pn": -0.139496 + }, + { + "surface": "温床", + "readging": "おんしょう", + "pos": "名詞", + "pn": -0.139518 + }, + { + "surface": "空嘔", + "readging": "からえずき", + "pos": "名詞", + "pn": -0.139531 + }, + { + "surface": "大藩", + "readging": "たいはん", + "pos": "名詞", + "pn": -0.139531 + }, + { + "surface": "牙", + "readging": "が", + "pos": "名詞", + "pn": -0.139533 + }, + { + "surface": "陰祭", + "readging": "かげまつり", + "pos": "名詞", + "pn": -0.139565 + }, + { + "surface": "木彫", + "readging": "きぼり", + "pos": "名詞", + "pn": -0.139566 + }, + { + "surface": "農期", + "readging": "のうき", + "pos": "名詞", + "pn": -0.139575 + }, + { + "surface": "寡欲", + "readging": "かよく", + "pos": "名詞", + "pn": -0.139582 + }, + { + "surface": "而立", + "readging": "じりつ", + "pos": "名詞", + "pn": -0.139582 + }, + { + "surface": "口演", + "readging": "こうえん", + "pos": "名詞", + "pn": -0.139591 + }, + { + "surface": "使僧", + "readging": "しそう", + "pos": "名詞", + "pn": -0.139596 + }, + { + "surface": "社務", + "readging": "しゃむ", + "pos": "名詞", + "pn": -0.139598 + }, + { + "surface": "借換える", + "readging": "かりかえる", + "pos": "動詞", + "pn": -0.139619 + }, + { + "surface": "寂光", + "readging": "じゃっこう", + "pos": "名詞", + "pn": -0.139631 + }, + { + "surface": "旧領", + "readging": "きゅうりょう", + "pos": "名詞", + "pn": -0.139658 + }, + { + "surface": "単機", + "readging": "たんき", + "pos": "名詞", + "pn": -0.13969 + }, + { + "surface": "着初め", + "readging": "きぞめ", + "pos": "名詞", + "pn": -0.139706 + }, + { + "surface": "春雪", + "readging": "しゅんせつ", + "pos": "名詞", + "pn": -0.139719 + }, + { + "surface": "略儀", + "readging": "りゃくぎ", + "pos": "名詞", + "pn": -0.13976 + }, + { + "surface": "酒量", + "readging": "しゅりょう", + "pos": "名詞", + "pn": -0.139784 + }, + { + "surface": "秋月", + "readging": "しゅうげつ", + "pos": "名詞", + "pn": -0.139789 + }, + { + "surface": "事実無根", + "readging": "じじつむこん", + "pos": "名詞", + "pn": -0.139798 + }, + { + "surface": "曲筆", + "readging": "きょくひつ", + "pos": "名詞", + "pn": -0.139814 + }, + { + "surface": "膠化", + "readging": "こうか", + "pos": "名詞", + "pn": -0.139823 + }, + { + "surface": "代議士", + "readging": "だいぎし", + "pos": "名詞", + "pn": -0.139829 + }, + { + "surface": "発露", + "readging": "はつろ", + "pos": "名詞", + "pn": -0.139831 + }, + { + "surface": "安逸", + "readging": "あんいつ", + "pos": "名詞", + "pn": -0.139845 + }, + { + "surface": "立方根", + "readging": "りっぽうこん", + "pos": "名詞", + "pn": -0.139858 + }, + { + "surface": "急使", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.139883 + }, + { + "surface": "内需", + "readging": "ないじゅ", + "pos": "名詞", + "pn": -0.139892 + }, + { + "surface": "造幣", + "readging": "ぞうへい", + "pos": "名詞", + "pn": -0.139903 + }, + { + "surface": "腹案", + "readging": "ふくあん", + "pos": "名詞", + "pn": -0.139915 + }, + { + "surface": "離宮", + "readging": "りきゅう", + "pos": "名詞", + "pn": -0.13992 + }, + { + "surface": "念珠", + "readging": "ねんじゅ", + "pos": "名詞", + "pn": -0.139973 + }, + { + "surface": "四書", + "readging": "ししょ", + "pos": "名詞", + "pn": -0.139981 + }, + { + "surface": "擬態語", + "readging": "ぎたいご", + "pos": "名詞", + "pn": -0.139983 + }, + { + "surface": "総選挙", + "readging": "そうせんきょ", + "pos": "名詞", + "pn": -0.139992 + }, + { + "surface": "聖祭", + "readging": "せいさい", + "pos": "名詞", + "pn": -0.139994 + }, + { + "surface": "草屋根", + "readging": "くさやね", + "pos": "名詞", + "pn": -0.140004 + }, + { + "surface": "消え果てる", + "readging": "きえはてる", + "pos": "動詞", + "pn": -0.140005 + }, + { + "surface": "盗掘", + "readging": "とうくつ", + "pos": "名詞", + "pn": -0.140014 + }, + { + "surface": "お披露目", + "readging": "おひろめ", + "pos": "名詞", + "pn": -0.14002 + }, + { + "surface": "左折", + "readging": "させつ", + "pos": "名詞", + "pn": -0.140033 + }, + { + "surface": "ぽんと", + "readging": "ぽんと", + "pos": "副詞", + "pn": -0.140034 + }, + { + "surface": "豪族", + "readging": "ごうぞく", + "pos": "名詞", + "pn": -0.140055 + }, + { + "surface": "立見", + "readging": "たちみ", + "pos": "名詞", + "pn": -0.140058 + }, + { + "surface": "離任", + "readging": "りにん", + "pos": "名詞", + "pn": -0.140061 + }, + { + "surface": "新体詩", + "readging": "しんたいし", + "pos": "名詞", + "pn": -0.140061 + }, + { + "surface": "雑仕", + "readging": "ぞうし", + "pos": "名詞", + "pn": -0.140065 + }, + { + "surface": "板敷", + "readging": "いたじき", + "pos": "名詞", + "pn": -0.14007 + }, + { + "surface": "平方根", + "readging": "へいほうこん", + "pos": "名詞", + "pn": -0.140082 + }, + { + "surface": "限定版", + "readging": "げんていばん", + "pos": "名詞", + "pn": -0.140085 + }, + { + "surface": "戛然", + "readging": "かつぜん", + "pos": "名詞", + "pn": -0.140118 + }, + { + "surface": "割当", + "readging": "わりあて", + "pos": "名詞", + "pn": -0.140133 + }, + { + "surface": "桂馬", + "readging": "けいま", + "pos": "名詞", + "pn": -0.140139 + }, + { + "surface": "医務", + "readging": "いむ", + "pos": "名詞", + "pn": -0.14014 + }, + { + "surface": "古兵", + "readging": "ふるつわもの", + "pos": "名詞", + "pn": -0.14014 + }, + { + "surface": "手中", + "readging": "しゅちゅう", + "pos": "名詞", + "pn": -0.140154 + }, + { + "surface": "褄先", + "readging": "つまさき", + "pos": "名詞", + "pn": -0.140162 + }, + { + "surface": "同伴者", + "readging": "どうはんしゃ", + "pos": "名詞", + "pn": -0.140165 + }, + { + "surface": "必殺", + "readging": "ひっさつ", + "pos": "名詞", + "pn": -0.140183 + }, + { + "surface": "事理", + "readging": "じり", + "pos": "名詞", + "pn": -0.140186 + }, + { + "surface": "股肱", + "readging": "ここう", + "pos": "名詞", + "pn": -0.140189 + }, + { + "surface": "紙工品", + "readging": "しこうひん", + "pos": "名詞", + "pn": -0.140208 + }, + { + "surface": "国表", + "readging": "くにおもて", + "pos": "名詞", + "pn": -0.140214 + }, + { + "surface": "不急", + "readging": "ふきゅう", + "pos": "名詞", + "pn": -0.140246 + }, + { + "surface": "産土", + "readging": "うぶすな", + "pos": "名詞", + "pn": -0.140247 + }, + { + "surface": "正反合", + "readging": "せいはんごう", + "pos": "名詞", + "pn": -0.140256 + }, + { + "surface": "うん醸", + "readging": "うんじょう", + "pos": "名詞", + "pn": -0.140259 + }, + { + "surface": "冷や冷や", + "readging": "ひやひや", + "pos": "副詞", + "pn": -0.140292 + }, + { + "surface": "未満", + "readging": "みまん", + "pos": "名詞", + "pn": -0.140307 + }, + { + "surface": "派兵", + "readging": "はへい", + "pos": "名詞", + "pn": -0.140328 + }, + { + "surface": "先鋭", + "readging": "せんえい", + "pos": "名詞", + "pn": -0.140355 + }, + { + "surface": "腹違い", + "readging": "はらちがい", + "pos": "名詞", + "pn": -0.140364 + }, + { + "surface": "寺子", + "readging": "てらこ", + "pos": "名詞", + "pn": -0.140366 + }, + { + "surface": "無欲", + "readging": "むよく", + "pos": "名詞", + "pn": -0.140371 + }, + { + "surface": "仮称", + "readging": "かしょう", + "pos": "名詞", + "pn": -0.140399 + }, + { + "surface": "どくどく", + "readging": "どくどく", + "pos": "副詞", + "pn": -0.140412 + }, + { + "surface": "行い澄ます", + "readging": "おこないすます", + "pos": "動詞", + "pn": -0.140417 + }, + { + "surface": "御三家", + "readging": "ごさんけ", + "pos": "名詞", + "pn": -0.140418 + }, + { + "surface": "帰投", + "readging": "きとう", + "pos": "名詞", + "pn": -0.140419 + }, + { + "surface": "棋客", + "readging": "きかく", + "pos": "名詞", + "pn": -0.140449 + }, + { + "surface": "神学校", + "readging": "しんがっこう", + "pos": "名詞", + "pn": -0.140489 + }, + { + "surface": "供米", + "readging": "きょうまい", + "pos": "名詞", + "pn": -0.140531 + }, + { + "surface": "細微", + "readging": "さいび", + "pos": "名詞", + "pn": -0.140532 + }, + { + "surface": "人外境", + "readging": "じんがいきょう", + "pos": "名詞", + "pn": -0.140547 + }, + { + "surface": "頬張る", + "readging": "ほおばる", + "pos": "動詞", + "pn": -0.140574 + }, + { + "surface": "渡海", + "readging": "とかい", + "pos": "名詞", + "pn": -0.140575 + }, + { + "surface": "青史", + "readging": "せいし", + "pos": "名詞", + "pn": -0.140599 + }, + { + "surface": "取払い", + "readging": "とりはらい", + "pos": "名詞", + "pn": -0.140609 + }, + { + "surface": "現行法", + "readging": "げんこうほう", + "pos": "名詞", + "pn": -0.140611 + }, + { + "surface": "小作農", + "readging": "こさくのう", + "pos": "名詞", + "pn": -0.140614 + }, + { + "surface": "史伝", + "readging": "しでん", + "pos": "名詞", + "pn": -0.140632 + }, + { + "surface": "出捐", + "readging": "しゅつえん", + "pos": "名詞", + "pn": -0.140649 + }, + { + "surface": "粗金", + "readging": "あらがね", + "pos": "名詞", + "pn": -0.140682 + }, + { + "surface": "唐本", + "readging": "とうほん", + "pos": "名詞", + "pn": -0.140684 + }, + { + "surface": "大官", + "readging": "たいかん", + "pos": "名詞", + "pn": -0.140738 + }, + { + "surface": "爪先上り", + "readging": "つまさきあがり", + "pos": "名詞", + "pn": -0.140738 + }, + { + "surface": "涙声", + "readging": "なみだごえ", + "pos": "名詞", + "pn": -0.14074 + }, + { + "surface": "考現学", + "readging": "こうげんがく", + "pos": "名詞", + "pn": -0.140786 + }, + { + "surface": "人知", + "readging": "じんち", + "pos": "名詞", + "pn": -0.140789 + }, + { + "surface": "六字の名号", + "readging": "ろくじのみょうごう", + "pos": "名詞", + "pn": -0.140818 + }, + { + "surface": "翻って", + "readging": "ひるがえって", + "pos": "副詞", + "pn": -0.14082 + }, + { + "surface": "参進", + "readging": "さんしん", + "pos": "名詞", + "pn": -0.140856 + }, + { + "surface": "閻魔", + "readging": "えんま", + "pos": "名詞", + "pn": -0.140863 + }, + { + "surface": "国文", + "readging": "こくぶん", + "pos": "名詞", + "pn": -0.140864 + }, + { + "surface": "布衣", + "readging": "ほい", + "pos": "名詞", + "pn": -0.140887 + }, + { + "surface": "戦果", + "readging": "せんか", + "pos": "名詞", + "pn": -0.140908 + }, + { + "surface": "爆風", + "readging": "ばくふう", + "pos": "名詞", + "pn": -0.140912 + }, + { + "surface": "月利", + "readging": "げつり", + "pos": "名詞", + "pn": -0.140923 + }, + { + "surface": "低率", + "readging": "ていりつ", + "pos": "名詞", + "pn": -0.140928 + }, + { + "surface": "日蓮宗", + "readging": "にちれんしゅう", + "pos": "名詞", + "pn": -0.140957 + }, + { + "surface": "予備知識", + "readging": "よびちしき", + "pos": "名詞", + "pn": -0.140957 + }, + { + "surface": "シロホン", + "readging": "シロホン", + "pos": "名詞", + "pn": -0.140971 + }, + { + "surface": "対物", + "readging": "たいぶつ", + "pos": "名詞", + "pn": -0.140977 + }, + { + "surface": "持切る", + "readging": "もちきる", + "pos": "動詞", + "pn": -0.140979 + }, + { + "surface": "GI", + "readging": "ジーアイ", + "pos": "名詞", + "pn": -0.140997 + }, + { + "surface": "民力", + "readging": "みんりょく", + "pos": "名詞", + "pn": -0.141008 + }, + { + "surface": "墜落", + "readging": "ついらく", + "pos": "名詞", + "pn": -0.141026 + }, + { + "surface": "頓首", + "readging": "とんしゅ", + "pos": "名詞", + "pn": -0.141037 + }, + { + "surface": "妹御", + "readging": "いもうとご", + "pos": "名詞", + "pn": -0.141061 + }, + { + "surface": "嫡孫", + "readging": "ちゃくそん", + "pos": "名詞", + "pn": -0.141098 + }, + { + "surface": "折襟", + "readging": "おりえり", + "pos": "名詞", + "pn": -0.141126 + }, + { + "surface": "採用", + "readging": "さいよう", + "pos": "名詞", + "pn": -0.141135 + }, + { + "surface": "臨場感", + "readging": "りんじょうかん", + "pos": "名詞", + "pn": -0.141146 + }, + { + "surface": "足任せ", + "readging": "あしまかせ", + "pos": "名詞", + "pn": -0.141154 + }, + { + "surface": "教程", + "readging": "きょうてい", + "pos": "名詞", + "pn": -0.141163 + }, + { + "surface": "半裸", + "readging": "はんら", + "pos": "名詞", + "pn": -0.141167 + }, + { + "surface": "会下", + "readging": "えげ", + "pos": "名詞", + "pn": -0.141184 + }, + { + "surface": "参看", + "readging": "さんかん", + "pos": "名詞", + "pn": -0.141201 + }, + { + "surface": "俳風", + "readging": "はいふう", + "pos": "名詞", + "pn": -0.141204 + }, + { + "surface": "一堂", + "readging": "いちどう", + "pos": "名詞", + "pn": -0.141236 + }, + { + "surface": "猩猩", + "readging": "しょうじょう", + "pos": "名詞", + "pn": -0.14124 + }, + { + "surface": "造形", + "readging": "ぞうけい", + "pos": "名詞", + "pn": -0.141279 + }, + { + "surface": "個中", + "readging": "こちゅう", + "pos": "名詞", + "pn": -0.141311 + }, + { + "surface": "ハンカチ", + "readging": "ハンカチ", + "pos": "名詞", + "pn": -0.141326 + }, + { + "surface": "奇手", + "readging": "きしゅ", + "pos": "名詞", + "pn": -0.14133 + }, + { + "surface": "人証", + "readging": "じんしょう", + "pos": "名詞", + "pn": -0.141331 + }, + { + "surface": "人気", + "readging": "ひとげ", + "pos": "名詞", + "pn": -0.141334 + }, + { + "surface": "梵字", + "readging": "ぼんじ", + "pos": "名詞", + "pn": -0.141347 + }, + { + "surface": "布衣", + "readging": "ふい", + "pos": "名詞", + "pn": -0.141382 + }, + { + "surface": "官金", + "readging": "かんきん", + "pos": "名詞", + "pn": -0.141388 + }, + { + "surface": "仮想", + "readging": "かそう", + "pos": "名詞", + "pn": -0.141395 + }, + { + "surface": "仮名手本", + "readging": "かなでほん", + "pos": "名詞", + "pn": -0.141404 + }, + { + "surface": "蓋然", + "readging": "がいぜん", + "pos": "名詞", + "pn": -0.141408 + }, + { + "surface": "湯量", + "readging": "ゆりょう", + "pos": "名詞", + "pn": -0.141413 + }, + { + "surface": "恵方参り", + "readging": "えほうまいり", + "pos": "名詞", + "pn": -0.141441 + }, + { + "surface": "舌足らず", + "readging": "したたらず", + "pos": "名詞", + "pn": -0.141444 + }, + { + "surface": "週給", + "readging": "しゅうきゅう", + "pos": "名詞", + "pn": -0.141468 + }, + { + "surface": "偶像", + "readging": "ぐうぞう", + "pos": "名詞", + "pn": -0.141468 + }, + { + "surface": "長追い", + "readging": "ながおい", + "pos": "名詞", + "pn": -0.141509 + }, + { + "surface": "官需", + "readging": "かんじゅ", + "pos": "名詞", + "pn": -0.141534 + }, + { + "surface": "フレンド", + "readging": "フレンド", + "pos": "名詞", + "pn": -0.141571 + }, + { + "surface": "可視", + "readging": "かし", + "pos": "名詞", + "pn": -0.141603 + }, + { + "surface": "減反", + "readging": "げんたん", + "pos": "名詞", + "pn": -0.141604 + }, + { + "surface": "枢密", + "readging": "すうみつ", + "pos": "名詞", + "pn": -0.141615 + }, + { + "surface": "国権", + "readging": "こっけん", + "pos": "名詞", + "pn": -0.141627 + }, + { + "surface": "岩清水", + "readging": "いわしみず", + "pos": "名詞", + "pn": -0.141636 + }, + { + "surface": "経営参加", + "readging": "けいえいさんか", + "pos": "名詞", + "pn": -0.141644 + }, + { + "surface": "警察国家", + "readging": "けいさつこっか", + "pos": "名詞", + "pn": -0.141672 + }, + { + "surface": "什物", + "readging": "じゅうもつ", + "pos": "名詞", + "pn": -0.141672 + }, + { + "surface": "玉音", + "readging": "ぎょくおん", + "pos": "名詞", + "pn": -0.141686 + }, + { + "surface": "醇風", + "readging": "じゅんぷう", + "pos": "名詞", + "pn": -0.141689 + }, + { + "surface": "国史", + "readging": "こくし", + "pos": "名詞", + "pn": -0.141719 + }, + { + "surface": "公刊", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.141724 + }, + { + "surface": "使い先", + "readging": "つかいさき", + "pos": "名詞", + "pn": -0.141729 + }, + { + "surface": "代納", + "readging": "だいのう", + "pos": "名詞", + "pn": -0.141746 + }, + { + "surface": "極冠", + "readging": "きょっかん", + "pos": "名詞", + "pn": -0.141751 + }, + { + "surface": "主命", + "readging": "しゅうめい", + "pos": "名詞", + "pn": -0.141762 + }, + { + "surface": "天壌無窮", + "readging": "てんじょうむきゅう", + "pos": "名詞", + "pn": -0.141779 + }, + { + "surface": "洗顔", + "readging": "せんがん", + "pos": "名詞", + "pn": -0.141802 + }, + { + "surface": "星影", + "readging": "ほしかげ", + "pos": "名詞", + "pn": -0.141805 + }, + { + "surface": "親授", + "readging": "しんじゅ", + "pos": "名詞", + "pn": -0.141836 + }, + { + "surface": "首座", + "readging": "しゅそ", + "pos": "名詞", + "pn": -0.141843 + }, + { + "surface": "得業", + "readging": "とくぎょう", + "pos": "名詞", + "pn": -0.141853 + }, + { + "surface": "繰出す", + "readging": "くりだす", + "pos": "動詞", + "pn": -0.141855 + }, + { + "surface": "黒檀", + "readging": "こくたん", + "pos": "名詞", + "pn": -0.141856 + }, + { + "surface": "商売敵", + "readging": "しょうばいがたき", + "pos": "名詞", + "pn": -0.14186 + }, + { + "surface": "切羽詰る", + "readging": "せっぱつまる", + "pos": "動詞", + "pn": -0.141875 + }, + { + "surface": "本音", + "readging": "ほんね", + "pos": "名詞", + "pn": -0.141893 + }, + { + "surface": "商魂", + "readging": "しょうこん", + "pos": "名詞", + "pn": -0.14191 + }, + { + "surface": "人伝", + "readging": "ひとづて", + "pos": "名詞", + "pn": -0.141927 + }, + { + "surface": "同学", + "readging": "どうがく", + "pos": "名詞", + "pn": -0.141934 + }, + { + "surface": "兄の君", + "readging": "せのきみ", + "pos": "名詞", + "pn": -0.141935 + }, + { + "surface": "畑水練", + "readging": "はたけすいれん", + "pos": "名詞", + "pn": -0.14196 + }, + { + "surface": "飲回す", + "readging": "のみまわす", + "pos": "動詞", + "pn": -0.14196 + }, + { + "surface": "嵩上げ", + "readging": "かさあげ", + "pos": "名詞", + "pn": -0.141967 + }, + { + "surface": "同憂", + "readging": "どうゆう", + "pos": "名詞", + "pn": -0.14199 + }, + { + "surface": "土埃", + "readging": "つちぼこり", + "pos": "名詞", + "pn": -0.142009 + }, + { + "surface": "買込む", + "readging": "かいこむ", + "pos": "動詞", + "pn": -0.142015 + }, + { + "surface": "旭日", + "readging": "きょくじつ", + "pos": "名詞", + "pn": -0.142035 + }, + { + "surface": "放尿", + "readging": "ほうにょう", + "pos": "名詞", + "pn": -0.142036 + }, + { + "surface": "裁上り", + "readging": "たちあがり", + "pos": "名詞", + "pn": -0.142045 + }, + { + "surface": "覇者", + "readging": "はしゃ", + "pos": "名詞", + "pn": -0.142073 + }, + { + "surface": "下女中", + "readging": "しもじょちゅう", + "pos": "名詞", + "pn": -0.142087 + }, + { + "surface": "減配", + "readging": "げんぱい", + "pos": "名詞", + "pn": -0.14214 + }, + { + "surface": "野砲", + "readging": "やほう", + "pos": "名詞", + "pn": -0.142157 + }, + { + "surface": "宿題", + "readging": "しゅくだい", + "pos": "名詞", + "pn": -0.142175 + }, + { + "surface": "未刊", + "readging": "みかん", + "pos": "名詞", + "pn": -0.142194 + }, + { + "surface": "ネクタイ止", + "readging": "ネクタイどめ", + "pos": "名詞", + "pn": -0.142196 + }, + { + "surface": "帰心", + "readging": "きしん", + "pos": "名詞", + "pn": -0.142198 + }, + { + "surface": "りっとう", + "readging": "りっとう", + "pos": "動詞", + "pn": -0.142211 + }, + { + "surface": "造成", + "readging": "ぞうせい", + "pos": "名詞", + "pn": -0.142217 + }, + { + "surface": "初陣", + "readging": "ういじん", + "pos": "名詞", + "pn": -0.142218 + }, + { + "surface": "座右", + "readging": "ざゆう", + "pos": "名詞", + "pn": -0.142236 + }, + { + "surface": "法親王", + "readging": "ほうしんのう", + "pos": "名詞", + "pn": -0.142243 + }, + { + "surface": "地坪", + "readging": "じつぼ", + "pos": "名詞", + "pn": -0.142267 + }, + { + "surface": "炭価", + "readging": "たんか", + "pos": "名詞", + "pn": -0.142269 + }, + { + "surface": "親しみ", + "readging": "したしみ", + "pos": "名詞", + "pn": -0.142271 + }, + { + "surface": "廟議", + "readging": "びょうぎ", + "pos": "名詞", + "pn": -0.142286 + }, + { + "surface": "シリーズ", + "readging": "シリーズ", + "pos": "名詞", + "pn": -0.142299 + }, + { + "surface": "一挙一動", + "readging": "いっきょいちどう", + "pos": "名詞", + "pn": -0.142312 + }, + { + "surface": "高", + "readging": "たか", + "pos": "名詞", + "pn": -0.142334 + }, + { + "surface": "目代", + "readging": "もくだい", + "pos": "名詞", + "pn": -0.14235 + }, + { + "surface": "カントリー クラブ", + "readging": "カントリー クラブ", + "pos": "名詞", + "pn": -0.142365 + }, + { + "surface": "訳解", + "readging": "やくかい", + "pos": "名詞", + "pn": -0.142376 + }, + { + "surface": "恩知らず", + "readging": "おんしらず", + "pos": "名詞", + "pn": -0.142382 + }, + { + "surface": "小前提", + "readging": "しょうぜんてい", + "pos": "名詞", + "pn": -0.142385 + }, + { + "surface": "鉄床雲", + "readging": "かなとこぐも", + "pos": "名詞", + "pn": -0.142411 + }, + { + "surface": "史籍", + "readging": "しせき", + "pos": "名詞", + "pn": -0.142436 + }, + { + "surface": "浩瀚", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.142445 + }, + { + "surface": "万籟", + "readging": "ばんらい", + "pos": "名詞", + "pn": -0.14245 + }, + { + "surface": "丼勘定", + "readging": "どんぶりかんじょう", + "pos": "名詞", + "pn": -0.142466 + }, + { + "surface": "正客", + "readging": "しょうきゃく", + "pos": "名詞", + "pn": -0.142472 + }, + { + "surface": "ナルシシズム", + "readging": "ナルシシズム", + "pos": "名詞", + "pn": -0.142484 + }, + { + "surface": "箱入り娘", + "readging": "はこいりむすめ", + "pos": "名詞", + "pn": -0.142489 + }, + { + "surface": "教職員", + "readging": "きょうしょくいん", + "pos": "名詞", + "pn": -0.14252 + }, + { + "surface": "排球", + "readging": "はいきゅう", + "pos": "名詞", + "pn": -0.142534 + }, + { + "surface": "七不思議", + "readging": "ななふしぎ", + "pos": "名詞", + "pn": -0.142541 + }, + { + "surface": "角形", + "readging": "かくがた", + "pos": "名詞", + "pn": -0.142547 + }, + { + "surface": "禁絶", + "readging": "きんぜつ", + "pos": "名詞", + "pn": -0.142556 + }, + { + "surface": "土突き", + "readging": "どづき", + "pos": "名詞", + "pn": -0.142568 + }, + { + "surface": "耳学問", + "readging": "みみがくもん", + "pos": "名詞", + "pn": -0.142573 + }, + { + "surface": "幣制", + "readging": "へいせい", + "pos": "名詞", + "pn": -0.142574 + }, + { + "surface": "インストラクター", + "readging": "インストラクター", + "pos": "名詞", + "pn": -0.142582 + }, + { + "surface": "物学び", + "readging": "ものまなび", + "pos": "名詞", + "pn": -0.142584 + }, + { + "surface": "御料林", + "readging": "ごりょうりん", + "pos": "名詞", + "pn": -0.142593 + }, + { + "surface": "国賓", + "readging": "こくひん", + "pos": "名詞", + "pn": -0.142596 + }, + { + "surface": "大義", + "readging": "たいぎ", + "pos": "名詞", + "pn": -0.142604 + }, + { + "surface": "来寇", + "readging": "らいこう", + "pos": "名詞", + "pn": -0.142615 + }, + { + "surface": "外商", + "readging": "がいしょう", + "pos": "名詞", + "pn": -0.142615 + }, + { + "surface": "甚だ", + "readging": "はなはだ", + "pos": "副詞", + "pn": -0.142632 + }, + { + "surface": "公言", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.142657 + }, + { + "surface": "供用", + "readging": "きょうよう", + "pos": "名詞", + "pn": -0.142692 + }, + { + "surface": "内意", + "readging": "ないい", + "pos": "名詞", + "pn": -0.142695 + }, + { + "surface": "折重なる", + "readging": "おりかさなる", + "pos": "動詞", + "pn": -0.142733 + }, + { + "surface": "縦断", + "readging": "じゅうだん", + "pos": "名詞", + "pn": -0.142742 + }, + { + "surface": "審美", + "readging": "しんび", + "pos": "名詞", + "pn": -0.14276 + }, + { + "surface": "空母", + "readging": "くうぼ", + "pos": "名詞", + "pn": -0.14276 + }, + { + "surface": "武弁", + "readging": "ぶべん", + "pos": "名詞", + "pn": -0.14278 + }, + { + "surface": "喜歌劇", + "readging": "きかげき", + "pos": "名詞", + "pn": -0.142782 + }, + { + "surface": "兄貴", + "readging": "あにき", + "pos": "名詞", + "pn": -0.142792 + }, + { + "surface": "高校", + "readging": "こうこう", + "pos": "名詞", + "pn": -0.142793 + }, + { + "surface": "論定", + "readging": "ろんてい", + "pos": "名詞", + "pn": -0.142838 + }, + { + "surface": "雄藩", + "readging": "ゆうはん", + "pos": "名詞", + "pn": -0.142844 + }, + { + "surface": "てぐすね", + "readging": "てぐすね", + "pos": "名詞", + "pn": -0.142848 + }, + { + "surface": "第一印象", + "readging": "だいいちいんしょう", + "pos": "名詞", + "pn": -0.142867 + }, + { + "surface": "破船", + "readging": "はせん", + "pos": "名詞", + "pn": -0.142887 + }, + { + "surface": "同系", + "readging": "どうけい", + "pos": "名詞", + "pn": -0.142895 + }, + { + "surface": "自刃", + "readging": "じじん", + "pos": "名詞", + "pn": -0.142897 + }, + { + "surface": "大門", + "readging": "おおもん", + "pos": "名詞", + "pn": -0.142919 + }, + { + "surface": "無籍", + "readging": "むせき", + "pos": "名詞", + "pn": -0.142942 + }, + { + "surface": "打電", + "readging": "だでん", + "pos": "名詞", + "pn": -0.142947 + }, + { + "surface": "鍋底景気", + "readging": "なべぞこけいき", + "pos": "名詞", + "pn": -0.142958 + }, + { + "surface": "邦家", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.142987 + }, + { + "surface": "大して", + "readging": "たいして", + "pos": "副詞", + "pn": -0.143023 + }, + { + "surface": "妓女", + "readging": "ぎじょ", + "pos": "名詞", + "pn": -0.143036 + }, + { + "surface": "村童", + "readging": "そんどう", + "pos": "名詞", + "pn": -0.143052 + }, + { + "surface": "御真影", + "readging": "ごしんえい", + "pos": "名詞", + "pn": -0.143057 + }, + { + "surface": "税政", + "readging": "ぜいせい", + "pos": "名詞", + "pn": -0.143058 + }, + { + "surface": "無趣味", + "readging": "むしゅみ", + "pos": "名詞", + "pn": -0.143066 + }, + { + "surface": "燕", + "readging": "つばくらめ", + "pos": "名詞", + "pn": -0.143068 + }, + { + "surface": "先山", + "readging": "さきやま", + "pos": "名詞", + "pn": -0.143098 + }, + { + "surface": "始動", + "readging": "しどう", + "pos": "名詞", + "pn": -0.143102 + }, + { + "surface": "如上", + "readging": "じょじょう", + "pos": "名詞", + "pn": -0.143104 + }, + { + "surface": "夜中", + "readging": "よなか", + "pos": "名詞", + "pn": -0.143117 + }, + { + "surface": "帝王", + "readging": "ていおう", + "pos": "名詞", + "pn": -0.143126 + }, + { + "surface": "政敵", + "readging": "せいてき", + "pos": "名詞", + "pn": -0.143141 + }, + { + "surface": "春", + "readging": "しゅん", + "pos": "名詞", + "pn": -0.143152 + }, + { + "surface": "売文", + "readging": "ばいぶん", + "pos": "名詞", + "pn": -0.14317 + }, + { + "surface": "狂おしい", + "readging": "くるおしい", + "pos": "形容詞", + "pn": -0.143181 + }, + { + "surface": "夫妻", + "readging": "ふさい", + "pos": "名詞", + "pn": -0.143187 + }, + { + "surface": "締結", + "readging": "ていけつ", + "pos": "名詞", + "pn": -0.143199 + }, + { + "surface": "造酒", + "readging": "ぞうしゅ", + "pos": "名詞", + "pn": -0.143228 + }, + { + "surface": "花盛り", + "readging": "はなざかり", + "pos": "名詞", + "pn": -0.143243 + }, + { + "surface": "サイエンス", + "readging": "サイエンス", + "pos": "名詞", + "pn": -0.143254 + }, + { + "surface": "煽て", + "readging": "おだて", + "pos": "名詞", + "pn": -0.143259 + }, + { + "surface": "国会議事堂", + "readging": "こっかいぎじどう", + "pos": "名詞", + "pn": -0.143282 + }, + { + "surface": "逸文", + "readging": "いつぶん", + "pos": "名詞", + "pn": -0.14329 + }, + { + "surface": "献身", + "readging": "けんしん", + "pos": "名詞", + "pn": -0.143305 + }, + { + "surface": "中元", + "readging": "ちゅうげん", + "pos": "名詞", + "pn": -0.143305 + }, + { + "surface": "竜顔", + "readging": "りゅうがん", + "pos": "名詞", + "pn": -0.143329 + }, + { + "surface": "土建", + "readging": "どけん", + "pos": "名詞", + "pn": -0.143344 + }, + { + "surface": "士道", + "readging": "しどう", + "pos": "名詞", + "pn": -0.143365 + }, + { + "surface": "紅粉", + "readging": "べにこ", + "pos": "名詞", + "pn": -0.143369 + }, + { + "surface": "私産", + "readging": "しさん", + "pos": "名詞", + "pn": -0.14337 + }, + { + "surface": "自画像", + "readging": "じがぞう", + "pos": "名詞", + "pn": -0.143377 + }, + { + "surface": "訳載", + "readging": "やくさい", + "pos": "名詞", + "pn": -0.143387 + }, + { + "surface": "士族", + "readging": "しぞく", + "pos": "名詞", + "pn": -0.143411 + }, + { + "surface": "認知", + "readging": "にんち", + "pos": "名詞", + "pn": -0.143435 + }, + { + "surface": "晴着", + "readging": "はれぎ", + "pos": "名詞", + "pn": -0.143452 + }, + { + "surface": "劇詩", + "readging": "げきし", + "pos": "名詞", + "pn": -0.143455 + }, + { + "surface": "駄目押し", + "readging": "だめおし", + "pos": "名詞", + "pn": -0.143469 + }, + { + "surface": "沖する", + "readging": "ちゅうする", + "pos": "動詞", + "pn": -0.143472 + }, + { + "surface": "第六感", + "readging": "だいろっかん", + "pos": "名詞", + "pn": -0.14348 + }, + { + "surface": "増反", + "readging": "ぞうたん", + "pos": "名詞", + "pn": -0.143499 + }, + { + "surface": "全数", + "readging": "ぜんすう", + "pos": "名詞", + "pn": -0.143501 + }, + { + "surface": "甘言", + "readging": "かんげん", + "pos": "名詞", + "pn": -0.143503 + }, + { + "surface": "霊像", + "readging": "れいぞう", + "pos": "名詞", + "pn": -0.143505 + }, + { + "surface": "浮ぶ瀬", + "readging": "うかぶせ", + "pos": "名詞", + "pn": -0.143511 + }, + { + "surface": "記録映画", + "readging": "きろくえいが", + "pos": "名詞", + "pn": -0.143528 + }, + { + "surface": "局地", + "readging": "きょくち", + "pos": "名詞", + "pn": -0.143554 + }, + { + "surface": "皇軍", + "readging": "こうぐん", + "pos": "名詞", + "pn": -0.143563 + }, + { + "surface": "帰去来", + "readging": "ききょらい", + "pos": "名詞", + "pn": -0.143598 + }, + { + "surface": "太夫元", + "readging": "たゆう", + "pos": "名詞", + "pn": -0.143602 + }, + { + "surface": "諸家", + "readging": "しょか", + "pos": "名詞", + "pn": -0.143614 + }, + { + "surface": "っこ", + "readging": "っこ", + "pos": "名詞", + "pn": -0.143616 + }, + { + "surface": "一元", + "readging": "いちげん", + "pos": "名詞", + "pn": -0.14362 + }, + { + "surface": "酔眼", + "readging": "すいがん", + "pos": "名詞", + "pn": -0.143629 + }, + { + "surface": "姑", + "readging": "しゅうとめ", + "pos": "名詞", + "pn": -0.143631 + }, + { + "surface": "参府", + "readging": "さんぷ", + "pos": "名詞", + "pn": -0.143632 + }, + { + "surface": "此の上", + "readging": "このうえ", + "pos": "名詞", + "pn": -0.143643 + }, + { + "surface": "金星", + "readging": "きんぼし", + "pos": "名詞", + "pn": -0.143646 + }, + { + "surface": "律師", + "readging": "りっし", + "pos": "名詞", + "pn": -0.143654 + }, + { + "surface": "ロハ台", + "readging": "ロハだい", + "pos": "名詞", + "pn": -0.143667 + }, + { + "surface": "長音符", + "readging": "ちょうおんぷ", + "pos": "名詞", + "pn": -0.143687 + }, + { + "surface": "染井吉野", + "readging": "そめいよしの", + "pos": "名詞", + "pn": -0.143696 + }, + { + "surface": "佇まい", + "readging": "たたずまい", + "pos": "名詞", + "pn": -0.1437 + }, + { + "surface": "立板", + "readging": "たていた", + "pos": "名詞", + "pn": -0.143701 + }, + { + "surface": "駐在所", + "readging": "ちゅうざいしょ", + "pos": "名詞", + "pn": -0.143707 + }, + { + "surface": "植物質", + "readging": "しょくぶつしつ", + "pos": "名詞", + "pn": -0.143708 + }, + { + "surface": "ポーカー", + "readging": "ポーカー", + "pos": "名詞", + "pn": -0.143718 + }, + { + "surface": "窯元", + "readging": "かまもと", + "pos": "名詞", + "pn": -0.143727 + }, + { + "surface": "常世", + "readging": "とこよ", + "pos": "名詞", + "pn": -0.143729 + }, + { + "surface": "要具", + "readging": "ようぐ", + "pos": "名詞", + "pn": -0.143742 + }, + { + "surface": "遺業", + "readging": "いぎょう", + "pos": "名詞", + "pn": -0.143752 + }, + { + "surface": "句論", + "readging": "くろん", + "pos": "名詞", + "pn": -0.14378 + }, + { + "surface": "二重", + "readging": "ふたえ", + "pos": "名詞", + "pn": -0.143782 + }, + { + "surface": "横波", + "readging": "よこなみ", + "pos": "名詞", + "pn": -0.143795 + }, + { + "surface": "茶菓", + "readging": "さか", + "pos": "名詞", + "pn": -0.143819 + }, + { + "surface": "藍本", + "readging": "らんぽん", + "pos": "名詞", + "pn": -0.14383 + }, + { + "surface": "符節", + "readging": "ふせつ", + "pos": "名詞", + "pn": -0.143852 + }, + { + "surface": "端", + "readging": "はし", + "pos": "名詞", + "pn": -0.143856 + }, + { + "surface": "白玉楼", + "readging": "はくぎょくろう", + "pos": "名詞", + "pn": -0.143876 + }, + { + "surface": "スポーツマン", + "readging": "スポーツマン", + "pos": "名詞", + "pn": -0.14389 + }, + { + "surface": "宗規", + "readging": "しゅうき", + "pos": "名詞", + "pn": -0.143899 + }, + { + "surface": "昨夏", + "readging": "さくか", + "pos": "名詞", + "pn": -0.143899 + }, + { + "surface": "礼電", + "readging": "れいでん", + "pos": "名詞", + "pn": -0.143905 + }, + { + "surface": "ヴァイラス", + "readging": "ヴァイラス", + "pos": "名詞", + "pn": -0.14393 + }, + { + "surface": "宿根", + "readging": "しゅくこん", + "pos": "名詞", + "pn": -0.143942 + }, + { + "surface": "他力宗", + "readging": "たりきしゅう", + "pos": "名詞", + "pn": -0.143949 + }, + { + "surface": "ココ椰子", + "readging": "ココやし", + "pos": "名詞", + "pn": -0.143961 + }, + { + "surface": "国会議員", + "readging": "こっかいぎいん", + "pos": "名詞", + "pn": -0.143963 + }, + { + "surface": "題意", + "readging": "だいい", + "pos": "名詞", + "pn": -0.143963 + }, + { + "surface": "自治体", + "readging": "じちたい", + "pos": "名詞", + "pn": -0.143964 + }, + { + "surface": "令弟", + "readging": "れいてい", + "pos": "名詞", + "pn": -0.143984 + }, + { + "surface": "図説", + "readging": "ずせつ", + "pos": "名詞", + "pn": -0.143998 + }, + { + "surface": "付注", + "readging": "ふちゅう", + "pos": "名詞", + "pn": -0.144006 + }, + { + "surface": "婦長", + "readging": "ふちょう", + "pos": "名詞", + "pn": -0.144033 + }, + { + "surface": "講究", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.144056 + }, + { + "surface": "念じる", + "readging": "ねんじる", + "pos": "動詞", + "pn": -0.144072 + }, + { + "surface": "霊力", + "readging": "れいりょく", + "pos": "名詞", + "pn": -0.144074 + }, + { + "surface": "かけっこ", + "readging": "かけっこ", + "pos": "名詞", + "pn": -0.144078 + }, + { + "surface": "日産", + "readging": "にっさん", + "pos": "名詞", + "pn": -0.14409 + }, + { + "surface": "両朝", + "readging": "りょうちょう", + "pos": "名詞", + "pn": -0.144099 + }, + { + "surface": "セーブ", + "readging": "セーブ", + "pos": "名詞", + "pn": -0.144139 + }, + { + "surface": "転帰", + "readging": "てんき", + "pos": "名詞", + "pn": -0.144153 + }, + { + "surface": "帰洛", + "readging": "きらく", + "pos": "名詞", + "pn": -0.144161 + }, + { + "surface": "進講", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.144164 + }, + { + "surface": "換算", + "readging": "かんさん", + "pos": "名詞", + "pn": -0.144166 + }, + { + "surface": "後世", + "readging": "こうせい", + "pos": "名詞", + "pn": -0.144176 + }, + { + "surface": "局限", + "readging": "きょくげん", + "pos": "名詞", + "pn": -0.144178 + }, + { + "surface": "雨域", + "readging": "ういき", + "pos": "名詞", + "pn": -0.144178 + }, + { + "surface": "下情", + "readging": "かじょう", + "pos": "名詞", + "pn": -0.144224 + }, + { + "surface": "曲譜", + "readging": "きょくふ", + "pos": "名詞", + "pn": -0.144258 + }, + { + "surface": "累月", + "readging": "るいげつ", + "pos": "名詞", + "pn": -0.144261 + }, + { + "surface": "専修", + "readging": "せんしゅう", + "pos": "名詞", + "pn": -0.144263 + }, + { + "surface": "SST", + "readging": "エスエスティー", + "pos": "名詞", + "pn": -0.144294 + }, + { + "surface": "門出", + "readging": "かどで", + "pos": "名詞", + "pn": -0.144322 + }, + { + "surface": "拘束時間", + "readging": "こうそくじかん", + "pos": "名詞", + "pn": -0.144327 + }, + { + "surface": "機微", + "readging": "きび", + "pos": "名詞", + "pn": -0.144351 + }, + { + "surface": "人任せ", + "readging": "ひとまかせ", + "pos": "名詞", + "pn": -0.144367 + }, + { + "surface": "盲導犬", + "readging": "もうどうけん", + "pos": "名詞", + "pn": -0.144387 + }, + { + "surface": "攻懸ける", + "readging": "せめかける", + "pos": "動詞", + "pn": -0.144391 + }, + { + "surface": "国際色", + "readging": "こくさいしょく", + "pos": "名詞", + "pn": -0.144391 + }, + { + "surface": "頂", + "readging": "いただき", + "pos": "名詞", + "pn": -0.14441 + }, + { + "surface": "法門", + "readging": "ほうもん", + "pos": "名詞", + "pn": -0.144422 + }, + { + "surface": "短夜", + "readging": "みじかよ", + "pos": "名詞", + "pn": -0.144439 + }, + { + "surface": "シンボリズム", + "readging": "シンボリズム", + "pos": "名詞", + "pn": -0.144457 + }, + { + "surface": "国老", + "readging": "こくろう", + "pos": "名詞", + "pn": -0.14447 + }, + { + "surface": "グルデン", + "readging": "グルデン", + "pos": "名詞", + "pn": -0.1445 + }, + { + "surface": "幕吏", + "readging": "ばくり", + "pos": "名詞", + "pn": -0.144508 + }, + { + "surface": "頻度", + "readging": "ひんど", + "pos": "名詞", + "pn": -0.144509 + }, + { + "surface": "心因", + "readging": "しんいん", + "pos": "名詞", + "pn": -0.144517 + }, + { + "surface": "払い込む", + "readging": "はらいこむ", + "pos": "動詞", + "pn": -0.144521 + }, + { + "surface": "上白", + "readging": "じょうはく", + "pos": "名詞", + "pn": -0.144525 + }, + { + "surface": "止す", + "readging": "よす", + "pos": "動詞", + "pn": -0.144532 + }, + { + "surface": "林立", + "readging": "りんりつ", + "pos": "名詞", + "pn": -0.14455 + }, + { + "surface": "地付き", + "readging": "じつき", + "pos": "名詞", + "pn": -0.144569 + }, + { + "surface": "王法", + "readging": "おうほう", + "pos": "名詞", + "pn": -0.144612 + }, + { + "surface": "転移", + "readging": "てんい", + "pos": "名詞", + "pn": -0.144623 + }, + { + "surface": "落馬", + "readging": "らくば", + "pos": "名詞", + "pn": -0.144633 + }, + { + "surface": "川猟", + "readging": "かわりょう", + "pos": "名詞", + "pn": -0.144649 + }, + { + "surface": "掛り付け", + "readging": "かかりつけ", + "pos": "名詞", + "pn": -0.144653 + }, + { + "surface": "帰朝", + "readging": "きちょう", + "pos": "名詞", + "pn": -0.144673 + }, + { + "surface": "胤", + "readging": "いん", + "pos": "名詞", + "pn": -0.144679 + }, + { + "surface": "玉歩", + "readging": "ぎょくほ", + "pos": "名詞", + "pn": -0.14469 + }, + { + "surface": "着こなす", + "readging": "きこなす", + "pos": "動詞", + "pn": -0.144691 + }, + { + "surface": "配給", + "readging": "はいきゅう", + "pos": "名詞", + "pn": -0.1447 + }, + { + "surface": "転校", + "readging": "てんこう", + "pos": "名詞", + "pn": -0.144733 + }, + { + "surface": "無定見", + "readging": "むていけん", + "pos": "名詞", + "pn": -0.144749 + }, + { + "surface": "兼備", + "readging": "けんび", + "pos": "名詞", + "pn": -0.144771 + }, + { + "surface": "赤提灯", + "readging": "あかぢょうちん", + "pos": "名詞", + "pn": -0.144787 + }, + { + "surface": "帰郷", + "readging": "ききょう", + "pos": "名詞", + "pn": -0.144791 + }, + { + "surface": "落涙", + "readging": "らくるい", + "pos": "名詞", + "pn": -0.144868 + }, + { + "surface": "下僚", + "readging": "かりょう", + "pos": "名詞", + "pn": -0.144871 + }, + { + "surface": "念の為", + "readging": "ねんのため", + "pos": "名詞", + "pn": -0.144873 + }, + { + "surface": "ブロイラー", + "readging": "ブロイラー", + "pos": "名詞", + "pn": -0.14488 + }, + { + "surface": "家運", + "readging": "かうん", + "pos": "名詞", + "pn": -0.144887 + }, + { + "surface": "公法人", + "readging": "こうほうじん", + "pos": "名詞", + "pn": -0.144913 + }, + { + "surface": "塔", + "readging": "あららぎ", + "pos": "名詞", + "pn": -0.14492 + }, + { + "surface": "転写", + "readging": "てんしゃ", + "pos": "名詞", + "pn": -0.144934 + }, + { + "surface": "金属性", + "readging": "きんぞくせい", + "pos": "名詞", + "pn": -0.14494 + }, + { + "surface": "チャンピオン", + "readging": "チャンピオン", + "pos": "名詞", + "pn": -0.144946 + }, + { + "surface": "書留", + "readging": "かきとめ", + "pos": "名詞", + "pn": -0.144953 + }, + { + "surface": "一面観", + "readging": "いちめんかん", + "pos": "名詞", + "pn": -0.144953 + }, + { + "surface": "不妊", + "readging": "ふにん", + "pos": "名詞", + "pn": -0.144967 + }, + { + "surface": "靴音", + "readging": "くつおと", + "pos": "名詞", + "pn": -0.144973 + }, + { + "surface": "物色", + "readging": "ぶっしょく", + "pos": "名詞", + "pn": -0.144979 + }, + { + "surface": "思わせ振り", + "readging": "おもわせぶり", + "pos": "名詞", + "pn": -0.145009 + }, + { + "surface": "教示", + "readging": "きょうじ", + "pos": "名詞", + "pn": -0.145022 + }, + { + "surface": "印象派", + "readging": "いんしょうは", + "pos": "名詞", + "pn": -0.145037 + }, + { + "surface": "コミッショナー", + "readging": "コミッショナー", + "pos": "名詞", + "pn": -0.145082 + }, + { + "surface": "臣事", + "readging": "しんじ", + "pos": "名詞", + "pn": -0.145085 + }, + { + "surface": "売名", + "readging": "ばいめい", + "pos": "名詞", + "pn": -0.145115 + }, + { + "surface": "馬鹿囃子", + "readging": "ばかばやし", + "pos": "名詞", + "pn": -0.145118 + }, + { + "surface": "先手", + "readging": "さきて", + "pos": "名詞", + "pn": -0.145118 + }, + { + "surface": "喪心", + "readging": "そうしん", + "pos": "名詞", + "pn": -0.145122 + }, + { + "surface": "無限大", + "readging": "むげんだい", + "pos": "名詞", + "pn": -0.145134 + }, + { + "surface": "短檠", + "readging": "たんけい", + "pos": "名詞", + "pn": -0.145143 + }, + { + "surface": "神馬", + "readging": "しんめ", + "pos": "名詞", + "pn": -0.145186 + }, + { + "surface": "挙兵", + "readging": "きょへい", + "pos": "名詞", + "pn": -0.145207 + }, + { + "surface": "手稿", + "readging": "しゅこう", + "pos": "名詞", + "pn": -0.145208 + }, + { + "surface": "古人", + "readging": "こじん", + "pos": "名詞", + "pn": -0.145244 + }, + { + "surface": "定式", + "readging": "ていしき", + "pos": "名詞", + "pn": -0.14525 + }, + { + "surface": "むらむら", + "readging": "むらむら", + "pos": "副詞", + "pn": -0.145283 + }, + { + "surface": "特約", + "readging": "とくやく", + "pos": "名詞", + "pn": -0.145305 + }, + { + "surface": "馬尾", + "readging": "す", + "pos": "名詞", + "pn": -0.145317 + }, + { + "surface": "一命", + "readging": "いちめい", + "pos": "名詞", + "pn": -0.145329 + }, + { + "surface": "美醜", + "readging": "びしゅう", + "pos": "名詞", + "pn": -0.145334 + }, + { + "surface": "一年忌", + "readging": "いちねんき", + "pos": "名詞", + "pn": -0.145336 + }, + { + "surface": "幼顔", + "readging": "おさながお", + "pos": "名詞", + "pn": -0.145336 + }, + { + "surface": "太鼓判", + "readging": "たいこばん", + "pos": "名詞", + "pn": -0.145338 + }, + { + "surface": "縦貫", + "readging": "じゅうかん", + "pos": "名詞", + "pn": -0.145353 + }, + { + "surface": "顕官", + "readging": "けんかん", + "pos": "名詞", + "pn": -0.145385 + }, + { + "surface": "正編", + "readging": "せいへん", + "pos": "名詞", + "pn": -0.145412 + }, + { + "surface": "露呈", + "readging": "ろてい", + "pos": "名詞", + "pn": -0.14543 + }, + { + "surface": "諸姉", + "readging": "しょし", + "pos": "名詞", + "pn": -0.14546 + }, + { + "surface": "防熱", + "readging": "ぼうねつ", + "pos": "名詞", + "pn": -0.145482 + }, + { + "surface": "多芸", + "readging": "たげい", + "pos": "名詞", + "pn": -0.145482 + }, + { + "surface": "根雪", + "readging": "ねゆき", + "pos": "名詞", + "pn": -0.145531 + }, + { + "surface": "査問", + "readging": "さもん", + "pos": "名詞", + "pn": -0.145533 + }, + { + "surface": "継父母", + "readging": "けいふぼ", + "pos": "名詞", + "pn": -0.145544 + }, + { + "surface": "死火山", + "readging": "しかざん", + "pos": "名詞", + "pn": -0.145548 + }, + { + "surface": "類歌", + "readging": "るいか", + "pos": "名詞", + "pn": -0.145566 + }, + { + "surface": "雪男", + "readging": "ゆきおとこ", + "pos": "名詞", + "pn": -0.145577 + }, + { + "surface": "七日", + "readging": "なのか", + "pos": "名詞", + "pn": -0.145586 + }, + { + "surface": "太刀", + "readging": "たちうち", + "pos": "名詞", + "pn": -0.145596 + }, + { + "surface": "東遊", + "readging": "あずまあそび", + "pos": "名詞", + "pn": -0.145627 + }, + { + "surface": "策定", + "readging": "さくてい", + "pos": "名詞", + "pn": -0.145628 + }, + { + "surface": "現況", + "readging": "げんきょう", + "pos": "名詞", + "pn": -0.145628 + }, + { + "surface": "詩体", + "readging": "したい", + "pos": "名詞", + "pn": -0.145644 + }, + { + "surface": "アプリケーション", + "readging": "アプリケーション", + "pos": "名詞", + "pn": -0.145644 + }, + { + "surface": "ジョギング", + "readging": "ジョギング", + "pos": "名詞", + "pn": -0.145687 + }, + { + "surface": "大衆", + "readging": "だいしゅ", + "pos": "名詞", + "pn": -0.145691 + }, + { + "surface": "少食", + "readging": "しょうしょく", + "pos": "名詞", + "pn": -0.145723 + }, + { + "surface": "沖積世", + "readging": "ちゅうせきせい", + "pos": "名詞", + "pn": -0.145725 + }, + { + "surface": "旧版", + "readging": "きゅうはん", + "pos": "名詞", + "pn": -0.145763 + }, + { + "surface": "川瀬", + "readging": "かわせ", + "pos": "名詞", + "pn": -0.145781 + }, + { + "surface": "内閲", + "readging": "ないえつ", + "pos": "名詞", + "pn": -0.1458 + }, + { + "surface": "ユーモリスト", + "readging": "ユーモリスト", + "pos": "名詞", + "pn": -0.145804 + }, + { + "surface": "等温", + "readging": "とうおん", + "pos": "名詞", + "pn": -0.145809 + }, + { + "surface": "放逐", + "readging": "ほうちく", + "pos": "名詞", + "pn": -0.145828 + }, + { + "surface": "始末屋", + "readging": "しまつや", + "pos": "名詞", + "pn": -0.14584 + }, + { + "surface": "一眸", + "readging": "いちぼう", + "pos": "名詞", + "pn": -0.145842 + }, + { + "surface": "前後不覚", + "readging": "ぜんごふかく", + "pos": "名詞", + "pn": -0.145844 + }, + { + "surface": "熟柿", + "readging": "じゅくし", + "pos": "名詞", + "pn": -0.145845 + }, + { + "surface": "胡座鼻", + "readging": "あぐらばな", + "pos": "名詞", + "pn": -0.145847 + }, + { + "surface": "経口", + "readging": "けいこう", + "pos": "名詞", + "pn": -0.145855 + }, + { + "surface": "上界", + "readging": "じょうかい", + "pos": "名詞", + "pn": -0.145878 + }, + { + "surface": "飲みで", + "readging": "のみで", + "pos": "名詞", + "pn": -0.145886 + }, + { + "surface": "通覧", + "readging": "つうらん", + "pos": "名詞", + "pn": -0.145891 + }, + { + "surface": "熱性", + "readging": "ねっせい", + "pos": "名詞", + "pn": -0.145892 + }, + { + "surface": "コンビ", + "readging": "コンビ", + "pos": "名詞", + "pn": -0.145898 + }, + { + "surface": "空地", + "readging": "あきち", + "pos": "名詞", + "pn": -0.145903 + }, + { + "surface": "ア ラ カルト", + "readging": "ア ラ カルト", + "pos": "名詞", + "pn": -0.145927 + }, + { + "surface": "大衆性", + "readging": "たいしゅうせい", + "pos": "名詞", + "pn": -0.145957 + }, + { + "surface": "観法", + "readging": "かんぽう", + "pos": "名詞", + "pn": -0.145985 + }, + { + "surface": "購買", + "readging": "こうばい", + "pos": "名詞", + "pn": -0.146002 + }, + { + "surface": "討幕", + "readging": "とうばく", + "pos": "名詞", + "pn": -0.146008 + }, + { + "surface": "会館", + "readging": "かいかん", + "pos": "名詞", + "pn": -0.146013 + }, + { + "surface": "実技", + "readging": "じつぎ", + "pos": "名詞", + "pn": -0.146021 + }, + { + "surface": "彼岸会", + "readging": "ひがんえ", + "pos": "名詞", + "pn": -0.146024 + }, + { + "surface": "取上げ婆", + "readging": "とりあげばば", + "pos": "名詞", + "pn": -0.146031 + }, + { + "surface": "旧遊", + "readging": "きゅうゆう", + "pos": "名詞", + "pn": -0.146034 + }, + { + "surface": "ゆくりなく", + "readging": "ゆくりなく", + "pos": "副詞", + "pn": -0.14607 + }, + { + "surface": "千石船", + "readging": "せんごくぶね", + "pos": "名詞", + "pn": -0.146074 + }, + { + "surface": "割切る", + "readging": "わりきる", + "pos": "動詞", + "pn": -0.14608 + }, + { + "surface": "見知り", + "readging": "みしり", + "pos": "名詞", + "pn": -0.146087 + }, + { + "surface": "利害関係", + "readging": "りがいかんけい", + "pos": "名詞", + "pn": -0.146094 + }, + { + "surface": "便益", + "readging": "べんえき", + "pos": "名詞", + "pn": -0.146097 + }, + { + "surface": "投降", + "readging": "とうこう", + "pos": "名詞", + "pn": -0.146101 + }, + { + "surface": "常会", + "readging": "じょうかい", + "pos": "名詞", + "pn": -0.146101 + }, + { + "surface": "三権", + "readging": "さんけん", + "pos": "名詞", + "pn": -0.146105 + }, + { + "surface": "蕗の薹", + "readging": "ふきのとう", + "pos": "名詞", + "pn": -0.146111 + }, + { + "surface": "題字", + "readging": "だいじ", + "pos": "名詞", + "pn": -0.146122 + }, + { + "surface": "バリカン", + "readging": "バリカン", + "pos": "名詞", + "pn": -0.14616 + }, + { + "surface": "粗皮", + "readging": "あらかわ", + "pos": "名詞", + "pn": -0.146163 + }, + { + "surface": "御礼", + "readging": "おれい", + "pos": "名詞", + "pn": -0.146187 + }, + { + "surface": "送付", + "readging": "そうふ", + "pos": "名詞", + "pn": -0.146194 + }, + { + "surface": "桜", + "readging": "おう", + "pos": "名詞", + "pn": -0.146222 + }, + { + "surface": "機種", + "readging": "きしゅ", + "pos": "名詞", + "pn": -0.146239 + }, + { + "surface": "野良犬", + "readging": "のらいぬ", + "pos": "名詞", + "pn": -0.146243 + }, + { + "surface": "町家", + "readging": "ちょうか", + "pos": "名詞", + "pn": -0.146255 + }, + { + "surface": "衰年", + "readging": "すいねん", + "pos": "名詞", + "pn": -0.146272 + }, + { + "surface": "老婢", + "readging": "ろうひ", + "pos": "名詞", + "pn": -0.146274 + }, + { + "surface": "還御", + "readging": "かんぎょ", + "pos": "名詞", + "pn": -0.146283 + }, + { + "surface": "官設", + "readging": "かんせつ", + "pos": "名詞", + "pn": -0.146293 + }, + { + "surface": "一代", + "readging": "いちだい", + "pos": "名詞", + "pn": -0.146309 + }, + { + "surface": "入れ札", + "readging": "いれふだ", + "pos": "名詞", + "pn": -0.146311 + }, + { + "surface": "企業体", + "readging": "きぎょうたい", + "pos": "名詞", + "pn": -0.146314 + }, + { + "surface": "現出", + "readging": "げんしゅつ", + "pos": "名詞", + "pn": -0.146317 + }, + { + "surface": "裁物", + "readging": "たちもの", + "pos": "名詞", + "pn": -0.146332 + }, + { + "surface": "高燥", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.146341 + }, + { + "surface": "すたこら", + "readging": "すたこら", + "pos": "副詞", + "pn": -0.146342 + }, + { + "surface": "実話", + "readging": "じつわ", + "pos": "名詞", + "pn": -0.146346 + }, + { + "surface": "倒閣", + "readging": "とうかく", + "pos": "名詞", + "pn": -0.14636 + }, + { + "surface": "次序", + "readging": "じじょ", + "pos": "名詞", + "pn": -0.146371 + }, + { + "surface": "えんか", + "readging": "えんかナトリウム", + "pos": "名詞", + "pn": -0.146374 + }, + { + "surface": "暴騰", + "readging": "ぼうとう", + "pos": "名詞", + "pn": -0.146382 + }, + { + "surface": "総門", + "readging": "そうもん", + "pos": "名詞", + "pn": -0.146385 + }, + { + "surface": "降り籠める", + "readging": "ふりこめる", + "pos": "動詞", + "pn": -0.146406 + }, + { + "surface": "臣服", + "readging": "しんぷく", + "pos": "名詞", + "pn": -0.146433 + }, + { + "surface": "立泳ぎ", + "readging": "たちおよぎ", + "pos": "名詞", + "pn": -0.146478 + }, + { + "surface": "月桂冠", + "readging": "げっけいかん", + "pos": "名詞", + "pn": -0.146496 + }, + { + "surface": "つまり", + "readging": "つまり", + "pos": "名詞", + "pn": -0.146516 + }, + { + "surface": "米塩", + "readging": "べいえん", + "pos": "名詞", + "pn": -0.146519 + }, + { + "surface": "油送", + "readging": "ゆそう", + "pos": "名詞", + "pn": -0.146522 + }, + { + "surface": "参会", + "readging": "さんかい", + "pos": "名詞", + "pn": -0.146538 + }, + { + "surface": "別項", + "readging": "べっこう", + "pos": "名詞", + "pn": -0.146544 + }, + { + "surface": "染抜紋", + "readging": "そめぬきもん", + "pos": "名詞", + "pn": -0.146554 + }, + { + "surface": "訳業", + "readging": "やくぎょう", + "pos": "名詞", + "pn": -0.146561 + }, + { + "surface": "貸切る", + "readging": "かしきる", + "pos": "動詞", + "pn": -0.146574 + }, + { + "surface": "外向", + "readging": "がいこう", + "pos": "名詞", + "pn": -0.146583 + }, + { + "surface": "オポチュニスト", + "readging": "オポチュニスト", + "pos": "名詞", + "pn": -0.146583 + }, + { + "surface": "分針", + "readging": "ふんしん", + "pos": "名詞", + "pn": -0.146589 + }, + { + "surface": "一日千秋", + "readging": "いちじつせんしゅう", + "pos": "名詞", + "pn": -0.146595 + }, + { + "surface": "芋名月", + "readging": "いもめいげつ", + "pos": "名詞", + "pn": -0.146613 + }, + { + "surface": "一望", + "readging": "いちぼう", + "pos": "名詞", + "pn": -0.146618 + }, + { + "surface": "特急", + "readging": "とっきゅう", + "pos": "名詞", + "pn": -0.146655 + }, + { + "surface": "将卒", + "readging": "しょうそつ", + "pos": "名詞", + "pn": -0.146665 + }, + { + "surface": "行員", + "readging": "こういん", + "pos": "名詞", + "pn": -0.146679 + }, + { + "surface": "尊影", + "readging": "そんえい", + "pos": "名詞", + "pn": -0.146688 + }, + { + "surface": "概況", + "readging": "がいきょう", + "pos": "名詞", + "pn": -0.146692 + }, + { + "surface": "旅の空", + "readging": "たびのそら", + "pos": "名詞", + "pn": -0.146699 + }, + { + "surface": "朝酒", + "readging": "あさざけ", + "pos": "名詞", + "pn": -0.146719 + }, + { + "surface": "准尉", + "readging": "じゅんい", + "pos": "名詞", + "pn": -0.146728 + }, + { + "surface": "置去り", + "readging": "おきざり", + "pos": "名詞", + "pn": -0.146736 + }, + { + "surface": "改宗", + "readging": "かいしゅう", + "pos": "名詞", + "pn": -0.146739 + }, + { + "surface": "黒酒", + "readging": "くろき", + "pos": "名詞", + "pn": -0.146755 + }, + { + "surface": "刃", + "readging": "は", + "pos": "名詞", + "pn": -0.14678 + }, + { + "surface": "微罪", + "readging": "びざい", + "pos": "名詞", + "pn": -0.146796 + }, + { + "surface": "廉恥", + "readging": "れんち", + "pos": "名詞", + "pn": -0.146805 + }, + { + "surface": "魔障", + "readging": "ましょう", + "pos": "名詞", + "pn": -0.146821 + }, + { + "surface": "立法", + "readging": "りっぽう", + "pos": "名詞", + "pn": -0.146829 + }, + { + "surface": "漸進", + "readging": "ぜんしん", + "pos": "名詞", + "pn": -0.146831 + }, + { + "surface": "閻浮提", + "readging": "えんぶだい", + "pos": "名詞", + "pn": -0.146831 + }, + { + "surface": "西遊", + "readging": "さいゆう", + "pos": "名詞", + "pn": -0.146844 + }, + { + "surface": "柔順", + "readging": "じゅうじゅん", + "pos": "名詞", + "pn": -0.146854 + }, + { + "surface": "明窓浄机", + "readging": "めいそうじょうき", + "pos": "名詞", + "pn": -0.146881 + }, + { + "surface": "言責", + "readging": "げんせき", + "pos": "名詞", + "pn": -0.146888 + }, + { + "surface": "大蛇", + "readging": "だいじゃ", + "pos": "名詞", + "pn": -0.146898 + }, + { + "surface": "改竄", + "readging": "かいざん", + "pos": "名詞", + "pn": -0.146931 + }, + { + "surface": "生さぬ仲", + "readging": "なさぬなか", + "pos": "名詞", + "pn": -0.146956 + }, + { + "surface": "真読", + "readging": "しんどく", + "pos": "名詞", + "pn": -0.146974 + }, + { + "surface": "虚数", + "readging": "きょすう", + "pos": "名詞", + "pn": -0.147004 + }, + { + "surface": "旧人", + "readging": "きゅうじん", + "pos": "名詞", + "pn": -0.147006 + }, + { + "surface": "四半期", + "readging": "しはんき", + "pos": "名詞", + "pn": -0.14701 + }, + { + "surface": "上限", + "readging": "じょうげん", + "pos": "名詞", + "pn": -0.147015 + }, + { + "surface": "跡地", + "readging": "あとち", + "pos": "名詞", + "pn": -0.147019 + }, + { + "surface": "四国八十八箇所", + "readging": "しこくはちじゅうはっかしょ", + "pos": "名詞", + "pn": -0.147033 + }, + { + "surface": "エイリアン", + "readging": "エイリアン", + "pos": "名詞", + "pn": -0.147034 + }, + { + "surface": "来賓", + "readging": "らいひん", + "pos": "名詞", + "pn": -0.147052 + }, + { + "surface": "師資", + "readging": "しし", + "pos": "名詞", + "pn": -0.147088 + }, + { + "surface": "披見", + "readging": "ひけん", + "pos": "名詞", + "pn": -0.147098 + }, + { + "surface": "燕", + "readging": "つばくろ", + "pos": "名詞", + "pn": -0.147114 + }, + { + "surface": "ロング", + "readging": "ロングトン", + "pos": "名詞", + "pn": -0.147121 + }, + { + "surface": "不立文字", + "readging": "ふりゅうもんじ", + "pos": "名詞", + "pn": -0.147135 + }, + { + "surface": "フェース", + "readging": "フェース", + "pos": "名詞", + "pn": -0.147138 + }, + { + "surface": "分別", + "readging": "ぶんべつ", + "pos": "名詞", + "pn": -0.147154 + }, + { + "surface": "社会保障", + "readging": "しゃかいほしょう", + "pos": "名詞", + "pn": -0.147156 + }, + { + "surface": "短針", + "readging": "たんしん", + "pos": "名詞", + "pn": -0.147182 + }, + { + "surface": "行悩む", + "readging": "ゆきなやむ", + "pos": "動詞", + "pn": -0.147195 + }, + { + "surface": "底無し", + "readging": "そこなし", + "pos": "名詞", + "pn": -0.147196 + }, + { + "surface": "結い上げる", + "readging": "ゆいあげる", + "pos": "動詞", + "pn": -0.147241 + }, + { + "surface": "目睹", + "readging": "もくと", + "pos": "名詞", + "pn": -0.147262 + }, + { + "surface": "示達", + "readging": "じたつ", + "pos": "名詞", + "pn": -0.147263 + }, + { + "surface": "手放す", + "readging": "てばなす", + "pos": "動詞", + "pn": -0.147269 + }, + { + "surface": "古渡", + "readging": "こわたり", + "pos": "名詞", + "pn": -0.147269 + }, + { + "surface": "部会", + "readging": "ぶかい", + "pos": "名詞", + "pn": -0.147292 + }, + { + "surface": "源泉課税", + "readging": "げんせんかぜい", + "pos": "名詞", + "pn": -0.147293 + }, + { + "surface": "陰膳", + "readging": "かげぜん", + "pos": "名詞", + "pn": -0.147316 + }, + { + "surface": "版式", + "readging": "はんしき", + "pos": "名詞", + "pn": -0.147317 + }, + { + "surface": "切願", + "readging": "せつがん", + "pos": "名詞", + "pn": -0.147333 + }, + { + "surface": "終演", + "readging": "しゅうえん", + "pos": "名詞", + "pn": -0.147364 + }, + { + "surface": "不在", + "readging": "ふざい", + "pos": "名詞", + "pn": -0.147365 + }, + { + "surface": "スピード", + "readging": "スピード", + "pos": "名詞", + "pn": -0.147405 + }, + { + "surface": "強火", + "readging": "つよび", + "pos": "名詞", + "pn": -0.147416 + }, + { + "surface": "換骨奪胎", + "readging": "かんこつだったい", + "pos": "名詞", + "pn": -0.147417 + }, + { + "surface": "小伝", + "readging": "しょうでん", + "pos": "名詞", + "pn": -0.14743 + }, + { + "surface": "表書き", + "readging": "おもてがき", + "pos": "名詞", + "pn": -0.147432 + }, + { + "surface": "複素数", + "readging": "ふくそすう", + "pos": "名詞", + "pn": -0.147452 + }, + { + "surface": "官辺", + "readging": "かんぺん", + "pos": "名詞", + "pn": -0.147473 + }, + { + "surface": "医界", + "readging": "いかい", + "pos": "名詞", + "pn": -0.147477 + }, + { + "surface": "覧", + "readging": "らん", + "pos": "名詞", + "pn": -0.147481 + }, + { + "surface": "アミ", + "readging": "アミ", + "pos": "名詞", + "pn": -0.147492 + }, + { + "surface": "参戦", + "readging": "さんせん", + "pos": "名詞", + "pn": -0.147493 + }, + { + "surface": "太白", + "readging": "たいはく", + "pos": "名詞", + "pn": -0.147501 + }, + { + "surface": "鉄柵", + "readging": "てっさく", + "pos": "名詞", + "pn": -0.147502 + }, + { + "surface": "留学", + "readging": "りゅうがく", + "pos": "名詞", + "pn": -0.147507 + }, + { + "surface": "初日", + "readging": "はつひ", + "pos": "名詞", + "pn": -0.147522 + }, + { + "surface": "無手", + "readging": "むて", + "pos": "名詞", + "pn": -0.147523 + }, + { + "surface": "読史", + "readging": "どくし", + "pos": "名詞", + "pn": -0.147532 + }, + { + "surface": "十七文字", + "readging": "じゅうしちもじ", + "pos": "名詞", + "pn": -0.147536 + }, + { + "surface": "鵜呑み", + "readging": "うのみ", + "pos": "名詞", + "pn": -0.14755 + }, + { + "surface": "続け様", + "readging": "つづけざま", + "pos": "名詞", + "pn": -0.147579 + }, + { + "surface": "遊星", + "readging": "ゆうせい", + "pos": "名詞", + "pn": -0.14758 + }, + { + "surface": "笹屋", + "readging": "ささや", + "pos": "名詞", + "pn": -0.147584 + }, + { + "surface": "すかんぽ", + "readging": "すかんぽ", + "pos": "名詞", + "pn": -0.147599 + }, + { + "surface": "出番", + "readging": "でばん", + "pos": "名詞", + "pn": -0.147611 + }, + { + "surface": "石鏃", + "readging": "せきぞく", + "pos": "名詞", + "pn": -0.147618 + }, + { + "surface": "知情意", + "readging": "ちじょうい", + "pos": "名詞", + "pn": -0.147633 + }, + { + "surface": "寝室", + "readging": "しんしつ", + "pos": "名詞", + "pn": -0.147636 + }, + { + "surface": "むり心中", + "readging": "むりしんじゅう", + "pos": "名詞", + "pn": -0.147644 + }, + { + "surface": "議院", + "readging": "ぎいん", + "pos": "名詞", + "pn": -0.147669 + }, + { + "surface": "続編", + "readging": "ぞくへん", + "pos": "名詞", + "pn": -0.147685 + }, + { + "surface": "通念", + "readging": "つうねん", + "pos": "名詞", + "pn": -0.147687 + }, + { + "surface": "上官", + "readging": "じょうかん", + "pos": "名詞", + "pn": -0.147692 + }, + { + "surface": "耐震", + "readging": "たいしん", + "pos": "名詞", + "pn": -0.147696 + }, + { + "surface": "有給", + "readging": "ゆうきゅう", + "pos": "名詞", + "pn": -0.147722 + }, + { + "surface": "盛代", + "readging": "せいだい", + "pos": "名詞", + "pn": -0.147734 + }, + { + "surface": "上巳", + "readging": "じょうみ", + "pos": "名詞", + "pn": -0.147736 + }, + { + "surface": "免税", + "readging": "めんぜい", + "pos": "名詞", + "pn": -0.147738 + }, + { + "surface": "水晶時計", + "readging": "すいしょうどけい", + "pos": "名詞", + "pn": -0.147745 + }, + { + "surface": "銅", + "readging": "あかがね", + "pos": "名詞", + "pn": -0.147753 + }, + { + "surface": "なぞえ", + "readging": "なぞえ", + "pos": "名詞", + "pn": -0.147754 + }, + { + "surface": "台場", + "readging": "だいば", + "pos": "名詞", + "pn": -0.147809 + }, + { + "surface": "池心", + "readging": "ちしん", + "pos": "名詞", + "pn": -0.147825 + }, + { + "surface": "心得る", + "readging": "こころえる", + "pos": "動詞", + "pn": -0.147841 + }, + { + "surface": "類本", + "readging": "るいほん", + "pos": "名詞", + "pn": -0.147843 + }, + { + "surface": "梵妻", + "readging": "ぼんさい", + "pos": "名詞", + "pn": -0.147844 + }, + { + "surface": "ありっきり", + "readging": "ありっきり", + "pos": "名詞", + "pn": -0.147852 + }, + { + "surface": "案の定", + "readging": "あんのじょう", + "pos": "副詞", + "pn": -0.147867 + }, + { + "surface": "史上", + "readging": "しじょう", + "pos": "名詞", + "pn": -0.147879 + }, + { + "surface": "副長", + "readging": "ふくちょう", + "pos": "名詞", + "pn": -0.147892 + }, + { + "surface": "内政", + "readging": "ないせい", + "pos": "名詞", + "pn": -0.147908 + }, + { + "surface": "木表", + "readging": "きおもて", + "pos": "名詞", + "pn": -0.147919 + }, + { + "surface": "門派", + "readging": "もんぱ", + "pos": "名詞", + "pn": -0.147937 + }, + { + "surface": "木深い", + "readging": "こぶかい", + "pos": "形容詞", + "pn": -0.14794 + }, + { + "surface": "遠っ走り", + "readging": "とおっぱしり", + "pos": "名詞", + "pn": -0.147955 + }, + { + "surface": "不敵", + "readging": "ふてき", + "pos": "名詞", + "pn": -0.148008 + }, + { + "surface": "改装", + "readging": "かいそう", + "pos": "名詞", + "pn": -0.148047 + }, + { + "surface": "参画", + "readging": "さんかく", + "pos": "名詞", + "pn": -0.148053 + }, + { + "surface": "立論", + "readging": "りつろん", + "pos": "名詞", + "pn": -0.148054 + }, + { + "surface": "国司", + "readging": "こくし", + "pos": "名詞", + "pn": -0.14808 + }, + { + "surface": "大山", + "readging": "たいざん", + "pos": "名詞", + "pn": -0.148097 + }, + { + "surface": "不測", + "readging": "ふそく", + "pos": "名詞", + "pn": -0.1481 + }, + { + "surface": "郷土色", + "readging": "きょうどしょく", + "pos": "名詞", + "pn": -0.1481 + }, + { + "surface": "海戦", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.14811 + }, + { + "surface": "聞取り", + "readging": "ききとり", + "pos": "名詞", + "pn": -0.148119 + }, + { + "surface": "真四角", + "readging": "ましかく", + "pos": "名詞", + "pn": -0.148119 + }, + { + "surface": "モーション", + "readging": "モーション", + "pos": "名詞", + "pn": -0.14814 + }, + { + "surface": "舶用", + "readging": "はくよう", + "pos": "名詞", + "pn": -0.148153 + }, + { + "surface": "コーラス", + "readging": "コーラス", + "pos": "名詞", + "pn": -0.148167 + }, + { + "surface": "ピル", + "readging": "ピル", + "pos": "名詞", + "pn": -0.148174 + }, + { + "surface": "釈教", + "readging": "しゃっきょう", + "pos": "名詞", + "pn": -0.148197 + }, + { + "surface": "急落", + "readging": "きゅうらく", + "pos": "名詞", + "pn": -0.148263 + }, + { + "surface": "お宅", + "readging": "おたく", + "pos": "名詞", + "pn": -0.148266 + }, + { + "surface": "国政", + "readging": "こくせい", + "pos": "名詞", + "pn": -0.148267 + }, + { + "surface": "三原色", + "readging": "さんげんしょく", + "pos": "名詞", + "pn": -0.14828 + }, + { + "surface": "自序", + "readging": "じじょ", + "pos": "名詞", + "pn": -0.148289 + }, + { + "surface": "一辺倒", + "readging": "いっぺんとう", + "pos": "名詞", + "pn": -0.148293 + }, + { + "surface": "斧鑿", + "readging": "ふさく", + "pos": "名詞", + "pn": -0.148312 + }, + { + "surface": "暗譜", + "readging": "あんぷ", + "pos": "名詞", + "pn": -0.148327 + }, + { + "surface": "臣籍", + "readging": "しんせき", + "pos": "名詞", + "pn": -0.148343 + }, + { + "surface": "漢数字", + "readging": "かんすうじ", + "pos": "名詞", + "pn": -0.148345 + }, + { + "surface": "干天", + "readging": "かんてん", + "pos": "名詞", + "pn": -0.148357 + }, + { + "surface": "無職", + "readging": "むしょく", + "pos": "名詞", + "pn": -0.148389 + }, + { + "surface": "取離す", + "readging": "とりはなす", + "pos": "動詞", + "pn": -0.148394 + }, + { + "surface": "オートメーション", + "readging": "オートメーション", + "pos": "名詞", + "pn": -0.14842 + }, + { + "surface": "同役", + "readging": "どうやく", + "pos": "名詞", + "pn": -0.148441 + }, + { + "surface": "箱船", + "readging": "はこぶね", + "pos": "名詞", + "pn": -0.148448 + }, + { + "surface": "来集", + "readging": "らいしゅう", + "pos": "名詞", + "pn": -0.148452 + }, + { + "surface": "切傷", + "readging": "きりきず", + "pos": "名詞", + "pn": -0.148467 + }, + { + "surface": "宵っ張り", + "readging": "よいっぱり", + "pos": "名詞", + "pn": -0.148481 + }, + { + "surface": "草むしり", + "readging": "くさむしり", + "pos": "名詞", + "pn": -0.148481 + }, + { + "surface": "作り物語", + "readging": "つくりものがたり", + "pos": "名詞", + "pn": -0.148494 + }, + { + "surface": "争奪", + "readging": "そうだつ", + "pos": "名詞", + "pn": -0.148504 + }, + { + "surface": "利札", + "readging": "りふだ", + "pos": "名詞", + "pn": -0.148519 + }, + { + "surface": "美麗", + "readging": "びれい", + "pos": "名詞", + "pn": -0.148534 + }, + { + "surface": "蜒蜒", + "readging": "えんえん", + "pos": "名詞", + "pn": -0.148534 + }, + { + "surface": "来合せる", + "readging": "きあわせる", + "pos": "動詞", + "pn": -0.148548 + }, + { + "surface": "仰ぎ見る", + "readging": "あおぎみる", + "pos": "動詞", + "pn": -0.148555 + }, + { + "surface": "粛学", + "readging": "しゅくがく", + "pos": "名詞", + "pn": -0.148573 + }, + { + "surface": "達成", + "readging": "たっせい", + "pos": "名詞", + "pn": -0.148601 + }, + { + "surface": "スキーヤー", + "readging": "スキーヤー", + "pos": "名詞", + "pn": -0.148611 + }, + { + "surface": "枯淡", + "readging": "こたん", + "pos": "名詞", + "pn": -0.148613 + }, + { + "surface": "急進", + "readging": "きゅうしん", + "pos": "名詞", + "pn": -0.14862 + }, + { + "surface": "二日月", + "readging": "ふつかづき", + "pos": "名詞", + "pn": -0.148628 + }, + { + "surface": "歯黒め", + "readging": "はぐろめ", + "pos": "名詞", + "pn": -0.148634 + }, + { + "surface": "劇界", + "readging": "げきかい", + "pos": "名詞", + "pn": -0.148653 + }, + { + "surface": "兼任", + "readging": "けんにん", + "pos": "名詞", + "pn": -0.148665 + }, + { + "surface": "先占", + "readging": "せんせん", + "pos": "名詞", + "pn": -0.148683 + }, + { + "surface": "在銘", + "readging": "ざいめい", + "pos": "名詞", + "pn": -0.148692 + }, + { + "surface": "横殴り", + "readging": "よこなぐり", + "pos": "名詞", + "pn": -0.148705 + }, + { + "surface": "球児", + "readging": "きゅうじ", + "pos": "名詞", + "pn": -0.148713 + }, + { + "surface": "化学変化", + "readging": "かがくへんか", + "pos": "名詞", + "pn": -0.148713 + }, + { + "surface": "軍司令官", + "readging": "ぐんしれいかん", + "pos": "名詞", + "pn": -0.148714 + }, + { + "surface": "武神", + "readging": "ぶしん", + "pos": "名詞", + "pn": -0.148715 + }, + { + "surface": "巧言", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.148721 + }, + { + "surface": "進級", + "readging": "しんきゅう", + "pos": "名詞", + "pn": -0.148757 + }, + { + "surface": "受売り", + "readging": "うけうり", + "pos": "名詞", + "pn": -0.148767 + }, + { + "surface": "未済", + "readging": "みさい", + "pos": "名詞", + "pn": -0.148782 + }, + { + "surface": "硬骨魚", + "readging": "こうこつぎょ", + "pos": "名詞", + "pn": -0.14879 + }, + { + "surface": "争訟", + "readging": "そうしょう", + "pos": "名詞", + "pn": -0.148794 + }, + { + "surface": "水商売", + "readging": "みずしょうばい", + "pos": "名詞", + "pn": -0.148809 + }, + { + "surface": "さしむき", + "readging": "さしむき", + "pos": "副詞", + "pn": -0.148812 + }, + { + "surface": "式法", + "readging": "しきほう", + "pos": "名詞", + "pn": -0.14882 + }, + { + "surface": "初刊", + "readging": "しょかん", + "pos": "名詞", + "pn": -0.14882 + }, + { + "surface": "揚出し", + "readging": "あげだし", + "pos": "名詞", + "pn": -0.148821 + }, + { + "surface": "暮泥む", + "readging": "くれなずむ", + "pos": "動詞", + "pn": -0.148842 + }, + { + "surface": "郷党", + "readging": "きょうとう", + "pos": "名詞", + "pn": -0.148843 + }, + { + "surface": "熱帯魚", + "readging": "ねったいぎょ", + "pos": "名詞", + "pn": -0.148843 + }, + { + "surface": "予稿", + "readging": "よこう", + "pos": "名詞", + "pn": -0.148857 + }, + { + "surface": "金的", + "readging": "きんてき", + "pos": "名詞", + "pn": -0.148859 + }, + { + "surface": "舎監", + "readging": "しゃかん", + "pos": "名詞", + "pn": -0.148865 + }, + { + "surface": "反証", + "readging": "はんしょう", + "pos": "名詞", + "pn": -0.148868 + }, + { + "surface": "詩句", + "readging": "しく", + "pos": "名詞", + "pn": -0.148875 + }, + { + "surface": "唐画", + "readging": "とうが", + "pos": "名詞", + "pn": -0.148901 + }, + { + "surface": "立姿", + "readging": "たちすがた", + "pos": "名詞", + "pn": -0.148915 + }, + { + "surface": "渡初め", + "readging": "わたりぞめ", + "pos": "名詞", + "pn": -0.14892 + }, + { + "surface": "千億", + "readging": "せんおく", + "pos": "名詞", + "pn": -0.148924 + }, + { + "surface": "レジ", + "readging": "レジ", + "pos": "名詞", + "pn": -0.148933 + }, + { + "surface": "狸寝入り", + "readging": "たぬきねいり", + "pos": "名詞", + "pn": -0.148934 + }, + { + "surface": "横議", + "readging": "おうぎ", + "pos": "名詞", + "pn": -0.148947 + }, + { + "surface": "本庁", + "readging": "ほんちょう", + "pos": "名詞", + "pn": -0.148978 + }, + { + "surface": "競買", + "readging": "せりがい", + "pos": "名詞", + "pn": -0.14898 + }, + { + "surface": "親書", + "readging": "しんしょ", + "pos": "名詞", + "pn": -0.149021 + }, + { + "surface": "外寇", + "readging": "がいこう", + "pos": "名詞", + "pn": -0.149021 + }, + { + "surface": "十枚目", + "readging": "じゅうまいめ", + "pos": "名詞", + "pn": -0.149029 + }, + { + "surface": "主部", + "readging": "しゅぶ", + "pos": "名詞", + "pn": -0.149031 + }, + { + "surface": "恋歌", + "readging": "れんか", + "pos": "名詞", + "pn": -0.149034 + }, + { + "surface": "企及", + "readging": "ききゅう", + "pos": "名詞", + "pn": -0.149053 + }, + { + "surface": "えんにょう", + "readging": "えんにょう", + "pos": "名詞", + "pn": -0.149059 + }, + { + "surface": "迂曲", + "readging": "うきょく", + "pos": "名詞", + "pn": -0.149065 + }, + { + "surface": "にっと", + "readging": "にっと", + "pos": "副詞", + "pn": -0.149074 + }, + { + "surface": "潮瀬", + "readging": "しおせ", + "pos": "名詞", + "pn": -0.14913 + }, + { + "surface": "早飛脚", + "readging": "はやびきゃく", + "pos": "名詞", + "pn": -0.149139 + }, + { + "surface": "敗報", + "readging": "はいほう", + "pos": "名詞", + "pn": -0.149147 + }, + { + "surface": "本務", + "readging": "ほんむ", + "pos": "名詞", + "pn": -0.149177 + }, + { + "surface": "良心", + "readging": "りょうしん", + "pos": "名詞", + "pn": -0.149194 + }, + { + "surface": "景物", + "readging": "けいぶつ", + "pos": "名詞", + "pn": -0.149205 + }, + { + "surface": "多雨", + "readging": "たう", + "pos": "名詞", + "pn": -0.149213 + }, + { + "surface": "初姿", + "readging": "はつすがた", + "pos": "名詞", + "pn": -0.149228 + }, + { + "surface": "活性炭", + "readging": "かっせいたん", + "pos": "名詞", + "pn": -0.14923 + }, + { + "surface": "内帑", + "readging": "ないど", + "pos": "名詞", + "pn": -0.149237 + }, + { + "surface": "真言秘密", + "readging": "しんごんひみつ", + "pos": "名詞", + "pn": -0.149249 + }, + { + "surface": "柔軟体操", + "readging": "じゅうなんたいそう", + "pos": "名詞", + "pn": -0.149262 + }, + { + "surface": "凝着", + "readging": "ぎょうちゃく", + "pos": "名詞", + "pn": -0.149266 + }, + { + "surface": "恩借", + "readging": "おんしゃく", + "pos": "名詞", + "pn": -0.149268 + }, + { + "surface": "宗法", + "readging": "しゅうほう", + "pos": "名詞", + "pn": -0.149273 + }, + { + "surface": "檀那寺", + "readging": "だんなでら", + "pos": "名詞", + "pn": -0.149279 + }, + { + "surface": "別誂え", + "readging": "べつあつらえ", + "pos": "名詞", + "pn": -0.149293 + }, + { + "surface": "分村", + "readging": "ぶんそん", + "pos": "名詞", + "pn": -0.149294 + }, + { + "surface": "史書", + "readging": "ししょ", + "pos": "名詞", + "pn": -0.149301 + }, + { + "surface": "面つき", + "readging": "つらつき", + "pos": "名詞", + "pn": -0.149303 + }, + { + "surface": "軽軽", + "readging": "けいけい", + "pos": "副詞", + "pn": -0.149308 + }, + { + "surface": "仮名", + "readging": "かな", + "pos": "名詞", + "pn": -0.149326 + }, + { + "surface": "明春", + "readging": "みょうしゅん", + "pos": "名詞", + "pn": -0.149329 + }, + { + "surface": "粗収入", + "readging": "そしゅうにゅう", + "pos": "名詞", + "pn": -0.149353 + }, + { + "surface": "尼寺", + "readging": "あまでら", + "pos": "名詞", + "pn": -0.149366 + }, + { + "surface": "手性", + "readging": "てしょう", + "pos": "名詞", + "pn": -0.149374 + }, + { + "surface": "係官", + "readging": "かかりかん", + "pos": "名詞", + "pn": -0.14938 + }, + { + "surface": "AV", + "readging": "エーブイ", + "pos": "名詞", + "pn": -0.149386 + }, + { + "surface": "一等親", + "readging": "いっとうしん", + "pos": "名詞", + "pn": -0.149407 + }, + { + "surface": "帯桟", + "readging": "おびざん", + "pos": "名詞", + "pn": -0.149414 + }, + { + "surface": "持合せ", + "readging": "もちあわせ", + "pos": "名詞", + "pn": -0.149441 + }, + { + "surface": "最恵国", + "readging": "さいけいこく", + "pos": "名詞", + "pn": -0.149457 + }, + { + "surface": "長汀", + "readging": "ちょうてい", + "pos": "名詞", + "pn": -0.149468 + }, + { + "surface": "蔬菜", + "readging": "そさい", + "pos": "名詞", + "pn": -0.149472 + }, + { + "surface": "卒去", + "readging": "そっきょ", + "pos": "名詞", + "pn": -0.149497 + }, + { + "surface": "仏法", + "readging": "ぶっぽう", + "pos": "名詞", + "pn": -0.149513 + }, + { + "surface": "御身", + "readging": "おんみ", + "pos": "名詞", + "pn": -0.149518 + }, + { + "surface": "国立", + "readging": "こくりつ", + "pos": "名詞", + "pn": -0.149524 + }, + { + "surface": "賓礼", + "readging": "ひんれい", + "pos": "名詞", + "pn": -0.149525 + }, + { + "surface": "脚光", + "readging": "きゃっこう", + "pos": "名詞", + "pn": -0.149532 + }, + { + "surface": "老中", + "readging": "ろうぢゅう", + "pos": "名詞", + "pn": -0.149552 + }, + { + "surface": "後葉", + "readging": "こうよう", + "pos": "名詞", + "pn": -0.149561 + }, + { + "surface": "セオリー", + "readging": "セオリー", + "pos": "名詞", + "pn": -0.149566 + }, + { + "surface": "レクチャー", + "readging": "レクチャー", + "pos": "名詞", + "pn": -0.149577 + }, + { + "surface": "夜働き", + "readging": "よばたらき", + "pos": "名詞", + "pn": -0.14958 + }, + { + "surface": "人面", + "readging": "じんめん", + "pos": "名詞", + "pn": -0.149588 + }, + { + "surface": "累日", + "readging": "るいじつ", + "pos": "名詞", + "pn": -0.14969 + }, + { + "surface": "旅衣", + "readging": "たびごろも", + "pos": "名詞", + "pn": -0.149694 + }, + { + "surface": "岡場所", + "readging": "おかばしょ", + "pos": "名詞", + "pn": -0.149738 + }, + { + "surface": "巨額", + "readging": "きょがく", + "pos": "名詞", + "pn": -0.149758 + }, + { + "surface": "紫電", + "readging": "しでん", + "pos": "名詞", + "pn": -0.14977 + }, + { + "surface": "朝刊", + "readging": "ちょうかん", + "pos": "名詞", + "pn": -0.149785 + }, + { + "surface": "うかんむり", + "readging": "うかんむり", + "pos": "名詞", + "pn": -0.149791 + }, + { + "surface": "穴冠", + "readging": "あなかんむり", + "pos": "名詞", + "pn": -0.149791 + }, + { + "surface": "雨冠", + "readging": "あめかんむり", + "pos": "名詞", + "pn": -0.149791 + }, + { + "surface": "汎称", + "readging": "はんしょう", + "pos": "名詞", + "pn": -0.149793 + }, + { + "surface": "脇師", + "readging": "わきし", + "pos": "名詞", + "pn": -0.149801 + }, + { + "surface": "提示", + "readging": "ていじ", + "pos": "名詞", + "pn": -0.149815 + }, + { + "surface": "ビジネス", + "readging": "ビジネスマン", + "pos": "名詞", + "pn": -0.14982 + }, + { + "surface": "借手", + "readging": "かりて", + "pos": "名詞", + "pn": -0.149829 + }, + { + "surface": "逆説", + "readging": "ぎゃくせつ", + "pos": "名詞", + "pn": -0.14983 + }, + { + "surface": "ファースト", + "readging": "ファースト", + "pos": "名詞", + "pn": -0.149833 + }, + { + "surface": "選曲", + "readging": "せんきょく", + "pos": "名詞", + "pn": -0.149837 + }, + { + "surface": "別個", + "readging": "べっこ", + "pos": "名詞", + "pn": -0.149843 + }, + { + "surface": "心妻", + "readging": "こころづま", + "pos": "名詞", + "pn": -0.149854 + }, + { + "surface": "恒温動物", + "readging": "こうおんどうぶつ", + "pos": "名詞", + "pn": -0.149859 + }, + { + "surface": "祝杯", + "readging": "しゅくはい", + "pos": "名詞", + "pn": -0.149907 + }, + { + "surface": "失跡", + "readging": "しっせき", + "pos": "名詞", + "pn": -0.14991 + }, + { + "surface": "部内", + "readging": "ぶない", + "pos": "名詞", + "pn": -0.149959 + }, + { + "surface": "盤踞", + "readging": "ばんきょ", + "pos": "名詞", + "pn": -0.149963 + }, + { + "surface": "和声", + "readging": "わせい", + "pos": "名詞", + "pn": -0.149985 + }, + { + "surface": "雑木", + "readging": "ぞうき", + "pos": "名詞", + "pn": -0.149992 + }, + { + "surface": "奉遷", + "readging": "ほうせん", + "pos": "名詞", + "pn": -0.150016 + }, + { + "surface": "大入道", + "readging": "おおにゅうどう", + "pos": "名詞", + "pn": -0.150036 + }, + { + "surface": "ジッパー", + "readging": "ジッパー", + "pos": "名詞", + "pn": -0.150046 + }, + { + "surface": "会友", + "readging": "かいゆう", + "pos": "名詞", + "pn": -0.150047 + }, + { + "surface": "炒豆", + "readging": "いりまめ", + "pos": "名詞", + "pn": -0.150051 + }, + { + "surface": "新妻", + "readging": "にいづま", + "pos": "名詞", + "pn": -0.150053 + }, + { + "surface": "吐露", + "readging": "とろ", + "pos": "名詞", + "pn": -0.150065 + }, + { + "surface": "兼学", + "readging": "けんがく", + "pos": "名詞", + "pn": -0.150075 + }, + { + "surface": "まなざし", + "readging": "まなざし", + "pos": "名詞", + "pn": -0.150125 + }, + { + "surface": "大内裏", + "readging": "だいだいり", + "pos": "名詞", + "pn": -0.150132 + }, + { + "surface": "本位貨幣", + "readging": "ほんいかへい", + "pos": "名詞", + "pn": -0.150137 + }, + { + "surface": "囃子詞", + "readging": "はやしことば", + "pos": "名詞", + "pn": -0.15014 + }, + { + "surface": "赤子", + "readging": "あかご", + "pos": "名詞", + "pn": -0.150147 + }, + { + "surface": "煮含める", + "readging": "にふくめる", + "pos": "動詞", + "pn": -0.150149 + }, + { + "surface": "本譜", + "readging": "ほんぷ", + "pos": "名詞", + "pn": -0.150149 + }, + { + "surface": "勤惰", + "readging": "きんだ", + "pos": "名詞", + "pn": -0.150165 + }, + { + "surface": "紛糾", + "readging": "ふんきゅう", + "pos": "名詞", + "pn": -0.150187 + }, + { + "surface": "失権", + "readging": "しっけん", + "pos": "名詞", + "pn": -0.150192 + }, + { + "surface": "のっけ", + "readging": "のっけ", + "pos": "名詞", + "pn": -0.150202 + }, + { + "surface": "軍費", + "readging": "ぐんぴ", + "pos": "名詞", + "pn": -0.150205 + }, + { + "surface": "飾り気", + "readging": "かざりけ", + "pos": "名詞", + "pn": -0.150238 + }, + { + "surface": "献花", + "readging": "けんか", + "pos": "名詞", + "pn": -0.150258 + }, + { + "surface": "嫌気", + "readging": "いやき", + "pos": "名詞", + "pn": -0.150265 + }, + { + "surface": "建制順", + "readging": "けんせいじゅん", + "pos": "名詞", + "pn": -0.150268 + }, + { + "surface": "気乗り", + "readging": "きのり", + "pos": "名詞", + "pn": -0.150287 + }, + { + "surface": "難産", + "readging": "なんざん", + "pos": "名詞", + "pn": -0.150296 + }, + { + "surface": "後付", + "readging": "あとづけ", + "pos": "名詞", + "pn": -0.150297 + }, + { + "surface": "営庭", + "readging": "えいてい", + "pos": "名詞", + "pn": -0.150298 + }, + { + "surface": "捨象", + "readging": "しゃしょう", + "pos": "名詞", + "pn": -0.150329 + }, + { + "surface": "伝灯", + "readging": "でんとう", + "pos": "名詞", + "pn": -0.150335 + }, + { + "surface": "二上り新内", + "readging": "にあがりしんない", + "pos": "名詞", + "pn": -0.150336 + }, + { + "surface": "詳論", + "readging": "しょうろん", + "pos": "名詞", + "pn": -0.150343 + }, + { + "surface": "私信", + "readging": "ししん", + "pos": "名詞", + "pn": -0.150362 + }, + { + "surface": "叡慮", + "readging": "えいりょ", + "pos": "名詞", + "pn": -0.15037 + }, + { + "surface": "分度器", + "readging": "ぶんどき", + "pos": "名詞", + "pn": -0.15042 + }, + { + "surface": "潤筆", + "readging": "じゅんぴつ", + "pos": "名詞", + "pn": -0.150423 + }, + { + "surface": "めっかち", + "readging": "めっかち", + "pos": "名詞", + "pn": -0.150434 + }, + { + "surface": "壮行", + "readging": "そうこう", + "pos": "名詞", + "pn": -0.150467 + }, + { + "surface": "スター", + "readging": "スター", + "pos": "名詞", + "pn": -0.150476 + }, + { + "surface": "追出す", + "readging": "おいだす", + "pos": "動詞", + "pn": -0.150511 + }, + { + "surface": "コレクション", + "readging": "コレクション", + "pos": "名詞", + "pn": -0.150515 + }, + { + "surface": "偸盗", + "readging": "ちゅうとう", + "pos": "名詞", + "pn": -0.150547 + }, + { + "surface": "七所借り", + "readging": "ななとこがり", + "pos": "名詞", + "pn": -0.150551 + }, + { + "surface": "降り積る", + "readging": "ふりつもる", + "pos": "動詞", + "pn": -0.150599 + }, + { + "surface": "共働き", + "readging": "ともばたらき", + "pos": "名詞", + "pn": -0.150612 + }, + { + "surface": "公費", + "readging": "こうひ", + "pos": "名詞", + "pn": -0.150612 + }, + { + "surface": "アウタルキー", + "readging": "アウタルキー", + "pos": "名詞", + "pn": -0.150623 + }, + { + "surface": "真上", + "readging": "まうえ", + "pos": "名詞", + "pn": -0.150628 + }, + { + "surface": "物持", + "readging": "ものもち", + "pos": "名詞", + "pn": -0.150634 + }, + { + "surface": "インジゴ", + "readging": "インジゴ", + "pos": "名詞", + "pn": -0.150665 + }, + { + "surface": "十薬", + "readging": "じゅうやく", + "pos": "名詞", + "pn": -0.150688 + }, + { + "surface": "百八煩悩", + "readging": "ひゃくはちぼんのう", + "pos": "名詞", + "pn": -0.150697 + }, + { + "surface": "停刊", + "readging": "ていかん", + "pos": "名詞", + "pn": -0.150717 + }, + { + "surface": "洋楽", + "readging": "ようがく", + "pos": "名詞", + "pn": -0.150731 + }, + { + "surface": "概説", + "readging": "がいせつ", + "pos": "名詞", + "pn": -0.150734 + }, + { + "surface": "先決問題", + "readging": "せんけつもんだい", + "pos": "名詞", + "pn": -0.150749 + }, + { + "surface": "目路", + "readging": "めじ", + "pos": "名詞", + "pn": -0.150753 + }, + { + "surface": "牛飲馬食", + "readging": "ぎゅういんばしょく", + "pos": "名詞", + "pn": -0.150778 + }, + { + "surface": "靭皮", + "readging": "じんぴ", + "pos": "名詞", + "pn": -0.150784 + }, + { + "surface": "殉国", + "readging": "じゅんこく", + "pos": "名詞", + "pn": -0.150797 + }, + { + "surface": "奉献", + "readging": "ほうけん", + "pos": "名詞", + "pn": -0.150806 + }, + { + "surface": "経年", + "readging": "けいねん", + "pos": "名詞", + "pn": -0.150814 + }, + { + "surface": "山登り", + "readging": "やまのぼり", + "pos": "名詞", + "pn": -0.150821 + }, + { + "surface": "建材", + "readging": "けんざい", + "pos": "名詞", + "pn": -0.150828 + }, + { + "surface": "良二千石", + "readging": "りょうにせんせき", + "pos": "名詞", + "pn": -0.15084 + }, + { + "surface": "存じ寄り", + "readging": "ぞんじより", + "pos": "名詞", + "pn": -0.150844 + }, + { + "surface": "無生物", + "readging": "むせいぶつ", + "pos": "名詞", + "pn": -0.150879 + }, + { + "surface": "暴虎馮河", + "readging": "ぼうこひょうが", + "pos": "名詞", + "pn": -0.15088 + }, + { + "surface": "抜参り", + "readging": "ぬけまいり", + "pos": "名詞", + "pn": -0.150885 + }, + { + "surface": "脱船", + "readging": "だっせん", + "pos": "名詞", + "pn": -0.150892 + }, + { + "surface": "小春", + "readging": "こはる", + "pos": "名詞", + "pn": -0.150895 + }, + { + "surface": "当流", + "readging": "とうりゅう", + "pos": "名詞", + "pn": -0.150905 + }, + { + "surface": "美文", + "readging": "びぶん", + "pos": "名詞", + "pn": -0.150925 + }, + { + "surface": "守秘", + "readging": "しゅひ", + "pos": "名詞", + "pn": -0.150927 + }, + { + "surface": "木裏", + "readging": "きうら", + "pos": "名詞", + "pn": -0.150944 + }, + { + "surface": "株価", + "readging": "かぶか", + "pos": "名詞", + "pn": -0.150948 + }, + { + "surface": "字義", + "readging": "じぎ", + "pos": "名詞", + "pn": -0.150997 + }, + { + "surface": "需給", + "readging": "じゅきゅう", + "pos": "名詞", + "pn": -0.15102 + }, + { + "surface": "学用品", + "readging": "がくようひん", + "pos": "名詞", + "pn": -0.151029 + }, + { + "surface": "馬市", + "readging": "うまいち", + "pos": "名詞", + "pn": -0.151037 + }, + { + "surface": "諧声", + "readging": "かいせい", + "pos": "名詞", + "pn": -0.151056 + }, + { + "surface": "フリー", + "readging": "フリーハンド", + "pos": "名詞", + "pn": -0.151077 + }, + { + "surface": "業主", + "readging": "ぎょうしゅ", + "pos": "名詞", + "pn": -0.151096 + }, + { + "surface": "生母", + "readging": "せいぼ", + "pos": "名詞", + "pn": -0.151115 + }, + { + "surface": "私する", + "readging": "わたくしする", + "pos": "動詞", + "pn": -0.151123 + }, + { + "surface": "内勤", + "readging": "ないきん", + "pos": "名詞", + "pn": -0.15113 + }, + { + "surface": "軟論", + "readging": "なんろん", + "pos": "名詞", + "pn": -0.151134 + }, + { + "surface": "あぐねる", + "readging": "あぐねる", + "pos": "動詞", + "pn": -0.151146 + }, + { + "surface": "大関", + "readging": "おおぜき", + "pos": "名詞", + "pn": -0.151149 + }, + { + "surface": "養女", + "readging": "ようじょ", + "pos": "名詞", + "pn": -0.151187 + }, + { + "surface": "秒速", + "readging": "びょうそく", + "pos": "名詞", + "pn": -0.151189 + }, + { + "surface": "飛弾", + "readging": "ひだん", + "pos": "名詞", + "pn": -0.15119 + }, + { + "surface": "神領", + "readging": "しんりょう", + "pos": "名詞", + "pn": -0.151223 + }, + { + "surface": "式次第", + "readging": "しきしだい", + "pos": "名詞", + "pn": -0.151228 + }, + { + "surface": "備忘", + "readging": "びぼう", + "pos": "名詞", + "pn": -0.151244 + }, + { + "surface": "油分", + "readging": "ゆぶん", + "pos": "名詞", + "pn": -0.151256 + }, + { + "surface": "式年", + "readging": "しきねん", + "pos": "名詞", + "pn": -0.151256 + }, + { + "surface": "同床異夢", + "readging": "どうしょういむ", + "pos": "名詞", + "pn": -0.151259 + }, + { + "surface": "そうにょう", + "readging": "そうにょう", + "pos": "名詞", + "pn": -0.151266 + }, + { + "surface": "しんにゅう", + "readging": "しんにゅう", + "pos": "名詞", + "pn": -0.151266 + }, + { + "surface": "要員", + "readging": "よういん", + "pos": "名詞", + "pn": -0.151285 + }, + { + "surface": "下火", + "readging": "したび", + "pos": "名詞", + "pn": -0.151288 + }, + { + "surface": "目慣れる", + "readging": "めなれる", + "pos": "動詞", + "pn": -0.151302 + }, + { + "surface": "四幅", + "readging": "よの", + "pos": "名詞", + "pn": -0.151304 + }, + { + "surface": "ごろ寝", + "readging": "ごろね", + "pos": "名詞", + "pn": -0.151308 + }, + { + "surface": "外題", + "readging": "げだい", + "pos": "名詞", + "pn": -0.151319 + }, + { + "surface": "薄紗", + "readging": "はくさ", + "pos": "名詞", + "pn": -0.151333 + }, + { + "surface": "南緯", + "readging": "なんい", + "pos": "名詞", + "pn": -0.151355 + }, + { + "surface": "遺精", + "readging": "いせい", + "pos": "名詞", + "pn": -0.151356 + }, + { + "surface": "亢竜", + "readging": "こうりょう", + "pos": "名詞", + "pn": -0.151411 + }, + { + "surface": "美辞麗句", + "readging": "びじれいく", + "pos": "名詞", + "pn": -0.151431 + }, + { + "surface": "病舎", + "readging": "びょうしゃ", + "pos": "名詞", + "pn": -0.151441 + }, + { + "surface": "内縁", + "readging": "ないえん", + "pos": "名詞", + "pn": -0.151463 + }, + { + "surface": "世界国家", + "readging": "せかいこっか", + "pos": "名詞", + "pn": -0.151475 + }, + { + "surface": "職掌", + "readging": "しょくしょう", + "pos": "名詞", + "pn": -0.151499 + }, + { + "surface": "ブラック", + "readging": "ブラックリスト", + "pos": "名詞", + "pn": -0.151507 + }, + { + "surface": "神政", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.151524 + }, + { + "surface": "言及", + "readging": "げんきゅう", + "pos": "名詞", + "pn": -0.151628 + }, + { + "surface": "檜舞台", + "readging": "ひのきぶたい", + "pos": "名詞", + "pn": -0.151629 + }, + { + "surface": "忠実", + "readging": "ちゅうじつ", + "pos": "名詞", + "pn": -0.151629 + }, + { + "surface": "殿舎", + "readging": "でんしゃ", + "pos": "名詞", + "pn": -0.151654 + }, + { + "surface": "出回る", + "readging": "でまわる", + "pos": "動詞", + "pn": -0.15166 + }, + { + "surface": "分轄", + "readging": "ぶんかつ", + "pos": "名詞", + "pn": -0.15166 + }, + { + "surface": "教官", + "readging": "きょうかん", + "pos": "名詞", + "pn": -0.151677 + }, + { + "surface": "濃化", + "readging": "のうか", + "pos": "名詞", + "pn": -0.151699 + }, + { + "surface": "読誦", + "readging": "どくじゅ", + "pos": "名詞", + "pn": -0.151744 + }, + { + "surface": "断念", + "readging": "だんねん", + "pos": "名詞", + "pn": -0.151749 + }, + { + "surface": "がかい", + "readging": "がかい", + "pos": "名詞", + "pn": -0.151755 + }, + { + "surface": "茂り合う", + "readging": "しげりあう", + "pos": "動詞", + "pn": -0.15177 + }, + { + "surface": "即事", + "readging": "そくじ", + "pos": "名詞", + "pn": -0.151782 + }, + { + "surface": "逐字", + "readging": "ちくじ", + "pos": "名詞", + "pn": -0.15179 + }, + { + "surface": "必中", + "readging": "ひっちゅう", + "pos": "名詞", + "pn": -0.151825 + }, + { + "surface": "打破", + "readging": "だは", + "pos": "名詞", + "pn": -0.151826 + }, + { + "surface": "佐", + "readging": "さ", + "pos": "名詞", + "pn": -0.151844 + }, + { + "surface": "支弁", + "readging": "しべん", + "pos": "名詞", + "pn": -0.15187 + }, + { + "surface": "後払い", + "readging": "あとばらい", + "pos": "名詞", + "pn": -0.151873 + }, + { + "surface": "検知", + "readging": "けんち", + "pos": "名詞", + "pn": -0.151874 + }, + { + "surface": "足拍子", + "readging": "あしびょうし", + "pos": "名詞", + "pn": -0.151905 + }, + { + "surface": "初旬", + "readging": "しょじゅん", + "pos": "名詞", + "pn": -0.151913 + }, + { + "surface": "島嶼", + "readging": "とうしょ", + "pos": "名詞", + "pn": -0.151919 + }, + { + "surface": "大衆文学", + "readging": "たいしゅうぶんがく", + "pos": "名詞", + "pn": -0.151929 + }, + { + "surface": "賢所", + "readging": "かしこどころ", + "pos": "名詞", + "pn": -0.151941 + }, + { + "surface": "子別れ", + "readging": "こわかれ", + "pos": "名詞", + "pn": -0.151945 + }, + { + "surface": "夜船", + "readging": "よふね", + "pos": "名詞", + "pn": -0.151951 + }, + { + "surface": "乱取り", + "readging": "らんどり", + "pos": "名詞", + "pn": -0.151959 + }, + { + "surface": "自分史", + "readging": "じぶんし", + "pos": "名詞", + "pn": -0.151979 + }, + { + "surface": "加比丹", + "readging": "カピタン", + "pos": "名詞", + "pn": -0.15199 + }, + { + "surface": "家作", + "readging": "かさく", + "pos": "名詞", + "pn": -0.151994 + }, + { + "surface": "無償", + "readging": "むしょう", + "pos": "名詞", + "pn": -0.152014 + }, + { + "surface": "ばてる", + "readging": "ばてる", + "pos": "動詞", + "pn": -0.152025 + }, + { + "surface": "渡船場", + "readging": "とせんば", + "pos": "名詞", + "pn": -0.152027 + }, + { + "surface": "減法", + "readging": "げんぽう", + "pos": "名詞", + "pn": -0.152036 + }, + { + "surface": "耐用", + "readging": "たいよう", + "pos": "名詞", + "pn": -0.152048 + }, + { + "surface": "国府", + "readging": "こくふ", + "pos": "名詞", + "pn": -0.152073 + }, + { + "surface": "暁雲", + "readging": "ぎょううん", + "pos": "名詞", + "pn": -0.152086 + }, + { + "surface": "観照", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.15209 + }, + { + "surface": "タイ記録", + "readging": "タイきろく", + "pos": "名詞", + "pn": -0.152091 + }, + { + "surface": "立法権", + "readging": "りっぽうけん", + "pos": "名詞", + "pn": -0.152112 + }, + { + "surface": "公序", + "readging": "こうじょ", + "pos": "名詞", + "pn": -0.152115 + }, + { + "surface": "ボーカル", + "readging": "ボーカル", + "pos": "名詞", + "pn": -0.152136 + }, + { + "surface": "母御", + "readging": "ははご", + "pos": "名詞", + "pn": -0.152159 + }, + { + "surface": "私設", + "readging": "しせつ", + "pos": "名詞", + "pn": -0.152173 + }, + { + "surface": "セールス", + "readging": "セールス", + "pos": "名詞", + "pn": -0.152178 + }, + { + "surface": "一汁一菜", + "readging": "いちじゅういっさい", + "pos": "名詞", + "pn": -0.152179 + }, + { + "surface": "向い合せ", + "readging": "むかいあわせ", + "pos": "名詞", + "pn": -0.152217 + }, + { + "surface": "パララックス", + "readging": "パララックス", + "pos": "名詞", + "pn": -0.152218 + }, + { + "surface": "わりない", + "readging": "わりない", + "pos": "形容詞", + "pn": -0.152224 + }, + { + "surface": "教諭", + "readging": "きょうゆ", + "pos": "名詞", + "pn": -0.152237 + }, + { + "surface": "熟読", + "readging": "じゅくどく", + "pos": "名詞", + "pn": -0.152255 + }, + { + "surface": "卒読", + "readging": "そつどく", + "pos": "名詞", + "pn": -0.152257 + }, + { + "surface": "急送", + "readging": "きゅうそう", + "pos": "名詞", + "pn": -0.152259 + }, + { + "surface": "フィヨルド", + "readging": "フィヨルド", + "pos": "名詞", + "pn": -0.152275 + }, + { + "surface": "所収", + "readging": "しょしゅう", + "pos": "名詞", + "pn": -0.152285 + }, + { + "surface": "起し", + "readging": "おこし", + "pos": "名詞", + "pn": -0.152288 + }, + { + "surface": "成仏", + "readging": "じょうぶつ", + "pos": "名詞", + "pn": -0.152289 + }, + { + "surface": "サイネリア", + "readging": "サイネリア", + "pos": "名詞", + "pn": -0.152291 + }, + { + "surface": "青む", + "readging": "あおむ", + "pos": "動詞", + "pn": -0.152292 + }, + { + "surface": "忠臣", + "readging": "ちゅうしん", + "pos": "名詞", + "pn": -0.152299 + }, + { + "surface": "等角", + "readging": "とうかく", + "pos": "名詞", + "pn": -0.152306 + }, + { + "surface": "腹筋", + "readging": "はらすじ", + "pos": "名詞", + "pn": -0.152333 + }, + { + "surface": "パゴダ", + "readging": "パゴダ", + "pos": "名詞", + "pn": -0.152343 + }, + { + "surface": "遅延", + "readging": "ちえん", + "pos": "名詞", + "pn": -0.152356 + }, + { + "surface": "学会", + "readging": "がっかい", + "pos": "名詞", + "pn": -0.152402 + }, + { + "surface": "聞置く", + "readging": "ききおく", + "pos": "動詞", + "pn": -0.152409 + }, + { + "surface": "紙の木", + "readging": "かみのき", + "pos": "名詞", + "pn": -0.152415 + }, + { + "surface": "出府", + "readging": "しゅっぷ", + "pos": "名詞", + "pn": -0.152423 + }, + { + "surface": "落葉樹", + "readging": "らくようじゅ", + "pos": "名詞", + "pn": -0.152428 + }, + { + "surface": "裁量", + "readging": "さいりょう", + "pos": "名詞", + "pn": -0.152478 + }, + { + "surface": "手不足", + "readging": "てぶそく", + "pos": "名詞", + "pn": -0.152491 + }, + { + "surface": "仏工", + "readging": "ぶっこう", + "pos": "名詞", + "pn": -0.152496 + }, + { + "surface": "拝金", + "readging": "はいきん", + "pos": "名詞", + "pn": -0.152503 + }, + { + "surface": "座主", + "readging": "ざす", + "pos": "名詞", + "pn": -0.152518 + }, + { + "surface": "ライダー", + "readging": "ライダー", + "pos": "名詞", + "pn": -0.152523 + }, + { + "surface": "秒針", + "readging": "びょうしん", + "pos": "名詞", + "pn": -0.152532 + }, + { + "surface": "人文主義", + "readging": "じんぶんしゅぎ", + "pos": "名詞", + "pn": -0.152552 + }, + { + "surface": "採鉱", + "readging": "さいこう", + "pos": "名詞", + "pn": -0.152579 + }, + { + "surface": "発条", + "readging": "はつじょう", + "pos": "名詞", + "pn": -0.152581 + }, + { + "surface": "聞付ける", + "readging": "ききつける", + "pos": "動詞", + "pn": -0.152583 + }, + { + "surface": "実学", + "readging": "じつがく", + "pos": "名詞", + "pn": -0.152588 + }, + { + "surface": "市民権", + "readging": "しみんけん", + "pos": "名詞", + "pn": -0.152615 + }, + { + "surface": "御苑", + "readging": "ぎょえん", + "pos": "名詞", + "pn": -0.152616 + }, + { + "surface": "裏声", + "readging": "うらごえ", + "pos": "名詞", + "pn": -0.152617 + }, + { + "surface": "重弁", + "readging": "じゅうべん", + "pos": "名詞", + "pn": -0.152626 + }, + { + "surface": "じめじめ", + "readging": "じめじめ", + "pos": "副詞", + "pn": -0.152635 + }, + { + "surface": "下洗い", + "readging": "したあらい", + "pos": "名詞", + "pn": -0.152646 + }, + { + "surface": "低み", + "readging": "ひくみ", + "pos": "名詞", + "pn": -0.152665 + }, + { + "surface": "初日影", + "readging": "はつひかげ", + "pos": "名詞", + "pn": -0.15268 + }, + { + "surface": "衆徒", + "readging": "しゅと", + "pos": "名詞", + "pn": -0.15269 + }, + { + "surface": "薄口", + "readging": "うすくち", + "pos": "名詞", + "pn": -0.152691 + }, + { + "surface": "ストップ", + "readging": "ストップ", + "pos": "名詞", + "pn": -0.152692 + }, + { + "surface": "訳述", + "readging": "やくじゅつ", + "pos": "名詞", + "pn": -0.152701 + }, + { + "surface": "総有", + "readging": "そうゆう", + "pos": "名詞", + "pn": -0.152723 + }, + { + "surface": "テクニック", + "readging": "テクニック", + "pos": "名詞", + "pn": -0.152724 + }, + { + "surface": "甘煮", + "readging": "うまに", + "pos": "名詞", + "pn": -0.152725 + }, + { + "surface": "対地", + "readging": "たいち", + "pos": "名詞", + "pn": -0.152733 + }, + { + "surface": "宿無し", + "readging": "やどなし", + "pos": "名詞", + "pn": -0.152737 + }, + { + "surface": "お守", + "readging": "おまもり", + "pos": "名詞", + "pn": -0.152737 + }, + { + "surface": "配本", + "readging": "はいほん", + "pos": "名詞", + "pn": -0.152748 + }, + { + "surface": "禿筆", + "readging": "ちびふで", + "pos": "名詞", + "pn": -0.152756 + }, + { + "surface": "前夜祭", + "readging": "ぜんやさい", + "pos": "名詞", + "pn": -0.152784 + }, + { + "surface": "大多数", + "readging": "だいたすう", + "pos": "名詞", + "pn": -0.152792 + }, + { + "surface": "花柄", + "readging": "はながら", + "pos": "名詞", + "pn": -0.152817 + }, + { + "surface": "溜り場", + "readging": "たまりば", + "pos": "名詞", + "pn": -0.152828 + }, + { + "surface": "夜営", + "readging": "やえい", + "pos": "名詞", + "pn": -0.152843 + }, + { + "surface": "陪聴", + "readging": "ばいちょう", + "pos": "名詞", + "pn": -0.152846 + }, + { + "surface": "画舫", + "readging": "がぼう", + "pos": "名詞", + "pn": -0.152865 + }, + { + "surface": "外相", + "readging": "がいしょう", + "pos": "名詞", + "pn": -0.152867 + }, + { + "surface": "上等兵", + "readging": "じょうとうへい", + "pos": "名詞", + "pn": -0.152882 + }, + { + "surface": "党紀", + "readging": "とうき", + "pos": "名詞", + "pn": -0.152884 + }, + { + "surface": "浮遊生物", + "readging": "ふゆうせいぶつ", + "pos": "名詞", + "pn": -0.152897 + }, + { + "surface": "建売", + "readging": "たてうり", + "pos": "名詞", + "pn": -0.152909 + }, + { + "surface": "打設", + "readging": "だせつ", + "pos": "名詞", + "pn": -0.152924 + }, + { + "surface": "蛮族", + "readging": "ばんぞく", + "pos": "名詞", + "pn": -0.152937 + }, + { + "surface": "受託", + "readging": "じゅたく", + "pos": "名詞", + "pn": -0.152944 + }, + { + "surface": "実理", + "readging": "じつり", + "pos": "名詞", + "pn": -0.152945 + }, + { + "surface": "一騎討", + "readging": "いっきうち", + "pos": "名詞", + "pn": -0.152946 + }, + { + "surface": "オフ", + "readging": "オフ", + "pos": "名詞", + "pn": -0.152955 + }, + { + "surface": "総勢", + "readging": "そうぜい", + "pos": "名詞", + "pn": -0.152971 + }, + { + "surface": "要談", + "readging": "ようだん", + "pos": "名詞", + "pn": -0.152981 + }, + { + "surface": "変性", + "readging": "ヘんせい", + "pos": "名詞", + "pn": -0.152996 + }, + { + "surface": "漁区", + "readging": "ぎょく", + "pos": "名詞", + "pn": -0.152996 + }, + { + "surface": "擬音", + "readging": "ぎおん", + "pos": "名詞", + "pn": -0.15301 + }, + { + "surface": "撤廃", + "readging": "てっぱい", + "pos": "名詞", + "pn": -0.153018 + }, + { + "surface": "原体験", + "readging": "げんたいけん", + "pos": "名詞", + "pn": -0.153031 + }, + { + "surface": "白帆", + "readging": "しらほ", + "pos": "名詞", + "pn": -0.153034 + }, + { + "surface": "保する", + "readging": "ほする", + "pos": "動詞", + "pn": -0.153034 + }, + { + "surface": "効用", + "readging": "こうよう", + "pos": "名詞", + "pn": -0.153043 + }, + { + "surface": "撤回", + "readging": "てっかい", + "pos": "名詞", + "pn": -0.153075 + }, + { + "surface": "光電池", + "readging": "こうでんち", + "pos": "名詞", + "pn": -0.153092 + }, + { + "surface": "過疎", + "readging": "かそ", + "pos": "名詞", + "pn": -0.153093 + }, + { + "surface": "面持", + "readging": "おももち", + "pos": "名詞", + "pn": -0.153094 + }, + { + "surface": "語手", + "readging": "かたりて", + "pos": "名詞", + "pn": -0.1531 + }, + { + "surface": "月表", + "readging": "げっぴょう", + "pos": "名詞", + "pn": -0.153109 + }, + { + "surface": "楽長", + "readging": "がくちょう", + "pos": "名詞", + "pn": -0.153111 + }, + { + "surface": "自陣", + "readging": "じじん", + "pos": "名詞", + "pn": -0.153127 + }, + { + "surface": "副署", + "readging": "ふくしょ", + "pos": "名詞", + "pn": -0.153128 + }, + { + "surface": "百年目", + "readging": "ひゃくねんめ", + "pos": "名詞", + "pn": -0.153182 + }, + { + "surface": "中間色", + "readging": "ちゅうかんしょく", + "pos": "名詞", + "pn": -0.153201 + }, + { + "surface": "新開地", + "readging": "しんかいち", + "pos": "名詞", + "pn": -0.153201 + }, + { + "surface": "パーコレーター", + "readging": "パーコレーター", + "pos": "名詞", + "pn": -0.153216 + }, + { + "surface": "摺足", + "readging": "すりあし", + "pos": "名詞", + "pn": -0.153219 + }, + { + "surface": "公孫", + "readging": "こうそん", + "pos": "名詞", + "pn": -0.153228 + }, + { + "surface": "自由放任", + "readging": "じゆうほうにん", + "pos": "名詞", + "pn": -0.153235 + }, + { + "surface": "労農", + "readging": "ろうのう", + "pos": "名詞", + "pn": -0.153266 + }, + { + "surface": "入獄", + "readging": "にゅうごく", + "pos": "名詞", + "pn": -0.153278 + }, + { + "surface": "紀年", + "readging": "きねん", + "pos": "名詞", + "pn": -0.153297 + }, + { + "surface": "影向", + "readging": "ようごう", + "pos": "名詞", + "pn": -0.153319 + }, + { + "surface": "内奥", + "readging": "ないおう", + "pos": "名詞", + "pn": -0.153321 + }, + { + "surface": "工費", + "readging": "こうひ", + "pos": "名詞", + "pn": -0.153337 + }, + { + "surface": "停留", + "readging": "ていりゅう", + "pos": "名詞", + "pn": -0.153339 + }, + { + "surface": "胴忘れ", + "readging": "どうわすれ", + "pos": "名詞", + "pn": -0.153341 + }, + { + "surface": "マキシマム", + "readging": "マキシマム", + "pos": "名詞", + "pn": -0.153361 + }, + { + "surface": "使い水", + "readging": "つかいみず", + "pos": "名詞", + "pn": -0.153365 + }, + { + "surface": "静電気", + "readging": "せいでんき", + "pos": "名詞", + "pn": -0.153365 + }, + { + "surface": "大戸", + "readging": "おおど", + "pos": "名詞", + "pn": -0.15337 + }, + { + "surface": "家屋敷", + "readging": "いえやしき", + "pos": "名詞", + "pn": -0.15337 + }, + { + "surface": "下町", + "readging": "したまち", + "pos": "名詞", + "pn": -0.15338 + }, + { + "surface": "フィンガー ボウル", + "readging": "フィンガー ボウル", + "pos": "名詞", + "pn": -0.15339 + }, + { + "surface": "春作", + "readging": "はるさく", + "pos": "名詞", + "pn": -0.153392 + }, + { + "surface": "初酉", + "readging": "はつとり", + "pos": "名詞", + "pn": -0.153393 + }, + { + "surface": "社会科", + "readging": "しゃかいか", + "pos": "名詞", + "pn": -0.153405 + }, + { + "surface": "官邸", + "readging": "かんてい", + "pos": "名詞", + "pn": -0.153405 + }, + { + "surface": "尊号", + "readging": "そんごう", + "pos": "名詞", + "pn": -0.153469 + }, + { + "surface": "島山", + "readging": "しまやま", + "pos": "名詞", + "pn": -0.153471 + }, + { + "surface": "酒食", + "readging": "しゅしょく", + "pos": "名詞", + "pn": -0.153473 + }, + { + "surface": "共立", + "readging": "きょうりつ", + "pos": "名詞", + "pn": -0.153477 + }, + { + "surface": "近古", + "readging": "きんこ", + "pos": "名詞", + "pn": -0.153486 + }, + { + "surface": "別送", + "readging": "べっそう", + "pos": "名詞", + "pn": -0.153487 + }, + { + "surface": "式事", + "readging": "しきじ", + "pos": "名詞", + "pn": -0.153488 + }, + { + "surface": "汗牛充棟", + "readging": "かんぎゅうじゅうとう", + "pos": "名詞", + "pn": -0.153502 + }, + { + "surface": "複文", + "readging": "ふくぶん", + "pos": "名詞", + "pn": -0.153544 + }, + { + "surface": "玉除け", + "readging": "たまよけ", + "pos": "名詞", + "pn": -0.153552 + }, + { + "surface": "各界", + "readging": "かっかい", + "pos": "名詞", + "pn": -0.153552 + }, + { + "surface": "ミリバール", + "readging": "ミリバール", + "pos": "名詞", + "pn": -0.153586 + }, + { + "surface": "又貸し", + "readging": "またがし", + "pos": "名詞", + "pn": -0.153589 + }, + { + "surface": "婿がね", + "readging": "むこがね", + "pos": "名詞", + "pn": -0.153592 + }, + { + "surface": "倒幕", + "readging": "とうばく", + "pos": "名詞", + "pn": -0.153607 + }, + { + "surface": "美顔", + "readging": "びがん", + "pos": "名詞", + "pn": -0.153643 + }, + { + "surface": "聴神経", + "readging": "ちょうしんけい", + "pos": "名詞", + "pn": -0.153655 + }, + { + "surface": "部屋割", + "readging": "へやわり", + "pos": "名詞", + "pn": -0.153673 + }, + { + "surface": "対陣", + "readging": "たいじん", + "pos": "名詞", + "pn": -0.153695 + }, + { + "surface": "対価", + "readging": "たいか", + "pos": "名詞", + "pn": -0.153699 + }, + { + "surface": "遠縁", + "readging": "とおえん", + "pos": "名詞", + "pn": -0.153699 + }, + { + "surface": "書起す", + "readging": "かきおこす", + "pos": "動詞", + "pn": -0.153704 + }, + { + "surface": "大老", + "readging": "たいろう", + "pos": "名詞", + "pn": -0.153713 + }, + { + "surface": "根号", + "readging": "こんごう", + "pos": "名詞", + "pn": -0.15373 + }, + { + "surface": "呼ばわり", + "readging": "よばわり", + "pos": "名詞", + "pn": -0.15374 + }, + { + "surface": "発令", + "readging": "はつれい", + "pos": "名詞", + "pn": -0.153742 + }, + { + "surface": "合切", + "readging": "がっさい", + "pos": "名詞", + "pn": -0.153752 + }, + { + "surface": "逃走", + "readging": "とうそう", + "pos": "名詞", + "pn": -0.153754 + }, + { + "surface": "道術", + "readging": "どうじゅつ", + "pos": "名詞", + "pn": -0.153781 + }, + { + "surface": "ラブ", + "readging": "ラブレター", + "pos": "名詞", + "pn": -0.15379 + }, + { + "surface": "予報", + "readging": "よほう", + "pos": "名詞", + "pn": -0.153836 + }, + { + "surface": "下相談", + "readging": "したそうだん", + "pos": "名詞", + "pn": -0.153855 + }, + { + "surface": "表決", + "readging": "ひょうけつ", + "pos": "名詞", + "pn": -0.153884 + }, + { + "surface": "通分", + "readging": "つうぶん", + "pos": "名詞", + "pn": -0.153908 + }, + { + "surface": "共用", + "readging": "きょうよう", + "pos": "名詞", + "pn": -0.153912 + }, + { + "surface": "設定", + "readging": "せってい", + "pos": "名詞", + "pn": -0.153934 + }, + { + "surface": "吉野桜", + "readging": "よしのざくら", + "pos": "名詞", + "pn": -0.153947 + }, + { + "surface": "原級", + "readging": "げんきゅう", + "pos": "名詞", + "pn": -0.153948 + }, + { + "surface": "天眼通", + "readging": "てんがんつう", + "pos": "名詞", + "pn": -0.153949 + }, + { + "surface": "視する", + "readging": "しする", + "pos": "動詞", + "pn": -0.153958 + }, + { + "surface": "十", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.153983 + }, + { + "surface": "夜学", + "readging": "やがく", + "pos": "名詞", + "pn": -0.153984 + }, + { + "surface": "訓導", + "readging": "くんどう", + "pos": "名詞", + "pn": -0.15399 + }, + { + "surface": "バラス", + "readging": "バラス", + "pos": "名詞", + "pn": -0.153992 + }, + { + "surface": "貴族院", + "readging": "きぞくいん", + "pos": "名詞", + "pn": -0.154003 + }, + { + "surface": "言暮す", + "readging": "いいくらす", + "pos": "動詞", + "pn": -0.15401 + }, + { + "surface": "手兵", + "readging": "しゅへい", + "pos": "名詞", + "pn": -0.154037 + }, + { + "surface": "允可", + "readging": "いんか", + "pos": "名詞", + "pn": -0.154052 + }, + { + "surface": "マスター", + "readging": "マスター", + "pos": "名詞", + "pn": -0.154057 + }, + { + "surface": "着荷", + "readging": "ちゃっか", + "pos": "名詞", + "pn": -0.154073 + }, + { + "surface": "減衰", + "readging": "げんすい", + "pos": "名詞", + "pn": -0.154087 + }, + { + "surface": "略解", + "readging": "りゃっかい", + "pos": "名詞", + "pn": -0.154105 + }, + { + "surface": "マネー", + "readging": "マネービル", + "pos": "名詞", + "pn": -0.154105 + }, + { + "surface": "新月", + "readging": "しんげつ", + "pos": "名詞", + "pn": -0.154116 + }, + { + "surface": "異動", + "readging": "いどう", + "pos": "名詞", + "pn": -0.154137 + }, + { + "surface": "列火", + "readging": "れっか", + "pos": "名詞", + "pn": -0.15415 + }, + { + "surface": "センサス", + "readging": "センサス", + "pos": "名詞", + "pn": -0.154153 + }, + { + "surface": "金聾", + "readging": "かなつんぼ", + "pos": "名詞", + "pn": -0.154155 + }, + { + "surface": "バーター制", + "readging": "バーターせい", + "pos": "名詞", + "pn": -0.154164 + }, + { + "surface": "十人十色", + "readging": "じゅうにんといろ", + "pos": "名詞", + "pn": -0.15417 + }, + { + "surface": "出来合う", + "readging": "できあう", + "pos": "動詞", + "pn": -0.154177 + }, + { + "surface": "ゼミナール", + "readging": "ゼミナール", + "pos": "名詞", + "pn": -0.154178 + }, + { + "surface": "半夏生", + "readging": "はんげしょう", + "pos": "名詞", + "pn": -0.154185 + }, + { + "surface": "法学", + "readging": "ほうがく", + "pos": "名詞", + "pn": -0.154236 + }, + { + "surface": "スキャッブ", + "readging": "スキャッブ", + "pos": "名詞", + "pn": -0.154264 + }, + { + "surface": "背走", + "readging": "はいそう", + "pos": "名詞", + "pn": -0.154294 + }, + { + "surface": "公文", + "readging": "こうぶん", + "pos": "名詞", + "pn": -0.154303 + }, + { + "surface": "ウオツカ", + "readging": "ウオツカ", + "pos": "名詞", + "pn": -0.154305 + }, + { + "surface": "余録", + "readging": "よろく", + "pos": "名詞", + "pn": -0.154313 + }, + { + "surface": "閉口頓首", + "readging": "へいこうとんしゅ", + "pos": "名詞", + "pn": -0.154318 + }, + { + "surface": "悪趣味", + "readging": "あくしゅみ", + "pos": "名詞", + "pn": -0.154331 + }, + { + "surface": "明証", + "readging": "めいしょう", + "pos": "名詞", + "pn": -0.154333 + }, + { + "surface": "自尽", + "readging": "じじん", + "pos": "名詞", + "pn": -0.154348 + }, + { + "surface": "師家", + "readging": "しか", + "pos": "名詞", + "pn": -0.15435 + }, + { + "surface": "越境", + "readging": "えっきょう", + "pos": "名詞", + "pn": -0.154353 + }, + { + "surface": "術語", + "readging": "じゅつご", + "pos": "名詞", + "pn": -0.154361 + }, + { + "surface": "ラップトップ", + "readging": "ラップトップ", + "pos": "名詞", + "pn": -0.154363 + }, + { + "surface": "戯作者", + "readging": "げさくしゃ", + "pos": "名詞", + "pn": -0.154369 + }, + { + "surface": "広っぱ", + "readging": "ひろっぱ", + "pos": "名詞", + "pn": -0.154372 + }, + { + "surface": "世話役", + "readging": "せわやく", + "pos": "名詞", + "pn": -0.154381 + }, + { + "surface": "閉会", + "readging": "へいかい", + "pos": "名詞", + "pn": -0.154401 + }, + { + "surface": "吟社", + "readging": "ぎんしゃ", + "pos": "名詞", + "pn": -0.154405 + }, + { + "surface": "黙契", + "readging": "もっけい", + "pos": "名詞", + "pn": -0.154409 + }, + { + "surface": "列侯", + "readging": "れっこう", + "pos": "名詞", + "pn": -0.15441 + }, + { + "surface": "元朝", + "readging": "がんちょう", + "pos": "名詞", + "pn": -0.154412 + }, + { + "surface": "しこしこ", + "readging": "しこしこ", + "pos": "副詞", + "pn": -0.154415 + }, + { + "surface": "クエスチョン マーク", + "readging": "クエスチョン マーク", + "pos": "名詞", + "pn": -0.154448 + }, + { + "surface": "魚肥", + "readging": "ぎょひ", + "pos": "名詞", + "pn": -0.154456 + }, + { + "surface": "情操", + "readging": "じょうそう", + "pos": "名詞", + "pn": -0.154459 + }, + { + "surface": "生類", + "readging": "しょうるい", + "pos": "名詞", + "pn": -0.154462 + }, + { + "surface": "停船", + "readging": "ていせん", + "pos": "名詞", + "pn": -0.154462 + }, + { + "surface": "年賀", + "readging": "ねんが", + "pos": "名詞", + "pn": -0.154466 + }, + { + "surface": "カルテット", + "readging": "カルテット", + "pos": "名詞", + "pn": -0.154509 + }, + { + "surface": "フィーリング", + "readging": "フィーリング", + "pos": "名詞", + "pn": -0.154513 + }, + { + "surface": "自火", + "readging": "じか", + "pos": "名詞", + "pn": -0.154527 + }, + { + "surface": "味到", + "readging": "みとう", + "pos": "名詞", + "pn": -0.154545 + }, + { + "surface": "働き者", + "readging": "はたらきもの", + "pos": "名詞", + "pn": -0.154548 + }, + { + "surface": "労使", + "readging": "ろうし", + "pos": "名詞", + "pn": -0.154554 + }, + { + "surface": "松過ぎ", + "readging": "まつすぎ", + "pos": "名詞", + "pn": -0.154562 + }, + { + "surface": "給付", + "readging": "きゅうふ", + "pos": "名詞", + "pn": -0.15457 + }, + { + "surface": "大衆魚", + "readging": "たいしゅうぎょ", + "pos": "名詞", + "pn": -0.154595 + }, + { + "surface": "令する", + "readging": "れいする", + "pos": "動詞", + "pn": -0.15461 + }, + { + "surface": "対語", + "readging": "たいご", + "pos": "名詞", + "pn": -0.154613 + }, + { + "surface": "内税", + "readging": "うちぜい", + "pos": "名詞", + "pn": -0.154648 + }, + { + "surface": "二の矢", + "readging": "にのや", + "pos": "名詞", + "pn": -0.154654 + }, + { + "surface": "金貸", + "readging": "かねかし", + "pos": "名詞", + "pn": -0.154655 + }, + { + "surface": "面晤", + "readging": "めんご", + "pos": "名詞", + "pn": -0.154658 + }, + { + "surface": "シーン", + "readging": "シーン", + "pos": "名詞", + "pn": -0.154662 + }, + { + "surface": "火宅", + "readging": "かたく", + "pos": "名詞", + "pn": -0.154665 + }, + { + "surface": "異類", + "readging": "いるい", + "pos": "名詞", + "pn": -0.154686 + }, + { + "surface": "母音", + "readging": "ぼおん", + "pos": "名詞", + "pn": -0.154686 + }, + { + "surface": "編者", + "readging": "へんしゃ", + "pos": "名詞", + "pn": -0.154696 + }, + { + "surface": "イレブン", + "readging": "イレブン", + "pos": "名詞", + "pn": -0.154699 + }, + { + "surface": "分宿", + "readging": "ぶんしゅく", + "pos": "名詞", + "pn": -0.1547 + }, + { + "surface": "代務", + "readging": "だいむ", + "pos": "名詞", + "pn": -0.154701 + }, + { + "surface": "勿論", + "readging": "もちろん", + "pos": "副詞", + "pn": -0.15474 + }, + { + "surface": "魅了", + "readging": "みりょう", + "pos": "名詞", + "pn": -0.154746 + }, + { + "surface": "古式", + "readging": "こしき", + "pos": "名詞", + "pn": -0.154746 + }, + { + "surface": "エッセンス", + "readging": "エッセンス", + "pos": "名詞", + "pn": -0.154755 + }, + { + "surface": "戒壇", + "readging": "かいだん", + "pos": "名詞", + "pn": -0.154766 + }, + { + "surface": "蚊除け", + "readging": "かよけ", + "pos": "名詞", + "pn": -0.154775 + }, + { + "surface": "句切", + "readging": "くぎり", + "pos": "名詞", + "pn": -0.154811 + }, + { + "surface": "十日", + "readging": "とおか", + "pos": "名詞", + "pn": -0.154853 + }, + { + "surface": "自由経済", + "readging": "じゆうけいざい", + "pos": "名詞", + "pn": -0.154862 + }, + { + "surface": "主因", + "readging": "しゅいん", + "pos": "名詞", + "pn": -0.154878 + }, + { + "surface": "従価税", + "readging": "じゅうかぜい", + "pos": "名詞", + "pn": -0.154881 + }, + { + "surface": "御製", + "readging": "ぎょせい", + "pos": "名詞", + "pn": -0.154881 + }, + { + "surface": "実員", + "readging": "じついん", + "pos": "名詞", + "pn": -0.15489 + }, + { + "surface": "用例", + "readging": "ようれい", + "pos": "名詞", + "pn": -0.154892 + }, + { + "surface": "諸山", + "readging": "しょざん", + "pos": "名詞", + "pn": -0.154894 + }, + { + "surface": "起算", + "readging": "きさん", + "pos": "名詞", + "pn": -0.1549 + }, + { + "surface": "国教", + "readging": "こっきょう", + "pos": "名詞", + "pn": -0.154901 + }, + { + "surface": "一院制", + "readging": "いちいんせい", + "pos": "名詞", + "pn": -0.154922 + }, + { + "surface": "復活祭", + "readging": "ふっかつさい", + "pos": "名詞", + "pn": -0.15494 + }, + { + "surface": "群居", + "readging": "ぐんきょ", + "pos": "名詞", + "pn": -0.154941 + }, + { + "surface": "半金", + "readging": "はんきん", + "pos": "名詞", + "pn": -0.154955 + }, + { + "surface": "地積", + "readging": "ちせき", + "pos": "名詞", + "pn": -0.154972 + }, + { + "surface": "振捨てる", + "readging": "ふりすてる", + "pos": "動詞", + "pn": -0.154989 + }, + { + "surface": "千鈞", + "readging": "せんきん", + "pos": "名詞", + "pn": -0.155003 + }, + { + "surface": "馬跳", + "readging": "うまとび", + "pos": "名詞", + "pn": -0.155003 + }, + { + "surface": "沃化", + "readging": "ようか", + "pos": "名詞", + "pn": -0.155036 + }, + { + "surface": "連年", + "readging": "れんねん", + "pos": "名詞", + "pn": -0.155038 + }, + { + "surface": "老農", + "readging": "ろうのう", + "pos": "名詞", + "pn": -0.155041 + }, + { + "surface": "后", + "readging": "ご", + "pos": "名詞", + "pn": -0.155051 + }, + { + "surface": "共産圏", + "readging": "きょうさんけん", + "pos": "名詞", + "pn": -0.155053 + }, + { + "surface": "公民権", + "readging": "こうみんけん", + "pos": "名詞", + "pn": -0.155061 + }, + { + "surface": "掃討", + "readging": "そうとう", + "pos": "名詞", + "pn": -0.155063 + }, + { + "surface": "お湿り", + "readging": "おしめり", + "pos": "名詞", + "pn": -0.155065 + }, + { + "surface": "君民同治", + "readging": "くんみんどうち", + "pos": "名詞", + "pn": -0.155066 + }, + { + "surface": "クリスマス", + "readging": "クリスマスイブ", + "pos": "名詞", + "pn": -0.155083 + }, + { + "surface": "論纂", + "readging": "ろんさん", + "pos": "名詞", + "pn": -0.155092 + }, + { + "surface": "仏書", + "readging": "ぶっしょ", + "pos": "名詞", + "pn": -0.155102 + }, + { + "surface": "身の程知らず", + "readging": "みのほどしらず", + "pos": "名詞", + "pn": -0.155108 + }, + { + "surface": "無痛", + "readging": "むつう", + "pos": "名詞", + "pn": -0.155122 + }, + { + "surface": "納豆", + "readging": "なっとう", + "pos": "名詞", + "pn": -0.155132 + }, + { + "surface": "ソープレス ソープ", + "readging": "ソープレス ソープ", + "pos": "名詞", + "pn": -0.15518 + }, + { + "surface": "社費", + "readging": "しゃひ", + "pos": "名詞", + "pn": -0.155181 + }, + { + "surface": "内廷", + "readging": "ないてい", + "pos": "名詞", + "pn": -0.155191 + }, + { + "surface": "生魚", + "readging": "なまうお", + "pos": "名詞", + "pn": -0.155198 + }, + { + "surface": "ひたひた", + "readging": "ひたひた", + "pos": "副詞", + "pn": -0.155201 + }, + { + "surface": "月俸", + "readging": "げっぽう", + "pos": "名詞", + "pn": -0.155201 + }, + { + "surface": "こりこり", + "readging": "こりこり", + "pos": "副詞", + "pn": -0.155213 + }, + { + "surface": "麦藁蜻蛉", + "readging": "むぎわらとんぼ", + "pos": "名詞", + "pn": -0.155226 + }, + { + "surface": "道破", + "readging": "どうは", + "pos": "名詞", + "pn": -0.155263 + }, + { + "surface": "作風", + "readging": "さくふう", + "pos": "名詞", + "pn": -0.155277 + }, + { + "surface": "ユニット", + "readging": "ユニット", + "pos": "名詞", + "pn": -0.155284 + }, + { + "surface": "文題", + "readging": "ぶんだい", + "pos": "名詞", + "pn": -0.155295 + }, + { + "surface": "幽界", + "readging": "ゆうかい", + "pos": "名詞", + "pn": -0.155306 + }, + { + "surface": "時貸し", + "readging": "ときがし", + "pos": "名詞", + "pn": -0.155313 + }, + { + "surface": "体用", + "readging": "たいよう", + "pos": "名詞", + "pn": -0.155349 + }, + { + "surface": "遠火", + "readging": "とおび", + "pos": "名詞", + "pn": -0.155356 + }, + { + "surface": "短資", + "readging": "たんし", + "pos": "名詞", + "pn": -0.15536 + }, + { + "surface": "真言宗", + "readging": "しんごんしゅう", + "pos": "名詞", + "pn": -0.155375 + }, + { + "surface": "真鯉", + "readging": "まごい", + "pos": "名詞", + "pn": -0.15541 + }, + { + "surface": "現住", + "readging": "げんじゅう", + "pos": "名詞", + "pn": -0.155446 + }, + { + "surface": "前前", + "readging": "まえまえ", + "pos": "名詞", + "pn": -0.155451 + }, + { + "surface": "胸毛", + "readging": "むなげ", + "pos": "名詞", + "pn": -0.155452 + }, + { + "surface": "竹夫人", + "readging": "ちくふじん", + "pos": "名詞", + "pn": -0.155472 + }, + { + "surface": "アルミナ", + "readging": "アルミナ", + "pos": "名詞", + "pn": -0.155498 + }, + { + "surface": "入質", + "readging": "にゅうしち", + "pos": "名詞", + "pn": -0.155519 + }, + { + "surface": "不入り", + "readging": "ふいり", + "pos": "名詞", + "pn": -0.15552 + }, + { + "surface": "暗闘", + "readging": "あんとう", + "pos": "名詞", + "pn": -0.155527 + }, + { + "surface": "経伝", + "readging": "けいでん", + "pos": "名詞", + "pn": -0.155543 + }, + { + "surface": "波瀾万丈", + "readging": "はらんばんじょう", + "pos": "名詞", + "pn": -0.155548 + }, + { + "surface": "特級", + "readging": "とっきゅう", + "pos": "名詞", + "pn": -0.155573 + }, + { + "surface": "主権在民", + "readging": "しゅけんざいみん", + "pos": "名詞", + "pn": -0.155582 + }, + { + "surface": "混戦", + "readging": "こんせん", + "pos": "名詞", + "pn": -0.155584 + }, + { + "surface": "玉の輿", + "readging": "たまのこし", + "pos": "名詞", + "pn": -0.155628 + }, + { + "surface": "朝憲", + "readging": "ちょうけん", + "pos": "名詞", + "pn": -0.155645 + }, + { + "surface": "転地", + "readging": "てんち", + "pos": "名詞", + "pn": -0.155654 + }, + { + "surface": "掴み取り", + "readging": "つかみどり", + "pos": "名詞", + "pn": -0.155665 + }, + { + "surface": "人君", + "readging": "じんくん", + "pos": "名詞", + "pn": -0.155691 + }, + { + "surface": "同道", + "readging": "どうどう", + "pos": "名詞", + "pn": -0.155692 + }, + { + "surface": "軍紀", + "readging": "ぐんき", + "pos": "名詞", + "pn": -0.155704 + }, + { + "surface": "生壁", + "readging": "なまかべ", + "pos": "名詞", + "pn": -0.155707 + }, + { + "surface": "内装", + "readging": "ないそう", + "pos": "名詞", + "pn": -0.155719 + }, + { + "surface": "ビジネス", + "readging": "ビジネス", + "pos": "名詞", + "pn": -0.155733 + }, + { + "surface": "バイ プレーヤー", + "readging": "バイ プレーヤー", + "pos": "名詞", + "pn": -0.155765 + }, + { + "surface": "居然", + "readging": "きょぜん", + "pos": "名詞", + "pn": -0.155773 + }, + { + "surface": "松韻", + "readging": "しょういん", + "pos": "名詞", + "pn": -0.155783 + }, + { + "surface": "諸兄", + "readging": "しょけい", + "pos": "名詞", + "pn": -0.155813 + }, + { + "surface": "楽師", + "readging": "がくし", + "pos": "名詞", + "pn": -0.155822 + }, + { + "surface": "文化科学", + "readging": "ぶんかかがく", + "pos": "名詞", + "pn": -0.155855 + }, + { + "surface": "右岸", + "readging": "うがん", + "pos": "名詞", + "pn": -0.155857 + }, + { + "surface": "帰艦", + "readging": "きかん", + "pos": "名詞", + "pn": -0.155865 + }, + { + "surface": "御念", + "readging": "ごねん", + "pos": "名詞", + "pn": -0.155874 + }, + { + "surface": "憂国", + "readging": "ゆうこく", + "pos": "名詞", + "pn": -0.155876 + }, + { + "surface": "御新造", + "readging": "ごしんぞう", + "pos": "名詞", + "pn": -0.155878 + }, + { + "surface": "女手", + "readging": "おんなで", + "pos": "名詞", + "pn": -0.155878 + }, + { + "surface": "樽俎", + "readging": "そんそ", + "pos": "名詞", + "pn": -0.155894 + }, + { + "surface": "征夷大将軍", + "readging": "せいいたいしょうぐん", + "pos": "名詞", + "pn": -0.155896 + }, + { + "surface": "大震", + "readging": "たいしん", + "pos": "名詞", + "pn": -0.15593 + }, + { + "surface": "植生", + "readging": "しょくせい", + "pos": "名詞", + "pn": -0.155949 + }, + { + "surface": "彩度", + "readging": "さいど", + "pos": "名詞", + "pn": -0.155951 + }, + { + "surface": "白光", + "readging": "はっこう", + "pos": "名詞", + "pn": -0.155952 + }, + { + "surface": "山鳴り", + "readging": "やまなり", + "pos": "名詞", + "pn": -0.15596 + }, + { + "surface": "浅酌", + "readging": "せんしゃく", + "pos": "名詞", + "pn": -0.155968 + }, + { + "surface": "暴飲", + "readging": "ぼういん", + "pos": "名詞", + "pn": -0.155972 + }, + { + "surface": "深酒", + "readging": "ふかざけ", + "pos": "名詞", + "pn": -0.155972 + }, + { + "surface": "後山", + "readging": "あとやま", + "pos": "名詞", + "pn": -0.155976 + }, + { + "surface": "振回す", + "readging": "ふりまわす", + "pos": "動詞", + "pn": -0.155986 + }, + { + "surface": "男女", + "readging": "おとこおんな", + "pos": "名詞", + "pn": -0.155989 + }, + { + "surface": "旧債", + "readging": "きゅうさい", + "pos": "名詞", + "pn": -0.155999 + }, + { + "surface": "水圏", + "readging": "すいけん", + "pos": "名詞", + "pn": -0.156022 + }, + { + "surface": "九", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.156049 + }, + { + "surface": "連子鯛", + "readging": "れんこだい", + "pos": "名詞", + "pn": -0.156052 + }, + { + "surface": "裾濃", + "readging": "すそご", + "pos": "名詞", + "pn": -0.156068 + }, + { + "surface": "五教", + "readging": "ごきょう", + "pos": "名詞", + "pn": -0.15607 + }, + { + "surface": "欠課", + "readging": "けっか", + "pos": "名詞", + "pn": -0.15607 + }, + { + "surface": "撤去", + "readging": "てっきょ", + "pos": "名詞", + "pn": -0.156072 + }, + { + "surface": "サーモン", + "readging": "サーモン", + "pos": "名詞", + "pn": -0.156101 + }, + { + "surface": "乱射乱撃", + "readging": "らんしゃらんげき", + "pos": "名詞", + "pn": -0.156148 + }, + { + "surface": "製塩", + "readging": "せいえん", + "pos": "名詞", + "pn": -0.156169 + }, + { + "surface": "打連れる", + "readging": "うちつれる", + "pos": "動詞", + "pn": -0.156175 + }, + { + "surface": "相生", + "readging": "そうしょう", + "pos": "名詞", + "pn": -0.156206 + }, + { + "surface": "自筆", + "readging": "じひつ", + "pos": "名詞", + "pn": -0.156232 + }, + { + "surface": "せん方", + "readging": "せんかた", + "pos": "名詞", + "pn": -0.156239 + }, + { + "surface": "酔顔", + "readging": "すいがん", + "pos": "名詞", + "pn": -0.156244 + }, + { + "surface": "水深", + "readging": "すいしん", + "pos": "名詞", + "pn": -0.156283 + }, + { + "surface": "薩摩守", + "readging": "さつまのかみ", + "pos": "名詞", + "pn": -0.156284 + }, + { + "surface": "和姦", + "readging": "わかん", + "pos": "名詞", + "pn": -0.156288 + }, + { + "surface": "火柱", + "readging": "ひばしら", + "pos": "名詞", + "pn": -0.156313 + }, + { + "surface": "衛視", + "readging": "えいし", + "pos": "名詞", + "pn": -0.156313 + }, + { + "surface": "心神", + "readging": "しんしん", + "pos": "名詞", + "pn": -0.156335 + }, + { + "surface": "当住", + "readging": "とうじゅう", + "pos": "名詞", + "pn": -0.156336 + }, + { + "surface": "清浄野菜", + "readging": "せいじょうやさい", + "pos": "名詞", + "pn": -0.156369 + }, + { + "surface": "待人", + "readging": "まちびと", + "pos": "名詞", + "pn": -0.156372 + }, + { + "surface": "船待ち", + "readging": "ふなまち", + "pos": "名詞", + "pn": -0.156372 + }, + { + "surface": "新店", + "readging": "しんみせ", + "pos": "名詞", + "pn": -0.156377 + }, + { + "surface": "かみさん", + "readging": "かみさん", + "pos": "名詞", + "pn": -0.156379 + }, + { + "surface": "空即是色", + "readging": "くうそくぜしき", + "pos": "名詞", + "pn": -0.156401 + }, + { + "surface": "骨っ節", + "readging": "ほねっぷし", + "pos": "名詞", + "pn": -0.156422 + }, + { + "surface": "店懸り", + "readging": "みせがかり", + "pos": "名詞", + "pn": -0.156427 + }, + { + "surface": "主潮", + "readging": "しゅちょう", + "pos": "名詞", + "pn": -0.156428 + }, + { + "surface": "出廷", + "readging": "しゅってい", + "pos": "名詞", + "pn": -0.156429 + }, + { + "surface": "目積り", + "readging": "めづもり", + "pos": "名詞", + "pn": -0.156437 + }, + { + "surface": "重点主義", + "readging": "じゅうてんしゅぎ", + "pos": "名詞", + "pn": -0.156456 + }, + { + "surface": "経産婦", + "readging": "けいさんぷ", + "pos": "名詞", + "pn": -0.156473 + }, + { + "surface": "音律", + "readging": "おんりつ", + "pos": "名詞", + "pn": -0.156485 + }, + { + "surface": "旧暦", + "readging": "きゅうれき", + "pos": "名詞", + "pn": -0.156492 + }, + { + "surface": "重恩", + "readging": "じゅうおん", + "pos": "名詞", + "pn": -0.156498 + }, + { + "surface": "田圃", + "readging": "たんぼ", + "pos": "名詞", + "pn": -0.156503 + }, + { + "surface": "パーサー", + "readging": "パーサー", + "pos": "名詞", + "pn": -0.156505 + }, + { + "surface": "純分", + "readging": "じゅんぶん", + "pos": "名詞", + "pn": -0.156507 + }, + { + "surface": "様変り", + "readging": "さまがわり", + "pos": "名詞", + "pn": -0.156517 + }, + { + "surface": "装画", + "readging": "そうが", + "pos": "名詞", + "pn": -0.156539 + }, + { + "surface": "連雀", + "readging": "れんじゃく", + "pos": "名詞", + "pn": -0.156547 + }, + { + "surface": "女坂", + "readging": "おんなざか", + "pos": "名詞", + "pn": -0.156551 + }, + { + "surface": "ピッコロ", + "readging": "ピッコロ", + "pos": "名詞", + "pn": -0.15656 + }, + { + "surface": "不戦勝", + "readging": "ふせんしょう", + "pos": "名詞", + "pn": -0.156568 + }, + { + "surface": "不戦敗", + "readging": "ふせんぱい", + "pos": "名詞", + "pn": -0.156577 + }, + { + "surface": "氷雨", + "readging": "ひさめ", + "pos": "名詞", + "pn": -0.156584 + }, + { + "surface": "冷雨", + "readging": "れいう", + "pos": "名詞", + "pn": -0.156584 + }, + { + "surface": "神宮寺", + "readging": "じんぐうじ", + "pos": "名詞", + "pn": -0.156601 + }, + { + "surface": "禁句", + "readging": "きんく", + "pos": "名詞", + "pn": -0.156614 + }, + { + "surface": "舷門", + "readging": "げんもん", + "pos": "名詞", + "pn": -0.156617 + }, + { + "surface": "朝潮", + "readging": "あさしお", + "pos": "名詞", + "pn": -0.156617 + }, + { + "surface": "徳操", + "readging": "とくそう", + "pos": "名詞", + "pn": -0.15662 + }, + { + "surface": "押麦", + "readging": "おしむぎ", + "pos": "名詞", + "pn": -0.156622 + }, + { + "surface": "褻", + "readging": "け", + "pos": "名詞", + "pn": -0.156623 + }, + { + "surface": "天帝", + "readging": "てんてい", + "pos": "名詞", + "pn": -0.156623 + }, + { + "surface": "ベトン", + "readging": "ベトン", + "pos": "名詞", + "pn": -0.156626 + }, + { + "surface": "口絵", + "readging": "くちえ", + "pos": "名詞", + "pn": -0.156628 + }, + { + "surface": "書き言葉", + "readging": "かきことば", + "pos": "名詞", + "pn": -0.156629 + }, + { + "surface": "官権", + "readging": "かんけん", + "pos": "名詞", + "pn": -0.156641 + }, + { + "surface": "粉雪", + "readging": "こなゆき", + "pos": "名詞", + "pn": -0.156651 + }, + { + "surface": "日盛り", + "readging": "ひざかり", + "pos": "名詞", + "pn": -0.156657 + }, + { + "surface": "好物", + "readging": "こうぶつ", + "pos": "名詞", + "pn": -0.156668 + }, + { + "surface": "倫理", + "readging": "りんり", + "pos": "名詞", + "pn": -0.156673 + }, + { + "surface": "わかんむり", + "readging": "わかんむり", + "pos": "名詞", + "pn": -0.156679 + }, + { + "surface": "なべぶた", + "readging": "なべぶた", + "pos": "名詞", + "pn": -0.156679 + }, + { + "surface": "竹冠", + "readging": "たけかんむり", + "pos": "名詞", + "pn": -0.156679 + }, + { + "surface": "ミッション", + "readging": "ミッション", + "pos": "名詞", + "pn": -0.156706 + }, + { + "surface": "正法", + "readging": "しょうぼう", + "pos": "名詞", + "pn": -0.15671 + }, + { + "surface": "包蔵", + "readging": "ほうぞう", + "pos": "名詞", + "pn": -0.15673 + }, + { + "surface": "末裔", + "readging": "ばつえい", + "pos": "名詞", + "pn": -0.156736 + }, + { + "surface": "除数", + "readging": "じょすう", + "pos": "名詞", + "pn": -0.156755 + }, + { + "surface": "比価", + "readging": "ひか", + "pos": "名詞", + "pn": -0.156762 + }, + { + "surface": "セピア", + "readging": "セピア", + "pos": "名詞", + "pn": -0.156764 + }, + { + "surface": "黙劇", + "readging": "もくげき", + "pos": "名詞", + "pn": -0.156771 + }, + { + "surface": "敵営", + "readging": "てきえい", + "pos": "名詞", + "pn": -0.156797 + }, + { + "surface": "レポ", + "readging": "レポ", + "pos": "名詞", + "pn": -0.156802 + }, + { + "surface": "御家芸", + "readging": "おいえ", + "pos": "名詞", + "pn": -0.156816 + }, + { + "surface": "着崩れ", + "readging": "きくずれ", + "pos": "名詞", + "pn": -0.156817 + }, + { + "surface": "カンフル", + "readging": "カンフル", + "pos": "名詞", + "pn": -0.15683 + }, + { + "surface": "朗笑", + "readging": "ろうしょう", + "pos": "名詞", + "pn": -0.15684 + }, + { + "surface": "率先", + "readging": "そっせん", + "pos": "名詞", + "pn": -0.156849 + }, + { + "surface": "腕組", + "readging": "うでぐみ", + "pos": "名詞", + "pn": -0.156858 + }, + { + "surface": "官業", + "readging": "かんぎょう", + "pos": "名詞", + "pn": -0.156859 + }, + { + "surface": "再論", + "readging": "さいろん", + "pos": "名詞", + "pn": -0.156864 + }, + { + "surface": "次点", + "readging": "じてん", + "pos": "名詞", + "pn": -0.156877 + }, + { + "surface": "山国", + "readging": "やまぐに", + "pos": "名詞", + "pn": -0.156883 + }, + { + "surface": "茶屋酒", + "readging": "ちゃやざけ", + "pos": "名詞", + "pn": -0.156884 + }, + { + "surface": "蕃地", + "readging": "ばんち", + "pos": "名詞", + "pn": -0.156889 + }, + { + "surface": "糸価", + "readging": "しか", + "pos": "名詞", + "pn": -0.156936 + }, + { + "surface": "胴中", + "readging": "どうなか", + "pos": "名詞", + "pn": -0.156941 + }, + { + "surface": "現状", + "readging": "げんじょう", + "pos": "名詞", + "pn": -0.156964 + }, + { + "surface": "高話", + "readging": "たかばなし", + "pos": "名詞", + "pn": -0.156974 + }, + { + "surface": "義僕", + "readging": "ぎぼく", + "pos": "名詞", + "pn": -0.156977 + }, + { + "surface": "労う", + "readging": "ねぎらう", + "pos": "動詞", + "pn": -0.156979 + }, + { + "surface": "消耗", + "readging": "しょうもう", + "pos": "名詞", + "pn": -0.156981 + }, + { + "surface": "来電", + "readging": "らいでん", + "pos": "名詞", + "pn": -0.156985 + }, + { + "surface": "罪責", + "readging": "ざいせき", + "pos": "名詞", + "pn": -0.156996 + }, + { + "surface": "無気味", + "readging": "ぶきみ", + "pos": "名詞", + "pn": -0.156997 + }, + { + "surface": "第一線", + "readging": "だいいっせん", + "pos": "名詞", + "pn": -0.157006 + }, + { + "surface": "和文", + "readging": "わぶん", + "pos": "名詞", + "pn": -0.157008 + }, + { + "surface": "税収", + "readging": "ぜいしゅう", + "pos": "名詞", + "pn": -0.15702 + }, + { + "surface": "際会", + "readging": "さいかい", + "pos": "名詞", + "pn": -0.157024 + }, + { + "surface": "着尺地", + "readging": "きじゃくじ", + "pos": "名詞", + "pn": -0.157024 + }, + { + "surface": "春耕", + "readging": "しゅんこう", + "pos": "名詞", + "pn": -0.157038 + }, + { + "surface": "手折る", + "readging": "たおる", + "pos": "動詞", + "pn": -0.157051 + }, + { + "surface": "思い入れ", + "readging": "おもいいれ", + "pos": "名詞", + "pn": -0.15709 + }, + { + "surface": "回転子", + "readging": "かいてんし", + "pos": "名詞", + "pn": -0.157092 + }, + { + "surface": "後髪", + "readging": "うしろがみ", + "pos": "名詞", + "pn": -0.157115 + }, + { + "surface": "カンパ", + "readging": "カンパ", + "pos": "名詞", + "pn": -0.157127 + }, + { + "surface": "納品", + "readging": "のうひん", + "pos": "名詞", + "pn": -0.157198 + }, + { + "surface": "南京町", + "readging": "なんきんまち", + "pos": "名詞", + "pn": -0.157211 + }, + { + "surface": "貸間", + "readging": "かしま", + "pos": "名詞", + "pn": -0.157215 + }, + { + "surface": "行蔵", + "readging": "こうぞう", + "pos": "名詞", + "pn": -0.157218 + }, + { + "surface": "胚子", + "readging": "はいし", + "pos": "名詞", + "pn": -0.157231 + }, + { + "surface": "礼楽", + "readging": "れいがく", + "pos": "名詞", + "pn": -0.157235 + }, + { + "surface": "十両", + "readging": "じゅうりょう", + "pos": "名詞", + "pn": -0.157238 + }, + { + "surface": "釣竿", + "readging": "つりざお", + "pos": "名詞", + "pn": -0.157247 + }, + { + "surface": "コロン", + "readging": "コロン", + "pos": "名詞", + "pn": -0.157269 + }, + { + "surface": "自営", + "readging": "じえい", + "pos": "名詞", + "pn": -0.157289 + }, + { + "surface": "長針", + "readging": "ちょうしん", + "pos": "名詞", + "pn": -0.157307 + }, + { + "surface": "当山", + "readging": "とうざん", + "pos": "名詞", + "pn": -0.157349 + }, + { + "surface": "コロシアム", + "readging": "コロシアム", + "pos": "名詞", + "pn": -0.157349 + }, + { + "surface": "全納", + "readging": "ぜんのう", + "pos": "名詞", + "pn": -0.157362 + }, + { + "surface": "お蚕ぐるみ", + "readging": "おかいこぐるみ", + "pos": "名詞", + "pn": -0.157363 + }, + { + "surface": "合宿", + "readging": "がっしゅく", + "pos": "名詞", + "pn": -0.157416 + }, + { + "surface": "荷扱", + "readging": "にあつかい", + "pos": "名詞", + "pn": -0.15742 + }, + { + "surface": "疾走", + "readging": "しっそう", + "pos": "名詞", + "pn": -0.157422 + }, + { + "surface": "乗継ぐ", + "readging": "のりつぐ", + "pos": "動詞", + "pn": -0.157429 + }, + { + "surface": "吟行", + "readging": "ぎんこう", + "pos": "名詞", + "pn": -0.157431 + }, + { + "surface": "早教育", + "readging": "そうきょういく", + "pos": "名詞", + "pn": -0.157464 + }, + { + "surface": "級友", + "readging": "きゅうゆう", + "pos": "名詞", + "pn": -0.157471 + }, + { + "surface": "国辱", + "readging": "こくじょく", + "pos": "名詞", + "pn": -0.157478 + }, + { + "surface": "川中", + "readging": "かわなか", + "pos": "名詞", + "pn": -0.15748 + }, + { + "surface": "絶対多数", + "readging": "ぜったいたすう", + "pos": "名詞", + "pn": -0.157486 + }, + { + "surface": "内服", + "readging": "ないふく", + "pos": "名詞", + "pn": -0.157503 + }, + { + "surface": "横", + "readging": "おう", + "pos": "名詞", + "pn": -0.157504 + }, + { + "surface": "説破", + "readging": "せっぱ", + "pos": "名詞", + "pn": -0.157519 + }, + { + "surface": "真金", + "readging": "まがね", + "pos": "名詞", + "pn": -0.157538 + }, + { + "surface": "最小限", + "readging": "さいしょうげん", + "pos": "名詞", + "pn": -0.157545 + }, + { + "surface": "簡約", + "readging": "かんやく", + "pos": "名詞", + "pn": -0.157557 + }, + { + "surface": "奥の院", + "readging": "おくのいん", + "pos": "名詞", + "pn": -0.157577 + }, + { + "surface": "アニメ", + "readging": "アニメ", + "pos": "名詞", + "pn": -0.157585 + }, + { + "surface": "コンポジション", + "readging": "コンポジション", + "pos": "名詞", + "pn": -0.157599 + }, + { + "surface": "蝦夷", + "readging": "えぞ", + "pos": "名詞", + "pn": -0.157626 + }, + { + "surface": "御府内", + "readging": "ごふない", + "pos": "名詞", + "pn": -0.157649 + }, + { + "surface": "除算", + "readging": "じょざん", + "pos": "名詞", + "pn": -0.157656 + }, + { + "surface": "初耳", + "readging": "はつみみ", + "pos": "名詞", + "pn": -0.157661 + }, + { + "surface": "義妹", + "readging": "ぎまい", + "pos": "名詞", + "pn": -0.157666 + }, + { + "surface": "遺子", + "readging": "いし", + "pos": "名詞", + "pn": -0.157689 + }, + { + "surface": "此の度", + "readging": "このたび", + "pos": "名詞", + "pn": -0.157691 + }, + { + "surface": "推考", + "readging": "すいこう", + "pos": "名詞", + "pn": -0.157697 + }, + { + "surface": "演題", + "readging": "えんだい", + "pos": "名詞", + "pn": -0.157715 + }, + { + "surface": "除籍", + "readging": "じょせき", + "pos": "名詞", + "pn": -0.157723 + }, + { + "surface": "定数", + "readging": "ていすう", + "pos": "名詞", + "pn": -0.157723 + }, + { + "surface": "国侍", + "readging": "くにざむらい", + "pos": "名詞", + "pn": -0.157724 + }, + { + "surface": "学窓", + "readging": "がくそう", + "pos": "名詞", + "pn": -0.157755 + }, + { + "surface": "木炭紙", + "readging": "もくたんし", + "pos": "名詞", + "pn": -0.157809 + }, + { + "surface": "拓殖", + "readging": "たくしょく", + "pos": "名詞", + "pn": -0.157819 + }, + { + "surface": "絵文字", + "readging": "えもじ", + "pos": "名詞", + "pn": -0.157842 + }, + { + "surface": "科挙", + "readging": "かきょ", + "pos": "名詞", + "pn": -0.157893 + }, + { + "surface": "染織", + "readging": "せんしょく", + "pos": "名詞", + "pn": -0.157906 + }, + { + "surface": "定法", + "readging": "じょうほう", + "pos": "名詞", + "pn": -0.157911 + }, + { + "surface": "出典", + "readging": "しゅってん", + "pos": "名詞", + "pn": -0.157928 + }, + { + "surface": "メーク", + "readging": "メーク", + "pos": "名詞", + "pn": -0.157929 + }, + { + "surface": "用向き", + "readging": "ようむき", + "pos": "名詞", + "pn": -0.157963 + }, + { + "surface": "行政協定", + "readging": "ぎょうせいきょうてい", + "pos": "名詞", + "pn": -0.157971 + }, + { + "surface": "新種", + "readging": "しんしゅ", + "pos": "名詞", + "pn": -0.157983 + }, + { + "surface": "水勢", + "readging": "すいせい", + "pos": "名詞", + "pn": -0.157987 + }, + { + "surface": "言下", + "readging": "ごんか", + "pos": "名詞", + "pn": -0.15799 + }, + { + "surface": "発御", + "readging": "はつぎょ", + "pos": "名詞", + "pn": -0.157997 + }, + { + "surface": "森羅万象", + "readging": "しんらばんしょう", + "pos": "名詞", + "pn": -0.158044 + }, + { + "surface": "譲歩", + "readging": "じょうほ", + "pos": "名詞", + "pn": -0.158045 + }, + { + "surface": "生肉", + "readging": "せいにく", + "pos": "名詞", + "pn": -0.15805 + }, + { + "surface": "欧字", + "readging": "おうじ", + "pos": "名詞", + "pn": -0.158055 + }, + { + "surface": "国詰", + "readging": "くにづめ", + "pos": "名詞", + "pn": -0.158078 + }, + { + "surface": "打寄せる", + "readging": "うちよせる", + "pos": "動詞", + "pn": -0.15808 + }, + { + "surface": "アガペー", + "readging": "アガペー", + "pos": "名詞", + "pn": -0.158091 + }, + { + "surface": "有機化学", + "readging": "ゆうきかがく", + "pos": "名詞", + "pn": -0.158092 + }, + { + "surface": "淙淙", + "readging": "そうそう", + "pos": "名詞", + "pn": -0.158092 + }, + { + "surface": "並居る", + "readging": "なみいる", + "pos": "動詞", + "pn": -0.158104 + }, + { + "surface": "貸座敷", + "readging": "かしざしき", + "pos": "名詞", + "pn": -0.158105 + }, + { + "surface": "北斗", + "readging": "ほくと", + "pos": "名詞", + "pn": -0.158116 + }, + { + "surface": "メタル", + "readging": "メタル", + "pos": "名詞", + "pn": -0.158117 + }, + { + "surface": "侍講", + "readging": "じこう", + "pos": "名詞", + "pn": -0.158121 + }, + { + "surface": "要務", + "readging": "ようむ", + "pos": "名詞", + "pn": -0.158123 + }, + { + "surface": "反戦", + "readging": "はんせん", + "pos": "名詞", + "pn": -0.158143 + }, + { + "surface": "根分け", + "readging": "ねわけ", + "pos": "名詞", + "pn": -0.158173 + }, + { + "surface": "特性", + "readging": "とくせい", + "pos": "名詞", + "pn": -0.158177 + }, + { + "surface": "明細", + "readging": "めいさい", + "pos": "名詞", + "pn": -0.158179 + }, + { + "surface": "軍門", + "readging": "ぐんもん", + "pos": "名詞", + "pn": -0.158192 + }, + { + "surface": "黒パン", + "readging": "くろパン", + "pos": "名詞", + "pn": -0.158196 + }, + { + "surface": "川原}{河原", + "readging": "かわら", + "pos": "名詞", + "pn": -0.158197 + }, + { + "surface": "先住", + "readging": "せんじゅう", + "pos": "名詞", + "pn": -0.158214 + }, + { + "surface": "封殺", + "readging": "ふうさつ", + "pos": "名詞", + "pn": -0.158221 + }, + { + "surface": "出ず入らず", + "readging": "でずいらず", + "pos": "名詞", + "pn": -0.158225 + }, + { + "surface": "開講", + "readging": "かいこう", + "pos": "名詞", + "pn": -0.158229 + }, + { + "surface": "全額", + "readging": "ぜんがく", + "pos": "名詞", + "pn": -0.15823 + }, + { + "surface": "謄本", + "readging": "とうほん", + "pos": "名詞", + "pn": -0.158235 + }, + { + "surface": "目性", + "readging": "めしょう", + "pos": "名詞", + "pn": -0.15824 + }, + { + "surface": "恵存", + "readging": "けいぞん", + "pos": "名詞", + "pn": -0.158242 + }, + { + "surface": "乗法", + "readging": "じょうほう", + "pos": "名詞", + "pn": -0.15826 + }, + { + "surface": "飛入り", + "readging": "とびいり", + "pos": "名詞", + "pn": -0.158265 + }, + { + "surface": "戦費", + "readging": "せんぴ", + "pos": "名詞", + "pn": -0.158267 + }, + { + "surface": "積重ねる", + "readging": "つみかさねる", + "pos": "動詞", + "pn": -0.158271 + }, + { + "surface": "野面", + "readging": "のづら", + "pos": "名詞", + "pn": -0.158323 + }, + { + "surface": "寺領", + "readging": "じりょう", + "pos": "名詞", + "pn": -0.158331 + }, + { + "surface": "エキジビション", + "readging": "エキジビション", + "pos": "名詞", + "pn": -0.158338 + }, + { + "surface": "夜長", + "readging": "よなが", + "pos": "名詞", + "pn": -0.158356 + }, + { + "surface": "物は付け", + "readging": "ものはづけ", + "pos": "名詞", + "pn": -0.158366 + }, + { + "surface": "指南番", + "readging": "しなんばん", + "pos": "名詞", + "pn": -0.1584 + }, + { + "surface": "言外", + "readging": "げんがい", + "pos": "名詞", + "pn": -0.1584 + }, + { + "surface": "講和", + "readging": "こうわ", + "pos": "名詞", + "pn": -0.158413 + }, + { + "surface": "冥福", + "readging": "めいふく", + "pos": "名詞", + "pn": -0.158413 + }, + { + "surface": "左大臣", + "readging": "さだいじん", + "pos": "名詞", + "pn": -0.158418 + }, + { + "surface": "物別れ", + "readging": "ものわかれ", + "pos": "名詞", + "pn": -0.158424 + }, + { + "surface": "家君", + "readging": "かくん", + "pos": "名詞", + "pn": -0.15843 + }, + { + "surface": "暗流", + "readging": "あんりゅう", + "pos": "名詞", + "pn": -0.158431 + }, + { + "surface": "下萌え", + "readging": "したもえ", + "pos": "名詞", + "pn": -0.158451 + }, + { + "surface": "水絵", + "readging": "みずえ", + "pos": "名詞", + "pn": -0.158451 + }, + { + "surface": "実践", + "readging": "じっせん", + "pos": "名詞", + "pn": -0.158455 + }, + { + "surface": "服用", + "readging": "ふくよう", + "pos": "名詞", + "pn": -0.158474 + }, + { + "surface": "惚れる", + "readging": "ほれる", + "pos": "動詞", + "pn": -0.158478 + }, + { + "surface": "枝打ち", + "readging": "えだうち", + "pos": "名詞", + "pn": -0.15848 + }, + { + "surface": "雪煙", + "readging": "ゆきけむり", + "pos": "名詞", + "pn": -0.158483 + }, + { + "surface": "月卿雲客", + "readging": "げっけいうんかく", + "pos": "名詞", + "pn": -0.158496 + }, + { + "surface": "勅答", + "readging": "ちょくとう", + "pos": "名詞", + "pn": -0.1585 + }, + { + "surface": "気質", + "readging": "かたぎ", + "pos": "名詞", + "pn": -0.158521 + }, + { + "surface": "富有", + "readging": "ふゆう", + "pos": "名詞", + "pn": -0.158548 + }, + { + "surface": "カリスマ", + "readging": "カリスマ", + "pos": "名詞", + "pn": -0.158554 + }, + { + "surface": "獣心", + "readging": "じゅうしん", + "pos": "名詞", + "pn": -0.158566 + }, + { + "surface": "整地", + "readging": "せいち", + "pos": "名詞", + "pn": -0.158573 + }, + { + "surface": "発砲", + "readging": "はっぽう", + "pos": "名詞", + "pn": -0.158575 + }, + { + "surface": "断熱", + "readging": "だんねつ", + "pos": "名詞", + "pn": -0.158578 + }, + { + "surface": "組付く", + "readging": "くみつく", + "pos": "動詞", + "pn": -0.158583 + }, + { + "surface": "組合う", + "readging": "くみあう", + "pos": "動詞", + "pn": -0.158583 + }, + { + "surface": "ぱちぱち", + "readging": "ぱちぱち", + "pos": "副詞", + "pn": -0.158615 + }, + { + "surface": "神主", + "readging": "かんぬし", + "pos": "名詞", + "pn": -0.158628 + }, + { + "surface": "防諜", + "readging": "ぼうちょう", + "pos": "名詞", + "pn": -0.158631 + }, + { + "surface": "旅僧", + "readging": "たびそう", + "pos": "名詞", + "pn": -0.158634 + }, + { + "surface": "過半", + "readging": "かはん", + "pos": "名詞", + "pn": -0.158652 + }, + { + "surface": "長髪", + "readging": "ちょうはつ", + "pos": "名詞", + "pn": -0.15871 + }, + { + "surface": "属国", + "readging": "ぞっこく", + "pos": "名詞", + "pn": -0.158712 + }, + { + "surface": "地べた", + "readging": "じべた", + "pos": "名詞", + "pn": -0.158713 + }, + { + "surface": "御国", + "readging": "みくに", + "pos": "名詞", + "pn": -0.158719 + }, + { + "surface": "汲干す", + "readging": "くみほす", + "pos": "動詞", + "pn": -0.15872 + }, + { + "surface": "人税", + "readging": "じんぜい", + "pos": "名詞", + "pn": -0.15874 + }, + { + "surface": "社会事業", + "readging": "しゃかいじぎょう", + "pos": "名詞", + "pn": -0.158781 + }, + { + "surface": "休校", + "readging": "きゅうこう", + "pos": "名詞", + "pn": -0.158818 + }, + { + "surface": "学問", + "readging": "がくもん", + "pos": "名詞", + "pn": -0.158821 + }, + { + "surface": "草臥儲", + "readging": "くたびれもうけ", + "pos": "名詞", + "pn": -0.158836 + }, + { + "surface": "香魚", + "readging": "こうぎょ", + "pos": "名詞", + "pn": -0.158837 + }, + { + "surface": "寝正月", + "readging": "ねしょうがつ", + "pos": "名詞", + "pn": -0.158838 + }, + { + "surface": "旅興行", + "readging": "たびこうぎょう", + "pos": "名詞", + "pn": -0.158858 + }, + { + "surface": "今生", + "readging": "こんじょう", + "pos": "名詞", + "pn": -0.158861 + }, + { + "surface": "絛虫", + "readging": "じょうちゅう", + "pos": "名詞", + "pn": -0.15887 + }, + { + "surface": "政党政治", + "readging": "せいとうせいじ", + "pos": "名詞", + "pn": -0.158879 + }, + { + "surface": "宝蔵", + "readging": "ほうぞう", + "pos": "名詞", + "pn": -0.158885 + }, + { + "surface": "減益", + "readging": "げんえき", + "pos": "名詞", + "pn": -0.158903 + }, + { + "surface": "帰り新参", + "readging": "かえりしんざん", + "pos": "名詞", + "pn": -0.158915 + }, + { + "surface": "鑑賞", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.158915 + }, + { + "surface": "清純", + "readging": "せいじゅん", + "pos": "名詞", + "pn": -0.158922 + }, + { + "surface": "愛執", + "readging": "あいしゅう", + "pos": "名詞", + "pn": -0.158925 + }, + { + "surface": "駅頭", + "readging": "えきとう", + "pos": "名詞", + "pn": -0.158927 + }, + { + "surface": "等比数列", + "readging": "とうひすうれつ", + "pos": "名詞", + "pn": -0.158958 + }, + { + "surface": "小為替", + "readging": "こがわせ", + "pos": "名詞", + "pn": -0.158964 + }, + { + "surface": "エックス", + "readging": "エックス", + "pos": "名詞", + "pn": -0.158967 + }, + { + "surface": "新枕", + "readging": "にいまくら", + "pos": "名詞", + "pn": -0.158975 + }, + { + "surface": "霊肉", + "readging": "れいにく", + "pos": "名詞", + "pn": -0.15898 + }, + { + "surface": "急派", + "readging": "きゅうは", + "pos": "名詞", + "pn": -0.158989 + }, + { + "surface": "定例", + "readging": "ていれい", + "pos": "名詞", + "pn": -0.159006 + }, + { + "surface": "白鳥", + "readging": "しらとり", + "pos": "名詞", + "pn": -0.159012 + }, + { + "surface": "次席", + "readging": "じせき", + "pos": "名詞", + "pn": -0.159024 + }, + { + "surface": "一層", + "readging": "いっそう", + "pos": "副詞", + "pn": -0.159097 + }, + { + "surface": "白書", + "readging": "はくしょ", + "pos": "名詞", + "pn": -0.1591 + }, + { + "surface": "マイコン", + "readging": "マイコン", + "pos": "名詞", + "pn": -0.159105 + }, + { + "surface": "奇数", + "readging": "きすう", + "pos": "名詞", + "pn": -0.159108 + }, + { + "surface": "驃騎兵", + "readging": "ひょうきへい", + "pos": "名詞", + "pn": -0.159109 + }, + { + "surface": "タロ芋", + "readging": "タロいも", + "pos": "名詞", + "pn": -0.159136 + }, + { + "surface": "新繭", + "readging": "しんまゆ", + "pos": "名詞", + "pn": -0.159141 + }, + { + "surface": "精銅", + "readging": "せいどう", + "pos": "名詞", + "pn": -0.159153 + }, + { + "surface": "利鎌", + "readging": "とがま", + "pos": "名詞", + "pn": -0.159168 + }, + { + "surface": "静けさ", + "readging": "しずけさ", + "pos": "名詞", + "pn": -0.159189 + }, + { + "surface": "終審", + "readging": "しゅうしん", + "pos": "名詞", + "pn": -0.159209 + }, + { + "surface": "満座", + "readging": "まんざ", + "pos": "名詞", + "pn": -0.159214 + }, + { + "surface": "見受ける", + "readging": "みうける", + "pos": "動詞", + "pn": -0.159217 + }, + { + "surface": "食", + "readging": "し", + "pos": "名詞", + "pn": -0.159225 + }, + { + "surface": "現送", + "readging": "げんそう", + "pos": "名詞", + "pn": -0.159252 + }, + { + "surface": "類語", + "readging": "るいご", + "pos": "名詞", + "pn": -0.159258 + }, + { + "surface": "奥山", + "readging": "おくやま", + "pos": "名詞", + "pn": -0.159265 + }, + { + "surface": "精精", + "readging": "せいぜい", + "pos": "副詞", + "pn": -0.159274 + }, + { + "surface": "三顧", + "readging": "さんこ", + "pos": "名詞", + "pn": -0.159291 + }, + { + "surface": "独断論", + "readging": "どくだんろん", + "pos": "名詞", + "pn": -0.159292 + }, + { + "surface": "進撃", + "readging": "しんげき", + "pos": "名詞", + "pn": -0.159301 + }, + { + "surface": "色白", + "readging": "いろじろ", + "pos": "名詞", + "pn": -0.159343 + }, + { + "surface": "国務長官", + "readging": "こくむちょうかん", + "pos": "名詞", + "pn": -0.159344 + }, + { + "surface": "調伏", + "readging": "ちょうぶく", + "pos": "名詞", + "pn": -0.159364 + }, + { + "surface": "内地雑居", + "readging": "ないちざっきょ", + "pos": "名詞", + "pn": -0.15937 + }, + { + "surface": "虫時雨", + "readging": "むししぐれ", + "pos": "名詞", + "pn": -0.159372 + }, + { + "surface": "瀞", + "readging": "とろ", + "pos": "名詞", + "pn": -0.159421 + }, + { + "surface": "道統", + "readging": "どうとう", + "pos": "名詞", + "pn": -0.159445 + }, + { + "surface": "雨声", + "readging": "うせい", + "pos": "名詞", + "pn": -0.159448 + }, + { + "surface": "配備", + "readging": "はいび", + "pos": "名詞", + "pn": -0.159449 + }, + { + "surface": "機首", + "readging": "きしゅ", + "pos": "名詞", + "pn": -0.159452 + }, + { + "surface": "定型", + "readging": "ていけい", + "pos": "名詞", + "pn": -0.159457 + }, + { + "surface": "徂来", + "readging": "そらい", + "pos": "名詞", + "pn": -0.159487 + }, + { + "surface": "一統", + "readging": "いっとう", + "pos": "名詞", + "pn": -0.159498 + }, + { + "surface": "出動", + "readging": "しゅつどう", + "pos": "名詞", + "pn": -0.159498 + }, + { + "surface": "定訳", + "readging": "ていやく", + "pos": "名詞", + "pn": -0.159508 + }, + { + "surface": "雛菓子", + "readging": "ひながし", + "pos": "名詞", + "pn": -0.15951 + }, + { + "surface": "旗艦", + "readging": "きかん", + "pos": "名詞", + "pn": -0.15951 + }, + { + "surface": "猥談", + "readging": "わいだん", + "pos": "名詞", + "pn": -0.159511 + }, + { + "surface": "人糞", + "readging": "じんぷん", + "pos": "名詞", + "pn": -0.159519 + }, + { + "surface": "抜からぬ顔", + "readging": "ぬからぬかお", + "pos": "名詞", + "pn": -0.159532 + }, + { + "surface": "行金", + "readging": "こうきん", + "pos": "名詞", + "pn": -0.159542 + }, + { + "surface": "ほんま", + "readging": "ほんま", + "pos": "名詞", + "pn": -0.159557 + }, + { + "surface": "銀坑", + "readging": "ぎんこう", + "pos": "名詞", + "pn": -0.159561 + }, + { + "surface": "免租", + "readging": "めんそ", + "pos": "名詞", + "pn": -0.159571 + }, + { + "surface": "然", + "readging": "ぜん", + "pos": "副詞", + "pn": -0.159576 + }, + { + "surface": "生醤油", + "readging": "きじょうゆ", + "pos": "名詞", + "pn": -0.159577 + }, + { + "surface": "軍制", + "readging": "ぐんせい", + "pos": "名詞", + "pn": -0.159587 + }, + { + "surface": "経済学", + "readging": "けいざいがく", + "pos": "名詞", + "pn": -0.159595 + }, + { + "surface": "割方", + "readging": "わりかた", + "pos": "副詞", + "pn": -0.159617 + }, + { + "surface": "円とう", + "readging": "えんとう", + "pos": "名詞", + "pn": -0.159635 + }, + { + "surface": "異", + "readging": "こと", + "pos": "名詞", + "pn": -0.159652 + }, + { + "surface": "軍律", + "readging": "ぐんりつ", + "pos": "名詞", + "pn": -0.159662 + }, + { + "surface": "自力門", + "readging": "じりきもん", + "pos": "名詞", + "pn": -0.159668 + }, + { + "surface": "悍婦", + "readging": "かんぷ", + "pos": "名詞", + "pn": -0.159678 + }, + { + "surface": "多恨", + "readging": "たこん", + "pos": "名詞", + "pn": -0.159688 + }, + { + "surface": "同好", + "readging": "どうこう", + "pos": "名詞", + "pn": -0.159713 + }, + { + "surface": "主筋", + "readging": "しゅうすじ", + "pos": "名詞", + "pn": -0.159716 + }, + { + "surface": "必修", + "readging": "ひっしゅう", + "pos": "名詞", + "pn": -0.159725 + }, + { + "surface": "為書", + "readging": "ためがき", + "pos": "名詞", + "pn": -0.159726 + }, + { + "surface": "遺墨", + "readging": "いぼく", + "pos": "名詞", + "pn": -0.159749 + }, + { + "surface": "初任", + "readging": "しょにん", + "pos": "名詞", + "pn": -0.159787 + }, + { + "surface": "伝播", + "readging": "でんぱ", + "pos": "名詞", + "pn": -0.159802 + }, + { + "surface": "粗削り", + "readging": "あらけずり", + "pos": "名詞", + "pn": -0.159816 + }, + { + "surface": "隷農", + "readging": "れいのう", + "pos": "名詞", + "pn": -0.159828 + }, + { + "surface": "丙", + "readging": "へい", + "pos": "名詞", + "pn": -0.159845 + }, + { + "surface": "小文字", + "readging": "こもじ", + "pos": "名詞", + "pn": -0.159845 + }, + { + "surface": "狩場", + "readging": "かりば", + "pos": "名詞", + "pn": -0.159868 + }, + { + "surface": "没却", + "readging": "ぼっきゃく", + "pos": "名詞", + "pn": -0.15987 + }, + { + "surface": "外層", + "readging": "がいそう", + "pos": "名詞", + "pn": -0.159871 + }, + { + "surface": "明星", + "readging": "みょうじょう", + "pos": "名詞", + "pn": -0.159874 + }, + { + "surface": "反骨", + "readging": "はんこつ", + "pos": "名詞", + "pn": -0.159877 + }, + { + "surface": "巡覧", + "readging": "じゅんらん", + "pos": "名詞", + "pn": -0.159884 + }, + { + "surface": "大農", + "readging": "だいのう", + "pos": "名詞", + "pn": -0.159893 + }, + { + "surface": "流眄", + "readging": "りゅうべん", + "pos": "名詞", + "pn": -0.159901 + }, + { + "surface": "誅戮", + "readging": "ちゅうりく", + "pos": "名詞", + "pn": -0.15991 + }, + { + "surface": "心柄", + "readging": "こころがら", + "pos": "名詞", + "pn": -0.15992 + }, + { + "surface": "送辞", + "readging": "そうじ", + "pos": "名詞", + "pn": -0.159938 + }, + { + "surface": "あれしき", + "readging": "あれしき", + "pos": "名詞", + "pn": -0.159946 + }, + { + "surface": "再議", + "readging": "さいぎ", + "pos": "名詞", + "pn": -0.159951 + }, + { + "surface": "縮減", + "readging": "しゅくげん", + "pos": "名詞", + "pn": -0.15996 + }, + { + "surface": "解体", + "readging": "かいたい", + "pos": "名詞", + "pn": -0.159973 + }, + { + "surface": "評釈", + "readging": "ひょうしゃく", + "pos": "名詞", + "pn": -0.159983 + }, + { + "surface": "導出", + "readging": "どうしゅつ", + "pos": "名詞", + "pn": -0.159994 + }, + { + "surface": "未来記", + "readging": "みらいき", + "pos": "名詞", + "pn": -0.160006 + }, + { + "surface": "和讚", + "readging": "わさん", + "pos": "名詞", + "pn": -0.160009 + }, + { + "surface": "入試", + "readging": "にゅうし", + "pos": "名詞", + "pn": -0.160017 + }, + { + "surface": "宮", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.160018 + }, + { + "surface": "再再", + "readging": "さいさい", + "pos": "名詞", + "pn": -0.160026 + }, + { + "surface": "黄金", + "readging": "おうごん", + "pos": "名詞", + "pn": -0.160039 + }, + { + "surface": "旧盆", + "readging": "きゅうぼん", + "pos": "名詞", + "pn": -0.160049 + }, + { + "surface": "初句", + "readging": "しょく", + "pos": "名詞", + "pn": -0.160057 + }, + { + "surface": "俗輩", + "readging": "ぞくはい", + "pos": "名詞", + "pn": -0.16006 + }, + { + "surface": "商状", + "readging": "しょうじょう", + "pos": "名詞", + "pn": -0.160063 + }, + { + "surface": "旋転", + "readging": "せんてん", + "pos": "名詞", + "pn": -0.160067 + }, + { + "surface": "作り話", + "readging": "つくりばなし", + "pos": "名詞", + "pn": -0.160067 + }, + { + "surface": "据置", + "readging": "すえおき", + "pos": "名詞", + "pn": -0.160082 + }, + { + "surface": "推計学", + "readging": "すいけいがく", + "pos": "名詞", + "pn": -0.160092 + }, + { + "surface": "束脩", + "readging": "そくしゅう", + "pos": "名詞", + "pn": -0.160111 + }, + { + "surface": "山焼き", + "readging": "やまやき", + "pos": "名詞", + "pn": -0.160112 + }, + { + "surface": "あてがう", + "readging": "あてがう", + "pos": "動詞", + "pn": -0.160114 + }, + { + "surface": "月明", + "readging": "げつめい", + "pos": "名詞", + "pn": -0.160116 + }, + { + "surface": "談義", + "readging": "だんぎ", + "pos": "名詞", + "pn": -0.160118 + }, + { + "surface": "黒目勝ち", + "readging": "くろめがち", + "pos": "名詞", + "pn": -0.160126 + }, + { + "surface": "浜手", + "readging": "はまて", + "pos": "名詞", + "pn": -0.160135 + }, + { + "surface": "夕潮", + "readging": "ゆうしお", + "pos": "名詞", + "pn": -0.160138 + }, + { + "surface": "立竦む", + "readging": "たちすくむ", + "pos": "動詞", + "pn": -0.160142 + }, + { + "surface": "現品", + "readging": "げんぴん", + "pos": "名詞", + "pn": -0.160161 + }, + { + "surface": "たんさん", + "readging": "たんさんガス", + "pos": "名詞", + "pn": -0.160162 + }, + { + "surface": "長道", + "readging": "ながみち", + "pos": "名詞", + "pn": -0.16017 + }, + { + "surface": "目線", + "readging": "めせん", + "pos": "名詞", + "pn": -0.160175 + }, + { + "surface": "諷誦", + "readging": "ふうしょう", + "pos": "名詞", + "pn": -0.160175 + }, + { + "surface": "教徒", + "readging": "きょうと", + "pos": "名詞", + "pn": -0.160193 + }, + { + "surface": "お鏡", + "readging": "おかがみ", + "pos": "名詞", + "pn": -0.160234 + }, + { + "surface": "特別法", + "readging": "とくべつほう", + "pos": "名詞", + "pn": -0.160237 + }, + { + "surface": "大言壮語", + "readging": "たいげんそうご", + "pos": "名詞", + "pn": -0.160242 + }, + { + "surface": "古希", + "readging": "こき", + "pos": "名詞", + "pn": -0.160269 + }, + { + "surface": "擬する", + "readging": "ぎする", + "pos": "動詞", + "pn": -0.160273 + }, + { + "surface": "株間", + "readging": "かぶま", + "pos": "名詞", + "pn": -0.160276 + }, + { + "surface": "御料地", + "readging": "ごりょうち", + "pos": "名詞", + "pn": -0.160277 + }, + { + "surface": "譚歌", + "readging": "たんか", + "pos": "名詞", + "pn": -0.160279 + }, + { + "surface": "取持つ", + "readging": "とりもつ", + "pos": "動詞", + "pn": -0.160287 + }, + { + "surface": "訴願", + "readging": "そがん", + "pos": "名詞", + "pn": -0.160288 + }, + { + "surface": "洋灰", + "readging": "ようかい", + "pos": "名詞", + "pn": -0.16031 + }, + { + "surface": "散票", + "readging": "さんぴょう", + "pos": "名詞", + "pn": -0.160322 + }, + { + "surface": "衣糧", + "readging": "いりょう", + "pos": "名詞", + "pn": -0.16034 + }, + { + "surface": "禁圧", + "readging": "きんあつ", + "pos": "名詞", + "pn": -0.160341 + }, + { + "surface": "草競馬", + "readging": "くさけいば", + "pos": "名詞", + "pn": -0.16038 + }, + { + "surface": "烈日", + "readging": "れつじつ", + "pos": "名詞", + "pn": -0.160384 + }, + { + "surface": "除雪", + "readging": "じょせつ", + "pos": "名詞", + "pn": -0.160397 + }, + { + "surface": "横合い", + "readging": "よこあい", + "pos": "名詞", + "pn": -0.160404 + }, + { + "surface": "ディスク", + "readging": "ディスク", + "pos": "名詞", + "pn": -0.160407 + }, + { + "surface": "サイコロジー", + "readging": "サイコロジー", + "pos": "名詞", + "pn": -0.160426 + }, + { + "surface": "分霊", + "readging": "ぶんれい", + "pos": "名詞", + "pn": -0.160428 + }, + { + "surface": "返金", + "readging": "へんきん", + "pos": "名詞", + "pn": -0.160455 + }, + { + "surface": "鉄剤", + "readging": "てつざい", + "pos": "名詞", + "pn": -0.160473 + }, + { + "surface": "原寸", + "readging": "げんすん", + "pos": "名詞", + "pn": -0.160487 + }, + { + "surface": "蹈鞴", + "readging": "たたら", + "pos": "名詞", + "pn": -0.160488 + }, + { + "surface": "立願", + "readging": "りゅうがん", + "pos": "名詞", + "pn": -0.160497 + }, + { + "surface": "物怖じ", + "readging": "ものおじ", + "pos": "名詞", + "pn": -0.160498 + }, + { + "surface": "洋室", + "readging": "ようしつ", + "pos": "名詞", + "pn": -0.160523 + }, + { + "surface": "トパーズ", + "readging": "トパーズ", + "pos": "名詞", + "pn": -0.160536 + }, + { + "surface": "雄滝", + "readging": "おだき", + "pos": "名詞", + "pn": -0.160584 + }, + { + "surface": "謹選", + "readging": "きんせん", + "pos": "名詞", + "pn": -0.160587 + }, + { + "surface": "河港", + "readging": "かこう", + "pos": "名詞", + "pn": -0.160596 + }, + { + "surface": "合理論", + "readging": "ごうりろん", + "pos": "名詞", + "pn": -0.160604 + }, + { + "surface": "不尽", + "readging": "ふじん", + "pos": "名詞", + "pn": -0.160626 + }, + { + "surface": "万福", + "readging": "ばんぷく", + "pos": "名詞", + "pn": -0.160628 + }, + { + "surface": "評伝", + "readging": "ひょうでん", + "pos": "名詞", + "pn": -0.160637 + }, + { + "surface": "デモクラシー", + "readging": "デモクラシー", + "pos": "名詞", + "pn": -0.160642 + }, + { + "surface": "夕波", + "readging": "ゆうなみ", + "pos": "名詞", + "pn": -0.160652 + }, + { + "surface": "交える", + "readging": "まじえる", + "pos": "動詞", + "pn": -0.160663 + }, + { + "surface": "母者人", + "readging": "ははじゃびと", + "pos": "名詞", + "pn": -0.160672 + }, + { + "surface": "打って変る", + "readging": "うってかわる", + "pos": "動詞", + "pn": -0.160674 + }, + { + "surface": "承服", + "readging": "しょうふく", + "pos": "名詞", + "pn": -0.160688 + }, + { + "surface": "悉曇", + "readging": "しったん", + "pos": "名詞", + "pn": -0.160688 + }, + { + "surface": "曹洞宗", + "readging": "そうとうしゅう", + "pos": "名詞", + "pn": -0.160697 + }, + { + "surface": "一等", + "readging": "いっとう", + "pos": "名詞", + "pn": -0.160698 + }, + { + "surface": "御職", + "readging": "おしょく", + "pos": "名詞", + "pn": -0.160705 + }, + { + "surface": "連乗", + "readging": "れんじょう", + "pos": "名詞", + "pn": -0.160744 + }, + { + "surface": "惰力", + "readging": "だりょく", + "pos": "名詞", + "pn": -0.160765 + }, + { + "surface": "植物性", + "readging": "しょくぶつせい", + "pos": "名詞", + "pn": -0.160766 + }, + { + "surface": "書紋", + "readging": "かきもん", + "pos": "名詞", + "pn": -0.160768 + }, + { + "surface": "松葉", + "readging": "まつば", + "pos": "名詞", + "pn": -0.160773 + }, + { + "surface": "禁門", + "readging": "きんもん", + "pos": "名詞", + "pn": -0.160776 + }, + { + "surface": "現世", + "readging": "げんせ", + "pos": "名詞", + "pn": -0.160785 + }, + { + "surface": "後会", + "readging": "こうかい", + "pos": "名詞", + "pn": -0.160785 + }, + { + "surface": "参考人", + "readging": "さんこうにん", + "pos": "名詞", + "pn": -0.160794 + }, + { + "surface": "申告", + "readging": "しんこく", + "pos": "名詞", + "pn": -0.160797 + }, + { + "surface": "フェミニスト", + "readging": "フェミニスト", + "pos": "名詞", + "pn": -0.160803 + }, + { + "surface": "パイン", + "readging": "パイン", + "pos": "名詞", + "pn": -0.160812 + }, + { + "surface": "密送", + "readging": "みっそう", + "pos": "名詞", + "pn": -0.160816 + }, + { + "surface": "標準語", + "readging": "ひょうじゅんご", + "pos": "名詞", + "pn": -0.160837 + }, + { + "surface": "答申", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.160857 + }, + { + "surface": "凹面鏡", + "readging": "おうめんきょう", + "pos": "名詞", + "pn": -0.160862 + }, + { + "surface": "高潮", + "readging": "こうちょう", + "pos": "名詞", + "pn": -0.16087 + }, + { + "surface": "赤札", + "readging": "あかふだ", + "pos": "名詞", + "pn": -0.160872 + }, + { + "surface": "簡閲", + "readging": "かんえつ", + "pos": "名詞", + "pn": -0.160881 + }, + { + "surface": "緩行", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.160883 + }, + { + "surface": "四", + "readging": "し", + "pos": "名詞", + "pn": -0.160906 + }, + { + "surface": "アール", + "readging": "アール", + "pos": "名詞", + "pn": -0.160914 + }, + { + "surface": "公使館", + "readging": "こうしかん", + "pos": "名詞", + "pn": -0.160938 + }, + { + "surface": "財産所得", + "readging": "ざいさんしょとく", + "pos": "名詞", + "pn": -0.16095 + }, + { + "surface": "山坂", + "readging": "やまさか", + "pos": "名詞", + "pn": -0.16095 + }, + { + "surface": "漫漫", + "readging": "まんまん", + "pos": "名詞", + "pn": -0.160951 + }, + { + "surface": "精鋼", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.160958 + }, + { + "surface": "サンチーム", + "readging": "サンチーム", + "pos": "名詞", + "pn": -0.160961 + }, + { + "surface": "個展", + "readging": "こてん", + "pos": "名詞", + "pn": -0.160961 + }, + { + "surface": "ヒス", + "readging": "ヒス", + "pos": "名詞", + "pn": -0.160969 + }, + { + "surface": "資財", + "readging": "しざい", + "pos": "名詞", + "pn": -0.160979 + }, + { + "surface": "加給", + "readging": "かきゅう", + "pos": "名詞", + "pn": -0.160993 + }, + { + "surface": "近代", + "readging": "きんだい", + "pos": "名詞", + "pn": -0.161015 + }, + { + "surface": "おしまい", + "readging": "おしまい", + "pos": "名詞", + "pn": -0.161026 + }, + { + "surface": "列代", + "readging": "れつだい", + "pos": "名詞", + "pn": -0.161055 + }, + { + "surface": "部立", + "readging": "ぶだて", + "pos": "名詞", + "pn": -0.161062 + }, + { + "surface": "ダンス", + "readging": "ダンス", + "pos": "名詞", + "pn": -0.161068 + }, + { + "surface": "フォークロア", + "readging": "フォークロア", + "pos": "名詞", + "pn": -0.161084 + }, + { + "surface": "手出し", + "readging": "てだし", + "pos": "名詞", + "pn": -0.161104 + }, + { + "surface": "時評", + "readging": "じひょう", + "pos": "名詞", + "pn": -0.161115 + }, + { + "surface": "粛軍", + "readging": "しゅくぐん", + "pos": "名詞", + "pn": -0.161121 + }, + { + "surface": "なすり合い", + "readging": "なすりあい", + "pos": "名詞", + "pn": -0.161122 + }, + { + "surface": "正覚坊", + "readging": "しょうがくぼう", + "pos": "名詞", + "pn": -0.161141 + }, + { + "surface": "根掘り葉掘り", + "readging": "ねほりはほり", + "pos": "名詞", + "pn": -0.161154 + }, + { + "surface": "検証", + "readging": "けんしょう", + "pos": "名詞", + "pn": -0.161171 + }, + { + "surface": "盛衰", + "readging": "せいすい", + "pos": "名詞", + "pn": -0.161175 + }, + { + "surface": "俳文", + "readging": "はいぶん", + "pos": "名詞", + "pn": -0.161189 + }, + { + "surface": "千載", + "readging": "せんざい", + "pos": "名詞", + "pn": -0.161192 + }, + { + "surface": "粗壁", + "readging": "あらかべ", + "pos": "名詞", + "pn": -0.161205 + }, + { + "surface": "編入", + "readging": "へんにゅう", + "pos": "名詞", + "pn": -0.161212 + }, + { + "surface": "反り身", + "readging": "そりみ", + "pos": "名詞", + "pn": -0.161227 + }, + { + "surface": "片岡", + "readging": "かたおか", + "pos": "名詞", + "pn": -0.161227 + }, + { + "surface": "近似値", + "readging": "きんじち", + "pos": "名詞", + "pn": -0.161242 + }, + { + "surface": "書証", + "readging": "しょしょう", + "pos": "名詞", + "pn": -0.161265 + }, + { + "surface": "伯爵", + "readging": "はくしゃく", + "pos": "名詞", + "pn": -0.161312 + }, + { + "surface": "飛びくら", + "readging": "とびくら", + "pos": "名詞", + "pn": -0.161336 + }, + { + "surface": "初学", + "readging": "しょがく", + "pos": "名詞", + "pn": -0.161355 + }, + { + "surface": "分掌", + "readging": "ぶんしょう", + "pos": "名詞", + "pn": -0.161368 + }, + { + "surface": "論決", + "readging": "ろんけつ", + "pos": "名詞", + "pn": -0.161368 + }, + { + "surface": "実姉", + "readging": "じっし", + "pos": "名詞", + "pn": -0.161368 + }, + { + "surface": "コーチ", + "readging": "コーチ", + "pos": "名詞", + "pn": -0.161397 + }, + { + "surface": "令孫", + "readging": "れいそん", + "pos": "名詞", + "pn": -0.161448 + }, + { + "surface": "安楽死", + "readging": "あんらくし", + "pos": "名詞", + "pn": -0.161463 + }, + { + "surface": "艘", + "readging": "そう", + "pos": "名詞", + "pn": -0.161492 + }, + { + "surface": "主動", + "readging": "しゅどう", + "pos": "名詞", + "pn": -0.161515 + }, + { + "surface": "皇女", + "readging": "おうじょ", + "pos": "名詞", + "pn": -0.161523 + }, + { + "surface": "定位", + "readging": "ていい", + "pos": "名詞", + "pn": -0.161552 + }, + { + "surface": "俳号", + "readging": "はいごう", + "pos": "名詞", + "pn": -0.161556 + }, + { + "surface": "新開", + "readging": "しんかい", + "pos": "名詞", + "pn": -0.161572 + }, + { + "surface": "重化学工業", + "readging": "じゅうかがくこうぎょう", + "pos": "名詞", + "pn": -0.161639 + }, + { + "surface": "助教授", + "readging": "じょきょうじゅ", + "pos": "名詞", + "pn": -0.161647 + }, + { + "surface": "棋士", + "readging": "きし", + "pos": "名詞", + "pn": -0.161663 + }, + { + "surface": "熟田", + "readging": "じゅくでん", + "pos": "名詞", + "pn": -0.161667 + }, + { + "surface": "院宣", + "readging": "いんぜん", + "pos": "名詞", + "pn": -0.161723 + }, + { + "surface": "勤行", + "readging": "ごんぎょう", + "pos": "名詞", + "pn": -0.161743 + }, + { + "surface": "おあいそ", + "readging": "おあいそ", + "pos": "名詞", + "pn": -0.161749 + }, + { + "surface": "主催", + "readging": "しゅさい", + "pos": "名詞", + "pn": -0.161759 + }, + { + "surface": "后", + "readging": "きさき", + "pos": "名詞", + "pn": -0.161776 + }, + { + "surface": "堅塁", + "readging": "けんるい", + "pos": "名詞", + "pn": -0.161783 + }, + { + "surface": "メディア", + "readging": "メディア", + "pos": "名詞", + "pn": -0.161783 + }, + { + "surface": "ナイン", + "readging": "ナイン", + "pos": "名詞", + "pn": -0.161789 + }, + { + "surface": "商議", + "readging": "しょうぎ", + "pos": "名詞", + "pn": -0.161798 + }, + { + "surface": "エキジビション", + "readging": "エキジビションゲーム", + "pos": "名詞", + "pn": -0.161808 + }, + { + "surface": "体言", + "readging": "たいげん", + "pos": "名詞", + "pn": -0.161819 + }, + { + "surface": "スーパー", + "readging": "スーパーインポーズ", + "pos": "名詞", + "pn": -0.161825 + }, + { + "surface": "政事", + "readging": "せいじ", + "pos": "名詞", + "pn": -0.161828 + }, + { + "surface": "華奢", + "readging": "きゃしゃ", + "pos": "名詞", + "pn": -0.161839 + }, + { + "surface": "邦字", + "readging": "ほうじ", + "pos": "名詞", + "pn": -0.161845 + }, + { + "surface": "ファッション", + "readging": "ファッションブック", + "pos": "名詞", + "pn": -0.161846 + }, + { + "surface": "査定", + "readging": "さてい", + "pos": "名詞", + "pn": -0.161855 + }, + { + "surface": "食いで", + "readging": "くいで", + "pos": "名詞", + "pn": -0.161857 + }, + { + "surface": "エゴイスト", + "readging": "エゴイスト", + "pos": "名詞", + "pn": -0.16186 + }, + { + "surface": "墳墓", + "readging": "ふんぼ", + "pos": "名詞", + "pn": -0.161871 + }, + { + "surface": "紙上", + "readging": "しじょう", + "pos": "名詞", + "pn": -0.161883 + }, + { + "surface": "暴政", + "readging": "ぼうせい", + "pos": "名詞", + "pn": -0.161932 + }, + { + "surface": "言霊", + "readging": "ことだま", + "pos": "名詞", + "pn": -0.16195 + }, + { + "surface": "学園", + "readging": "がくえん", + "pos": "名詞", + "pn": -0.161986 + }, + { + "surface": "夏作", + "readging": "なつさく", + "pos": "名詞", + "pn": -0.161999 + }, + { + "surface": "教案", + "readging": "きょうあん", + "pos": "名詞", + "pn": -0.162034 + }, + { + "surface": "御影石", + "readging": "みかげいし", + "pos": "名詞", + "pn": -0.162045 + }, + { + "surface": "雲散霧消", + "readging": "うんさんむしょう", + "pos": "名詞", + "pn": -0.162056 + }, + { + "surface": "木杯", + "readging": "もくはい", + "pos": "名詞", + "pn": -0.162059 + }, + { + "surface": "口下手", + "readging": "くちべた", + "pos": "名詞", + "pn": -0.16206 + }, + { + "surface": "制約", + "readging": "せいやく", + "pos": "名詞", + "pn": -0.162064 + }, + { + "surface": "読みで", + "readging": "よみで", + "pos": "名詞", + "pn": -0.162067 + }, + { + "surface": "着駅", + "readging": "ちゃくえき", + "pos": "名詞", + "pn": -0.162073 + }, + { + "surface": "頭注", + "readging": "とうちゅう", + "pos": "名詞", + "pn": -0.162116 + }, + { + "surface": "控除", + "readging": "こうじょ", + "pos": "名詞", + "pn": -0.162122 + }, + { + "surface": "牛耳", + "readging": "ぎゅうじ", + "pos": "名詞", + "pn": -0.162123 + }, + { + "surface": "修補", + "readging": "しゅうほ", + "pos": "名詞", + "pn": -0.162128 + }, + { + "surface": "眼下", + "readging": "がんか", + "pos": "名詞", + "pn": -0.162132 + }, + { + "surface": "花毛氈", + "readging": "はなもうせん", + "pos": "名詞", + "pn": -0.162134 + }, + { + "surface": "祭器", + "readging": "さいき", + "pos": "名詞", + "pn": -0.162135 + }, + { + "surface": "滑稽本", + "readging": "こっけいぼん", + "pos": "名詞", + "pn": -0.162167 + }, + { + "surface": "狂疾", + "readging": "きょうしつ", + "pos": "名詞", + "pn": -0.162182 + }, + { + "surface": "判読", + "readging": "はんどく", + "pos": "名詞", + "pn": -0.162199 + }, + { + "surface": "殿方", + "readging": "とのがた", + "pos": "名詞", + "pn": -0.1622 + }, + { + "surface": "灯火管制", + "readging": "とうかかんせい", + "pos": "名詞", + "pn": -0.162201 + }, + { + "surface": "センチメンタリズム", + "readging": "センチメンタリズム", + "pos": "名詞", + "pn": -0.162207 + }, + { + "surface": "デベロッパー", + "readging": "デベロッパー", + "pos": "名詞", + "pn": -0.162214 + }, + { + "surface": "洛外", + "readging": "らくがい", + "pos": "名詞", + "pn": -0.162233 + }, + { + "surface": "便乗", + "readging": "びんじょう", + "pos": "名詞", + "pn": -0.162246 + }, + { + "surface": "東半球", + "readging": "ひがしはんきゅう", + "pos": "名詞", + "pn": -0.162269 + }, + { + "surface": "教務", + "readging": "きょうむ", + "pos": "名詞", + "pn": -0.162287 + }, + { + "surface": "影法師", + "readging": "かげぼうし", + "pos": "名詞", + "pn": -0.162288 + }, + { + "surface": "丁丁", + "readging": "ちょうちょう", + "pos": "名詞", + "pn": -0.16229 + }, + { + "surface": "提灯持", + "readging": "ちょうちんもち", + "pos": "名詞", + "pn": -0.162291 + }, + { + "surface": "仰角", + "readging": "ぎょうかく", + "pos": "名詞", + "pn": -0.162305 + }, + { + "surface": "改行", + "readging": "かいぎょう", + "pos": "名詞", + "pn": -0.16231 + }, + { + "surface": "真如", + "readging": "しんにょ", + "pos": "名詞", + "pn": -0.162323 + }, + { + "surface": "宝鑑", + "readging": "ほうかん", + "pos": "名詞", + "pn": -0.162381 + }, + { + "surface": "注文流れ", + "readging": "ちゅうもんながれ", + "pos": "名詞", + "pn": -0.162383 + }, + { + "surface": "木柵", + "readging": "もくさく", + "pos": "名詞", + "pn": -0.162385 + }, + { + "surface": "塵外", + "readging": "じんがい", + "pos": "名詞", + "pn": -0.162396 + }, + { + "surface": "遊民", + "readging": "ゆうみん", + "pos": "名詞", + "pn": -0.162401 + }, + { + "surface": "歯止め", + "readging": "はどめ", + "pos": "名詞", + "pn": -0.162442 + }, + { + "surface": "僧位", + "readging": "そうい", + "pos": "名詞", + "pn": -0.162443 + }, + { + "surface": "文明開化", + "readging": "ぶんめいかいか", + "pos": "名詞", + "pn": -0.162444 + }, + { + "surface": "幇間", + "readging": "ほうかん", + "pos": "名詞", + "pn": -0.162481 + }, + { + "surface": "濫用", + "readging": "らんよう", + "pos": "名詞", + "pn": -0.16249 + }, + { + "surface": "寄場", + "readging": "よせば", + "pos": "名詞", + "pn": -0.162498 + }, + { + "surface": "着太り", + "readging": "きぶとり", + "pos": "名詞", + "pn": -0.162523 + }, + { + "surface": "聞上手", + "readging": "ききじょうず", + "pos": "名詞", + "pn": -0.16254 + }, + { + "surface": "女護が島", + "readging": "にょごがしま", + "pos": "名詞", + "pn": -0.162557 + }, + { + "surface": "くだかけ", + "readging": "くだかけ", + "pos": "名詞", + "pn": -0.162569 + }, + { + "surface": "強攻", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.162585 + }, + { + "surface": "九紫", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.162596 + }, + { + "surface": "一白", + "readging": "いっぱく", + "pos": "名詞", + "pn": -0.162596 + }, + { + "surface": "引張り凧", + "readging": "ひっぱりだこ", + "pos": "名詞", + "pn": -0.162613 + }, + { + "surface": "メンテナンス", + "readging": "メンテナンス", + "pos": "名詞", + "pn": -0.162619 + }, + { + "surface": "金玉", + "readging": "きんたま", + "pos": "名詞", + "pn": -0.162628 + }, + { + "surface": "遊弋", + "readging": "ゆうよく", + "pos": "名詞", + "pn": -0.162655 + }, + { + "surface": "洋上", + "readging": "ようじょう", + "pos": "名詞", + "pn": -0.162661 + }, + { + "surface": "恋文", + "readging": "こいぶみ", + "pos": "名詞", + "pn": -0.162661 + }, + { + "surface": "彼氏", + "readging": "かれし", + "pos": "名詞", + "pn": -0.162668 + }, + { + "surface": "鶏", + "readging": "けい", + "pos": "名詞", + "pn": -0.162681 + }, + { + "surface": "単作", + "readging": "たんさく", + "pos": "名詞", + "pn": -0.162686 + }, + { + "surface": "大軍", + "readging": "たいぐん", + "pos": "名詞", + "pn": -0.162697 + }, + { + "surface": "巧言令色", + "readging": "こうげんれいしょく", + "pos": "名詞", + "pn": -0.162708 + }, + { + "surface": "文苑", + "readging": "ぶんえん", + "pos": "名詞", + "pn": -0.162719 + }, + { + "surface": "法官", + "readging": "ほうかん", + "pos": "名詞", + "pn": -0.162727 + }, + { + "surface": "オンス", + "readging": "オンス", + "pos": "名詞", + "pn": -0.162736 + }, + { + "surface": "職業婦人", + "readging": "しょくぎょうふじん", + "pos": "名詞", + "pn": -0.162761 + }, + { + "surface": "士民", + "readging": "しみん", + "pos": "名詞", + "pn": -0.162761 + }, + { + "surface": "貸本", + "readging": "かしほん", + "pos": "名詞", + "pn": -0.162764 + }, + { + "surface": "開会", + "readging": "かいかい", + "pos": "名詞", + "pn": -0.162779 + }, + { + "surface": "居留民", + "readging": "きょりゅうみん", + "pos": "名詞", + "pn": -0.16278 + }, + { + "surface": "受払い", + "readging": "うけはらい", + "pos": "名詞", + "pn": -0.162813 + }, + { + "surface": "定時制", + "readging": "ていじせい", + "pos": "名詞", + "pn": -0.162854 + }, + { + "surface": "墨痕", + "readging": "ぼっこん", + "pos": "名詞", + "pn": -0.162872 + }, + { + "surface": "我欲", + "readging": "がよく", + "pos": "名詞", + "pn": -0.1629 + }, + { + "surface": "平家琵琶", + "readging": "へいけびわ", + "pos": "名詞", + "pn": -0.162917 + }, + { + "surface": "目的論", + "readging": "もくてきろん", + "pos": "名詞", + "pn": -0.162921 + }, + { + "surface": "面接", + "readging": "めんせつ", + "pos": "名詞", + "pn": -0.162934 + }, + { + "surface": "塗立", + "readging": "ぬりたて", + "pos": "名詞", + "pn": -0.162965 + }, + { + "surface": "社命", + "readging": "しゃめい", + "pos": "名詞", + "pn": -0.16297 + }, + { + "surface": "シェーマ", + "readging": "シェーマ", + "pos": "名詞", + "pn": -0.162992 + }, + { + "surface": "ぎりぎり", + "readging": "ぎりぎり", + "pos": "名詞", + "pn": -0.162992 + }, + { + "surface": "予価", + "readging": "よか", + "pos": "名詞", + "pn": -0.162996 + }, + { + "surface": "具案", + "readging": "ぐあん", + "pos": "名詞", + "pn": -0.163027 + }, + { + "surface": "衆論", + "readging": "しゅうろん", + "pos": "名詞", + "pn": -0.163041 + }, + { + "surface": "角", + "readging": "すみ", + "pos": "名詞", + "pn": -0.163067 + }, + { + "surface": "議する", + "readging": "ぎする", + "pos": "動詞", + "pn": -0.163071 + }, + { + "surface": "宵寝", + "readging": "よいね", + "pos": "名詞", + "pn": -0.163071 + }, + { + "surface": "実在論", + "readging": "じつざいろん", + "pos": "名詞", + "pn": -0.163082 + }, + { + "surface": "増刊", + "readging": "ぞうかん", + "pos": "名詞", + "pn": -0.163086 + }, + { + "surface": "欠如", + "readging": "けつじょ", + "pos": "名詞", + "pn": -0.163105 + }, + { + "surface": "鞍替え", + "readging": "くらがえ", + "pos": "名詞", + "pn": -0.163108 + }, + { + "surface": "総柄", + "readging": "そうがら", + "pos": "名詞", + "pn": -0.16311 + }, + { + "surface": "クロス ゲーム", + "readging": "クロス ゲーム", + "pos": "名詞", + "pn": -0.163117 + }, + { + "surface": "密議", + "readging": "みつぎ", + "pos": "名詞", + "pn": -0.16314 + }, + { + "surface": "参朝", + "readging": "さんちょう", + "pos": "名詞", + "pn": -0.163194 + }, + { + "surface": "門鑑", + "readging": "もんかん", + "pos": "名詞", + "pn": -0.163243 + }, + { + "surface": "受動", + "readging": "じゅどう", + "pos": "名詞", + "pn": -0.163248 + }, + { + "surface": "岩盤", + "readging": "がんばん", + "pos": "名詞", + "pn": -0.163264 + }, + { + "surface": "増大", + "readging": "ぞうだい", + "pos": "名詞", + "pn": -0.163264 + }, + { + "surface": "葬場", + "readging": "そうじょう", + "pos": "名詞", + "pn": -0.163264 + }, + { + "surface": "北枕", + "readging": "きたまくら", + "pos": "名詞", + "pn": -0.163269 + }, + { + "surface": "増築", + "readging": "ぞうちく", + "pos": "名詞", + "pn": -0.163271 + }, + { + "surface": "バイヤー", + "readging": "バイヤー", + "pos": "名詞", + "pn": -0.163286 + }, + { + "surface": "悪感", + "readging": "あっかん", + "pos": "名詞", + "pn": -0.163294 + }, + { + "surface": "赤面", + "readging": "せきめん", + "pos": "名詞", + "pn": -0.163299 + }, + { + "surface": "投球", + "readging": "とうきゅう", + "pos": "名詞", + "pn": -0.163312 + }, + { + "surface": "お嬢様", + "readging": "おじょうさま", + "pos": "名詞", + "pn": -0.163324 + }, + { + "surface": "造兵", + "readging": "ぞうへい", + "pos": "名詞", + "pn": -0.163349 + }, + { + "surface": "鉄無地", + "readging": "てつむじ", + "pos": "名詞", + "pn": -0.163356 + }, + { + "surface": "ダイナモ", + "readging": "ダイナモ", + "pos": "名詞", + "pn": -0.163383 + }, + { + "surface": "液剤", + "readging": "えきざい", + "pos": "名詞", + "pn": -0.163388 + }, + { + "surface": "ギブス", + "readging": "ギブス", + "pos": "名詞", + "pn": -0.163401 + }, + { + "surface": "天王星", + "readging": "てんのうせい", + "pos": "名詞", + "pn": -0.163409 + }, + { + "surface": "叩き上げる", + "readging": "たたきあげる", + "pos": "動詞", + "pn": -0.163413 + }, + { + "surface": "荒事", + "readging": "あらごと", + "pos": "名詞", + "pn": -0.163416 + }, + { + "surface": "桃源", + "readging": "とうげん", + "pos": "名詞", + "pn": -0.163418 + }, + { + "surface": "身拵え", + "readging": "みごしらえ", + "pos": "名詞", + "pn": -0.163418 + }, + { + "surface": "受合い", + "readging": "うけあい", + "pos": "名詞", + "pn": -0.163435 + }, + { + "surface": "直結", + "readging": "ちょっけつ", + "pos": "名詞", + "pn": -0.163464 + }, + { + "surface": "セロ", + "readging": "セロ", + "pos": "名詞", + "pn": -0.163471 + }, + { + "surface": "百パーセント", + "readging": "ひゃくパーセント", + "pos": "名詞", + "pn": -0.163478 + }, + { + "surface": "女文字", + "readging": "おんなもじ", + "pos": "名詞", + "pn": -0.163487 + }, + { + "surface": "下調べ", + "readging": "したしらべ", + "pos": "名詞", + "pn": -0.163523 + }, + { + "surface": "閏年", + "readging": "じゅんねん", + "pos": "名詞", + "pn": -0.163525 + }, + { + "surface": "長湯", + "readging": "ながゆ", + "pos": "名詞", + "pn": -0.163536 + }, + { + "surface": "ニーズ", + "readging": "ニーズ", + "pos": "名詞", + "pn": -0.163536 + }, + { + "surface": "直売", + "readging": "ちょくばい", + "pos": "名詞", + "pn": -0.163551 + }, + { + "surface": "畳水練", + "readging": "たたみすいれん", + "pos": "名詞", + "pn": -0.163562 + }, + { + "surface": "お七夜", + "readging": "おしちや", + "pos": "名詞", + "pn": -0.163583 + }, + { + "surface": "ボランティア", + "readging": "ボランティア", + "pos": "名詞", + "pn": -0.163602 + }, + { + "surface": "沈思", + "readging": "ちんし", + "pos": "名詞", + "pn": -0.163603 + }, + { + "surface": "鰊", + "readging": "かど", + "pos": "名詞", + "pn": -0.163618 + }, + { + "surface": "筒口", + "readging": "つつぐち", + "pos": "名詞", + "pn": -0.163631 + }, + { + "surface": "学舎", + "readging": "まなびや", + "pos": "名詞", + "pn": -0.163664 + }, + { + "surface": "間借", + "readging": "まがり", + "pos": "名詞", + "pn": -0.163669 + }, + { + "surface": "船型", + "readging": "せんけい", + "pos": "名詞", + "pn": -0.163678 + }, + { + "surface": "未明", + "readging": "みめい", + "pos": "名詞", + "pn": -0.163703 + }, + { + "surface": "糸竹", + "readging": "いとたけ", + "pos": "名詞", + "pn": -0.163755 + }, + { + "surface": "古史", + "readging": "こし", + "pos": "名詞", + "pn": -0.163757 + }, + { + "surface": "複合", + "readging": "ふくごう", + "pos": "名詞", + "pn": -0.163774 + }, + { + "surface": "借着", + "readging": "かりぎ", + "pos": "名詞", + "pn": -0.163782 + }, + { + "surface": "虞犯", + "readging": "ぐはん", + "pos": "名詞", + "pn": -0.163785 + }, + { + "surface": "鈍色", + "readging": "にびいろ", + "pos": "名詞", + "pn": -0.163792 + }, + { + "surface": "攻め道具", + "readging": "せめどうぐ", + "pos": "名詞", + "pn": -0.163796 + }, + { + "surface": "別伝", + "readging": "べつでん", + "pos": "名詞", + "pn": -0.163806 + }, + { + "surface": "代願", + "readging": "だいがん", + "pos": "名詞", + "pn": -0.163819 + }, + { + "surface": "向地性", + "readging": "こうちせい", + "pos": "名詞", + "pn": -0.163828 + }, + { + "surface": "芽生える", + "readging": "めばえる", + "pos": "動詞", + "pn": -0.163844 + }, + { + "surface": "煉獄", + "readging": "れんごく", + "pos": "名詞", + "pn": -0.163847 + }, + { + "surface": "祭具", + "readging": "さいぐ", + "pos": "名詞", + "pn": -0.163848 + }, + { + "surface": "着金", + "readging": "ちゃっきん", + "pos": "名詞", + "pn": -0.163857 + }, + { + "surface": "凝血", + "readging": "ぎょうけつ", + "pos": "名詞", + "pn": -0.163873 + }, + { + "surface": "権助", + "readging": "ごんすけ", + "pos": "名詞", + "pn": -0.163912 + }, + { + "surface": "保税倉庫", + "readging": "ほぜいそうこ", + "pos": "名詞", + "pn": -0.16393 + }, + { + "surface": "胴上げ", + "readging": "どうあげ", + "pos": "名詞", + "pn": -0.163932 + }, + { + "surface": "写し物", + "readging": "うつしもの", + "pos": "名詞", + "pn": -0.163936 + }, + { + "surface": "膜壁", + "readging": "まくへき", + "pos": "名詞", + "pn": -0.163945 + }, + { + "surface": "工期", + "readging": "こうき", + "pos": "名詞", + "pn": -0.163947 + }, + { + "surface": "史乗", + "readging": "しじょう", + "pos": "名詞", + "pn": -0.163951 + }, + { + "surface": "対案", + "readging": "たいあん", + "pos": "名詞", + "pn": -0.163964 + }, + { + "surface": "社会政策", + "readging": "しゃかいせいさく", + "pos": "名詞", + "pn": -0.163971 + }, + { + "surface": "べら", + "readging": "べら", + "pos": "名詞", + "pn": -0.163989 + }, + { + "surface": "俗眼", + "readging": "ぞくがん", + "pos": "名詞", + "pn": -0.163997 + }, + { + "surface": "縷縷", + "readging": "るる", + "pos": "副詞", + "pn": -0.164017 + }, + { + "surface": "人跡", + "readging": "じんせき", + "pos": "名詞", + "pn": -0.164026 + }, + { + "surface": "教生", + "readging": "きょうせい", + "pos": "名詞", + "pn": -0.164046 + }, + { + "surface": "出題", + "readging": "しゅつだい", + "pos": "名詞", + "pn": -0.164048 + }, + { + "surface": "かっかと", + "readging": "かっかと", + "pos": "副詞", + "pn": -0.164077 + }, + { + "surface": "結集", + "readging": "けっしゅう", + "pos": "名詞", + "pn": -0.16411 + }, + { + "surface": "残部", + "readging": "ざんぶ", + "pos": "名詞", + "pn": -0.164124 + }, + { + "surface": "三行半", + "readging": "みくだりはん", + "pos": "名詞", + "pn": -0.164125 + }, + { + "surface": "熟畑", + "readging": "じゅくばた", + "pos": "名詞", + "pn": -0.164148 + }, + { + "surface": "勤め向き", + "readging": "つとめむき", + "pos": "名詞", + "pn": -0.164149 + }, + { + "surface": "下乗", + "readging": "げじょう", + "pos": "名詞", + "pn": -0.164157 + }, + { + "surface": "甍", + "readging": "いらか", + "pos": "名詞", + "pn": -0.16418 + }, + { + "surface": "マイク", + "readging": "マイク", + "pos": "名詞", + "pn": -0.164213 + }, + { + "surface": "冷温", + "readging": "れいおん", + "pos": "名詞", + "pn": -0.164215 + }, + { + "surface": "歌意", + "readging": "かい", + "pos": "名詞", + "pn": -0.164229 + }, + { + "surface": "曠古", + "readging": "こうこ", + "pos": "名詞", + "pn": -0.164257 + }, + { + "surface": "蘭医", + "readging": "らんい", + "pos": "名詞", + "pn": -0.164283 + }, + { + "surface": "要式", + "readging": "ようしき", + "pos": "名詞", + "pn": -0.164295 + }, + { + "surface": "攻立てる", + "readging": "せめたてる", + "pos": "動詞", + "pn": -0.164296 + }, + { + "surface": "白寿", + "readging": "はくじゅ", + "pos": "名詞", + "pn": -0.164309 + }, + { + "surface": "討入", + "readging": "うちいり", + "pos": "名詞", + "pn": -0.164309 + }, + { + "surface": "上木", + "readging": "じょうぼく", + "pos": "名詞", + "pn": -0.164311 + }, + { + "surface": "白熱", + "readging": "はくねつ", + "pos": "名詞", + "pn": -0.164315 + }, + { + "surface": "均分", + "readging": "きんぶん", + "pos": "名詞", + "pn": -0.164321 + }, + { + "surface": "肉感", + "readging": "にっかん", + "pos": "名詞", + "pn": -0.164344 + }, + { + "surface": "オムニバス", + "readging": "オムニバス", + "pos": "名詞", + "pn": -0.164362 + }, + { + "surface": "請じ入れる", + "readging": "しょうじいれる", + "pos": "動詞", + "pn": -0.164364 + }, + { + "surface": "毒草", + "readging": "どくそう", + "pos": "名詞", + "pn": -0.16438 + }, + { + "surface": "僧門", + "readging": "そうもん", + "pos": "名詞", + "pn": -0.164391 + }, + { + "surface": "逆コース", + "readging": "ぎゃくコース", + "pos": "名詞", + "pn": -0.164404 + }, + { + "surface": "ヒューマニスト", + "readging": "ヒューマニスト", + "pos": "名詞", + "pn": -0.164407 + }, + { + "surface": "金仏", + "readging": "かなぶつ", + "pos": "名詞", + "pn": -0.164427 + }, + { + "surface": "西半球", + "readging": "にしはんきゅう", + "pos": "名詞", + "pn": -0.164432 + }, + { + "surface": "仏経", + "readging": "ぶっきょう", + "pos": "名詞", + "pn": -0.164448 + }, + { + "surface": "逆飛び", + "readging": "さかとび", + "pos": "名詞", + "pn": -0.164486 + }, + { + "surface": "千里眼", + "readging": "せんりがん", + "pos": "名詞", + "pn": -0.164494 + }, + { + "surface": "にこり", + "readging": "にこり", + "pos": "副詞", + "pn": -0.164496 + }, + { + "surface": "有合せ", + "readging": "ありあわせ", + "pos": "名詞", + "pn": -0.164548 + }, + { + "surface": "楼門", + "readging": "ろうもん", + "pos": "名詞", + "pn": -0.164569 + }, + { + "surface": "伊勢参り", + "readging": "いせまいり", + "pos": "名詞", + "pn": -0.164576 + }, + { + "surface": "座標系", + "readging": "ざひょうけい", + "pos": "名詞", + "pn": -0.164576 + }, + { + "surface": "武芸十八般", + "readging": "ぶげいじゅうはっぱん", + "pos": "名詞", + "pn": -0.164581 + }, + { + "surface": "実像", + "readging": "じつぞう", + "pos": "名詞", + "pn": -0.164586 + }, + { + "surface": "実務", + "readging": "じつむ", + "pos": "名詞", + "pn": -0.16462 + }, + { + "surface": "譲渡", + "readging": "じょうと", + "pos": "名詞", + "pn": -0.164622 + }, + { + "surface": "プラス", + "readging": "プラス", + "pos": "名詞", + "pn": -0.164631 + }, + { + "surface": "川音", + "readging": "かわおと", + "pos": "名詞", + "pn": -0.164645 + }, + { + "surface": "塩蔵", + "readging": "えんぞう", + "pos": "名詞", + "pn": -0.164654 + }, + { + "surface": "複利", + "readging": "ふくり", + "pos": "名詞", + "pn": -0.164655 + }, + { + "surface": "顳かみ", + "readging": "こめかみ", + "pos": "名詞", + "pn": -0.164683 + }, + { + "surface": "さる者", + "readging": "さるもの", + "pos": "名詞", + "pn": -0.164691 + }, + { + "surface": "倍旧", + "readging": "ばいきゅう", + "pos": "名詞", + "pn": -0.1647 + }, + { + "surface": "水星", + "readging": "すいせい", + "pos": "名詞", + "pn": -0.164705 + }, + { + "surface": "社会学", + "readging": "しゃかいがく", + "pos": "名詞", + "pn": -0.164718 + }, + { + "surface": "改新", + "readging": "かいしん", + "pos": "名詞", + "pn": -0.164722 + }, + { + "surface": "地熱", + "readging": "じねつ", + "pos": "名詞", + "pn": -0.16474 + }, + { + "surface": "初代", + "readging": "しょだい", + "pos": "名詞", + "pn": -0.164758 + }, + { + "surface": "戸数", + "readging": "こすう", + "pos": "名詞", + "pn": -0.164787 + }, + { + "surface": "射距離", + "readging": "しゃきょり", + "pos": "名詞", + "pn": -0.164802 + }, + { + "surface": "魏", + "readging": "ぎ", + "pos": "名詞", + "pn": -0.164811 + }, + { + "surface": "譜表", + "readging": "ふひょう", + "pos": "名詞", + "pn": -0.164811 + }, + { + "surface": "換気", + "readging": "かんき", + "pos": "名詞", + "pn": -0.164816 + }, + { + "surface": "式日", + "readging": "しきじつ", + "pos": "名詞", + "pn": -0.164833 + }, + { + "surface": "所帯崩し", + "readging": "しょたいくずし", + "pos": "名詞", + "pn": -0.164844 + }, + { + "surface": "傘下", + "readging": "さんか", + "pos": "名詞", + "pn": -0.164844 + }, + { + "surface": "義弟", + "readging": "ぎてい", + "pos": "名詞", + "pn": -0.164848 + }, + { + "surface": "試製", + "readging": "しせい", + "pos": "名詞", + "pn": -0.164863 + }, + { + "surface": "臣民", + "readging": "しんみん", + "pos": "名詞", + "pn": -0.164872 + }, + { + "surface": "別紙", + "readging": "べっし", + "pos": "名詞", + "pn": -0.164872 + }, + { + "surface": "麝香", + "readging": "じゃこう", + "pos": "名詞", + "pn": -0.164882 + }, + { + "surface": "外付け", + "readging": "そとづけ", + "pos": "名詞", + "pn": -0.164921 + }, + { + "surface": "親方日の丸", + "readging": "おやかたひのまる", + "pos": "名詞", + "pn": -0.164928 + }, + { + "surface": "店番", + "readging": "みせばん", + "pos": "名詞", + "pn": -0.164934 + }, + { + "surface": "こはだ", + "readging": "こはだ", + "pos": "名詞", + "pn": -0.164941 + }, + { + "surface": "過密", + "readging": "かみつ", + "pos": "名詞", + "pn": -0.164955 + }, + { + "surface": "評者", + "readging": "ひょうしゃ", + "pos": "名詞", + "pn": -0.164963 + }, + { + "surface": "充当", + "readging": "じゅうとう", + "pos": "名詞", + "pn": -0.164967 + }, + { + "surface": "通航", + "readging": "つうこう", + "pos": "名詞", + "pn": -0.164973 + }, + { + "surface": "竟宴", + "readging": "きょうえん", + "pos": "名詞", + "pn": -0.164978 + }, + { + "surface": "工法", + "readging": "こうほう", + "pos": "名詞", + "pn": -0.165001 + }, + { + "surface": "仏弟子", + "readging": "ぶつでし", + "pos": "名詞", + "pn": -0.165013 + }, + { + "surface": "金ずく", + "readging": "かねずく", + "pos": "名詞", + "pn": -0.165017 + }, + { + "surface": "視診", + "readging": "ししん", + "pos": "名詞", + "pn": -0.165019 + }, + { + "surface": "運命論", + "readging": "うんめいろん", + "pos": "名詞", + "pn": -0.165068 + }, + { + "surface": "与件", + "readging": "よけん", + "pos": "名詞", + "pn": -0.165071 + }, + { + "surface": "計算機", + "readging": "けいさんき", + "pos": "名詞", + "pn": -0.165092 + }, + { + "surface": "祠堂", + "readging": "しどう", + "pos": "名詞", + "pn": -0.165108 + }, + { + "surface": "弑逆", + "readging": "しいぎゃく", + "pos": "名詞", + "pn": -0.165116 + }, + { + "surface": "滲出", + "readging": "しんしゅつ", + "pos": "名詞", + "pn": -0.165124 + }, + { + "surface": "内題", + "readging": "ないだい", + "pos": "名詞", + "pn": -0.165155 + }, + { + "surface": "試案", + "readging": "しあん", + "pos": "名詞", + "pn": -0.16516 + }, + { + "surface": "王朝時代", + "readging": "おうちょうじだい", + "pos": "名詞", + "pn": -0.165166 + }, + { + "surface": "開き直る", + "readging": "ひらきなおる", + "pos": "動詞", + "pn": -0.165169 + }, + { + "surface": "黄門", + "readging": "こうもん", + "pos": "名詞", + "pn": -0.165173 + }, + { + "surface": "離水", + "readging": "りすい", + "pos": "名詞", + "pn": -0.165202 + }, + { + "surface": "下の句", + "readging": "しものく", + "pos": "名詞", + "pn": -0.165214 + }, + { + "surface": "イレギュラー", + "readging": "イレギュラー", + "pos": "名詞", + "pn": -0.165222 + }, + { + "surface": "総揚げ", + "readging": "そうあげ", + "pos": "名詞", + "pn": -0.165244 + }, + { + "surface": "OA", + "readging": "オーエー", + "pos": "名詞", + "pn": -0.165254 + }, + { + "surface": "極光", + "readging": "きょっこう", + "pos": "名詞", + "pn": -0.165255 + }, + { + "surface": "純潔", + "readging": "じゅんけつ", + "pos": "名詞", + "pn": -0.165258 + }, + { + "surface": "釈門", + "readging": "しゃくもん", + "pos": "名詞", + "pn": -0.16526 + }, + { + "surface": "すべすべ", + "readging": "すべすべ", + "pos": "名詞", + "pn": -0.165272 + }, + { + "surface": "善後策", + "readging": "ぜんごさく", + "pos": "名詞", + "pn": -0.165291 + }, + { + "surface": "土地柄", + "readging": "とちがら", + "pos": "名詞", + "pn": -0.16531 + }, + { + "surface": "買い薬", + "readging": "かいぐすり", + "pos": "名詞", + "pn": -0.165315 + }, + { + "surface": "医書", + "readging": "いしょ", + "pos": "名詞", + "pn": -0.165317 + }, + { + "surface": "光子", + "readging": "こうし", + "pos": "名詞", + "pn": -0.165332 + }, + { + "surface": "原籍", + "readging": "げんせき", + "pos": "名詞", + "pn": -0.165357 + }, + { + "surface": "内幕", + "readging": "うちまく", + "pos": "名詞", + "pn": -0.165409 + }, + { + "surface": "睨み合せる", + "readging": "にらみあわせる", + "pos": "動詞", + "pn": -0.165412 + }, + { + "surface": "固定資本", + "readging": "こていしほん", + "pos": "名詞", + "pn": -0.165428 + }, + { + "surface": "年報", + "readging": "ねんぽう", + "pos": "名詞", + "pn": -0.165432 + }, + { + "surface": "下問", + "readging": "かもん", + "pos": "名詞", + "pn": -0.16544 + }, + { + "surface": "赤化", + "readging": "せっか", + "pos": "名詞", + "pn": -0.165458 + }, + { + "surface": "エトス", + "readging": "エトス", + "pos": "名詞", + "pn": -0.165462 + }, + { + "surface": "内火艇", + "readging": "ないかてい", + "pos": "名詞", + "pn": -0.165487 + }, + { + "surface": "雑魚", + "readging": "じゃこ", + "pos": "名詞", + "pn": -0.165499 + }, + { + "surface": "世話焼", + "readging": "せわやき", + "pos": "名詞", + "pn": -0.165504 + }, + { + "surface": "上梓", + "readging": "じょうし", + "pos": "名詞", + "pn": -0.16551 + }, + { + "surface": "俗名", + "readging": "ぞくみょう", + "pos": "名詞", + "pn": -0.165539 + }, + { + "surface": "世界像", + "readging": "せかいぞう", + "pos": "名詞", + "pn": -0.16554 + }, + { + "surface": "元宵", + "readging": "げんしょう", + "pos": "名詞", + "pn": -0.165544 + }, + { + "surface": "衆口", + "readging": "しゅうこう", + "pos": "名詞", + "pn": -0.165577 + }, + { + "surface": "買気", + "readging": "かいき", + "pos": "名詞", + "pn": -0.165578 + }, + { + "surface": "注込む", + "readging": "つぎこむ", + "pos": "動詞", + "pn": -0.165582 + }, + { + "surface": "助辞", + "readging": "じょじ", + "pos": "名詞", + "pn": -0.165604 + }, + { + "surface": "高蒔絵", + "readging": "たかまきえ", + "pos": "名詞", + "pn": -0.165617 + }, + { + "surface": "請来", + "readging": "しょうらい", + "pos": "名詞", + "pn": -0.165621 + }, + { + "surface": "退院", + "readging": "たいいん", + "pos": "名詞", + "pn": -0.165622 + }, + { + "surface": "誅伐", + "readging": "ちゅうばつ", + "pos": "名詞", + "pn": -0.165624 + }, + { + "surface": "奠都", + "readging": "てんと", + "pos": "名詞", + "pn": -0.165624 + }, + { + "surface": "口気", + "readging": "こうき", + "pos": "名詞", + "pn": -0.165652 + }, + { + "surface": "幻聴", + "readging": "げんちょう", + "pos": "名詞", + "pn": -0.165655 + }, + { + "surface": "直火", + "readging": "じかび", + "pos": "名詞", + "pn": -0.165667 + }, + { + "surface": "画引き", + "readging": "かくびき", + "pos": "名詞", + "pn": -0.165674 + }, + { + "surface": "オープン戦", + "readging": "オープンせん", + "pos": "名詞", + "pn": -0.165685 + }, + { + "surface": "付託", + "readging": "ふたく", + "pos": "名詞", + "pn": -0.165685 + }, + { + "surface": "終期", + "readging": "しゅうき", + "pos": "名詞", + "pn": -0.165687 + }, + { + "surface": "失職", + "readging": "しっしょく", + "pos": "名詞", + "pn": -0.165697 + }, + { + "surface": "県庁", + "readging": "けんちょう", + "pos": "名詞", + "pn": -0.165699 + }, + { + "surface": "認知科学", + "readging": "にんちかがく", + "pos": "名詞", + "pn": -0.1657 + }, + { + "surface": "其の伝", + "readging": "そのでん", + "pos": "名詞", + "pn": -0.165702 + }, + { + "surface": "花嫁", + "readging": "はなよめ", + "pos": "名詞", + "pn": -0.165703 + }, + { + "surface": "沸返る", + "readging": "わきかえる", + "pos": "動詞", + "pn": -0.165715 + }, + { + "surface": "念力", + "readging": "ねんりき", + "pos": "名詞", + "pn": -0.165721 + }, + { + "surface": "牛刀", + "readging": "ぎゅうとう", + "pos": "名詞", + "pn": -0.165729 + }, + { + "surface": "天引", + "readging": "てんびき", + "pos": "名詞", + "pn": -0.165733 + }, + { + "surface": "置いてきぼり", + "readging": "おいてきぼり", + "pos": "名詞", + "pn": -0.165754 + }, + { + "surface": "ハンドブック", + "readging": "ハンドブック", + "pos": "名詞", + "pn": -0.165771 + }, + { + "surface": "農作", + "readging": "のうさく", + "pos": "名詞", + "pn": -0.165775 + }, + { + "surface": "捨置く", + "readging": "すておく", + "pos": "動詞", + "pn": -0.165788 + }, + { + "surface": "定時", + "readging": "ていじ", + "pos": "名詞", + "pn": -0.16579 + }, + { + "surface": "鳳", + "readging": "ほう", + "pos": "名詞", + "pn": -0.165806 + }, + { + "surface": "標準化", + "readging": "ひょうじゅんか", + "pos": "名詞", + "pn": -0.165819 + }, + { + "surface": "退城", + "readging": "たいじょう", + "pos": "名詞", + "pn": -0.165821 + }, + { + "surface": "浄曲", + "readging": "じょうきょく", + "pos": "名詞", + "pn": -0.165838 + }, + { + "surface": "昼寝", + "readging": "ひるね", + "pos": "名詞", + "pn": -0.165849 + }, + { + "surface": "切要", + "readging": "せつよう", + "pos": "名詞", + "pn": -0.165858 + }, + { + "surface": "行掛け", + "readging": "ゆきがけ", + "pos": "名詞", + "pn": -0.165874 + }, + { + "surface": "アナウンサー", + "readging": "アナウンサー", + "pos": "名詞", + "pn": -0.165875 + }, + { + "surface": "専権", + "readging": "せんけん", + "pos": "名詞", + "pn": -0.165896 + }, + { + "surface": "端居", + "readging": "はしい", + "pos": "名詞", + "pn": -0.165906 + }, + { + "surface": "別状", + "readging": "べつじょう", + "pos": "名詞", + "pn": -0.165919 + }, + { + "surface": "利敵", + "readging": "りてき", + "pos": "名詞", + "pn": -0.165922 + }, + { + "surface": "けわい", + "readging": "けわい", + "pos": "名詞", + "pn": -0.165939 + }, + { + "surface": "醍醐", + "readging": "だいご", + "pos": "名詞", + "pn": -0.16594 + }, + { + "surface": "三位", + "readging": "さんみ", + "pos": "名詞", + "pn": -0.165947 + }, + { + "surface": "施肥", + "readging": "せひ", + "pos": "名詞", + "pn": -0.165949 + }, + { + "surface": "蔭", + "readging": "いん", + "pos": "名詞", + "pn": -0.16595 + }, + { + "surface": "儀仗", + "readging": "ぎじょう", + "pos": "名詞", + "pn": -0.165954 + }, + { + "surface": "私書函", + "readging": "ししょかん", + "pos": "名詞", + "pn": -0.165962 + }, + { + "surface": "奥地", + "readging": "おくち", + "pos": "名詞", + "pn": -0.165978 + }, + { + "surface": "実測", + "readging": "じっそく", + "pos": "名詞", + "pn": -0.165985 + }, + { + "surface": "豆名月", + "readging": "まめめいげつ", + "pos": "名詞", + "pn": -0.165992 + }, + { + "surface": "重責", + "readging": "じゅうせき", + "pos": "名詞", + "pn": -0.166002 + }, + { + "surface": "小紋", + "readging": "こもん", + "pos": "名詞", + "pn": -0.166002 + }, + { + "surface": "ツアー", + "readging": "ツアー", + "pos": "名詞", + "pn": -0.166015 + }, + { + "surface": "疾駆", + "readging": "しっく", + "pos": "名詞", + "pn": -0.166035 + }, + { + "surface": "雑劇", + "readging": "ざつげき", + "pos": "名詞", + "pn": -0.166039 + }, + { + "surface": "具に", + "readging": "つぶさに", + "pos": "副詞", + "pn": -0.166044 + }, + { + "surface": "無尽会社", + "readging": "むじんがいしゃ", + "pos": "名詞", + "pn": -0.166055 + }, + { + "surface": "方角違い", + "readging": "ほうがくちがい", + "pos": "名詞", + "pn": -0.166084 + }, + { + "surface": "陸戦", + "readging": "りくせん", + "pos": "名詞", + "pn": -0.166101 + }, + { + "surface": "平底", + "readging": "ひらぞこ", + "pos": "名詞", + "pn": -0.166117 + }, + { + "surface": "万万一", + "readging": "まんまんいち", + "pos": "名詞", + "pn": -0.166124 + }, + { + "surface": "町工場", + "readging": "まちこうば", + "pos": "名詞", + "pn": -0.166129 + }, + { + "surface": "残年", + "readging": "ざんねん", + "pos": "名詞", + "pn": -0.16614 + }, + { + "surface": "秋落ち", + "readging": "あきおち", + "pos": "名詞", + "pn": -0.166141 + }, + { + "surface": "左岸", + "readging": "さがん", + "pos": "名詞", + "pn": -0.166153 + }, + { + "surface": "応手", + "readging": "おうしゅ", + "pos": "名詞", + "pn": -0.166158 + }, + { + "surface": "過半数", + "readging": "かはんすう", + "pos": "名詞", + "pn": -0.166158 + }, + { + "surface": "恒星", + "readging": "こうせい", + "pos": "名詞", + "pn": -0.166172 + }, + { + "surface": "多毛", + "readging": "たもう", + "pos": "名詞", + "pn": -0.166182 + }, + { + "surface": "序歌", + "readging": "じょか", + "pos": "名詞", + "pn": -0.166185 + }, + { + "surface": "律語", + "readging": "りつご", + "pos": "名詞", + "pn": -0.166189 + }, + { + "surface": "述懐", + "readging": "じゅっかい", + "pos": "名詞", + "pn": -0.166194 + }, + { + "surface": "踏鳴らす", + "readging": "ふみならす", + "pos": "動詞", + "pn": -0.166201 + }, + { + "surface": "行間", + "readging": "ぎょうかん", + "pos": "名詞", + "pn": -0.166205 + }, + { + "surface": "異分子", + "readging": "いぶんし", + "pos": "名詞", + "pn": -0.166232 + }, + { + "surface": "故買", + "readging": "こばい", + "pos": "名詞", + "pn": -0.166236 + }, + { + "surface": "写字", + "readging": "しゃじ", + "pos": "名詞", + "pn": -0.166266 + }, + { + "surface": "懇親", + "readging": "こんしん", + "pos": "名詞", + "pn": -0.166273 + }, + { + "surface": "沿線", + "readging": "えんせん", + "pos": "名詞", + "pn": -0.166306 + }, + { + "surface": "霊園", + "readging": "れいえん", + "pos": "名詞", + "pn": -0.166325 + }, + { + "surface": "野積み", + "readging": "のづみ", + "pos": "名詞", + "pn": -0.166352 + }, + { + "surface": "埋草", + "readging": "うめくさ", + "pos": "名詞", + "pn": -0.166373 + }, + { + "surface": "納本", + "readging": "のうほん", + "pos": "名詞", + "pn": -0.166387 + }, + { + "surface": "複本", + "readging": "ふくほん", + "pos": "名詞", + "pn": -0.166388 + }, + { + "surface": "当て物", + "readging": "あてもの", + "pos": "名詞", + "pn": -0.166415 + }, + { + "surface": "宣する", + "readging": "せんする", + "pos": "動詞", + "pn": -0.166422 + }, + { + "surface": "仁義", + "readging": "じんぎ", + "pos": "名詞", + "pn": -0.166455 + }, + { + "surface": "山守", + "readging": "やまもり", + "pos": "名詞", + "pn": -0.166461 + }, + { + "surface": "真夏日", + "readging": "まなつび", + "pos": "名詞", + "pn": -0.166463 + }, + { + "surface": "キルク", + "readging": "キルク", + "pos": "名詞", + "pn": -0.166468 + }, + { + "surface": "千秋楽", + "readging": "せんしゅうらく", + "pos": "名詞", + "pn": -0.166476 + }, + { + "surface": "勧請", + "readging": "かんじょう", + "pos": "名詞", + "pn": -0.166511 + }, + { + "surface": "入閣", + "readging": "にゅうかく", + "pos": "名詞", + "pn": -0.166537 + }, + { + "surface": "下垂", + "readging": "かすい", + "pos": "名詞", + "pn": -0.16654 + }, + { + "surface": "蘭学", + "readging": "らんがく", + "pos": "名詞", + "pn": -0.166602 + }, + { + "surface": "電器", + "readging": "でんき", + "pos": "名詞", + "pn": -0.166612 + }, + { + "surface": "配車", + "readging": "はいしゃ", + "pos": "名詞", + "pn": -0.166616 + }, + { + "surface": "穹窿", + "readging": "きゅうりゅう", + "pos": "名詞", + "pn": -0.166626 + }, + { + "surface": "お巡り", + "readging": "おまわり", + "pos": "名詞", + "pn": -0.16663 + }, + { + "surface": "歳旦", + "readging": "さいたん", + "pos": "名詞", + "pn": -0.166654 + }, + { + "surface": "晩期", + "readging": "ばんき", + "pos": "名詞", + "pn": -0.166666 + }, + { + "surface": "肥沃", + "readging": "ひよく", + "pos": "名詞", + "pn": -0.166675 + }, + { + "surface": "実感", + "readging": "じっかん", + "pos": "名詞", + "pn": -0.166686 + }, + { + "surface": "御来光", + "readging": "ごらいこう", + "pos": "名詞", + "pn": -0.16669 + }, + { + "surface": "訓電", + "readging": "くんでん", + "pos": "名詞", + "pn": -0.16669 + }, + { + "surface": "キー", + "readging": "キーポイント", + "pos": "名詞", + "pn": -0.16669 + }, + { + "surface": "夜鶴", + "readging": "やかく", + "pos": "名詞", + "pn": -0.166709 + }, + { + "surface": "酒杯", + "readging": "しゅはい", + "pos": "名詞", + "pn": -0.166712 + }, + { + "surface": "前掲", + "readging": "ぜんけい", + "pos": "名詞", + "pn": -0.166716 + }, + { + "surface": "親祭", + "readging": "しんさい", + "pos": "名詞", + "pn": -0.166745 + }, + { + "surface": "要路", + "readging": "ようろ", + "pos": "名詞", + "pn": -0.166755 + }, + { + "surface": "野乗", + "readging": "やじょう", + "pos": "名詞", + "pn": -0.16676 + }, + { + "surface": "土地鑑", + "readging": "とちかん", + "pos": "名詞", + "pn": -0.166764 + }, + { + "surface": "手拍子", + "readging": "てびょうし", + "pos": "名詞", + "pn": -0.166776 + }, + { + "surface": "序次", + "readging": "じょじ", + "pos": "名詞", + "pn": -0.166791 + }, + { + "surface": "纏足", + "readging": "てんそく", + "pos": "名詞", + "pn": -0.166796 + }, + { + "surface": "子会社", + "readging": "こがいしゃ", + "pos": "名詞", + "pn": -0.166832 + }, + { + "surface": "報労", + "readging": "ほうろう", + "pos": "名詞", + "pn": -0.166834 + }, + { + "surface": "公娼", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.166868 + }, + { + "surface": "リベラリズム", + "readging": "リベラリズム", + "pos": "名詞", + "pn": -0.16688 + }, + { + "surface": "死命", + "readging": "しめい", + "pos": "名詞", + "pn": -0.166892 + }, + { + "surface": "軍使", + "readging": "ぐんし", + "pos": "名詞", + "pn": -0.1669 + }, + { + "surface": "おかちん", + "readging": "おかちん", + "pos": "名詞", + "pn": -0.166916 + }, + { + "surface": "校異", + "readging": "こうい", + "pos": "名詞", + "pn": -0.166929 + }, + { + "surface": "背表紙", + "readging": "せびょうし", + "pos": "名詞", + "pn": -0.166943 + }, + { + "surface": "変心", + "readging": "へんしん", + "pos": "名詞", + "pn": -0.166954 + }, + { + "surface": "立交じる", + "readging": "たちまじる", + "pos": "動詞", + "pn": -0.166957 + }, + { + "surface": "掻分ける", + "readging": "かきわける", + "pos": "動詞", + "pn": -0.167002 + }, + { + "surface": "後方勤務", + "readging": "こうほうきんむ", + "pos": "名詞", + "pn": -0.16703 + }, + { + "surface": "唯物弁証法", + "readging": "ゆいぶつべんしょうほう", + "pos": "名詞", + "pn": -0.167042 + }, + { + "surface": "宋朝", + "readging": "そうちょう", + "pos": "名詞", + "pn": -0.167048 + }, + { + "surface": "小父さん", + "readging": "おじさん", + "pos": "名詞", + "pn": -0.167048 + }, + { + "surface": "品分け", + "readging": "しなわけ", + "pos": "名詞", + "pn": -0.167058 + }, + { + "surface": "減収", + "readging": "げんしゅう", + "pos": "名詞", + "pn": -0.167073 + }, + { + "surface": "道場", + "readging": "どうじょう", + "pos": "名詞", + "pn": -0.167081 + }, + { + "surface": "攻上る", + "readging": "せめのぼる", + "pos": "動詞", + "pn": -0.167087 + }, + { + "surface": "陳ずる", + "readging": "ちんずる", + "pos": "動詞", + "pn": -0.167132 + }, + { + "surface": "自虐", + "readging": "じぎゃく", + "pos": "名詞", + "pn": -0.16716 + }, + { + "surface": "二人称", + "readging": "ににんしょう", + "pos": "名詞", + "pn": -0.167172 + }, + { + "surface": "イエロー", + "readging": "イエロー", + "pos": "名詞", + "pn": -0.167187 + }, + { + "surface": "科学技術", + "readging": "かがくぎじゅつ", + "pos": "名詞", + "pn": -0.167192 + }, + { + "surface": "チェアマン", + "readging": "チェアマン", + "pos": "名詞", + "pn": -0.167194 + }, + { + "surface": "避暑", + "readging": "ひしょ", + "pos": "名詞", + "pn": -0.167197 + }, + { + "surface": "登記簿", + "readging": "とうきぼ", + "pos": "名詞", + "pn": -0.167207 + }, + { + "surface": "神父", + "readging": "しんぷ", + "pos": "名詞", + "pn": -0.167224 + }, + { + "surface": "時たま", + "readging": "ときたま", + "pos": "副詞", + "pn": -0.167238 + }, + { + "surface": "狷介", + "readging": "けんかい", + "pos": "名詞", + "pn": -0.167247 + }, + { + "surface": "出し置き", + "readging": "だしおき", + "pos": "名詞", + "pn": -0.167257 + }, + { + "surface": "ゴチック", + "readging": "ゴチック", + "pos": "名詞", + "pn": -0.167264 + }, + { + "surface": "封建時代", + "readging": "ほうけんじだい", + "pos": "名詞", + "pn": -0.167265 + }, + { + "surface": "国家主義", + "readging": "こっかしゅぎ", + "pos": "名詞", + "pn": -0.167266 + }, + { + "surface": "話ずく", + "readging": "はなしずく", + "pos": "名詞", + "pn": -0.167289 + }, + { + "surface": "活用", + "readging": "かつよう", + "pos": "名詞", + "pn": -0.1673 + }, + { + "surface": "爪音", + "readging": "つまおと", + "pos": "名詞", + "pn": -0.167301 + }, + { + "surface": "川遊び", + "readging": "かわあそび", + "pos": "名詞", + "pn": -0.167305 + }, + { + "surface": "バイリンガル", + "readging": "バイリンガル", + "pos": "名詞", + "pn": -0.167306 + }, + { + "surface": "バイオ", + "readging": "バイオ", + "pos": "名詞", + "pn": -0.167309 + }, + { + "surface": "真鰈", + "readging": "まがれい", + "pos": "名詞", + "pn": -0.167309 + }, + { + "surface": "二世", + "readging": "にせ", + "pos": "名詞", + "pn": -0.167327 + }, + { + "surface": "現勢", + "readging": "げんせい", + "pos": "名詞", + "pn": -0.167335 + }, + { + "surface": "不知", + "readging": "ふち", + "pos": "名詞", + "pn": -0.167343 + }, + { + "surface": "見場", + "readging": "みば", + "pos": "名詞", + "pn": -0.167344 + }, + { + "surface": "提督", + "readging": "ていとく", + "pos": "名詞", + "pn": -0.167352 + }, + { + "surface": "着電", + "readging": "ちゃくでん", + "pos": "名詞", + "pn": -0.167353 + }, + { + "surface": "着信", + "readging": "ちゃくしん", + "pos": "名詞", + "pn": -0.167353 + }, + { + "surface": "弧線", + "readging": "こせん", + "pos": "名詞", + "pn": -0.167353 + }, + { + "surface": "出走", + "readging": "しゅっそう", + "pos": "名詞", + "pn": -0.167353 + }, + { + "surface": "初等", + "readging": "しょとう", + "pos": "名詞", + "pn": -0.167381 + }, + { + "surface": "通性", + "readging": "つうせい", + "pos": "名詞", + "pn": -0.167401 + }, + { + "surface": "奏請", + "readging": "そうせい", + "pos": "名詞", + "pn": -0.167404 + }, + { + "surface": "庭草", + "readging": "にわくさ", + "pos": "名詞", + "pn": -0.167432 + }, + { + "surface": "長講", + "readging": "ちょうこう", + "pos": "名詞", + "pn": -0.167466 + }, + { + "surface": "立て通す", + "readging": "たてとおす", + "pos": "動詞", + "pn": -0.167492 + }, + { + "surface": "脳漿", + "readging": "のうしょう", + "pos": "名詞", + "pn": -0.167499 + }, + { + "surface": "折込む", + "readging": "おりこむ", + "pos": "動詞", + "pn": -0.1675 + }, + { + "surface": "猥本", + "readging": "わいほん", + "pos": "名詞", + "pn": -0.167506 + }, + { + "surface": "別業", + "readging": "べつぎょう", + "pos": "名詞", + "pn": -0.167523 + }, + { + "surface": "上院", + "readging": "じょういん", + "pos": "名詞", + "pn": -0.167531 + }, + { + "surface": "清拭", + "readging": "せいしき", + "pos": "名詞", + "pn": -0.167551 + }, + { + "surface": "年増", + "readging": "としま", + "pos": "名詞", + "pn": -0.167554 + }, + { + "surface": "石工", + "readging": "いしく", + "pos": "名詞", + "pn": -0.167564 + }, + { + "surface": "滂沱", + "readging": "ぼうだ", + "pos": "名詞", + "pn": -0.167565 + }, + { + "surface": "偽筆", + "readging": "ぎひつ", + "pos": "名詞", + "pn": -0.167606 + }, + { + "surface": "林相", + "readging": "りんそう", + "pos": "名詞", + "pn": -0.167635 + }, + { + "surface": "聖職", + "readging": "せいしょく", + "pos": "名詞", + "pn": -0.167681 + }, + { + "surface": "唐名", + "readging": "とうめい", + "pos": "名詞", + "pn": -0.167699 + }, + { + "surface": "歌会", + "readging": "かかい", + "pos": "名詞", + "pn": -0.167716 + }, + { + "surface": "二流", + "readging": "にりゅう", + "pos": "名詞", + "pn": -0.167727 + }, + { + "surface": "名義", + "readging": "めいぎ", + "pos": "名詞", + "pn": -0.167752 + }, + { + "surface": "レスラー", + "readging": "レスラー", + "pos": "名詞", + "pn": -0.167754 + }, + { + "surface": "ぶっぱなす", + "readging": "ぶっぱなす", + "pos": "動詞", + "pn": -0.167755 + }, + { + "surface": "筆順", + "readging": "ひつじゅん", + "pos": "名詞", + "pn": -0.167761 + }, + { + "surface": "急追", + "readging": "きゅうつい", + "pos": "名詞", + "pn": -0.167761 + }, + { + "surface": "ごわす", + "readging": "ごわす", + "pos": "動詞", + "pn": -0.167769 + }, + { + "surface": "峰打ち", + "readging": "みねうち", + "pos": "名詞", + "pn": -0.167771 + }, + { + "surface": "七夜", + "readging": "しちや", + "pos": "名詞", + "pn": -0.167774 + }, + { + "surface": "反立", + "readging": "はんりつ", + "pos": "名詞", + "pn": -0.167788 + }, + { + "surface": "満タン", + "readging": "まんタン", + "pos": "名詞", + "pn": -0.167797 + }, + { + "surface": "半作", + "readging": "はんさく", + "pos": "名詞", + "pn": -0.167814 + }, + { + "surface": "大名旅行", + "readging": "だいみょうりょこう", + "pos": "名詞", + "pn": -0.167821 + }, + { + "surface": "北限", + "readging": "ほくげん", + "pos": "名詞", + "pn": -0.167823 + }, + { + "surface": "細別", + "readging": "さいべつ", + "pos": "名詞", + "pn": -0.167844 + }, + { + "surface": "幽棲", + "readging": "ゆうせい", + "pos": "名詞", + "pn": -0.167849 + }, + { + "surface": "論敵", + "readging": "ろんてき", + "pos": "名詞", + "pn": -0.167852 + }, + { + "surface": "一利", + "readging": "いちり", + "pos": "名詞", + "pn": -0.167865 + }, + { + "surface": "筆洗", + "readging": "ひっせん", + "pos": "名詞", + "pn": -0.167873 + }, + { + "surface": "粗糖", + "readging": "そとう", + "pos": "名詞", + "pn": -0.167902 + }, + { + "surface": "間男", + "readging": "まおとこ", + "pos": "名詞", + "pn": -0.167904 + }, + { + "surface": "図録", + "readging": "ずろく", + "pos": "名詞", + "pn": -0.167909 + }, + { + "surface": "警視庁", + "readging": "けいしちょう", + "pos": "名詞", + "pn": -0.167912 + }, + { + "surface": "五常", + "readging": "ごじょう", + "pos": "名詞", + "pn": -0.167915 + }, + { + "surface": "弾む", + "readging": "はずむ", + "pos": "動詞", + "pn": -0.167918 + }, + { + "surface": "トロット", + "readging": "トロット", + "pos": "名詞", + "pn": -0.167946 + }, + { + "surface": "流入", + "readging": "りゅうにゅう", + "pos": "名詞", + "pn": -0.167947 + }, + { + "surface": "間代", + "readging": "まだい", + "pos": "名詞", + "pn": -0.167948 + }, + { + "surface": "局外", + "readging": "きょくがい", + "pos": "名詞", + "pn": -0.167951 + }, + { + "surface": "寿命", + "readging": "じゅみょう", + "pos": "名詞", + "pn": -0.167956 + }, + { + "surface": "割", + "readging": "かつ", + "pos": "名詞", + "pn": -0.167968 + }, + { + "surface": "庭先相場", + "readging": "にわさき", + "pos": "名詞", + "pn": -0.167971 + }, + { + "surface": "二七日", + "readging": "ふたなのか", + "pos": "名詞", + "pn": -0.167976 + }, + { + "surface": "実株", + "readging": "じつかぶ", + "pos": "名詞", + "pn": -0.167989 + }, + { + "surface": "横並び", + "readging": "よこならび", + "pos": "名詞", + "pn": -0.16799 + }, + { + "surface": "失言", + "readging": "しつげん", + "pos": "名詞", + "pn": -0.167995 + }, + { + "surface": "直航", + "readging": "ちょっこう", + "pos": "名詞", + "pn": -0.168014 + }, + { + "surface": "一足飛び", + "readging": "いっそくとび", + "pos": "名詞", + "pn": -0.168053 + }, + { + "surface": "ミッション", + "readging": "ミッションスクール", + "pos": "名詞", + "pn": -0.168079 + }, + { + "surface": "キャスト", + "readging": "キャスト", + "pos": "名詞", + "pn": -0.168088 + }, + { + "surface": "お花畑", + "readging": "おはなばたけ", + "pos": "名詞", + "pn": -0.168097 + }, + { + "surface": "止宿", + "readging": "ししゅく", + "pos": "名詞", + "pn": -0.168107 + }, + { + "surface": "ヨガ", + "readging": "ヨガ", + "pos": "名詞", + "pn": -0.168135 + }, + { + "surface": "遊糸", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.168152 + }, + { + "surface": "体現", + "readging": "たいげん", + "pos": "名詞", + "pn": -0.168152 + }, + { + "surface": "世間体", + "readging": "せけんてい", + "pos": "名詞", + "pn": -0.168152 + }, + { + "surface": "邪宗門", + "readging": "じゃしゅうもん", + "pos": "名詞", + "pn": -0.168155 + }, + { + "surface": "根上り", + "readging": "ねあがり", + "pos": "名詞", + "pn": -0.168163 + }, + { + "surface": "テロップ", + "readging": "テロップ", + "pos": "名詞", + "pn": -0.168164 + }, + { + "surface": "予備校", + "readging": "よびこう", + "pos": "名詞", + "pn": -0.168168 + }, + { + "surface": "代払", + "readging": "だいばらい", + "pos": "名詞", + "pn": -0.16817 + }, + { + "surface": "立打ち", + "readging": "たちうち", + "pos": "名詞", + "pn": -0.168173 + }, + { + "surface": "公館", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.16819 + }, + { + "surface": "軟調", + "readging": "なんちょう", + "pos": "名詞", + "pn": -0.168193 + }, + { + "surface": "買手市場", + "readging": "かいて", + "pos": "名詞", + "pn": -0.168199 + }, + { + "surface": "御布施", + "readging": "おふせ", + "pos": "名詞", + "pn": -0.1682 + }, + { + "surface": "空路", + "readging": "くうろ", + "pos": "名詞", + "pn": -0.1682 + }, + { + "surface": "超音速", + "readging": "ちょうおんそく", + "pos": "名詞", + "pn": -0.168205 + }, + { + "surface": "一般化", + "readging": "いっぱんか", + "pos": "名詞", + "pn": -0.168214 + }, + { + "surface": "音読", + "readging": "おんどく", + "pos": "名詞", + "pn": -0.168218 + }, + { + "surface": "大本営", + "readging": "だいほんえい", + "pos": "名詞", + "pn": -0.168254 + }, + { + "surface": "教壇", + "readging": "きょうだん", + "pos": "名詞", + "pn": -0.168258 + }, + { + "surface": "消え失せる", + "readging": "きえうせる", + "pos": "動詞", + "pn": -0.168297 + }, + { + "surface": "押し掛け女房", + "readging": "おしかけにょうぼう", + "pos": "名詞", + "pn": -0.168304 + }, + { + "surface": "筆答", + "readging": "ひっとう", + "pos": "名詞", + "pn": -0.168304 + }, + { + "surface": "特車", + "readging": "とくしゃ", + "pos": "名詞", + "pn": -0.168313 + }, + { + "surface": "帷幄上奏", + "readging": "いあくじょうそう", + "pos": "名詞", + "pn": -0.168321 + }, + { + "surface": "錬鉄", + "readging": "れんてつ", + "pos": "名詞", + "pn": -0.168327 + }, + { + "surface": "烈婦", + "readging": "れっぷ", + "pos": "名詞", + "pn": -0.168335 + }, + { + "surface": "飽和", + "readging": "ほうわ", + "pos": "名詞", + "pn": -0.168337 + }, + { + "surface": "熟視", + "readging": "じゅくし", + "pos": "名詞", + "pn": -0.168346 + }, + { + "surface": "女御", + "readging": "にょご", + "pos": "名詞", + "pn": -0.168356 + }, + { + "surface": "右近", + "readging": "うこん", + "pos": "名詞", + "pn": -0.168357 + }, + { + "surface": "てっきり", + "readging": "てっきり", + "pos": "副詞", + "pn": -0.168362 + }, + { + "surface": "都心", + "readging": "としん", + "pos": "名詞", + "pn": -0.16838 + }, + { + "surface": "書肆", + "readging": "しょし", + "pos": "名詞", + "pn": -0.16838 + }, + { + "surface": "海内", + "readging": "かいだい", + "pos": "名詞", + "pn": -0.168384 + }, + { + "surface": "深潭", + "readging": "しんたん", + "pos": "名詞", + "pn": -0.168399 + }, + { + "surface": "勅書", + "readging": "ちょくしょ", + "pos": "名詞", + "pn": -0.168432 + }, + { + "surface": "煮え返る", + "readging": "にえかえる", + "pos": "動詞", + "pn": -0.168435 + }, + { + "surface": "向き向き", + "readging": "むきむき", + "pos": "名詞", + "pn": -0.168447 + }, + { + "surface": "男", + "readging": "おのこ", + "pos": "名詞", + "pn": -0.168451 + }, + { + "surface": "素寒貧", + "readging": "すかんぴん", + "pos": "名詞", + "pn": -0.168454 + }, + { + "surface": "捨売", + "readging": "すてうり", + "pos": "名詞", + "pn": -0.1685 + }, + { + "surface": "君付け", + "readging": "くんづけ", + "pos": "名詞", + "pn": -0.168502 + }, + { + "surface": "待設ける", + "readging": "まちもうける", + "pos": "動詞", + "pn": -0.168508 + }, + { + "surface": "洗い出し", + "readging": "あらいだし", + "pos": "名詞", + "pn": -0.168515 + }, + { + "surface": "メーン", + "readging": "メーンスタンド", + "pos": "名詞", + "pn": -0.168554 + }, + { + "surface": "ブルース", + "readging": "ブルース", + "pos": "名詞", + "pn": -0.16857 + }, + { + "surface": "トーン", + "readging": "トーン", + "pos": "名詞", + "pn": -0.168576 + }, + { + "surface": "国歩", + "readging": "こくほ", + "pos": "名詞", + "pn": -0.168614 + }, + { + "surface": "大審院", + "readging": "だいしんいん", + "pos": "名詞", + "pn": -0.168617 + }, + { + "surface": "釣合", + "readging": "つりあい", + "pos": "名詞", + "pn": -0.168619 + }, + { + "surface": "身支度", + "readging": "みじたく", + "pos": "名詞", + "pn": -0.168622 + }, + { + "surface": "少将", + "readging": "しょうしょう", + "pos": "名詞", + "pn": -0.168673 + }, + { + "surface": "来春", + "readging": "らいしゅん", + "pos": "名詞", + "pn": -0.168674 + }, + { + "surface": "員数", + "readging": "いんずう", + "pos": "名詞", + "pn": -0.168735 + }, + { + "surface": "小暑", + "readging": "しょうしょ", + "pos": "名詞", + "pn": -0.168736 + }, + { + "surface": "精読", + "readging": "せいどく", + "pos": "名詞", + "pn": -0.168742 + }, + { + "surface": "童形", + "readging": "どうぎょう", + "pos": "名詞", + "pn": -0.168743 + }, + { + "surface": "竹帛", + "readging": "ちくはく", + "pos": "名詞", + "pn": -0.168755 + }, + { + "surface": "白白", + "readging": "しらしら", + "pos": "副詞", + "pn": -0.168769 + }, + { + "surface": "誓文払", + "readging": "せいもんばらい", + "pos": "名詞", + "pn": -0.168772 + }, + { + "surface": "御幸", + "readging": "ごこう", + "pos": "名詞", + "pn": -0.168773 + }, + { + "surface": "脱退", + "readging": "だったい", + "pos": "名詞", + "pn": -0.168788 + }, + { + "surface": "アンジェラス", + "readging": "アンジェラス", + "pos": "名詞", + "pn": -0.168797 + }, + { + "surface": "決選投票", + "readging": "けっせんとうひょう", + "pos": "名詞", + "pn": -0.168798 + }, + { + "surface": "休廷", + "readging": "きゅうてい", + "pos": "名詞", + "pn": -0.168804 + }, + { + "surface": "呈出", + "readging": "ていしゅつ", + "pos": "名詞", + "pn": -0.168815 + }, + { + "surface": "順送り", + "readging": "じゅんおくり", + "pos": "名詞", + "pn": -0.168824 + }, + { + "surface": "咄嗟", + "readging": "とっさ", + "pos": "名詞", + "pn": -0.168829 + }, + { + "surface": "飄客", + "readging": "ひょうかく", + "pos": "名詞", + "pn": -0.168847 + }, + { + "surface": "花薄", + "readging": "はなすすき", + "pos": "名詞", + "pn": -0.168865 + }, + { + "surface": "連判状", + "readging": "れんばんじょう", + "pos": "名詞", + "pn": -0.168868 + }, + { + "surface": "親電", + "readging": "しんでん", + "pos": "名詞", + "pn": -0.168886 + }, + { + "surface": "情人", + "readging": "じょうにん", + "pos": "名詞", + "pn": -0.168886 + }, + { + "surface": "受診", + "readging": "じゅしん", + "pos": "名詞", + "pn": -0.168897 + }, + { + "surface": "焼石", + "readging": "やけいし", + "pos": "名詞", + "pn": -0.168908 + }, + { + "surface": "長恨", + "readging": "ちょうこん", + "pos": "名詞", + "pn": -0.168944 + }, + { + "surface": "メタ言語", + "readging": "メタげんご", + "pos": "名詞", + "pn": -0.168955 + }, + { + "surface": "新宮", + "readging": "しんぐう", + "pos": "名詞", + "pn": -0.168982 + }, + { + "surface": "絶対値", + "readging": "ぜったいち", + "pos": "名詞", + "pn": -0.168984 + }, + { + "surface": "築庭", + "readging": "ちくてい", + "pos": "名詞", + "pn": -0.168999 + }, + { + "surface": "モノラル", + "readging": "モノラル", + "pos": "名詞", + "pn": -0.169001 + }, + { + "surface": "油気", + "readging": "あぶらけ", + "pos": "名詞", + "pn": -0.169028 + }, + { + "surface": "蛋白石", + "readging": "たんぱくせき", + "pos": "名詞", + "pn": -0.169051 + }, + { + "surface": "棒暗記", + "readging": "ぼうあんき", + "pos": "名詞", + "pn": -0.169062 + }, + { + "surface": "とても", + "readging": "とても", + "pos": "副詞", + "pn": -0.169067 + }, + { + "surface": "天産物", + "readging": "てんさんぶつ", + "pos": "名詞", + "pn": -0.169072 + }, + { + "surface": "牧羊", + "readging": "ぼくよう", + "pos": "名詞", + "pn": -0.169078 + }, + { + "surface": "感官", + "readging": "かんかん", + "pos": "名詞", + "pn": -0.169082 + }, + { + "surface": "盲", + "readging": "めくら", + "pos": "名詞", + "pn": -0.169093 + }, + { + "surface": "併願", + "readging": "へいがん", + "pos": "名詞", + "pn": -0.169094 + }, + { + "surface": "俗骨", + "readging": "ぞっこつ", + "pos": "名詞", + "pn": -0.169095 + }, + { + "surface": "夜目", + "readging": "よめ", + "pos": "名詞", + "pn": -0.169131 + }, + { + "surface": "荷船", + "readging": "にぶね", + "pos": "名詞", + "pn": -0.169154 + }, + { + "surface": "年利", + "readging": "ねんり", + "pos": "名詞", + "pn": -0.169166 + }, + { + "surface": "弛緩", + "readging": "ちかん", + "pos": "名詞", + "pn": -0.169168 + }, + { + "surface": "沛然", + "readging": "はいぜん", + "pos": "名詞", + "pn": -0.169174 + }, + { + "surface": "花立", + "readging": "はなたて", + "pos": "名詞", + "pn": -0.169176 + }, + { + "surface": "一世", + "readging": "いっせ", + "pos": "名詞", + "pn": -0.169188 + }, + { + "surface": "男役", + "readging": "おとこやく", + "pos": "名詞", + "pn": -0.169227 + }, + { + "surface": "概ね", + "readging": "おおむね", + "pos": "名詞", + "pn": -0.169229 + }, + { + "surface": "なんでも屋", + "readging": "なんでもや", + "pos": "名詞", + "pn": -0.169248 + }, + { + "surface": "主調", + "readging": "しゅちょう", + "pos": "名詞", + "pn": -0.169269 + }, + { + "surface": "深浅", + "readging": "しんせん", + "pos": "名詞", + "pn": -0.16927 + }, + { + "surface": "現段階", + "readging": "げんだんかい", + "pos": "名詞", + "pn": -0.169282 + }, + { + "surface": "大物食い", + "readging": "おおもの", + "pos": "名詞", + "pn": -0.169282 + }, + { + "surface": "天竺鼠", + "readging": "てんじくねずみ", + "pos": "名詞", + "pn": -0.169288 + }, + { + "surface": "退勤", + "readging": "たいきん", + "pos": "名詞", + "pn": -0.169293 + }, + { + "surface": "請願", + "readging": "せいがん", + "pos": "名詞", + "pn": -0.16931 + }, + { + "surface": "大同", + "readging": "だいどう", + "pos": "名詞", + "pn": -0.16932 + }, + { + "surface": "手詰り", + "readging": "てづまり", + "pos": "名詞", + "pn": -0.169341 + }, + { + "surface": "礫土", + "readging": "れきど", + "pos": "名詞", + "pn": -0.169353 + }, + { + "surface": "人垣", + "readging": "ひとがき", + "pos": "名詞", + "pn": -0.169364 + }, + { + "surface": "抜読み", + "readging": "ぬきよみ", + "pos": "名詞", + "pn": -0.169375 + }, + { + "surface": "手元金", + "readging": "てもときん", + "pos": "名詞", + "pn": -0.169396 + }, + { + "surface": "比定", + "readging": "ひてい", + "pos": "名詞", + "pn": -0.1694 + }, + { + "surface": "小回り", + "readging": "こまわり", + "pos": "名詞", + "pn": -0.169402 + }, + { + "surface": "フリーザー", + "readging": "フリーザー", + "pos": "名詞", + "pn": -0.16942 + }, + { + "surface": "小前", + "readging": "こまえ", + "pos": "名詞", + "pn": -0.169426 + }, + { + "surface": "すがら", + "readging": "すがら", + "pos": "名詞", + "pn": -0.169427 + }, + { + "surface": "臼歯", + "readging": "うすば", + "pos": "名詞", + "pn": -0.169436 + }, + { + "surface": "出立", + "readging": "しゅったつ", + "pos": "名詞", + "pn": -0.169446 + }, + { + "surface": "新造", + "readging": "しんぞ", + "pos": "名詞", + "pn": -0.169462 + }, + { + "surface": "目角", + "readging": "めかど", + "pos": "名詞", + "pn": -0.169471 + }, + { + "surface": "平幕", + "readging": "ひらまく", + "pos": "名詞", + "pn": -0.169473 + }, + { + "surface": "労働争議", + "readging": "ろうどうそうぎ", + "pos": "名詞", + "pn": -0.169479 + }, + { + "surface": "鬱金香", + "readging": "うっこんこう", + "pos": "名詞", + "pn": -0.169532 + }, + { + "surface": "順路", + "readging": "じゅんろ", + "pos": "名詞", + "pn": -0.169535 + }, + { + "surface": "欠席", + "readging": "けっせき", + "pos": "名詞", + "pn": -0.169566 + }, + { + "surface": "内偵", + "readging": "ないてい", + "pos": "名詞", + "pn": -0.169571 + }, + { + "surface": "直答", + "readging": "じきとう", + "pos": "名詞", + "pn": -0.169583 + }, + { + "surface": "刀自", + "readging": "とじ", + "pos": "名詞", + "pn": -0.169594 + }, + { + "surface": "滞空", + "readging": "たいくう", + "pos": "名詞", + "pn": -0.169597 + }, + { + "surface": "五分五分", + "readging": "ごぶごぶ", + "pos": "名詞", + "pn": -0.169616 + }, + { + "surface": "国営", + "readging": "こくえい", + "pos": "名詞", + "pn": -0.169619 + }, + { + "surface": "空間芸術", + "readging": "くうかんげいじゅつ", + "pos": "名詞", + "pn": -0.169625 + }, + { + "surface": "告諭", + "readging": "こくゆ", + "pos": "名詞", + "pn": -0.169636 + }, + { + "surface": "青書", + "readging": "せいしょ", + "pos": "名詞", + "pn": -0.169636 + }, + { + "surface": "在国", + "readging": "ざいこく", + "pos": "名詞", + "pn": -0.169642 + }, + { + "surface": "重土", + "readging": "じゅうど", + "pos": "名詞", + "pn": -0.169644 + }, + { + "surface": "穀食", + "readging": "こくしょく", + "pos": "名詞", + "pn": -0.169649 + }, + { + "surface": "用字", + "readging": "ようじ", + "pos": "名詞", + "pn": -0.169655 + }, + { + "surface": "大前提", + "readging": "だいぜんてい", + "pos": "名詞", + "pn": -0.169664 + }, + { + "surface": "月謝", + "readging": "げっしゃ", + "pos": "名詞", + "pn": -0.169671 + }, + { + "surface": "律令格式", + "readging": "りつりょうきゃくしき", + "pos": "名詞", + "pn": -0.169672 + }, + { + "surface": "極付", + "readging": "きわめつき", + "pos": "名詞", + "pn": -0.169696 + }, + { + "surface": "夢幻", + "readging": "ゆめまぼろし", + "pos": "名詞", + "pn": -0.169705 + }, + { + "surface": "決別", + "readging": "けつべつ", + "pos": "名詞", + "pn": -0.169713 + }, + { + "surface": "一別以来", + "readging": "いちべついらい", + "pos": "名詞", + "pn": -0.169713 + }, + { + "surface": "豪家", + "readging": "ごうか", + "pos": "名詞", + "pn": -0.169719 + }, + { + "surface": "門主", + "readging": "もんしゅ", + "pos": "名詞", + "pn": -0.169721 + }, + { + "surface": "譲位", + "readging": "じょうい", + "pos": "名詞", + "pn": -0.169777 + }, + { + "surface": "絵柄", + "readging": "えがら", + "pos": "名詞", + "pn": -0.169799 + }, + { + "surface": "設える", + "readging": "しつらえる", + "pos": "動詞", + "pn": -0.169804 + }, + { + "surface": "誦経", + "readging": "ずきょう", + "pos": "名詞", + "pn": -0.169808 + }, + { + "surface": "軟球", + "readging": "なんきゅう", + "pos": "名詞", + "pn": -0.16981 + }, + { + "surface": "生ビール", + "readging": "なまビール", + "pos": "名詞", + "pn": -0.169812 + }, + { + "surface": "カテゴリー", + "readging": "カテゴリー", + "pos": "名詞", + "pn": -0.169813 + }, + { + "surface": "事務官", + "readging": "じむかん", + "pos": "名詞", + "pn": -0.16983 + }, + { + "surface": "分け目", + "readging": "わけめ", + "pos": "名詞", + "pn": -0.169838 + }, + { + "surface": "絶家", + "readging": "ぜっけ", + "pos": "名詞", + "pn": -0.169839 + }, + { + "surface": "出札", + "readging": "しゅっさつ", + "pos": "名詞", + "pn": -0.16987 + }, + { + "surface": "小半時", + "readging": "こはんとき", + "pos": "名詞", + "pn": -0.16987 + }, + { + "surface": "六芸", + "readging": "りくげい", + "pos": "名詞", + "pn": -0.169871 + }, + { + "surface": "議場", + "readging": "ぎじょう", + "pos": "名詞", + "pn": -0.169876 + }, + { + "surface": "国技", + "readging": "こくぎ", + "pos": "名詞", + "pn": -0.169902 + }, + { + "surface": "男爵", + "readging": "だんしゃく", + "pos": "名詞", + "pn": -0.169908 + }, + { + "surface": "慨然", + "readging": "がいぜん", + "pos": "名詞", + "pn": -0.169927 + }, + { + "surface": "穏婆", + "readging": "おんば", + "pos": "名詞", + "pn": -0.16993 + }, + { + "surface": "算定", + "readging": "さんてい", + "pos": "名詞", + "pn": -0.169932 + }, + { + "surface": "飴牛", + "readging": "あめうし", + "pos": "名詞", + "pn": -0.169964 + }, + { + "surface": "ベンチャー", + "readging": "ベンチャー", + "pos": "名詞", + "pn": -0.169965 + }, + { + "surface": "ユーカラ", + "readging": "ユーカラ", + "pos": "名詞", + "pn": -0.169973 + }, + { + "surface": "天覧", + "readging": "てんらん", + "pos": "名詞", + "pn": -0.169987 + }, + { + "surface": "懸魚", + "readging": "かけざかな", + "pos": "名詞", + "pn": -0.169987 + }, + { + "surface": "論調", + "readging": "ろんちょう", + "pos": "名詞", + "pn": -0.170002 + }, + { + "surface": "短編", + "readging": "たんぺん", + "pos": "名詞", + "pn": -0.170016 + }, + { + "surface": "推計", + "readging": "すいけい", + "pos": "名詞", + "pn": -0.170022 + }, + { + "surface": "読切り", + "readging": "よみきり", + "pos": "名詞", + "pn": -0.170026 + }, + { + "surface": "製氷", + "readging": "せいひょう", + "pos": "名詞", + "pn": -0.17003 + }, + { + "surface": "山塊", + "readging": "さんかい", + "pos": "名詞", + "pn": -0.170037 + }, + { + "surface": "取外し", + "readging": "とりはずし", + "pos": "名詞", + "pn": -0.170045 + }, + { + "surface": "面の皮", + "readging": "つらのかわ", + "pos": "名詞", + "pn": -0.170047 + }, + { + "surface": "拘留", + "readging": "こうりゅう", + "pos": "名詞", + "pn": -0.170068 + }, + { + "surface": "下り立つ", + "readging": "おりたつ", + "pos": "動詞", + "pn": -0.170069 + }, + { + "surface": "万万歳", + "readging": "ばんばんざい", + "pos": "名詞", + "pn": -0.170086 + }, + { + "surface": "信用貸", + "readging": "しんようがし", + "pos": "名詞", + "pn": -0.170106 + }, + { + "surface": "真個", + "readging": "しんこ", + "pos": "名詞", + "pn": -0.170107 + }, + { + "surface": "甲乙", + "readging": "こうおつ", + "pos": "名詞", + "pn": -0.170121 + }, + { + "surface": "平麦", + "readging": "ひらむぎ", + "pos": "名詞", + "pn": -0.170139 + }, + { + "surface": "利息", + "readging": "りそく", + "pos": "名詞", + "pn": -0.170142 + }, + { + "surface": "山間", + "readging": "さんかん", + "pos": "名詞", + "pn": -0.170164 + }, + { + "surface": "綰ねる", + "readging": "わがねる", + "pos": "動詞", + "pn": -0.170168 + }, + { + "surface": "聯詩", + "readging": "れんし", + "pos": "名詞", + "pn": -0.170172 + }, + { + "surface": "臨機", + "readging": "りんき", + "pos": "名詞", + "pn": -0.170184 + }, + { + "surface": "鉄人", + "readging": "てつじん", + "pos": "名詞", + "pn": -0.170196 + }, + { + "surface": "下塗", + "readging": "したぬり", + "pos": "名詞", + "pn": -0.170201 + }, + { + "surface": "断絶", + "readging": "だんぜつ", + "pos": "名詞", + "pn": -0.170206 + }, + { + "surface": "画風", + "readging": "がふう", + "pos": "名詞", + "pn": -0.170222 + }, + { + "surface": "撒播", + "readging": "さっぱ", + "pos": "名詞", + "pn": -0.170241 + }, + { + "surface": "投力", + "readging": "とうりょく", + "pos": "名詞", + "pn": -0.170283 + }, + { + "surface": "印する", + "readging": "いんする", + "pos": "動詞", + "pn": -0.170284 + }, + { + "surface": "早馬", + "readging": "はやうま", + "pos": "名詞", + "pn": -0.170288 + }, + { + "surface": "逆数", + "readging": "ぎゃくすう", + "pos": "名詞", + "pn": -0.170306 + }, + { + "surface": "閣僚", + "readging": "かくりょう", + "pos": "名詞", + "pn": -0.170308 + }, + { + "surface": "地目", + "readging": "ちもく", + "pos": "名詞", + "pn": -0.17031 + }, + { + "surface": "総務", + "readging": "そうむ", + "pos": "名詞", + "pn": -0.17032 + }, + { + "surface": "渡世", + "readging": "とせい", + "pos": "名詞", + "pn": -0.170324 + }, + { + "surface": "切取り", + "readging": "きりとり", + "pos": "名詞", + "pn": -0.170324 + }, + { + "surface": "シンメトリー", + "readging": "シンメトリー", + "pos": "名詞", + "pn": -0.170348 + }, + { + "surface": "年魚", + "readging": "ねんぎょ", + "pos": "名詞", + "pn": -0.170363 + }, + { + "surface": "林地", + "readging": "りんち", + "pos": "名詞", + "pn": -0.170366 + }, + { + "surface": "クラクション", + "readging": "クラクション", + "pos": "名詞", + "pn": -0.170372 + }, + { + "surface": "社会人", + "readging": "しゃかいじん", + "pos": "名詞", + "pn": -0.170383 + }, + { + "surface": "三業", + "readging": "さんぎょう", + "pos": "名詞", + "pn": -0.170392 + }, + { + "surface": "膨張", + "readging": "ぼうちょう", + "pos": "名詞", + "pn": -0.170422 + }, + { + "surface": "実録", + "readging": "じつろく", + "pos": "名詞", + "pn": -0.170426 + }, + { + "surface": "外祖母", + "readging": "がいそぼ", + "pos": "名詞", + "pn": -0.170427 + }, + { + "surface": "石灰洞", + "readging": "せっかいどう", + "pos": "名詞", + "pn": -0.170428 + }, + { + "surface": "潺湲", + "readging": "せんかん", + "pos": "名詞", + "pn": -0.170429 + }, + { + "surface": "荼毘", + "readging": "だび", + "pos": "名詞", + "pn": -0.170437 + }, + { + "surface": "満票", + "readging": "まんぴょう", + "pos": "名詞", + "pn": -0.170447 + }, + { + "surface": "地下", + "readging": "じげ", + "pos": "名詞", + "pn": -0.170498 + }, + { + "surface": "零れ種", + "readging": "こぼれだね", + "pos": "名詞", + "pn": -0.170501 + }, + { + "surface": "膝栗毛", + "readging": "ひざくりげ", + "pos": "名詞", + "pn": -0.170503 + }, + { + "surface": "一挙両得", + "readging": "いっきょりょうとく", + "pos": "名詞", + "pn": -0.170527 + }, + { + "surface": "募債", + "readging": "ぼさい", + "pos": "名詞", + "pn": -0.170529 + }, + { + "surface": "皇宮", + "readging": "こうぐう", + "pos": "名詞", + "pn": -0.170533 + }, + { + "surface": "クルー", + "readging": "クルー", + "pos": "名詞", + "pn": -0.170534 + }, + { + "surface": "にこよん", + "readging": "にこよん", + "pos": "名詞", + "pn": -0.170537 + }, + { + "surface": "不可避", + "readging": "ふかひ", + "pos": "名詞", + "pn": -0.170546 + }, + { + "surface": "実科", + "readging": "じっか", + "pos": "名詞", + "pn": -0.170549 + }, + { + "surface": "苗代時", + "readging": "なわしろ", + "pos": "名詞", + "pn": -0.170564 + }, + { + "surface": "高", + "readging": "だか", + "pos": "名詞", + "pn": -0.170571 + }, + { + "surface": "オリンピック", + "readging": "オリンピック", + "pos": "名詞", + "pn": -0.170575 + }, + { + "surface": "ほのぼの", + "readging": "ほのぼの", + "pos": "副詞", + "pn": -0.170595 + }, + { + "surface": "尾てい骨", + "readging": "びていこつ", + "pos": "名詞", + "pn": -0.170605 + }, + { + "surface": "帰帆", + "readging": "きはん", + "pos": "名詞", + "pn": -0.17062 + }, + { + "surface": "愛唱", + "readging": "あいしょう", + "pos": "名詞", + "pn": -0.170627 + }, + { + "surface": "錦絵", + "readging": "にしきえ", + "pos": "名詞", + "pn": -0.170639 + }, + { + "surface": "足切り", + "readging": "あしきり", + "pos": "名詞", + "pn": -0.170648 + }, + { + "surface": "失笑", + "readging": "しっしょう", + "pos": "名詞", + "pn": -0.170681 + }, + { + "surface": "妻板", + "readging": "つまいた", + "pos": "名詞", + "pn": -0.170682 + }, + { + "surface": "長トン", + "readging": "ちょうトン", + "pos": "名詞", + "pn": -0.170705 + }, + { + "surface": "八白", + "readging": "はっぱく", + "pos": "名詞", + "pn": -0.170712 + }, + { + "surface": "六白", + "readging": "ろっぱく", + "pos": "名詞", + "pn": -0.170712 + }, + { + "surface": "七赤", + "readging": "しちせき", + "pos": "名詞", + "pn": -0.170712 + }, + { + "surface": "四緑", + "readging": "しろく", + "pos": "名詞", + "pn": -0.170712 + }, + { + "surface": "二黒", + "readging": "じこく", + "pos": "名詞", + "pn": -0.170712 + }, + { + "surface": "五黄", + "readging": "ごおう", + "pos": "名詞", + "pn": -0.170712 + }, + { + "surface": "快挙", + "readging": "かいきょ", + "pos": "名詞", + "pn": -0.170738 + }, + { + "surface": "碁笥", + "readging": "ごけ", + "pos": "名詞", + "pn": -0.170747 + }, + { + "surface": "伍長", + "readging": "ごちょう", + "pos": "名詞", + "pn": -0.170747 + }, + { + "surface": "免訴", + "readging": "めんそ", + "pos": "名詞", + "pn": -0.170777 + }, + { + "surface": "寝相", + "readging": "ねぞう", + "pos": "名詞", + "pn": -0.170809 + }, + { + "surface": "お山", + "readging": "おやま", + "pos": "名詞", + "pn": -0.170826 + }, + { + "surface": "飛地", + "readging": "とびち", + "pos": "名詞", + "pn": -0.170843 + }, + { + "surface": "少欲", + "readging": "しょうよく", + "pos": "名詞", + "pn": -0.170858 + }, + { + "surface": "学説", + "readging": "がくせつ", + "pos": "名詞", + "pn": -0.170878 + }, + { + "surface": "党利", + "readging": "とうり", + "pos": "名詞", + "pn": -0.170889 + }, + { + "surface": "琴歌", + "readging": "ことうた", + "pos": "名詞", + "pn": -0.170899 + }, + { + "surface": "鹹味", + "readging": "かんみ", + "pos": "名詞", + "pn": -0.170927 + }, + { + "surface": "商館", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.170958 + }, + { + "surface": "忠義立て", + "readging": "ちゅうぎだて", + "pos": "名詞", + "pn": -0.170992 + }, + { + "surface": "密輸", + "readging": "みつゆ", + "pos": "名詞", + "pn": -0.171015 + }, + { + "surface": "悠久", + "readging": "ゆうきゅう", + "pos": "名詞", + "pn": -0.171044 + }, + { + "surface": "ボディー", + "readging": "ボディーガード", + "pos": "名詞", + "pn": -0.171059 + }, + { + "surface": "百雷", + "readging": "ひゃくらい", + "pos": "名詞", + "pn": -0.171066 + }, + { + "surface": "姻族", + "readging": "いんぞく", + "pos": "名詞", + "pn": -0.171068 + }, + { + "surface": "水茎", + "readging": "みずくき", + "pos": "名詞", + "pn": -0.171074 + }, + { + "surface": "眼科", + "readging": "がんか", + "pos": "名詞", + "pn": -0.17108 + }, + { + "surface": "シュールレアリスム", + "readging": "シュールレアリスム", + "pos": "名詞", + "pn": -0.171084 + }, + { + "surface": "大法", + "readging": "たいほう", + "pos": "名詞", + "pn": -0.17111 + }, + { + "surface": "羅針儀", + "readging": "らしんぎ", + "pos": "名詞", + "pn": -0.171115 + }, + { + "surface": "農兵", + "readging": "のうへい", + "pos": "名詞", + "pn": -0.171133 + }, + { + "surface": "準じる", + "readging": "じゅんじる", + "pos": "動詞", + "pn": -0.171141 + }, + { + "surface": "客将", + "readging": "かくしょう", + "pos": "名詞", + "pn": -0.171179 + }, + { + "surface": "補陀落", + "readging": "ふだらく", + "pos": "名詞", + "pn": -0.171193 + }, + { + "surface": "骨柄", + "readging": "こつがら", + "pos": "名詞", + "pn": -0.171207 + }, + { + "surface": "啓蟄", + "readging": "けいちつ", + "pos": "名詞", + "pn": -0.171208 + }, + { + "surface": "上様", + "readging": "かみさま", + "pos": "名詞", + "pn": -0.171214 + }, + { + "surface": "重用", + "readging": "ちょうよう", + "pos": "名詞", + "pn": -0.171214 + }, + { + "surface": "人海", + "readging": "じんかい", + "pos": "名詞", + "pn": -0.171216 + }, + { + "surface": "菜の花", + "readging": "なのはな", + "pos": "名詞", + "pn": -0.171231 + }, + { + "surface": "大同団結", + "readging": "だいどうだんけつ", + "pos": "名詞", + "pn": -0.17124 + }, + { + "surface": "大入", + "readging": "おおいり", + "pos": "名詞", + "pn": -0.171261 + }, + { + "surface": "直往邁進", + "readging": "ちょくおうまいしん", + "pos": "名詞", + "pn": -0.171305 + }, + { + "surface": "詩劇", + "readging": "しげき", + "pos": "名詞", + "pn": -0.171313 + }, + { + "surface": "学院", + "readging": "がくいん", + "pos": "名詞", + "pn": -0.171313 + }, + { + "surface": "城下", + "readging": "じょうか", + "pos": "名詞", + "pn": -0.171331 + }, + { + "surface": "報賽", + "readging": "ほうさい", + "pos": "名詞", + "pn": -0.17134 + }, + { + "surface": "拮抗", + "readging": "きっこう", + "pos": "名詞", + "pn": -0.171345 + }, + { + "surface": "主幹", + "readging": "しゅかん", + "pos": "名詞", + "pn": -0.171346 + }, + { + "surface": "ローマ数字", + "readging": "ローマすうじ", + "pos": "名詞", + "pn": -0.171349 + }, + { + "surface": "後添い", + "readging": "のちぞい", + "pos": "名詞", + "pn": -0.171371 + }, + { + "surface": "船問屋", + "readging": "ふなどんや", + "pos": "名詞", + "pn": -0.17138 + }, + { + "surface": "朗色", + "readging": "ろうしょく", + "pos": "名詞", + "pn": -0.17139 + }, + { + "surface": "洋館", + "readging": "ようかん", + "pos": "名詞", + "pn": -0.171401 + }, + { + "surface": "織元", + "readging": "おりもと", + "pos": "名詞", + "pn": -0.171404 + }, + { + "surface": "仏道", + "readging": "ぶつどう", + "pos": "名詞", + "pn": -0.171408 + }, + { + "surface": "雛の節句", + "readging": "ひなのせっく", + "pos": "名詞", + "pn": -0.17141 + }, + { + "surface": "大旆", + "readging": "たいはい", + "pos": "名詞", + "pn": -0.171415 + }, + { + "surface": "栄養価", + "readging": "えいようか", + "pos": "名詞", + "pn": -0.171415 + }, + { + "surface": "文章法", + "readging": "ぶんしょうほう", + "pos": "名詞", + "pn": -0.17142 + }, + { + "surface": "林学", + "readging": "りんがく", + "pos": "名詞", + "pn": -0.171427 + }, + { + "surface": "高祖母", + "readging": "こうそぼ", + "pos": "名詞", + "pn": -0.171429 + }, + { + "surface": "初端", + "readging": "しょっぱな", + "pos": "名詞", + "pn": -0.171443 + }, + { + "surface": "白根", + "readging": "しらね", + "pos": "名詞", + "pn": -0.171455 + }, + { + "surface": "優待", + "readging": "ゆうたい", + "pos": "名詞", + "pn": -0.171477 + }, + { + "surface": "玄", + "readging": "げん", + "pos": "名詞", + "pn": -0.171526 + }, + { + "surface": "立役", + "readging": "たちやく", + "pos": "名詞", + "pn": -0.171528 + }, + { + "surface": "股上", + "readging": "またがみ", + "pos": "名詞", + "pn": -0.171538 + }, + { + "surface": "資力", + "readging": "しりょく", + "pos": "名詞", + "pn": -0.171561 + }, + { + "surface": "帯祝", + "readging": "おびいわい", + "pos": "名詞", + "pn": -0.171571 + }, + { + "surface": "外局", + "readging": "がいきょく", + "pos": "名詞", + "pn": -0.171575 + }, + { + "surface": "青果", + "readging": "せいか", + "pos": "名詞", + "pn": -0.171583 + }, + { + "surface": "一因", + "readging": "いちいん", + "pos": "名詞", + "pn": -0.171587 + }, + { + "surface": "子持", + "readging": "こもち", + "pos": "名詞", + "pn": -0.171588 + }, + { + "surface": "発効", + "readging": "はっこう", + "pos": "名詞", + "pn": -0.171605 + }, + { + "surface": "ロング", + "readging": "ロングラン", + "pos": "名詞", + "pn": -0.171616 + }, + { + "surface": "筆勢", + "readging": "ひっせい", + "pos": "名詞", + "pn": -0.171619 + }, + { + "surface": "党規", + "readging": "とうき", + "pos": "名詞", + "pn": -0.171625 + }, + { + "surface": "共倒れ", + "readging": "ともだおれ", + "pos": "名詞", + "pn": -0.171626 + }, + { + "surface": "巨刹", + "readging": "きょさつ", + "pos": "名詞", + "pn": -0.171631 + }, + { + "surface": "末派", + "readging": "まっぱ", + "pos": "名詞", + "pn": -0.171633 + }, + { + "surface": "城主", + "readging": "じょうしゅ", + "pos": "名詞", + "pn": -0.171653 + }, + { + "surface": "旧居", + "readging": "きゅうきょ", + "pos": "名詞", + "pn": -0.171659 + }, + { + "surface": "所轄", + "readging": "しょかつ", + "pos": "名詞", + "pn": -0.17166 + }, + { + "surface": "補則", + "readging": "ほそく", + "pos": "名詞", + "pn": -0.171663 + }, + { + "surface": "逃避", + "readging": "とうひ", + "pos": "名詞", + "pn": -0.171666 + }, + { + "surface": "俗念", + "readging": "ぞくねん", + "pos": "名詞", + "pn": -0.17168 + }, + { + "surface": "婆心", + "readging": "ばしん", + "pos": "名詞", + "pn": -0.171684 + }, + { + "surface": "仏説", + "readging": "ぶっせつ", + "pos": "名詞", + "pn": -0.171687 + }, + { + "surface": "付与", + "readging": "ふよ", + "pos": "名詞", + "pn": -0.171708 + }, + { + "surface": "防弾", + "readging": "ぼうだん", + "pos": "名詞", + "pn": -0.171731 + }, + { + "surface": "三綱", + "readging": "さんこう", + "pos": "名詞", + "pn": -0.171738 + }, + { + "surface": "極め", + "readging": "きわめ", + "pos": "名詞", + "pn": -0.171739 + }, + { + "surface": "逃げ惑う", + "readging": "にげまどう", + "pos": "動詞", + "pn": -0.171745 + }, + { + "surface": "粋筋", + "readging": "いきすじ", + "pos": "名詞", + "pn": -0.171755 + }, + { + "surface": "梅雨", + "readging": "つゆあけ", + "pos": "名詞", + "pn": -0.171773 + }, + { + "surface": "螻蛄", + "readging": "おけら", + "pos": "名詞", + "pn": -0.171783 + }, + { + "surface": "京染", + "readging": "きょうぞめ", + "pos": "名詞", + "pn": -0.171828 + }, + { + "surface": "紺屋", + "readging": "こんや", + "pos": "名詞", + "pn": -0.171828 + }, + { + "surface": "登板", + "readging": "とうばん", + "pos": "名詞", + "pn": -0.17186 + }, + { + "surface": "チェス", + "readging": "チェス", + "pos": "名詞", + "pn": -0.171898 + }, + { + "surface": "虚無主義", + "readging": "きょむしゅぎ", + "pos": "名詞", + "pn": -0.171917 + }, + { + "surface": "弦楽", + "readging": "げんがく", + "pos": "名詞", + "pn": -0.171928 + }, + { + "surface": "目溢し", + "readging": "めこぼし", + "pos": "名詞", + "pn": -0.171954 + }, + { + "surface": "終盤", + "readging": "しゅうばん", + "pos": "名詞", + "pn": -0.171973 + }, + { + "surface": "熱熱", + "readging": "あつあつ", + "pos": "名詞", + "pn": -0.171994 + }, + { + "surface": "軍資金", + "readging": "ぐんしきん", + "pos": "名詞", + "pn": -0.171995 + }, + { + "surface": "価値判断", + "readging": "かちはんだん", + "pos": "名詞", + "pn": -0.172 + }, + { + "surface": "教範", + "readging": "きょうはん", + "pos": "名詞", + "pn": -0.172002 + }, + { + "surface": "遊猟", + "readging": "ゆうりょう", + "pos": "名詞", + "pn": -0.172017 + }, + { + "surface": "声楽", + "readging": "せいがく", + "pos": "名詞", + "pn": -0.172021 + }, + { + "surface": "復啓", + "readging": "ふくけい", + "pos": "名詞", + "pn": -0.172034 + }, + { + "surface": "今回", + "readging": "こんかい", + "pos": "名詞", + "pn": -0.172041 + }, + { + "surface": "持高", + "readging": "もちだか", + "pos": "名詞", + "pn": -0.172042 + }, + { + "surface": "デビュー", + "readging": "デビュー", + "pos": "名詞", + "pn": -0.172044 + }, + { + "surface": "中耳", + "readging": "ちゅうじ", + "pos": "名詞", + "pn": -0.172098 + }, + { + "surface": "内局", + "readging": "ないきょく", + "pos": "名詞", + "pn": -0.172124 + }, + { + "surface": "教頭", + "readging": "きょうとう", + "pos": "名詞", + "pn": -0.172128 + }, + { + "surface": "若旦那", + "readging": "わかだんな", + "pos": "名詞", + "pn": -0.172142 + }, + { + "surface": "給費", + "readging": "きゅうひ", + "pos": "名詞", + "pn": -0.172156 + }, + { + "surface": "遊ばす", + "readging": "あそばす", + "pos": "動詞", + "pn": -0.172157 + }, + { + "surface": "どさくさ紛れ", + "readging": "どさくさまぎれ", + "pos": "名詞", + "pn": -0.172167 + }, + { + "surface": "善言", + "readging": "ぜんげん", + "pos": "名詞", + "pn": -0.172185 + }, + { + "surface": "グリニッジ時", + "readging": "グリニッジじ", + "pos": "名詞", + "pn": -0.172185 + }, + { + "surface": "薪水", + "readging": "しんすい", + "pos": "名詞", + "pn": -0.172187 + }, + { + "surface": "気根", + "readging": "きこん", + "pos": "名詞", + "pn": -0.172188 + }, + { + "surface": "PAS", + "readging": "パス", + "pos": "名詞", + "pn": -0.172194 + }, + { + "surface": "書出す", + "readging": "かきだす", + "pos": "動詞", + "pn": -0.172206 + }, + { + "surface": "中原", + "readging": "ちゅうげん", + "pos": "名詞", + "pn": -0.172233 + }, + { + "surface": "戦後", + "readging": "せんご", + "pos": "名詞", + "pn": -0.172281 + }, + { + "surface": "スタント マン", + "readging": "スタント マン", + "pos": "名詞", + "pn": -0.172307 + }, + { + "surface": "粛党", + "readging": "しゅくとう", + "pos": "名詞", + "pn": -0.172308 + }, + { + "surface": "採算", + "readging": "さいさん", + "pos": "名詞", + "pn": -0.172314 + }, + { + "surface": "道聴塗説", + "readging": "どうちょうとせつ", + "pos": "名詞", + "pn": -0.172329 + }, + { + "surface": "陸続き", + "readging": "りくつづき", + "pos": "名詞", + "pn": -0.172329 + }, + { + "surface": "人少な", + "readging": "ひとずくな", + "pos": "名詞", + "pn": -0.172347 + }, + { + "surface": "開府", + "readging": "かいふ", + "pos": "名詞", + "pn": -0.172382 + }, + { + "surface": "絶海", + "readging": "ぜっかい", + "pos": "名詞", + "pn": -0.172393 + }, + { + "surface": "執達吏", + "readging": "しったつり", + "pos": "名詞", + "pn": -0.172407 + }, + { + "surface": "スイミング", + "readging": "スイミング", + "pos": "名詞", + "pn": -0.172412 + }, + { + "surface": "月報", + "readging": "げっぽう", + "pos": "名詞", + "pn": -0.172414 + }, + { + "surface": "情意", + "readging": "じょうい", + "pos": "名詞", + "pn": -0.172425 + }, + { + "surface": "発布", + "readging": "はっぷ", + "pos": "名詞", + "pn": -0.172435 + }, + { + "surface": "防塵", + "readging": "ぼうじん", + "pos": "名詞", + "pn": -0.172437 + }, + { + "surface": "官舎", + "readging": "かんしゃ", + "pos": "名詞", + "pn": -0.172444 + }, + { + "surface": "首脳部", + "readging": "しゅのうぶ", + "pos": "名詞", + "pn": -0.17246 + }, + { + "surface": "御願", + "readging": "ごがん", + "pos": "名詞", + "pn": -0.172479 + }, + { + "surface": "由無し言", + "readging": "よしなしごと", + "pos": "名詞", + "pn": -0.172479 + }, + { + "surface": "社日", + "readging": "しゃにち", + "pos": "名詞", + "pn": -0.172487 + }, + { + "surface": "まにまに", + "readging": "まにまに", + "pos": "副詞", + "pn": -0.172498 + }, + { + "surface": "改編", + "readging": "かいへん", + "pos": "名詞", + "pn": -0.172499 + }, + { + "surface": "ポートレート", + "readging": "ポートレート", + "pos": "名詞", + "pn": -0.172508 + }, + { + "surface": "口数", + "readging": "くちかず", + "pos": "名詞", + "pn": -0.172509 + }, + { + "surface": "陶芸", + "readging": "とうげい", + "pos": "名詞", + "pn": -0.172529 + }, + { + "surface": "変転", + "readging": "へんてん", + "pos": "名詞", + "pn": -0.172539 + }, + { + "surface": "狩人", + "readging": "かりゅうど", + "pos": "名詞", + "pn": -0.172561 + }, + { + "surface": "家禽", + "readging": "かきん", + "pos": "名詞", + "pn": -0.172571 + }, + { + "surface": "自然科学", + "readging": "しぜんかがく", + "pos": "名詞", + "pn": -0.172601 + }, + { + "surface": "超国家主義", + "readging": "ちょうこっかしゅぎ", + "pos": "名詞", + "pn": -0.172603 + }, + { + "surface": "旭光", + "readging": "きょっこう", + "pos": "名詞", + "pn": -0.172619 + }, + { + "surface": "安め", + "readging": "やすめ", + "pos": "名詞", + "pn": -0.172626 + }, + { + "surface": "どぶろく", + "readging": "どぶろく", + "pos": "名詞", + "pn": -0.172632 + }, + { + "surface": "含蓄", + "readging": "がんちく", + "pos": "名詞", + "pn": -0.172643 + }, + { + "surface": "戦跡", + "readging": "せんせき", + "pos": "名詞", + "pn": -0.172646 + }, + { + "surface": "既存", + "readging": "きそん", + "pos": "名詞", + "pn": -0.17266 + }, + { + "surface": "思いの丈", + "readging": "おもいのたけ", + "pos": "名詞", + "pn": -0.172669 + }, + { + "surface": "黄銅", + "readging": "おうどう", + "pos": "名詞", + "pn": -0.172669 + }, + { + "surface": "歌学", + "readging": "かがく", + "pos": "名詞", + "pn": -0.17268 + }, + { + "surface": "詰掛ける", + "readging": "つめかける", + "pos": "動詞", + "pn": -0.172722 + }, + { + "surface": "土佐絵", + "readging": "とさえ", + "pos": "名詞", + "pn": -0.172728 + }, + { + "surface": "親類付合い", + "readging": "しんるいづきあい", + "pos": "名詞", + "pn": -0.172738 + }, + { + "surface": "円為替", + "readging": "えんかわせ", + "pos": "名詞", + "pn": -0.172756 + }, + { + "surface": "黒山", + "readging": "くろやま", + "pos": "名詞", + "pn": -0.172762 + }, + { + "surface": "貸手", + "readging": "かして", + "pos": "名詞", + "pn": -0.172774 + }, + { + "surface": "仙客", + "readging": "せんかく", + "pos": "名詞", + "pn": -0.172779 + }, + { + "surface": "確率論", + "readging": "かくりつろん", + "pos": "名詞", + "pn": -0.172783 + }, + { + "surface": "貸し", + "readging": "かし", + "pos": "名詞", + "pn": -0.172793 + }, + { + "surface": "とんとん", + "readging": "とんとん", + "pos": "名詞", + "pn": -0.172818 + }, + { + "surface": "奇奇怪怪", + "readging": "ききかいかい", + "pos": "名詞", + "pn": -0.17283 + }, + { + "surface": "客筋", + "readging": "きゃくすじ", + "pos": "名詞", + "pn": -0.172855 + }, + { + "surface": "花実", + "readging": "はなみ", + "pos": "名詞", + "pn": -0.17286 + }, + { + "surface": "片糸", + "readging": "かたいと", + "pos": "名詞", + "pn": -0.172862 + }, + { + "surface": "アナログ", + "readging": "アナログ", + "pos": "名詞", + "pn": -0.172862 + }, + { + "surface": "遺失", + "readging": "いしつ", + "pos": "名詞", + "pn": -0.172863 + }, + { + "surface": "和訳", + "readging": "わやく", + "pos": "名詞", + "pn": -0.172865 + }, + { + "surface": "敬老", + "readging": "けいろう", + "pos": "名詞", + "pn": -0.172868 + }, + { + "surface": "変移", + "readging": "へんい", + "pos": "名詞", + "pn": -0.172878 + }, + { + "surface": "腑分", + "readging": "ふわけ", + "pos": "名詞", + "pn": -0.172879 + }, + { + "surface": "誘致", + "readging": "ゆうち", + "pos": "名詞", + "pn": -0.172884 + }, + { + "surface": "ぱらりと", + "readging": "ぱらりと", + "pos": "副詞", + "pn": -0.172887 + }, + { + "surface": "雑纂", + "readging": "ざっさん", + "pos": "名詞", + "pn": -0.172948 + }, + { + "surface": "会葬", + "readging": "かいそう", + "pos": "名詞", + "pn": -0.172971 + }, + { + "surface": "稲叢", + "readging": "いなむら", + "pos": "名詞", + "pn": -0.173004 + }, + { + "surface": "明り取り", + "readging": "あかりとり", + "pos": "名詞", + "pn": -0.173007 + }, + { + "surface": "文化映画", + "readging": "ぶんかえいが", + "pos": "名詞", + "pn": -0.17301 + }, + { + "surface": "小笹", + "readging": "おざさ", + "pos": "名詞", + "pn": -0.173015 + }, + { + "surface": "宿命論", + "readging": "しゅくめいろん", + "pos": "名詞", + "pn": -0.173025 + }, + { + "surface": "精神労働", + "readging": "せいしんろうどう", + "pos": "名詞", + "pn": -0.173037 + }, + { + "surface": "スターリング", + "readging": "スターリング", + "pos": "名詞", + "pn": -0.173062 + }, + { + "surface": "下世話", + "readging": "げせわ", + "pos": "名詞", + "pn": -0.173074 + }, + { + "surface": "遊閑地", + "readging": "ゆうかんち", + "pos": "名詞", + "pn": -0.173079 + }, + { + "surface": "銀山", + "readging": "ぎんざん", + "pos": "名詞", + "pn": -0.173152 + }, + { + "surface": "熟慮断行", + "readging": "じゅくりょだんこう", + "pos": "名詞", + "pn": -0.173156 + }, + { + "surface": "忠僕", + "readging": "ちゅうぼく", + "pos": "名詞", + "pn": -0.173177 + }, + { + "surface": "理想", + "readging": "りそう", + "pos": "名詞", + "pn": -0.173178 + }, + { + "surface": "担税", + "readging": "たんぜい", + "pos": "名詞", + "pn": -0.173185 + }, + { + "surface": "外郭団体", + "readging": "がいかくだんたい", + "pos": "名詞", + "pn": -0.173186 + }, + { + "surface": "道しるべ", + "readging": "みちしるべ", + "pos": "名詞", + "pn": -0.173196 + }, + { + "surface": "酒", + "readging": "さけ", + "pos": "名詞", + "pn": -0.173205 + }, + { + "surface": "水柱", + "readging": "みずばしら", + "pos": "名詞", + "pn": -0.173208 + }, + { + "surface": "神話", + "readging": "しんわ", + "pos": "名詞", + "pn": -0.173212 + }, + { + "surface": "校僕", + "readging": "こうぼく", + "pos": "名詞", + "pn": -0.173212 + }, + { + "surface": "当初", + "readging": "とうしょ", + "pos": "名詞", + "pn": -0.173238 + }, + { + "surface": "遺訓", + "readging": "いくん", + "pos": "名詞", + "pn": -0.17324 + }, + { + "surface": "鼓吹", + "readging": "こすい", + "pos": "名詞", + "pn": -0.173253 + }, + { + "surface": "丁付", + "readging": "ちょうづけ", + "pos": "名詞", + "pn": -0.173265 + }, + { + "surface": "御髪上げ", + "readging": "おぐしあげ", + "pos": "名詞", + "pn": -0.173266 + }, + { + "surface": "内国", + "readging": "ないこく", + "pos": "名詞", + "pn": -0.17327 + }, + { + "surface": "バレル", + "readging": "バレル", + "pos": "名詞", + "pn": -0.173315 + }, + { + "surface": "式能", + "readging": "しきのう", + "pos": "名詞", + "pn": -0.173345 + }, + { + "surface": "天馬", + "readging": "てんば", + "pos": "名詞", + "pn": -0.173346 + }, + { + "surface": "家庭教師", + "readging": "かていきょうし", + "pos": "名詞", + "pn": -0.173353 + }, + { + "surface": "ファックス", + "readging": "ファックス", + "pos": "名詞", + "pn": -0.173361 + }, + { + "surface": "帝", + "readging": "てい", + "pos": "名詞", + "pn": -0.173374 + }, + { + "surface": "女", + "readging": "おんな", + "pos": "名詞", + "pn": -0.173387 + }, + { + "surface": "共切れ", + "readging": "ともぎれ", + "pos": "名詞", + "pn": -0.173399 + }, + { + "surface": "初雪", + "readging": "はつゆき", + "pos": "名詞", + "pn": -0.173419 + }, + { + "surface": "涅槃会", + "readging": "ねはんえ", + "pos": "名詞", + "pn": -0.173422 + }, + { + "surface": "丹青", + "readging": "たんせい", + "pos": "名詞", + "pn": -0.17343 + }, + { + "surface": "来談", + "readging": "らいだん", + "pos": "名詞", + "pn": -0.173446 + }, + { + "surface": "吉野紙", + "readging": "よしのがみ", + "pos": "名詞", + "pn": -0.173453 + }, + { + "surface": "開票", + "readging": "かいひょう", + "pos": "名詞", + "pn": -0.173475 + }, + { + "surface": "放りっぱなし", + "readging": "ほうりっぱなし", + "pos": "名詞", + "pn": -0.173484 + }, + { + "surface": "細論", + "readging": "さいろん", + "pos": "名詞", + "pn": -0.173514 + }, + { + "surface": "教皇", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.173532 + }, + { + "surface": "メッセンジャー", + "readging": "メッセンジャー", + "pos": "名詞", + "pn": -0.173538 + }, + { + "surface": "花鋏", + "readging": "はなばさみ", + "pos": "名詞", + "pn": -0.173567 + }, + { + "surface": "付置", + "readging": "ふち", + "pos": "名詞", + "pn": -0.173569 + }, + { + "surface": "左派", + "readging": "さは", + "pos": "名詞", + "pn": -0.173608 + }, + { + "surface": "反射鏡", + "readging": "はんしゃきょう", + "pos": "名詞", + "pn": -0.173635 + }, + { + "surface": "弟子", + "readging": "でし", + "pos": "名詞", + "pn": -0.173646 + }, + { + "surface": "氷野", + "readging": "ひょうや", + "pos": "名詞", + "pn": -0.173676 + }, + { + "surface": "原隊", + "readging": "げんたい", + "pos": "名詞", + "pn": -0.173686 + }, + { + "surface": "お偉方", + "readging": "おえらがた", + "pos": "名詞", + "pn": -0.173688 + }, + { + "surface": "仰せられる", + "readging": "おおせられる", + "pos": "動詞", + "pn": -0.173692 + }, + { + "surface": "野太い", + "readging": "のぶとい", + "pos": "形容詞", + "pn": -0.173705 + }, + { + "surface": "荷受", + "readging": "にうけ", + "pos": "名詞", + "pn": -0.173705 + }, + { + "surface": "地底", + "readging": "ちてい", + "pos": "名詞", + "pn": -0.173744 + }, + { + "surface": "薪割り", + "readging": "まきわり", + "pos": "名詞", + "pn": -0.17376 + }, + { + "surface": "手弁当", + "readging": "てべんとう", + "pos": "名詞", + "pn": -0.173763 + }, + { + "surface": "リアリズム", + "readging": "リアリズム", + "pos": "名詞", + "pn": -0.173764 + }, + { + "surface": "和戦", + "readging": "わせん", + "pos": "名詞", + "pn": -0.173764 + }, + { + "surface": "七堂伽藍", + "readging": "しちどうがらん", + "pos": "名詞", + "pn": -0.173765 + }, + { + "surface": "幾何級数", + "readging": "きかきゅうすう", + "pos": "名詞", + "pn": -0.173769 + }, + { + "surface": "紅型", + "readging": "びんがた", + "pos": "名詞", + "pn": -0.173785 + }, + { + "surface": "穂麦", + "readging": "ほむぎ", + "pos": "名詞", + "pn": -0.173805 + }, + { + "surface": "金一封", + "readging": "きんいっぷう", + "pos": "名詞", + "pn": -0.173806 + }, + { + "surface": "泊り番", + "readging": "とまりばん", + "pos": "名詞", + "pn": -0.173854 + }, + { + "surface": "敬白", + "readging": "けいはく", + "pos": "名詞", + "pn": -0.173863 + }, + { + "surface": "程遠い", + "readging": "ほどとおい", + "pos": "形容詞", + "pn": -0.173866 + }, + { + "surface": "令妹", + "readging": "れいまい", + "pos": "名詞", + "pn": -0.173873 + }, + { + "surface": "寄鍋", + "readging": "よせなべ", + "pos": "名詞", + "pn": -0.173875 + }, + { + "surface": "地力", + "readging": "ちりょく", + "pos": "名詞", + "pn": -0.173878 + }, + { + "surface": "節榑", + "readging": "ふしくれ", + "pos": "名詞", + "pn": -0.173882 + }, + { + "surface": "アラビア数字", + "readging": "アラビアすうじ", + "pos": "名詞", + "pn": -0.173889 + }, + { + "surface": "聴音", + "readging": "ちょうおん", + "pos": "名詞", + "pn": -0.173892 + }, + { + "surface": "舞台劇", + "readging": "ぶたいげき", + "pos": "名詞", + "pn": -0.173899 + }, + { + "surface": "飄然", + "readging": "ひょうぜん", + "pos": "名詞", + "pn": -0.173939 + }, + { + "surface": "保護者", + "readging": "ほごしゃ", + "pos": "名詞", + "pn": -0.173951 + }, + { + "surface": "方処", + "readging": "ほうしょ", + "pos": "名詞", + "pn": -0.173958 + }, + { + "surface": "満廷", + "readging": "まんてい", + "pos": "名詞", + "pn": -0.173972 + }, + { + "surface": "ジンタ", + "readging": "ジンタ", + "pos": "名詞", + "pn": -0.174007 + }, + { + "surface": "尊攘", + "readging": "そんじょう", + "pos": "名詞", + "pn": -0.174014 + }, + { + "surface": "ムード", + "readging": "ムード", + "pos": "名詞", + "pn": -0.174015 + }, + { + "surface": "放資", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.174049 + }, + { + "surface": "ミクロン", + "readging": "ミクロン", + "pos": "名詞", + "pn": -0.174063 + }, + { + "surface": "空拳", + "readging": "くうけん", + "pos": "名詞", + "pn": -0.174066 + }, + { + "surface": "権門", + "readging": "けんもん", + "pos": "名詞", + "pn": -0.174069 + }, + { + "surface": "コサージ", + "readging": "コサージ", + "pos": "名詞", + "pn": -0.174078 + }, + { + "surface": "憲兵", + "readging": "けんぺい", + "pos": "名詞", + "pn": -0.174082 + }, + { + "surface": "国家試験", + "readging": "こっかしけん", + "pos": "名詞", + "pn": -0.174089 + }, + { + "surface": "深化", + "readging": "しんか", + "pos": "名詞", + "pn": -0.174097 + }, + { + "surface": "町医者", + "readging": "まちいしゃ", + "pos": "名詞", + "pn": -0.174097 + }, + { + "surface": "辻説法", + "readging": "つじせっぽう", + "pos": "名詞", + "pn": -0.17411 + }, + { + "surface": "善後", + "readging": "ぜんご", + "pos": "名詞", + "pn": -0.17411 + }, + { + "surface": "早早", + "readging": "はやばや", + "pos": "副詞", + "pn": -0.174113 + }, + { + "surface": "今風", + "readging": "いまふう", + "pos": "名詞", + "pn": -0.174126 + }, + { + "surface": "既済", + "readging": "きさい", + "pos": "名詞", + "pn": -0.174166 + }, + { + "surface": "内因", + "readging": "ないいん", + "pos": "名詞", + "pn": -0.174205 + }, + { + "surface": "親方", + "readging": "おやかた", + "pos": "名詞", + "pn": -0.174209 + }, + { + "surface": "俳句", + "readging": "はいく", + "pos": "名詞", + "pn": -0.174227 + }, + { + "surface": "サラダ", + "readging": "サラダオイル", + "pos": "名詞", + "pn": -0.174286 + }, + { + "surface": "筆筒", + "readging": "ふでづつ", + "pos": "名詞", + "pn": -0.174297 + }, + { + "surface": "マグニチュード", + "readging": "マグニチュード", + "pos": "名詞", + "pn": -0.174309 + }, + { + "surface": "庭口", + "readging": "にわぐち", + "pos": "名詞", + "pn": -0.174317 + }, + { + "surface": "音字", + "readging": "おんじ", + "pos": "名詞", + "pn": -0.174336 + }, + { + "surface": "遅速", + "readging": "ちそく", + "pos": "名詞", + "pn": -0.174357 + }, + { + "surface": "藤八拳", + "readging": "とうはちけん", + "pos": "名詞", + "pn": -0.174373 + }, + { + "surface": "川狩", + "readging": "かわがり", + "pos": "名詞", + "pn": -0.174389 + }, + { + "surface": "外装", + "readging": "がいそう", + "pos": "名詞", + "pn": -0.174391 + }, + { + "surface": "地祇", + "readging": "ちぎ", + "pos": "名詞", + "pn": -0.17441 + }, + { + "surface": "B5", + "readging": "ビーご", + "pos": "名詞", + "pn": -0.174416 + }, + { + "surface": "慶庵", + "readging": "けいあん", + "pos": "名詞", + "pn": -0.174434 + }, + { + "surface": "金殿玉楼", + "readging": "きんでんぎょくろう", + "pos": "名詞", + "pn": -0.174438 + }, + { + "surface": "ストア", + "readging": "ストア", + "pos": "名詞", + "pn": -0.17444 + }, + { + "surface": "寮母", + "readging": "りょうぼ", + "pos": "名詞", + "pn": -0.174477 + }, + { + "surface": "季春", + "readging": "きしゅん", + "pos": "名詞", + "pn": -0.174482 + }, + { + "surface": "筋子", + "readging": "すじこ", + "pos": "名詞", + "pn": -0.174488 + }, + { + "surface": "招請", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.174488 + }, + { + "surface": "縦穴", + "readging": "たてあな", + "pos": "名詞", + "pn": -0.174498 + }, + { + "surface": "労組", + "readging": "ろうそ", + "pos": "名詞", + "pn": -0.174499 + }, + { + "surface": "紫衣", + "readging": "しえ", + "pos": "名詞", + "pn": -0.174505 + }, + { + "surface": "墨字", + "readging": "すみじ", + "pos": "名詞", + "pn": -0.174518 + }, + { + "surface": "原語", + "readging": "げんご", + "pos": "名詞", + "pn": -0.174522 + }, + { + "surface": "樹海", + "readging": "じゅかい", + "pos": "名詞", + "pn": -0.174526 + }, + { + "surface": "立ち振舞", + "readging": "たちぶるまい", + "pos": "名詞", + "pn": -0.174533 + }, + { + "surface": "引決", + "readging": "いんけつ", + "pos": "名詞", + "pn": -0.174543 + }, + { + "surface": "笥", + "readging": "け", + "pos": "名詞", + "pn": -0.174565 + }, + { + "surface": "奇形", + "readging": "きけい", + "pos": "名詞", + "pn": -0.174571 + }, + { + "surface": "大鉈", + "readging": "おおなた", + "pos": "名詞", + "pn": -0.174629 + }, + { + "surface": "金枝", + "readging": "きんし", + "pos": "名詞", + "pn": -0.17463 + }, + { + "surface": "端株", + "readging": "はかぶ", + "pos": "名詞", + "pn": -0.174664 + }, + { + "surface": "腹話術", + "readging": "ふくわじゅつ", + "pos": "名詞", + "pn": -0.174671 + }, + { + "surface": "千分比", + "readging": "せんぶんひ", + "pos": "名詞", + "pn": -0.174679 + }, + { + "surface": "軍港", + "readging": "ぐんこう", + "pos": "名詞", + "pn": -0.174679 + }, + { + "surface": "快晴", + "readging": "かいせい", + "pos": "名詞", + "pn": -0.174689 + }, + { + "surface": "憎まれ役", + "readging": "にくまれやく", + "pos": "名詞", + "pn": -0.174697 + }, + { + "surface": "軍医", + "readging": "ぐんい", + "pos": "名詞", + "pn": -0.174699 + }, + { + "surface": "ついぞ", + "readging": "ついぞ", + "pos": "副詞", + "pn": -0.174702 + }, + { + "surface": "賀詞", + "readging": "がし", + "pos": "名詞", + "pn": -0.174726 + }, + { + "surface": "雑損", + "readging": "ざつそん", + "pos": "名詞", + "pn": -0.174731 + }, + { + "surface": "樹陰", + "readging": "じゅいん", + "pos": "名詞", + "pn": -0.174737 + }, + { + "surface": "学閥", + "readging": "がくばつ", + "pos": "名詞", + "pn": -0.174765 + }, + { + "surface": "宗主国", + "readging": "そうしゅこく", + "pos": "名詞", + "pn": -0.174779 + }, + { + "surface": "有らん限り", + "readging": "あらんかぎり", + "pos": "名詞", + "pn": -0.174786 + }, + { + "surface": "訃", + "readging": "ふ", + "pos": "名詞", + "pn": -0.174793 + }, + { + "surface": "半ら", + "readging": "なから", + "pos": "名詞", + "pn": -0.174794 + }, + { + "surface": "黒鉛", + "readging": "こくえん", + "pos": "名詞", + "pn": -0.174795 + }, + { + "surface": "師僧", + "readging": "しそう", + "pos": "名詞", + "pn": -0.174797 + }, + { + "surface": "人工語", + "readging": "じんこうご", + "pos": "名詞", + "pn": -0.174799 + }, + { + "surface": "四民", + "readging": "しみん", + "pos": "名詞", + "pn": -0.174801 + }, + { + "surface": "霊域", + "readging": "れいいき", + "pos": "名詞", + "pn": -0.174822 + }, + { + "surface": "被験者", + "readging": "ひけんしゃ", + "pos": "名詞", + "pn": -0.174835 + }, + { + "surface": "内燃機関", + "readging": "ないねんきかん", + "pos": "名詞", + "pn": -0.174839 + }, + { + "surface": "なりふり", + "readging": "なりふり", + "pos": "名詞", + "pn": -0.174846 + }, + { + "surface": "術後", + "readging": "じゅつご", + "pos": "名詞", + "pn": -0.174846 + }, + { + "surface": "観葉植物", + "readging": "かんようしょくぶつ", + "pos": "名詞", + "pn": -0.174866 + }, + { + "surface": "史論", + "readging": "しろん", + "pos": "名詞", + "pn": -0.174876 + }, + { + "surface": "守則", + "readging": "しゅそく", + "pos": "名詞", + "pn": -0.174886 + }, + { + "surface": "営林", + "readging": "えいりん", + "pos": "名詞", + "pn": -0.174895 + }, + { + "surface": "歌枕", + "readging": "うたまくら", + "pos": "名詞", + "pn": -0.174913 + }, + { + "surface": "化する", + "readging": "かする", + "pos": "動詞", + "pn": -0.174942 + }, + { + "surface": "二部合唱", + "readging": "にぶがっしょう", + "pos": "名詞", + "pn": -0.174979 + }, + { + "surface": "巷間", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.17498 + }, + { + "surface": "商用", + "readging": "しょうよう", + "pos": "名詞", + "pn": -0.174988 + }, + { + "surface": "会所", + "readging": "かいしょ", + "pos": "名詞", + "pn": -0.174992 + }, + { + "surface": "光熱", + "readging": "こうねつ", + "pos": "名詞", + "pn": -0.174995 + }, + { + "surface": "外戚", + "readging": "がいせき", + "pos": "名詞", + "pn": -0.175015 + }, + { + "surface": "ペンション", + "readging": "ペンション", + "pos": "名詞", + "pn": -0.175025 + }, + { + "surface": "注水", + "readging": "ちゅうすい", + "pos": "名詞", + "pn": -0.175027 + }, + { + "surface": "官費", + "readging": "かんぴ", + "pos": "名詞", + "pn": -0.175038 + }, + { + "surface": "百尺竿頭", + "readging": "ひゃくしゃくかんとう", + "pos": "名詞", + "pn": -0.175049 + }, + { + "surface": "究明", + "readging": "きゅうめい", + "pos": "名詞", + "pn": -0.175069 + }, + { + "surface": "ペンス", + "readging": "ペンス", + "pos": "名詞", + "pn": -0.175085 + }, + { + "surface": "ココナッツ", + "readging": "ココナッツ", + "pos": "名詞", + "pn": -0.175108 + }, + { + "surface": "天下分け目", + "readging": "てんかわけめ", + "pos": "名詞", + "pn": -0.175119 + }, + { + "surface": "トラピスト", + "readging": "トラピスト", + "pos": "名詞", + "pn": -0.175124 + }, + { + "surface": "洋種", + "readging": "ようしゅ", + "pos": "名詞", + "pn": -0.175129 + }, + { + "surface": "採炭", + "readging": "さいたん", + "pos": "名詞", + "pn": -0.175132 + }, + { + "surface": "武事", + "readging": "ぶじ", + "pos": "名詞", + "pn": -0.175137 + }, + { + "surface": "黄雀風", + "readging": "こうじゃくふう", + "pos": "名詞", + "pn": -0.175141 + }, + { + "surface": "取調べる", + "readging": "とりしらべる", + "pos": "動詞", + "pn": -0.175146 + }, + { + "surface": "月の障", + "readging": "つきのさわり", + "pos": "名詞", + "pn": -0.175153 + }, + { + "surface": "閉口", + "readging": "へいこう", + "pos": "名詞", + "pn": -0.17517 + }, + { + "surface": "七味", + "readging": "しちみ", + "pos": "名詞", + "pn": -0.175171 + }, + { + "surface": "飼犬", + "readging": "かいいぬ", + "pos": "名詞", + "pn": -0.175222 + }, + { + "surface": "新党", + "readging": "しんとう", + "pos": "名詞", + "pn": -0.17523 + }, + { + "surface": "畑違い", + "readging": "はたけちがい", + "pos": "名詞", + "pn": -0.175233 + }, + { + "surface": "早起き", + "readging": "はやおき", + "pos": "名詞", + "pn": -0.17524 + }, + { + "surface": "エントロピー", + "readging": "エントロピー", + "pos": "名詞", + "pn": -0.175241 + }, + { + "surface": "等親", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.175259 + }, + { + "surface": "猶予", + "readging": "ゆうよ", + "pos": "名詞", + "pn": -0.17527 + }, + { + "surface": "実体鏡", + "readging": "じったいきょう", + "pos": "名詞", + "pn": -0.175273 + }, + { + "surface": "竜攘虎搏", + "readging": "りゅうじょうこはく", + "pos": "名詞", + "pn": -0.175281 + }, + { + "surface": "番卒", + "readging": "ばんそつ", + "pos": "名詞", + "pn": -0.175299 + }, + { + "surface": "穂芒", + "readging": "ほすすき", + "pos": "名詞", + "pn": -0.175324 + }, + { + "surface": "しんねこ", + "readging": "しんねこ", + "pos": "名詞", + "pn": -0.175341 + }, + { + "surface": "歌沢", + "readging": "うたざわ", + "pos": "名詞", + "pn": -0.175341 + }, + { + "surface": "木履", + "readging": "ぼくり", + "pos": "名詞", + "pn": -0.175349 + }, + { + "surface": "廉価", + "readging": "れんか", + "pos": "名詞", + "pn": -0.175352 + }, + { + "surface": "山稜", + "readging": "さんりょう", + "pos": "名詞", + "pn": -0.175352 + }, + { + "surface": "テスト", + "readging": "テストパイロット", + "pos": "名詞", + "pn": -0.175372 + }, + { + "surface": "保守", + "readging": "ほしゅ", + "pos": "名詞", + "pn": -0.175382 + }, + { + "surface": "大紫", + "readging": "おおむらさき", + "pos": "名詞", + "pn": -0.175388 + }, + { + "surface": "どっと", + "readging": "どっと", + "pos": "副詞", + "pn": -0.175404 + }, + { + "surface": "弓勢", + "readging": "ゆんぜい", + "pos": "名詞", + "pn": -0.175413 + }, + { + "surface": "罫", + "readging": "けい", + "pos": "名詞", + "pn": -0.175426 + }, + { + "surface": "方図", + "readging": "ほうず", + "pos": "名詞", + "pn": -0.175431 + }, + { + "surface": "元日", + "readging": "がんじつ", + "pos": "名詞", + "pn": -0.175434 + }, + { + "surface": "順流", + "readging": "じゅんりゅう", + "pos": "名詞", + "pn": -0.175438 + }, + { + "surface": "手持無沙汰", + "readging": "てもちぶさた", + "pos": "名詞", + "pn": -0.17545 + }, + { + "surface": "大宮人", + "readging": "おおみや", + "pos": "名詞", + "pn": -0.175457 + }, + { + "surface": "叙爵", + "readging": "じょしゃく", + "pos": "名詞", + "pn": -0.175466 + }, + { + "surface": "酒壺", + "readging": "さかつぼ", + "pos": "名詞", + "pn": -0.175481 + }, + { + "surface": "役宅", + "readging": "やくたく", + "pos": "名詞", + "pn": -0.175485 + }, + { + "surface": "秋風", + "readging": "あきかぜ", + "pos": "名詞", + "pn": -0.175491 + }, + { + "surface": "詠嘆", + "readging": "えいたん", + "pos": "名詞", + "pn": -0.1755 + }, + { + "surface": "カフェ", + "readging": "カフェ", + "pos": "名詞", + "pn": -0.175506 + }, + { + "surface": "推知", + "readging": "すいち", + "pos": "名詞", + "pn": -0.175537 + }, + { + "surface": "逆輸入", + "readging": "ぎゃくゆにゅう", + "pos": "名詞", + "pn": -0.175551 + }, + { + "surface": "口車", + "readging": "くちぐるま", + "pos": "名詞", + "pn": -0.175556 + }, + { + "surface": "カプセル", + "readging": "カプセルホテル", + "pos": "名詞", + "pn": -0.175564 + }, + { + "surface": "乱軍", + "readging": "らんぐん", + "pos": "名詞", + "pn": -0.175568 + }, + { + "surface": "自決", + "readging": "じけつ", + "pos": "名詞", + "pn": -0.175593 + }, + { + "surface": "主剤", + "readging": "しゅざい", + "pos": "名詞", + "pn": -0.17563 + }, + { + "surface": "石竹色", + "readging": "せきちくいろ", + "pos": "名詞", + "pn": -0.175641 + }, + { + "surface": "上達部", + "readging": "かんだちめ", + "pos": "名詞", + "pn": -0.175668 + }, + { + "surface": "クロロホルム", + "readging": "クロロホルム", + "pos": "名詞", + "pn": -0.175673 + }, + { + "surface": "搭乗", + "readging": "とうじょう", + "pos": "名詞", + "pn": -0.175688 + }, + { + "surface": "半道", + "readging": "はんみち", + "pos": "名詞", + "pn": -0.175723 + }, + { + "surface": "コンテスト", + "readging": "コンテスト", + "pos": "名詞", + "pn": -0.175742 + }, + { + "surface": "町長", + "readging": "ちょうちょう", + "pos": "名詞", + "pn": -0.175758 + }, + { + "surface": "前代", + "readging": "ぜんだい", + "pos": "名詞", + "pn": -0.175778 + }, + { + "surface": "実事", + "readging": "じつごと", + "pos": "名詞", + "pn": -0.175794 + }, + { + "surface": "水性塗料", + "readging": "すいせいとりょう", + "pos": "名詞", + "pn": -0.175801 + }, + { + "surface": "地割", + "readging": "じわり", + "pos": "名詞", + "pn": -0.175808 + }, + { + "surface": "序詩", + "readging": "じょし", + "pos": "名詞", + "pn": -0.175844 + }, + { + "surface": "夫権", + "readging": "ふけん", + "pos": "名詞", + "pn": -0.175846 + }, + { + "surface": "弘通", + "readging": "ぐずう", + "pos": "名詞", + "pn": -0.175878 + }, + { + "surface": "貧富", + "readging": "ひんぷ", + "pos": "名詞", + "pn": -0.175896 + }, + { + "surface": "次女", + "readging": "じじょ", + "pos": "名詞", + "pn": -0.175899 + }, + { + "surface": "切売", + "readging": "きりうり", + "pos": "名詞", + "pn": -0.175899 + }, + { + "surface": "校勘", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.175912 + }, + { + "surface": "銃後", + "readging": "じゅうご", + "pos": "名詞", + "pn": -0.17592 + }, + { + "surface": "騰勢", + "readging": "とうせい", + "pos": "名詞", + "pn": -0.175975 + }, + { + "surface": "泣明かす", + "readging": "なきあかす", + "pos": "動詞", + "pn": -0.175985 + }, + { + "surface": "目測", + "readging": "もくそく", + "pos": "名詞", + "pn": -0.175989 + }, + { + "surface": "凡策", + "readging": "ぼんさく", + "pos": "名詞", + "pn": -0.175992 + }, + { + "surface": "会規", + "readging": "かいき", + "pos": "名詞", + "pn": -0.175994 + }, + { + "surface": "矮林", + "readging": "わいりん", + "pos": "名詞", + "pn": -0.175999 + }, + { + "surface": "内省", + "readging": "ないせい", + "pos": "名詞", + "pn": -0.175999 + }, + { + "surface": "酔", + "readging": "よい", + "pos": "名詞", + "pn": -0.176061 + }, + { + "surface": "分譲", + "readging": "ぶんじょう", + "pos": "名詞", + "pn": -0.176065 + }, + { + "surface": "花形", + "readging": "はながた", + "pos": "名詞", + "pn": -0.176102 + }, + { + "surface": "十字砲火", + "readging": "じゅうじほうか", + "pos": "名詞", + "pn": -0.176108 + }, + { + "surface": "飛礫", + "readging": "つぶて", + "pos": "名詞", + "pn": -0.176113 + }, + { + "surface": "変身", + "readging": "へんしん", + "pos": "名詞", + "pn": -0.176125 + }, + { + "surface": "実害", + "readging": "じつがい", + "pos": "名詞", + "pn": -0.176126 + }, + { + "surface": "戦歴", + "readging": "せんれき", + "pos": "名詞", + "pn": -0.17616 + }, + { + "surface": "税法", + "readging": "ぜいほう", + "pos": "名詞", + "pn": -0.176175 + }, + { + "surface": "耳金", + "readging": "みみがね", + "pos": "名詞", + "pn": -0.176187 + }, + { + "surface": "女難", + "readging": "じょなん", + "pos": "名詞", + "pn": -0.176191 + }, + { + "surface": "猛虎", + "readging": "もうこ", + "pos": "名詞", + "pn": -0.176195 + }, + { + "surface": "蹌踉", + "readging": "そうろう", + "pos": "名詞", + "pn": -0.176205 + }, + { + "surface": "卑属", + "readging": "ひぞく", + "pos": "名詞", + "pn": -0.176215 + }, + { + "surface": "エチュード", + "readging": "エチュード", + "pos": "名詞", + "pn": -0.176222 + }, + { + "surface": "主宰", + "readging": "しゅさい", + "pos": "名詞", + "pn": -0.17624 + }, + { + "surface": "予行", + "readging": "よこう", + "pos": "名詞", + "pn": -0.176243 + }, + { + "surface": "若竹", + "readging": "わかたけ", + "pos": "名詞", + "pn": -0.176256 + }, + { + "surface": "主犯", + "readging": "しゅはん", + "pos": "名詞", + "pn": -0.176258 + }, + { + "surface": "緑眼", + "readging": "りょくがん", + "pos": "名詞", + "pn": -0.176264 + }, + { + "surface": "勤続", + "readging": "きんぞく", + "pos": "名詞", + "pn": -0.176264 + }, + { + "surface": "実況", + "readging": "じっきょう", + "pos": "名詞", + "pn": -0.176277 + }, + { + "surface": "二つながら", + "readging": "ふたつながら", + "pos": "副詞", + "pn": -0.176301 + }, + { + "surface": "尾の上", + "readging": "おのえ", + "pos": "名詞", + "pn": -0.17632 + }, + { + "surface": "隔世", + "readging": "かくせい", + "pos": "名詞", + "pn": -0.176328 + }, + { + "surface": "写実", + "readging": "しゃじつ", + "pos": "名詞", + "pn": -0.176333 + }, + { + "surface": "商戦", + "readging": "しょうせん", + "pos": "名詞", + "pn": -0.176351 + }, + { + "surface": "持越す", + "readging": "もちこす", + "pos": "動詞", + "pn": -0.176377 + }, + { + "surface": "蔦紅葉", + "readging": "つたもみじ", + "pos": "名詞", + "pn": -0.176382 + }, + { + "surface": "傍証", + "readging": "ぼうしょう", + "pos": "名詞", + "pn": -0.176394 + }, + { + "surface": "教材", + "readging": "きょうざい", + "pos": "名詞", + "pn": -0.176402 + }, + { + "surface": "白濁", + "readging": "はくだく", + "pos": "名詞", + "pn": -0.176404 + }, + { + "surface": "吸込む", + "readging": "すいこむ", + "pos": "動詞", + "pn": -0.176406 + }, + { + "surface": "引分", + "readging": "ひきわけ", + "pos": "名詞", + "pn": -0.176455 + }, + { + "surface": "父方", + "readging": "ちちかた", + "pos": "名詞", + "pn": -0.176462 + }, + { + "surface": "青畳", + "readging": "あおだたみ", + "pos": "名詞", + "pn": -0.176463 + }, + { + "surface": "首級", + "readging": "しゅきゅう", + "pos": "名詞", + "pn": -0.176471 + }, + { + "surface": "熱演", + "readging": "ねつえん", + "pos": "名詞", + "pn": -0.176488 + }, + { + "surface": "古俗", + "readging": "こぞく", + "pos": "名詞", + "pn": -0.176489 + }, + { + "surface": "自由形", + "readging": "じゆうがた", + "pos": "名詞", + "pn": -0.176493 + }, + { + "surface": "以内", + "readging": "いない", + "pos": "名詞", + "pn": -0.176497 + }, + { + "surface": "のめり込む", + "readging": "のめりこむ", + "pos": "動詞", + "pn": -0.176499 + }, + { + "surface": "懐刀", + "readging": "ふところがたな", + "pos": "名詞", + "pn": -0.176519 + }, + { + "surface": "カトリック", + "readging": "カトリック", + "pos": "名詞", + "pn": -0.17652 + }, + { + "surface": "断線", + "readging": "だんせん", + "pos": "名詞", + "pn": -0.176546 + }, + { + "surface": "管長", + "readging": "かんちょう", + "pos": "名詞", + "pn": -0.176556 + }, + { + "surface": "越年", + "readging": "えつねん", + "pos": "名詞", + "pn": -0.176562 + }, + { + "surface": "言い値", + "readging": "いいね", + "pos": "名詞", + "pn": -0.176567 + }, + { + "surface": "分遣", + "readging": "ぶんけん", + "pos": "名詞", + "pn": -0.176572 + }, + { + "surface": "通り名", + "readging": "とおりな", + "pos": "名詞", + "pn": -0.176582 + }, + { + "surface": "踏分ける", + "readging": "ふみわける", + "pos": "動詞", + "pn": -0.176583 + }, + { + "surface": "税務", + "readging": "ぜいむ", + "pos": "名詞", + "pn": -0.176585 + }, + { + "surface": "粕汁", + "readging": "かすじる", + "pos": "名詞", + "pn": -0.176592 + }, + { + "surface": "舅", + "readging": "しゅうと", + "pos": "名詞", + "pn": -0.176646 + }, + { + "surface": "首ったけ", + "readging": "くびったけ", + "pos": "名詞", + "pn": -0.176661 + }, + { + "surface": "エンジニア", + "readging": "エンジニア", + "pos": "名詞", + "pn": -0.176673 + }, + { + "surface": "往診", + "readging": "おうしん", + "pos": "名詞", + "pn": -0.176685 + }, + { + "surface": "詞宗", + "readging": "しそう", + "pos": "名詞", + "pn": -0.176689 + }, + { + "surface": "公団", + "readging": "こうだん", + "pos": "名詞", + "pn": -0.176692 + }, + { + "surface": "起爆", + "readging": "きばく", + "pos": "名詞", + "pn": -0.176697 + }, + { + "surface": "高等学校", + "readging": "こうとうがっこう", + "pos": "名詞", + "pn": -0.176711 + }, + { + "surface": "粗茶", + "readging": "そちゃ", + "pos": "名詞", + "pn": -0.176711 + }, + { + "surface": "親拝", + "readging": "しんぱい", + "pos": "名詞", + "pn": -0.176718 + }, + { + "surface": "輸出超過", + "readging": "ゆしゅつちょうか", + "pos": "名詞", + "pn": -0.176733 + }, + { + "surface": "消去", + "readging": "しょうきょ", + "pos": "名詞", + "pn": -0.176734 + }, + { + "surface": "板屋", + "readging": "いたや", + "pos": "名詞", + "pn": -0.176752 + }, + { + "surface": "地下室", + "readging": "ちかしつ", + "pos": "名詞", + "pn": -0.176756 + }, + { + "surface": "家風", + "readging": "かふう", + "pos": "名詞", + "pn": -0.176762 + }, + { + "surface": "露仏", + "readging": "ろぶつ", + "pos": "名詞", + "pn": -0.176798 + }, + { + "surface": "切札", + "readging": "きりふだ", + "pos": "名詞", + "pn": -0.176832 + }, + { + "surface": "半半", + "readging": "はんはん", + "pos": "名詞", + "pn": -0.176849 + }, + { + "surface": "転貸借", + "readging": "てんたいしゃく", + "pos": "名詞", + "pn": -0.176881 + }, + { + "surface": "大音声", + "readging": "だいおんじょう", + "pos": "名詞", + "pn": -0.176886 + }, + { + "surface": "切伏せる", + "readging": "きりふせる", + "pos": "動詞", + "pn": -0.176891 + }, + { + "surface": "競映", + "readging": "きょうえい", + "pos": "名詞", + "pn": -0.176894 + }, + { + "surface": "続柄", + "readging": "つづきがら", + "pos": "名詞", + "pn": -0.176896 + }, + { + "surface": "指物師", + "readging": "さしものし", + "pos": "名詞", + "pn": -0.176897 + }, + { + "surface": "獲得", + "readging": "かくとく", + "pos": "名詞", + "pn": -0.176931 + }, + { + "surface": "史談", + "readging": "しだん", + "pos": "名詞", + "pn": -0.176943 + }, + { + "surface": "ボード", + "readging": "ボード", + "pos": "名詞", + "pn": -0.176954 + }, + { + "surface": "受付ける", + "readging": "うけつける", + "pos": "動詞", + "pn": -0.176984 + }, + { + "surface": "説起す", + "readging": "ときおこす", + "pos": "動詞", + "pn": -0.177 + }, + { + "surface": "族長", + "readging": "ぞくちょう", + "pos": "名詞", + "pn": -0.177008 + }, + { + "surface": "低地", + "readging": "ていち", + "pos": "名詞", + "pn": -0.17701 + }, + { + "surface": "緯糸", + "readging": "ぬきいと", + "pos": "名詞", + "pn": -0.17703 + }, + { + "surface": "低額", + "readging": "ていがく", + "pos": "名詞", + "pn": -0.177038 + }, + { + "surface": "荷駄", + "readging": "にだ", + "pos": "名詞", + "pn": -0.177067 + }, + { + "surface": "王宮", + "readging": "おうきゅう", + "pos": "名詞", + "pn": -0.177072 + }, + { + "surface": "バージョン", + "readging": "バージョン", + "pos": "名詞", + "pn": -0.177081 + }, + { + "surface": "初任給", + "readging": "しょにんきゅう", + "pos": "名詞", + "pn": -0.177091 + }, + { + "surface": "左近の桜", + "readging": "さこんのさくら", + "pos": "名詞", + "pn": -0.177093 + }, + { + "surface": "粉骨砕身", + "readging": "ふんこつさいしん", + "pos": "名詞", + "pn": -0.177114 + }, + { + "surface": "夏負け", + "readging": "なつまけ", + "pos": "名詞", + "pn": -0.177136 + }, + { + "surface": "地卵", + "readging": "じたまご", + "pos": "名詞", + "pn": -0.177155 + }, + { + "surface": "ロマン", + "readging": "ロマン", + "pos": "名詞", + "pn": -0.177164 + }, + { + "surface": "平年", + "readging": "へいねん", + "pos": "名詞", + "pn": -0.177177 + }, + { + "surface": "産み", + "readging": "うみ", + "pos": "名詞", + "pn": -0.177182 + }, + { + "surface": "水明", + "readging": "すいめい", + "pos": "名詞", + "pn": -0.177184 + }, + { + "surface": "土用波", + "readging": "どようなみ", + "pos": "名詞", + "pn": -0.177188 + }, + { + "surface": "標準偏差", + "readging": "ひょうじゅんへんさ", + "pos": "名詞", + "pn": -0.17719 + }, + { + "surface": "漢語", + "readging": "かんご", + "pos": "名詞", + "pn": -0.177193 + }, + { + "surface": "バロック", + "readging": "バロック", + "pos": "名詞", + "pn": -0.177196 + }, + { + "surface": "人身御供", + "readging": "ひとみごくう", + "pos": "名詞", + "pn": -0.177198 + }, + { + "surface": "空中戦", + "readging": "くうちゅうせん", + "pos": "名詞", + "pn": -0.177201 + }, + { + "surface": "糸切り歯", + "readging": "いときりば", + "pos": "名詞", + "pn": -0.177257 + }, + { + "surface": "専科", + "readging": "せんか", + "pos": "名詞", + "pn": -0.177258 + }, + { + "surface": "結託", + "readging": "けったく", + "pos": "名詞", + "pn": -0.17726 + }, + { + "surface": "事事物物", + "readging": "じじぶつぶつ", + "pos": "名詞", + "pn": -0.177272 + }, + { + "surface": "ノー", + "readging": "ノー", + "pos": "名詞", + "pn": -0.177273 + }, + { + "surface": "寂滅", + "readging": "じゃくめつ", + "pos": "名詞", + "pn": -0.177278 + }, + { + "surface": "元旦", + "readging": "がんたん", + "pos": "名詞", + "pn": -0.17728 + }, + { + "surface": "エキサイト", + "readging": "エキサイト", + "pos": "名詞", + "pn": -0.177286 + }, + { + "surface": "開腹", + "readging": "かいふく", + "pos": "名詞", + "pn": -0.177286 + }, + { + "surface": "受け", + "readging": "うけ", + "pos": "名詞", + "pn": -0.177296 + }, + { + "surface": "ハード", + "readging": "ハードディスク", + "pos": "名詞", + "pn": -0.177296 + }, + { + "surface": "公武", + "readging": "こうぶ", + "pos": "名詞", + "pn": -0.177306 + }, + { + "surface": "田の面", + "readging": "たのも", + "pos": "名詞", + "pn": -0.177307 + }, + { + "surface": "常緑樹", + "readging": "じょうりょくじゅ", + "pos": "名詞", + "pn": -0.177308 + }, + { + "surface": "常直", + "readging": "じょうちょく", + "pos": "名詞", + "pn": -0.177319 + }, + { + "surface": "役印", + "readging": "やくいん", + "pos": "名詞", + "pn": -0.177346 + }, + { + "surface": "立尽す", + "readging": "たちつくす", + "pos": "動詞", + "pn": -0.177347 + }, + { + "surface": "戦艦", + "readging": "せんかん", + "pos": "名詞", + "pn": -0.177357 + }, + { + "surface": "散見", + "readging": "さんけん", + "pos": "名詞", + "pn": -0.177368 + }, + { + "surface": "柳営", + "readging": "りゅうえい", + "pos": "名詞", + "pn": -0.177376 + }, + { + "surface": "胚芽米", + "readging": "はいがまい", + "pos": "名詞", + "pn": -0.177377 + }, + { + "surface": "帰港", + "readging": "きこう", + "pos": "名詞", + "pn": -0.177388 + }, + { + "surface": "瓶子", + "readging": "へいじ", + "pos": "名詞", + "pn": -0.177393 + }, + { + "surface": "尊台", + "readging": "そんだい", + "pos": "名詞", + "pn": -0.177394 + }, + { + "surface": "通底", + "readging": "つうてい", + "pos": "名詞", + "pn": -0.177398 + }, + { + "surface": "待惚け", + "readging": "まちぼうけ", + "pos": "名詞", + "pn": -0.177398 + }, + { + "surface": "貴金属", + "readging": "ききんぞく", + "pos": "名詞", + "pn": -0.177407 + }, + { + "surface": "挺する", + "readging": "ていする", + "pos": "動詞", + "pn": -0.177417 + }, + { + "surface": "町場", + "readging": "まちば", + "pos": "名詞", + "pn": -0.177435 + }, + { + "surface": "御殿医", + "readging": "ごてんい", + "pos": "名詞", + "pn": -0.177435 + }, + { + "surface": "ポール", + "readging": "ポール", + "pos": "名詞", + "pn": -0.177437 + }, + { + "surface": "岩漿", + "readging": "がんしょう", + "pos": "名詞", + "pn": -0.177438 + }, + { + "surface": "合冊", + "readging": "がっさつ", + "pos": "名詞", + "pn": -0.177485 + }, + { + "surface": "強奪", + "readging": "ごうだつ", + "pos": "名詞", + "pn": -0.177489 + }, + { + "surface": "同盟条約", + "readging": "どうめいじょうやく", + "pos": "名詞", + "pn": -0.177493 + }, + { + "surface": "沙弥", + "readging": "しゃみ", + "pos": "名詞", + "pn": -0.177494 + }, + { + "surface": "核質", + "readging": "かくしつ", + "pos": "名詞", + "pn": -0.177504 + }, + { + "surface": "外字紙", + "readging": "がいじし", + "pos": "名詞", + "pn": -0.177506 + }, + { + "surface": "岩肌", + "readging": "いわはだ", + "pos": "名詞", + "pn": -0.177519 + }, + { + "surface": "水軍", + "readging": "すいぐん", + "pos": "名詞", + "pn": -0.177551 + }, + { + "surface": "マナー", + "readging": "マナー", + "pos": "名詞", + "pn": -0.177554 + }, + { + "surface": "良人", + "readging": "りょうじん", + "pos": "名詞", + "pn": -0.177555 + }, + { + "surface": "硯材", + "readging": "けんざい", + "pos": "名詞", + "pn": -0.177556 + }, + { + "surface": "言葉尻", + "readging": "ことばじり", + "pos": "名詞", + "pn": -0.177566 + }, + { + "surface": "山鳩色", + "readging": "やまばといろ", + "pos": "名詞", + "pn": -0.177573 + }, + { + "surface": "党派心", + "readging": "とうはしん", + "pos": "名詞", + "pn": -0.177581 + }, + { + "surface": "水運", + "readging": "すいうん", + "pos": "名詞", + "pn": -0.177587 + }, + { + "surface": "乗掛ける", + "readging": "のりかける", + "pos": "動詞", + "pn": -0.177592 + }, + { + "surface": "取水", + "readging": "しゅすい", + "pos": "名詞", + "pn": -0.177612 + }, + { + "surface": "副産物", + "readging": "ふくさんぶつ", + "pos": "名詞", + "pn": -0.177625 + }, + { + "surface": "ジャンボ", + "readging": "ジャンボ", + "pos": "名詞", + "pn": -0.177634 + }, + { + "surface": "雪女郎", + "readging": "ゆきじょろう", + "pos": "名詞", + "pn": -0.177636 + }, + { + "surface": "川船", + "readging": "かわぶね", + "pos": "名詞", + "pn": -0.177636 + }, + { + "surface": "波布草", + "readging": "はぶそう", + "pos": "名詞", + "pn": -0.177639 + }, + { + "surface": "安否", + "readging": "あんぴ", + "pos": "名詞", + "pn": -0.177653 + }, + { + "surface": "小町糸", + "readging": "こまちいと", + "pos": "名詞", + "pn": -0.17766 + }, + { + "surface": "質感", + "readging": "しつかん", + "pos": "名詞", + "pn": -0.177669 + }, + { + "surface": "連合軍", + "readging": "れんごうぐん", + "pos": "名詞", + "pn": -0.177692 + }, + { + "surface": "転学", + "readging": "てんがく", + "pos": "名詞", + "pn": -0.177699 + }, + { + "surface": "嬖臣", + "readging": "へいしん", + "pos": "名詞", + "pn": -0.177704 + }, + { + "surface": "教本", + "readging": "きょうほん", + "pos": "名詞", + "pn": -0.177714 + }, + { + "surface": "足労", + "readging": "そくろう", + "pos": "名詞", + "pn": -0.177721 + }, + { + "surface": "静観", + "readging": "せいかん", + "pos": "名詞", + "pn": -0.177723 + }, + { + "surface": "去り状", + "readging": "さりじょう", + "pos": "名詞", + "pn": -0.177733 + }, + { + "surface": "倍音", + "readging": "ばいおん", + "pos": "名詞", + "pn": -0.177737 + }, + { + "surface": "芽ぐむ", + "readging": "めぐむ", + "pos": "動詞", + "pn": -0.17775 + }, + { + "surface": "気候", + "readging": "きこう", + "pos": "名詞", + "pn": -0.17776 + }, + { + "surface": "論点", + "readging": "ろんてん", + "pos": "名詞", + "pn": -0.177769 + }, + { + "surface": "斜向う", + "readging": "はすむこう", + "pos": "名詞", + "pn": -0.177781 + }, + { + "surface": "密訴", + "readging": "みっそ", + "pos": "名詞", + "pn": -0.177784 + }, + { + "surface": "欲界", + "readging": "よっかい", + "pos": "名詞", + "pn": -0.177787 + }, + { + "surface": "恩典", + "readging": "おんてん", + "pos": "名詞", + "pn": -0.177799 + }, + { + "surface": "やらかす", + "readging": "やらかす", + "pos": "動詞", + "pn": -0.1778 + }, + { + "surface": "逐語", + "readging": "ちくご", + "pos": "名詞", + "pn": -0.177814 + }, + { + "surface": "什器", + "readging": "じゅうき", + "pos": "名詞", + "pn": -0.177823 + }, + { + "surface": "祥月", + "readging": "しょうつき", + "pos": "名詞", + "pn": -0.177836 + }, + { + "surface": "馬耕", + "readging": "ばこう", + "pos": "名詞", + "pn": -0.177841 + }, + { + "surface": "父兄", + "readging": "ふけい", + "pos": "名詞", + "pn": -0.177845 + }, + { + "surface": "書生論", + "readging": "しょせいろん", + "pos": "名詞", + "pn": -0.177847 + }, + { + "surface": "索然", + "readging": "さくぜん", + "pos": "名詞", + "pn": -0.177877 + }, + { + "surface": "大姉", + "readging": "だいし", + "pos": "名詞", + "pn": -0.177879 + }, + { + "surface": "財物", + "readging": "ざいぶつ", + "pos": "名詞", + "pn": -0.17788 + }, + { + "surface": "モノグラフィー", + "readging": "モノグラフィー", + "pos": "名詞", + "pn": -0.177895 + }, + { + "surface": "休電", + "readging": "きゅうでん", + "pos": "名詞", + "pn": -0.177913 + }, + { + "surface": "唯一", + "readging": "ゆいいつ", + "pos": "名詞", + "pn": -0.177948 + }, + { + "surface": "高気圧", + "readging": "こうきあつ", + "pos": "名詞", + "pn": -0.177967 + }, + { + "surface": "巡幸", + "readging": "じゅんこう", + "pos": "名詞", + "pn": -0.177979 + }, + { + "surface": "鶯豆", + "readging": "うぐいすまめ", + "pos": "名詞", + "pn": -0.177981 + }, + { + "surface": "来会", + "readging": "らいかい", + "pos": "名詞", + "pn": -0.17799 + }, + { + "surface": "利刃", + "readging": "りじん", + "pos": "名詞", + "pn": -0.177992 + }, + { + "surface": "石畳", + "readging": "いしだたみ", + "pos": "名詞", + "pn": -0.178011 + }, + { + "surface": "ハウツー物", + "readging": "ハウツーもの", + "pos": "名詞", + "pn": -0.178013 + }, + { + "surface": "イラストレーター", + "readging": "イラストレーター", + "pos": "名詞", + "pn": -0.178052 + }, + { + "surface": "あんぜん", + "readging": "あんぜんマッチ", + "pos": "名詞", + "pn": -0.178058 + }, + { + "surface": "住人", + "readging": "じゅうにん", + "pos": "名詞", + "pn": -0.178065 + }, + { + "surface": "整除", + "readging": "せいじょ", + "pos": "名詞", + "pn": -0.178066 + }, + { + "surface": "勃発", + "readging": "ぼっぱつ", + "pos": "名詞", + "pn": -0.178066 + }, + { + "surface": "精力", + "readging": "せいりょく", + "pos": "名詞", + "pn": -0.178077 + }, + { + "surface": "一昨年", + "readging": "おととし", + "pos": "名詞", + "pn": -0.178083 + }, + { + "surface": "隊商", + "readging": "たいしょう", + "pos": "名詞", + "pn": -0.178114 + }, + { + "surface": "野良猫", + "readging": "のらねこ", + "pos": "名詞", + "pn": -0.178121 + }, + { + "surface": "初夢", + "readging": "はつゆめ", + "pos": "名詞", + "pn": -0.178127 + }, + { + "surface": "じくじく", + "readging": "じくじく", + "pos": "副詞", + "pn": -0.178138 + }, + { + "surface": "駅売", + "readging": "えきうり", + "pos": "名詞", + "pn": -0.178151 + }, + { + "surface": "茶所", + "readging": "ちゃどころ", + "pos": "名詞", + "pn": -0.178166 + }, + { + "surface": "長円", + "readging": "ちょうえん", + "pos": "名詞", + "pn": -0.178185 + }, + { + "surface": "長径", + "readging": "ちょうけい", + "pos": "名詞", + "pn": -0.178185 + }, + { + "surface": "一元化", + "readging": "いちげんか", + "pos": "名詞", + "pn": -0.1782 + }, + { + "surface": "能天気", + "readging": "のうてんき", + "pos": "名詞", + "pn": -0.178216 + }, + { + "surface": "繰入れる", + "readging": "くりいれる", + "pos": "動詞", + "pn": -0.178223 + }, + { + "surface": "定常", + "readging": "ていじょう", + "pos": "名詞", + "pn": -0.178252 + }, + { + "surface": "猛襲", + "readging": "もうしゅう", + "pos": "名詞", + "pn": -0.178254 + }, + { + "surface": "ささ濁り", + "readging": "ささにごり", + "pos": "名詞", + "pn": -0.178273 + }, + { + "surface": "非常勤", + "readging": "ひじょうきん", + "pos": "名詞", + "pn": -0.178292 + }, + { + "surface": "嫡嫡", + "readging": "ちゃくちゃく", + "pos": "名詞", + "pn": -0.178292 + }, + { + "surface": "晨明", + "readging": "しんめい", + "pos": "名詞", + "pn": -0.178315 + }, + { + "surface": "商い", + "readging": "あきない", + "pos": "名詞", + "pn": -0.178348 + }, + { + "surface": "別便", + "readging": "べつびん", + "pos": "名詞", + "pn": -0.178366 + }, + { + "surface": "信", + "readging": "しん", + "pos": "名詞", + "pn": -0.178371 + }, + { + "surface": "過年度", + "readging": "かねんど", + "pos": "名詞", + "pn": -0.178377 + }, + { + "surface": "茄子", + "readging": "なすび", + "pos": "名詞", + "pn": -0.178384 + }, + { + "surface": "水遊び", + "readging": "みずあそび", + "pos": "名詞", + "pn": -0.178389 + }, + { + "surface": "とろ火", + "readging": "とろび", + "pos": "名詞", + "pn": -0.17841 + }, + { + "surface": "市況", + "readging": "しきょう", + "pos": "名詞", + "pn": -0.178427 + }, + { + "surface": "先帝", + "readging": "せんてい", + "pos": "名詞", + "pn": -0.178465 + }, + { + "surface": "転覆", + "readging": "てんぷく", + "pos": "名詞", + "pn": -0.178477 + }, + { + "surface": "囃子物", + "readging": "はやしもの", + "pos": "名詞", + "pn": -0.178482 + }, + { + "surface": "僧院", + "readging": "そういん", + "pos": "名詞", + "pn": -0.178516 + }, + { + "surface": "花代", + "readging": "はなだい", + "pos": "名詞", + "pn": -0.178562 + }, + { + "surface": "電卓", + "readging": "でんたく", + "pos": "名詞", + "pn": -0.17857 + }, + { + "surface": "皇孫", + "readging": "こうそん", + "pos": "名詞", + "pn": -0.178581 + }, + { + "surface": "男声", + "readging": "だんせい", + "pos": "名詞", + "pn": -0.178587 + }, + { + "surface": "有線", + "readging": "ゆうせん", + "pos": "名詞", + "pn": -0.178591 + }, + { + "surface": "湮滅", + "readging": "いんめつ", + "pos": "名詞", + "pn": -0.1786 + }, + { + "surface": "土饅頭", + "readging": "どまんじゅう", + "pos": "名詞", + "pn": -0.178601 + }, + { + "surface": "実動", + "readging": "じつどう", + "pos": "名詞", + "pn": -0.178618 + }, + { + "surface": "六根清浄", + "readging": "ろっこんしょうじょう", + "pos": "名詞", + "pn": -0.178641 + }, + { + "surface": "攻防", + "readging": "こうぼう", + "pos": "名詞", + "pn": -0.178674 + }, + { + "surface": "イラストレーション", + "readging": "イラストレーション", + "pos": "名詞", + "pn": -0.178676 + }, + { + "surface": "三幅対", + "readging": "さんぶくつい", + "pos": "名詞", + "pn": -0.178677 + }, + { + "surface": "阿媽", + "readging": "アマ", + "pos": "名詞", + "pn": -0.178683 + }, + { + "surface": "たいぶつ", + "readging": "たいぶつレンズ", + "pos": "名詞", + "pn": -0.178691 + }, + { + "surface": "忘れ霜", + "readging": "わすれじも", + "pos": "名詞", + "pn": -0.1787 + }, + { + "surface": "時節", + "readging": "じせつ", + "pos": "名詞", + "pn": -0.178704 + }, + { + "surface": "中央集権", + "readging": "ちゅうおうしゅうけん", + "pos": "名詞", + "pn": -0.178711 + }, + { + "surface": "収賄", + "readging": "しゅうわい", + "pos": "名詞", + "pn": -0.178727 + }, + { + "surface": "検眼", + "readging": "けんがん", + "pos": "名詞", + "pn": -0.178736 + }, + { + "surface": "成功報酬", + "readging": "せいこうほうしゅう", + "pos": "名詞", + "pn": -0.178741 + }, + { + "surface": "放射性", + "readging": "ほうしゃせい", + "pos": "名詞", + "pn": -0.178744 + }, + { + "surface": "ミュージシャン", + "readging": "ミュージシャン", + "pos": "名詞", + "pn": -0.178764 + }, + { + "surface": "プロレス", + "readging": "プロレス", + "pos": "名詞", + "pn": -0.178764 + }, + { + "surface": "大の字", + "readging": "だいのじ", + "pos": "名詞", + "pn": -0.178783 + }, + { + "surface": "国書", + "readging": "こくしょ", + "pos": "名詞", + "pn": -0.178784 + }, + { + "surface": "商号", + "readging": "しょうごう", + "pos": "名詞", + "pn": -0.178813 + }, + { + "surface": "鍬下", + "readging": "くわした", + "pos": "名詞", + "pn": -0.178818 + }, + { + "surface": "上屋敷", + "readging": "かみやしき", + "pos": "名詞", + "pn": -0.178824 + }, + { + "surface": "コンサート", + "readging": "コンサート", + "pos": "名詞", + "pn": -0.178833 + }, + { + "surface": "執行う", + "readging": "とりおこなう", + "pos": "動詞", + "pn": -0.178856 + }, + { + "surface": "支配階級", + "readging": "しはいかいきゅう", + "pos": "名詞", + "pn": -0.178865 + }, + { + "surface": "輸入超過", + "readging": "ゆにゅうちょうか", + "pos": "名詞", + "pn": -0.178871 + }, + { + "surface": "押し黙る", + "readging": "おしだまる", + "pos": "動詞", + "pn": -0.17889 + }, + { + "surface": "コンパニオン", + "readging": "コンパニオン", + "pos": "名詞", + "pn": -0.178898 + }, + { + "surface": "式辞", + "readging": "しきじ", + "pos": "名詞", + "pn": -0.1789 + }, + { + "surface": "氷海", + "readging": "ひょうかい", + "pos": "名詞", + "pn": -0.178929 + }, + { + "surface": "転結", + "readging": "てんけつ", + "pos": "名詞", + "pn": -0.178942 + }, + { + "surface": "七転八起", + "readging": "しちてんはっき", + "pos": "名詞", + "pn": -0.178947 + }, + { + "surface": "日勤", + "readging": "にっきん", + "pos": "名詞", + "pn": -0.178955 + }, + { + "surface": "着服", + "readging": "ちゃくふく", + "pos": "名詞", + "pn": -0.178956 + }, + { + "surface": "降らす", + "readging": "ふらす", + "pos": "動詞", + "pn": -0.178969 + }, + { + "surface": "笏", + "readging": "しゃく", + "pos": "名詞", + "pn": -0.178978 + }, + { + "surface": "適応", + "readging": "てきおう", + "pos": "名詞", + "pn": -0.178984 + }, + { + "surface": "蘭鋳", + "readging": "らんちゅう", + "pos": "名詞", + "pn": -0.17899 + }, + { + "surface": "スクラップ", + "readging": "スクラップ", + "pos": "名詞", + "pn": -0.178996 + }, + { + "surface": "ボルシチ", + "readging": "ボルシチ", + "pos": "名詞", + "pn": -0.179007 + }, + { + "surface": "札びら", + "readging": "さつびら", + "pos": "名詞", + "pn": -0.179021 + }, + { + "surface": "鳴動", + "readging": "めいどう", + "pos": "名詞", + "pn": -0.179061 + }, + { + "surface": "患家", + "readging": "かんか", + "pos": "名詞", + "pn": -0.179079 + }, + { + "surface": "潜在", + "readging": "せんざい", + "pos": "名詞", + "pn": -0.179084 + }, + { + "surface": "眼中", + "readging": "がんちゅう", + "pos": "名詞", + "pn": -0.17911 + }, + { + "surface": "月夜", + "readging": "つきよ", + "pos": "名詞", + "pn": -0.179119 + }, + { + "surface": "代休", + "readging": "だいきゅう", + "pos": "名詞", + "pn": -0.179123 + }, + { + "surface": "触り合う", + "readging": "ふりあう", + "pos": "動詞", + "pn": -0.179124 + }, + { + "surface": "主体性", + "readging": "しゅたいせい", + "pos": "名詞", + "pn": -0.179143 + }, + { + "surface": "クォーテーション", + "readging": "クォーテーション", + "pos": "名詞", + "pn": -0.17915 + }, + { + "surface": "視学", + "readging": "しがく", + "pos": "名詞", + "pn": -0.179151 + }, + { + "surface": "朗唱", + "readging": "ろうしょう", + "pos": "名詞", + "pn": -0.17916 + }, + { + "surface": "七面鳥", + "readging": "しちめんちょう", + "pos": "名詞", + "pn": -0.179174 + }, + { + "surface": "門灯", + "readging": "もんとう", + "pos": "名詞", + "pn": -0.179178 + }, + { + "surface": "遍照", + "readging": "へんじょう", + "pos": "名詞", + "pn": -0.179181 + }, + { + "surface": "招聘", + "readging": "しょうへい", + "pos": "名詞", + "pn": -0.179193 + }, + { + "surface": "赤らむ", + "readging": "あからむ", + "pos": "動詞", + "pn": -0.179208 + }, + { + "surface": "無体物", + "readging": "むたいぶつ", + "pos": "名詞", + "pn": -0.179214 + }, + { + "surface": "切切", + "readging": "せつせつ", + "pos": "名詞", + "pn": -0.179218 + }, + { + "surface": "成済ます", + "readging": "なりすます", + "pos": "動詞", + "pn": -0.179229 + }, + { + "surface": "本箱", + "readging": "ほんばこ", + "pos": "名詞", + "pn": -0.179234 + }, + { + "surface": "魚形水雷", + "readging": "ぎょけいすいらい", + "pos": "名詞", + "pn": -0.179242 + }, + { + "surface": "小屋掛", + "readging": "こやがけ", + "pos": "名詞", + "pn": -0.179252 + }, + { + "surface": "山嶺", + "readging": "さんれい", + "pos": "名詞", + "pn": -0.179256 + }, + { + "surface": "プラチナ", + "readging": "プラチナ", + "pos": "名詞", + "pn": -0.179266 + }, + { + "surface": "ボーナス", + "readging": "ボーナス", + "pos": "名詞", + "pn": -0.179272 + }, + { + "surface": "切能", + "readging": "きりのう", + "pos": "名詞", + "pn": -0.179283 + }, + { + "surface": "書入れ", + "readging": "かきいれ", + "pos": "名詞", + "pn": -0.179289 + }, + { + "surface": "勅願", + "readging": "ちょくがん", + "pos": "名詞", + "pn": -0.17931 + }, + { + "surface": "杯事", + "readging": "さかずきごと", + "pos": "名詞", + "pn": -0.179316 + }, + { + "surface": "年次", + "readging": "ねんじ", + "pos": "名詞", + "pn": -0.179322 + }, + { + "surface": "論陣", + "readging": "ろんじん", + "pos": "名詞", + "pn": -0.179332 + }, + { + "surface": "ホモ", + "readging": "ホモ", + "pos": "名詞", + "pn": -0.179344 + }, + { + "surface": "原簿", + "readging": "げんぼ", + "pos": "名詞", + "pn": -0.179361 + }, + { + "surface": "闇値", + "readging": "やみね", + "pos": "名詞", + "pn": -0.179362 + }, + { + "surface": "吟遊詩人", + "readging": "ぎんゆうしじん", + "pos": "名詞", + "pn": -0.179369 + }, + { + "surface": "後天", + "readging": "こうてん", + "pos": "名詞", + "pn": -0.179381 + }, + { + "surface": "チューイン ガム", + "readging": "チューイン ガム", + "pos": "名詞", + "pn": -0.179382 + }, + { + "surface": "其の手", + "readging": "そのて", + "pos": "名詞", + "pn": -0.179405 + }, + { + "surface": "メーン", + "readging": "メーンストリート", + "pos": "名詞", + "pn": -0.179436 + }, + { + "surface": "伴侶", + "readging": "はんりょ", + "pos": "名詞", + "pn": -0.179439 + }, + { + "surface": "党人", + "readging": "とうじん", + "pos": "名詞", + "pn": -0.179439 + }, + { + "surface": "月商", + "readging": "げっしょう", + "pos": "名詞", + "pn": -0.179445 + }, + { + "surface": "稟請", + "readging": "りんせい", + "pos": "名詞", + "pn": -0.179456 + }, + { + "surface": "家長", + "readging": "かちょう", + "pos": "名詞", + "pn": -0.179481 + }, + { + "surface": "読み手", + "readging": "よみて", + "pos": "名詞", + "pn": -0.179504 + }, + { + "surface": "世情", + "readging": "せじょう", + "pos": "名詞", + "pn": -0.179508 + }, + { + "surface": "古学", + "readging": "こがく", + "pos": "名詞", + "pn": -0.179548 + }, + { + "surface": "前歴", + "readging": "ぜんれき", + "pos": "名詞", + "pn": -0.179551 + }, + { + "surface": "断言", + "readging": "だんげん", + "pos": "名詞", + "pn": -0.179554 + }, + { + "surface": "賃貸し", + "readging": "ちんがし", + "pos": "名詞", + "pn": -0.179556 + }, + { + "surface": "仏果", + "readging": "ぶっか", + "pos": "名詞", + "pn": -0.179559 + }, + { + "surface": "チャコール グレー", + "readging": "チャコール グレー", + "pos": "名詞", + "pn": -0.17957 + }, + { + "surface": "四十路", + "readging": "よそじ", + "pos": "名詞", + "pn": -0.179588 + }, + { + "surface": "エレキ", + "readging": "エレキ", + "pos": "名詞", + "pn": -0.179589 + }, + { + "surface": "面従腹背", + "readging": "めんじゅうふくはい", + "pos": "名詞", + "pn": -0.179595 + }, + { + "surface": "頒価", + "readging": "はんか", + "pos": "名詞", + "pn": -0.1796 + }, + { + "surface": "でっぷり", + "readging": "でっぷり", + "pos": "副詞", + "pn": -0.1796 + }, + { + "surface": "目下", + "readging": "めした", + "pos": "名詞", + "pn": -0.179616 + }, + { + "surface": "勝抜き", + "readging": "かちぬき", + "pos": "名詞", + "pn": -0.179658 + }, + { + "surface": "宿六", + "readging": "やどろく", + "pos": "名詞", + "pn": -0.179671 + }, + { + "surface": "老眼鏡", + "readging": "ろうがんきょう", + "pos": "名詞", + "pn": -0.179681 + }, + { + "surface": "死文", + "readging": "しぶん", + "pos": "名詞", + "pn": -0.179691 + }, + { + "surface": "射掛ける", + "readging": "いかける", + "pos": "動詞", + "pn": -0.1797 + }, + { + "surface": "童僕", + "readging": "どうぼく", + "pos": "名詞", + "pn": -0.179704 + }, + { + "surface": "感慨無量", + "readging": "かんがいむりょう", + "pos": "名詞", + "pn": -0.179708 + }, + { + "surface": "盲判", + "readging": "めくらばん", + "pos": "名詞", + "pn": -0.179723 + }, + { + "surface": "八重生り", + "readging": "やえ", + "pos": "名詞", + "pn": -0.179745 + }, + { + "surface": "くるりと", + "readging": "くるりと", + "pos": "副詞", + "pn": -0.179775 + }, + { + "surface": "機械化", + "readging": "きかいか", + "pos": "名詞", + "pn": -0.179796 + }, + { + "surface": "佩用", + "readging": "はいよう", + "pos": "名詞", + "pn": -0.1798 + }, + { + "surface": "没趣味", + "readging": "ぼっしゅみ", + "pos": "名詞", + "pn": -0.179813 + }, + { + "surface": "書込み", + "readging": "かきこみ", + "pos": "名詞", + "pn": -0.179825 + }, + { + "surface": "日計", + "readging": "にっけい", + "pos": "名詞", + "pn": -0.179834 + }, + { + "surface": "間鴨", + "readging": "あいがも", + "pos": "名詞", + "pn": -0.179858 + }, + { + "surface": "労働者階級", + "readging": "ろうどうしゃかいきゅう", + "pos": "名詞", + "pn": -0.179866 + }, + { + "surface": "半数", + "readging": "はんすう", + "pos": "名詞", + "pn": -0.179871 + }, + { + "surface": "書目", + "readging": "しょもく", + "pos": "名詞", + "pn": -0.179874 + }, + { + "surface": "スピード", + "readging": "スピードアップ", + "pos": "名詞", + "pn": -0.179884 + }, + { + "surface": "貴酬", + "readging": "きしゅう", + "pos": "名詞", + "pn": -0.179888 + }, + { + "surface": "舞台面", + "readging": "ぶたいめん", + "pos": "名詞", + "pn": -0.179903 + }, + { + "surface": "微光", + "readging": "びこう", + "pos": "名詞", + "pn": -0.179951 + }, + { + "surface": "遷都", + "readging": "せんと", + "pos": "名詞", + "pn": -0.180079 + }, + { + "surface": "不易", + "readging": "ふえき", + "pos": "名詞", + "pn": -0.180083 + }, + { + "surface": "被除数", + "readging": "ひじょすう", + "pos": "名詞", + "pn": -0.18009 + }, + { + "surface": "表沙汰", + "readging": "おもてざた", + "pos": "名詞", + "pn": -0.180097 + }, + { + "surface": "常法", + "readging": "じょうほう", + "pos": "名詞", + "pn": -0.180098 + }, + { + "surface": "活塞", + "readging": "かっそく", + "pos": "名詞", + "pn": -0.180102 + }, + { + "surface": "連衡", + "readging": "れんこう", + "pos": "名詞", + "pn": -0.180104 + }, + { + "surface": "ぐんと", + "readging": "ぐんと", + "pos": "副詞", + "pn": -0.180111 + }, + { + "surface": "切上げる", + "readging": "きりあげる", + "pos": "動詞", + "pn": -0.180157 + }, + { + "surface": "買占める", + "readging": "かいしめる", + "pos": "動詞", + "pn": -0.180186 + }, + { + "surface": "濃紺", + "readging": "のうこん", + "pos": "名詞", + "pn": -0.180214 + }, + { + "surface": "身障者", + "readging": "しんしょうしゃ", + "pos": "名詞", + "pn": -0.180218 + }, + { + "surface": "其の場", + "readging": "そのば", + "pos": "名詞", + "pn": -0.180219 + }, + { + "surface": "ギャラ", + "readging": "ギャラ", + "pos": "名詞", + "pn": -0.180228 + }, + { + "surface": "エース", + "readging": "エース", + "pos": "名詞", + "pn": -0.180239 + }, + { + "surface": "廷丁", + "readging": "ていてい", + "pos": "名詞", + "pn": -0.180247 + }, + { + "surface": "内貸し", + "readging": "うちがし", + "pos": "名詞", + "pn": -0.180256 + }, + { + "surface": "飛行士", + "readging": "ひこうし", + "pos": "名詞", + "pn": -0.180258 + }, + { + "surface": "代講", + "readging": "だいこう", + "pos": "名詞", + "pn": -0.180262 + }, + { + "surface": "没交渉", + "readging": "ぼっこうしょう", + "pos": "名詞", + "pn": -0.180273 + }, + { + "surface": "乾", + "readging": "けん", + "pos": "名詞", + "pn": -0.180291 + }, + { + "surface": "DJ", + "readging": "ディージェー", + "pos": "名詞", + "pn": -0.180292 + }, + { + "surface": "類書", + "readging": "るいしょ", + "pos": "名詞", + "pn": -0.180314 + }, + { + "surface": "機帆船", + "readging": "きはんせん", + "pos": "名詞", + "pn": -0.180328 + }, + { + "surface": "農舎", + "readging": "のうしゃ", + "pos": "名詞", + "pn": -0.180394 + }, + { + "surface": "戦記", + "readging": "せんき", + "pos": "名詞", + "pn": -0.180434 + }, + { + "surface": "劇評", + "readging": "げきひょう", + "pos": "名詞", + "pn": -0.180437 + }, + { + "surface": "無体", + "readging": "むたい", + "pos": "名詞", + "pn": -0.180448 + }, + { + "surface": "間狂言", + "readging": "あいきょうげん", + "pos": "名詞", + "pn": -0.180452 + }, + { + "surface": "寄人", + "readging": "よりゅうど", + "pos": "名詞", + "pn": -0.180468 + }, + { + "surface": "ダウ平均", + "readging": "ダウへいきん", + "pos": "名詞", + "pn": -0.180468 + }, + { + "surface": "昔気質", + "readging": "むかしかたぎ", + "pos": "名詞", + "pn": -0.180472 + }, + { + "surface": "洗い立て", + "readging": "あらいたて", + "pos": "名詞", + "pn": -0.180474 + }, + { + "surface": "青竹", + "readging": "あおだけ", + "pos": "名詞", + "pn": -0.180478 + }, + { + "surface": "希少", + "readging": "きしょう", + "pos": "名詞", + "pn": -0.180483 + }, + { + "surface": "座方", + "readging": "ざかた", + "pos": "名詞", + "pn": -0.180496 + }, + { + "surface": "集配", + "readging": "しゅうはい", + "pos": "名詞", + "pn": -0.180507 + }, + { + "surface": "員", + "readging": "いん", + "pos": "名詞", + "pn": -0.180508 + }, + { + "surface": "内出血", + "readging": "ないしゅっけつ", + "pos": "名詞", + "pn": -0.180523 + }, + { + "surface": "老いらく", + "readging": "おいらく", + "pos": "名詞", + "pn": -0.180539 + }, + { + "surface": "どん詰り", + "readging": "どんづまり", + "pos": "名詞", + "pn": -0.180542 + }, + { + "surface": "通り掛け", + "readging": "とおりがけ", + "pos": "名詞", + "pn": -0.180556 + }, + { + "surface": "主事", + "readging": "しゅじ", + "pos": "名詞", + "pn": -0.180557 + }, + { + "surface": "舞台装置", + "readging": "ぶたいそうち", + "pos": "名詞", + "pn": -0.18057 + }, + { + "surface": "心得顔", + "readging": "こころえがお", + "pos": "名詞", + "pn": -0.180589 + }, + { + "surface": "伝奇", + "readging": "でんき", + "pos": "名詞", + "pn": -0.180601 + }, + { + "surface": "編首", + "readging": "へんしゅ", + "pos": "名詞", + "pn": -0.180616 + }, + { + "surface": "入籍", + "readging": "にゅうせき", + "pos": "名詞", + "pn": -0.180618 + }, + { + "surface": "退職", + "readging": "たいしょく", + "pos": "名詞", + "pn": -0.180634 + }, + { + "surface": "照覧", + "readging": "しょうらん", + "pos": "名詞", + "pn": -0.180645 + }, + { + "surface": "架蔵", + "readging": "かぞう", + "pos": "名詞", + "pn": -0.180656 + }, + { + "surface": "デフレ", + "readging": "デフレ", + "pos": "名詞", + "pn": -0.18066 + }, + { + "surface": "カフス", + "readging": "カフス", + "pos": "名詞", + "pn": -0.180664 + }, + { + "surface": "験", + "readging": "げん", + "pos": "名詞", + "pn": -0.180665 + }, + { + "surface": "千生り", + "readging": "せんなり", + "pos": "名詞", + "pn": -0.180672 + }, + { + "surface": "精舎", + "readging": "しょうじゃ", + "pos": "名詞", + "pn": -0.180692 + }, + { + "surface": "炭車", + "readging": "たんしゃ", + "pos": "名詞", + "pn": -0.180698 + }, + { + "surface": "笑い種", + "readging": "わらいぐさ", + "pos": "名詞", + "pn": -0.180698 + }, + { + "surface": "電磁気", + "readging": "でんじき", + "pos": "名詞", + "pn": -0.180716 + }, + { + "surface": "カペイカ", + "readging": "カペイカ", + "pos": "名詞", + "pn": -0.180722 + }, + { + "surface": "抗日", + "readging": "こうにち", + "pos": "名詞", + "pn": -0.180731 + }, + { + "surface": "建坪", + "readging": "たてつぼ", + "pos": "名詞", + "pn": -0.180737 + }, + { + "surface": "万夫", + "readging": "ばんぷ", + "pos": "名詞", + "pn": -0.180744 + }, + { + "surface": "無名", + "readging": "むめい", + "pos": "名詞", + "pn": -0.180755 + }, + { + "surface": "寺男", + "readging": "てらおとこ", + "pos": "名詞", + "pn": -0.18077 + }, + { + "surface": "特報", + "readging": "とくほう", + "pos": "名詞", + "pn": -0.180777 + }, + { + "surface": "私案", + "readging": "しあん", + "pos": "名詞", + "pn": -0.18078 + }, + { + "surface": "潤滑", + "readging": "じゅんかつ", + "pos": "名詞", + "pn": -0.180785 + }, + { + "surface": "新院", + "readging": "しんいん", + "pos": "名詞", + "pn": -0.180804 + }, + { + "surface": "姉さん", + "readging": "ねえさん", + "pos": "名詞", + "pn": -0.180807 + }, + { + "surface": "同業", + "readging": "どうぎょう", + "pos": "名詞", + "pn": -0.180808 + }, + { + "surface": "負腹", + "readging": "まけばら", + "pos": "名詞", + "pn": -0.180817 + }, + { + "surface": "四通八達", + "readging": "しつうはったつ", + "pos": "名詞", + "pn": -0.180836 + }, + { + "surface": "読流す", + "readging": "よみながす", + "pos": "動詞", + "pn": -0.180838 + }, + { + "surface": "甘食", + "readging": "あましょく", + "pos": "名詞", + "pn": -0.180847 + }, + { + "surface": "生滅", + "readging": "しょうめつ", + "pos": "名詞", + "pn": -0.18085 + }, + { + "surface": "クロロフィル", + "readging": "クロロフィル", + "pos": "名詞", + "pn": -0.180857 + }, + { + "surface": "近代産業", + "readging": "きんだいさんぎょう", + "pos": "名詞", + "pn": -0.18087 + }, + { + "surface": "満たす", + "readging": "みたす", + "pos": "動詞", + "pn": -0.180885 + }, + { + "surface": "夜這", + "readging": "よばい", + "pos": "名詞", + "pn": -0.180893 + }, + { + "surface": "会頭", + "readging": "かいとう", + "pos": "名詞", + "pn": -0.180898 + }, + { + "surface": "迷走", + "readging": "めいそう", + "pos": "名詞", + "pn": -0.180914 + }, + { + "surface": "経済家", + "readging": "けいざいか", + "pos": "名詞", + "pn": -0.180934 + }, + { + "surface": "洋書", + "readging": "ようしょ", + "pos": "名詞", + "pn": -0.180937 + }, + { + "surface": "クラリネット", + "readging": "クラリネット", + "pos": "名詞", + "pn": -0.180937 + }, + { + "surface": "金座", + "readging": "きんざ", + "pos": "名詞", + "pn": -0.180937 + }, + { + "surface": "出現", + "readging": "しゅつげん", + "pos": "名詞", + "pn": -0.180944 + }, + { + "surface": "宗祖", + "readging": "しゅうそ", + "pos": "名詞", + "pn": -0.180961 + }, + { + "surface": "うねうね", + "readging": "うねうね", + "pos": "副詞", + "pn": -0.180961 + }, + { + "surface": "学府", + "readging": "がくふ", + "pos": "名詞", + "pn": -0.181003 + }, + { + "surface": "探梅", + "readging": "たんばい", + "pos": "名詞", + "pn": -0.181012 + }, + { + "surface": "唱歌", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.181021 + }, + { + "surface": "WC", + "readging": "ダブリューシー", + "pos": "名詞", + "pn": -0.181023 + }, + { + "surface": "建設", + "readging": "けんせつ", + "pos": "名詞", + "pn": -0.181047 + }, + { + "surface": "夜逃げ", + "readging": "よにげ", + "pos": "名詞", + "pn": -0.18106 + }, + { + "surface": "尚歯", + "readging": "しょうし", + "pos": "名詞", + "pn": -0.181064 + }, + { + "surface": "植物油", + "readging": "しょくぶつゆ", + "pos": "名詞", + "pn": -0.181078 + }, + { + "surface": "ガボット", + "readging": "ガボット", + "pos": "名詞", + "pn": -0.181079 + }, + { + "surface": "利幅", + "readging": "りはば", + "pos": "名詞", + "pn": -0.181086 + }, + { + "surface": "待ちあぐむ", + "readging": "まちあぐむ", + "pos": "動詞", + "pn": -0.181093 + }, + { + "surface": "端武者", + "readging": "はむしゃ", + "pos": "名詞", + "pn": -0.181105 + }, + { + "surface": "来演", + "readging": "らいえん", + "pos": "名詞", + "pn": -0.18112 + }, + { + "surface": "離職", + "readging": "りしょく", + "pos": "名詞", + "pn": -0.181133 + }, + { + "surface": "妖姫", + "readging": "ようき", + "pos": "名詞", + "pn": -0.181143 + }, + { + "surface": "俗本", + "readging": "ぞくほん", + "pos": "名詞", + "pn": -0.181144 + }, + { + "surface": "微小", + "readging": "びしょう", + "pos": "名詞", + "pn": -0.181146 + }, + { + "surface": "産物", + "readging": "さんぶつ", + "pos": "名詞", + "pn": -0.181151 + }, + { + "surface": "降板", + "readging": "こうばん", + "pos": "名詞", + "pn": -0.181152 + }, + { + "surface": "又従兄弟", + "readging": "またいとこ", + "pos": "名詞", + "pn": -0.181155 + }, + { + "surface": "鑞付け", + "readging": "ろうづけ", + "pos": "名詞", + "pn": -0.181159 + }, + { + "surface": "軍馬", + "readging": "ぐんば", + "pos": "名詞", + "pn": -0.181169 + }, + { + "surface": "激甚", + "readging": "げきじん", + "pos": "名詞", + "pn": -0.18118 + }, + { + "surface": "芸術", + "readging": "げいじゅつ", + "pos": "名詞", + "pn": -0.181182 + }, + { + "surface": "ビエンナーレ", + "readging": "ビエンナーレ", + "pos": "名詞", + "pn": -0.181197 + }, + { + "surface": "切替る", + "readging": "きりかわる", + "pos": "動詞", + "pn": -0.181204 + }, + { + "surface": "五摂家", + "readging": "ごせっけ", + "pos": "名詞", + "pn": -0.181209 + }, + { + "surface": "寒冷紗", + "readging": "かんれいしゃ", + "pos": "名詞", + "pn": -0.181214 + }, + { + "surface": "自治領", + "readging": "じちりょう", + "pos": "名詞", + "pn": -0.181233 + }, + { + "surface": "テリア", + "readging": "テリア", + "pos": "名詞", + "pn": -0.181237 + }, + { + "surface": "ロマンチスト", + "readging": "ロマンチスト", + "pos": "名詞", + "pn": -0.181249 + }, + { + "surface": "追福", + "readging": "ついふく", + "pos": "名詞", + "pn": -0.181253 + }, + { + "surface": "不純", + "readging": "ふじゅん", + "pos": "名詞", + "pn": -0.181256 + }, + { + "surface": "旧恩", + "readging": "きゅうおん", + "pos": "名詞", + "pn": -0.181269 + }, + { + "surface": "牛追い", + "readging": "うしおい", + "pos": "名詞", + "pn": -0.181269 + }, + { + "surface": "前納", + "readging": "ぜんのう", + "pos": "名詞", + "pn": -0.18128 + }, + { + "surface": "合の子", + "readging": "あいのこ", + "pos": "名詞", + "pn": -0.181282 + }, + { + "surface": "連載", + "readging": "れんさい", + "pos": "名詞", + "pn": -0.181285 + }, + { + "surface": "薬石", + "readging": "やくせき", + "pos": "名詞", + "pn": -0.181295 + }, + { + "surface": "シラブル", + "readging": "シラブル", + "pos": "名詞", + "pn": -0.181308 + }, + { + "surface": "シーフード", + "readging": "シーフード", + "pos": "名詞", + "pn": -0.181351 + }, + { + "surface": "群論", + "readging": "ぐんろん", + "pos": "名詞", + "pn": -0.18136 + }, + { + "surface": "国有", + "readging": "こくゆう", + "pos": "名詞", + "pn": -0.181364 + }, + { + "surface": "リップ", + "readging": "リップ", + "pos": "名詞", + "pn": -0.181389 + }, + { + "surface": "口糧", + "readging": "こうりょう", + "pos": "名詞", + "pn": -0.181397 + }, + { + "surface": "釈義", + "readging": "しゃくぎ", + "pos": "名詞", + "pn": -0.181405 + }, + { + "surface": "潰走", + "readging": "かいそう", + "pos": "名詞", + "pn": -0.18141 + }, + { + "surface": "カ氏", + "readging": "カし", + "pos": "名詞", + "pn": -0.181411 + }, + { + "surface": "イコール", + "readging": "イコール", + "pos": "名詞", + "pn": -0.181423 + }, + { + "surface": "慰め顔", + "readging": "なぐさめがお", + "pos": "名詞", + "pn": -0.181434 + }, + { + "surface": "積込む", + "readging": "つみこむ", + "pos": "動詞", + "pn": -0.181456 + }, + { + "surface": "雑菌", + "readging": "ざっきん", + "pos": "名詞", + "pn": -0.181471 + }, + { + "surface": "乾季", + "readging": "かんき", + "pos": "名詞", + "pn": -0.181492 + }, + { + "surface": "人頭税", + "readging": "にんとうぜい", + "pos": "名詞", + "pn": -0.181501 + }, + { + "surface": "墨書", + "readging": "ぼくしょ", + "pos": "名詞", + "pn": -0.181504 + }, + { + "surface": "跋扈", + "readging": "ばっこ", + "pos": "名詞", + "pn": -0.181505 + }, + { + "surface": "メーン", + "readging": "メーン", + "pos": "名詞", + "pn": -0.181516 + }, + { + "surface": "幾度", + "readging": "いくど", + "pos": "名詞", + "pn": -0.181518 + }, + { + "surface": "篋底", + "readging": "きょうてい", + "pos": "名詞", + "pn": -0.18152 + }, + { + "surface": "衆議", + "readging": "しゅうぎ", + "pos": "名詞", + "pn": -0.18152 + }, + { + "surface": "二十日", + "readging": "はつか", + "pos": "名詞", + "pn": -0.181526 + }, + { + "surface": "岳父", + "readging": "がくふ", + "pos": "名詞", + "pn": -0.181529 + }, + { + "surface": "況して", + "readging": "まして", + "pos": "副詞", + "pn": -0.181581 + }, + { + "surface": "恩赦", + "readging": "おんしゃ", + "pos": "名詞", + "pn": -0.181587 + }, + { + "surface": "排便", + "readging": "はいべん", + "pos": "名詞", + "pn": -0.181593 + }, + { + "surface": "脱糞", + "readging": "だっぷん", + "pos": "名詞", + "pn": -0.181593 + }, + { + "surface": "親告", + "readging": "しんこく", + "pos": "名詞", + "pn": -0.181605 + }, + { + "surface": "茶棚", + "readging": "ちゃだな", + "pos": "名詞", + "pn": -0.18163 + }, + { + "surface": "逐条", + "readging": "ちくじょう", + "pos": "名詞", + "pn": -0.181642 + }, + { + "surface": "そわつく", + "readging": "そわつく", + "pos": "動詞", + "pn": -0.181679 + }, + { + "surface": "伸展", + "readging": "しんてん", + "pos": "名詞", + "pn": -0.181702 + }, + { + "surface": "神橋", + "readging": "しんきょう", + "pos": "名詞", + "pn": -0.181706 + }, + { + "surface": "ソックス", + "readging": "ソックス", + "pos": "名詞", + "pn": -0.181719 + }, + { + "surface": "中水道", + "readging": "ちゅうすいどう", + "pos": "名詞", + "pn": -0.181734 + }, + { + "surface": "一般会計", + "readging": "いっぱんかいけい", + "pos": "名詞", + "pn": -0.181735 + }, + { + "surface": "設問", + "readging": "せつもん", + "pos": "名詞", + "pn": -0.181741 + }, + { + "surface": "隕鉄", + "readging": "いんてつ", + "pos": "名詞", + "pn": -0.181779 + }, + { + "surface": "LAN", + "readging": "ラン", + "pos": "名詞", + "pn": -0.181809 + }, + { + "surface": "旨趣", + "readging": "ししゅ", + "pos": "名詞", + "pn": -0.18181 + }, + { + "surface": "逆鱗", + "readging": "げきりん", + "pos": "名詞", + "pn": -0.181835 + }, + { + "surface": "主戦", + "readging": "しゅせん", + "pos": "名詞", + "pn": -0.181842 + }, + { + "surface": "軽量", + "readging": "けいりょう", + "pos": "名詞", + "pn": -0.181896 + }, + { + "surface": "適帰", + "readging": "てっき", + "pos": "名詞", + "pn": -0.181904 + }, + { + "surface": "雲の峰", + "readging": "くものみね", + "pos": "名詞", + "pn": -0.181909 + }, + { + "surface": "瀬", + "readging": "らい", + "pos": "名詞", + "pn": -0.181931 + }, + { + "surface": "先遣", + "readging": "せんけん", + "pos": "名詞", + "pn": -0.181945 + }, + { + "surface": "軽羅", + "readging": "けいら", + "pos": "名詞", + "pn": -0.181954 + }, + { + "surface": "永遠", + "readging": "えいえん", + "pos": "名詞", + "pn": -0.181966 + }, + { + "surface": "文語文", + "readging": "ぶんごぶん", + "pos": "名詞", + "pn": -0.181968 + }, + { + "surface": "前頭", + "readging": "ぜんとう", + "pos": "名詞", + "pn": -0.181974 + }, + { + "surface": "平平凡凡", + "readging": "へいへいぼんぼん", + "pos": "名詞", + "pn": -0.181975 + }, + { + "surface": "腹下り", + "readging": "はらくだり", + "pos": "名詞", + "pn": -0.181977 + }, + { + "surface": "梨園", + "readging": "りえん", + "pos": "名詞", + "pn": -0.181979 + }, + { + "surface": "ラジオ", + "readging": "ラジオドラマ", + "pos": "名詞", + "pn": -0.181981 + }, + { + "surface": "弱", + "readging": "じゃく", + "pos": "名詞", + "pn": -0.181991 + }, + { + "surface": "納期", + "readging": "のうき", + "pos": "名詞", + "pn": -0.182002 + }, + { + "surface": "気筒", + "readging": "きとう", + "pos": "名詞", + "pn": -0.18201 + }, + { + "surface": "表方", + "readging": "おもてかた", + "pos": "名詞", + "pn": -0.182014 + }, + { + "surface": "歌体", + "readging": "かたい", + "pos": "名詞", + "pn": -0.182021 + }, + { + "surface": "選る", + "readging": "える", + "pos": "動詞", + "pn": -0.182027 + }, + { + "surface": "的中", + "readging": "てきちゅう", + "pos": "名詞", + "pn": -0.182036 + }, + { + "surface": "再興", + "readging": "さいこう", + "pos": "名詞", + "pn": -0.182066 + }, + { + "surface": "盗品", + "readging": "とうひん", + "pos": "名詞", + "pn": -0.182083 + }, + { + "surface": "林間", + "readging": "りんかん", + "pos": "名詞", + "pn": -0.182099 + }, + { + "surface": "動物性", + "readging": "どうぶつせい", + "pos": "名詞", + "pn": -0.182101 + }, + { + "surface": "遠矢", + "readging": "とおや", + "pos": "名詞", + "pn": -0.182102 + }, + { + "surface": "複式", + "readging": "ふくしき", + "pos": "名詞", + "pn": -0.182102 + }, + { + "surface": "服喪", + "readging": "ふくも", + "pos": "名詞", + "pn": -0.182111 + }, + { + "surface": "高角", + "readging": "こうかく", + "pos": "名詞", + "pn": -0.182119 + }, + { + "surface": "頑丈", + "readging": "がんじょう", + "pos": "名詞", + "pn": -0.182123 + }, + { + "surface": "没後", + "readging": "ぼつご", + "pos": "名詞", + "pn": -0.182155 + }, + { + "surface": "帰陣", + "readging": "きじん", + "pos": "名詞", + "pn": -0.18216 + }, + { + "surface": "醸し出す", + "readging": "かもしだす", + "pos": "動詞", + "pn": -0.182176 + }, + { + "surface": "破鏡", + "readging": "はきょう", + "pos": "名詞", + "pn": -0.182189 + }, + { + "surface": "キロ", + "readging": "キロ", + "pos": "名詞", + "pn": -0.182194 + }, + { + "surface": "裁板", + "readging": "たちいた", + "pos": "名詞", + "pn": -0.182197 + }, + { + "surface": "中日", + "readging": "ちゅうにち", + "pos": "名詞", + "pn": -0.182203 + }, + { + "surface": "女帝", + "readging": "にょてい", + "pos": "名詞", + "pn": -0.182205 + }, + { + "surface": "ぶま", + "readging": "ぶま", + "pos": "名詞", + "pn": -0.182206 + }, + { + "surface": "被官", + "readging": "ひかん", + "pos": "名詞", + "pn": -0.18224 + }, + { + "surface": "繭紬", + "readging": "けんちゅう", + "pos": "名詞", + "pn": -0.182241 + }, + { + "surface": "公会堂", + "readging": "こうかいどう", + "pos": "名詞", + "pn": -0.182247 + }, + { + "surface": "老爺", + "readging": "ろうや", + "pos": "名詞", + "pn": -0.182256 + }, + { + "surface": "落城", + "readging": "らくじょう", + "pos": "名詞", + "pn": -0.182265 + }, + { + "surface": "野鶴", + "readging": "やかく", + "pos": "名詞", + "pn": -0.182269 + }, + { + "surface": "禁酒", + "readging": "きんしゅ", + "pos": "名詞", + "pn": -0.18227 + }, + { + "surface": "奇人", + "readging": "きじん", + "pos": "名詞", + "pn": -0.18227 + }, + { + "surface": "アペリチフ", + "readging": "アペリチフ", + "pos": "名詞", + "pn": -0.18227 + }, + { + "surface": "素絹", + "readging": "そけん", + "pos": "名詞", + "pn": -0.182276 + }, + { + "surface": "待女郎", + "readging": "まちじょろう", + "pos": "名詞", + "pn": -0.182278 + }, + { + "surface": "エスニック", + "readging": "エスニック", + "pos": "名詞", + "pn": -0.182304 + }, + { + "surface": "朋党", + "readging": "ほうとう", + "pos": "名詞", + "pn": -0.182307 + }, + { + "surface": "コンビネーション", + "readging": "コンビネーション", + "pos": "名詞", + "pn": -0.182314 + }, + { + "surface": "土方", + "readging": "どかた", + "pos": "名詞", + "pn": -0.182325 + }, + { + "surface": "風圧", + "readging": "ふうあつ", + "pos": "名詞", + "pn": -0.182326 + }, + { + "surface": "サイン", + "readging": "サイン", + "pos": "名詞", + "pn": -0.182364 + }, + { + "surface": "吸湿性", + "readging": "きゅうしつせい", + "pos": "名詞", + "pn": -0.182364 + }, + { + "surface": "山手", + "readging": "やまて", + "pos": "名詞", + "pn": -0.182373 + }, + { + "surface": "落書", + "readging": "らくがき", + "pos": "名詞", + "pn": -0.182379 + }, + { + "surface": "地方税", + "readging": "ちほうぜい", + "pos": "名詞", + "pn": -0.182383 + }, + { + "surface": "商売柄", + "readging": "しょうばいがら", + "pos": "名詞", + "pn": -0.182384 + }, + { + "surface": "堰堤", + "readging": "えんてい", + "pos": "名詞", + "pn": -0.182387 + }, + { + "surface": "釣瓶落し", + "readging": "つるべおとし", + "pos": "名詞", + "pn": -0.182388 + }, + { + "surface": "罪業", + "readging": "ざいごう", + "pos": "名詞", + "pn": -0.182431 + }, + { + "surface": "除湿", + "readging": "じょしつ", + "pos": "名詞", + "pn": -0.182434 + }, + { + "surface": "用箋", + "readging": "ようせん", + "pos": "名詞", + "pn": -0.182434 + }, + { + "surface": "雁皮紙", + "readging": "がんぴし", + "pos": "名詞", + "pn": -0.182448 + }, + { + "surface": "表白", + "readging": "ひょうはく", + "pos": "名詞", + "pn": -0.182453 + }, + { + "surface": "裏山", + "readging": "うらやま", + "pos": "名詞", + "pn": -0.182457 + }, + { + "surface": "分光", + "readging": "ぶんこう", + "pos": "名詞", + "pn": -0.182478 + }, + { + "surface": "国禁", + "readging": "こっきん", + "pos": "名詞", + "pn": -0.182489 + }, + { + "surface": "伝奏", + "readging": "てんそう", + "pos": "名詞", + "pn": -0.182496 + }, + { + "surface": "鬱然", + "readging": "うつぜん", + "pos": "名詞", + "pn": -0.182505 + }, + { + "surface": "宣命", + "readging": "せんみょう", + "pos": "名詞", + "pn": -0.182532 + }, + { + "surface": "総記", + "readging": "そうき", + "pos": "名詞", + "pn": -0.182536 + }, + { + "surface": "近縁", + "readging": "きんえん", + "pos": "名詞", + "pn": -0.18255 + }, + { + "surface": "荷重", + "readging": "かじゅう", + "pos": "名詞", + "pn": -0.182555 + }, + { + "surface": "トルコ玉", + "readging": "トルコだま", + "pos": "名詞", + "pn": -0.182558 + }, + { + "surface": "物我", + "readging": "ぶつが", + "pos": "名詞", + "pn": -0.182558 + }, + { + "surface": "遊び女", + "readging": "あそびめ", + "pos": "名詞", + "pn": -0.18256 + }, + { + "surface": "古流", + "readging": "こりゅう", + "pos": "名詞", + "pn": -0.182586 + }, + { + "surface": "秘書官", + "readging": "ひしょかん", + "pos": "名詞", + "pn": -0.182593 + }, + { + "surface": "金環", + "readging": "きんかん", + "pos": "名詞", + "pn": -0.182595 + }, + { + "surface": "夜祭", + "readging": "よまつり", + "pos": "名詞", + "pn": -0.1826 + }, + { + "surface": "手桶", + "readging": "ておけ", + "pos": "名詞", + "pn": -0.182601 + }, + { + "surface": "内聞", + "readging": "ないぶん", + "pos": "名詞", + "pn": -0.18262 + }, + { + "surface": "五百羅漢", + "readging": "ごひゃくらかん", + "pos": "名詞", + "pn": -0.182623 + }, + { + "surface": "生れ変る", + "readging": "うまれかわる", + "pos": "動詞", + "pn": -0.182624 + }, + { + "surface": "直筆", + "readging": "じきひつ", + "pos": "名詞", + "pn": -0.182651 + }, + { + "surface": "前人", + "readging": "ぜんじん", + "pos": "名詞", + "pn": -0.182658 + }, + { + "surface": "女旱", + "readging": "おんなひでり", + "pos": "名詞", + "pn": -0.182665 + }, + { + "surface": "営巣", + "readging": "えいそう", + "pos": "名詞", + "pn": -0.182669 + }, + { + "surface": "統計学", + "readging": "とうけいがく", + "pos": "名詞", + "pn": -0.182677 + }, + { + "surface": "借宅", + "readging": "しゃくたく", + "pos": "名詞", + "pn": -0.182678 + }, + { + "surface": "夕闇", + "readging": "ゆうやみ", + "pos": "名詞", + "pn": -0.182705 + }, + { + "surface": "巨樹", + "readging": "きょじゅ", + "pos": "名詞", + "pn": -0.182706 + }, + { + "surface": "セミコロン", + "readging": "セミコロン", + "pos": "名詞", + "pn": -0.182744 + }, + { + "surface": "窮鳥", + "readging": "きゅうちょう", + "pos": "名詞", + "pn": -0.182746 + }, + { + "surface": "五線", + "readging": "ごせん", + "pos": "名詞", + "pn": -0.182752 + }, + { + "surface": "観音", + "readging": "かんのん", + "pos": "名詞", + "pn": -0.182769 + }, + { + "surface": "顔繋ぎ", + "readging": "かおつなぎ", + "pos": "名詞", + "pn": -0.182797 + }, + { + "surface": "シュガー", + "readging": "シュガー", + "pos": "名詞", + "pn": -0.182826 + }, + { + "surface": "染分ける", + "readging": "そめわける", + "pos": "動詞", + "pn": -0.18287 + }, + { + "surface": "来日", + "readging": "らいにち", + "pos": "名詞", + "pn": -0.18289 + }, + { + "surface": "題号", + "readging": "だいごう", + "pos": "名詞", + "pn": -0.18291 + }, + { + "surface": "音節文字", + "readging": "おんせつもじ", + "pos": "名詞", + "pn": -0.182913 + }, + { + "surface": "字余り", + "readging": "じあまり", + "pos": "名詞", + "pn": -0.18293 + }, + { + "surface": "薔薇", + "readging": "しょうび", + "pos": "名詞", + "pn": -0.182931 + }, + { + "surface": "立会人", + "readging": "たちあい", + "pos": "名詞", + "pn": -0.182944 + }, + { + "surface": "季夏", + "readging": "きか", + "pos": "名詞", + "pn": -0.182946 + }, + { + "surface": "しんと", + "readging": "しんと", + "pos": "副詞", + "pn": -0.182947 + }, + { + "surface": "裏付ける", + "readging": "うらづける", + "pos": "動詞", + "pn": -0.182963 + }, + { + "surface": "近眼", + "readging": "きんがん", + "pos": "名詞", + "pn": -0.182976 + }, + { + "surface": "落果", + "readging": "らっか", + "pos": "名詞", + "pn": -0.182979 + }, + { + "surface": "組伏せる", + "readging": "くみふせる", + "pos": "動詞", + "pn": -0.183018 + }, + { + "surface": "色紙", + "readging": "いろがみ", + "pos": "名詞", + "pn": -0.183018 + }, + { + "surface": "各月", + "readging": "かくげつ", + "pos": "名詞", + "pn": -0.183026 + }, + { + "surface": "獅子", + "readging": "しし", + "pos": "名詞", + "pn": -0.183047 + }, + { + "surface": "アップリケ", + "readging": "アップリケ", + "pos": "名詞", + "pn": -0.183091 + }, + { + "surface": "浪漫派", + "readging": "ろうまんは", + "pos": "名詞", + "pn": -0.183123 + }, + { + "surface": "甘苦", + "readging": "かんく", + "pos": "名詞", + "pn": -0.18314 + }, + { + "surface": "会席料理", + "readging": "かいせきりょうり", + "pos": "名詞", + "pn": -0.183256 + }, + { + "surface": "勤め人", + "readging": "つとめにん", + "pos": "名詞", + "pn": -0.183256 + }, + { + "surface": "世辞", + "readging": "せじ", + "pos": "名詞", + "pn": -0.183258 + }, + { + "surface": "列世", + "readging": "れっせい", + "pos": "名詞", + "pn": -0.183273 + }, + { + "surface": "足算", + "readging": "たしざん", + "pos": "名詞", + "pn": -0.183275 + }, + { + "surface": "カンパニー", + "readging": "カンパニー", + "pos": "名詞", + "pn": -0.183306 + }, + { + "surface": "太鼓持", + "readging": "たいこもち", + "pos": "名詞", + "pn": -0.18331 + }, + { + "surface": "社会運動", + "readging": "しゃかいうんどう", + "pos": "名詞", + "pn": -0.183312 + }, + { + "surface": "ジレー", + "readging": "ジレー", + "pos": "名詞", + "pn": -0.183339 + }, + { + "surface": "戸板", + "readging": "といた", + "pos": "名詞", + "pn": -0.183361 + }, + { + "surface": "中将", + "readging": "ちゅうじょう", + "pos": "名詞", + "pn": -0.183374 + }, + { + "surface": "歩卒", + "readging": "ほそつ", + "pos": "名詞", + "pn": -0.183387 + }, + { + "surface": "助手", + "readging": "じょしゅ", + "pos": "名詞", + "pn": -0.18339 + }, + { + "surface": "隠君子", + "readging": "いんくんし", + "pos": "名詞", + "pn": -0.183393 + }, + { + "surface": "綿雲", + "readging": "わたぐも", + "pos": "名詞", + "pn": -0.183395 + }, + { + "surface": "無言", + "readging": "むごん", + "pos": "名詞", + "pn": -0.183397 + }, + { + "surface": "写場", + "readging": "しゃじょう", + "pos": "名詞", + "pn": -0.183418 + }, + { + "surface": "秘録", + "readging": "ひろく", + "pos": "名詞", + "pn": -0.183422 + }, + { + "surface": "士爵", + "readging": "ししゃく", + "pos": "名詞", + "pn": -0.183424 + }, + { + "surface": "粗放農業", + "readging": "そほうのうぎょう", + "pos": "名詞", + "pn": -0.183429 + }, + { + "surface": "パス", + "readging": "パスポート", + "pos": "名詞", + "pn": -0.183431 + }, + { + "surface": "暗黙", + "readging": "あんもく", + "pos": "名詞", + "pn": -0.183433 + }, + { + "surface": "ペナント", + "readging": "ペナント", + "pos": "名詞", + "pn": -0.183434 + }, + { + "surface": "原麦", + "readging": "げんばく", + "pos": "名詞", + "pn": -0.183444 + }, + { + "surface": "ゴルファー", + "readging": "ゴルファー", + "pos": "名詞", + "pn": -0.183447 + }, + { + "surface": "船隊", + "readging": "せんたい", + "pos": "名詞", + "pn": -0.18346 + }, + { + "surface": "浴用", + "readging": "よくよう", + "pos": "名詞", + "pn": -0.183467 + }, + { + "surface": "夕立", + "readging": "ゆうだち", + "pos": "名詞", + "pn": -0.183472 + }, + { + "surface": "レーンコート", + "readging": "レーンコート", + "pos": "名詞", + "pn": -0.183485 + }, + { + "surface": "鼓笛", + "readging": "こてき", + "pos": "名詞", + "pn": -0.183502 + }, + { + "surface": "群舞", + "readging": "ぐんぶ", + "pos": "名詞", + "pn": -0.183504 + }, + { + "surface": "織機", + "readging": "しょっき", + "pos": "名詞", + "pn": -0.183525 + }, + { + "surface": "点線", + "readging": "てんせん", + "pos": "名詞", + "pn": -0.183535 + }, + { + "surface": "旧時", + "readging": "きゅうじ", + "pos": "名詞", + "pn": -0.183536 + }, + { + "surface": "八丁", + "readging": "はっちょう", + "pos": "名詞", + "pn": -0.18354 + }, + { + "surface": "学都", + "readging": "がくと", + "pos": "名詞", + "pn": -0.183547 + }, + { + "surface": "入唐", + "readging": "にっとう", + "pos": "名詞", + "pn": -0.183559 + }, + { + "surface": "苗裔", + "readging": "びょうえい", + "pos": "名詞", + "pn": -0.18357 + }, + { + "surface": "急増", + "readging": "きゅうぞう", + "pos": "名詞", + "pn": -0.183579 + }, + { + "surface": "お代り", + "readging": "おかわり", + "pos": "名詞", + "pn": -0.183585 + }, + { + "surface": "音声", + "readging": "おんじょう", + "pos": "名詞", + "pn": -0.183603 + }, + { + "surface": "生首", + "readging": "なまくび", + "pos": "名詞", + "pn": -0.183613 + }, + { + "surface": "秒読み", + "readging": "びょうよみ", + "pos": "名詞", + "pn": -0.183618 + }, + { + "surface": "伯楽", + "readging": "はくらく", + "pos": "名詞", + "pn": -0.183624 + }, + { + "surface": "内輪山", + "readging": "ないりんざん", + "pos": "名詞", + "pn": -0.183637 + }, + { + "surface": "鬼歯", + "readging": "おにば", + "pos": "名詞", + "pn": -0.183638 + }, + { + "surface": "異化", + "readging": "いか", + "pos": "名詞", + "pn": -0.183656 + }, + { + "surface": "負目", + "readging": "おいめ", + "pos": "名詞", + "pn": -0.18368 + }, + { + "surface": "ぼつぼつ", + "readging": "ぼつぼつ", + "pos": "名詞", + "pn": -0.183686 + }, + { + "surface": "筆致", + "readging": "ひっち", + "pos": "名詞", + "pn": -0.183687 + }, + { + "surface": "順手", + "readging": "じゅんて", + "pos": "名詞", + "pn": -0.183706 + }, + { + "surface": "清教徒", + "readging": "せいきょうと", + "pos": "名詞", + "pn": -0.18372 + }, + { + "surface": "礼拝", + "readging": "れいはい", + "pos": "名詞", + "pn": -0.183734 + }, + { + "surface": "会稽の恥", + "readging": "かいけいのはじ", + "pos": "名詞", + "pn": -0.183736 + }, + { + "surface": "異種", + "readging": "いしゅ", + "pos": "名詞", + "pn": -0.18374 + }, + { + "surface": "御大", + "readging": "おんたい", + "pos": "名詞", + "pn": -0.183746 + }, + { + "surface": "議了", + "readging": "ぎりょう", + "pos": "名詞", + "pn": -0.183748 + }, + { + "surface": "末筆", + "readging": "まっぴつ", + "pos": "名詞", + "pn": -0.183761 + }, + { + "surface": "損金", + "readging": "そんきん", + "pos": "名詞", + "pn": -0.18378 + }, + { + "surface": "セコハン", + "readging": "セコハン", + "pos": "名詞", + "pn": -0.18378 + }, + { + "surface": "将官", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.183781 + }, + { + "surface": "淵瀬", + "readging": "ふちせ", + "pos": "名詞", + "pn": -0.183789 + }, + { + "surface": "ヒヤリング", + "readging": "ヒヤリング", + "pos": "名詞", + "pn": -0.183817 + }, + { + "surface": "一生懸命", + "readging": "いっしょうけんめい", + "pos": "名詞", + "pn": -0.183819 + }, + { + "surface": "両得", + "readging": "りょうとく", + "pos": "名詞", + "pn": -0.183829 + }, + { + "surface": "検閲", + "readging": "けんえつ", + "pos": "名詞", + "pn": -0.183845 + }, + { + "surface": "和牛", + "readging": "わぎゅう", + "pos": "名詞", + "pn": -0.183849 + }, + { + "surface": "霊祭", + "readging": "たままつり", + "pos": "名詞", + "pn": -0.183854 + }, + { + "surface": "血痕", + "readging": "けっこん", + "pos": "名詞", + "pn": -0.183864 + }, + { + "surface": "別表", + "readging": "べっぴょう", + "pos": "名詞", + "pn": -0.183874 + }, + { + "surface": "多元論", + "readging": "たげんろん", + "pos": "名詞", + "pn": -0.183878 + }, + { + "surface": "恥部", + "readging": "ちぶ", + "pos": "名詞", + "pn": -0.183881 + }, + { + "surface": "頓悟", + "readging": "とんご", + "pos": "名詞", + "pn": -0.183893 + }, + { + "surface": "水面", + "readging": "すいめん", + "pos": "名詞", + "pn": -0.183893 + }, + { + "surface": "兼勤", + "readging": "けんきん", + "pos": "名詞", + "pn": -0.183897 + }, + { + "surface": "年年歳歳", + "readging": "ねんねんさいさい", + "pos": "副詞", + "pn": -0.183904 + }, + { + "surface": "逐鹿", + "readging": "ちくろく", + "pos": "名詞", + "pn": -0.183906 + }, + { + "surface": "ベレー", + "readging": "ベレー", + "pos": "名詞", + "pn": -0.183918 + }, + { + "surface": "振れる", + "readging": "ふれる", + "pos": "動詞", + "pn": -0.183921 + }, + { + "surface": "銅器", + "readging": "どうき", + "pos": "名詞", + "pn": -0.18393 + }, + { + "surface": "寝首", + "readging": "ねくび", + "pos": "名詞", + "pn": -0.183963 + }, + { + "surface": "精油", + "readging": "せいゆ", + "pos": "名詞", + "pn": -0.183972 + }, + { + "surface": "フェアリーランド", + "readging": "フェアリーランド", + "pos": "名詞", + "pn": -0.183991 + }, + { + "surface": "三位一体", + "readging": "さんみいったい", + "pos": "名詞", + "pn": -0.184002 + }, + { + "surface": "シーズン", + "readging": "シーズン", + "pos": "名詞", + "pn": -0.184022 + }, + { + "surface": "実験台", + "readging": "じっけんだい", + "pos": "名詞", + "pn": -0.184035 + }, + { + "surface": "彫塑", + "readging": "ちょうそ", + "pos": "名詞", + "pn": -0.18404 + }, + { + "surface": "酒楼", + "readging": "しゅろう", + "pos": "名詞", + "pn": -0.184046 + }, + { + "surface": "教条主義", + "readging": "きょうじょうしゅぎ", + "pos": "名詞", + "pn": -0.18405 + }, + { + "surface": "上納", + "readging": "じょうのう", + "pos": "名詞", + "pn": -0.184057 + }, + { + "surface": "割勘", + "readging": "わりかん", + "pos": "名詞", + "pn": -0.184057 + }, + { + "surface": "戦旗", + "readging": "せんき", + "pos": "名詞", + "pn": -0.184076 + }, + { + "surface": "教卓", + "readging": "きょうたく", + "pos": "名詞", + "pn": -0.184097 + }, + { + "surface": "切削", + "readging": "せっさく", + "pos": "名詞", + "pn": -0.18412 + }, + { + "surface": "外海", + "readging": "がいかい", + "pos": "名詞", + "pn": -0.184147 + }, + { + "surface": "小技", + "readging": "こわざ", + "pos": "名詞", + "pn": -0.184152 + }, + { + "surface": "金坑", + "readging": "きんこう", + "pos": "名詞", + "pn": -0.184159 + }, + { + "surface": "御参り", + "readging": "おまいり", + "pos": "名詞", + "pn": -0.184173 + }, + { + "surface": "アピール", + "readging": "アピール", + "pos": "名詞", + "pn": -0.184182 + }, + { + "surface": "初号", + "readging": "しょごう", + "pos": "名詞", + "pn": -0.184184 + }, + { + "surface": "例言", + "readging": "れいげん", + "pos": "名詞", + "pn": -0.184199 + }, + { + "surface": "紙質", + "readging": "ししつ", + "pos": "名詞", + "pn": -0.184202 + }, + { + "surface": "湯煎", + "readging": "ゆせん", + "pos": "名詞", + "pn": -0.184222 + }, + { + "surface": "金元", + "readging": "かねもと", + "pos": "名詞", + "pn": -0.184231 + }, + { + "surface": "縫代", + "readging": "ぬいしろ", + "pos": "名詞", + "pn": -0.184234 + }, + { + "surface": "余力", + "readging": "よりょく", + "pos": "名詞", + "pn": -0.184249 + }, + { + "surface": "劣位", + "readging": "れつい", + "pos": "名詞", + "pn": -0.184261 + }, + { + "surface": "黙考", + "readging": "もっこう", + "pos": "名詞", + "pn": -0.184274 + }, + { + "surface": "力足", + "readging": "ちからあし", + "pos": "名詞", + "pn": -0.18428 + }, + { + "surface": "親任", + "readging": "しんにん", + "pos": "名詞", + "pn": -0.184286 + }, + { + "surface": "棗椰子", + "readging": "なつめやし", + "pos": "名詞", + "pn": -0.184287 + }, + { + "surface": "茄子紺", + "readging": "なすこん", + "pos": "名詞", + "pn": -0.184298 + }, + { + "surface": "旗持", + "readging": "はたもち", + "pos": "名詞", + "pn": -0.184314 + }, + { + "surface": "寝顔", + "readging": "ねがお", + "pos": "名詞", + "pn": -0.184332 + }, + { + "surface": "タルク", + "readging": "タルク", + "pos": "名詞", + "pn": -0.184352 + }, + { + "surface": "等圧線", + "readging": "とうあつせん", + "pos": "名詞", + "pn": -0.184358 + }, + { + "surface": "退位", + "readging": "たいい", + "pos": "名詞", + "pn": -0.184373 + }, + { + "surface": "エントリー", + "readging": "エントリー", + "pos": "名詞", + "pn": -0.184376 + }, + { + "surface": "貧賤", + "readging": "ひんせん", + "pos": "名詞", + "pn": -0.184377 + }, + { + "surface": "夜店", + "readging": "よみせ", + "pos": "名詞", + "pn": -0.184383 + }, + { + "surface": "フォン", + "readging": "フォン", + "pos": "名詞", + "pn": -0.184383 + }, + { + "surface": "月掛", + "readging": "つきがけ", + "pos": "名詞", + "pn": -0.184421 + }, + { + "surface": "変体仮名", + "readging": "へんたいがな", + "pos": "名詞", + "pn": -0.184458 + }, + { + "surface": "行く年", + "readging": "ゆくとし", + "pos": "名詞", + "pn": -0.184469 + }, + { + "surface": "調薬", + "readging": "ちょうやく", + "pos": "名詞", + "pn": -0.184477 + }, + { + "surface": "雪雲", + "readging": "ゆきぐも", + "pos": "名詞", + "pn": -0.184479 + }, + { + "surface": "亜高木", + "readging": "あこうぼく", + "pos": "名詞", + "pn": -0.184483 + }, + { + "surface": "西遊", + "readging": "せいゆう", + "pos": "名詞", + "pn": -0.184525 + }, + { + "surface": "迎賓", + "readging": "げいひん", + "pos": "名詞", + "pn": -0.18453 + }, + { + "surface": "同視", + "readging": "どうし", + "pos": "名詞", + "pn": -0.184548 + }, + { + "surface": "メトロ", + "readging": "メトロ", + "pos": "名詞", + "pn": -0.184571 + }, + { + "surface": "北辰", + "readging": "ほくしん", + "pos": "名詞", + "pn": -0.184578 + }, + { + "surface": "悲話", + "readging": "ひわ", + "pos": "名詞", + "pn": -0.18458 + }, + { + "surface": "プランニング", + "readging": "プランニング", + "pos": "名詞", + "pn": -0.184581 + }, + { + "surface": "地水火風", + "readging": "ちすいかふう", + "pos": "名詞", + "pn": -0.184582 + }, + { + "surface": "偽り", + "readging": "いつわり", + "pos": "名詞", + "pn": -0.184584 + }, + { + "surface": "百年", + "readging": "ひゃくねん", + "pos": "名詞", + "pn": -0.184593 + }, + { + "surface": "尊", + "readging": "みこと", + "pos": "名詞", + "pn": -0.184598 + }, + { + "surface": "垂乳根", + "readging": "たらちね", + "pos": "名詞", + "pn": -0.184602 + }, + { + "surface": "摂する", + "readging": "せっする", + "pos": "動詞", + "pn": -0.184618 + }, + { + "surface": "口授", + "readging": "こうじゅ", + "pos": "名詞", + "pn": -0.184647 + }, + { + "surface": "献酬", + "readging": "けんしゅう", + "pos": "名詞", + "pn": -0.184651 + }, + { + "surface": "代決", + "readging": "だいけつ", + "pos": "名詞", + "pn": -0.1847 + }, + { + "surface": "暗渠排水", + "readging": "あんきょはいすい", + "pos": "名詞", + "pn": -0.184744 + }, + { + "surface": "手取り", + "readging": "てとり", + "pos": "名詞", + "pn": -0.18475 + }, + { + "surface": "水団", + "readging": "すいとん", + "pos": "名詞", + "pn": -0.184756 + }, + { + "surface": "物詣", + "readging": "ものもうで", + "pos": "名詞", + "pn": -0.184762 + }, + { + "surface": "激浪", + "readging": "げきろう", + "pos": "名詞", + "pn": -0.184763 + }, + { + "surface": "持参金", + "readging": "じさんきん", + "pos": "名詞", + "pn": -0.184772 + }, + { + "surface": "発問", + "readging": "はつもん", + "pos": "名詞", + "pn": -0.184773 + }, + { + "surface": "薄模様", + "readging": "うすもよう", + "pos": "名詞", + "pn": -0.184775 + }, + { + "surface": "得票", + "readging": "とくひょう", + "pos": "名詞", + "pn": -0.184786 + }, + { + "surface": "照降り", + "readging": "てりふり", + "pos": "名詞", + "pn": -0.184787 + }, + { + "surface": "寂然", + "readging": "せきぜん", + "pos": "名詞", + "pn": -0.184788 + }, + { + "surface": "寂然", + "readging": "じゃくねん", + "pos": "名詞", + "pn": -0.184788 + }, + { + "surface": "一族", + "readging": "いちぞく", + "pos": "名詞", + "pn": -0.184826 + }, + { + "surface": "吹寄せ", + "readging": "ふきよせ", + "pos": "名詞", + "pn": -0.184827 + }, + { + "surface": "同期", + "readging": "どうき", + "pos": "名詞", + "pn": -0.18484 + }, + { + "surface": "貞淑", + "readging": "ていしゅく", + "pos": "名詞", + "pn": -0.184854 + }, + { + "surface": "軍国", + "readging": "ぐんこく", + "pos": "名詞", + "pn": -0.184864 + }, + { + "surface": "絵図", + "readging": "えず", + "pos": "名詞", + "pn": -0.18491 + }, + { + "surface": "大経師", + "readging": "だいきょうじ", + "pos": "名詞", + "pn": -0.184927 + }, + { + "surface": "プライバシー", + "readging": "プライバシー", + "pos": "名詞", + "pn": -0.184941 + }, + { + "surface": "勝気", + "readging": "かちき", + "pos": "名詞", + "pn": -0.184946 + }, + { + "surface": "多産", + "readging": "たさん", + "pos": "名詞", + "pn": -0.184947 + }, + { + "surface": "無声", + "readging": "むせい", + "pos": "名詞", + "pn": -0.184971 + }, + { + "surface": "列立", + "readging": "れつりつ", + "pos": "名詞", + "pn": -0.184974 + }, + { + "surface": "正眼", + "readging": "せいがん", + "pos": "名詞", + "pn": -0.184975 + }, + { + "surface": "忍び音", + "readging": "しのびね", + "pos": "名詞", + "pn": -0.184979 + }, + { + "surface": "呼込む", + "readging": "よびこむ", + "pos": "動詞", + "pn": -0.184983 + }, + { + "surface": "呼入れる", + "readging": "よびいれる", + "pos": "動詞", + "pn": -0.184983 + }, + { + "surface": "隠し味", + "readging": "かくしあじ", + "pos": "名詞", + "pn": -0.185022 + }, + { + "surface": "型通り", + "readging": "かたどおり", + "pos": "名詞", + "pn": -0.185031 + }, + { + "surface": "組頭", + "readging": "くみがしら", + "pos": "名詞", + "pn": -0.185044 + }, + { + "surface": "南京袋", + "readging": "なんきんぶくろ", + "pos": "名詞", + "pn": -0.185052 + }, + { + "surface": "町方", + "readging": "まちかた", + "pos": "名詞", + "pn": -0.185071 + }, + { + "surface": "衣紋掛", + "readging": "えもんかけ", + "pos": "名詞", + "pn": -0.18511 + }, + { + "surface": "官等", + "readging": "かんとう", + "pos": "名詞", + "pn": -0.185111 + }, + { + "surface": "轟く", + "readging": "とどろく", + "pos": "動詞", + "pn": -0.18514 + }, + { + "surface": "含水炭素", + "readging": "がんすいたんそ", + "pos": "名詞", + "pn": -0.18515 + }, + { + "surface": "万策", + "readging": "ばんさく", + "pos": "名詞", + "pn": -0.185158 + }, + { + "surface": "ヘクタール", + "readging": "ヘクタール", + "pos": "名詞", + "pn": -0.185159 + }, + { + "surface": "割烹", + "readging": "かっぽう", + "pos": "名詞", + "pn": -0.185159 + }, + { + "surface": "立憲", + "readging": "りっけん", + "pos": "名詞", + "pn": -0.185178 + }, + { + "surface": "私兵", + "readging": "しへい", + "pos": "名詞", + "pn": -0.185211 + }, + { + "surface": "勅使", + "readging": "ちょくし", + "pos": "名詞", + "pn": -0.185245 + }, + { + "surface": "小休止", + "readging": "しょうきゅうし", + "pos": "名詞", + "pn": -0.185261 + }, + { + "surface": "違憲", + "readging": "いけん", + "pos": "名詞", + "pn": -0.185277 + }, + { + "surface": "運否天賦", + "readging": "うんぷてんぷ", + "pos": "名詞", + "pn": -0.185285 + }, + { + "surface": "風儀", + "readging": "ふうぎ", + "pos": "名詞", + "pn": -0.185286 + }, + { + "surface": "可否", + "readging": "かひ", + "pos": "名詞", + "pn": -0.185291 + }, + { + "surface": "文典", + "readging": "ぶんてん", + "pos": "名詞", + "pn": -0.185331 + }, + { + "surface": "来店", + "readging": "らいてん", + "pos": "名詞", + "pn": -0.185339 + }, + { + "surface": "口籠る", + "readging": "くちごもる", + "pos": "動詞", + "pn": -0.185348 + }, + { + "surface": "禁治産", + "readging": "きんちさん", + "pos": "名詞", + "pn": -0.185391 + }, + { + "surface": "子役", + "readging": "こやく", + "pos": "名詞", + "pn": -0.185404 + }, + { + "surface": "購読", + "readging": "こうどく", + "pos": "名詞", + "pn": -0.185415 + }, + { + "surface": "乳白色", + "readging": "にゅうはくしょく", + "pos": "名詞", + "pn": -0.185427 + }, + { + "surface": "菅薦", + "readging": "すがごも", + "pos": "名詞", + "pn": -0.185428 + }, + { + "surface": "夢枕", + "readging": "ゆめまくら", + "pos": "名詞", + "pn": -0.18543 + }, + { + "surface": "藩学", + "readging": "はんがく", + "pos": "名詞", + "pn": -0.18543 + }, + { + "surface": "迎え酒", + "readging": "むかえざけ", + "pos": "名詞", + "pn": -0.185445 + }, + { + "surface": "送別", + "readging": "そうべつ", + "pos": "名詞", + "pn": -0.185458 + }, + { + "surface": "半可通", + "readging": "はんかつう", + "pos": "名詞", + "pn": -0.185461 + }, + { + "surface": "辻堂", + "readging": "つじどう", + "pos": "名詞", + "pn": -0.185469 + }, + { + "surface": "阿修羅", + "readging": "あしゅら", + "pos": "名詞", + "pn": -0.185474 + }, + { + "surface": "石蝋", + "readging": "せきろう", + "pos": "名詞", + "pn": -0.185482 + }, + { + "surface": "孫娘", + "readging": "まごむすめ", + "pos": "名詞", + "pn": -0.185485 + }, + { + "surface": "でんと", + "readging": "でんと", + "pos": "副詞", + "pn": -0.185492 + }, + { + "surface": "屋根船", + "readging": "やねぶね", + "pos": "名詞", + "pn": -0.185495 + }, + { + "surface": "外灯", + "readging": "がいとう", + "pos": "名詞", + "pn": -0.185517 + }, + { + "surface": "セツルメント", + "readging": "セツルメント", + "pos": "名詞", + "pn": -0.185528 + }, + { + "surface": "二の舞", + "readging": "にのまい", + "pos": "名詞", + "pn": -0.185538 + }, + { + "surface": "鳴き交す", + "readging": "なきかわす", + "pos": "動詞", + "pn": -0.185569 + }, + { + "surface": "オフィス", + "readging": "オフィス", + "pos": "名詞", + "pn": -0.18557 + }, + { + "surface": "業態", + "readging": "ぎょうたい", + "pos": "名詞", + "pn": -0.185573 + }, + { + "surface": "細胞分裂", + "readging": "さいぼうぶんれつ", + "pos": "名詞", + "pn": -0.185578 + }, + { + "surface": "隻語", + "readging": "せきご", + "pos": "名詞", + "pn": -0.185581 + }, + { + "surface": "受身", + "readging": "うけみ", + "pos": "名詞", + "pn": -0.18559 + }, + { + "surface": "恋仲", + "readging": "こいなか", + "pos": "名詞", + "pn": -0.185616 + }, + { + "surface": "香味", + "readging": "こうゆ", + "pos": "名詞", + "pn": -0.185617 + }, + { + "surface": "ウインナー ソーセージ", + "readging": "ウインナー ソーセージ", + "pos": "名詞", + "pn": -0.185619 + }, + { + "surface": "照映える", + "readging": "てりはえる", + "pos": "動詞", + "pn": -0.185638 + }, + { + "surface": "ぶち壊す", + "readging": "ぶちこわす", + "pos": "動詞", + "pn": -0.185652 + }, + { + "surface": "白玉椿", + "readging": "しらたまつばき", + "pos": "名詞", + "pn": -0.185653 + }, + { + "surface": "沃野", + "readging": "よくや", + "pos": "名詞", + "pn": -0.185663 + }, + { + "surface": "金穴", + "readging": "きんけつ", + "pos": "名詞", + "pn": -0.185668 + }, + { + "surface": "透綾", + "readging": "すきや", + "pos": "名詞", + "pn": -0.185677 + }, + { + "surface": "羅列", + "readging": "られつ", + "pos": "名詞", + "pn": -0.18569 + }, + { + "surface": "党争", + "readging": "とうそう", + "pos": "名詞", + "pn": -0.185697 + }, + { + "surface": "泣ける", + "readging": "なける", + "pos": "動詞", + "pn": -0.185703 + }, + { + "surface": "耐圧", + "readging": "たいあつ", + "pos": "名詞", + "pn": -0.185704 + }, + { + "surface": "条規", + "readging": "じょうき", + "pos": "名詞", + "pn": -0.185704 + }, + { + "surface": "国璽尚書", + "readging": "こくじしょうしょ", + "pos": "名詞", + "pn": -0.185738 + }, + { + "surface": "傍受", + "readging": "ぼうじゅ", + "pos": "名詞", + "pn": -0.185781 + }, + { + "surface": "画幅", + "readging": "がふく", + "pos": "名詞", + "pn": -0.185783 + }, + { + "surface": "第二人称", + "readging": "だいににんしょう", + "pos": "名詞", + "pn": -0.185798 + }, + { + "surface": "セッター", + "readging": "セッター", + "pos": "名詞", + "pn": -0.185839 + }, + { + "surface": "行暮れる", + "readging": "ゆきくれる", + "pos": "動詞", + "pn": -0.185839 + }, + { + "surface": "君臨", + "readging": "くんりん", + "pos": "名詞", + "pn": -0.18584 + }, + { + "surface": "面輪", + "readging": "おもわ", + "pos": "名詞", + "pn": -0.185845 + }, + { + "surface": "油屋", + "readging": "あぶらや", + "pos": "名詞", + "pn": -0.18585 + }, + { + "surface": "モンスーン", + "readging": "モンスーン", + "pos": "名詞", + "pn": -0.185903 + }, + { + "surface": "外編", + "readging": "がいへん", + "pos": "名詞", + "pn": -0.185933 + }, + { + "surface": "仮葬", + "readging": "かそう", + "pos": "名詞", + "pn": -0.18595 + }, + { + "surface": "試航", + "readging": "しこう", + "pos": "名詞", + "pn": -0.185957 + }, + { + "surface": "双発", + "readging": "そうはつ", + "pos": "名詞", + "pn": -0.185965 + }, + { + "surface": "ごり押し", + "readging": "ごりおし", + "pos": "名詞", + "pn": -0.185978 + }, + { + "surface": "喪家", + "readging": "そうか", + "pos": "名詞", + "pn": -0.185982 + }, + { + "surface": "天竺牡丹", + "readging": "てんじくぼたん", + "pos": "名詞", + "pn": -0.18599 + }, + { + "surface": "毳立つ", + "readging": "けばだつ", + "pos": "動詞", + "pn": -0.185992 + }, + { + "surface": "緘する", + "readging": "かんする", + "pos": "動詞", + "pn": -0.185996 + }, + { + "surface": "BHC", + "readging": "ビーエイチシー", + "pos": "名詞", + "pn": -0.186006 + }, + { + "surface": "クオーター", + "readging": "クオーター", + "pos": "名詞", + "pn": -0.186011 + }, + { + "surface": "民俗", + "readging": "みんぞく", + "pos": "名詞", + "pn": -0.186014 + }, + { + "surface": "築造", + "readging": "ちくぞう", + "pos": "名詞", + "pn": -0.186015 + }, + { + "surface": "花冷え", + "readging": "はなびえ", + "pos": "名詞", + "pn": -0.186016 + }, + { + "surface": "相加平均", + "readging": "そうかへいきん", + "pos": "名詞", + "pn": -0.186018 + }, + { + "surface": "パイオニア", + "readging": "パイオニア", + "pos": "名詞", + "pn": -0.18602 + }, + { + "surface": "ちゃらんぽらん", + "readging": "ちゃらんぽらん", + "pos": "名詞", + "pn": -0.186059 + }, + { + "surface": "議席", + "readging": "ぎせき", + "pos": "名詞", + "pn": -0.186066 + }, + { + "surface": "鯨幕", + "readging": "くじらまく", + "pos": "名詞", + "pn": -0.186068 + }, + { + "surface": "神階", + "readging": "しんかい", + "pos": "名詞", + "pn": -0.186083 + }, + { + "surface": "退席", + "readging": "たいせき", + "pos": "名詞", + "pn": -0.186088 + }, + { + "surface": "間貸", + "readging": "まがし", + "pos": "名詞", + "pn": -0.186114 + }, + { + "surface": "各戸", + "readging": "かっこ", + "pos": "名詞", + "pn": -0.186114 + }, + { + "surface": "刻印", + "readging": "こくいん", + "pos": "名詞", + "pn": -0.186116 + }, + { + "surface": "正字", + "readging": "せいじ", + "pos": "名詞", + "pn": -0.186124 + }, + { + "surface": "母性", + "readging": "ぼせい", + "pos": "名詞", + "pn": -0.186126 + }, + { + "surface": "古漬", + "readging": "ふるづけ", + "pos": "名詞", + "pn": -0.186132 + }, + { + "surface": "面子", + "readging": "メンツ", + "pos": "名詞", + "pn": -0.186146 + }, + { + "surface": "誤植", + "readging": "ごしょく", + "pos": "名詞", + "pn": -0.186151 + }, + { + "surface": "御幸", + "readging": "みゆき", + "pos": "名詞", + "pn": -0.186152 + }, + { + "surface": "辛勝", + "readging": "しんしょう", + "pos": "名詞", + "pn": -0.186152 + }, + { + "surface": "茶入", + "readging": "ちゃいれ", + "pos": "名詞", + "pn": -0.186159 + }, + { + "surface": "屠牛", + "readging": "とぎゅう", + "pos": "名詞", + "pn": -0.186184 + }, + { + "surface": "下見板", + "readging": "したみいた", + "pos": "名詞", + "pn": -0.186192 + }, + { + "surface": "密雲", + "readging": "みつうん", + "pos": "名詞", + "pn": -0.186203 + }, + { + "surface": "乾性", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.186213 + }, + { + "surface": "食中り", + "readging": "しょくあたり", + "pos": "名詞", + "pn": -0.186221 + }, + { + "surface": "大切り", + "readging": "おおぎり", + "pos": "名詞", + "pn": -0.186237 + }, + { + "surface": "ウエア", + "readging": "ウエア", + "pos": "名詞", + "pn": -0.186254 + }, + { + "surface": "節米", + "readging": "せつまい", + "pos": "名詞", + "pn": -0.186261 + }, + { + "surface": "二子", + "readging": "ふたご", + "pos": "名詞", + "pn": -0.186277 + }, + { + "surface": "公邸", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.18628 + }, + { + "surface": "見変える", + "readging": "みかえる", + "pos": "動詞", + "pn": -0.186288 + }, + { + "surface": "入賞", + "readging": "にゅうしょう", + "pos": "名詞", + "pn": -0.186288 + }, + { + "surface": "経略", + "readging": "けいりゃく", + "pos": "名詞", + "pn": -0.186291 + }, + { + "surface": "徒立ち", + "readging": "かちだち", + "pos": "名詞", + "pn": -0.186301 + }, + { + "surface": "満目", + "readging": "まんもく", + "pos": "名詞", + "pn": -0.186325 + }, + { + "surface": "小変", + "readging": "しょうへん", + "pos": "名詞", + "pn": -0.186347 + }, + { + "surface": "シンクロトロン", + "readging": "シンクロトロン", + "pos": "名詞", + "pn": -0.186384 + }, + { + "surface": "ちくりと", + "readging": "ちくりと", + "pos": "副詞", + "pn": -0.186423 + }, + { + "surface": "射精", + "readging": "しゃせい", + "pos": "名詞", + "pn": -0.186438 + }, + { + "surface": "畳み込む", + "readging": "たたみこむ", + "pos": "動詞", + "pn": -0.186447 + }, + { + "surface": "雄竹", + "readging": "おだけ", + "pos": "名詞", + "pn": -0.186452 + }, + { + "surface": "裾捌き", + "readging": "すそさばき", + "pos": "名詞", + "pn": -0.186453 + }, + { + "surface": "寝息", + "readging": "ねいき", + "pos": "名詞", + "pn": -0.186463 + }, + { + "surface": "消散", + "readging": "しょうさん", + "pos": "名詞", + "pn": -0.186473 + }, + { + "surface": "朴歯", + "readging": "ほおば", + "pos": "名詞", + "pn": -0.186476 + }, + { + "surface": "八里半", + "readging": "はちりはん", + "pos": "名詞", + "pn": -0.186477 + }, + { + "surface": "厳父", + "readging": "げんぷ", + "pos": "名詞", + "pn": -0.186486 + }, + { + "surface": "水蜜", + "readging": "すいみつ", + "pos": "名詞", + "pn": -0.186492 + }, + { + "surface": "属性", + "readging": "ぞくせい", + "pos": "名詞", + "pn": -0.186505 + }, + { + "surface": "職人", + "readging": "しょくにん", + "pos": "名詞", + "pn": -0.186539 + }, + { + "surface": "でんき銅", + "readging": "でんきどう", + "pos": "名詞", + "pn": -0.186554 + }, + { + "surface": "食酢", + "readging": "しょくず", + "pos": "名詞", + "pn": -0.186565 + }, + { + "surface": "先日", + "readging": "せんじつ", + "pos": "名詞", + "pn": -0.186571 + }, + { + "surface": "全角", + "readging": "ぜんかく", + "pos": "名詞", + "pn": -0.186609 + }, + { + "surface": "旧年", + "readging": "きゅうねん", + "pos": "名詞", + "pn": -0.186622 + }, + { + "surface": "新版", + "readging": "しんぱん", + "pos": "名詞", + "pn": -0.186655 + }, + { + "surface": "シャンツェ", + "readging": "シャンツェ", + "pos": "名詞", + "pn": -0.186661 + }, + { + "surface": "笹身", + "readging": "ささみ", + "pos": "名詞", + "pn": -0.186662 + }, + { + "surface": "本手", + "readging": "ほんて", + "pos": "名詞", + "pn": -0.186688 + }, + { + "surface": "財用", + "readging": "ざいよう", + "pos": "名詞", + "pn": -0.18671 + }, + { + "surface": "居留地", + "readging": "きょりゅうち", + "pos": "名詞", + "pn": -0.186719 + }, + { + "surface": "持込む", + "readging": "もちこむ", + "pos": "動詞", + "pn": -0.186728 + }, + { + "surface": "聾者", + "readging": "ろうしゃ", + "pos": "名詞", + "pn": -0.186733 + }, + { + "surface": "夕日影", + "readging": "ゆうひ", + "pos": "名詞", + "pn": -0.186751 + }, + { + "surface": "数奇屋造", + "readging": "すきやづくり", + "pos": "名詞", + "pn": -0.186775 + }, + { + "surface": "闇屋", + "readging": "やみや", + "pos": "名詞", + "pn": -0.186781 + }, + { + "surface": "恋着", + "readging": "れんちゃく", + "pos": "名詞", + "pn": -0.186785 + }, + { + "surface": "銜める", + "readging": "くくめる", + "pos": "動詞", + "pn": -0.186794 + }, + { + "surface": "天地無用", + "readging": "てんちむよう", + "pos": "名詞", + "pn": -0.186818 + }, + { + "surface": "徴証", + "readging": "ちょうしょう", + "pos": "名詞", + "pn": -0.186825 + }, + { + "surface": "逆用", + "readging": "ぎゃくよう", + "pos": "名詞", + "pn": -0.186834 + }, + { + "surface": "正邪", + "readging": "せいじゃ", + "pos": "名詞", + "pn": -0.186849 + }, + { + "surface": "熊祭", + "readging": "くままつり", + "pos": "名詞", + "pn": -0.18686 + }, + { + "surface": "明徴", + "readging": "めいちょう", + "pos": "名詞", + "pn": -0.186865 + }, + { + "surface": "自由度", + "readging": "じゆうど", + "pos": "名詞", + "pn": -0.186866 + }, + { + "surface": "弾雨", + "readging": "だんう", + "pos": "名詞", + "pn": -0.186882 + }, + { + "surface": "デシ", + "readging": "デシ", + "pos": "名詞", + "pn": -0.186887 + }, + { + "surface": "ミリ", + "readging": "ミリ", + "pos": "名詞", + "pn": -0.186887 + }, + { + "surface": "同文", + "readging": "どうぶん", + "pos": "名詞", + "pn": -0.186926 + }, + { + "surface": "下屋", + "readging": "したや", + "pos": "名詞", + "pn": -0.186949 + }, + { + "surface": "奇習", + "readging": "きしゅう", + "pos": "名詞", + "pn": -0.186959 + }, + { + "surface": "金肥", + "readging": "きんぴ", + "pos": "名詞", + "pn": -0.186972 + }, + { + "surface": "黒衣", + "readging": "こくい", + "pos": "名詞", + "pn": -0.186988 + }, + { + "surface": "宝石", + "readging": "ほうせき", + "pos": "名詞", + "pn": -0.186997 + }, + { + "surface": "長堤", + "readging": "ちょうてい", + "pos": "名詞", + "pn": -0.187 + }, + { + "surface": "操觚", + "readging": "そうこ", + "pos": "名詞", + "pn": -0.18702 + }, + { + "surface": "古巣", + "readging": "ふるす", + "pos": "名詞", + "pn": -0.187023 + }, + { + "surface": "アドベンチャー", + "readging": "アドベンチャー", + "pos": "名詞", + "pn": -0.187035 + }, + { + "surface": "唐名", + "readging": "とうみょう", + "pos": "名詞", + "pn": -0.187054 + }, + { + "surface": "住慣れる", + "readging": "すみなれる", + "pos": "動詞", + "pn": -0.187059 + }, + { + "surface": "包金", + "readging": "つつみがね", + "pos": "名詞", + "pn": -0.187065 + }, + { + "surface": "韻脚", + "readging": "いんきゃく", + "pos": "名詞", + "pn": -0.187099 + }, + { + "surface": "翔破", + "readging": "しょうは", + "pos": "名詞", + "pn": -0.187101 + }, + { + "surface": "親署", + "readging": "しんしょ", + "pos": "名詞", + "pn": -0.187113 + }, + { + "surface": "悪平等", + "readging": "あくびょうどう", + "pos": "名詞", + "pn": -0.187127 + }, + { + "surface": "ちりちり", + "readging": "ちりちり", + "pos": "副詞", + "pn": -0.187134 + }, + { + "surface": "涼み台", + "readging": "すずみだい", + "pos": "名詞", + "pn": -0.18714 + }, + { + "surface": "のっぽ", + "readging": "のっぽ", + "pos": "名詞", + "pn": -0.187146 + }, + { + "surface": "三十六計", + "readging": "さんじゅうろっけい", + "pos": "名詞", + "pn": -0.18716 + }, + { + "surface": "長月", + "readging": "ながつき", + "pos": "名詞", + "pn": -0.187172 + }, + { + "surface": "原典", + "readging": "げんてん", + "pos": "名詞", + "pn": -0.187208 + }, + { + "surface": "役不足", + "readging": "やくぶそく", + "pos": "名詞", + "pn": -0.187209 + }, + { + "surface": "陣形", + "readging": "じんけい", + "pos": "名詞", + "pn": -0.187221 + }, + { + "surface": "フォーク ダンス", + "readging": "フォーク ダンス", + "pos": "名詞", + "pn": -0.187234 + }, + { + "surface": "糒", + "readging": "ほしい", + "pos": "名詞", + "pn": -0.187237 + }, + { + "surface": "議事堂", + "readging": "ぎじどう", + "pos": "名詞", + "pn": -0.187249 + }, + { + "surface": "遺習", + "readging": "いしゅう", + "pos": "名詞", + "pn": -0.187259 + }, + { + "surface": "略装", + "readging": "りゃくそう", + "pos": "名詞", + "pn": -0.187264 + }, + { + "surface": "武門", + "readging": "ぶもん", + "pos": "名詞", + "pn": -0.18728 + }, + { + "surface": "ページェント", + "readging": "ページェント", + "pos": "名詞", + "pn": -0.187292 + }, + { + "surface": "引力", + "readging": "いんりょく", + "pos": "名詞", + "pn": -0.187293 + }, + { + "surface": "瞭", + "readging": "りょう", + "pos": "名詞", + "pn": -0.187303 + }, + { + "surface": "ハプニング", + "readging": "ハプニング", + "pos": "名詞", + "pn": -0.187329 + }, + { + "surface": "法華宗", + "readging": "ほっけしゅう", + "pos": "名詞", + "pn": -0.187336 + }, + { + "surface": "鳴物入", + "readging": "なりものいり", + "pos": "名詞", + "pn": -0.18734 + }, + { + "surface": "暗色", + "readging": "あんしょく", + "pos": "名詞", + "pn": -0.187353 + }, + { + "surface": "後室", + "readging": "こうしつ", + "pos": "名詞", + "pn": -0.187353 + }, + { + "surface": "婿取り", + "readging": "むことり", + "pos": "名詞", + "pn": -0.187368 + }, + { + "surface": "県令", + "readging": "けんれい", + "pos": "名詞", + "pn": -0.187369 + }, + { + "surface": "長波", + "readging": "ちょうは", + "pos": "名詞", + "pn": -0.187391 + }, + { + "surface": "廟祀", + "readging": "びょうし", + "pos": "名詞", + "pn": -0.187401 + }, + { + "surface": "葉風", + "readging": "はかぜ", + "pos": "名詞", + "pn": -0.187405 + }, + { + "surface": "一糸", + "readging": "いっし", + "pos": "名詞", + "pn": -0.187411 + }, + { + "surface": "えて", + "readging": "えて", + "pos": "副詞", + "pn": -0.187443 + }, + { + "surface": "編年体", + "readging": "へんねんたい", + "pos": "名詞", + "pn": -0.187462 + }, + { + "surface": "玉将", + "readging": "ぎょくしょう", + "pos": "名詞", + "pn": -0.187472 + }, + { + "surface": "伝家", + "readging": "でんか", + "pos": "名詞", + "pn": -0.187481 + }, + { + "surface": "酔態", + "readging": "すいたい", + "pos": "名詞", + "pn": -0.187495 + }, + { + "surface": "尽未来", + "readging": "じんみらい", + "pos": "名詞", + "pn": -0.187502 + }, + { + "surface": "散敷く", + "readging": "ちりしく", + "pos": "動詞", + "pn": -0.187515 + }, + { + "surface": "排中律", + "readging": "はいちゅうりつ", + "pos": "名詞", + "pn": -0.187522 + }, + { + "surface": "終発", + "readging": "しゅうはつ", + "pos": "名詞", + "pn": -0.18753 + }, + { + "surface": "献納", + "readging": "けんのう", + "pos": "名詞", + "pn": -0.18755 + }, + { + "surface": "墨継ぎ", + "readging": "すみつぎ", + "pos": "名詞", + "pn": -0.187585 + }, + { + "surface": "易学", + "readging": "えきがく", + "pos": "名詞", + "pn": -0.187587 + }, + { + "surface": "遂行", + "readging": "すいこう", + "pos": "名詞", + "pn": -0.187594 + }, + { + "surface": "九天九地", + "readging": "きゅうてんきゅうち", + "pos": "名詞", + "pn": -0.187604 + }, + { + "surface": "義賊", + "readging": "ぎぞく", + "pos": "名詞", + "pn": -0.187643 + }, + { + "surface": "返納", + "readging": "へんのう", + "pos": "名詞", + "pn": -0.187656 + }, + { + "surface": "アベレージ", + "readging": "アベレージ", + "pos": "名詞", + "pn": -0.187664 + }, + { + "surface": "団交", + "readging": "だんこう", + "pos": "名詞", + "pn": -0.187688 + }, + { + "surface": "お節", + "readging": "おせち", + "pos": "名詞", + "pn": -0.187691 + }, + { + "surface": "廠", + "readging": "しょう", + "pos": "名詞", + "pn": -0.187703 + }, + { + "surface": "疾風", + "readging": "しっぷう", + "pos": "名詞", + "pn": -0.187703 + }, + { + "surface": "盲", + "readging": "めしい", + "pos": "名詞", + "pn": -0.187741 + }, + { + "surface": "従卒", + "readging": "じゅうそつ", + "pos": "名詞", + "pn": -0.187765 + }, + { + "surface": "ハンディキャップ", + "readging": "ハンディキャップ", + "pos": "名詞", + "pn": -0.187767 + }, + { + "surface": "呼戻す", + "readging": "よびもどす", + "pos": "動詞", + "pn": -0.187772 + }, + { + "surface": "涕涙", + "readging": "ているい", + "pos": "名詞", + "pn": -0.187775 + }, + { + "surface": "注進", + "readging": "ちゅうしん", + "pos": "名詞", + "pn": -0.187789 + }, + { + "surface": "鷹派", + "readging": "たかは", + "pos": "名詞", + "pn": -0.187799 + }, + { + "surface": "担任", + "readging": "たんにん", + "pos": "名詞", + "pn": -0.187809 + }, + { + "surface": "効率", + "readging": "こうりつ", + "pos": "名詞", + "pn": -0.187821 + }, + { + "surface": "年の市", + "readging": "としのいち", + "pos": "名詞", + "pn": -0.187827 + }, + { + "surface": "訓ずる", + "readging": "くんずる", + "pos": "動詞", + "pn": -0.187834 + }, + { + "surface": "派出", + "readging": "はしゅつ", + "pos": "名詞", + "pn": -0.187848 + }, + { + "surface": "宮門", + "readging": "きゅうもん", + "pos": "名詞", + "pn": -0.187859 + }, + { + "surface": "市域", + "readging": "しいき", + "pos": "名詞", + "pn": -0.187866 + }, + { + "surface": "分隊", + "readging": "ぶんたい", + "pos": "名詞", + "pn": -0.187907 + }, + { + "surface": "鉢叩", + "readging": "はちたたき", + "pos": "名詞", + "pn": -0.187914 + }, + { + "surface": "商標", + "readging": "しょうひょう", + "pos": "名詞", + "pn": -0.187959 + }, + { + "surface": "前半", + "readging": "ぜんはん", + "pos": "名詞", + "pn": -0.187962 + }, + { + "surface": "句柄", + "readging": "くがら", + "pos": "名詞", + "pn": -0.187966 + }, + { + "surface": "身銭", + "readging": "みぜに", + "pos": "名詞", + "pn": -0.187973 + }, + { + "surface": "林産", + "readging": "りんさん", + "pos": "名詞", + "pn": -0.187988 + }, + { + "surface": "激化", + "readging": "げっか", + "pos": "名詞", + "pn": -0.187999 + }, + { + "surface": "比例配分", + "readging": "ひれいはいぶん", + "pos": "名詞", + "pn": -0.188001 + }, + { + "surface": "一事", + "readging": "いちじ", + "pos": "名詞", + "pn": -0.188023 + }, + { + "surface": "白バイ", + "readging": "しろバイ", + "pos": "名詞", + "pn": -0.188026 + }, + { + "surface": "苗代水", + "readging": "なわしろ", + "pos": "名詞", + "pn": -0.188032 + }, + { + "surface": "枯山水", + "readging": "かれさんすい", + "pos": "名詞", + "pn": -0.188044 + }, + { + "surface": "恤兵", + "readging": "じゅっぺい", + "pos": "名詞", + "pn": -0.188046 + }, + { + "surface": "頸骨", + "readging": "けいこつ", + "pos": "名詞", + "pn": -0.188056 + }, + { + "surface": "輝岩", + "readging": "きがん", + "pos": "名詞", + "pn": -0.188068 + }, + { + "surface": "不撓", + "readging": "ふとう", + "pos": "名詞", + "pn": -0.188073 + }, + { + "surface": "断行", + "readging": "だんこう", + "pos": "名詞", + "pn": -0.188083 + }, + { + "surface": "生き血", + "readging": "いきち", + "pos": "名詞", + "pn": -0.188088 + }, + { + "surface": "模擬", + "readging": "もぎ", + "pos": "名詞", + "pn": -0.188134 + }, + { + "surface": "乱立", + "readging": "らんりつ", + "pos": "名詞", + "pn": -0.188139 + }, + { + "surface": "セロリ", + "readging": "セロリ", + "pos": "名詞", + "pn": -0.188158 + }, + { + "surface": "加水", + "readging": "かすい", + "pos": "名詞", + "pn": -0.18816 + }, + { + "surface": "透ける", + "readging": "すける", + "pos": "動詞", + "pn": -0.188161 + }, + { + "surface": "緊縮", + "readging": "きんしゅく", + "pos": "名詞", + "pn": -0.188163 + }, + { + "surface": "吠陀", + "readging": "ベーダ", + "pos": "名詞", + "pn": -0.188178 + }, + { + "surface": "早乙女", + "readging": "さおとめ", + "pos": "名詞", + "pn": -0.188216 + }, + { + "surface": "扁舟", + "readging": "へんしゅう", + "pos": "名詞", + "pn": -0.188251 + }, + { + "surface": "空車", + "readging": "くうしゃ", + "pos": "名詞", + "pn": -0.188257 + }, + { + "surface": "LPレコード", + "readging": "エルピー レコード", + "pos": "名詞", + "pn": -0.188282 + }, + { + "surface": "開題", + "readging": "かいだい", + "pos": "名詞", + "pn": -0.188289 + }, + { + "surface": "出場", + "readging": "しゅつじょう", + "pos": "名詞", + "pn": -0.188291 + }, + { + "surface": "右手", + "readging": "みぎて", + "pos": "名詞", + "pn": -0.1883 + }, + { + "surface": "冷血動物", + "readging": "れいけつどうぶつ", + "pos": "名詞", + "pn": -0.188308 + }, + { + "surface": "寝そびれる", + "readging": "ねそびれる", + "pos": "動詞", + "pn": -0.18831 + }, + { + "surface": "国主大名", + "readging": "こくしゅだいみょう", + "pos": "名詞", + "pn": -0.188312 + }, + { + "surface": "ずらりと", + "readging": "ずらりと", + "pos": "副詞", + "pn": -0.188313 + }, + { + "surface": "話芸", + "readging": "わげい", + "pos": "名詞", + "pn": -0.188321 + }, + { + "surface": "血書", + "readging": "けっしょ", + "pos": "名詞", + "pn": -0.188327 + }, + { + "surface": "筆禍", + "readging": "ひっか", + "pos": "名詞", + "pn": -0.188332 + }, + { + "surface": "心変り", + "readging": "こころがわり", + "pos": "名詞", + "pn": -0.188347 + }, + { + "surface": "勅旨", + "readging": "ちょくし", + "pos": "名詞", + "pn": -0.188357 + }, + { + "surface": "絶望", + "readging": "ぜつぼう", + "pos": "名詞", + "pn": -0.188361 + }, + { + "surface": "額面割れ", + "readging": "がくめんわれ", + "pos": "名詞", + "pn": -0.188362 + }, + { + "surface": "純綿", + "readging": "じゅんめん", + "pos": "名詞", + "pn": -0.188384 + }, + { + "surface": "殺意", + "readging": "さつい", + "pos": "名詞", + "pn": -0.18842 + }, + { + "surface": "産業構造", + "readging": "さんぎょうこうぞう", + "pos": "名詞", + "pn": -0.188426 + }, + { + "surface": "跛", + "readging": "ちんば", + "pos": "名詞", + "pn": -0.188433 + }, + { + "surface": "空輸", + "readging": "くうゆ", + "pos": "名詞", + "pn": -0.188437 + }, + { + "surface": "芸風", + "readging": "げいふう", + "pos": "名詞", + "pn": -0.18844 + }, + { + "surface": "強み", + "readging": "つよみ", + "pos": "名詞", + "pn": -0.188452 + }, + { + "surface": "ドラマ", + "readging": "ドラマ", + "pos": "名詞", + "pn": -0.188471 + }, + { + "surface": "後戻り", + "readging": "あともどり", + "pos": "名詞", + "pn": -0.18851 + }, + { + "surface": "軍曹", + "readging": "ぐんそう", + "pos": "名詞", + "pn": -0.188533 + }, + { + "surface": "社是", + "readging": "しゃぜ", + "pos": "名詞", + "pn": -0.188534 + }, + { + "surface": "論述", + "readging": "ろんじゅつ", + "pos": "名詞", + "pn": -0.188564 + }, + { + "surface": "どら声", + "readging": "どらごえ", + "pos": "名詞", + "pn": -0.188608 + }, + { + "surface": "パンジー", + "readging": "パンジー", + "pos": "名詞", + "pn": -0.188612 + }, + { + "surface": "エア", + "readging": "エア", + "pos": "名詞", + "pn": -0.188625 + }, + { + "surface": "求人", + "readging": "きゅうじん", + "pos": "名詞", + "pn": -0.188628 + }, + { + "surface": "二番煎じ", + "readging": "にばんせんじ", + "pos": "名詞", + "pn": -0.188634 + }, + { + "surface": "窃取", + "readging": "せっしゅ", + "pos": "名詞", + "pn": -0.188648 + }, + { + "surface": "自衛", + "readging": "じえい", + "pos": "名詞", + "pn": -0.188651 + }, + { + "surface": "消耗品", + "readging": "しょうもうひん", + "pos": "名詞", + "pn": -0.188659 + }, + { + "surface": "仮寓", + "readging": "かぐう", + "pos": "名詞", + "pn": -0.188663 + }, + { + "surface": "読図", + "readging": "どくず", + "pos": "名詞", + "pn": -0.188672 + }, + { + "surface": "技術者", + "readging": "ぎじゅつしゃ", + "pos": "名詞", + "pn": -0.188677 + }, + { + "surface": "顔触れ", + "readging": "かおぶれ", + "pos": "名詞", + "pn": -0.188693 + }, + { + "surface": "演舞", + "readging": "えんぶ", + "pos": "名詞", + "pn": -0.188703 + }, + { + "surface": "皮装", + "readging": "かわそう", + "pos": "名詞", + "pn": -0.188713 + }, + { + "surface": "大鳥", + "readging": "おおとり", + "pos": "名詞", + "pn": -0.18874 + }, + { + "surface": "補注", + "readging": "ほちゅう", + "pos": "名詞", + "pn": -0.188744 + }, + { + "surface": "臘八", + "readging": "ろうはち", + "pos": "名詞", + "pn": -0.188784 + }, + { + "surface": "役僧", + "readging": "やくそう", + "pos": "名詞", + "pn": -0.18879 + }, + { + "surface": "小役人", + "readging": "こやくにん", + "pos": "名詞", + "pn": -0.188813 + }, + { + "surface": "耳朶", + "readging": "じだ", + "pos": "名詞", + "pn": -0.188821 + }, + { + "surface": "お店者", + "readging": "おたなもの", + "pos": "名詞", + "pn": -0.188822 + }, + { + "surface": "内輪揉め", + "readging": "うちわもめ", + "pos": "名詞", + "pn": -0.188824 + }, + { + "surface": "サイト", + "readging": "サイト", + "pos": "名詞", + "pn": -0.188873 + }, + { + "surface": "下取り", + "readging": "したどり", + "pos": "名詞", + "pn": -0.188875 + }, + { + "surface": "山雨", + "readging": "さんう", + "pos": "名詞", + "pn": -0.188886 + }, + { + "surface": "教会", + "readging": "きょうかい", + "pos": "名詞", + "pn": -0.188899 + }, + { + "surface": "ディクテーション", + "readging": "ディクテーション", + "pos": "名詞", + "pn": -0.188903 + }, + { + "surface": "風災", + "readging": "ふうさい", + "pos": "名詞", + "pn": -0.188904 + }, + { + "surface": "男坂", + "readging": "おとこざか", + "pos": "名詞", + "pn": -0.188935 + }, + { + "surface": "フォント", + "readging": "フォント", + "pos": "名詞", + "pn": -0.188961 + }, + { + "surface": "高菜", + "readging": "たかな", + "pos": "名詞", + "pn": -0.188961 + }, + { + "surface": "電機", + "readging": "でんき", + "pos": "名詞", + "pn": -0.188972 + }, + { + "surface": "ドレス", + "readging": "ドレス", + "pos": "名詞", + "pn": -0.188973 + }, + { + "surface": "大八車", + "readging": "だいはちぐるま", + "pos": "名詞", + "pn": -0.188973 + }, + { + "surface": "こうなご", + "readging": "こうなご", + "pos": "名詞", + "pn": -0.188977 + }, + { + "surface": "白磁", + "readging": "はくじ", + "pos": "名詞", + "pn": -0.188985 + }, + { + "surface": "正員", + "readging": "せいいん", + "pos": "名詞", + "pn": -0.188999 + }, + { + "surface": "棒グラフ", + "readging": "ぼうグラフ", + "pos": "名詞", + "pn": -0.189017 + }, + { + "surface": "スパーク", + "readging": "スパーク", + "pos": "名詞", + "pn": -0.189017 + }, + { + "surface": "克復", + "readging": "こくふく", + "pos": "名詞", + "pn": -0.189036 + }, + { + "surface": "発色", + "readging": "はっしょく", + "pos": "名詞", + "pn": -0.189038 + }, + { + "surface": "冷夏", + "readging": "れいか", + "pos": "名詞", + "pn": -0.189046 + }, + { + "surface": "副因", + "readging": "ふくいん", + "pos": "名詞", + "pn": -0.18907 + }, + { + "surface": "高堂", + "readging": "こうどう", + "pos": "名詞", + "pn": -0.189072 + }, + { + "surface": "胡蝶", + "readging": "こちょう", + "pos": "名詞", + "pn": -0.189074 + }, + { + "surface": "筆太", + "readging": "ふでぶと", + "pos": "名詞", + "pn": -0.189087 + }, + { + "surface": "前頭", + "readging": "まえがしら", + "pos": "名詞", + "pn": -0.189099 + }, + { + "surface": "伸び率", + "readging": "のびりつ", + "pos": "名詞", + "pn": -0.189115 + }, + { + "surface": "スー", + "readging": "スー", + "pos": "名詞", + "pn": -0.189135 + }, + { + "surface": "組敷く", + "readging": "くみしく", + "pos": "動詞", + "pn": -0.189136 + }, + { + "surface": "個物", + "readging": "こぶつ", + "pos": "名詞", + "pn": -0.189139 + }, + { + "surface": "代金引換", + "readging": "だいきんひきかえ", + "pos": "名詞", + "pn": -0.189146 + }, + { + "surface": "赤道祭", + "readging": "せきどうさい", + "pos": "名詞", + "pn": -0.18915 + }, + { + "surface": "鼠算", + "readging": "ねずみざん", + "pos": "名詞", + "pn": -0.189168 + }, + { + "surface": "売手市場", + "readging": "うりてしじょう", + "pos": "名詞", + "pn": -0.189172 + }, + { + "surface": "密行", + "readging": "みっこう", + "pos": "名詞", + "pn": -0.189198 + }, + { + "surface": "梅林", + "readging": "ばいりん", + "pos": "名詞", + "pn": -0.18923 + }, + { + "surface": "古色", + "readging": "こしょく", + "pos": "名詞", + "pn": -0.18925 + }, + { + "surface": "手植", + "readging": "てうえ", + "pos": "名詞", + "pn": -0.189283 + }, + { + "surface": "共闘", + "readging": "きょうとう", + "pos": "名詞", + "pn": -0.189289 + }, + { + "surface": "ほごす", + "readging": "ほごす", + "pos": "動詞", + "pn": -0.189318 + }, + { + "surface": "ぎっちょ", + "readging": "ぎっちょ", + "pos": "名詞", + "pn": -0.189326 + }, + { + "surface": "生家", + "readging": "せいか", + "pos": "名詞", + "pn": -0.189328 + }, + { + "surface": "食休み", + "readging": "しょくやすみ", + "pos": "名詞", + "pn": -0.189329 + }, + { + "surface": "挙る", + "readging": "こぞる", + "pos": "動詞", + "pn": -0.189344 + }, + { + "surface": "カウボーイ", + "readging": "カウボーイ", + "pos": "名詞", + "pn": -0.189344 + }, + { + "surface": "カリフラワー", + "readging": "カリフラワー", + "pos": "名詞", + "pn": -0.189359 + }, + { + "surface": "泣落し", + "readging": "なきおとし", + "pos": "名詞", + "pn": -0.189367 + }, + { + "surface": "腕ずく", + "readging": "うでずく", + "pos": "名詞", + "pn": -0.189423 + }, + { + "surface": "留山", + "readging": "とめやま", + "pos": "名詞", + "pn": -0.189425 + }, + { + "surface": "初速", + "readging": "しょそく", + "pos": "名詞", + "pn": -0.189441 + }, + { + "surface": "初日", + "readging": "しょにち", + "pos": "名詞", + "pn": -0.189449 + }, + { + "surface": "念ずる", + "readging": "ねんずる", + "pos": "動詞", + "pn": -0.189449 + }, + { + "surface": "寒梅", + "readging": "かんばい", + "pos": "名詞", + "pn": -0.189481 + }, + { + "surface": "三人", + "readging": "みたり", + "pos": "名詞", + "pn": -0.189497 + }, + { + "surface": "自利", + "readging": "じり", + "pos": "名詞", + "pn": -0.189498 + }, + { + "surface": "富農", + "readging": "ふのう", + "pos": "名詞", + "pn": -0.189512 + }, + { + "surface": "兵書", + "readging": "へいしょ", + "pos": "名詞", + "pn": -0.189513 + }, + { + "surface": "出船", + "readging": "でふね", + "pos": "名詞", + "pn": -0.18952 + }, + { + "surface": "蒸らす", + "readging": "むらす", + "pos": "動詞", + "pn": -0.189522 + }, + { + "surface": "上昇", + "readging": "じょうしょう", + "pos": "名詞", + "pn": -0.189547 + }, + { + "surface": "青刈", + "readging": "あおがり", + "pos": "名詞", + "pn": -0.189558 + }, + { + "surface": "観劇", + "readging": "かんげき", + "pos": "名詞", + "pn": -0.189578 + }, + { + "surface": "キャバレー", + "readging": "キャバレー", + "pos": "名詞", + "pn": -0.18958 + }, + { + "surface": "熟年", + "readging": "じゅくねん", + "pos": "名詞", + "pn": -0.189586 + }, + { + "surface": "首っ引き", + "readging": "くびっぴき", + "pos": "名詞", + "pn": -0.189588 + }, + { + "surface": "劇化", + "readging": "げきか", + "pos": "名詞", + "pn": -0.189609 + }, + { + "surface": "曲学阿世", + "readging": "きょくがくあせい", + "pos": "名詞", + "pn": -0.189615 + }, + { + "surface": "骨肉", + "readging": "こつにく", + "pos": "名詞", + "pn": -0.189617 + }, + { + "surface": "ベンベルグ", + "readging": "ベンベルグ", + "pos": "名詞", + "pn": -0.189629 + }, + { + "surface": "無宿", + "readging": "むしゅく", + "pos": "名詞", + "pn": -0.189671 + }, + { + "surface": "定住", + "readging": "ていじゅう", + "pos": "名詞", + "pn": -0.189672 + }, + { + "surface": "滞積", + "readging": "たいせき", + "pos": "名詞", + "pn": -0.189684 + }, + { + "surface": "培養基", + "readging": "ばいようき", + "pos": "名詞", + "pn": -0.189719 + }, + { + "surface": "皇霊", + "readging": "こうれい", + "pos": "名詞", + "pn": -0.189725 + }, + { + "surface": "委員", + "readging": "いいん", + "pos": "名詞", + "pn": -0.189725 + }, + { + "surface": "直答", + "readging": "ちょくとう", + "pos": "名詞", + "pn": -0.189744 + }, + { + "surface": "夏草", + "readging": "なつくさ", + "pos": "名詞", + "pn": -0.189751 + }, + { + "surface": "検案書", + "readging": "けんあんしょ", + "pos": "名詞", + "pn": -0.189753 + }, + { + "surface": "コーデュロイ", + "readging": "コーデュロイ", + "pos": "名詞", + "pn": -0.189754 + }, + { + "surface": "紅蜀葵", + "readging": "こうしょっき", + "pos": "名詞", + "pn": -0.189778 + }, + { + "surface": "中編", + "readging": "ちゅうへん", + "pos": "名詞", + "pn": -0.189799 + }, + { + "surface": "病者", + "readging": "びょうしゃ", + "pos": "名詞", + "pn": -0.189807 + }, + { + "surface": "出陳", + "readging": "しゅっちん", + "pos": "名詞", + "pn": -0.189816 + }, + { + "surface": "休刊", + "readging": "きゅうかん", + "pos": "名詞", + "pn": -0.189827 + }, + { + "surface": "賞与", + "readging": "しょうよ", + "pos": "名詞", + "pn": -0.18986 + }, + { + "surface": "雅名", + "readging": "がめい", + "pos": "名詞", + "pn": -0.189862 + }, + { + "surface": "貸主", + "readging": "かしぬし", + "pos": "名詞", + "pn": -0.189878 + }, + { + "surface": "フラン", + "readging": "フラン", + "pos": "名詞", + "pn": -0.189879 + }, + { + "surface": "それなり", + "readging": "それなり", + "pos": "名詞", + "pn": -0.18989 + }, + { + "surface": "部将", + "readging": "ぶしょう", + "pos": "名詞", + "pn": -0.189893 + }, + { + "surface": "唐詩", + "readging": "とうし", + "pos": "名詞", + "pn": -0.189907 + }, + { + "surface": "ブレザー コート", + "readging": "ブレザー コート", + "pos": "名詞", + "pn": -0.189917 + }, + { + "surface": "公道", + "readging": "こうどう", + "pos": "名詞", + "pn": -0.189937 + }, + { + "surface": "官能", + "readging": "かんのう", + "pos": "名詞", + "pn": -0.189949 + }, + { + "surface": "人代名詞", + "readging": "じんだいめいし", + "pos": "名詞", + "pn": -0.189962 + }, + { + "surface": "別口", + "readging": "べつくち", + "pos": "名詞", + "pn": -0.189987 + }, + { + "surface": "神葬", + "readging": "しんそう", + "pos": "名詞", + "pn": -0.189997 + }, + { + "surface": "応射", + "readging": "おうしゃ", + "pos": "名詞", + "pn": -0.190029 + }, + { + "surface": "松濤", + "readging": "しょうとう", + "pos": "名詞", + "pn": -0.190057 + }, + { + "surface": "交戦", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.190078 + }, + { + "surface": "割賦", + "readging": "かっぷ", + "pos": "名詞", + "pn": -0.190084 + }, + { + "surface": "来年", + "readging": "らいねん", + "pos": "名詞", + "pn": -0.190089 + }, + { + "surface": "扁額", + "readging": "へんがく", + "pos": "名詞", + "pn": -0.190092 + }, + { + "surface": "プロモーター", + "readging": "プロモーター", + "pos": "名詞", + "pn": -0.190097 + }, + { + "surface": "合弁", + "readging": "ごうべん", + "pos": "名詞", + "pn": -0.190116 + }, + { + "surface": "謁見", + "readging": "えっけん", + "pos": "名詞", + "pn": -0.190124 + }, + { + "surface": "負戦", + "readging": "まけいくさ", + "pos": "名詞", + "pn": -0.190133 + }, + { + "surface": "五つ紋", + "readging": "いつつもん", + "pos": "名詞", + "pn": -0.190197 + }, + { + "surface": "雪娘", + "readging": "ゆきむすめ", + "pos": "名詞", + "pn": -0.190204 + }, + { + "surface": "合印", + "readging": "あいじるし", + "pos": "名詞", + "pn": -0.190208 + }, + { + "surface": "駅路", + "readging": "えきろ", + "pos": "名詞", + "pn": -0.190216 + }, + { + "surface": "潤む", + "readging": "うるむ", + "pos": "動詞", + "pn": -0.19023 + }, + { + "surface": "見付き", + "readging": "みつき", + "pos": "名詞", + "pn": -0.190232 + }, + { + "surface": "無涯", + "readging": "むがい", + "pos": "名詞", + "pn": -0.190246 + }, + { + "surface": "刺殺す", + "readging": "さしころす", + "pos": "動詞", + "pn": -0.190257 + }, + { + "surface": "採否", + "readging": "さいひ", + "pos": "名詞", + "pn": -0.19026 + }, + { + "surface": "協議", + "readging": "きょうぎ", + "pos": "名詞", + "pn": -0.190272 + }, + { + "surface": "ぱくりと", + "readging": "ぱくりと", + "pos": "副詞", + "pn": -0.190273 + }, + { + "surface": "泡盛", + "readging": "あわもり", + "pos": "名詞", + "pn": -0.190274 + }, + { + "surface": "決起", + "readging": "けっき", + "pos": "名詞", + "pn": -0.190302 + }, + { + "surface": "アンパイア", + "readging": "アンパイア", + "pos": "名詞", + "pn": -0.190312 + }, + { + "surface": "痛惜", + "readging": "つうせき", + "pos": "名詞", + "pn": -0.190329 + }, + { + "surface": "籠絡", + "readging": "ろうらく", + "pos": "名詞", + "pn": -0.190335 + }, + { + "surface": "思い当る", + "readging": "おもいあたる", + "pos": "動詞", + "pn": -0.190378 + }, + { + "surface": "三食", + "readging": "さんしょく", + "pos": "名詞", + "pn": -0.190383 + }, + { + "surface": "生年月日", + "readging": "せいねんがっぴ", + "pos": "名詞", + "pn": -0.190389 + }, + { + "surface": "老け役", + "readging": "ふけやく", + "pos": "名詞", + "pn": -0.190423 + }, + { + "surface": "荒波", + "readging": "あらなみ", + "pos": "名詞", + "pn": -0.190433 + }, + { + "surface": "二筋道", + "readging": "ふたすじみち", + "pos": "名詞", + "pn": -0.190441 + }, + { + "surface": "間竿", + "readging": "けんざお", + "pos": "名詞", + "pn": -0.190444 + }, + { + "surface": "古址", + "readging": "こし", + "pos": "名詞", + "pn": -0.190448 + }, + { + "surface": "召出す", + "readging": "めしだす", + "pos": "動詞", + "pn": -0.190454 + }, + { + "surface": "陸送", + "readging": "りくそう", + "pos": "名詞", + "pn": -0.190464 + }, + { + "surface": "屠蘇", + "readging": "とそ", + "pos": "名詞", + "pn": -0.190468 + }, + { + "surface": "古事", + "readging": "ふるごと", + "pos": "名詞", + "pn": -0.190471 + }, + { + "surface": "ミルク", + "readging": "ミルク", + "pos": "名詞", + "pn": -0.190498 + }, + { + "surface": "定席", + "readging": "じょうせき", + "pos": "名詞", + "pn": -0.1905 + }, + { + "surface": "俗離れ", + "readging": "ぞくばなれ", + "pos": "名詞", + "pn": -0.190512 + }, + { + "surface": "市政", + "readging": "しせい", + "pos": "名詞", + "pn": -0.190525 + }, + { + "surface": "手焙", + "readging": "てあぶり", + "pos": "名詞", + "pn": -0.190528 + }, + { + "surface": "置時計", + "readging": "おきどけい", + "pos": "名詞", + "pn": -0.19053 + }, + { + "surface": "友軍", + "readging": "ゆうぐん", + "pos": "名詞", + "pn": -0.190532 + }, + { + "surface": "物の数", + "readging": "もののかず", + "pos": "名詞", + "pn": -0.190533 + }, + { + "surface": "クオータリー", + "readging": "クオータリー", + "pos": "名詞", + "pn": -0.190537 + }, + { + "surface": "実験科学", + "readging": "じっけんかがく", + "pos": "名詞", + "pn": -0.190541 + }, + { + "surface": "謝肉祭", + "readging": "しゃにくさい", + "pos": "名詞", + "pn": -0.190549 + }, + { + "surface": "代物", + "readging": "しろもの", + "pos": "名詞", + "pn": -0.190596 + }, + { + "surface": "聞覚え", + "readging": "ききおぼえ", + "pos": "名詞", + "pn": -0.190607 + }, + { + "surface": "宇宙塵", + "readging": "うちゅうじん", + "pos": "名詞", + "pn": -0.190623 + }, + { + "surface": "夜明し", + "readging": "よあかし", + "pos": "名詞", + "pn": -0.19064 + }, + { + "surface": "ドライ", + "readging": "ドライクリーニング", + "pos": "名詞", + "pn": -0.190645 + }, + { + "surface": "二弦琴", + "readging": "にげんきん", + "pos": "名詞", + "pn": -0.190653 + }, + { + "surface": "軽妙", + "readging": "けいみょう", + "pos": "名詞", + "pn": -0.190665 + }, + { + "surface": "同質", + "readging": "どうしつ", + "pos": "名詞", + "pn": -0.190681 + }, + { + "surface": "太極", + "readging": "たいきょく", + "pos": "名詞", + "pn": -0.190727 + }, + { + "surface": "太陽電池", + "readging": "たいようでんち", + "pos": "名詞", + "pn": -0.19073 + }, + { + "surface": "出来上り", + "readging": "できあがり", + "pos": "名詞", + "pn": -0.190743 + }, + { + "surface": "活歴", + "readging": "かつれき", + "pos": "名詞", + "pn": -0.190753 + }, + { + "surface": "要項", + "readging": "ようこう", + "pos": "名詞", + "pn": -0.190769 + }, + { + "surface": "木本", + "readging": "もくほん", + "pos": "名詞", + "pn": -0.19078 + }, + { + "surface": "美濃判", + "readging": "みのばん", + "pos": "名詞", + "pn": -0.190794 + }, + { + "surface": "魚眼レンズ", + "readging": "ぎょがんレンズ", + "pos": "名詞", + "pn": -0.190794 + }, + { + "surface": "宝冠", + "readging": "ほうかん", + "pos": "名詞", + "pn": -0.190796 + }, + { + "surface": "宿坊", + "readging": "しゅくぼう", + "pos": "名詞", + "pn": -0.190797 + }, + { + "surface": "東天", + "readging": "とうてん", + "pos": "名詞", + "pn": -0.190798 + }, + { + "surface": "義子", + "readging": "ぎし", + "pos": "名詞", + "pn": -0.190806 + }, + { + "surface": "末孫", + "readging": "ばっそん", + "pos": "名詞", + "pn": -0.190812 + }, + { + "surface": "旧物", + "readging": "きゅうぶつ", + "pos": "名詞", + "pn": -0.190822 + }, + { + "surface": "常命", + "readging": "じょうみょう", + "pos": "名詞", + "pn": -0.190831 + }, + { + "surface": "惜春", + "readging": "せきしゅん", + "pos": "名詞", + "pn": -0.190834 + }, + { + "surface": "似顔", + "readging": "にがお", + "pos": "名詞", + "pn": -0.190846 + }, + { + "surface": "横綴", + "readging": "よことじ", + "pos": "名詞", + "pn": -0.190853 + }, + { + "surface": "空文", + "readging": "くうぶん", + "pos": "名詞", + "pn": -0.190853 + }, + { + "surface": "囲み", + "readging": "かこみ", + "pos": "名詞", + "pn": -0.190872 + }, + { + "surface": "鰐鮫", + "readging": "わにざめ", + "pos": "名詞", + "pn": -0.190877 + }, + { + "surface": "抜き連ねる", + "readging": "ぬきつらねる", + "pos": "動詞", + "pn": -0.190881 + }, + { + "surface": "起案", + "readging": "きあん", + "pos": "名詞", + "pn": -0.190892 + }, + { + "surface": "赤恥", + "readging": "あかはじ", + "pos": "名詞", + "pn": -0.190902 + }, + { + "surface": "転注", + "readging": "てんちゅう", + "pos": "名詞", + "pn": -0.190924 + }, + { + "surface": "八百屋", + "readging": "やお", + "pos": "名詞", + "pn": -0.190934 + }, + { + "surface": "アンゴラ兎", + "readging": "アンゴラうさぎ", + "pos": "名詞", + "pn": -0.190952 + }, + { + "surface": "答電", + "readging": "とうでん", + "pos": "名詞", + "pn": -0.190963 + }, + { + "surface": "正閏", + "readging": "せいじゅん", + "pos": "名詞", + "pn": -0.190992 + }, + { + "surface": "所書", + "readging": "ところがき", + "pos": "名詞", + "pn": -0.191 + }, + { + "surface": "生身", + "readging": "なまみ", + "pos": "名詞", + "pn": -0.191008 + }, + { + "surface": "掾", + "readging": "じょう", + "pos": "名詞", + "pn": -0.191009 + }, + { + "surface": "インターン", + "readging": "インターン", + "pos": "名詞", + "pn": -0.191016 + }, + { + "surface": "ぜいぜい", + "readging": "ぜいぜい", + "pos": "副詞", + "pn": -0.191025 + }, + { + "surface": "自慰", + "readging": "じい", + "pos": "名詞", + "pn": -0.191068 + }, + { + "surface": "孤立", + "readging": "こりつ", + "pos": "名詞", + "pn": -0.191076 + }, + { + "surface": "従兄弟", + "readging": "いとこ", + "pos": "名詞", + "pn": -0.19108 + }, + { + "surface": "ウーリー ナイロン", + "readging": "ウーリー ナイロン", + "pos": "名詞", + "pn": -0.191083 + }, + { + "surface": "話し掛ける", + "readging": "はなしかける", + "pos": "動詞", + "pn": -0.191087 + }, + { + "surface": "兵事", + "readging": "へいじ", + "pos": "名詞", + "pn": -0.191113 + }, + { + "surface": "富国強兵", + "readging": "ふこくきょうへい", + "pos": "名詞", + "pn": -0.191119 + }, + { + "surface": "前置詞", + "readging": "ぜんちし", + "pos": "名詞", + "pn": -0.191133 + }, + { + "surface": "汗水", + "readging": "あせみず", + "pos": "名詞", + "pn": -0.191149 + }, + { + "surface": "汗ばむ", + "readging": "あせばむ", + "pos": "動詞", + "pn": -0.191149 + }, + { + "surface": "辻立ち", + "readging": "つじだち", + "pos": "名詞", + "pn": -0.191169 + }, + { + "surface": "序する", + "readging": "じょする", + "pos": "動詞", + "pn": -0.19117 + }, + { + "surface": "渡島", + "readging": "ととう", + "pos": "名詞", + "pn": -0.191173 + }, + { + "surface": "首肯", + "readging": "しゅこう", + "pos": "名詞", + "pn": -0.191174 + }, + { + "surface": "腑", + "readging": "ふ", + "pos": "名詞", + "pn": -0.191177 + }, + { + "surface": "縫模様", + "readging": "ぬいもよう", + "pos": "名詞", + "pn": -0.191224 + }, + { + "surface": "電気計器", + "readging": "でんきけいき", + "pos": "名詞", + "pn": -0.191226 + }, + { + "surface": "多肉", + "readging": "たにく", + "pos": "名詞", + "pn": -0.191233 + }, + { + "surface": "減食", + "readging": "げんしょく", + "pos": "名詞", + "pn": -0.191234 + }, + { + "surface": "村荘", + "readging": "そんそう", + "pos": "名詞", + "pn": -0.191237 + }, + { + "surface": "霊妙", + "readging": "れいみょう", + "pos": "名詞", + "pn": -0.19124 + }, + { + "surface": "酉偏", + "readging": "とりへん", + "pos": "名詞", + "pn": -0.191254 + }, + { + "surface": "スェーター", + "readging": "スェーター", + "pos": "名詞", + "pn": -0.191273 + }, + { + "surface": "敷島の道", + "readging": "しきしまのみち", + "pos": "名詞", + "pn": -0.191278 + }, + { + "surface": "長め", + "readging": "ながめ", + "pos": "名詞", + "pn": -0.191289 + }, + { + "surface": "吹井戸", + "readging": "ふきいど", + "pos": "名詞", + "pn": -0.191368 + }, + { + "surface": "小隊", + "readging": "しょうたい", + "pos": "名詞", + "pn": -0.191382 + }, + { + "surface": "硬貨", + "readging": "こうか", + "pos": "名詞", + "pn": -0.191382 + }, + { + "surface": "SL", + "readging": "エスエル", + "pos": "名詞", + "pn": -0.191396 + }, + { + "surface": "木こり", + "readging": "きこり", + "pos": "名詞", + "pn": -0.191437 + }, + { + "surface": "ブルネット", + "readging": "ブルネット", + "pos": "名詞", + "pn": -0.191438 + }, + { + "surface": "庭木戸", + "readging": "にわきど", + "pos": "名詞", + "pn": -0.19144 + }, + { + "surface": "連立", + "readging": "れんりつ", + "pos": "名詞", + "pn": -0.191443 + }, + { + "surface": "教権", + "readging": "きょうけん", + "pos": "名詞", + "pn": -0.191445 + }, + { + "surface": "初級", + "readging": "しょきゅう", + "pos": "名詞", + "pn": -0.191462 + }, + { + "surface": "創刊", + "readging": "そうかん", + "pos": "名詞", + "pn": -0.191466 + }, + { + "surface": "味見", + "readging": "あじみ", + "pos": "名詞", + "pn": -0.191476 + }, + { + "surface": "手持", + "readging": "てもち", + "pos": "名詞", + "pn": -0.191478 + }, + { + "surface": "花木", + "readging": "かぼく", + "pos": "名詞", + "pn": -0.191503 + }, + { + "surface": "仏祖", + "readging": "ぶっそ", + "pos": "名詞", + "pn": -0.191505 + }, + { + "surface": "分業", + "readging": "ぶんぎょう", + "pos": "名詞", + "pn": -0.191516 + }, + { + "surface": "経験科学", + "readging": "けいけんかがく", + "pos": "名詞", + "pn": -0.191544 + }, + { + "surface": "布教", + "readging": "ふきょう", + "pos": "名詞", + "pn": -0.191552 + }, + { + "surface": "人違い", + "readging": "ひとちがい", + "pos": "名詞", + "pn": -0.19156 + }, + { + "surface": "のたりのたり", + "readging": "のたりのたり", + "pos": "副詞", + "pn": -0.191571 + }, + { + "surface": "譚詩", + "readging": "たんし", + "pos": "名詞", + "pn": -0.191572 + }, + { + "surface": "肋間", + "readging": "ろっかん", + "pos": "名詞", + "pn": -0.191581 + }, + { + "surface": "親疎", + "readging": "しんそ", + "pos": "名詞", + "pn": -0.191581 + }, + { + "surface": "掃滅", + "readging": "そうめつ", + "pos": "名詞", + "pn": -0.191591 + }, + { + "surface": "入山", + "readging": "にゅうざん", + "pos": "名詞", + "pn": -0.191598 + }, + { + "surface": "社宅", + "readging": "しゃたく", + "pos": "名詞", + "pn": -0.191601 + }, + { + "surface": "農政", + "readging": "のうせい", + "pos": "名詞", + "pn": -0.191606 + }, + { + "surface": "キング", + "readging": "キングサイズ", + "pos": "名詞", + "pn": -0.191609 + }, + { + "surface": "君公", + "readging": "くんこう", + "pos": "名詞", + "pn": -0.19162 + }, + { + "surface": "微行", + "readging": "びこう", + "pos": "名詞", + "pn": -0.191622 + }, + { + "surface": "唐津", + "readging": "からつ", + "pos": "名詞", + "pn": -0.191626 + }, + { + "surface": "中値", + "readging": "なかね", + "pos": "名詞", + "pn": -0.191633 + }, + { + "surface": "銃創", + "readging": "じゅうそう", + "pos": "名詞", + "pn": -0.191654 + }, + { + "surface": "密約", + "readging": "みつやく", + "pos": "名詞", + "pn": -0.191656 + }, + { + "surface": "テスト", + "readging": "テストケース", + "pos": "名詞", + "pn": -0.191664 + }, + { + "surface": "一番乗り", + "readging": "いちばんのり", + "pos": "名詞", + "pn": -0.191692 + }, + { + "surface": "射幸", + "readging": "しゃこう", + "pos": "名詞", + "pn": -0.191693 + }, + { + "surface": "一昨日", + "readging": "おとつい", + "pos": "名詞", + "pn": -0.191701 + }, + { + "surface": "蚤の市", + "readging": "のみのいち", + "pos": "名詞", + "pn": -0.19172 + }, + { + "surface": "墨跡", + "readging": "ぼくせき", + "pos": "名詞", + "pn": -0.191727 + }, + { + "surface": "薬殺", + "readging": "やくさつ", + "pos": "名詞", + "pn": -0.191736 + }, + { + "surface": "拝具", + "readging": "はいぐ", + "pos": "名詞", + "pn": -0.191738 + }, + { + "surface": "禅林", + "readging": "ぜんりん", + "pos": "名詞", + "pn": -0.191742 + }, + { + "surface": "山越し", + "readging": "やまごし", + "pos": "名詞", + "pn": -0.191761 + }, + { + "surface": "畏敬", + "readging": "いけい", + "pos": "名詞", + "pn": -0.191765 + }, + { + "surface": "非戦闘員", + "readging": "ひせんとういん", + "pos": "名詞", + "pn": -0.191768 + }, + { + "surface": "仙術", + "readging": "せんじゅつ", + "pos": "名詞", + "pn": -0.191779 + }, + { + "surface": "血の海", + "readging": "ちのうみ", + "pos": "名詞", + "pn": -0.19178 + }, + { + "surface": "公電", + "readging": "こうでん", + "pos": "名詞", + "pn": -0.191786 + }, + { + "surface": "祝詞", + "readging": "しゅくし", + "pos": "名詞", + "pn": -0.191789 + }, + { + "surface": "大", + "readging": "だい", + "pos": "名詞", + "pn": -0.19179 + }, + { + "surface": "赤切符", + "readging": "あかぎっぷ", + "pos": "名詞", + "pn": -0.191792 + }, + { + "surface": "機関庫", + "readging": "きかんこ", + "pos": "名詞", + "pn": -0.191805 + }, + { + "surface": "次長", + "readging": "じちょう", + "pos": "名詞", + "pn": -0.191821 + }, + { + "surface": "やっちゃ場", + "readging": "やっちゃば", + "pos": "名詞", + "pn": -0.191839 + }, + { + "surface": "実利", + "readging": "じつり", + "pos": "名詞", + "pn": -0.191853 + }, + { + "surface": "裸婦", + "readging": "らふ", + "pos": "名詞", + "pn": -0.191858 + }, + { + "surface": "切炭", + "readging": "きりずみ", + "pos": "名詞", + "pn": -0.191874 + }, + { + "surface": "券面", + "readging": "けんめん", + "pos": "名詞", + "pn": -0.191876 + }, + { + "surface": "貸賃", + "readging": "かしちん", + "pos": "名詞", + "pn": -0.191914 + }, + { + "surface": "客膳", + "readging": "きゃくぜん", + "pos": "名詞", + "pn": -0.191918 + }, + { + "surface": "デザイナー", + "readging": "デザイナー", + "pos": "名詞", + "pn": -0.191933 + }, + { + "surface": "紋羽二重", + "readging": "もんはぶたえ", + "pos": "名詞", + "pn": -0.191938 + }, + { + "surface": "送話", + "readging": "そうわ", + "pos": "名詞", + "pn": -0.191946 + }, + { + "surface": "扶養", + "readging": "ふよう", + "pos": "名詞", + "pn": -0.19195 + }, + { + "surface": "通り相場", + "readging": "とおりそうば", + "pos": "名詞", + "pn": -0.19195 + }, + { + "surface": "皇祚", + "readging": "こうそ", + "pos": "名詞", + "pn": -0.191964 + }, + { + "surface": "党籍", + "readging": "とうせき", + "pos": "名詞", + "pn": -0.191975 + }, + { + "surface": "四身", + "readging": "よつみ", + "pos": "名詞", + "pn": -0.191996 + }, + { + "surface": "タウン ウエア", + "readging": "タウン ウエア", + "pos": "名詞", + "pn": -0.191998 + }, + { + "surface": "被膜", + "readging": "ひまく", + "pos": "名詞", + "pn": -0.192013 + }, + { + "surface": "モーゼル銃", + "readging": "モーゼルじゅう", + "pos": "名詞", + "pn": -0.192015 + }, + { + "surface": "司法権", + "readging": "しほうけん", + "pos": "名詞", + "pn": -0.192016 + }, + { + "surface": "堪忍袋", + "readging": "かんにんぶくろ", + "pos": "名詞", + "pn": -0.19204 + }, + { + "surface": "雪起し", + "readging": "ゆきおこし", + "pos": "名詞", + "pn": -0.19205 + }, + { + "surface": "連奏", + "readging": "れんそう", + "pos": "名詞", + "pn": -0.19205 + }, + { + "surface": "引く手", + "readging": "ひくて", + "pos": "名詞", + "pn": -0.192055 + }, + { + "surface": "皆朱", + "readging": "かいしゅ", + "pos": "名詞", + "pn": -0.192084 + }, + { + "surface": "音締", + "readging": "ねじめ", + "pos": "名詞", + "pn": -0.1921 + }, + { + "surface": "輪乗り", + "readging": "わのり", + "pos": "名詞", + "pn": -0.19211 + }, + { + "surface": "飲食", + "readging": "いんしょく", + "pos": "名詞", + "pn": -0.192111 + }, + { + "surface": "枢機卿", + "readging": "すうきけい", + "pos": "名詞", + "pn": -0.192132 + }, + { + "surface": "要図", + "readging": "ようず", + "pos": "名詞", + "pn": -0.192152 + }, + { + "surface": "公爵", + "readging": "こうしゃく", + "pos": "名詞", + "pn": -0.192158 + }, + { + "surface": "字訓", + "readging": "じくん", + "pos": "名詞", + "pn": -0.19217 + }, + { + "surface": "水系", + "readging": "すいけい", + "pos": "名詞", + "pn": -0.192203 + }, + { + "surface": "誓書", + "readging": "せいしょ", + "pos": "名詞", + "pn": -0.192208 + }, + { + "surface": "銅板", + "readging": "どうばん", + "pos": "名詞", + "pn": -0.192226 + }, + { + "surface": "中塗", + "readging": "なかぬり", + "pos": "名詞", + "pn": -0.192245 + }, + { + "surface": "情報管理", + "readging": "じょうほうかんり", + "pos": "名詞", + "pn": -0.192246 + }, + { + "surface": "軍需", + "readging": "ぐんじゅ", + "pos": "名詞", + "pn": -0.192271 + }, + { + "surface": "忍び寄る", + "readging": "しのびよる", + "pos": "動詞", + "pn": -0.192278 + }, + { + "surface": "探察", + "readging": "たんさつ", + "pos": "名詞", + "pn": -0.192306 + }, + { + "surface": "エーカー", + "readging": "エーカー", + "pos": "名詞", + "pn": -0.192309 + }, + { + "surface": "金堂", + "readging": "こんどう", + "pos": "名詞", + "pn": -0.192317 + }, + { + "surface": "アナリスト", + "readging": "アナリスト", + "pos": "名詞", + "pn": -0.19232 + }, + { + "surface": "刈草地", + "readging": "かりくさち", + "pos": "名詞", + "pn": -0.192323 + }, + { + "surface": "土橋", + "readging": "どばし", + "pos": "名詞", + "pn": -0.192323 + }, + { + "surface": "土侯", + "readging": "どこう", + "pos": "名詞", + "pn": -0.192337 + }, + { + "surface": "希う", + "readging": "こいねがう", + "pos": "動詞", + "pn": -0.192347 + }, + { + "surface": "フットワーク", + "readging": "フットワーク", + "pos": "名詞", + "pn": -0.192359 + }, + { + "surface": "競演", + "readging": "きょうえん", + "pos": "名詞", + "pn": -0.192364 + }, + { + "surface": "宿禰", + "readging": "すくね", + "pos": "名詞", + "pn": -0.192367 + }, + { + "surface": "笑覧", + "readging": "しょうらん", + "pos": "名詞", + "pn": -0.192399 + }, + { + "surface": "泣き女", + "readging": "なきおんな", + "pos": "名詞", + "pn": -0.192417 + }, + { + "surface": "奉勅", + "readging": "ほうちょく", + "pos": "名詞", + "pn": -0.192423 + }, + { + "surface": "脂身", + "readging": "あぶらみ", + "pos": "名詞", + "pn": -0.192423 + }, + { + "surface": "係争", + "readging": "けいそう", + "pos": "名詞", + "pn": -0.192427 + }, + { + "surface": "ペパーミント", + "readging": "ペパーミント", + "pos": "名詞", + "pn": -0.192431 + }, + { + "surface": "屯所", + "readging": "とんしょ", + "pos": "名詞", + "pn": -0.192431 + }, + { + "surface": "画嚢", + "readging": "がのう", + "pos": "名詞", + "pn": -0.192447 + }, + { + "surface": "出願", + "readging": "しゅつがん", + "pos": "名詞", + "pn": -0.192478 + }, + { + "surface": "後金", + "readging": "あときん", + "pos": "名詞", + "pn": -0.19248 + }, + { + "surface": "対極", + "readging": "たいきょく", + "pos": "名詞", + "pn": -0.192482 + }, + { + "surface": "除法", + "readging": "じょほう", + "pos": "名詞", + "pn": -0.192486 + }, + { + "surface": "職種", + "readging": "しょくしゅ", + "pos": "名詞", + "pn": -0.192497 + }, + { + "surface": "大部", + "readging": "たいぶ", + "pos": "名詞", + "pn": -0.192499 + }, + { + "surface": "君臣", + "readging": "くんしん", + "pos": "名詞", + "pn": -0.192515 + }, + { + "surface": "防毒", + "readging": "ぼうどく", + "pos": "名詞", + "pn": -0.19252 + }, + { + "surface": "神降し", + "readging": "かみおろし", + "pos": "名詞", + "pn": -0.192522 + }, + { + "surface": "詩賦", + "readging": "しふ", + "pos": "名詞", + "pn": -0.192538 + }, + { + "surface": "法統", + "readging": "ほうとう", + "pos": "名詞", + "pn": -0.192559 + }, + { + "surface": "日照権", + "readging": "にっしょうけん", + "pos": "名詞", + "pn": -0.192574 + }, + { + "surface": "登記所", + "readging": "とうきしょ", + "pos": "名詞", + "pn": -0.192576 + }, + { + "surface": "整", + "readging": "せい", + "pos": "名詞", + "pn": -0.192595 + }, + { + "surface": "宿衛", + "readging": "しゅくえい", + "pos": "名詞", + "pn": -0.192603 + }, + { + "surface": "ミスプリント", + "readging": "ミスプリント", + "pos": "名詞", + "pn": -0.192604 + }, + { + "surface": "はためく", + "readging": "はためく", + "pos": "動詞", + "pn": -0.192613 + }, + { + "surface": "血続き", + "readging": "ちつづき", + "pos": "名詞", + "pn": -0.192613 + }, + { + "surface": "刀圭", + "readging": "とうけい", + "pos": "名詞", + "pn": -0.192702 + }, + { + "surface": "匿う", + "readging": "かくまう", + "pos": "動詞", + "pn": -0.192713 + }, + { + "surface": "錯乱", + "readging": "さくらん", + "pos": "名詞", + "pn": -0.19272 + }, + { + "surface": "血潮", + "readging": "ちしお", + "pos": "名詞", + "pn": -0.192729 + }, + { + "surface": "印画紙", + "readging": "いんがし", + "pos": "名詞", + "pn": -0.192732 + }, + { + "surface": "変更", + "readging": "へんこう", + "pos": "名詞", + "pn": -0.192761 + }, + { + "surface": "追返す", + "readging": "おいかえす", + "pos": "動詞", + "pn": -0.19277 + }, + { + "surface": "離れ", + "readging": "はなれ", + "pos": "名詞", + "pn": -0.192775 + }, + { + "surface": "潔", + "readging": "けつ", + "pos": "名詞", + "pn": -0.192784 + }, + { + "surface": "連理", + "readging": "れんり", + "pos": "名詞", + "pn": -0.192789 + }, + { + "surface": "統裁", + "readging": "とうさい", + "pos": "名詞", + "pn": -0.192792 + }, + { + "surface": "クラウン", + "readging": "クラウン", + "pos": "名詞", + "pn": -0.192805 + }, + { + "surface": "銀行券", + "readging": "ぎんこうけん", + "pos": "名詞", + "pn": -0.192817 + }, + { + "surface": "小梅", + "readging": "こうめ", + "pos": "名詞", + "pn": -0.192824 + }, + { + "surface": "木炭画", + "readging": "もくたんが", + "pos": "名詞", + "pn": -0.192827 + }, + { + "surface": "失地", + "readging": "しっち", + "pos": "名詞", + "pn": -0.192837 + }, + { + "surface": "水泡音", + "readging": "すいほうおん", + "pos": "名詞", + "pn": -0.192843 + }, + { + "surface": "視聴率", + "readging": "しちょうりつ", + "pos": "名詞", + "pn": -0.192848 + }, + { + "surface": "手利き", + "readging": "てきき", + "pos": "名詞", + "pn": -0.192851 + }, + { + "surface": "十二単", + "readging": "じゅうにひとえ", + "pos": "名詞", + "pn": -0.192855 + }, + { + "surface": "光量子", + "readging": "こうりょうし", + "pos": "名詞", + "pn": -0.192866 + }, + { + "surface": "娘婿", + "readging": "むすめむこ", + "pos": "名詞", + "pn": -0.192883 + }, + { + "surface": "狂信", + "readging": "きょうしん", + "pos": "名詞", + "pn": -0.19289 + }, + { + "surface": "刃先", + "readging": "はさき", + "pos": "名詞", + "pn": -0.192898 + }, + { + "surface": "経書", + "readging": "けいしょ", + "pos": "名詞", + "pn": -0.192902 + }, + { + "surface": "彼岸桜", + "readging": "ひがんざくら", + "pos": "名詞", + "pn": -0.192908 + }, + { + "surface": "社会面", + "readging": "しゃかいめん", + "pos": "名詞", + "pn": -0.192912 + }, + { + "surface": "ラブ", + "readging": "ラブシーン", + "pos": "名詞", + "pn": -0.192925 + }, + { + "surface": "読める", + "readging": "よめる", + "pos": "動詞", + "pn": -0.192931 + }, + { + "surface": "老境", + "readging": "ろうきょう", + "pos": "名詞", + "pn": -0.192936 + }, + { + "surface": "行暮す", + "readging": "ゆきくらす", + "pos": "動詞", + "pn": -0.192942 + }, + { + "surface": "金位", + "readging": "きんい", + "pos": "名詞", + "pn": -0.192951 + }, + { + "surface": "造営", + "readging": "ぞうえい", + "pos": "名詞", + "pn": -0.192961 + }, + { + "surface": "筆硯", + "readging": "ひっけん", + "pos": "名詞", + "pn": -0.192984 + }, + { + "surface": "演者", + "readging": "えんじゃ", + "pos": "名詞", + "pn": -0.192999 + }, + { + "surface": "湿田", + "readging": "しつでん", + "pos": "名詞", + "pn": -0.193011 + }, + { + "surface": "慰労", + "readging": "いろう", + "pos": "名詞", + "pn": -0.193036 + }, + { + "surface": "スコップ", + "readging": "スコップ", + "pos": "名詞", + "pn": -0.193039 + }, + { + "surface": "だふ屋", + "readging": "だふや", + "pos": "名詞", + "pn": -0.193039 + }, + { + "surface": "社会教育", + "readging": "しゃかいきょういく", + "pos": "名詞", + "pn": -0.19306 + }, + { + "surface": "彫心鏤骨", + "readging": "ちょうしんるこつ", + "pos": "名詞", + "pn": -0.193062 + }, + { + "surface": "信用", + "readging": "しんよう", + "pos": "名詞", + "pn": -0.193066 + }, + { + "surface": "甘み", + "readging": "うまみ", + "pos": "名詞", + "pn": -0.193078 + }, + { + "surface": "借地", + "readging": "しゃくち", + "pos": "名詞", + "pn": -0.193105 + }, + { + "surface": "尚更", + "readging": "なおさら", + "pos": "副詞", + "pn": -0.193106 + }, + { + "surface": "夜想曲", + "readging": "やそうきょく", + "pos": "名詞", + "pn": -0.193125 + }, + { + "surface": "手配り", + "readging": "てくばり", + "pos": "名詞", + "pn": -0.193138 + }, + { + "surface": "計らう", + "readging": "はからう", + "pos": "動詞", + "pn": -0.19316 + }, + { + "surface": "職域", + "readging": "しょくいき", + "pos": "名詞", + "pn": -0.193173 + }, + { + "surface": "匂袋", + "readging": "においぶくろ", + "pos": "名詞", + "pn": -0.193179 + }, + { + "surface": "概数", + "readging": "がいすう", + "pos": "名詞", + "pn": -0.19319 + }, + { + "surface": "宣下", + "readging": "せんげ", + "pos": "名詞", + "pn": -0.193193 + }, + { + "surface": "堅物", + "readging": "かたぶつ", + "pos": "名詞", + "pn": -0.193193 + }, + { + "surface": "算数", + "readging": "さんすう", + "pos": "名詞", + "pn": -0.193199 + }, + { + "surface": "血涙", + "readging": "けつるい", + "pos": "名詞", + "pn": -0.193208 + }, + { + "surface": "何糞", + "readging": "なにくそ", + "pos": "名詞", + "pn": -0.193209 + }, + { + "surface": "錆止め", + "readging": "さびどめ", + "pos": "名詞", + "pn": -0.193212 + }, + { + "surface": "心象", + "readging": "しんしょう", + "pos": "名詞", + "pn": -0.193216 + }, + { + "surface": "強電", + "readging": "きょうでん", + "pos": "名詞", + "pn": -0.193228 + }, + { + "surface": "興信録", + "readging": "こうしんろく", + "pos": "名詞", + "pn": -0.193242 + }, + { + "surface": "詫状", + "readging": "わびじょう", + "pos": "名詞", + "pn": -0.193244 + }, + { + "surface": "同罪", + "readging": "どうざい", + "pos": "名詞", + "pn": -0.193246 + }, + { + "surface": "純然", + "readging": "じゅんぜん", + "pos": "名詞", + "pn": -0.193262 + }, + { + "surface": "準急", + "readging": "じゅんきゅう", + "pos": "名詞", + "pn": -0.193264 + }, + { + "surface": "鋳鋼", + "readging": "ちゅうこう", + "pos": "名詞", + "pn": -0.193286 + }, + { + "surface": "ミドル", + "readging": "ミドル", + "pos": "名詞", + "pn": -0.193301 + }, + { + "surface": "過激派", + "readging": "かげきは", + "pos": "名詞", + "pn": -0.193308 + }, + { + "surface": "冥途", + "readging": "めいど", + "pos": "名詞", + "pn": -0.193309 + }, + { + "surface": "銀製", + "readging": "ぎんせい", + "pos": "名詞", + "pn": -0.193312 + }, + { + "surface": "礼儀", + "readging": "れいぎ", + "pos": "名詞", + "pn": -0.193336 + }, + { + "surface": "地磁気", + "readging": "ちじき", + "pos": "名詞", + "pn": -0.19334 + }, + { + "surface": "在庫管理", + "readging": "ざいこかんり", + "pos": "名詞", + "pn": -0.193359 + }, + { + "surface": "弱竹", + "readging": "なよたけ", + "pos": "名詞", + "pn": -0.19336 + }, + { + "surface": "海港", + "readging": "かいこう", + "pos": "名詞", + "pn": -0.193381 + }, + { + "surface": "打ち所", + "readging": "うちどころ", + "pos": "名詞", + "pn": -0.193382 + }, + { + "surface": "軍楽", + "readging": "ぐんがく", + "pos": "名詞", + "pn": -0.193386 + }, + { + "surface": "折伏", + "readging": "しゃくぶく", + "pos": "名詞", + "pn": -0.193402 + }, + { + "surface": "借金取", + "readging": "しゃっきんとり", + "pos": "名詞", + "pn": -0.193412 + }, + { + "surface": "藩札", + "readging": "はんさつ", + "pos": "名詞", + "pn": -0.193412 + }, + { + "surface": "杉", + "readging": "さん", + "pos": "名詞", + "pn": -0.193417 + }, + { + "surface": "仁王", + "readging": "におう", + "pos": "名詞", + "pn": -0.193419 + }, + { + "surface": "お立ち", + "readging": "おたち", + "pos": "名詞", + "pn": -0.193423 + }, + { + "surface": "与党", + "readging": "よとう", + "pos": "名詞", + "pn": -0.19348 + }, + { + "surface": "御歌会", + "readging": "おうたかい", + "pos": "名詞", + "pn": -0.193483 + }, + { + "surface": "将士", + "readging": "しょうし", + "pos": "名詞", + "pn": -0.193487 + }, + { + "surface": "起債", + "readging": "きさい", + "pos": "名詞", + "pn": -0.193513 + }, + { + "surface": "ニヒル", + "readging": "ニヒル", + "pos": "名詞", + "pn": -0.193516 + }, + { + "surface": "主査", + "readging": "しゅさ", + "pos": "名詞", + "pn": -0.193527 + }, + { + "surface": "弓杖", + "readging": "ゆんづえ", + "pos": "名詞", + "pn": -0.193541 + }, + { + "surface": "手勢", + "readging": "てぜい", + "pos": "名詞", + "pn": -0.193549 + }, + { + "surface": "探索", + "readging": "たんさく", + "pos": "名詞", + "pn": -0.193556 + }, + { + "surface": "締盟", + "readging": "ていめい", + "pos": "名詞", + "pn": -0.193567 + }, + { + "surface": "ケース", + "readging": "ケース", + "pos": "名詞", + "pn": -0.193567 + }, + { + "surface": "宮居", + "readging": "みやい", + "pos": "名詞", + "pn": -0.193568 + }, + { + "surface": "恋情", + "readging": "れんじょう", + "pos": "名詞", + "pn": -0.193573 + }, + { + "surface": "婿養子", + "readging": "むこようし", + "pos": "名詞", + "pn": -0.193585 + }, + { + "surface": "合邦", + "readging": "がっぽう", + "pos": "名詞", + "pn": -0.193604 + }, + { + "surface": "取っ付き", + "readging": "とっつき", + "pos": "名詞", + "pn": -0.193606 + }, + { + "surface": "スペクタクル", + "readging": "スペクタクル", + "pos": "名詞", + "pn": -0.19361 + }, + { + "surface": "量産", + "readging": "りょうさん", + "pos": "名詞", + "pn": -0.193618 + }, + { + "surface": "熱する", + "readging": "ねっする", + "pos": "動詞", + "pn": -0.193621 + }, + { + "surface": "鶸色", + "readging": "ひわいろ", + "pos": "名詞", + "pn": -0.193642 + }, + { + "surface": "飾り付ける", + "readging": "かざりつける", + "pos": "動詞", + "pn": -0.193642 + }, + { + "surface": "渡者", + "readging": "わたりもの", + "pos": "名詞", + "pn": -0.193643 + }, + { + "surface": "登城", + "readging": "とじょう", + "pos": "名詞", + "pn": -0.193661 + }, + { + "surface": "張本", + "readging": "ちょうほん", + "pos": "名詞", + "pn": -0.193663 + }, + { + "surface": "ネル", + "readging": "ネル", + "pos": "名詞", + "pn": -0.193674 + }, + { + "surface": "玉の汗", + "readging": "たまのあせ", + "pos": "名詞", + "pn": -0.193694 + }, + { + "surface": "私蔵", + "readging": "しぞう", + "pos": "名詞", + "pn": -0.19371 + }, + { + "surface": "ハウスキーパー", + "readging": "ハウスキーパー", + "pos": "名詞", + "pn": -0.193729 + }, + { + "surface": "短音", + "readging": "たんおん", + "pos": "名詞", + "pn": -0.193731 + }, + { + "surface": "対生", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.193746 + }, + { + "surface": "答辞", + "readging": "とうじ", + "pos": "名詞", + "pn": -0.193769 + }, + { + "surface": "乗場", + "readging": "のりば", + "pos": "名詞", + "pn": -0.193781 + }, + { + "surface": "御札", + "readging": "おふだ", + "pos": "名詞", + "pn": -0.193784 + }, + { + "surface": "在す", + "readging": "います", + "pos": "動詞", + "pn": -0.193788 + }, + { + "surface": "目顔", + "readging": "めがお", + "pos": "名詞", + "pn": -0.193792 + }, + { + "surface": "祝辞", + "readging": "しゅくじ", + "pos": "名詞", + "pn": -0.193816 + }, + { + "surface": "誘爆", + "readging": "ゆうばく", + "pos": "名詞", + "pn": -0.19382 + }, + { + "surface": "静態", + "readging": "せいたい", + "pos": "名詞", + "pn": -0.193822 + }, + { + "surface": "親衛", + "readging": "しんえい", + "pos": "名詞", + "pn": -0.193826 + }, + { + "surface": "電鈴", + "readging": "でんれい", + "pos": "名詞", + "pn": -0.193875 + }, + { + "surface": "滅罪", + "readging": "めつざい", + "pos": "名詞", + "pn": -0.193911 + }, + { + "surface": "声域", + "readging": "せいいき", + "pos": "名詞", + "pn": -0.193911 + }, + { + "surface": "切米", + "readging": "きりまい", + "pos": "名詞", + "pn": -0.193942 + }, + { + "surface": "染分け", + "readging": "そめわけ", + "pos": "名詞", + "pn": -0.193958 + }, + { + "surface": "先刻", + "readging": "せんこく", + "pos": "名詞", + "pn": -0.19396 + }, + { + "surface": "家名", + "readging": "かめい", + "pos": "名詞", + "pn": -0.193971 + }, + { + "surface": "諸掛り", + "readging": "しょがかり", + "pos": "名詞", + "pn": -0.193972 + }, + { + "surface": "米材", + "readging": "べいざい", + "pos": "名詞", + "pn": -0.193985 + }, + { + "surface": "有事", + "readging": "ゆうじ", + "pos": "名詞", + "pn": -0.193999 + }, + { + "surface": "柄行", + "readging": "がらゆき", + "pos": "名詞", + "pn": -0.194016 + }, + { + "surface": "鳳声", + "readging": "ほうせい", + "pos": "名詞", + "pn": -0.194029 + }, + { + "surface": "売付ける", + "readging": "うりつける", + "pos": "動詞", + "pn": -0.194049 + }, + { + "surface": "舎費", + "readging": "しゃひ", + "pos": "名詞", + "pn": -0.194051 + }, + { + "surface": "複音", + "readging": "ふくおん", + "pos": "名詞", + "pn": -0.194062 + }, + { + "surface": "言語学", + "readging": "げんごがく", + "pos": "名詞", + "pn": -0.194064 + }, + { + "surface": "絶対主義", + "readging": "ぜったいしゅぎ", + "pos": "名詞", + "pn": -0.194065 + }, + { + "surface": "先貸し", + "readging": "さきがし", + "pos": "名詞", + "pn": -0.194082 + }, + { + "surface": "エスカレート", + "readging": "エスカレート", + "pos": "名詞", + "pn": -0.194088 + }, + { + "surface": "居城", + "readging": "きょじょう", + "pos": "名詞", + "pn": -0.194099 + }, + { + "surface": "含味", + "readging": "がんみ", + "pos": "名詞", + "pn": -0.194102 + }, + { + "surface": "運休", + "readging": "うんきゅう", + "pos": "名詞", + "pn": -0.194119 + }, + { + "surface": "バース コントロール", + "readging": "バース コントロール", + "pos": "名詞", + "pn": -0.194127 + }, + { + "surface": "節電", + "readging": "せつでん", + "pos": "名詞", + "pn": -0.194129 + }, + { + "surface": "給食", + "readging": "きゅうしょく", + "pos": "名詞", + "pn": -0.194135 + }, + { + "surface": "潮待ち", + "readging": "しおまち", + "pos": "名詞", + "pn": -0.194136 + }, + { + "surface": "ステレオ", + "readging": "ステレオ", + "pos": "名詞", + "pn": -0.194156 + }, + { + "surface": "重視", + "readging": "じゅうし", + "pos": "名詞", + "pn": -0.194174 + }, + { + "surface": "文盲", + "readging": "もんもう", + "pos": "名詞", + "pn": -0.194193 + }, + { + "surface": "元売り", + "readging": "もとうり", + "pos": "名詞", + "pn": -0.194194 + }, + { + "surface": "黙礼", + "readging": "もくれい", + "pos": "名詞", + "pn": -0.194202 + }, + { + "surface": "談論", + "readging": "だんろん", + "pos": "名詞", + "pn": -0.194229 + }, + { + "surface": "エチルアルコール", + "readging": "エチルアルコール", + "pos": "名詞", + "pn": -0.194231 + }, + { + "surface": "時代色", + "readging": "じだいしょく", + "pos": "名詞", + "pn": -0.194242 + }, + { + "surface": "懐石", + "readging": "かいせき", + "pos": "名詞", + "pn": -0.194244 + }, + { + "surface": "検体", + "readging": "けんたい", + "pos": "名詞", + "pn": -0.194249 + }, + { + "surface": "諾諾", + "readging": "だくだく", + "pos": "名詞", + "pn": -0.194254 + }, + { + "surface": "逃げ口", + "readging": "にげぐち", + "pos": "名詞", + "pn": -0.194254 + }, + { + "surface": "コールド パーマ", + "readging": "コールド パーマ", + "pos": "名詞", + "pn": -0.194269 + }, + { + "surface": "召抱える", + "readging": "めしかかえる", + "pos": "動詞", + "pn": -0.194277 + }, + { + "surface": "筆名", + "readging": "ひつめい", + "pos": "名詞", + "pn": -0.19428 + }, + { + "surface": "ワークブック", + "readging": "ワークブック", + "pos": "名詞", + "pn": -0.194292 + }, + { + "surface": "後代", + "readging": "こうだい", + "pos": "名詞", + "pn": -0.194296 + }, + { + "surface": "脱税", + "readging": "だつぜい", + "pos": "名詞", + "pn": -0.194312 + }, + { + "surface": "勅題", + "readging": "ちょくだい", + "pos": "名詞", + "pn": -0.194339 + }, + { + "surface": "蝋梅", + "readging": "ろうばい", + "pos": "名詞", + "pn": -0.194343 + }, + { + "surface": "標灯", + "readging": "ひょうとう", + "pos": "名詞", + "pn": -0.194349 + }, + { + "surface": "現業庁", + "readging": "げんぎょうちょう", + "pos": "名詞", + "pn": -0.194356 + }, + { + "surface": "ブティック", + "readging": "ブティック", + "pos": "名詞", + "pn": -0.194365 + }, + { + "surface": "酒浸り", + "readging": "さけびたり", + "pos": "名詞", + "pn": -0.194376 + }, + { + "surface": "区会", + "readging": "くかい", + "pos": "名詞", + "pn": -0.19439 + }, + { + "surface": "節酒", + "readging": "せっしゅ", + "pos": "名詞", + "pn": -0.194412 + }, + { + "surface": "非の打ち所", + "readging": "ひのうちどころ", + "pos": "名詞", + "pn": -0.194423 + }, + { + "surface": "密画", + "readging": "みつが", + "pos": "名詞", + "pn": -0.194424 + }, + { + "surface": "神鏡", + "readging": "しんきょう", + "pos": "名詞", + "pn": -0.194438 + }, + { + "surface": "席上", + "readging": "せきじょう", + "pos": "名詞", + "pn": -0.194451 + }, + { + "surface": "赤紙", + "readging": "あかがみ", + "pos": "名詞", + "pn": -0.194457 + }, + { + "surface": "永訣", + "readging": "えいけつ", + "pos": "名詞", + "pn": -0.194464 + }, + { + "surface": "小児科", + "readging": "しょうにか", + "pos": "名詞", + "pn": -0.194466 + }, + { + "surface": "私鉄", + "readging": "してつ", + "pos": "名詞", + "pn": -0.194471 + }, + { + "surface": "消え残る", + "readging": "きえのこる", + "pos": "動詞", + "pn": -0.194474 + }, + { + "surface": "細身", + "readging": "ほそみ", + "pos": "名詞", + "pn": -0.194474 + }, + { + "surface": "戸障子", + "readging": "としょうじ", + "pos": "名詞", + "pn": -0.194516 + }, + { + "surface": "いなだ", + "readging": "いなだ", + "pos": "名詞", + "pn": -0.194516 + }, + { + "surface": "息継ぎ", + "readging": "いきつぎ", + "pos": "名詞", + "pn": -0.194516 + }, + { + "surface": "爆死", + "readging": "ばくし", + "pos": "名詞", + "pn": -0.194527 + }, + { + "surface": "繰越す", + "readging": "くりこす", + "pos": "動詞", + "pn": -0.194529 + }, + { + "surface": "えのこ", + "readging": "えのこ", + "pos": "名詞", + "pn": -0.194547 + }, + { + "surface": "古川", + "readging": "ふるかわ", + "pos": "名詞", + "pn": -0.194547 + }, + { + "surface": "婆羅門教", + "readging": "バラモンきょう", + "pos": "名詞", + "pn": -0.194548 + }, + { + "surface": "風花", + "readging": "かざばな", + "pos": "名詞", + "pn": -0.19457 + }, + { + "surface": "雷雨", + "readging": "らいう", + "pos": "名詞", + "pn": -0.194586 + }, + { + "surface": "無線操縦", + "readging": "むせんそうじゅう", + "pos": "名詞", + "pn": -0.19461 + }, + { + "surface": "履歴書", + "readging": "りれきしょ", + "pos": "名詞", + "pn": -0.194613 + }, + { + "surface": "進士", + "readging": "しんし", + "pos": "名詞", + "pn": -0.194651 + }, + { + "surface": "バカンス", + "readging": "バカンス", + "pos": "名詞", + "pn": -0.194653 + }, + { + "surface": "雛祭", + "readging": "ひなまつり", + "pos": "名詞", + "pn": -0.194667 + }, + { + "surface": "居抜き", + "readging": "いぬき", + "pos": "名詞", + "pn": -0.194668 + }, + { + "surface": "休航", + "readging": "きゅうこう", + "pos": "名詞", + "pn": -0.19467 + }, + { + "surface": "名鑑", + "readging": "めいかん", + "pos": "名詞", + "pn": -0.194698 + }, + { + "surface": "託送", + "readging": "たくそう", + "pos": "名詞", + "pn": -0.194698 + }, + { + "surface": "押し合いへし合い", + "readging": "おしあい", + "pos": "名詞", + "pn": -0.194721 + }, + { + "surface": "ジグ", + "readging": "ジグ", + "pos": "名詞", + "pn": -0.194726 + }, + { + "surface": "槍術", + "readging": "そうじゅつ", + "pos": "名詞", + "pn": -0.194727 + }, + { + "surface": "田作", + "readging": "たづくり", + "pos": "名詞", + "pn": -0.194729 + }, + { + "surface": "ジェスチャー", + "readging": "ジェスチャー", + "pos": "名詞", + "pn": -0.194734 + }, + { + "surface": "考課", + "readging": "こうか", + "pos": "名詞", + "pn": -0.194735 + }, + { + "surface": "馬肉", + "readging": "ばにく", + "pos": "名詞", + "pn": -0.194746 + }, + { + "surface": "専断", + "readging": "せんだん", + "pos": "名詞", + "pn": -0.194754 + }, + { + "surface": "混声", + "readging": "こんせい", + "pos": "名詞", + "pn": -0.194755 + }, + { + "surface": "炭質", + "readging": "たんしつ", + "pos": "名詞", + "pn": -0.194764 + }, + { + "surface": "痛撃", + "readging": "つうげき", + "pos": "名詞", + "pn": -0.194784 + }, + { + "surface": "読耽る", + "readging": "よみふける", + "pos": "動詞", + "pn": -0.194795 + }, + { + "surface": "花軍", + "readging": "はないくさ", + "pos": "名詞", + "pn": -0.194805 + }, + { + "surface": "北緯", + "readging": "ほくい", + "pos": "名詞", + "pn": -0.194823 + }, + { + "surface": "差響く", + "readging": "さしひびく", + "pos": "動詞", + "pn": -0.19483 + }, + { + "surface": "雪空", + "readging": "ゆきぞら", + "pos": "名詞", + "pn": -0.194839 + }, + { + "surface": "寄託", + "readging": "きたく", + "pos": "名詞", + "pn": -0.194847 + }, + { + "surface": "バラック", + "readging": "バラック", + "pos": "名詞", + "pn": -0.194855 + }, + { + "surface": "あんちょこ", + "readging": "あんちょこ", + "pos": "名詞", + "pn": -0.194858 + }, + { + "surface": "役する", + "readging": "えきする", + "pos": "動詞", + "pn": -0.194862 + }, + { + "surface": "版籍", + "readging": "はんせき", + "pos": "名詞", + "pn": -0.194863 + }, + { + "surface": "画報", + "readging": "がほう", + "pos": "名詞", + "pn": -0.194893 + }, + { + "surface": "町制", + "readging": "ちょうせい", + "pos": "名詞", + "pn": -0.194894 + }, + { + "surface": "勤め上げる", + "readging": "つとめあげる", + "pos": "動詞", + "pn": -0.194898 + }, + { + "surface": "位取り", + "readging": "くらいどり", + "pos": "名詞", + "pn": -0.194903 + }, + { + "surface": "朱書", + "readging": "しゅしょ", + "pos": "名詞", + "pn": -0.194913 + }, + { + "surface": "単葉", + "readging": "たんよう", + "pos": "名詞", + "pn": -0.194916 + }, + { + "surface": "軸足", + "readging": "じくあし", + "pos": "名詞", + "pn": -0.194927 + }, + { + "surface": "四散", + "readging": "しさん", + "pos": "名詞", + "pn": -0.194936 + }, + { + "surface": "重訳", + "readging": "じゅうやく", + "pos": "名詞", + "pn": -0.194951 + }, + { + "surface": "飯米", + "readging": "はんまい", + "pos": "名詞", + "pn": -0.194971 + }, + { + "surface": "合理", + "readging": "ごうり", + "pos": "名詞", + "pn": -0.194976 + }, + { + "surface": "本圃", + "readging": "ほんぽ", + "pos": "名詞", + "pn": -0.194993 + }, + { + "surface": "元老院", + "readging": "げんろういん", + "pos": "名詞", + "pn": -0.194994 + }, + { + "surface": "半日", + "readging": "はんにち", + "pos": "名詞", + "pn": -0.195038 + }, + { + "surface": "偏食", + "readging": "へんしょく", + "pos": "名詞", + "pn": -0.19504 + }, + { + "surface": "酒塩", + "readging": "さかしお", + "pos": "名詞", + "pn": -0.19505 + }, + { + "surface": "無謀", + "readging": "むぼう", + "pos": "名詞", + "pn": -0.195057 + }, + { + "surface": "指標", + "readging": "しひょう", + "pos": "名詞", + "pn": -0.195065 + }, + { + "surface": "密勅", + "readging": "みっちょく", + "pos": "名詞", + "pn": -0.195067 + }, + { + "surface": "末孫", + "readging": "まっそん", + "pos": "名詞", + "pn": -0.195115 + }, + { + "surface": "流動資産", + "readging": "りゅうどうしさん", + "pos": "名詞", + "pn": -0.19512 + }, + { + "surface": "蚕紙", + "readging": "さんし", + "pos": "名詞", + "pn": -0.19512 + }, + { + "surface": "歩", + "readging": "ふ", + "pos": "名詞", + "pn": -0.195137 + }, + { + "surface": "二日酔", + "readging": "ふつかよい", + "pos": "名詞", + "pn": -0.195148 + }, + { + "surface": "印譜", + "readging": "いんぷ", + "pos": "名詞", + "pn": -0.195172 + }, + { + "surface": "郁子", + "readging": "むべ", + "pos": "名詞", + "pn": -0.195199 + }, + { + "surface": "酒精", + "readging": "しゅせい", + "pos": "名詞", + "pn": -0.195222 + }, + { + "surface": "得意先", + "readging": "とくいさき", + "pos": "名詞", + "pn": -0.195227 + }, + { + "surface": "隠し子", + "readging": "かくしご", + "pos": "名詞", + "pn": -0.195236 + }, + { + "surface": "人生", + "readging": "じんせい", + "pos": "名詞", + "pn": -0.195237 + }, + { + "surface": "肩身", + "readging": "かたみ", + "pos": "名詞", + "pn": -0.195265 + }, + { + "surface": "中波", + "readging": "ちゅうは", + "pos": "名詞", + "pn": -0.195267 + }, + { + "surface": "毘盧遮那仏", + "readging": "びるしゃなぶつ", + "pos": "名詞", + "pn": -0.195285 + }, + { + "surface": "ピンポン", + "readging": "ピンポン", + "pos": "名詞", + "pn": -0.195294 + }, + { + "surface": "間も無い", + "readging": "まもない", + "pos": "形容詞", + "pn": -0.195319 + }, + { + "surface": "孫呉", + "readging": "そんご", + "pos": "名詞", + "pn": -0.195365 + }, + { + "surface": "元来", + "readging": "がんらい", + "pos": "副詞", + "pn": -0.195367 + }, + { + "surface": "袋帯", + "readging": "ふくろおび", + "pos": "名詞", + "pn": -0.195368 + }, + { + "surface": "水仕", + "readging": "みずし", + "pos": "名詞", + "pn": -0.195374 + }, + { + "surface": "菜園", + "readging": "さいえん", + "pos": "名詞", + "pn": -0.195396 + }, + { + "surface": "不死身", + "readging": "ふじみ", + "pos": "名詞", + "pn": -0.195404 + }, + { + "surface": "滋養", + "readging": "じよう", + "pos": "名詞", + "pn": -0.19541 + }, + { + "surface": "矢場", + "readging": "やば", + "pos": "名詞", + "pn": -0.195412 + }, + { + "surface": "染", + "readging": "そめ", + "pos": "名詞", + "pn": -0.195438 + }, + { + "surface": "入植", + "readging": "にゅうしょく", + "pos": "名詞", + "pn": -0.195444 + }, + { + "surface": "宴席", + "readging": "えんせき", + "pos": "名詞", + "pn": -0.195446 + }, + { + "surface": "半ドン", + "readging": "はんドン", + "pos": "名詞", + "pn": -0.195451 + }, + { + "surface": "木組み", + "readging": "きぐみ", + "pos": "名詞", + "pn": -0.195466 + }, + { + "surface": "床面積", + "readging": "ゆかめんせき", + "pos": "名詞", + "pn": -0.195476 + }, + { + "surface": "建設業", + "readging": "けんせつぎょう", + "pos": "名詞", + "pn": -0.195481 + }, + { + "surface": "パンパン", + "readging": "パンパン", + "pos": "名詞", + "pn": -0.195488 + }, + { + "surface": "カポック", + "readging": "カポック", + "pos": "名詞", + "pn": -0.195493 + }, + { + "surface": "輾転反側", + "readging": "てんてんはんそく", + "pos": "名詞", + "pn": -0.195523 + }, + { + "surface": "添加", + "readging": "てんか", + "pos": "名詞", + "pn": -0.195534 + }, + { + "surface": "えんか物", + "readging": "えんかぶつ", + "pos": "名詞", + "pn": -0.195547 + }, + { + "surface": "急先鋒", + "readging": "きゅうせんぽう", + "pos": "名詞", + "pn": -0.195562 + }, + { + "surface": "職歴", + "readging": "しょくれき", + "pos": "名詞", + "pn": -0.195563 + }, + { + "surface": "木具", + "readging": "きぐ", + "pos": "名詞", + "pn": -0.195568 + }, + { + "surface": "予備役", + "readging": "よびえき", + "pos": "名詞", + "pn": -0.19557 + }, + { + "surface": "訳読", + "readging": "やくどく", + "pos": "名詞", + "pn": -0.195574 + }, + { + "surface": "謫居", + "readging": "たっきょ", + "pos": "名詞", + "pn": -0.195574 + }, + { + "surface": "ユーザンス", + "readging": "ユーザンス", + "pos": "名詞", + "pn": -0.195577 + }, + { + "surface": "茶箪笥", + "readging": "ちゃだんす", + "pos": "名詞", + "pn": -0.195596 + }, + { + "surface": "祥月命日", + "readging": "しょうつきめいにち", + "pos": "名詞", + "pn": -0.195604 + }, + { + "surface": "出撃", + "readging": "しゅつげき", + "pos": "名詞", + "pn": -0.195621 + }, + { + "surface": "美化", + "readging": "びか", + "pos": "名詞", + "pn": -0.195632 + }, + { + "surface": "軍用金", + "readging": "ぐんようきん", + "pos": "名詞", + "pn": -0.195654 + }, + { + "surface": "叙任", + "readging": "じょにん", + "pos": "名詞", + "pn": -0.195684 + }, + { + "surface": "ヒエラルキー", + "readging": "ヒエラルキー", + "pos": "名詞", + "pn": -0.195695 + }, + { + "surface": "衰運", + "readging": "すいうん", + "pos": "名詞", + "pn": -0.195702 + }, + { + "surface": "聖書", + "readging": "せいしょ", + "pos": "名詞", + "pn": -0.195713 + }, + { + "surface": "水性", + "readging": "みずしょう", + "pos": "名詞", + "pn": -0.195723 + }, + { + "surface": "詩意", + "readging": "しい", + "pos": "名詞", + "pn": -0.195727 + }, + { + "surface": "悵然", + "readging": "ちょうぜん", + "pos": "名詞", + "pn": -0.195747 + }, + { + "surface": "情火", + "readging": "じょうか", + "pos": "名詞", + "pn": -0.195759 + }, + { + "surface": "死守", + "readging": "ししゅ", + "pos": "名詞", + "pn": -0.195782 + }, + { + "surface": "公理系", + "readging": "こうりけい", + "pos": "名詞", + "pn": -0.195784 + }, + { + "surface": "客僧", + "readging": "きゃくそう", + "pos": "名詞", + "pn": -0.195789 + }, + { + "surface": "御座", + "readging": "ぎょざ", + "pos": "名詞", + "pn": -0.195814 + }, + { + "surface": "金相学", + "readging": "きんそうがく", + "pos": "名詞", + "pn": -0.195816 + }, + { + "surface": "斜光", + "readging": "しゃこう", + "pos": "名詞", + "pn": -0.195816 + }, + { + "surface": "ディテール", + "readging": "ディテール", + "pos": "名詞", + "pn": -0.195826 + }, + { + "surface": "認める", + "readging": "したためる", + "pos": "動詞", + "pn": -0.19584 + }, + { + "surface": "直に", + "readging": "じきに", + "pos": "副詞", + "pn": -0.195847 + }, + { + "surface": "時文", + "readging": "じぶん", + "pos": "名詞", + "pn": -0.195876 + }, + { + "surface": "滞納", + "readging": "たいのう", + "pos": "名詞", + "pn": -0.195876 + }, + { + "surface": "外貌", + "readging": "がいぼう", + "pos": "名詞", + "pn": -0.195881 + }, + { + "surface": "半途", + "readging": "はんと", + "pos": "名詞", + "pn": -0.195912 + }, + { + "surface": "ぴょこんと", + "readging": "ぴょこんと", + "pos": "副詞", + "pn": -0.19592 + }, + { + "surface": "磁化", + "readging": "じか", + "pos": "名詞", + "pn": -0.195928 + }, + { + "surface": "主管", + "readging": "しゅかん", + "pos": "名詞", + "pn": -0.195934 + }, + { + "surface": "高歌", + "readging": "こうか", + "pos": "名詞", + "pn": -0.195957 + }, + { + "surface": "平衡", + "readging": "へいこう", + "pos": "名詞", + "pn": -0.195961 + }, + { + "surface": "伐採", + "readging": "ばっさい", + "pos": "名詞", + "pn": -0.195981 + }, + { + "surface": "バイキング", + "readging": "バイキング", + "pos": "名詞", + "pn": -0.195987 + }, + { + "surface": "自己暗示", + "readging": "じこあんじ", + "pos": "名詞", + "pn": -0.196006 + }, + { + "surface": "親不孝", + "readging": "おやふこう", + "pos": "名詞", + "pn": -0.19601 + }, + { + "surface": "食い気", + "readging": "くいけ", + "pos": "名詞", + "pn": -0.196066 + }, + { + "surface": "西戎", + "readging": "せいじゅう", + "pos": "名詞", + "pn": -0.196069 + }, + { + "surface": "産み月", + "readging": "うみづき", + "pos": "名詞", + "pn": -0.196078 + }, + { + "surface": "レシーブ", + "readging": "レシーブ", + "pos": "名詞", + "pn": -0.19608 + }, + { + "surface": "殉ずる", + "readging": "じゅんずる", + "pos": "動詞", + "pn": -0.196083 + }, + { + "surface": "呼び水", + "readging": "よびみず", + "pos": "名詞", + "pn": -0.196103 + }, + { + "surface": "名乗字", + "readging": "なのりじ", + "pos": "名詞", + "pn": -0.196109 + }, + { + "surface": "三軍", + "readging": "さんぐん", + "pos": "名詞", + "pn": -0.196117 + }, + { + "surface": "六韜三略", + "readging": "りくとうさんりゃく", + "pos": "名詞", + "pn": -0.196124 + }, + { + "surface": "標目", + "readging": "ひょうもく", + "pos": "名詞", + "pn": -0.196138 + }, + { + "surface": "振立てる", + "readging": "ふりたてる", + "pos": "動詞", + "pn": -0.19614 + }, + { + "surface": "半永久", + "readging": "はんえいきゅう", + "pos": "名詞", + "pn": -0.196155 + }, + { + "surface": "員外", + "readging": "いんがい", + "pos": "名詞", + "pn": -0.196169 + }, + { + "surface": "現在高", + "readging": "げんざいだか", + "pos": "名詞", + "pn": -0.196182 + }, + { + "surface": "兄弟", + "readging": "けいてい", + "pos": "名詞", + "pn": -0.196184 + }, + { + "surface": "図解", + "readging": "ずかい", + "pos": "名詞", + "pn": -0.196185 + }, + { + "surface": "高閲", + "readging": "こうえつ", + "pos": "名詞", + "pn": -0.196187 + }, + { + "surface": "三角関数", + "readging": "さんかくかんすう", + "pos": "名詞", + "pn": -0.196193 + }, + { + "surface": "居士", + "readging": "こじ", + "pos": "名詞", + "pn": -0.196202 + }, + { + "surface": "馬糧", + "readging": "ばりょう", + "pos": "名詞", + "pn": -0.196209 + }, + { + "surface": "許可", + "readging": "きょか", + "pos": "名詞", + "pn": -0.196226 + }, + { + "surface": "飛札", + "readging": "ひさつ", + "pos": "名詞", + "pn": -0.196237 + }, + { + "surface": "酔心地", + "readging": "よいごこち", + "pos": "名詞", + "pn": -0.196267 + }, + { + "surface": "格別", + "readging": "かくべつ", + "pos": "副詞", + "pn": -0.196275 + }, + { + "surface": "多年草", + "readging": "たねんそう", + "pos": "名詞", + "pn": -0.196285 + }, + { + "surface": "物物交換", + "readging": "ぶつぶつこうかん", + "pos": "名詞", + "pn": -0.196294 + }, + { + "surface": "計り売り", + "readging": "はかりうり", + "pos": "名詞", + "pn": -0.196335 + }, + { + "surface": "落胤", + "readging": "らくいん", + "pos": "名詞", + "pn": -0.196339 + }, + { + "surface": "目の当り", + "readging": "まのあたり", + "pos": "名詞", + "pn": -0.196341 + }, + { + "surface": "盛上げる", + "readging": "もりあげる", + "pos": "動詞", + "pn": -0.196345 + }, + { + "surface": "諮詢", + "readging": "しじゅん", + "pos": "名詞", + "pn": -0.196347 + }, + { + "surface": "産出", + "readging": "さんしゅつ", + "pos": "名詞", + "pn": -0.196352 + }, + { + "surface": "緑藻", + "readging": "りょくそう", + "pos": "名詞", + "pn": -0.196361 + }, + { + "surface": "右近の橘", + "readging": "うこんのたちばな", + "pos": "名詞", + "pn": -0.196373 + }, + { + "surface": "生息", + "readging": "せいそく", + "pos": "名詞", + "pn": -0.196375 + }, + { + "surface": "訳詩", + "readging": "やくし", + "pos": "名詞", + "pn": -0.196382 + }, + { + "surface": "交配", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.196402 + }, + { + "surface": "豪胆", + "readging": "ごうたん", + "pos": "名詞", + "pn": -0.196407 + }, + { + "surface": "書屋", + "readging": "しょおく", + "pos": "名詞", + "pn": -0.196414 + }, + { + "surface": "愚弟", + "readging": "ぐてい", + "pos": "名詞", + "pn": -0.196421 + }, + { + "surface": "キープ", + "readging": "キープ", + "pos": "名詞", + "pn": -0.196434 + }, + { + "surface": "絶命", + "readging": "ぜつめい", + "pos": "名詞", + "pn": -0.196458 + }, + { + "surface": "ピューリタン", + "readging": "ピューリタン", + "pos": "名詞", + "pn": -0.196475 + }, + { + "surface": "公租", + "readging": "こうそ", + "pos": "名詞", + "pn": -0.19648 + }, + { + "surface": "テクノロジー", + "readging": "テクノロジー", + "pos": "名詞", + "pn": -0.196492 + }, + { + "surface": "自門", + "readging": "じもん", + "pos": "名詞", + "pn": -0.196503 + }, + { + "surface": "二乗", + "readging": "にじょう", + "pos": "名詞", + "pn": -0.196519 + }, + { + "surface": "黙止", + "readging": "もくし", + "pos": "名詞", + "pn": -0.196526 + }, + { + "surface": "聞納め", + "readging": "ききおさめ", + "pos": "名詞", + "pn": -0.196529 + }, + { + "surface": "砂山", + "readging": "すなやま", + "pos": "名詞", + "pn": -0.196531 + }, + { + "surface": "のめのめ", + "readging": "のめのめ", + "pos": "副詞", + "pn": -0.196545 + }, + { + "surface": "地の利", + "readging": "ちのり", + "pos": "名詞", + "pn": -0.196551 + }, + { + "surface": "乱れ飛ぶ", + "readging": "みだれとぶ", + "pos": "動詞", + "pn": -0.196556 + }, + { + "surface": "巨木", + "readging": "きょぼく", + "pos": "名詞", + "pn": -0.196566 + }, + { + "surface": "角ぐむ", + "readging": "つのぐむ", + "pos": "動詞", + "pn": -0.19657 + }, + { + "surface": "歳入", + "readging": "さいにゅう", + "pos": "名詞", + "pn": -0.19657 + }, + { + "surface": "ゲーム", + "readging": "ゲーム", + "pos": "名詞", + "pn": -0.196583 + }, + { + "surface": "ゲート", + "readging": "ゲート", + "pos": "名詞", + "pn": -0.196583 + }, + { + "surface": "向き直る", + "readging": "むきなおる", + "pos": "動詞", + "pn": -0.196596 + }, + { + "surface": "露営", + "readging": "ろえい", + "pos": "名詞", + "pn": -0.196597 + }, + { + "surface": "ギガ", + "readging": "ギガ", + "pos": "名詞", + "pn": -0.1966 + }, + { + "surface": "出場", + "readging": "でば", + "pos": "名詞", + "pn": -0.196609 + }, + { + "surface": "軽口", + "readging": "かるくち", + "pos": "名詞", + "pn": -0.196634 + }, + { + "surface": "おぼこ", + "readging": "おぼこ", + "pos": "名詞", + "pn": -0.196646 + }, + { + "surface": "日曜学校", + "readging": "にちようがっこう", + "pos": "名詞", + "pn": -0.196653 + }, + { + "surface": "塵界", + "readging": "じんかい", + "pos": "名詞", + "pn": -0.196672 + }, + { + "surface": "賜う", + "readging": "たまう", + "pos": "動詞", + "pn": -0.196678 + }, + { + "surface": "民生", + "readging": "みんせい", + "pos": "名詞", + "pn": -0.19668 + }, + { + "surface": "堂守", + "readging": "どうもり", + "pos": "名詞", + "pn": -0.196686 + }, + { + "surface": "人切り包丁", + "readging": "ひときりぼうちょう", + "pos": "名詞", + "pn": -0.196699 + }, + { + "surface": "手狭", + "readging": "てぜま", + "pos": "名詞", + "pn": -0.196714 + }, + { + "surface": "淫風", + "readging": "いんぷう", + "pos": "名詞", + "pn": -0.196721 + }, + { + "surface": "総領事", + "readging": "そうりょうじ", + "pos": "名詞", + "pn": -0.196734 + }, + { + "surface": "ガレージ", + "readging": "ガレージ", + "pos": "名詞", + "pn": -0.196748 + }, + { + "surface": "私法人", + "readging": "しほうじん", + "pos": "名詞", + "pn": -0.196759 + }, + { + "surface": "否む", + "readging": "いなむ", + "pos": "動詞", + "pn": -0.196765 + }, + { + "surface": "前者", + "readging": "ぜんしゃ", + "pos": "名詞", + "pn": -0.19677 + }, + { + "surface": "両刀遣い", + "readging": "りょうとうづかい", + "pos": "名詞", + "pn": -0.1968 + }, + { + "surface": "トランス", + "readging": "トランス", + "pos": "名詞", + "pn": -0.196813 + }, + { + "surface": "曹長", + "readging": "そうちょう", + "pos": "名詞", + "pn": -0.196823 + }, + { + "surface": "手槍", + "readging": "てやり", + "pos": "名詞", + "pn": -0.196825 + }, + { + "surface": "クローム", + "readging": "クローム", + "pos": "名詞", + "pn": -0.196825 + }, + { + "surface": "度盛", + "readging": "どもり", + "pos": "名詞", + "pn": -0.196845 + }, + { + "surface": "天地開闢", + "readging": "てんちかいびゃく", + "pos": "名詞", + "pn": -0.196855 + }, + { + "surface": "乗回す", + "readging": "のりまわす", + "pos": "動詞", + "pn": -0.196868 + }, + { + "surface": "糧秣", + "readging": "りょうまつ", + "pos": "名詞", + "pn": -0.196876 + }, + { + "surface": "公開状", + "readging": "こうかいじょう", + "pos": "名詞", + "pn": -0.196881 + }, + { + "surface": "夜歩き", + "readging": "よあるき", + "pos": "名詞", + "pn": -0.196884 + }, + { + "surface": "爆心", + "readging": "ばくしん", + "pos": "名詞", + "pn": -0.196902 + }, + { + "surface": "相乗作用", + "readging": "そうじょうさよう", + "pos": "名詞", + "pn": -0.196907 + }, + { + "surface": "突進", + "readging": "とっしん", + "pos": "名詞", + "pn": -0.19691 + }, + { + "surface": "躍り上がる", + "readging": "おどりあがる", + "pos": "動詞", + "pn": -0.196916 + }, + { + "surface": "行抜け", + "readging": "ゆきぬけ", + "pos": "名詞", + "pn": -0.196933 + }, + { + "surface": "緑地帯", + "readging": "りょくちたい", + "pos": "名詞", + "pn": -0.196947 + }, + { + "surface": "耐乏", + "readging": "たいぼう", + "pos": "名詞", + "pn": -0.19695 + }, + { + "surface": "風俗歌", + "readging": "ふうぞくうた", + "pos": "名詞", + "pn": -0.196961 + }, + { + "surface": "地方長官", + "readging": "ちほうちょうかん", + "pos": "名詞", + "pn": -0.196983 + }, + { + "surface": "小蔀", + "readging": "こじとみ", + "pos": "名詞", + "pn": -0.197003 + }, + { + "surface": "厳君", + "readging": "げんくん", + "pos": "名詞", + "pn": -0.197004 + }, + { + "surface": "摘録", + "readging": "てきろく", + "pos": "名詞", + "pn": -0.197011 + }, + { + "surface": "唐土", + "readging": "とうど", + "pos": "名詞", + "pn": -0.197012 + }, + { + "surface": "エスコート", + "readging": "エスコート", + "pos": "名詞", + "pn": -0.197029 + }, + { + "surface": "鼻骨", + "readging": "びこつ", + "pos": "名詞", + "pn": -0.197031 + }, + { + "surface": "減刑", + "readging": "げんけい", + "pos": "名詞", + "pn": -0.19704 + }, + { + "surface": "借款", + "readging": "しゃっかん", + "pos": "名詞", + "pn": -0.197042 + }, + { + "surface": "六合", + "readging": "りくごう", + "pos": "名詞", + "pn": -0.19705 + }, + { + "surface": "退潮", + "readging": "たいちょう", + "pos": "名詞", + "pn": -0.197055 + }, + { + "surface": "川面", + "readging": "かわも", + "pos": "名詞", + "pn": -0.197057 + }, + { + "surface": "紋帳", + "readging": "もんちょう", + "pos": "名詞", + "pn": -0.197066 + }, + { + "surface": "鉱層", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.19708 + }, + { + "surface": "低吟", + "readging": "ていぎん", + "pos": "名詞", + "pn": -0.197096 + }, + { + "surface": "働き掛ける", + "readging": "はたらきかける", + "pos": "動詞", + "pn": -0.19711 + }, + { + "surface": "役向き", + "readging": "やくむき", + "pos": "名詞", + "pn": -0.197123 + }, + { + "surface": "背光性", + "readging": "はいこうせい", + "pos": "名詞", + "pn": -0.197126 + }, + { + "surface": "外勤", + "readging": "がいきん", + "pos": "名詞", + "pn": -0.19713 + }, + { + "surface": "遺伝性", + "readging": "いでんせい", + "pos": "名詞", + "pn": -0.19713 + }, + { + "surface": "円頂黒衣", + "readging": "えんちょうこくい", + "pos": "名詞", + "pn": -0.197137 + }, + { + "surface": "海人草", + "readging": "かいにんそう", + "pos": "名詞", + "pn": -0.197147 + }, + { + "surface": "税務署", + "readging": "ぜいむしょ", + "pos": "名詞", + "pn": -0.197166 + }, + { + "surface": "逆順", + "readging": "ぎゃくじゅん", + "pos": "名詞", + "pn": -0.197178 + }, + { + "surface": "内謁", + "readging": "ないえつ", + "pos": "名詞", + "pn": -0.197225 + }, + { + "surface": "テクニカラー", + "readging": "テクニカラー", + "pos": "名詞", + "pn": -0.197231 + }, + { + "surface": "日長", + "readging": "ひなが", + "pos": "名詞", + "pn": -0.197244 + }, + { + "surface": "反歩", + "readging": "たんぶ", + "pos": "名詞", + "pn": -0.197251 + }, + { + "surface": "家族制度", + "readging": "かぞくせいど", + "pos": "名詞", + "pn": -0.197253 + }, + { + "surface": "造機", + "readging": "ぞうき", + "pos": "名詞", + "pn": -0.197261 + }, + { + "surface": "仮住い", + "readging": "かりずまい", + "pos": "名詞", + "pn": -0.197263 + }, + { + "surface": "縦列", + "readging": "じゅうれつ", + "pos": "名詞", + "pn": -0.197273 + }, + { + "surface": "去春", + "readging": "きょしゅん", + "pos": "名詞", + "pn": -0.197291 + }, + { + "surface": "ウイークリー", + "readging": "ウイークリー", + "pos": "名詞", + "pn": -0.19731 + }, + { + "surface": "親馬鹿", + "readging": "おやばか", + "pos": "名詞", + "pn": -0.197317 + }, + { + "surface": "夫君", + "readging": "ふくん", + "pos": "名詞", + "pn": -0.197318 + }, + { + "surface": "統語論", + "readging": "とうごろん", + "pos": "名詞", + "pn": -0.197339 + }, + { + "surface": "二毛作", + "readging": "にもうさく", + "pos": "名詞", + "pn": -0.197342 + }, + { + "surface": "泣き虫", + "readging": "なきむし", + "pos": "名詞", + "pn": -0.197345 + }, + { + "surface": "唐物", + "readging": "とうぶつ", + "pos": "名詞", + "pn": -0.197351 + }, + { + "surface": "高察", + "readging": "こうさつ", + "pos": "名詞", + "pn": -0.197361 + }, + { + "surface": "二親", + "readging": "ふたおや", + "pos": "名詞", + "pn": -0.197362 + }, + { + "surface": "シェープ アップ", + "readging": "シェープ アップ", + "pos": "名詞", + "pn": -0.197362 + }, + { + "surface": "伶人", + "readging": "れいじん", + "pos": "名詞", + "pn": -0.197374 + }, + { + "surface": "寓居", + "readging": "ぐうきょ", + "pos": "名詞", + "pn": -0.197376 + }, + { + "surface": "空堀", + "readging": "からぼり", + "pos": "名詞", + "pn": -0.197385 + }, + { + "surface": "燃え殻", + "readging": "もえがら", + "pos": "名詞", + "pn": -0.197397 + }, + { + "surface": "中耕", + "readging": "ちゅうこう", + "pos": "名詞", + "pn": -0.197397 + }, + { + "surface": "工務店", + "readging": "こうむてん", + "pos": "名詞", + "pn": -0.1974 + }, + { + "surface": "思い知る", + "readging": "おもいしる", + "pos": "動詞", + "pn": -0.19742 + }, + { + "surface": "蕪辞", + "readging": "ぶじ", + "pos": "名詞", + "pn": -0.197441 + }, + { + "surface": "現当", + "readging": "げんとう", + "pos": "名詞", + "pn": -0.197458 + }, + { + "surface": "米穀年度", + "readging": "べいこくねんど", + "pos": "名詞", + "pn": -0.197459 + }, + { + "surface": "行刑", + "readging": "ぎょうけい", + "pos": "名詞", + "pn": -0.19747 + }, + { + "surface": "客種", + "readging": "きゃくだね", + "pos": "名詞", + "pn": -0.197472 + }, + { + "surface": "歌い女", + "readging": "うたいめ", + "pos": "名詞", + "pn": -0.197495 + }, + { + "surface": "楽音", + "readging": "がくおん", + "pos": "名詞", + "pn": -0.197509 + }, + { + "surface": "巧緻", + "readging": "こうち", + "pos": "名詞", + "pn": -0.197525 + }, + { + "surface": "常節", + "readging": "とこぶし", + "pos": "名詞", + "pn": -0.197525 + }, + { + "surface": "義歯", + "readging": "ぎし", + "pos": "名詞", + "pn": -0.197531 + }, + { + "surface": "歴戦", + "readging": "れきせん", + "pos": "名詞", + "pn": -0.197553 + }, + { + "surface": "政変", + "readging": "せいへん", + "pos": "名詞", + "pn": -0.197564 + }, + { + "surface": "習癖", + "readging": "しゅうへき", + "pos": "名詞", + "pn": -0.197572 + }, + { + "surface": "血糖", + "readging": "けっとう", + "pos": "名詞", + "pn": -0.197587 + }, + { + "surface": "連合国", + "readging": "れんごうこく", + "pos": "名詞", + "pn": -0.197596 + }, + { + "surface": "目遣い", + "readging": "めづかい", + "pos": "名詞", + "pn": -0.197609 + }, + { + "surface": "楽典", + "readging": "がくてん", + "pos": "名詞", + "pn": -0.197623 + }, + { + "surface": "懸軍", + "readging": "けんぐん", + "pos": "名詞", + "pn": -0.197632 + }, + { + "surface": "無紋", + "readging": "むもん", + "pos": "名詞", + "pn": -0.197648 + }, + { + "surface": "習作", + "readging": "しゅうさく", + "pos": "名詞", + "pn": -0.197657 + }, + { + "surface": "別派", + "readging": "べっぱ", + "pos": "名詞", + "pn": -0.19766 + }, + { + "surface": "魚影", + "readging": "ぎょえい", + "pos": "名詞", + "pn": -0.197675 + }, + { + "surface": "初等教育", + "readging": "しょとうきょういく", + "pos": "名詞", + "pn": -0.19768 + }, + { + "surface": "連用", + "readging": "れんよう", + "pos": "名詞", + "pn": -0.19768 + }, + { + "surface": "真冬日", + "readging": "まふゆび", + "pos": "名詞", + "pn": -0.19768 + }, + { + "surface": "守株", + "readging": "しゅしゅ", + "pos": "名詞", + "pn": -0.197696 + }, + { + "surface": "転調", + "readging": "てんちょう", + "pos": "名詞", + "pn": -0.197699 + }, + { + "surface": "勝誇る", + "readging": "かちほこる", + "pos": "動詞", + "pn": -0.197712 + }, + { + "surface": "仙骨", + "readging": "せんこつ", + "pos": "名詞", + "pn": -0.197713 + }, + { + "surface": "食べ滓", + "readging": "たべかす", + "pos": "名詞", + "pn": -0.197715 + }, + { + "surface": "突っ立てる", + "readging": "つったてる", + "pos": "動詞", + "pn": -0.19773 + }, + { + "surface": "床店", + "readging": "とこみせ", + "pos": "名詞", + "pn": -0.197741 + }, + { + "surface": "経験論", + "readging": "けいけんろん", + "pos": "名詞", + "pn": -0.197749 + }, + { + "surface": "私小説", + "readging": "わたくししょうせつ", + "pos": "名詞", + "pn": -0.197757 + }, + { + "surface": "地顔", + "readging": "じがお", + "pos": "名詞", + "pn": -0.197761 + }, + { + "surface": "フランチャイズ", + "readging": "フランチャイズ", + "pos": "名詞", + "pn": -0.197762 + }, + { + "surface": "アルピニスト", + "readging": "アルピニスト", + "pos": "名詞", + "pn": -0.197766 + }, + { + "surface": "エンサイクロペディア", + "readging": "エンサイクロペディア", + "pos": "名詞", + "pn": -0.197771 + }, + { + "surface": "新婚", + "readging": "しんこん", + "pos": "名詞", + "pn": -0.197782 + }, + { + "surface": "林業", + "readging": "りんぎょう", + "pos": "名詞", + "pn": -0.197786 + }, + { + "surface": "中の口", + "readging": "なかのくち", + "pos": "名詞", + "pn": -0.197803 + }, + { + "surface": "ハモニカ", + "readging": "ハモニカ", + "pos": "名詞", + "pn": -0.197804 + }, + { + "surface": "鋒", + "readging": "ほう", + "pos": "名詞", + "pn": -0.197807 + }, + { + "surface": "根菜", + "readging": "こんさい", + "pos": "名詞", + "pn": -0.197816 + }, + { + "surface": "種皮", + "readging": "しゅひ", + "pos": "名詞", + "pn": -0.197818 + }, + { + "surface": "家常茶飯", + "readging": "かじょうさはん", + "pos": "名詞", + "pn": -0.197829 + }, + { + "surface": "名親", + "readging": "なおや", + "pos": "名詞", + "pn": -0.197833 + }, + { + "surface": "底打ち", + "readging": "そこうち", + "pos": "名詞", + "pn": -0.197839 + }, + { + "surface": "戦史", + "readging": "せんし", + "pos": "名詞", + "pn": -0.197851 + }, + { + "surface": "愛欲", + "readging": "あいよく", + "pos": "名詞", + "pn": -0.197863 + }, + { + "surface": "地方色", + "readging": "ちほうしょく", + "pos": "名詞", + "pn": -0.197879 + }, + { + "surface": "面頬", + "readging": "めんぼお", + "pos": "名詞", + "pn": -0.197879 + }, + { + "surface": "ヘレニズム", + "readging": "ヘレニズム", + "pos": "名詞", + "pn": -0.197879 + }, + { + "surface": "負債勘定", + "readging": "ふさいかんじょう", + "pos": "名詞", + "pn": -0.197879 + }, + { + "surface": "経済界", + "readging": "けいざいかい", + "pos": "名詞", + "pn": -0.197888 + }, + { + "surface": "メタノール", + "readging": "メタノール", + "pos": "名詞", + "pn": -0.197893 + }, + { + "surface": "役所", + "readging": "やくしょ", + "pos": "名詞", + "pn": -0.197926 + }, + { + "surface": "立法府", + "readging": "りっぽうふ", + "pos": "名詞", + "pn": -0.197933 + }, + { + "surface": "差向ける", + "readging": "さしむける", + "pos": "動詞", + "pn": -0.197936 + }, + { + "surface": "空爆", + "readging": "くうばく", + "pos": "名詞", + "pn": -0.197954 + }, + { + "surface": "年弱", + "readging": "としよわ", + "pos": "名詞", + "pn": -0.197969 + }, + { + "surface": "無罪", + "readging": "むざい", + "pos": "名詞", + "pn": -0.197983 + }, + { + "surface": "切出す", + "readging": "きりだす", + "pos": "動詞", + "pn": -0.197984 + }, + { + "surface": "人あしらい", + "readging": "ひとあしらい", + "pos": "名詞", + "pn": -0.197995 + }, + { + "surface": "上声", + "readging": "じょうしょう", + "pos": "名詞", + "pn": -0.198002 + }, + { + "surface": "杉重", + "readging": "すぎじゅう", + "pos": "名詞", + "pn": -0.198019 + }, + { + "surface": "磯馴れ松", + "readging": "そなれまつ", + "pos": "名詞", + "pn": -0.198022 + }, + { + "surface": "脱穀", + "readging": "だっこく", + "pos": "名詞", + "pn": -0.198067 + }, + { + "surface": "三才", + "readging": "さんさい", + "pos": "名詞", + "pn": -0.198072 + }, + { + "surface": "シーソー", + "readging": "シーソーゲーム", + "pos": "名詞", + "pn": -0.198094 + }, + { + "surface": "ウエート", + "readging": "ウエート", + "pos": "名詞", + "pn": -0.198096 + }, + { + "surface": "捌け口", + "readging": "はけぐち", + "pos": "名詞", + "pn": -0.198104 + }, + { + "surface": "混作", + "readging": "こんさく", + "pos": "名詞", + "pn": -0.198119 + }, + { + "surface": "語義", + "readging": "ごぎ", + "pos": "名詞", + "pn": -0.198137 + }, + { + "surface": "撰者", + "readging": "せんじゃ", + "pos": "名詞", + "pn": -0.198146 + }, + { + "surface": "窒死", + "readging": "ちっし", + "pos": "名詞", + "pn": -0.198213 + }, + { + "surface": "郷社", + "readging": "ごうしゃ", + "pos": "名詞", + "pn": -0.198222 + }, + { + "surface": "閃光", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.198225 + }, + { + "surface": "結言", + "readging": "けつげん", + "pos": "名詞", + "pn": -0.198228 + }, + { + "surface": "国際語", + "readging": "こくさいご", + "pos": "名詞", + "pn": -0.198232 + }, + { + "surface": "呈する", + "readging": "ていする", + "pos": "動詞", + "pn": -0.198242 + }, + { + "surface": "公証人", + "readging": "こうしょうにん", + "pos": "名詞", + "pn": -0.198248 + }, + { + "surface": "綴錦", + "readging": "つづれにしき", + "pos": "名詞", + "pn": -0.198252 + }, + { + "surface": "完納", + "readging": "かんのう", + "pos": "名詞", + "pn": -0.198257 + }, + { + "surface": "停職", + "readging": "ていしょく", + "pos": "名詞", + "pn": -0.198273 + }, + { + "surface": "役者子供", + "readging": "やくしゃこども", + "pos": "名詞", + "pn": -0.198302 + }, + { + "surface": "霊位", + "readging": "れいい", + "pos": "名詞", + "pn": -0.198302 + }, + { + "surface": "肉牛", + "readging": "にくぎゅう", + "pos": "名詞", + "pn": -0.198314 + }, + { + "surface": "軍法会議", + "readging": "ぐんぽうかいぎ", + "pos": "名詞", + "pn": -0.19834 + }, + { + "surface": "絶息", + "readging": "ぜっそく", + "pos": "名詞", + "pn": -0.198346 + }, + { + "surface": "地鎮祭", + "readging": "じちんさい", + "pos": "名詞", + "pn": -0.198353 + }, + { + "surface": "むっちり", + "readging": "むっちり", + "pos": "副詞", + "pn": -0.198375 + }, + { + "surface": "乾葉", + "readging": "ひば", + "pos": "名詞", + "pn": -0.198389 + }, + { + "surface": "帰宅", + "readging": "きたく", + "pos": "名詞", + "pn": -0.198398 + }, + { + "surface": "接着", + "readging": "せっちゃく", + "pos": "名詞", + "pn": -0.1984 + }, + { + "surface": "手弄り", + "readging": "てまさぐり", + "pos": "名詞", + "pn": -0.198413 + }, + { + "surface": "国典", + "readging": "こくてん", + "pos": "名詞", + "pn": -0.198429 + }, + { + "surface": "服従", + "readging": "ふくじゅう", + "pos": "名詞", + "pn": -0.198434 + }, + { + "surface": "終漁", + "readging": "しゅうりょう", + "pos": "名詞", + "pn": -0.198456 + }, + { + "surface": "国家老", + "readging": "くにがろう", + "pos": "名詞", + "pn": -0.198458 + }, + { + "surface": "除目", + "readging": "じもく", + "pos": "名詞", + "pn": -0.198466 + }, + { + "surface": "護符", + "readging": "ごふう", + "pos": "名詞", + "pn": -0.198471 + }, + { + "surface": "既定", + "readging": "きてい", + "pos": "名詞", + "pn": -0.198488 + }, + { + "surface": "側臥", + "readging": "そくが", + "pos": "名詞", + "pn": -0.198492 + }, + { + "surface": "現数", + "readging": "げんすう", + "pos": "名詞", + "pn": -0.198497 + }, + { + "surface": "僧堂", + "readging": "そうどう", + "pos": "名詞", + "pn": -0.198532 + }, + { + "surface": "筋立", + "readging": "すじだて", + "pos": "名詞", + "pn": -0.198555 + }, + { + "surface": "肉食妻帯", + "readging": "にくじきさいたい", + "pos": "名詞", + "pn": -0.198556 + }, + { + "surface": "袖丈", + "readging": "そでたけ", + "pos": "名詞", + "pn": -0.19857 + }, + { + "surface": "勝越す", + "readging": "かちこす", + "pos": "動詞", + "pn": -0.198574 + }, + { + "surface": "身欠鰊", + "readging": "みがきにしん", + "pos": "名詞", + "pn": -0.198586 + }, + { + "surface": "ブランド", + "readging": "ブランド", + "pos": "名詞", + "pn": -0.1986 + }, + { + "surface": "立て替える", + "readging": "たてかえる", + "pos": "動詞", + "pn": -0.198618 + }, + { + "surface": "ズルチン", + "readging": "ズルチン", + "pos": "名詞", + "pn": -0.198643 + }, + { + "surface": "芝居小屋", + "readging": "しばい", + "pos": "名詞", + "pn": -0.19868 + }, + { + "surface": "増設", + "readging": "ぞうせつ", + "pos": "名詞", + "pn": -0.198683 + }, + { + "surface": "梅酒", + "readging": "うめしゅ", + "pos": "名詞", + "pn": -0.198696 + }, + { + "surface": "冊立", + "readging": "さくりつ", + "pos": "名詞", + "pn": -0.198717 + }, + { + "surface": "自滅", + "readging": "じめつ", + "pos": "名詞", + "pn": -0.198723 + }, + { + "surface": "機関紙", + "readging": "きかんし", + "pos": "名詞", + "pn": -0.198731 + }, + { + "surface": "海髪", + "readging": "おご", + "pos": "名詞", + "pn": -0.198735 + }, + { + "surface": "大呼", + "readging": "たいこ", + "pos": "名詞", + "pn": -0.198735 + }, + { + "surface": "小走り", + "readging": "こばしり", + "pos": "名詞", + "pn": -0.198739 + }, + { + "surface": "変り種", + "readging": "かわりだね", + "pos": "名詞", + "pn": -0.198746 + }, + { + "surface": "先先", + "readging": "さきざき", + "pos": "名詞", + "pn": -0.198764 + }, + { + "surface": "宗論", + "readging": "しゅうろん", + "pos": "名詞", + "pn": -0.198769 + }, + { + "surface": "尋ね人", + "readging": "たずねびと", + "pos": "名詞", + "pn": -0.198773 + }, + { + "surface": "暮色", + "readging": "ぼしょく", + "pos": "名詞", + "pn": -0.198779 + }, + { + "surface": "心土", + "readging": "しんど", + "pos": "名詞", + "pn": -0.198791 + }, + { + "surface": "分乗", + "readging": "ぶんじょう", + "pos": "名詞", + "pn": -0.198816 + }, + { + "surface": "仲春", + "readging": "ちゅうしゅん", + "pos": "名詞", + "pn": -0.198822 + }, + { + "surface": "諭告", + "readging": "ゆこく", + "pos": "名詞", + "pn": -0.198825 + }, + { + "surface": "礼物", + "readging": "れいもつ", + "pos": "名詞", + "pn": -0.19883 + }, + { + "surface": "他年", + "readging": "たねん", + "pos": "名詞", + "pn": -0.198844 + }, + { + "surface": "見ず知らず", + "readging": "みずしらず", + "pos": "名詞", + "pn": -0.198857 + }, + { + "surface": "元首", + "readging": "げんしゅ", + "pos": "名詞", + "pn": -0.198859 + }, + { + "surface": "田野", + "readging": "でんや", + "pos": "名詞", + "pn": -0.198873 + }, + { + "surface": "岩場", + "readging": "いわば", + "pos": "名詞", + "pn": -0.198878 + }, + { + "surface": "希書", + "readging": "きしょ", + "pos": "名詞", + "pn": -0.198882 + }, + { + "surface": "母物", + "readging": "ははもの", + "pos": "名詞", + "pn": -0.198908 + }, + { + "surface": "上覧", + "readging": "じょうらん", + "pos": "名詞", + "pn": -0.19891 + }, + { + "surface": "尊父", + "readging": "そんぷ", + "pos": "名詞", + "pn": -0.198924 + }, + { + "surface": "由旬", + "readging": "ゆじゅん", + "pos": "名詞", + "pn": -0.198945 + }, + { + "surface": "検事局", + "readging": "けんじきょく", + "pos": "名詞", + "pn": -0.198945 + }, + { + "surface": "酒屋", + "readging": "さかや", + "pos": "名詞", + "pn": -0.198949 + }, + { + "surface": "筆つき", + "readging": "ふでつき", + "pos": "名詞", + "pn": -0.198962 + }, + { + "surface": "助産婦", + "readging": "じょさんぷ", + "pos": "名詞", + "pn": -0.198972 + }, + { + "surface": "免許", + "readging": "めんきょ", + "pos": "名詞", + "pn": -0.198973 + }, + { + "surface": "ついと", + "readging": "ついと", + "pos": "副詞", + "pn": -0.198978 + }, + { + "surface": "インターチェンジ", + "readging": "インターチェンジ", + "pos": "名詞", + "pn": -0.198982 + }, + { + "surface": "神代文字", + "readging": "じんだいもじ", + "pos": "名詞", + "pn": -0.198984 + }, + { + "surface": "受け答え", + "readging": "うけこたえ", + "pos": "名詞", + "pn": -0.199005 + }, + { + "surface": "燕", + "readging": "つばくら", + "pos": "名詞", + "pn": -0.199015 + }, + { + "surface": "感光紙", + "readging": "かんこうし", + "pos": "名詞", + "pn": -0.199026 + }, + { + "surface": "単数", + "readging": "たんすう", + "pos": "名詞", + "pn": -0.199056 + }, + { + "surface": "造立", + "readging": "ぞうりゅう", + "pos": "名詞", + "pn": -0.199066 + }, + { + "surface": "手合せ", + "readging": "てあわせ", + "pos": "名詞", + "pn": -0.199067 + }, + { + "surface": "アンデパンダン", + "readging": "アンデパンダン", + "pos": "名詞", + "pn": -0.199089 + }, + { + "surface": "句読", + "readging": "くとう", + "pos": "名詞", + "pn": -0.199092 + }, + { + "surface": "代署", + "readging": "だいしょ", + "pos": "名詞", + "pn": -0.199094 + }, + { + "surface": "手振り", + "readging": "てぶり", + "pos": "名詞", + "pn": -0.199098 + }, + { + "surface": "錯角", + "readging": "さっかく", + "pos": "名詞", + "pn": -0.199113 + }, + { + "surface": "セルロース", + "readging": "セルロース", + "pos": "名詞", + "pn": -0.199149 + }, + { + "surface": "銀河系", + "readging": "ぎんがけい", + "pos": "名詞", + "pn": -0.199152 + }, + { + "surface": "深読み", + "readging": "ふかよみ", + "pos": "名詞", + "pn": -0.199163 + }, + { + "surface": "宿料", + "readging": "しゅくりょう", + "pos": "名詞", + "pn": -0.199168 + }, + { + "surface": "口寄せ", + "readging": "くちよせ", + "pos": "名詞", + "pn": -0.199172 + }, + { + "surface": "歯形", + "readging": "はがた", + "pos": "名詞", + "pn": -0.199176 + }, + { + "surface": "吟声", + "readging": "ぎんせい", + "pos": "名詞", + "pn": -0.199183 + }, + { + "surface": "地吹雪", + "readging": "じふぶき", + "pos": "名詞", + "pn": -0.199208 + }, + { + "surface": "和気藹藹", + "readging": "わきあいあい", + "pos": "名詞", + "pn": -0.199236 + }, + { + "surface": "ファクター", + "readging": "ファクター", + "pos": "名詞", + "pn": -0.19924 + }, + { + "surface": "根問い", + "readging": "ねどい", + "pos": "名詞", + "pn": -0.199247 + }, + { + "surface": "手押し", + "readging": "ておし", + "pos": "名詞", + "pn": -0.199248 + }, + { + "surface": "五七調", + "readging": "ごしちちょう", + "pos": "名詞", + "pn": -0.199249 + }, + { + "surface": "アバン ゲール", + "readging": "アバン ゲール", + "pos": "名詞", + "pn": -0.199271 + }, + { + "surface": "高まる", + "readging": "たかまる", + "pos": "動詞", + "pn": -0.199283 + }, + { + "surface": "末書", + "readging": "まっしょ", + "pos": "名詞", + "pn": -0.199289 + }, + { + "surface": "門松", + "readging": "かどまつ", + "pos": "名詞", + "pn": -0.199304 + }, + { + "surface": "稜線", + "readging": "りょうせん", + "pos": "名詞", + "pn": -0.199336 + }, + { + "surface": "激論", + "readging": "げきろん", + "pos": "名詞", + "pn": -0.199338 + }, + { + "surface": "内耳", + "readging": "ないじ", + "pos": "名詞", + "pn": -0.199352 + }, + { + "surface": "かな", + "readging": "かな", + "pos": "名詞", + "pn": -0.199359 + }, + { + "surface": "京菜", + "readging": "きょうな", + "pos": "名詞", + "pn": -0.199367 + }, + { + "surface": "走り込む", + "readging": "はしりこむ", + "pos": "動詞", + "pn": -0.199368 + }, + { + "surface": "懸壅垂", + "readging": "けんようすい", + "pos": "名詞", + "pn": -0.199379 + }, + { + "surface": "藪鶯", + "readging": "やぶうぐいす", + "pos": "名詞", + "pn": -0.199389 + }, + { + "surface": "はだける", + "readging": "はだける", + "pos": "動詞", + "pn": -0.199401 + }, + { + "surface": "一般人", + "readging": "いっぱんじん", + "pos": "名詞", + "pn": -0.199408 + }, + { + "surface": "見舞", + "readging": "みまい", + "pos": "名詞", + "pn": -0.199409 + }, + { + "surface": "夜会", + "readging": "やかい", + "pos": "名詞", + "pn": -0.199413 + }, + { + "surface": "交響曲", + "readging": "こうきょうきょく", + "pos": "名詞", + "pn": -0.199424 + }, + { + "surface": "忍辱", + "readging": "にんにく", + "pos": "名詞", + "pn": -0.199434 + }, + { + "surface": "寝巻", + "readging": "ねまき", + "pos": "名詞", + "pn": -0.19946 + }, + { + "surface": "変体", + "readging": "へんたい", + "pos": "名詞", + "pn": -0.199466 + }, + { + "surface": "五倍子", + "readging": "ふし", + "pos": "名詞", + "pn": -0.199486 + }, + { + "surface": "見開き", + "readging": "みひらき", + "pos": "名詞", + "pn": -0.199527 + }, + { + "surface": "教条", + "readging": "きょうじょう", + "pos": "名詞", + "pn": -0.199541 + }, + { + "surface": "空っ風", + "readging": "からっかぜ", + "pos": "名詞", + "pn": -0.199561 + }, + { + "surface": "ホーム", + "readging": "ホームラン", + "pos": "名詞", + "pn": -0.199562 + }, + { + "surface": "病理", + "readging": "びょうり", + "pos": "名詞", + "pn": -0.199575 + }, + { + "surface": "逸事", + "readging": "いつじ", + "pos": "名詞", + "pn": -0.199581 + }, + { + "surface": "外泊", + "readging": "がいはく", + "pos": "名詞", + "pn": -0.199618 + }, + { + "surface": "火打", + "readging": "ひうち", + "pos": "名詞", + "pn": -0.199621 + }, + { + "surface": "自裁", + "readging": "じさい", + "pos": "名詞", + "pn": -0.199636 + }, + { + "surface": "見返り", + "readging": "みかえり", + "pos": "名詞", + "pn": -0.19965 + }, + { + "surface": "時間芸術", + "readging": "じかんげいじゅつ", + "pos": "名詞", + "pn": -0.199686 + }, + { + "surface": "噴火山", + "readging": "ふんかざん", + "pos": "名詞", + "pn": -0.199695 + }, + { + "surface": "上期", + "readging": "かみき", + "pos": "名詞", + "pn": -0.199699 + }, + { + "surface": "防空", + "readging": "ぼうくう", + "pos": "名詞", + "pn": -0.199706 + }, + { + "surface": "財団法人", + "readging": "ざいだんほうじん", + "pos": "名詞", + "pn": -0.199713 + }, + { + "surface": "トレーニング", + "readging": "トレーニング", + "pos": "名詞", + "pn": -0.199723 + }, + { + "surface": "冠付", + "readging": "かむりづけ", + "pos": "名詞", + "pn": -0.199741 + }, + { + "surface": "ペース", + "readging": "ペース", + "pos": "名詞", + "pn": -0.19977 + }, + { + "surface": "案分", + "readging": "あんぶん", + "pos": "名詞", + "pn": -0.199774 + }, + { + "surface": "紋紗", + "readging": "もんしゃ", + "pos": "名詞", + "pn": -0.199777 + }, + { + "surface": "もっとい", + "readging": "もっとい", + "pos": "名詞", + "pn": -0.199778 + }, + { + "surface": "踏まえる", + "readging": "ふまえる", + "pos": "動詞", + "pn": -0.19978 + }, + { + "surface": "ハズ", + "readging": "ハズ", + "pos": "名詞", + "pn": -0.19978 + }, + { + "surface": "ユーザー", + "readging": "ユーザー", + "pos": "名詞", + "pn": -0.199786 + }, + { + "surface": "半値", + "readging": "はんね", + "pos": "名詞", + "pn": -0.199795 + }, + { + "surface": "臨済宗", + "readging": "りんざいしゅう", + "pos": "名詞", + "pn": -0.199811 + }, + { + "surface": "御遊", + "readging": "ぎょゆう", + "pos": "名詞", + "pn": -0.199819 + }, + { + "surface": "在籍", + "readging": "ざいせき", + "pos": "名詞", + "pn": -0.199835 + }, + { + "surface": "台覧", + "readging": "たいらん", + "pos": "名詞", + "pn": -0.199841 + }, + { + "surface": "染上げる", + "readging": "そめあげる", + "pos": "動詞", + "pn": -0.199863 + }, + { + "surface": "国論", + "readging": "こくろん", + "pos": "名詞", + "pn": -0.199874 + }, + { + "surface": "肥し", + "readging": "こやし", + "pos": "名詞", + "pn": -0.19988 + }, + { + "surface": "突っ転ばす", + "readging": "つっころばす", + "pos": "動詞", + "pn": -0.199889 + }, + { + "surface": "雑歌", + "readging": "ぞうか", + "pos": "名詞", + "pn": -0.199906 + }, + { + "surface": "牧羊神", + "readging": "ぼくようじん", + "pos": "名詞", + "pn": -0.199934 + }, + { + "surface": "オルガナイザー", + "readging": "オルガナイザー", + "pos": "名詞", + "pn": -0.199934 + }, + { + "surface": "和室", + "readging": "わしつ", + "pos": "名詞", + "pn": -0.199943 + }, + { + "surface": "大別", + "readging": "たいべつ", + "pos": "名詞", + "pn": -0.199964 + }, + { + "surface": "老嬢", + "readging": "ろうじょう", + "pos": "名詞", + "pn": -0.199967 + }, + { + "surface": "切れ上がる", + "readging": "きれあがる", + "pos": "動詞", + "pn": -0.199973 + }, + { + "surface": "委任状", + "readging": "いにんじょう", + "pos": "名詞", + "pn": -0.19999 + }, + { + "surface": "回り持ち", + "readging": "まわりもち", + "pos": "名詞", + "pn": -0.199994 + }, + { + "surface": "重き", + "readging": "おもき", + "pos": "名詞", + "pn": -0.200016 + }, + { + "surface": "パール", + "readging": "パール", + "pos": "名詞", + "pn": -0.20002 + }, + { + "surface": "計上", + "readging": "けいじょう", + "pos": "名詞", + "pn": -0.200022 + }, + { + "surface": "追分", + "readging": "おいわけ", + "pos": "名詞", + "pn": -0.200031 + }, + { + "surface": "通運", + "readging": "つううん", + "pos": "名詞", + "pn": -0.200034 + }, + { + "surface": "季刊", + "readging": "きかん", + "pos": "名詞", + "pn": -0.200051 + }, + { + "surface": "初物", + "readging": "はつもの", + "pos": "名詞", + "pn": -0.200063 + }, + { + "surface": "郷愁", + "readging": "きょうしゅう", + "pos": "名詞", + "pn": -0.200068 + }, + { + "surface": "倒木", + "readging": "とうぼく", + "pos": "名詞", + "pn": -0.20007 + }, + { + "surface": "激語", + "readging": "げきご", + "pos": "名詞", + "pn": -0.200077 + }, + { + "surface": "火照る", + "readging": "ほてる", + "pos": "動詞", + "pn": -0.200087 + }, + { + "surface": "赤門", + "readging": "あかもん", + "pos": "名詞", + "pn": -0.20009 + }, + { + "surface": "気違い沙汰", + "readging": "きちがい", + "pos": "名詞", + "pn": -0.200091 + }, + { + "surface": "千枚張り", + "readging": "せんまいばり", + "pos": "名詞", + "pn": -0.200107 + }, + { + "surface": "糟糠", + "readging": "そうこう", + "pos": "名詞", + "pn": -0.200109 + }, + { + "surface": "四分板", + "readging": "しぶいた", + "pos": "名詞", + "pn": -0.200117 + }, + { + "surface": "小吏", + "readging": "しょうり", + "pos": "名詞", + "pn": -0.20013 + }, + { + "surface": "ソビエト", + "readging": "ソビエト", + "pos": "名詞", + "pn": -0.200142 + }, + { + "surface": "耐熱", + "readging": "たいねつ", + "pos": "名詞", + "pn": -0.200144 + }, + { + "surface": "腰垣", + "readging": "こしがき", + "pos": "名詞", + "pn": -0.200151 + }, + { + "surface": "心霊", + "readging": "しんれい", + "pos": "名詞", + "pn": -0.200152 + }, + { + "surface": "定性", + "readging": "ていせい", + "pos": "名詞", + "pn": -0.200155 + }, + { + "surface": "客船", + "readging": "きゃくせん", + "pos": "名詞", + "pn": -0.200156 + }, + { + "surface": "雑魚", + "readging": "ざこね", + "pos": "名詞", + "pn": -0.200166 + }, + { + "surface": "テレホン", + "readging": "テレホン", + "pos": "名詞", + "pn": -0.200169 + }, + { + "surface": "料紙", + "readging": "りょうし", + "pos": "名詞", + "pn": -0.200205 + }, + { + "surface": "人魚", + "readging": "にんぎょ", + "pos": "名詞", + "pn": -0.200207 + }, + { + "surface": "採譜", + "readging": "さいふ", + "pos": "名詞", + "pn": -0.200234 + }, + { + "surface": "料亭", + "readging": "りょうてい", + "pos": "名詞", + "pn": -0.200242 + }, + { + "surface": "戦隊", + "readging": "せんたい", + "pos": "名詞", + "pn": -0.200261 + }, + { + "surface": "メロドラマ", + "readging": "メロドラマ", + "pos": "名詞", + "pn": -0.200266 + }, + { + "surface": "徹底", + "readging": "てってい", + "pos": "名詞", + "pn": -0.200267 + }, + { + "surface": "出面", + "readging": "でづら", + "pos": "名詞", + "pn": -0.200269 + }, + { + "surface": "肉太", + "readging": "にくぶと", + "pos": "名詞", + "pn": -0.200288 + }, + { + "surface": "二季", + "readging": "にき", + "pos": "名詞", + "pn": -0.200322 + }, + { + "surface": "野焼き", + "readging": "のやき", + "pos": "名詞", + "pn": -0.200326 + }, + { + "surface": "漁礁", + "readging": "ぎょしょう", + "pos": "名詞", + "pn": -0.200327 + }, + { + "surface": "十六夜", + "readging": "いざよい", + "pos": "名詞", + "pn": -0.200327 + }, + { + "surface": "方円", + "readging": "ほうえん", + "pos": "名詞", + "pn": -0.200334 + }, + { + "surface": "機密費", + "readging": "きみつひ", + "pos": "名詞", + "pn": -0.200336 + }, + { + "surface": "放映", + "readging": "ほうえい", + "pos": "名詞", + "pn": -0.200373 + }, + { + "surface": "水圧", + "readging": "すいあつ", + "pos": "名詞", + "pn": -0.200377 + }, + { + "surface": "彷彿", + "readging": "ほうふつ", + "pos": "名詞", + "pn": -0.200392 + }, + { + "surface": "相互銀行", + "readging": "そうごぎんこう", + "pos": "名詞", + "pn": -0.200392 + }, + { + "surface": "原っぱ", + "readging": "はらっぱ", + "pos": "名詞", + "pn": -0.200393 + }, + { + "surface": "幽閉", + "readging": "ゆうへい", + "pos": "名詞", + "pn": -0.200395 + }, + { + "surface": "国道", + "readging": "こくどう", + "pos": "名詞", + "pn": -0.200424 + }, + { + "surface": "金員", + "readging": "きんいん", + "pos": "名詞", + "pn": -0.200424 + }, + { + "surface": "総画", + "readging": "そうかく", + "pos": "名詞", + "pn": -0.200431 + }, + { + "surface": "殺虫剤", + "readging": "さっちゅうざい", + "pos": "名詞", + "pn": -0.200442 + }, + { + "surface": "銀位", + "readging": "ぎんい", + "pos": "名詞", + "pn": -0.200444 + }, + { + "surface": "OR", + "readging": "オーアール", + "pos": "名詞", + "pn": -0.200452 + }, + { + "surface": "神嘗祭", + "readging": "かんなめさい", + "pos": "名詞", + "pn": -0.200486 + }, + { + "surface": "宮大工", + "readging": "みやだいく", + "pos": "名詞", + "pn": -0.200497 + }, + { + "surface": "熊蜂", + "readging": "くまばち", + "pos": "名詞", + "pn": -0.200501 + }, + { + "surface": "蒼古", + "readging": "そうこ", + "pos": "名詞", + "pn": -0.200504 + }, + { + "surface": "縁台", + "readging": "えんだい", + "pos": "名詞", + "pn": -0.200511 + }, + { + "surface": "中の間", + "readging": "なかのま", + "pos": "名詞", + "pn": -0.200514 + }, + { + "surface": "支局", + "readging": "しきょく", + "pos": "名詞", + "pn": -0.200517 + }, + { + "surface": "だれ気味", + "readging": "だれぎみ", + "pos": "名詞", + "pn": -0.200523 + }, + { + "surface": "卯月", + "readging": "うづき", + "pos": "名詞", + "pn": -0.200535 + }, + { + "surface": "金力", + "readging": "きんりょく", + "pos": "名詞", + "pn": -0.200595 + }, + { + "surface": "金銅", + "readging": "こんどう", + "pos": "名詞", + "pn": -0.200607 + }, + { + "surface": "気風", + "readging": "きふう", + "pos": "名詞", + "pn": -0.200612 + }, + { + "surface": "すかすか", + "readging": "すかすか", + "pos": "副詞", + "pn": -0.20065 + }, + { + "surface": "えみし", + "readging": "えみし", + "pos": "名詞", + "pn": -0.20067 + }, + { + "surface": "控室", + "readging": "ひかえしつ", + "pos": "名詞", + "pn": -0.20067 + }, + { + "surface": "何時ぞや", + "readging": "いつぞや", + "pos": "副詞", + "pn": -0.200696 + }, + { + "surface": "下稽古", + "readging": "したげいこ", + "pos": "名詞", + "pn": -0.200697 + }, + { + "surface": "率然", + "readging": "そつぜん", + "pos": "名詞", + "pn": -0.200722 + }, + { + "surface": "西方", + "readging": "さいほう", + "pos": "名詞", + "pn": -0.200747 + }, + { + "surface": "差異", + "readging": "さい", + "pos": "名詞", + "pn": -0.200747 + }, + { + "surface": "ぴしゃりと", + "readging": "ぴしゃりと", + "pos": "副詞", + "pn": -0.200757 + }, + { + "surface": "汗馬", + "readging": "かんば", + "pos": "名詞", + "pn": -0.200777 + }, + { + "surface": "暗線", + "readging": "あんせん", + "pos": "名詞", + "pn": -0.200778 + }, + { + "surface": "中秋", + "readging": "ちゅうしゅう", + "pos": "名詞", + "pn": -0.200788 + }, + { + "surface": "接地", + "readging": "せっち", + "pos": "名詞", + "pn": -0.200812 + }, + { + "surface": "転読", + "readging": "てんどく", + "pos": "名詞", + "pn": -0.200814 + }, + { + "surface": "季候", + "readging": "きこう", + "pos": "名詞", + "pn": -0.200814 + }, + { + "surface": "私権", + "readging": "しけん", + "pos": "名詞", + "pn": -0.200846 + }, + { + "surface": "帰一", + "readging": "きいつ", + "pos": "名詞", + "pn": -0.200859 + }, + { + "surface": "通史", + "readging": "つうし", + "pos": "名詞", + "pn": -0.20086 + }, + { + "surface": "予備軍", + "readging": "よびぐん", + "pos": "名詞", + "pn": -0.200864 + }, + { + "surface": "しなだれる", + "readging": "しなだれる", + "pos": "動詞", + "pn": -0.200864 + }, + { + "surface": "連曲", + "readging": "れんきょく", + "pos": "名詞", + "pn": -0.200878 + }, + { + "surface": "ターボプロップ", + "readging": "ターボプロップ", + "pos": "名詞", + "pn": -0.20088 + }, + { + "surface": "竹叢", + "readging": "たかむら", + "pos": "名詞", + "pn": -0.200893 + }, + { + "surface": "浪曲", + "readging": "ろうきょく", + "pos": "名詞", + "pn": -0.200901 + }, + { + "surface": "結語", + "readging": "けつご", + "pos": "名詞", + "pn": -0.200901 + }, + { + "surface": "学区", + "readging": "がっく", + "pos": "名詞", + "pn": -0.200924 + }, + { + "surface": "旋頭歌", + "readging": "せどうか", + "pos": "名詞", + "pn": -0.200928 + }, + { + "surface": "議決権", + "readging": "ぎけつけん", + "pos": "名詞", + "pn": -0.200929 + }, + { + "surface": "冠雪", + "readging": "かんせつ", + "pos": "名詞", + "pn": -0.200931 + }, + { + "surface": "学芸員", + "readging": "がくげいいん", + "pos": "名詞", + "pn": -0.200931 + }, + { + "surface": "低空", + "readging": "ていくう", + "pos": "名詞", + "pn": -0.200931 + }, + { + "surface": "金剛力士", + "readging": "こんごうりきし", + "pos": "名詞", + "pn": -0.200936 + }, + { + "surface": "相輪", + "readging": "そうりん", + "pos": "名詞", + "pn": -0.200939 + }, + { + "surface": "洋間", + "readging": "ようま", + "pos": "名詞", + "pn": -0.20095 + }, + { + "surface": "骨休め", + "readging": "ほねやすめ", + "pos": "名詞", + "pn": -0.200958 + }, + { + "surface": "典薬", + "readging": "てんやく", + "pos": "名詞", + "pn": -0.200958 + }, + { + "surface": "往航", + "readging": "おうこう", + "pos": "名詞", + "pn": -0.200968 + }, + { + "surface": "府県", + "readging": "ふけん", + "pos": "名詞", + "pn": -0.200988 + }, + { + "surface": "半官半民", + "readging": "はんかんはんみん", + "pos": "名詞", + "pn": -0.200995 + }, + { + "surface": "豆絞り", + "readging": "まめしぼり", + "pos": "名詞", + "pn": -0.200997 + }, + { + "surface": "存置", + "readging": "そんち", + "pos": "名詞", + "pn": -0.200998 + }, + { + "surface": "逃げ切る", + "readging": "にげきる", + "pos": "動詞", + "pn": -0.201013 + }, + { + "surface": "カウンセラー", + "readging": "カウンセラー", + "pos": "名詞", + "pn": -0.201022 + }, + { + "surface": "公倍数", + "readging": "こうばいすう", + "pos": "名詞", + "pn": -0.201023 + }, + { + "surface": "反比例", + "readging": "はんぴれい", + "pos": "名詞", + "pn": -0.201024 + }, + { + "surface": "口入れ", + "readging": "くちいれ", + "pos": "名詞", + "pn": -0.201026 + }, + { + "surface": "無言劇", + "readging": "むごんげき", + "pos": "名詞", + "pn": -0.201028 + }, + { + "surface": "都落ち", + "readging": "みやこおち", + "pos": "名詞", + "pn": -0.201043 + }, + { + "surface": "事前", + "readging": "じぜん", + "pos": "名詞", + "pn": -0.201058 + }, + { + "surface": "人屋", + "readging": "じんおく", + "pos": "名詞", + "pn": -0.201072 + }, + { + "surface": "胸像", + "readging": "きょうぞう", + "pos": "名詞", + "pn": -0.201099 + }, + { + "surface": "天産", + "readging": "てんさん", + "pos": "名詞", + "pn": -0.201129 + }, + { + "surface": "領事館", + "readging": "りょうじかん", + "pos": "名詞", + "pn": -0.20117 + }, + { + "surface": "洋髪", + "readging": "ようはつ", + "pos": "名詞", + "pn": -0.201176 + }, + { + "surface": "桜桃", + "readging": "おうとう", + "pos": "名詞", + "pn": -0.201216 + }, + { + "surface": "寸詰り", + "readging": "すんづまり", + "pos": "名詞", + "pn": -0.201235 + }, + { + "surface": "延納", + "readging": "えんのう", + "pos": "名詞", + "pn": -0.201238 + }, + { + "surface": "惑溺", + "readging": "わくでき", + "pos": "名詞", + "pn": -0.201239 + }, + { + "surface": "大筒", + "readging": "おおづつ", + "pos": "名詞", + "pn": -0.201244 + }, + { + "surface": "了承", + "readging": "りょうしょう", + "pos": "名詞", + "pn": -0.201259 + }, + { + "surface": "運動会", + "readging": "うんどうかい", + "pos": "名詞", + "pn": -0.201289 + }, + { + "surface": "師範学校", + "readging": "しはんがっこう", + "pos": "名詞", + "pn": -0.201292 + }, + { + "surface": "警察権", + "readging": "けいさつけん", + "pos": "名詞", + "pn": -0.201293 + }, + { + "surface": "流量", + "readging": "りゅうりょう", + "pos": "名詞", + "pn": -0.201293 + }, + { + "surface": "終身", + "readging": "しゅうしん", + "pos": "名詞", + "pn": -0.201303 + }, + { + "surface": "触雷", + "readging": "しょくらい", + "pos": "名詞", + "pn": -0.201345 + }, + { + "surface": "紫雲英", + "readging": "げんげ", + "pos": "名詞", + "pn": -0.201349 + }, + { + "surface": "受任", + "readging": "じゅにん", + "pos": "名詞", + "pn": -0.20136 + }, + { + "surface": "順延", + "readging": "じゅんえん", + "pos": "名詞", + "pn": -0.201368 + }, + { + "surface": "コーチャー", + "readging": "コーチャー", + "pos": "名詞", + "pn": -0.201368 + }, + { + "surface": "暖帯", + "readging": "だんたい", + "pos": "名詞", + "pn": -0.201396 + }, + { + "surface": "泣寝入り", + "readging": "なきねいり", + "pos": "名詞", + "pn": -0.20141 + }, + { + "surface": "書初め", + "readging": "かきぞめ", + "pos": "名詞", + "pn": -0.201414 + }, + { + "surface": "余計", + "readging": "よけい", + "pos": "副詞", + "pn": -0.201416 + }, + { + "surface": "行当る", + "readging": "ゆきあたる", + "pos": "動詞", + "pn": -0.201427 + }, + { + "surface": "筆談", + "readging": "ひつだん", + "pos": "名詞", + "pn": -0.201433 + }, + { + "surface": "スペード", + "readging": "スペード", + "pos": "名詞", + "pn": -0.201436 + }, + { + "surface": "兵備", + "readging": "へいび", + "pos": "名詞", + "pn": -0.201441 + }, + { + "surface": "内閣官房長官", + "readging": "ないかくかんぼうちょうかん", + "pos": "名詞", + "pn": -0.201457 + }, + { + "surface": "コルネット", + "readging": "コルネット", + "pos": "名詞", + "pn": -0.201463 + }, + { + "surface": "象徴詩", + "readging": "しょうちょうし", + "pos": "名詞", + "pn": -0.201471 + }, + { + "surface": "長潮", + "readging": "ながしお", + "pos": "名詞", + "pn": -0.201483 + }, + { + "surface": "別後", + "readging": "べつご", + "pos": "名詞", + "pn": -0.201496 + }, + { + "surface": "草冠", + "readging": "くさかんむり", + "pos": "名詞", + "pn": -0.201523 + }, + { + "surface": "濫読", + "readging": "らんどく", + "pos": "名詞", + "pn": -0.201525 + }, + { + "surface": "多項式", + "readging": "たこうしき", + "pos": "名詞", + "pn": -0.201532 + }, + { + "surface": "流失", + "readging": "りゅうしつ", + "pos": "名詞", + "pn": -0.201569 + }, + { + "surface": "不屈", + "readging": "ふくつ", + "pos": "名詞", + "pn": -0.201604 + }, + { + "surface": "積怨", + "readging": "せきえん", + "pos": "名詞", + "pn": -0.201608 + }, + { + "surface": "野立", + "readging": "のだち", + "pos": "名詞", + "pn": -0.201615 + }, + { + "surface": "逓減", + "readging": "ていげん", + "pos": "名詞", + "pn": -0.201625 + }, + { + "surface": "満喫", + "readging": "まんきつ", + "pos": "名詞", + "pn": -0.201633 + }, + { + "surface": "自警", + "readging": "じけい", + "pos": "名詞", + "pn": -0.20164 + }, + { + "surface": "神事", + "readging": "しんじ", + "pos": "名詞", + "pn": -0.201651 + }, + { + "surface": "男装", + "readging": "だんそう", + "pos": "名詞", + "pn": -0.201671 + }, + { + "surface": "韓", + "readging": "かん", + "pos": "名詞", + "pn": -0.201689 + }, + { + "surface": "マーケット", + "readging": "マーケット", + "pos": "名詞", + "pn": -0.201693 + }, + { + "surface": "印面", + "readging": "いんめん", + "pos": "名詞", + "pn": -0.2017 + }, + { + "surface": "参学", + "readging": "さんがく", + "pos": "名詞", + "pn": -0.201707 + }, + { + "surface": "免許皆伝", + "readging": "めんきょかいでん", + "pos": "名詞", + "pn": -0.20171 + }, + { + "surface": "算法", + "readging": "さんぽう", + "pos": "名詞", + "pn": -0.201715 + }, + { + "surface": "南端", + "readging": "なんたん", + "pos": "名詞", + "pn": -0.20173 + }, + { + "surface": "ポロネーズ", + "readging": "ポロネーズ", + "pos": "名詞", + "pn": -0.201754 + }, + { + "surface": "鍵っ子", + "readging": "かぎっこ", + "pos": "名詞", + "pn": -0.20177 + }, + { + "surface": "村社", + "readging": "そんしゃ", + "pos": "名詞", + "pn": -0.2018 + }, + { + "surface": "仕手", + "readging": "して", + "pos": "名詞", + "pn": -0.201802 + }, + { + "surface": "紙花", + "readging": "かみばな", + "pos": "名詞", + "pn": -0.201814 + }, + { + "surface": "飲水", + "readging": "のみみず", + "pos": "名詞", + "pn": -0.201821 + }, + { + "surface": "諸縁", + "readging": "しょえん", + "pos": "名詞", + "pn": -0.201853 + }, + { + "surface": "海底火山", + "readging": "かいていかざん", + "pos": "名詞", + "pn": -0.201853 + }, + { + "surface": "干城", + "readging": "かんじょう", + "pos": "名詞", + "pn": -0.201874 + }, + { + "surface": "銭形", + "readging": "ぜにがた", + "pos": "名詞", + "pn": -0.201886 + }, + { + "surface": "此の世", + "readging": "このよ", + "pos": "名詞", + "pn": -0.201894 + }, + { + "surface": "読込む", + "readging": "よみこむ", + "pos": "動詞", + "pn": -0.201916 + }, + { + "surface": "スプリンター", + "readging": "スプリンター", + "pos": "名詞", + "pn": -0.201934 + }, + { + "surface": "式次", + "readging": "しきじ", + "pos": "名詞", + "pn": -0.201944 + }, + { + "surface": "十代", + "readging": "じゅうだい", + "pos": "名詞", + "pn": -0.201947 + }, + { + "surface": "ホバリング", + "readging": "ホバリング", + "pos": "名詞", + "pn": -0.201967 + }, + { + "surface": "命名", + "readging": "めいめい", + "pos": "名詞", + "pn": -0.201991 + }, + { + "surface": "文壇", + "readging": "ぶんだん", + "pos": "名詞", + "pn": -0.202027 + }, + { + "surface": "タイム", + "readging": "タイムアップ", + "pos": "名詞", + "pn": -0.202053 + }, + { + "surface": "新顔", + "readging": "しんがお", + "pos": "名詞", + "pn": -0.202059 + }, + { + "surface": "しんねりむっつり", + "readging": "しんねりむっつり", + "pos": "副詞", + "pn": -0.202076 + }, + { + "surface": "能役者", + "readging": "のうやくしゃ", + "pos": "名詞", + "pn": -0.202078 + }, + { + "surface": "擬態", + "readging": "ぎたい", + "pos": "名詞", + "pn": -0.202104 + }, + { + "surface": "割れ返る", + "readging": "われかえる", + "pos": "動詞", + "pn": -0.202118 + }, + { + "surface": "民衆", + "readging": "みんしゅう", + "pos": "名詞", + "pn": -0.202125 + }, + { + "surface": "確認", + "readging": "かくにん", + "pos": "名詞", + "pn": -0.202126 + }, + { + "surface": "哀調", + "readging": "あいちょう", + "pos": "名詞", + "pn": -0.202147 + }, + { + "surface": "国難", + "readging": "こくなん", + "pos": "名詞", + "pn": -0.202151 + }, + { + "surface": "一点張り", + "readging": "いってんばり", + "pos": "名詞", + "pn": -0.202153 + }, + { + "surface": "墾田", + "readging": "こんでん", + "pos": "名詞", + "pn": -0.202161 + }, + { + "surface": "花魁", + "readging": "おいらん", + "pos": "名詞", + "pn": -0.202173 + }, + { + "surface": "記章", + "readging": "きしょう", + "pos": "名詞", + "pn": -0.202187 + }, + { + "surface": "密造", + "readging": "みつぞう", + "pos": "名詞", + "pn": -0.202192 + }, + { + "surface": "取集める", + "readging": "とりあつめる", + "pos": "動詞", + "pn": -0.202197 + }, + { + "surface": "クレオン", + "readging": "クレオン", + "pos": "名詞", + "pn": -0.202217 + }, + { + "surface": "重税", + "readging": "じゅうぜい", + "pos": "名詞", + "pn": -0.202231 + }, + { + "surface": "原木", + "readging": "げんぼく", + "pos": "名詞", + "pn": -0.202247 + }, + { + "surface": "画廊", + "readging": "がろう", + "pos": "名詞", + "pn": -0.202249 + }, + { + "surface": "横文字", + "readging": "よこもじ", + "pos": "名詞", + "pn": -0.202262 + }, + { + "surface": "反り橋", + "readging": "そりはし", + "pos": "名詞", + "pn": -0.20227 + }, + { + "surface": "コンクール", + "readging": "コンクール", + "pos": "名詞", + "pn": -0.202272 + }, + { + "surface": "ミラー", + "readging": "ミラー", + "pos": "名詞", + "pn": -0.202273 + }, + { + "surface": "手鏡", + "readging": "てかがみ", + "pos": "名詞", + "pn": -0.202273 + }, + { + "surface": "常勤", + "readging": "じょうきん", + "pos": "名詞", + "pn": -0.202276 + }, + { + "surface": "一笑", + "readging": "いっしょう", + "pos": "名詞", + "pn": -0.202276 + }, + { + "surface": "畿内", + "readging": "きない", + "pos": "名詞", + "pn": -0.2023 + }, + { + "surface": "去秋", + "readging": "きょしゅう", + "pos": "名詞", + "pn": -0.202301 + }, + { + "surface": "狂想曲", + "readging": "きょうそうきょく", + "pos": "名詞", + "pn": -0.202307 + }, + { + "surface": "中火", + "readging": "ちゅうび", + "pos": "名詞", + "pn": -0.202307 + }, + { + "surface": "印象批評", + "readging": "いんしょうひひょう", + "pos": "名詞", + "pn": -0.20233 + }, + { + "surface": "私塾", + "readging": "しじゅく", + "pos": "名詞", + "pn": -0.202334 + }, + { + "surface": "応訴", + "readging": "おうそ", + "pos": "名詞", + "pn": -0.202338 + }, + { + "surface": "弁理", + "readging": "べんり", + "pos": "名詞", + "pn": -0.202344 + }, + { + "surface": "蘇る", + "readging": "よみがえる", + "pos": "動詞", + "pn": -0.202358 + }, + { + "surface": "消炭", + "readging": "けしずみ", + "pos": "名詞", + "pn": -0.202359 + }, + { + "surface": "急行券", + "readging": "きゅうこうけん", + "pos": "名詞", + "pn": -0.202381 + }, + { + "surface": "寒椿", + "readging": "かんつばき", + "pos": "名詞", + "pn": -0.202405 + }, + { + "surface": "縁切り", + "readging": "えんきり", + "pos": "名詞", + "pn": -0.202405 + }, + { + "surface": "会戦", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.202407 + }, + { + "surface": "コンサルタント", + "readging": "コンサルタント", + "pos": "名詞", + "pn": -0.202415 + }, + { + "surface": "捏造", + "readging": "ねつぞう", + "pos": "名詞", + "pn": -0.202427 + }, + { + "surface": "敵情", + "readging": "てきじょう", + "pos": "名詞", + "pn": -0.202428 + }, + { + "surface": "禁闕", + "readging": "きんけつ", + "pos": "名詞", + "pn": -0.202441 + }, + { + "surface": "青豆", + "readging": "あおまめ", + "pos": "名詞", + "pn": -0.202461 + }, + { + "surface": "席駄", + "readging": "せきだ", + "pos": "名詞", + "pn": -0.202476 + }, + { + "surface": "水力", + "readging": "すいりょく", + "pos": "名詞", + "pn": -0.202486 + }, + { + "surface": "馬回り", + "readging": "うままわり", + "pos": "名詞", + "pn": -0.202512 + }, + { + "surface": "従軍", + "readging": "じゅうぐん", + "pos": "名詞", + "pn": -0.202518 + }, + { + "surface": "溶明", + "readging": "ようめい", + "pos": "名詞", + "pn": -0.20252 + }, + { + "surface": "臨検", + "readging": "りんけん", + "pos": "名詞", + "pn": -0.202521 + }, + { + "surface": "値打", + "readging": "ねうち", + "pos": "名詞", + "pn": -0.202529 + }, + { + "surface": "鉄塔", + "readging": "てっとう", + "pos": "名詞", + "pn": -0.202532 + }, + { + "surface": "和金", + "readging": "わきん", + "pos": "名詞", + "pn": -0.202533 + }, + { + "surface": "公課", + "readging": "こうか", + "pos": "名詞", + "pn": -0.202562 + }, + { + "surface": "上使", + "readging": "じょうし", + "pos": "名詞", + "pn": -0.202574 + }, + { + "surface": "ちらつく", + "readging": "ちらつく", + "pos": "動詞", + "pn": -0.202585 + }, + { + "surface": "賢察", + "readging": "けんさつ", + "pos": "名詞", + "pn": -0.20259 + }, + { + "surface": "拾い歩き", + "readging": "ひろいあるき", + "pos": "名詞", + "pn": -0.202606 + }, + { + "surface": "出先", + "readging": "でさき", + "pos": "名詞", + "pn": -0.202611 + }, + { + "surface": "宣教師", + "readging": "せんきょうし", + "pos": "名詞", + "pn": -0.202621 + }, + { + "surface": "納税", + "readging": "のうぜい", + "pos": "名詞", + "pn": -0.202622 + }, + { + "surface": "ニュース", + "readging": "ニュースソース", + "pos": "名詞", + "pn": -0.202623 + }, + { + "surface": "空中線", + "readging": "くうちゅうせん", + "pos": "名詞", + "pn": -0.202637 + }, + { + "surface": "見合", + "readging": "みあい", + "pos": "名詞", + "pn": -0.202641 + }, + { + "surface": "女工", + "readging": "じょこう", + "pos": "名詞", + "pn": -0.202646 + }, + { + "surface": "八分目", + "readging": "はちぶんめ", + "pos": "名詞", + "pn": -0.202648 + }, + { + "surface": "気運", + "readging": "きうん", + "pos": "名詞", + "pn": -0.20268 + }, + { + "surface": "振事", + "readging": "ふりごと", + "pos": "名詞", + "pn": -0.202685 + }, + { + "surface": "祝詞", + "readging": "のりと", + "pos": "名詞", + "pn": -0.202728 + }, + { + "surface": "急行軍", + "readging": "きゅうこうぐん", + "pos": "名詞", + "pn": -0.202737 + }, + { + "surface": "浮草", + "readging": "うきくさ", + "pos": "名詞", + "pn": -0.202751 + }, + { + "surface": "無学", + "readging": "むがく", + "pos": "名詞", + "pn": -0.202767 + }, + { + "surface": "私人", + "readging": "しじん", + "pos": "名詞", + "pn": -0.202776 + }, + { + "surface": "宅地", + "readging": "たくち", + "pos": "名詞", + "pn": -0.202782 + }, + { + "surface": "出無精", + "readging": "でぶしょう", + "pos": "名詞", + "pn": -0.202783 + }, + { + "surface": "産休", + "readging": "さんきゅう", + "pos": "名詞", + "pn": -0.202817 + }, + { + "surface": "物納", + "readging": "ぶつのう", + "pos": "名詞", + "pn": -0.202819 + }, + { + "surface": "新教", + "readging": "しんきょう", + "pos": "名詞", + "pn": -0.202838 + }, + { + "surface": "噴泉", + "readging": "ふんせん", + "pos": "名詞", + "pn": -0.202884 + }, + { + "surface": "大字", + "readging": "おおあざ", + "pos": "名詞", + "pn": -0.202898 + }, + { + "surface": "決戦", + "readging": "けっせん", + "pos": "名詞", + "pn": -0.202925 + }, + { + "surface": "重刻", + "readging": "じゅうこく", + "pos": "名詞", + "pn": -0.202927 + }, + { + "surface": "南中", + "readging": "なんちゅう", + "pos": "名詞", + "pn": -0.202928 + }, + { + "surface": "純増", + "readging": "じゅんぞう", + "pos": "名詞", + "pn": -0.20293 + }, + { + "surface": "スコア", + "readging": "スコア", + "pos": "名詞", + "pn": -0.202931 + }, + { + "surface": "マドリガル", + "readging": "マドリガル", + "pos": "名詞", + "pn": -0.20296 + }, + { + "surface": "火持ち", + "readging": "ひもち", + "pos": "名詞", + "pn": -0.202968 + }, + { + "surface": "はらりと", + "readging": "はらりと", + "pos": "副詞", + "pn": -0.20297 + }, + { + "surface": "決議", + "readging": "けつぎ", + "pos": "名詞", + "pn": -0.202977 + }, + { + "surface": "乱調", + "readging": "らんちょう", + "pos": "名詞", + "pn": -0.202978 + }, + { + "surface": "失意", + "readging": "しつい", + "pos": "名詞", + "pn": -0.202999 + }, + { + "surface": "道者", + "readging": "どうしゃ", + "pos": "名詞", + "pn": -0.203009 + }, + { + "surface": "参考書", + "readging": "さんこうしょ", + "pos": "名詞", + "pn": -0.20301 + }, + { + "surface": "明朝", + "readging": "みょうちょう", + "pos": "名詞", + "pn": -0.203016 + }, + { + "surface": "地役", + "readging": "ちえき", + "pos": "名詞", + "pn": -0.203017 + }, + { + "surface": "滅後", + "readging": "めつご", + "pos": "名詞", + "pn": -0.203018 + }, + { + "surface": "踏出す", + "readging": "ふみだす", + "pos": "動詞", + "pn": -0.203051 + }, + { + "surface": "諸白", + "readging": "もろはく", + "pos": "名詞", + "pn": -0.203052 + }, + { + "surface": "雲気", + "readging": "うんき", + "pos": "名詞", + "pn": -0.203063 + }, + { + "surface": "心音", + "readging": "しんおん", + "pos": "名詞", + "pn": -0.203068 + }, + { + "surface": "竹工", + "readging": "ちっこう", + "pos": "名詞", + "pn": -0.203093 + }, + { + "surface": "殿", + "readging": "しんがり", + "pos": "名詞", + "pn": -0.2031 + }, + { + "surface": "参照", + "readging": "さんしょう", + "pos": "名詞", + "pn": -0.203108 + }, + { + "surface": "水利", + "readging": "すいり", + "pos": "名詞", + "pn": -0.203112 + }, + { + "surface": "創業", + "readging": "そうぎょう", + "pos": "名詞", + "pn": -0.203126 + }, + { + "surface": "納付", + "readging": "のうふ", + "pos": "名詞", + "pn": -0.203132 + }, + { + "surface": "日割", + "readging": "ひわり", + "pos": "名詞", + "pn": -0.203149 + }, + { + "surface": "酔歩", + "readging": "すいほ", + "pos": "名詞", + "pn": -0.20315 + }, + { + "surface": "礼帽", + "readging": "れいぼう", + "pos": "名詞", + "pn": -0.203158 + }, + { + "surface": "ディフェンス", + "readging": "ディフェンス", + "pos": "名詞", + "pn": -0.203179 + }, + { + "surface": "楽焼", + "readging": "らくやき", + "pos": "名詞", + "pn": -0.2032 + }, + { + "surface": "渉外", + "readging": "しょうがい", + "pos": "名詞", + "pn": -0.203211 + }, + { + "surface": "鎧通し", + "readging": "よろいどおし", + "pos": "名詞", + "pn": -0.203214 + }, + { + "surface": "臨月", + "readging": "りんげつ", + "pos": "名詞", + "pn": -0.203234 + }, + { + "surface": "史劇", + "readging": "しげき", + "pos": "名詞", + "pn": -0.203238 + }, + { + "surface": "必需", + "readging": "ひつじゅ", + "pos": "名詞", + "pn": -0.203258 + }, + { + "surface": "イニシャル", + "readging": "イニシャル", + "pos": "名詞", + "pn": -0.203266 + }, + { + "surface": "業種", + "readging": "ぎょうしゅ", + "pos": "名詞", + "pn": -0.203269 + }, + { + "surface": "残滓", + "readging": "ざんさい", + "pos": "名詞", + "pn": -0.203271 + }, + { + "surface": "切結ぶ", + "readging": "きりむすぶ", + "pos": "動詞", + "pn": -0.203285 + }, + { + "surface": "冬場", + "readging": "ふゆば", + "pos": "名詞", + "pn": -0.203312 + }, + { + "surface": "舷梯", + "readging": "げんてい", + "pos": "名詞", + "pn": -0.203314 + }, + { + "surface": "飛檄", + "readging": "ひげき", + "pos": "名詞", + "pn": -0.203327 + }, + { + "surface": "先備え", + "readging": "さきぞなえ", + "pos": "名詞", + "pn": -0.20334 + }, + { + "surface": "文筆", + "readging": "ぶんぴつ", + "pos": "名詞", + "pn": -0.203342 + }, + { + "surface": "万死", + "readging": "ばんし", + "pos": "名詞", + "pn": -0.203356 + }, + { + "surface": "論語", + "readging": "ろんご", + "pos": "名詞", + "pn": -0.203365 + }, + { + "surface": "山女", + "readging": "やまめ", + "pos": "名詞", + "pn": -0.203379 + }, + { + "surface": "水屑", + "readging": "みくず", + "pos": "名詞", + "pn": -0.203381 + }, + { + "surface": "庄", + "readging": "しょう", + "pos": "名詞", + "pn": -0.203384 + }, + { + "surface": "伽藍", + "readging": "がらん", + "pos": "名詞", + "pn": -0.203413 + }, + { + "surface": "香華", + "readging": "こうげ", + "pos": "名詞", + "pn": -0.203416 + }, + { + "surface": "スポークスマン", + "readging": "スポークスマン", + "pos": "名詞", + "pn": -0.203418 + }, + { + "surface": "頭越し", + "readging": "あたまごし", + "pos": "名詞", + "pn": -0.203425 + }, + { + "surface": "葉菜", + "readging": "ようさい", + "pos": "名詞", + "pn": -0.203439 + }, + { + "surface": "不在地主", + "readging": "ふざいじぬし", + "pos": "名詞", + "pn": -0.203452 + }, + { + "surface": "女系", + "readging": "じょけい", + "pos": "名詞", + "pn": -0.203462 + }, + { + "surface": "橋供養", + "readging": "はしくよう", + "pos": "名詞", + "pn": -0.203474 + }, + { + "surface": "巨砲", + "readging": "きょほう", + "pos": "名詞", + "pn": -0.203474 + }, + { + "surface": "胸高", + "readging": "むなだか", + "pos": "名詞", + "pn": -0.203492 + }, + { + "surface": "夜更け", + "readging": "よふけ", + "pos": "名詞", + "pn": -0.203521 + }, + { + "surface": "六花", + "readging": "ろっか", + "pos": "名詞", + "pn": -0.203523 + }, + { + "surface": "公示", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.203532 + }, + { + "surface": "干菓子", + "readging": "ひがし", + "pos": "名詞", + "pn": -0.203533 + }, + { + "surface": "薬事", + "readging": "やくじ", + "pos": "名詞", + "pn": -0.203543 + }, + { + "surface": "園遊会", + "readging": "えんゆうかい", + "pos": "名詞", + "pn": -0.203557 + }, + { + "surface": "寝台", + "readging": "しんだい", + "pos": "名詞", + "pn": -0.20356 + }, + { + "surface": "探鳥", + "readging": "たんちょう", + "pos": "名詞", + "pn": -0.203619 + }, + { + "surface": "不時", + "readging": "ふじ", + "pos": "名詞", + "pn": -0.203626 + }, + { + "surface": "医長", + "readging": "いちょう", + "pos": "名詞", + "pn": -0.203633 + }, + { + "surface": "檀家", + "readging": "だんか", + "pos": "名詞", + "pn": -0.203653 + }, + { + "surface": "クーペ", + "readging": "クーペ", + "pos": "名詞", + "pn": -0.20367 + }, + { + "surface": "熱冷まし", + "readging": "ねつさまし", + "pos": "名詞", + "pn": -0.2037 + }, + { + "surface": "人山", + "readging": "ひとやま", + "pos": "名詞", + "pn": -0.203705 + }, + { + "surface": "机下", + "readging": "きか", + "pos": "名詞", + "pn": -0.203708 + }, + { + "surface": "益虫", + "readging": "えきちゅう", + "pos": "名詞", + "pn": -0.203708 + }, + { + "surface": "言付け", + "readging": "ことづけ", + "pos": "名詞", + "pn": -0.203712 + }, + { + "surface": "タブロイド判", + "readging": "タブロイドばん", + "pos": "名詞", + "pn": -0.203718 + }, + { + "surface": "領国", + "readging": "りょうごく", + "pos": "名詞", + "pn": -0.203726 + }, + { + "surface": "樹齢", + "readging": "じゅれい", + "pos": "名詞", + "pn": -0.20375 + }, + { + "surface": "独眼", + "readging": "どくがん", + "pos": "名詞", + "pn": -0.203755 + }, + { + "surface": "受理", + "readging": "じゅり", + "pos": "名詞", + "pn": -0.203774 + }, + { + "surface": "会する", + "readging": "かいする", + "pos": "動詞", + "pn": -0.203781 + }, + { + "surface": "枯ればむ", + "readging": "かればむ", + "pos": "動詞", + "pn": -0.203787 + }, + { + "surface": "会則", + "readging": "かいそく", + "pos": "名詞", + "pn": -0.203788 + }, + { + "surface": "城市", + "readging": "じょうし", + "pos": "名詞", + "pn": -0.203796 + }, + { + "surface": "ちゃかちゃか", + "readging": "ちゃかちゃか", + "pos": "副詞", + "pn": -0.203796 + }, + { + "surface": "灸治", + "readging": "きゅうじ", + "pos": "名詞", + "pn": -0.203798 + }, + { + "surface": "ひょろりと", + "readging": "ひょろりと", + "pos": "副詞", + "pn": -0.203811 + }, + { + "surface": "兌換", + "readging": "だかん", + "pos": "名詞", + "pn": -0.203816 + }, + { + "surface": "ルーツ", + "readging": "ルーツ", + "pos": "名詞", + "pn": -0.203821 + }, + { + "surface": "助奏", + "readging": "じょそう", + "pos": "名詞", + "pn": -0.203832 + }, + { + "surface": "粗製", + "readging": "そせい", + "pos": "名詞", + "pn": -0.203842 + }, + { + "surface": "御影堂", + "readging": "みえいどう", + "pos": "名詞", + "pn": -0.203858 + }, + { + "surface": "ヤール", + "readging": "ヤール", + "pos": "名詞", + "pn": -0.203861 + }, + { + "surface": "授産", + "readging": "じゅさん", + "pos": "名詞", + "pn": -0.203869 + }, + { + "surface": "一つ身", + "readging": "ひとつみ", + "pos": "名詞", + "pn": -0.203879 + }, + { + "surface": "史観", + "readging": "しかん", + "pos": "名詞", + "pn": -0.203881 + }, + { + "surface": "生酔い", + "readging": "なまよい", + "pos": "名詞", + "pn": -0.203905 + }, + { + "surface": "電鉄", + "readging": "でんてつ", + "pos": "名詞", + "pn": -0.203925 + }, + { + "surface": "難渋", + "readging": "なんじゅう", + "pos": "名詞", + "pn": -0.203935 + }, + { + "surface": "末文", + "readging": "まつぶん", + "pos": "名詞", + "pn": -0.203951 + }, + { + "surface": "奉還", + "readging": "ほうかん", + "pos": "名詞", + "pn": -0.203958 + }, + { + "surface": "掻集める", + "readging": "かきあつめる", + "pos": "動詞", + "pn": -0.204005 + }, + { + "surface": "題する", + "readging": "だいする", + "pos": "動詞", + "pn": -0.204008 + }, + { + "surface": "腫らす", + "readging": "はらす", + "pos": "動詞", + "pn": -0.204012 + }, + { + "surface": "宛然", + "readging": "えんぜん", + "pos": "名詞", + "pn": -0.204029 + }, + { + "surface": "小節", + "readging": "こぶし", + "pos": "名詞", + "pn": -0.204034 + }, + { + "surface": "週刊", + "readging": "しゅうかん", + "pos": "名詞", + "pn": -0.204061 + }, + { + "surface": "丙午", + "readging": "ひのえうま", + "pos": "名詞", + "pn": -0.204081 + }, + { + "surface": "イエロー", + "readging": "イエローペーパー", + "pos": "名詞", + "pn": -0.204093 + }, + { + "surface": "七道", + "readging": "しちどう", + "pos": "名詞", + "pn": -0.204096 + }, + { + "surface": "心情", + "readging": "しんじょう", + "pos": "名詞", + "pn": -0.204127 + }, + { + "surface": "鞘走る", + "readging": "さやばしる", + "pos": "動詞", + "pn": -0.204127 + }, + { + "surface": "独行", + "readging": "どっこう", + "pos": "名詞", + "pn": -0.204127 + }, + { + "surface": "不猟", + "readging": "ふりょう", + "pos": "名詞", + "pn": -0.204132 + }, + { + "surface": "見様見真似", + "readging": "みよう", + "pos": "名詞", + "pn": -0.204142 + }, + { + "surface": "富裕", + "readging": "ふゆう", + "pos": "名詞", + "pn": -0.204144 + }, + { + "surface": "仏トン", + "readging": "ふつトン", + "pos": "名詞", + "pn": -0.204168 + }, + { + "surface": "国母", + "readging": "こくぼ", + "pos": "名詞", + "pn": -0.204173 + }, + { + "surface": "直宮", + "readging": "じきみや", + "pos": "名詞", + "pn": -0.204181 + }, + { + "surface": "上紙", + "readging": "うわがみ", + "pos": "名詞", + "pn": -0.204189 + }, + { + "surface": "水密", + "readging": "すいみつ", + "pos": "名詞", + "pn": -0.204195 + }, + { + "surface": "渺渺", + "readging": "びょうびょう", + "pos": "名詞", + "pn": -0.204196 + }, + { + "surface": "正規", + "readging": "せいき", + "pos": "名詞", + "pn": -0.204197 + }, + { + "surface": "鳩笛", + "readging": "はとぶえ", + "pos": "名詞", + "pn": -0.204199 + }, + { + "surface": "文殻", + "readging": "ふみがら", + "pos": "名詞", + "pn": -0.204209 + }, + { + "surface": "文芸学", + "readging": "ぶんげいがく", + "pos": "名詞", + "pn": -0.204216 + }, + { + "surface": "追懐", + "readging": "ついかい", + "pos": "名詞", + "pn": -0.204263 + }, + { + "surface": "対蹠", + "readging": "たいしょ", + "pos": "名詞", + "pn": -0.204294 + }, + { + "surface": "着込む", + "readging": "きこむ", + "pos": "動詞", + "pn": -0.204328 + }, + { + "surface": "召致", + "readging": "しょうち", + "pos": "名詞", + "pn": -0.20433 + }, + { + "surface": "プログラマー", + "readging": "プログラマー", + "pos": "名詞", + "pn": -0.204341 + }, + { + "surface": "販路", + "readging": "はんろ", + "pos": "名詞", + "pn": -0.204352 + }, + { + "surface": "教団", + "readging": "きょうだん", + "pos": "名詞", + "pn": -0.204361 + }, + { + "surface": "仮構", + "readging": "かこう", + "pos": "名詞", + "pn": -0.204381 + }, + { + "surface": "粉塵", + "readging": "ふんじん", + "pos": "名詞", + "pn": -0.204406 + }, + { + "surface": "面責", + "readging": "めんせき", + "pos": "名詞", + "pn": -0.204406 + }, + { + "surface": "紋絽", + "readging": "もんろ", + "pos": "名詞", + "pn": -0.204416 + }, + { + "surface": "機長", + "readging": "きちょう", + "pos": "名詞", + "pn": -0.204416 + }, + { + "surface": "飛湍", + "readging": "ひたん", + "pos": "名詞", + "pn": -0.204417 + }, + { + "surface": "抜き足差し足", + "readging": "ぬきあしさしあし", + "pos": "名詞", + "pn": -0.204426 + }, + { + "surface": "人語", + "readging": "じんご", + "pos": "名詞", + "pn": -0.204443 + }, + { + "surface": "牧野", + "readging": "ぼくや", + "pos": "名詞", + "pn": -0.204453 + }, + { + "surface": "陵墓", + "readging": "りょうぼ", + "pos": "名詞", + "pn": -0.204454 + }, + { + "surface": "金工", + "readging": "きんこう", + "pos": "名詞", + "pn": -0.204471 + }, + { + "surface": "来月", + "readging": "らいげつ", + "pos": "名詞", + "pn": -0.204494 + }, + { + "surface": "鞘堂", + "readging": "さやどう", + "pos": "名詞", + "pn": -0.204498 + }, + { + "surface": "残生", + "readging": "ざんせい", + "pos": "名詞", + "pn": -0.204499 + }, + { + "surface": "ロマンチシスト", + "readging": "ロマンチシスト", + "pos": "名詞", + "pn": -0.20452 + }, + { + "surface": "筆画", + "readging": "ひっかく", + "pos": "名詞", + "pn": -0.204548 + }, + { + "surface": "花壇", + "readging": "かだん", + "pos": "名詞", + "pn": -0.204555 + }, + { + "surface": "生節", + "readging": "なまぶし", + "pos": "名詞", + "pn": -0.204562 + }, + { + "surface": "持合い", + "readging": "もちあい", + "pos": "名詞", + "pn": -0.204573 + }, + { + "surface": "戦備", + "readging": "せんび", + "pos": "名詞", + "pn": -0.204586 + }, + { + "surface": "一匹狼", + "readging": "いっぴきおおかみ", + "pos": "名詞", + "pn": -0.204592 + }, + { + "surface": "現行犯", + "readging": "げんこうはん", + "pos": "名詞", + "pn": -0.204619 + }, + { + "surface": "席亭", + "readging": "せきてい", + "pos": "名詞", + "pn": -0.204661 + }, + { + "surface": "提訴", + "readging": "ていそ", + "pos": "名詞", + "pn": -0.20468 + }, + { + "surface": "枯れ色", + "readging": "かれいろ", + "pos": "名詞", + "pn": -0.204723 + }, + { + "surface": "ツー ピース", + "readging": "ツー ピース", + "pos": "名詞", + "pn": -0.204725 + }, + { + "surface": "誅殺", + "readging": "ちゅうさつ", + "pos": "名詞", + "pn": -0.204731 + }, + { + "surface": "深まる", + "readging": "ふかまる", + "pos": "動詞", + "pn": -0.204731 + }, + { + "surface": "拉する", + "readging": "らっする", + "pos": "動詞", + "pn": -0.204732 + }, + { + "surface": "内規", + "readging": "ないき", + "pos": "名詞", + "pn": -0.204738 + }, + { + "surface": "会読", + "readging": "かいどく", + "pos": "名詞", + "pn": -0.204755 + }, + { + "surface": "聞役", + "readging": "ききやく", + "pos": "名詞", + "pn": -0.204758 + }, + { + "surface": "原審", + "readging": "げんしん", + "pos": "名詞", + "pn": -0.204788 + }, + { + "surface": "初動", + "readging": "しょどう", + "pos": "名詞", + "pn": -0.204789 + }, + { + "surface": "会計年度", + "readging": "かいけいねんど", + "pos": "名詞", + "pn": -0.204834 + }, + { + "surface": "鎖国", + "readging": "さこく", + "pos": "名詞", + "pn": -0.204842 + }, + { + "surface": "自家", + "readging": "じか", + "pos": "名詞", + "pn": -0.204844 + }, + { + "surface": "二期作", + "readging": "にきさく", + "pos": "名詞", + "pn": -0.204859 + }, + { + "surface": "気構え", + "readging": "きがまえ", + "pos": "名詞", + "pn": -0.204862 + }, + { + "surface": "特赦", + "readging": "とくしゃ", + "pos": "名詞", + "pn": -0.204875 + }, + { + "surface": "試写", + "readging": "ししゃ", + "pos": "名詞", + "pn": -0.204879 + }, + { + "surface": "民具", + "readging": "みんぐ", + "pos": "名詞", + "pn": -0.20488 + }, + { + "surface": "デモンストレーション", + "readging": "デモンストレーション", + "pos": "名詞", + "pn": -0.204886 + }, + { + "surface": "馬筏", + "readging": "うまいかだ", + "pos": "名詞", + "pn": -0.204893 + }, + { + "surface": "売薬", + "readging": "ばいやく", + "pos": "名詞", + "pn": -0.204896 + }, + { + "surface": "ビート", + "readging": "ビート", + "pos": "名詞", + "pn": -0.204898 + }, + { + "surface": "盛潰す", + "readging": "もりつぶす", + "pos": "動詞", + "pn": -0.204916 + }, + { + "surface": "対角線", + "readging": "たいかくせん", + "pos": "名詞", + "pn": -0.20492 + }, + { + "surface": "若党", + "readging": "わかとう", + "pos": "名詞", + "pn": -0.204929 + }, + { + "surface": "定", + "readging": "じょう", + "pos": "名詞", + "pn": -0.204947 + }, + { + "surface": "勧降", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.204955 + }, + { + "surface": "良家", + "readging": "りょうけ", + "pos": "名詞", + "pn": -0.204972 + }, + { + "surface": "柱聯", + "readging": "ちゅうれん", + "pos": "名詞", + "pn": -0.204972 + }, + { + "surface": "平城", + "readging": "ひらじろ", + "pos": "名詞", + "pn": -0.20499 + }, + { + "surface": "インフレーション", + "readging": "インフレーション", + "pos": "名詞", + "pn": -0.205008 + }, + { + "surface": "生娘", + "readging": "きむすめ", + "pos": "名詞", + "pn": -0.205015 + }, + { + "surface": "空買", + "readging": "からがい", + "pos": "名詞", + "pn": -0.205022 + }, + { + "surface": "昨報", + "readging": "さくほう", + "pos": "名詞", + "pn": -0.20504 + }, + { + "surface": "キャンペーン", + "readging": "キャンペーン", + "pos": "名詞", + "pn": -0.205049 + }, + { + "surface": "海軍", + "readging": "かいぐん", + "pos": "名詞", + "pn": -0.205061 + }, + { + "surface": "木連格子", + "readging": "きつれごうし", + "pos": "名詞", + "pn": -0.205103 + }, + { + "surface": "ランダム", + "readging": "ランダム", + "pos": "名詞", + "pn": -0.205109 + }, + { + "surface": "手切れ", + "readging": "てぎれ", + "pos": "名詞", + "pn": -0.205129 + }, + { + "surface": "水菜", + "readging": "みずな", + "pos": "名詞", + "pn": -0.205164 + }, + { + "surface": "裏年", + "readging": "うらどし", + "pos": "名詞", + "pn": -0.205173 + }, + { + "surface": "嘆き明かす", + "readging": "なげきあかす", + "pos": "動詞", + "pn": -0.205179 + }, + { + "surface": "野草", + "readging": "やそう", + "pos": "名詞", + "pn": -0.205229 + }, + { + "surface": "遣らずの雨", + "readging": "やらずのあめ", + "pos": "名詞", + "pn": -0.205238 + }, + { + "surface": "酢和え", + "readging": "すあえ", + "pos": "名詞", + "pn": -0.205242 + }, + { + "surface": "実字", + "readging": "じつじ", + "pos": "名詞", + "pn": -0.205247 + }, + { + "surface": "御家", + "readging": "おいえ", + "pos": "名詞", + "pn": -0.205261 + }, + { + "surface": "コレクト", + "readging": "コレクト", + "pos": "名詞", + "pn": -0.205263 + }, + { + "surface": "国王", + "readging": "こくおう", + "pos": "名詞", + "pn": -0.205277 + }, + { + "surface": "累代", + "readging": "るいだい", + "pos": "名詞", + "pn": -0.205278 + }, + { + "surface": "老い先", + "readging": "おいさき", + "pos": "名詞", + "pn": -0.205279 + }, + { + "surface": "群竹", + "readging": "むらたけ", + "pos": "名詞", + "pn": -0.205302 + }, + { + "surface": "代参", + "readging": "だいさん", + "pos": "名詞", + "pn": -0.205306 + }, + { + "surface": "横降り", + "readging": "よこぶり", + "pos": "名詞", + "pn": -0.205315 + }, + { + "surface": "典獄", + "readging": "てんごく", + "pos": "名詞", + "pn": -0.205326 + }, + { + "surface": "長上", + "readging": "ちょうじょう", + "pos": "名詞", + "pn": -0.205339 + }, + { + "surface": "人件費", + "readging": "じんけんひ", + "pos": "名詞", + "pn": -0.205352 + }, + { + "surface": "秋晴", + "readging": "あきばれ", + "pos": "名詞", + "pn": -0.205352 + }, + { + "surface": "叙する", + "readging": "じょする", + "pos": "動詞", + "pn": -0.20536 + }, + { + "surface": "吸寄せる", + "readging": "すいよせる", + "pos": "動詞", + "pn": -0.205367 + }, + { + "surface": "尼法師", + "readging": "あまほうし", + "pos": "名詞", + "pn": -0.205394 + }, + { + "surface": "原子団", + "readging": "げんしだん", + "pos": "名詞", + "pn": -0.205398 + }, + { + "surface": "門口", + "readging": "かどぐち", + "pos": "名詞", + "pn": -0.205399 + }, + { + "surface": "社友", + "readging": "しゃゆう", + "pos": "名詞", + "pn": -0.205423 + }, + { + "surface": "継父", + "readging": "ままちち", + "pos": "名詞", + "pn": -0.205461 + }, + { + "surface": "銅山", + "readging": "どうざん", + "pos": "名詞", + "pn": -0.205473 + }, + { + "surface": "召上げる", + "readging": "めしあげる", + "pos": "動詞", + "pn": -0.205475 + }, + { + "surface": "刈穂", + "readging": "かりほ", + "pos": "名詞", + "pn": -0.205486 + }, + { + "surface": "団地", + "readging": "だんち", + "pos": "名詞", + "pn": -0.205494 + }, + { + "surface": "両替屋", + "readging": "りょうがえ", + "pos": "名詞", + "pn": -0.205515 + }, + { + "surface": "充填", + "readging": "じゅうてん", + "pos": "名詞", + "pn": -0.205528 + }, + { + "surface": "女権", + "readging": "じょけん", + "pos": "名詞", + "pn": -0.205534 + }, + { + "surface": "放談", + "readging": "ほうだん", + "pos": "名詞", + "pn": -0.205537 + }, + { + "surface": "烏竜茶", + "readging": "ウーロンちゃ", + "pos": "名詞", + "pn": -0.205541 + }, + { + "surface": "五徳", + "readging": "ごとく", + "pos": "名詞", + "pn": -0.205546 + }, + { + "surface": "米櫃", + "readging": "こめびつ", + "pos": "名詞", + "pn": -0.205554 + }, + { + "surface": "物議", + "readging": "ぶつぎ", + "pos": "名詞", + "pn": -0.205563 + }, + { + "surface": "撞着", + "readging": "どうちゃく", + "pos": "名詞", + "pn": -0.205568 + }, + { + "surface": "桐一葉", + "readging": "きりひとは", + "pos": "名詞", + "pn": -0.205587 + }, + { + "surface": "比熱", + "readging": "ひねつ", + "pos": "名詞", + "pn": -0.205593 + }, + { + "surface": "来朝", + "readging": "らいちょう", + "pos": "名詞", + "pn": -0.205613 + }, + { + "surface": "第三階級", + "readging": "だいさんかいきゅう", + "pos": "名詞", + "pn": -0.205649 + }, + { + "surface": "チェーン", + "readging": "チェーン", + "pos": "名詞", + "pn": -0.205662 + }, + { + "surface": "仮性", + "readging": "かせい", + "pos": "名詞", + "pn": -0.205668 + }, + { + "surface": "古音", + "readging": "こおん", + "pos": "名詞", + "pn": -0.205677 + }, + { + "surface": "出庫", + "readging": "しゅっこ", + "pos": "名詞", + "pn": -0.205679 + }, + { + "surface": "陰紋", + "readging": "かげもん", + "pos": "名詞", + "pn": -0.205686 + }, + { + "surface": "新劇", + "readging": "しんげき", + "pos": "名詞", + "pn": -0.205695 + }, + { + "surface": "香合", + "readging": "こうごう", + "pos": "名詞", + "pn": -0.205698 + }, + { + "surface": "相乗", + "readging": "そうじょう", + "pos": "名詞", + "pn": -0.205726 + }, + { + "surface": "盲", + "readging": "もう", + "pos": "名詞", + "pn": -0.205726 + }, + { + "surface": "組糸", + "readging": "くみいと", + "pos": "名詞", + "pn": -0.205732 + }, + { + "surface": "巧拙", + "readging": "こうせつ", + "pos": "名詞", + "pn": -0.205747 + }, + { + "surface": "建白", + "readging": "けんぱく", + "pos": "名詞", + "pn": -0.205747 + }, + { + "surface": "サンスクリット", + "readging": "サンスクリット", + "pos": "名詞", + "pn": -0.205761 + }, + { + "surface": "敗走", + "readging": "はいそう", + "pos": "名詞", + "pn": -0.205777 + }, + { + "surface": "熱容量", + "readging": "ねつようりょう", + "pos": "名詞", + "pn": -0.205782 + }, + { + "surface": "権益", + "readging": "けんえき", + "pos": "名詞", + "pn": -0.205797 + }, + { + "surface": "似顔絵", + "readging": "にがお", + "pos": "名詞", + "pn": -0.205805 + }, + { + "surface": "減点", + "readging": "げんてん", + "pos": "名詞", + "pn": -0.205829 + }, + { + "surface": "打水", + "readging": "うちみず", + "pos": "名詞", + "pn": -0.205833 + }, + { + "surface": "近代劇", + "readging": "きんだいげき", + "pos": "名詞", + "pn": -0.205859 + }, + { + "surface": "上奏", + "readging": "じょうそう", + "pos": "名詞", + "pn": -0.20586 + }, + { + "surface": "段平", + "readging": "だんびら", + "pos": "名詞", + "pn": -0.205872 + }, + { + "surface": "血煙", + "readging": "ちけむり", + "pos": "名詞", + "pn": -0.205875 + }, + { + "surface": "穂綿", + "readging": "ほわた", + "pos": "名詞", + "pn": -0.205888 + }, + { + "surface": "駁撃", + "readging": "ばくげき", + "pos": "名詞", + "pn": -0.205894 + }, + { + "surface": "戦傷", + "readging": "せんしょう", + "pos": "名詞", + "pn": -0.205896 + }, + { + "surface": "延棒", + "readging": "のべぼう", + "pos": "名詞", + "pn": -0.205906 + }, + { + "surface": "公廷", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.205911 + }, + { + "surface": "級長", + "readging": "きゅうちょう", + "pos": "名詞", + "pn": -0.205919 + }, + { + "surface": "修学", + "readging": "しゅうがく", + "pos": "名詞", + "pn": -0.205925 + }, + { + "surface": "金屎", + "readging": "かなくそ", + "pos": "名詞", + "pn": -0.205943 + }, + { + "surface": "弥増さる", + "readging": "いやまさる", + "pos": "動詞", + "pn": -0.205945 + }, + { + "surface": "不導体", + "readging": "ふどうたい", + "pos": "名詞", + "pn": -0.205979 + }, + { + "surface": "楽屋雀", + "readging": "がくやすずめ", + "pos": "名詞", + "pn": -0.206008 + }, + { + "surface": "点取り", + "readging": "てんとり", + "pos": "名詞", + "pn": -0.206014 + }, + { + "surface": "振返る", + "readging": "ふりかえる", + "pos": "動詞", + "pn": -0.206026 + }, + { + "surface": "衆評", + "readging": "しゅうひょう", + "pos": "名詞", + "pn": -0.206093 + }, + { + "surface": "商売気", + "readging": "しょうばいぎ", + "pos": "名詞", + "pn": -0.206095 + }, + { + "surface": "継泳", + "readging": "けいえい", + "pos": "名詞", + "pn": -0.206124 + }, + { + "surface": "拾物", + "readging": "ひろいもの", + "pos": "名詞", + "pn": -0.206136 + }, + { + "surface": "矮鶏", + "readging": "チャボ", + "pos": "名詞", + "pn": -0.206139 + }, + { + "surface": "兵学", + "readging": "へいがく", + "pos": "名詞", + "pn": -0.206141 + }, + { + "surface": "極小", + "readging": "きょくしょう", + "pos": "名詞", + "pn": -0.206156 + }, + { + "surface": "火山帯", + "readging": "かざんたい", + "pos": "名詞", + "pn": -0.206158 + }, + { + "surface": "市立", + "readging": "いちりつ", + "pos": "名詞", + "pn": -0.206172 + }, + { + "surface": "抗力", + "readging": "こうりょく", + "pos": "名詞", + "pn": -0.206172 + }, + { + "surface": "わらさ", + "readging": "わらさ", + "pos": "名詞", + "pn": -0.206181 + }, + { + "surface": "略説", + "readging": "りゃくせつ", + "pos": "名詞", + "pn": -0.206206 + }, + { + "surface": "皇室", + "readging": "こうしつ", + "pos": "名詞", + "pn": -0.206228 + }, + { + "surface": "桜貝", + "readging": "さくらがい", + "pos": "名詞", + "pn": -0.206264 + }, + { + "surface": "バッジ", + "readging": "バッジ", + "pos": "名詞", + "pn": -0.206274 + }, + { + "surface": "磁極", + "readging": "じきょく", + "pos": "名詞", + "pn": -0.20629 + }, + { + "surface": "国際通貨", + "readging": "こくさいつうか", + "pos": "名詞", + "pn": -0.206314 + }, + { + "surface": "芥子人形", + "readging": "けしにんぎょう", + "pos": "名詞", + "pn": -0.206338 + }, + { + "surface": "聴覚", + "readging": "ちょうかく", + "pos": "名詞", + "pn": -0.206338 + }, + { + "surface": "焼け出され", + "readging": "やけだされ", + "pos": "名詞", + "pn": -0.206344 + }, + { + "surface": "在高", + "readging": "ありだか", + "pos": "名詞", + "pn": -0.206349 + }, + { + "surface": "ニュース", + "readging": "ニュース", + "pos": "名詞", + "pn": -0.206389 + }, + { + "surface": "悲調", + "readging": "ひちょう", + "pos": "名詞", + "pn": -0.206397 + }, + { + "surface": "円熟", + "readging": "えんじゅく", + "pos": "名詞", + "pn": -0.206405 + }, + { + "surface": "検診", + "readging": "けんしん", + "pos": "名詞", + "pn": -0.206413 + }, + { + "surface": "洗眼", + "readging": "せんがん", + "pos": "名詞", + "pn": -0.206428 + }, + { + "surface": "大使館", + "readging": "たいしかん", + "pos": "名詞", + "pn": -0.20644 + }, + { + "surface": "仰向く", + "readging": "あおむく", + "pos": "動詞", + "pn": -0.206454 + }, + { + "surface": "濫掘", + "readging": "らんくつ", + "pos": "名詞", + "pn": -0.206465 + }, + { + "surface": "日歩", + "readging": "ひぶ", + "pos": "名詞", + "pn": -0.206483 + }, + { + "surface": "変名", + "readging": "へんめい", + "pos": "名詞", + "pn": -0.206487 + }, + { + "surface": "ベンゼン", + "readging": "ベンゼン", + "pos": "名詞", + "pn": -0.206489 + }, + { + "surface": "士官", + "readging": "しかん", + "pos": "名詞", + "pn": -0.206493 + }, + { + "surface": "リザーブ", + "readging": "リザーブ", + "pos": "名詞", + "pn": -0.206494 + }, + { + "surface": "前翅", + "readging": "ぜんし", + "pos": "名詞", + "pn": -0.206511 + }, + { + "surface": "組立", + "readging": "くみたて", + "pos": "名詞", + "pn": -0.206524 + }, + { + "surface": "代議制度", + "readging": "だいぎせいど", + "pos": "名詞", + "pn": -0.206559 + }, + { + "surface": "巨利", + "readging": "きょり", + "pos": "名詞", + "pn": -0.206562 + }, + { + "surface": "落掌", + "readging": "らくしょう", + "pos": "名詞", + "pn": -0.206575 + }, + { + "surface": "インターホン", + "readging": "インターホン", + "pos": "名詞", + "pn": -0.206595 + }, + { + "surface": "俗習", + "readging": "ぞくしゅう", + "pos": "名詞", + "pn": -0.206632 + }, + { + "surface": "執行機関", + "readging": "しっこうきかん", + "pos": "名詞", + "pn": -0.206637 + }, + { + "surface": "皇漢薬", + "readging": "こうかんやく", + "pos": "名詞", + "pn": -0.206654 + }, + { + "surface": "カプセル", + "readging": "カプセル", + "pos": "名詞", + "pn": -0.206708 + }, + { + "surface": "曲馬", + "readging": "きょくば", + "pos": "名詞", + "pn": -0.206723 + }, + { + "surface": "供与", + "readging": "きょうよ", + "pos": "名詞", + "pn": -0.206746 + }, + { + "surface": "主用", + "readging": "しゅよう", + "pos": "名詞", + "pn": -0.20675 + }, + { + "surface": "右大臣", + "readging": "うだいじん", + "pos": "名詞", + "pn": -0.206758 + }, + { + "surface": "枯れ薄", + "readging": "かれすすき", + "pos": "名詞", + "pn": -0.206759 + }, + { + "surface": "前下り", + "readging": "まえさがり", + "pos": "名詞", + "pn": -0.20676 + }, + { + "surface": "改印", + "readging": "かいいん", + "pos": "名詞", + "pn": -0.206789 + }, + { + "surface": "投光器", + "readging": "とうこうき", + "pos": "名詞", + "pn": -0.206794 + }, + { + "surface": "荷馬", + "readging": "にうま", + "pos": "名詞", + "pn": -0.206806 + }, + { + "surface": "平価切下げ", + "readging": "へいかきりさげ", + "pos": "名詞", + "pn": -0.206832 + }, + { + "surface": "長身", + "readging": "ちょうしん", + "pos": "名詞", + "pn": -0.206838 + }, + { + "surface": "流動資本", + "readging": "りゅうどうしほん", + "pos": "名詞", + "pn": -0.206844 + }, + { + "surface": "古典主義", + "readging": "こてんしゅぎ", + "pos": "名詞", + "pn": -0.206851 + }, + { + "surface": "焼野が原", + "readging": "やけのがはら", + "pos": "名詞", + "pn": -0.206877 + }, + { + "surface": "点鬼簿", + "readging": "てんきぼ", + "pos": "名詞", + "pn": -0.206895 + }, + { + "surface": "空域", + "readging": "くういき", + "pos": "名詞", + "pn": -0.206902 + }, + { + "surface": "党情", + "readging": "とうじょう", + "pos": "名詞", + "pn": -0.206907 + }, + { + "surface": "算術平均", + "readging": "さんじゅつへいきん", + "pos": "名詞", + "pn": -0.206908 + }, + { + "surface": "全身全霊", + "readging": "ぜんしんぜんれい", + "pos": "名詞", + "pn": -0.206924 + }, + { + "surface": "流汗", + "readging": "りゅうかん", + "pos": "名詞", + "pn": -0.206926 + }, + { + "surface": "請出す", + "readging": "うけだす", + "pos": "動詞", + "pn": -0.206932 + }, + { + "surface": "長広舌", + "readging": "ちょうこうぜつ", + "pos": "名詞", + "pn": -0.206935 + }, + { + "surface": "休耕", + "readging": "きゅうこう", + "pos": "名詞", + "pn": -0.206935 + }, + { + "surface": "孟夏", + "readging": "もうか", + "pos": "名詞", + "pn": -0.206941 + }, + { + "surface": "投売", + "readging": "なげうり", + "pos": "名詞", + "pn": -0.206943 + }, + { + "surface": "総合雑誌", + "readging": "そうごうざっし", + "pos": "名詞", + "pn": -0.206954 + }, + { + "surface": "古形", + "readging": "こけい", + "pos": "名詞", + "pn": -0.206985 + }, + { + "surface": "アイテム", + "readging": "アイテム", + "pos": "名詞", + "pn": -0.206991 + }, + { + "surface": "訴状", + "readging": "そじょう", + "pos": "名詞", + "pn": -0.207016 + }, + { + "surface": "裸子植物", + "readging": "らししょくぶつ", + "pos": "名詞", + "pn": -0.207022 + }, + { + "surface": "螟虫", + "readging": "めいちゅう", + "pos": "名詞", + "pn": -0.207041 + }, + { + "surface": "第一人称", + "readging": "だいいちにんしょう", + "pos": "名詞", + "pn": -0.207044 + }, + { + "surface": "先祖返り", + "readging": "せんぞがえり", + "pos": "名詞", + "pn": -0.207047 + }, + { + "surface": "隠し田", + "readging": "かくしだ", + "pos": "名詞", + "pn": -0.207049 + }, + { + "surface": "高御座", + "readging": "たかみくら", + "pos": "名詞", + "pn": -0.207058 + }, + { + "surface": "キニーネ", + "readging": "キニーネ", + "pos": "名詞", + "pn": -0.207073 + }, + { + "surface": "物知り", + "readging": "ものしり", + "pos": "名詞", + "pn": -0.207075 + }, + { + "surface": "判じ絵", + "readging": "はんじえ", + "pos": "名詞", + "pn": -0.2071 + }, + { + "surface": "凡主", + "readging": "ぼんしゅ", + "pos": "名詞", + "pn": -0.207103 + }, + { + "surface": "愛読", + "readging": "あいどく", + "pos": "名詞", + "pn": -0.207109 + }, + { + "surface": "尾羽", + "readging": "おは", + "pos": "名詞", + "pn": -0.207112 + }, + { + "surface": "夕影", + "readging": "ゆうかげ", + "pos": "名詞", + "pn": -0.207114 + }, + { + "surface": "ぱらつく", + "readging": "ぱらつく", + "pos": "動詞", + "pn": -0.207116 + }, + { + "surface": "固有名詞", + "readging": "こゆうめいし", + "pos": "名詞", + "pn": -0.207123 + }, + { + "surface": "牛酪", + "readging": "ぎゅうらく", + "pos": "名詞", + "pn": -0.207125 + }, + { + "surface": "キューピー", + "readging": "キューピー", + "pos": "名詞", + "pn": -0.207144 + }, + { + "surface": "報いる", + "readging": "むくいる", + "pos": "動詞", + "pn": -0.207144 + }, + { + "surface": "自訴", + "readging": "じそ", + "pos": "名詞", + "pn": -0.207153 + }, + { + "surface": "白金", + "readging": "しろがね", + "pos": "名詞", + "pn": -0.207168 + }, + { + "surface": "レンタル", + "readging": "レンタル", + "pos": "名詞", + "pn": -0.207184 + }, + { + "surface": "布令", + "readging": "ふれい", + "pos": "名詞", + "pn": -0.207184 + }, + { + "surface": "輻湊", + "readging": "ふくそう", + "pos": "名詞", + "pn": -0.207192 + }, + { + "surface": "へばりつく", + "readging": "へばりつく", + "pos": "動詞", + "pn": -0.207193 + }, + { + "surface": "大系", + "readging": "たいけい", + "pos": "名詞", + "pn": -0.207215 + }, + { + "surface": "添書", + "readging": "てんしょ", + "pos": "名詞", + "pn": -0.207234 + }, + { + "surface": "小料理", + "readging": "こりょうり", + "pos": "名詞", + "pn": -0.207238 + }, + { + "surface": "遠日点", + "readging": "えんじつてん", + "pos": "名詞", + "pn": -0.207247 + }, + { + "surface": "其の筋", + "readging": "そのすじ", + "pos": "名詞", + "pn": -0.207252 + }, + { + "surface": "続続", + "readging": "ぞくぞく", + "pos": "副詞", + "pn": -0.207257 + }, + { + "surface": "アリバイ", + "readging": "アリバイ", + "pos": "名詞", + "pn": -0.20728 + }, + { + "surface": "私家版", + "readging": "しかばん", + "pos": "名詞", + "pn": -0.207291 + }, + { + "surface": "格納", + "readging": "かくのう", + "pos": "名詞", + "pn": -0.207295 + }, + { + "surface": "国体", + "readging": "こくたい", + "pos": "名詞", + "pn": -0.207297 + }, + { + "surface": "王代物", + "readging": "おうだいもの", + "pos": "名詞", + "pn": -0.207303 + }, + { + "surface": "ニウム", + "readging": "ニウム", + "pos": "名詞", + "pn": -0.207305 + }, + { + "surface": "書生", + "readging": "しょせい", + "pos": "名詞", + "pn": -0.207313 + }, + { + "surface": "太政大臣", + "readging": "だじょうだいじん", + "pos": "名詞", + "pn": -0.207325 + }, + { + "surface": "売出し", + "readging": "うりだし", + "pos": "名詞", + "pn": -0.207345 + }, + { + "surface": "ダダ", + "readging": "ダダ", + "pos": "名詞", + "pn": -0.207353 + }, + { + "surface": "対流", + "readging": "たいりゅう", + "pos": "名詞", + "pn": -0.20737 + }, + { + "surface": "スクーター", + "readging": "スクーター", + "pos": "名詞", + "pn": -0.207377 + }, + { + "surface": "軽気球", + "readging": "けいききゅう", + "pos": "名詞", + "pn": -0.207385 + }, + { + "surface": "一つ書き", + "readging": "ひとつがき", + "pos": "名詞", + "pn": -0.207387 + }, + { + "surface": "水族館", + "readging": "すいぞくかん", + "pos": "名詞", + "pn": -0.207427 + }, + { + "surface": "道程", + "readging": "みちのり", + "pos": "名詞", + "pn": -0.207434 + }, + { + "surface": "不整", + "readging": "ふせい", + "pos": "名詞", + "pn": -0.207436 + }, + { + "surface": "常夏", + "readging": "とこなつ", + "pos": "名詞", + "pn": -0.207439 + }, + { + "surface": "当り", + "readging": "あたり", + "pos": "名詞", + "pn": -0.20745 + }, + { + "surface": "減塩", + "readging": "げんえん", + "pos": "名詞", + "pn": -0.20746 + }, + { + "surface": "夏眠", + "readging": "かみん", + "pos": "名詞", + "pn": -0.207482 + }, + { + "surface": "弁士", + "readging": "べんし", + "pos": "名詞", + "pn": -0.207488 + }, + { + "surface": "大隊", + "readging": "だいたい", + "pos": "名詞", + "pn": -0.207491 + }, + { + "surface": "振仮名", + "readging": "ふりがな", + "pos": "名詞", + "pn": -0.207498 + }, + { + "surface": "助産", + "readging": "じょさん", + "pos": "名詞", + "pn": -0.207501 + }, + { + "surface": "編修", + "readging": "へんしゅう", + "pos": "名詞", + "pn": -0.207504 + }, + { + "surface": "ヘリオトロープ", + "readging": "ヘリオトロープ", + "pos": "名詞", + "pn": -0.207537 + }, + { + "surface": "二次会", + "readging": "にじかい", + "pos": "名詞", + "pn": -0.20754 + }, + { + "surface": "資源", + "readging": "しげん", + "pos": "名詞", + "pn": -0.20756 + }, + { + "surface": "口上書", + "readging": "こうじょうがき", + "pos": "名詞", + "pn": -0.207572 + }, + { + "surface": "心劣り", + "readging": "こころおとり", + "pos": "名詞", + "pn": -0.20759 + }, + { + "surface": "咲分け", + "readging": "さきわけ", + "pos": "名詞", + "pn": -0.207595 + }, + { + "surface": "燐肥", + "readging": "りんぴ", + "pos": "名詞", + "pn": -0.207598 + }, + { + "surface": "鉤の手", + "readging": "かぎのて", + "pos": "名詞", + "pn": -0.207605 + }, + { + "surface": "定期取引", + "readging": "ていきとりひき", + "pos": "名詞", + "pn": -0.207619 + }, + { + "surface": "開港場", + "readging": "かいこうじょう", + "pos": "名詞", + "pn": -0.207621 + }, + { + "surface": "代入", + "readging": "だいにゅう", + "pos": "名詞", + "pn": -0.207624 + }, + { + "surface": "献灯", + "readging": "けんとう", + "pos": "名詞", + "pn": -0.207631 + }, + { + "surface": "送達", + "readging": "そうたつ", + "pos": "名詞", + "pn": -0.207633 + }, + { + "surface": "後世", + "readging": "ごせ", + "pos": "名詞", + "pn": -0.207638 + }, + { + "surface": "メラニン", + "readging": "メラニン", + "pos": "名詞", + "pn": -0.207644 + }, + { + "surface": "満会", + "readging": "まんかい", + "pos": "名詞", + "pn": -0.207662 + }, + { + "surface": "所用", + "readging": "しょよう", + "pos": "名詞", + "pn": -0.20767 + }, + { + "surface": "四君子", + "readging": "しくんし", + "pos": "名詞", + "pn": -0.207703 + }, + { + "surface": "八裂き", + "readging": "やつざき", + "pos": "名詞", + "pn": -0.207715 + }, + { + "surface": "引裂く", + "readging": "ひきさく", + "pos": "動詞", + "pn": -0.207715 + }, + { + "surface": "轟", + "readging": "ごう", + "pos": "名詞", + "pn": -0.207724 + }, + { + "surface": "以遠", + "readging": "いえん", + "pos": "名詞", + "pn": -0.207727 + }, + { + "surface": "ブレスレット", + "readging": "ブレスレット", + "pos": "名詞", + "pn": -0.207748 + }, + { + "surface": "牛糞", + "readging": "ぎゅうふん", + "pos": "名詞", + "pn": -0.207764 + }, + { + "surface": "晶", + "readging": "しょう", + "pos": "名詞", + "pn": -0.207766 + }, + { + "surface": "畳語", + "readging": "じょうご", + "pos": "名詞", + "pn": -0.207782 + }, + { + "surface": "耐性", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.207797 + }, + { + "surface": "残暑", + "readging": "ざんしょ", + "pos": "名詞", + "pn": -0.207801 + }, + { + "surface": "モットー", + "readging": "モットー", + "pos": "名詞", + "pn": -0.207818 + }, + { + "surface": "出獄", + "readging": "しゅつごく", + "pos": "名詞", + "pn": -0.20782 + }, + { + "surface": "薄刃", + "readging": "うすば", + "pos": "名詞", + "pn": -0.207824 + }, + { + "surface": "八頭", + "readging": "やつがしら", + "pos": "名詞", + "pn": -0.207831 + }, + { + "surface": "長尾", + "readging": "ちょうび", + "pos": "名詞", + "pn": -0.207832 + }, + { + "surface": "初産", + "readging": "ういざん", + "pos": "名詞", + "pn": -0.207847 + }, + { + "surface": "デシベル", + "readging": "デシベル", + "pos": "名詞", + "pn": -0.20786 + }, + { + "surface": "天王", + "readging": "てんのう", + "pos": "名詞", + "pn": -0.207887 + }, + { + "surface": "形崩れ", + "readging": "かたくずれ", + "pos": "名詞", + "pn": -0.207893 + }, + { + "surface": "命取り", + "readging": "いのちとり", + "pos": "名詞", + "pn": -0.207913 + }, + { + "surface": "キャリア", + "readging": "キャリア", + "pos": "名詞", + "pn": -0.207928 + }, + { + "surface": "界雷", + "readging": "かいらい", + "pos": "名詞", + "pn": -0.20793 + }, + { + "surface": "非戦論", + "readging": "ひせんろん", + "pos": "名詞", + "pn": -0.20793 + }, + { + "surface": "オール", + "readging": "オールスター キャスト", + "pos": "名詞", + "pn": -0.207932 + }, + { + "surface": "保育", + "readging": "ほいく", + "pos": "名詞", + "pn": -0.207939 + }, + { + "surface": "史学", + "readging": "しがく", + "pos": "名詞", + "pn": -0.207956 + }, + { + "surface": "照返す", + "readging": "てりかえす", + "pos": "動詞", + "pn": -0.207961 + }, + { + "surface": "憮然", + "readging": "ぶぜん", + "pos": "名詞", + "pn": -0.207968 + }, + { + "surface": "天王星", + "readging": "てんおうせい", + "pos": "名詞", + "pn": -0.207969 + }, + { + "surface": "切替え畑", + "readging": "きりかえばた", + "pos": "名詞", + "pn": -0.207976 + }, + { + "surface": "刈込む", + "readging": "かりこむ", + "pos": "動詞", + "pn": -0.207978 + }, + { + "surface": "楽隊", + "readging": "がくたい", + "pos": "名詞", + "pn": -0.207985 + }, + { + "surface": "軍歌", + "readging": "ぐんか", + "pos": "名詞", + "pn": -0.207988 + }, + { + "surface": "互角", + "readging": "ごかく", + "pos": "名詞", + "pn": -0.20799 + }, + { + "surface": "ウイーク ポイント", + "readging": "ウイーク ポイント", + "pos": "名詞", + "pn": -0.207991 + }, + { + "surface": "夜泣き", + "readging": "よなき", + "pos": "名詞", + "pn": -0.207993 + }, + { + "surface": "講中", + "readging": "こうじゅう", + "pos": "名詞", + "pn": -0.208001 + }, + { + "surface": "聖油", + "readging": "せいゆ", + "pos": "名詞", + "pn": -0.208013 + }, + { + "surface": "断雲", + "readging": "だんうん", + "pos": "名詞", + "pn": -0.20803 + }, + { + "surface": "不協和音", + "readging": "ふきょうわおん", + "pos": "名詞", + "pn": -0.208038 + }, + { + "surface": "直通", + "readging": "ちょくつう", + "pos": "名詞", + "pn": -0.208044 + }, + { + "surface": "月白", + "readging": "つきしろ", + "pos": "名詞", + "pn": -0.20807 + }, + { + "surface": "抜道", + "readging": "ぬけみち", + "pos": "名詞", + "pn": -0.208076 + }, + { + "surface": "制令", + "readging": "せいれい", + "pos": "名詞", + "pn": -0.208078 + }, + { + "surface": "理容", + "readging": "りよう", + "pos": "名詞", + "pn": -0.208081 + }, + { + "surface": "元物", + "readging": "げんぶつ", + "pos": "名詞", + "pn": -0.208087 + }, + { + "surface": "御堂", + "readging": "みどう", + "pos": "名詞", + "pn": -0.208102 + }, + { + "surface": "鉄血", + "readging": "てっけつ", + "pos": "名詞", + "pn": -0.208107 + }, + { + "surface": "追遣る", + "readging": "おいやる", + "pos": "動詞", + "pn": -0.208123 + }, + { + "surface": "天上", + "readging": "てんじょう", + "pos": "名詞", + "pn": -0.208128 + }, + { + "surface": "助言", + "readging": "じょごん", + "pos": "名詞", + "pn": -0.208164 + }, + { + "surface": "コンマ", + "readging": "コンマ", + "pos": "名詞", + "pn": -0.208182 + }, + { + "surface": "茶筒", + "readging": "ちゃづつ", + "pos": "名詞", + "pn": -0.208183 + }, + { + "surface": "親指", + "readging": "おやゆび", + "pos": "名詞", + "pn": -0.208195 + }, + { + "surface": "外祖父", + "readging": "がいそふ", + "pos": "名詞", + "pn": -0.208197 + }, + { + "surface": "平首", + "readging": "ひらくび", + "pos": "名詞", + "pn": -0.208212 + }, + { + "surface": "駁説", + "readging": "ばくせつ", + "pos": "名詞", + "pn": -0.208223 + }, + { + "surface": "補訂", + "readging": "ほてい", + "pos": "名詞", + "pn": -0.208237 + }, + { + "surface": "抱懐", + "readging": "ほうかい", + "pos": "名詞", + "pn": -0.208245 + }, + { + "surface": "あいなめ", + "readging": "あいなめ", + "pos": "名詞", + "pn": -0.208258 + }, + { + "surface": "紅梅", + "readging": "こうばい", + "pos": "名詞", + "pn": -0.208259 + }, + { + "surface": "川千鳥", + "readging": "かわちどり", + "pos": "名詞", + "pn": -0.208268 + }, + { + "surface": "単純", + "readging": "たんじゅん", + "pos": "名詞", + "pn": -0.208271 + }, + { + "surface": "嫌味", + "readging": "いやみ", + "pos": "名詞", + "pn": -0.208277 + }, + { + "surface": "横断", + "readging": "おうだん", + "pos": "名詞", + "pn": -0.208297 + }, + { + "surface": "素地", + "readging": "そち", + "pos": "名詞", + "pn": -0.208298 + }, + { + "surface": "筆耕", + "readging": "ひっこう", + "pos": "名詞", + "pn": -0.208301 + }, + { + "surface": "仏間", + "readging": "ぶつま", + "pos": "名詞", + "pn": -0.208305 + }, + { + "surface": "雨曇", + "readging": "あまぐもり", + "pos": "名詞", + "pn": -0.208323 + }, + { + "surface": "ロース", + "readging": "ロース", + "pos": "名詞", + "pn": -0.208325 + }, + { + "surface": "粋", + "readging": "すい", + "pos": "名詞", + "pn": -0.208325 + }, + { + "surface": "サンクチュアリ", + "readging": "サンクチュアリ", + "pos": "名詞", + "pn": -0.208326 + }, + { + "surface": "筆写", + "readging": "ひっしゃ", + "pos": "名詞", + "pn": -0.208331 + }, + { + "surface": "宗主権", + "readging": "そうしゅけん", + "pos": "名詞", + "pn": -0.208332 + }, + { + "surface": "電化", + "readging": "でんか", + "pos": "名詞", + "pn": -0.208368 + }, + { + "surface": "五菜", + "readging": "ごさい", + "pos": "名詞", + "pn": -0.208368 + }, + { + "surface": "組替える", + "readging": "くみかえる", + "pos": "動詞", + "pn": -0.208389 + }, + { + "surface": "憫然", + "readging": "びんぜん", + "pos": "名詞", + "pn": -0.208395 + }, + { + "surface": "リクエスト", + "readging": "リクエスト", + "pos": "名詞", + "pn": -0.208405 + }, + { + "surface": "溢血", + "readging": "いっけつ", + "pos": "名詞", + "pn": -0.208412 + }, + { + "surface": "移築", + "readging": "いちく", + "pos": "名詞", + "pn": -0.208415 + }, + { + "surface": "スター", + "readging": "スターシステム", + "pos": "名詞", + "pn": -0.208422 + }, + { + "surface": "のんべんだらりと", + "readging": "のんべんだらりと", + "pos": "副詞", + "pn": -0.208424 + }, + { + "surface": "好き心", + "readging": "すきごころ", + "pos": "名詞", + "pn": -0.208455 + }, + { + "surface": "現高", + "readging": "げんだか", + "pos": "名詞", + "pn": -0.208455 + }, + { + "surface": "着古し", + "readging": "きふるし", + "pos": "名詞", + "pn": -0.208456 + }, + { + "surface": "三稜鏡", + "readging": "さんりょうきょう", + "pos": "名詞", + "pn": -0.208462 + }, + { + "surface": "経巻", + "readging": "きょうかん", + "pos": "名詞", + "pn": -0.208512 + }, + { + "surface": "望蜀", + "readging": "ぼうしょく", + "pos": "名詞", + "pn": -0.208513 + }, + { + "surface": "男旱", + "readging": "おとこひでり", + "pos": "名詞", + "pn": -0.208535 + }, + { + "surface": "融資", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.20855 + }, + { + "surface": "斎米", + "readging": "ときまい", + "pos": "名詞", + "pn": -0.208565 + }, + { + "surface": "四季", + "readging": "しき", + "pos": "名詞", + "pn": -0.208599 + }, + { + "surface": "融通手形", + "readging": "ゆうずうてがた", + "pos": "名詞", + "pn": -0.2086 + }, + { + "surface": "原液", + "readging": "げんえき", + "pos": "名詞", + "pn": -0.208618 + }, + { + "surface": "誓願", + "readging": "せいがん", + "pos": "名詞", + "pn": -0.208645 + }, + { + "surface": "鹵簿", + "readging": "ろぼ", + "pos": "名詞", + "pn": -0.20866 + }, + { + "surface": "法人税", + "readging": "ほうじんぜい", + "pos": "名詞", + "pn": -0.208669 + }, + { + "surface": "表音文字", + "readging": "ひょうおんもんじ", + "pos": "名詞", + "pn": -0.208672 + }, + { + "surface": "下図", + "readging": "したず", + "pos": "名詞", + "pn": -0.208695 + }, + { + "surface": "御座船", + "readging": "ござぶね", + "pos": "名詞", + "pn": -0.208713 + }, + { + "surface": "盛合せ", + "readging": "もりあわせ", + "pos": "名詞", + "pn": -0.208748 + }, + { + "surface": "ハイ ティーン", + "readging": "ハイ ティーン", + "pos": "名詞", + "pn": -0.208763 + }, + { + "surface": "戦友", + "readging": "せんゆう", + "pos": "名詞", + "pn": -0.208788 + }, + { + "surface": "生生", + "readging": "しょうじょう", + "pos": "名詞", + "pn": -0.208788 + }, + { + "surface": "叢雲", + "readging": "むらくも", + "pos": "名詞", + "pn": -0.20881 + }, + { + "surface": "ネガ", + "readging": "ネガ", + "pos": "名詞", + "pn": -0.208818 + }, + { + "surface": "櫓下", + "readging": "やぐらした", + "pos": "名詞", + "pn": -0.208825 + }, + { + "surface": "私家集", + "readging": "しかしゅう", + "pos": "名詞", + "pn": -0.20883 + }, + { + "surface": "眠りこける", + "readging": "ねむりこける", + "pos": "動詞", + "pn": -0.208852 + }, + { + "surface": "殿下", + "readging": "でんか", + "pos": "名詞", + "pn": -0.208856 + }, + { + "surface": "給する", + "readging": "きゅうする", + "pos": "動詞", + "pn": -0.208857 + }, + { + "surface": "仏葬", + "readging": "ぶっそう", + "pos": "名詞", + "pn": -0.20887 + }, + { + "surface": "御霊代", + "readging": "みたましろ", + "pos": "名詞", + "pn": -0.208878 + }, + { + "surface": "真偽", + "readging": "しんぎ", + "pos": "名詞", + "pn": -0.20888 + }, + { + "surface": "論破", + "readging": "ろんぱ", + "pos": "名詞", + "pn": -0.208889 + }, + { + "surface": "寸陰", + "readging": "すんいん", + "pos": "名詞", + "pn": -0.208897 + }, + { + "surface": "やはり", + "readging": "やはり", + "pos": "副詞", + "pn": -0.208898 + }, + { + "surface": "節略", + "readging": "せつりゃく", + "pos": "名詞", + "pn": -0.208902 + }, + { + "surface": "正正堂堂", + "readging": "せいせいどうどう", + "pos": "名詞", + "pn": -0.208927 + }, + { + "surface": "温める", + "readging": "ぬくめる", + "pos": "動詞", + "pn": -0.20893 + }, + { + "surface": "茶亭", + "readging": "ちゃてい", + "pos": "名詞", + "pn": -0.208948 + }, + { + "surface": "短見", + "readging": "たんけん", + "pos": "名詞", + "pn": -0.208963 + }, + { + "surface": "倍角", + "readging": "ばいかく", + "pos": "名詞", + "pn": -0.208975 + }, + { + "surface": "時限", + "readging": "じげん", + "pos": "名詞", + "pn": -0.208976 + }, + { + "surface": "上座", + "readging": "じょうざ", + "pos": "名詞", + "pn": -0.209033 + }, + { + "surface": "睨めっこ", + "readging": "にらめっこ", + "pos": "名詞", + "pn": -0.209035 + }, + { + "surface": "お薄", + "readging": "おうす", + "pos": "名詞", + "pn": -0.209036 + }, + { + "surface": "佯狂", + "readging": "ようきょう", + "pos": "名詞", + "pn": -0.209039 + }, + { + "surface": "作図", + "readging": "さくず", + "pos": "名詞", + "pn": -0.209056 + }, + { + "surface": "問返す", + "readging": "といかえす", + "pos": "動詞", + "pn": -0.209062 + }, + { + "surface": "神棚", + "readging": "かみだな", + "pos": "名詞", + "pn": -0.20907 + }, + { + "surface": "海狸", + "readging": "かいり", + "pos": "名詞", + "pn": -0.209082 + }, + { + "surface": "私書", + "readging": "ししょ", + "pos": "名詞", + "pn": -0.209097 + }, + { + "surface": "給湯", + "readging": "きゅうとう", + "pos": "名詞", + "pn": -0.209104 + }, + { + "surface": "一昨昨年", + "readging": "さきおととし", + "pos": "名詞", + "pn": -0.209113 + }, + { + "surface": "明くる", + "readging": "あくる", + "pos": "動詞", + "pn": -0.209135 + }, + { + "surface": "参勤交代", + "readging": "さんきんこうたい", + "pos": "名詞", + "pn": -0.209138 + }, + { + "surface": "残菊", + "readging": "ざんぎく", + "pos": "名詞", + "pn": -0.209141 + }, + { + "surface": "仕込杖", + "readging": "しこみづえ", + "pos": "名詞", + "pn": -0.209178 + }, + { + "surface": "ATS", + "readging": "エーティーエス", + "pos": "名詞", + "pn": -0.209191 + }, + { + "surface": "重訂", + "readging": "じゅうてい", + "pos": "名詞", + "pn": -0.209193 + }, + { + "surface": "芽出し", + "readging": "めだし", + "pos": "名詞", + "pn": -0.209194 + }, + { + "surface": "生写し", + "readging": "いきうつし", + "pos": "名詞", + "pn": -0.209245 + }, + { + "surface": "添遂げる", + "readging": "そいとげる", + "pos": "動詞", + "pn": -0.209258 + }, + { + "surface": "経閉期", + "readging": "けいへいき", + "pos": "名詞", + "pn": -0.209272 + }, + { + "surface": "取口", + "readging": "とりくち", + "pos": "名詞", + "pn": -0.20928 + }, + { + "surface": "表芸", + "readging": "おもてげい", + "pos": "名詞", + "pn": -0.209307 + }, + { + "surface": "予防線", + "readging": "よぼうせん", + "pos": "名詞", + "pn": -0.209334 + }, + { + "surface": "迫撃", + "readging": "はくげき", + "pos": "名詞", + "pn": -0.209362 + }, + { + "surface": "大伯父", + "readging": "おおおじ", + "pos": "名詞", + "pn": -0.20937 + }, + { + "surface": "哨舎", + "readging": "しょうしゃ", + "pos": "名詞", + "pn": -0.209376 + }, + { + "surface": "大典", + "readging": "たいてん", + "pos": "名詞", + "pn": -0.209378 + }, + { + "surface": "夜戦", + "readging": "やせん", + "pos": "名詞", + "pn": -0.209384 + }, + { + "surface": "類題", + "readging": "るいだい", + "pos": "名詞", + "pn": -0.209386 + }, + { + "surface": "新刊", + "readging": "しんかん", + "pos": "名詞", + "pn": -0.209397 + }, + { + "surface": "ルック", + "readging": "ルック", + "pos": "名詞", + "pn": -0.209407 + }, + { + "surface": "実益", + "readging": "じつえき", + "pos": "名詞", + "pn": -0.209413 + }, + { + "surface": "華甲", + "readging": "かこう", + "pos": "名詞", + "pn": -0.209419 + }, + { + "surface": "十六ミリ", + "readging": "じゅうろくミリ", + "pos": "名詞", + "pn": -0.209427 + }, + { + "surface": "勅語", + "readging": "ちょくご", + "pos": "名詞", + "pn": -0.209434 + }, + { + "surface": "杜漏", + "readging": "ずろう", + "pos": "名詞", + "pn": -0.20946 + }, + { + "surface": "整腸剤", + "readging": "せいちょうざい", + "pos": "名詞", + "pn": -0.209461 + }, + { + "surface": "結句", + "readging": "けっく", + "pos": "名詞", + "pn": -0.209464 + }, + { + "surface": "僧職", + "readging": "そうしょく", + "pos": "名詞", + "pn": -0.209464 + }, + { + "surface": "セメン", + "readging": "セメン", + "pos": "名詞", + "pn": -0.209497 + }, + { + "surface": "先入観", + "readging": "せんにゅうかん", + "pos": "名詞", + "pn": -0.209536 + }, + { + "surface": "郡代", + "readging": "ぐんだい", + "pos": "名詞", + "pn": -0.209543 + }, + { + "surface": "御用達", + "readging": "ごようたし", + "pos": "名詞", + "pn": -0.209605 + }, + { + "surface": "聖霊", + "readging": "せいれい", + "pos": "名詞", + "pn": -0.209617 + }, + { + "surface": "仮説", + "readging": "かせつ", + "pos": "名詞", + "pn": -0.209623 + }, + { + "surface": "求償", + "readging": "きゅうしょう", + "pos": "名詞", + "pn": -0.209626 + }, + { + "surface": "上巳", + "readging": "じょうし", + "pos": "名詞", + "pn": -0.209628 + }, + { + "surface": "灰燼", + "readging": "かいじん", + "pos": "名詞", + "pn": -0.209632 + }, + { + "surface": "正犯", + "readging": "せいはん", + "pos": "名詞", + "pn": -0.209648 + }, + { + "surface": "週報", + "readging": "しゅうほう", + "pos": "名詞", + "pn": -0.209649 + }, + { + "surface": "為政", + "readging": "いせい", + "pos": "名詞", + "pn": -0.209676 + }, + { + "surface": "ぶちかます", + "readging": "ぶちかます", + "pos": "動詞", + "pn": -0.209678 + }, + { + "surface": "医方", + "readging": "いほう", + "pos": "名詞", + "pn": -0.209688 + }, + { + "surface": "所司", + "readging": "しょし", + "pos": "名詞", + "pn": -0.20969 + }, + { + "surface": "馬子", + "readging": "まご", + "pos": "名詞", + "pn": -0.209709 + }, + { + "surface": "鉄筋", + "readging": "てっきん", + "pos": "名詞", + "pn": -0.209712 + }, + { + "surface": "ほける", + "readging": "ほける", + "pos": "動詞", + "pn": -0.209714 + }, + { + "surface": "ポップス", + "readging": "ポップス", + "pos": "名詞", + "pn": -0.209715 + }, + { + "surface": "佩剣", + "readging": "はいけん", + "pos": "名詞", + "pn": -0.209742 + }, + { + "surface": "断章", + "readging": "だんしょう", + "pos": "名詞", + "pn": -0.209746 + }, + { + "surface": "実正", + "readging": "じっしょう", + "pos": "名詞", + "pn": -0.209751 + }, + { + "surface": "東宮", + "readging": "とうぐう", + "pos": "名詞", + "pn": -0.209755 + }, + { + "surface": "軍鼓", + "readging": "ぐんこ", + "pos": "名詞", + "pn": -0.209766 + }, + { + "surface": "便覧", + "readging": "べんらん", + "pos": "名詞", + "pn": -0.209796 + }, + { + "surface": "蚕業", + "readging": "さんぎょう", + "pos": "名詞", + "pn": -0.209815 + }, + { + "surface": "木戸銭", + "readging": "きどせん", + "pos": "名詞", + "pn": -0.209817 + }, + { + "surface": "密室", + "readging": "みっしつ", + "pos": "名詞", + "pn": -0.209826 + }, + { + "surface": "守勢", + "readging": "しゅせい", + "pos": "名詞", + "pn": -0.209836 + }, + { + "surface": "御座", + "readging": "ござ", + "pos": "名詞", + "pn": -0.209842 + }, + { + "surface": "俄然", + "readging": "がぜん", + "pos": "副詞", + "pn": -0.209842 + }, + { + "surface": "男泣き", + "readging": "おとこなき", + "pos": "名詞", + "pn": -0.209852 + }, + { + "surface": "優渥", + "readging": "ゆうあく", + "pos": "名詞", + "pn": -0.209855 + }, + { + "surface": "在荷", + "readging": "ざいか", + "pos": "名詞", + "pn": -0.209866 + }, + { + "surface": "本有", + "readging": "ほんゆう", + "pos": "名詞", + "pn": -0.209867 + }, + { + "surface": "接客", + "readging": "せっきゃく", + "pos": "名詞", + "pn": -0.209873 + }, + { + "surface": "免役", + "readging": "めんえき", + "pos": "名詞", + "pn": -0.209884 + }, + { + "surface": "実念論", + "readging": "じつねんろん", + "pos": "名詞", + "pn": -0.209916 + }, + { + "surface": "染め色", + "readging": "そめいろ", + "pos": "名詞", + "pn": -0.20992 + }, + { + "surface": "外回り", + "readging": "そとまわり", + "pos": "名詞", + "pn": -0.209922 + }, + { + "surface": "実存主義", + "readging": "じつぞんしゅぎ", + "pos": "名詞", + "pn": -0.209937 + }, + { + "surface": "濡仏", + "readging": "ぬれぼとけ", + "pos": "名詞", + "pn": -0.209949 + }, + { + "surface": "動画", + "readging": "どうが", + "pos": "名詞", + "pn": -0.209955 + }, + { + "surface": "浮出す", + "readging": "うきだす", + "pos": "動詞", + "pn": -0.209961 + }, + { + "surface": "桑弓", + "readging": "くわゆみ", + "pos": "名詞", + "pn": -0.209968 + }, + { + "surface": "系譜", + "readging": "けいふ", + "pos": "名詞", + "pn": -0.209976 + }, + { + "surface": "後向き", + "readging": "うしろむき", + "pos": "名詞", + "pn": -0.209983 + }, + { + "surface": "退場", + "readging": "たいじょう", + "pos": "名詞", + "pn": -0.209985 + }, + { + "surface": "見覚え", + "readging": "みおぼえ", + "pos": "名詞", + "pn": -0.209994 + }, + { + "surface": "入牢", + "readging": "にゅうろう", + "pos": "名詞", + "pn": -0.210002 + }, + { + "surface": "俗流", + "readging": "ぞくりゅう", + "pos": "名詞", + "pn": -0.210005 + }, + { + "surface": "木琴", + "readging": "もっきん", + "pos": "名詞", + "pn": -0.210008 + }, + { + "surface": "庚申", + "readging": "こうしん", + "pos": "名詞", + "pn": -0.210025 + }, + { + "surface": "再建", + "readging": "さいけん", + "pos": "名詞", + "pn": -0.210031 + }, + { + "surface": "木太刀", + "readging": "きだち", + "pos": "名詞", + "pn": -0.21004 + }, + { + "surface": "富士額", + "readging": "ふじびたい", + "pos": "名詞", + "pn": -0.210044 + }, + { + "surface": "点画", + "readging": "てんかく", + "pos": "名詞", + "pn": -0.210049 + }, + { + "surface": "赤身", + "readging": "あかみ", + "pos": "名詞", + "pn": -0.210056 + }, + { + "surface": "工手", + "readging": "こうしゅ", + "pos": "名詞", + "pn": -0.21006 + }, + { + "surface": "愛弟子", + "readging": "まなでし", + "pos": "名詞", + "pn": -0.210089 + }, + { + "surface": "絶体絶命", + "readging": "ぜったいぜつめい", + "pos": "名詞", + "pn": -0.210099 + }, + { + "surface": "浪漫", + "readging": "ろうまん", + "pos": "名詞", + "pn": -0.210103 + }, + { + "surface": "結審", + "readging": "けっしん", + "pos": "名詞", + "pn": -0.210116 + }, + { + "surface": "型染", + "readging": "かたぞめ", + "pos": "名詞", + "pn": -0.210129 + }, + { + "surface": "山紫水明", + "readging": "さんしすいめい", + "pos": "名詞", + "pn": -0.210137 + }, + { + "surface": "密会", + "readging": "みっかい", + "pos": "名詞", + "pn": -0.210142 + }, + { + "surface": "公正証書", + "readging": "こうせいしょうしょ", + "pos": "名詞", + "pn": -0.210158 + }, + { + "surface": "見え見え", + "readging": "みえみえ", + "pos": "名詞", + "pn": -0.210171 + }, + { + "surface": "売子", + "readging": "うりこ", + "pos": "名詞", + "pn": -0.210175 + }, + { + "surface": "忍従", + "readging": "にんじゅう", + "pos": "名詞", + "pn": -0.210185 + }, + { + "surface": "族称", + "readging": "ぞくしょう", + "pos": "名詞", + "pn": -0.210192 + }, + { + "surface": "高射", + "readging": "こうしゃ", + "pos": "名詞", + "pn": -0.210211 + }, + { + "surface": "決め球", + "readging": "きめだま", + "pos": "名詞", + "pn": -0.210213 + }, + { + "surface": "商談", + "readging": "しょうだん", + "pos": "名詞", + "pn": -0.210217 + }, + { + "surface": "箝口令", + "readging": "かんこうれい", + "pos": "名詞", + "pn": -0.210226 + }, + { + "surface": "祭文", + "readging": "さいもん", + "pos": "名詞", + "pn": -0.210228 + }, + { + "surface": "混血", + "readging": "こんけつ", + "pos": "名詞", + "pn": -0.210261 + }, + { + "surface": "ダイヤグラム", + "readging": "ダイヤグラム", + "pos": "名詞", + "pn": -0.210262 + }, + { + "surface": "深海", + "readging": "しんかい", + "pos": "名詞", + "pn": -0.210269 + }, + { + "surface": "自弁", + "readging": "じべん", + "pos": "名詞", + "pn": -0.21029 + }, + { + "surface": "帆影", + "readging": "ほかげ", + "pos": "名詞", + "pn": -0.21029 + }, + { + "surface": "財力", + "readging": "ざいりょく", + "pos": "名詞", + "pn": -0.210299 + }, + { + "surface": "鱗介", + "readging": "りんかい", + "pos": "名詞", + "pn": -0.210303 + }, + { + "surface": "薄手", + "readging": "うすで", + "pos": "名詞", + "pn": -0.210311 + }, + { + "surface": "伍", + "readging": "ご", + "pos": "名詞", + "pn": -0.21033 + }, + { + "surface": "拳闘", + "readging": "けんとう", + "pos": "名詞", + "pn": -0.210335 + }, + { + "surface": "牧", + "readging": "ぼく", + "pos": "名詞", + "pn": -0.210339 + }, + { + "surface": "シーズン", + "readging": "シーズンオフ", + "pos": "名詞", + "pn": -0.210354 + }, + { + "surface": "広軌", + "readging": "こうき", + "pos": "名詞", + "pn": -0.210373 + }, + { + "surface": "サファリ", + "readging": "サファリ", + "pos": "名詞", + "pn": -0.210375 + }, + { + "surface": "二進法", + "readging": "にしんほう", + "pos": "名詞", + "pn": -0.210375 + }, + { + "surface": "暗涙", + "readging": "あんるい", + "pos": "名詞", + "pn": -0.210379 + }, + { + "surface": "国手", + "readging": "こくしゅ", + "pos": "名詞", + "pn": -0.210394 + }, + { + "surface": "既望", + "readging": "きぼう", + "pos": "名詞", + "pn": -0.210403 + }, + { + "surface": "屈光性", + "readging": "くっこうせい", + "pos": "名詞", + "pn": -0.210441 + }, + { + "surface": "掘っ建て", + "readging": "ほったて", + "pos": "名詞", + "pn": -0.210463 + }, + { + "surface": "和裁", + "readging": "わさい", + "pos": "名詞", + "pn": -0.210472 + }, + { + "surface": "軽金属", + "readging": "けいきんぞく", + "pos": "名詞", + "pn": -0.210484 + }, + { + "surface": "ナレーター", + "readging": "ナレーター", + "pos": "名詞", + "pn": -0.210486 + }, + { + "surface": "聴取", + "readging": "ちょうしゅ", + "pos": "名詞", + "pn": -0.210492 + }, + { + "surface": "査収", + "readging": "さしゅう", + "pos": "名詞", + "pn": -0.210515 + }, + { + "surface": "肺葉", + "readging": "はいよう", + "pos": "名詞", + "pn": -0.210521 + }, + { + "surface": "子爵", + "readging": "ししゃく", + "pos": "名詞", + "pn": -0.210532 + }, + { + "surface": "特電", + "readging": "とくでん", + "pos": "名詞", + "pn": -0.210558 + }, + { + "surface": "贅肉", + "readging": "ぜいにく", + "pos": "名詞", + "pn": -0.21056 + }, + { + "surface": "遠心", + "readging": "えんしん", + "pos": "名詞", + "pn": -0.210572 + }, + { + "surface": "倶利迦羅", + "readging": "くりから", + "pos": "名詞", + "pn": -0.210588 + }, + { + "surface": "主格", + "readging": "しゅかく", + "pos": "名詞", + "pn": -0.210595 + }, + { + "surface": "島守", + "readging": "しまもり", + "pos": "名詞", + "pn": -0.210596 + }, + { + "surface": "野天", + "readging": "のてん", + "pos": "名詞", + "pn": -0.210598 + }, + { + "surface": "呼付ける", + "readging": "よびつける", + "pos": "動詞", + "pn": -0.210627 + }, + { + "surface": "マグネット", + "readging": "マグネット", + "pos": "名詞", + "pn": -0.210629 + }, + { + "surface": "当代", + "readging": "とうだい", + "pos": "名詞", + "pn": -0.210643 + }, + { + "surface": "指南", + "readging": "しなん", + "pos": "名詞", + "pn": -0.210652 + }, + { + "surface": "タイピスト", + "readging": "タイピスト", + "pos": "名詞", + "pn": -0.210658 + }, + { + "surface": "廃兵", + "readging": "はいへい", + "pos": "名詞", + "pn": -0.210661 + }, + { + "surface": "現存", + "readging": "げんそん", + "pos": "名詞", + "pn": -0.210689 + }, + { + "surface": "晩酌", + "readging": "ばんしゃく", + "pos": "名詞", + "pn": -0.210728 + }, + { + "surface": "八重歯", + "readging": "やえ", + "pos": "名詞", + "pn": -0.210742 + }, + { + "surface": "穿刺", + "readging": "せんし", + "pos": "名詞", + "pn": -0.210746 + }, + { + "surface": "天井桟敷", + "readging": "てんじょうさじき", + "pos": "名詞", + "pn": -0.21076 + }, + { + "surface": "首相", + "readging": "しゅしょう", + "pos": "名詞", + "pn": -0.210763 + }, + { + "surface": "内線", + "readging": "ないせん", + "pos": "名詞", + "pn": -0.210765 + }, + { + "surface": "意訳", + "readging": "いやく", + "pos": "名詞", + "pn": -0.21077 + }, + { + "surface": "モメント", + "readging": "モメント", + "pos": "名詞", + "pn": -0.210776 + }, + { + "surface": "リトグラフ", + "readging": "リトグラフ", + "pos": "名詞", + "pn": -0.210825 + }, + { + "surface": "ほろりと", + "readging": "ほろりと", + "pos": "副詞", + "pn": -0.21083 + }, + { + "surface": "エゴイズム", + "readging": "エゴイズム", + "pos": "名詞", + "pn": -0.210874 + }, + { + "surface": "徳政", + "readging": "とくせい", + "pos": "名詞", + "pn": -0.210884 + }, + { + "surface": "偏旁", + "readging": "へんぼう", + "pos": "名詞", + "pn": -0.210903 + }, + { + "surface": "反対色", + "readging": "はんたいしょく", + "pos": "名詞", + "pn": -0.210903 + }, + { + "surface": "角兵衛獅子", + "readging": "かくべえじし", + "pos": "名詞", + "pn": -0.210903 + }, + { + "surface": "初詣", + "readging": "はつもうで", + "pos": "名詞", + "pn": -0.210908 + }, + { + "surface": "PR", + "readging": "ピーアール", + "pos": "名詞", + "pn": -0.210919 + }, + { + "surface": "明朝活字", + "readging": "みんちょうかつじ", + "pos": "名詞", + "pn": -0.210924 + }, + { + "surface": "戯れる", + "readging": "たわむれる", + "pos": "動詞", + "pn": -0.210932 + }, + { + "surface": "分化", + "readging": "ぶんか", + "pos": "名詞", + "pn": -0.210946 + }, + { + "surface": "オプション", + "readging": "オプション", + "pos": "名詞", + "pn": -0.210957 + }, + { + "surface": "上がり物", + "readging": "あがりもの", + "pos": "名詞", + "pn": -0.210969 + }, + { + "surface": "花屋敷", + "readging": "はなやしき", + "pos": "名詞", + "pn": -0.210997 + }, + { + "surface": "要衝", + "readging": "ようしょう", + "pos": "名詞", + "pn": -0.211002 + }, + { + "surface": "先妻", + "readging": "せんさい", + "pos": "名詞", + "pn": -0.211012 + }, + { + "surface": "折本", + "readging": "おりほん", + "pos": "名詞", + "pn": -0.211023 + }, + { + "surface": "秋宵", + "readging": "しゅうしょう", + "pos": "名詞", + "pn": -0.211025 + }, + { + "surface": "講習", + "readging": "こうしゅう", + "pos": "名詞", + "pn": -0.211038 + }, + { + "surface": "奉安", + "readging": "ほうあん", + "pos": "名詞", + "pn": -0.211069 + }, + { + "surface": "用量", + "readging": "ようりょう", + "pos": "名詞", + "pn": -0.21108 + }, + { + "surface": "初氷", + "readging": "はつごおり", + "pos": "名詞", + "pn": -0.21108 + }, + { + "surface": "スローモー", + "readging": "スローモー", + "pos": "名詞", + "pn": -0.211081 + }, + { + "surface": "望み", + "readging": "のぞみ", + "pos": "名詞", + "pn": -0.211138 + }, + { + "surface": "分列", + "readging": "ぶんれつ", + "pos": "名詞", + "pn": -0.211147 + }, + { + "surface": "先史", + "readging": "せんし", + "pos": "名詞", + "pn": -0.211148 + }, + { + "surface": "ルックス", + "readging": "ルックス", + "pos": "名詞", + "pn": -0.211159 + }, + { + "surface": "外", + "readging": "そと", + "pos": "名詞", + "pn": -0.211179 + }, + { + "surface": "ゼスチャー", + "readging": "ゼスチャー", + "pos": "名詞", + "pn": -0.21119 + }, + { + "surface": "気道", + "readging": "きどう", + "pos": "名詞", + "pn": -0.211191 + }, + { + "surface": "落第", + "readging": "らくだい", + "pos": "名詞", + "pn": -0.211205 + }, + { + "surface": "見分け", + "readging": "みわけ", + "pos": "名詞", + "pn": -0.211214 + }, + { + "surface": "翻刻", + "readging": "ほんこく", + "pos": "名詞", + "pn": -0.211227 + }, + { + "surface": "中級", + "readging": "ちゅうきゅう", + "pos": "名詞", + "pn": -0.21123 + }, + { + "surface": "竹紙", + "readging": "ちくし", + "pos": "名詞", + "pn": -0.211242 + }, + { + "surface": "鸚鵡返し", + "readging": "おうむがえし", + "pos": "名詞", + "pn": -0.211249 + }, + { + "surface": "きりきり舞", + "readging": "きりきりまい", + "pos": "名詞", + "pn": -0.211279 + }, + { + "surface": "板材", + "readging": "いたざい", + "pos": "名詞", + "pn": -0.21129 + }, + { + "surface": "内渡し", + "readging": "うちわたし", + "pos": "名詞", + "pn": -0.211336 + }, + { + "surface": "配送", + "readging": "はいそう", + "pos": "名詞", + "pn": -0.211341 + }, + { + "surface": "草根木皮", + "readging": "そうこんもくひ", + "pos": "名詞", + "pn": -0.211347 + }, + { + "surface": "辰星", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.211349 + }, + { + "surface": "急拵え", + "readging": "きゅうごしらえ", + "pos": "名詞", + "pn": -0.211355 + }, + { + "surface": "円周率", + "readging": "えんしゅうりつ", + "pos": "名詞", + "pn": -0.211368 + }, + { + "surface": "碧雲", + "readging": "へきうん", + "pos": "名詞", + "pn": -0.211371 + }, + { + "surface": "軽音楽", + "readging": "けいおんがく", + "pos": "名詞", + "pn": -0.211395 + }, + { + "surface": "軒並", + "readging": "のきなみ", + "pos": "名詞", + "pn": -0.211399 + }, + { + "surface": "天理", + "readging": "てんり", + "pos": "名詞", + "pn": -0.211445 + }, + { + "surface": "オメガ", + "readging": "オメガ", + "pos": "名詞", + "pn": -0.211456 + }, + { + "surface": "グラブ", + "readging": "グラブ", + "pos": "名詞", + "pn": -0.211459 + }, + { + "surface": "アイソトープ", + "readging": "アイソトープ", + "pos": "名詞", + "pn": -0.21151 + }, + { + "surface": "時代掛る", + "readging": "じだいがかる", + "pos": "動詞", + "pn": -0.211516 + }, + { + "surface": "素案", + "readging": "そあん", + "pos": "名詞", + "pn": -0.211518 + }, + { + "surface": "網棚", + "readging": "あみだな", + "pos": "名詞", + "pn": -0.211541 + }, + { + "surface": "矢玉", + "readging": "やだま", + "pos": "名詞", + "pn": -0.211544 + }, + { + "surface": "スーパー", + "readging": "スーパーマーケット", + "pos": "名詞", + "pn": -0.211551 + }, + { + "surface": "アド", + "readging": "アド", + "pos": "名詞", + "pn": -0.211569 + }, + { + "surface": "洋語", + "readging": "ようご", + "pos": "名詞", + "pn": -0.211572 + }, + { + "surface": "木型", + "readging": "きがた", + "pos": "名詞", + "pn": -0.211583 + }, + { + "surface": "がちゃがちゃ", + "readging": "がちゃがちゃ", + "pos": "名詞", + "pn": -0.211587 + }, + { + "surface": "御柳", + "readging": "ぎょりゅう", + "pos": "名詞", + "pn": -0.211615 + }, + { + "surface": "晩節", + "readging": "ばんせつ", + "pos": "名詞", + "pn": -0.21163 + }, + { + "surface": "新聞辞令", + "readging": "しんぶんじれい", + "pos": "名詞", + "pn": -0.211634 + }, + { + "surface": "陛下", + "readging": "へいか", + "pos": "名詞", + "pn": -0.211637 + }, + { + "surface": "中売", + "readging": "なかうり", + "pos": "名詞", + "pn": -0.211645 + }, + { + "surface": "書淫", + "readging": "しょいん", + "pos": "名詞", + "pn": -0.211679 + }, + { + "surface": "評定", + "readging": "ひょうてい", + "pos": "名詞", + "pn": -0.211682 + }, + { + "surface": "織成す", + "readging": "おりなす", + "pos": "動詞", + "pn": -0.21169 + }, + { + "surface": "憐察", + "readging": "れんさつ", + "pos": "名詞", + "pn": -0.211692 + }, + { + "surface": "留湯", + "readging": "とめゆ", + "pos": "名詞", + "pn": -0.211718 + }, + { + "surface": "地腫れ", + "readging": "じばれ", + "pos": "名詞", + "pn": -0.21172 + }, + { + "surface": "中等", + "readging": "ちゅうとう", + "pos": "名詞", + "pn": -0.211742 + }, + { + "surface": "強打", + "readging": "きょうだ", + "pos": "名詞", + "pn": -0.211763 + }, + { + "surface": "愚妹", + "readging": "ぐまい", + "pos": "名詞", + "pn": -0.211769 + }, + { + "surface": "廷臣", + "readging": "ていしん", + "pos": "名詞", + "pn": -0.211793 + }, + { + "surface": "仏座", + "readging": "ぶつざ", + "pos": "名詞", + "pn": -0.211817 + }, + { + "surface": "教法", + "readging": "きょうほう", + "pos": "名詞", + "pn": -0.21184 + }, + { + "surface": "絶叫", + "readging": "ぜっきょう", + "pos": "名詞", + "pn": -0.211851 + }, + { + "surface": "点眼", + "readging": "てんがん", + "pos": "名詞", + "pn": -0.211859 + }, + { + "surface": "試作", + "readging": "しさく", + "pos": "名詞", + "pn": -0.211889 + }, + { + "surface": "雨空", + "readging": "あまぞら", + "pos": "名詞", + "pn": -0.21189 + }, + { + "surface": "がっぽり", + "readging": "がっぽり", + "pos": "副詞", + "pn": -0.211896 + }, + { + "surface": "じいんと", + "readging": "じいんと", + "pos": "副詞", + "pn": -0.211992 + }, + { + "surface": "音標文字", + "readging": "おんぴょうもじ", + "pos": "名詞", + "pn": -0.212036 + }, + { + "surface": "ピアニスト", + "readging": "ピアニスト", + "pos": "名詞", + "pn": -0.212037 + }, + { + "surface": "天真爛漫", + "readging": "てんしんらんまん", + "pos": "名詞", + "pn": -0.212044 + }, + { + "surface": "余話", + "readging": "よわ", + "pos": "名詞", + "pn": -0.212071 + }, + { + "surface": "養老院", + "readging": "ようろういん", + "pos": "名詞", + "pn": -0.212095 + }, + { + "surface": "遣唐使", + "readging": "けんとうし", + "pos": "名詞", + "pn": -0.212098 + }, + { + "surface": "笹竜胆", + "readging": "ささりんどう", + "pos": "名詞", + "pn": -0.212108 + }, + { + "surface": "御身", + "readging": "おみ", + "pos": "名詞", + "pn": -0.212113 + }, + { + "surface": "ケーキ", + "readging": "ケーキ", + "pos": "名詞", + "pn": -0.212114 + }, + { + "surface": "晋", + "readging": "しん", + "pos": "名詞", + "pn": -0.212119 + }, + { + "surface": "書き手", + "readging": "かきて", + "pos": "名詞", + "pn": -0.212124 + }, + { + "surface": "売食い", + "readging": "うりぐい", + "pos": "名詞", + "pn": -0.21213 + }, + { + "surface": "講評", + "readging": "こうひょう", + "pos": "名詞", + "pn": -0.212134 + }, + { + "surface": "一網打尽", + "readging": "いちもうだじん", + "pos": "名詞", + "pn": -0.21214 + }, + { + "surface": "見え透く", + "readging": "みえすく", + "pos": "動詞", + "pn": -0.21214 + }, + { + "surface": "繊度", + "readging": "せんど", + "pos": "名詞", + "pn": -0.212149 + }, + { + "surface": "末期", + "readging": "まっき", + "pos": "名詞", + "pn": -0.212159 + }, + { + "surface": "不通", + "readging": "ふつう", + "pos": "名詞", + "pn": -0.212168 + }, + { + "surface": "銀鉱", + "readging": "ぎんこう", + "pos": "名詞", + "pn": -0.212172 + }, + { + "surface": "トランペット", + "readging": "トランペット", + "pos": "名詞", + "pn": -0.21219 + }, + { + "surface": "石山", + "readging": "いしやま", + "pos": "名詞", + "pn": -0.212209 + }, + { + "surface": "筆意", + "readging": "ひつい", + "pos": "名詞", + "pn": -0.212219 + }, + { + "surface": "殺げる", + "readging": "そげる", + "pos": "動詞", + "pn": -0.212241 + }, + { + "surface": "驚嘆", + "readging": "きょうたん", + "pos": "名詞", + "pn": -0.212243 + }, + { + "surface": "論者", + "readging": "ろんしゃ", + "pos": "名詞", + "pn": -0.21225 + }, + { + "surface": "手作業", + "readging": "てさぎょう", + "pos": "名詞", + "pn": -0.21225 + }, + { + "surface": "本義", + "readging": "ほんぎ", + "pos": "名詞", + "pn": -0.21227 + }, + { + "surface": "端物", + "readging": "はもの", + "pos": "名詞", + "pn": -0.212305 + }, + { + "surface": "響", + "readging": "ひびき", + "pos": "名詞", + "pn": -0.212308 + }, + { + "surface": "論題", + "readging": "ろんだい", + "pos": "名詞", + "pn": -0.212339 + }, + { + "surface": "忘れ形見", + "readging": "わすれがたみ", + "pos": "名詞", + "pn": -0.212354 + }, + { + "surface": "同日", + "readging": "どうじつ", + "pos": "名詞", + "pn": -0.212362 + }, + { + "surface": "算術", + "readging": "さんじゅつ", + "pos": "名詞", + "pn": -0.21239 + }, + { + "surface": "爆裂", + "readging": "ばくれつ", + "pos": "名詞", + "pn": -0.212427 + }, + { + "surface": "黄金", + "readging": "こがね", + "pos": "名詞", + "pn": -0.212428 + }, + { + "surface": "兄", + "readging": "あに", + "pos": "名詞", + "pn": -0.21244 + }, + { + "surface": "三又", + "readging": "みつまた", + "pos": "名詞", + "pn": -0.212463 + }, + { + "surface": "握箸", + "readging": "にぎりばし", + "pos": "名詞", + "pn": -0.21248 + }, + { + "surface": "増車", + "readging": "ぞうしゃ", + "pos": "名詞", + "pn": -0.212483 + }, + { + "surface": "離脱", + "readging": "りだつ", + "pos": "名詞", + "pn": -0.212484 + }, + { + "surface": "松籟", + "readging": "しょうらい", + "pos": "名詞", + "pn": -0.212516 + }, + { + "surface": "薬園", + "readging": "やくえん", + "pos": "名詞", + "pn": -0.212521 + }, + { + "surface": "幼者", + "readging": "ようしゃ", + "pos": "名詞", + "pn": -0.212522 + }, + { + "surface": "農本主義", + "readging": "のうほんしゅぎ", + "pos": "名詞", + "pn": -0.212524 + }, + { + "surface": "二等辺三角形", + "readging": "にとうへんさんかくけい", + "pos": "名詞", + "pn": -0.21253 + }, + { + "surface": "パトカー", + "readging": "パトカー", + "pos": "名詞", + "pn": -0.212534 + }, + { + "surface": "理想郷", + "readging": "りそうきょう", + "pos": "名詞", + "pn": -0.212554 + }, + { + "surface": "自由業", + "readging": "じゆうぎょう", + "pos": "名詞", + "pn": -0.212556 + }, + { + "surface": "篤と", + "readging": "とくと", + "pos": "副詞", + "pn": -0.21257 + }, + { + "surface": "証票", + "readging": "しょうひょう", + "pos": "名詞", + "pn": -0.212585 + }, + { + "surface": "青票", + "readging": "せいひょう", + "pos": "名詞", + "pn": -0.212604 + }, + { + "surface": "盛返す", + "readging": "もりかえす", + "pos": "動詞", + "pn": -0.212623 + }, + { + "surface": "碑銘", + "readging": "ひめい", + "pos": "名詞", + "pn": -0.212625 + }, + { + "surface": "町医", + "readging": "まちい", + "pos": "名詞", + "pn": -0.212625 + }, + { + "surface": "実験小説", + "readging": "じっけんしょうせつ", + "pos": "名詞", + "pn": -0.212635 + }, + { + "surface": "燗酒", + "readging": "かんざけ", + "pos": "名詞", + "pn": -0.212652 + }, + { + "surface": "白票", + "readging": "はくひょう", + "pos": "名詞", + "pn": -0.212655 + }, + { + "surface": "砂丘", + "readging": "しゃきゅう", + "pos": "名詞", + "pn": -0.212663 + }, + { + "surface": "生噛り", + "readging": "なまかじり", + "pos": "名詞", + "pn": -0.212673 + }, + { + "surface": "漁場", + "readging": "ぎょじょう", + "pos": "名詞", + "pn": -0.212677 + }, + { + "surface": "万雷", + "readging": "ばんらい", + "pos": "名詞", + "pn": -0.212693 + }, + { + "surface": "取って返す", + "readging": "とってかえす", + "pos": "動詞", + "pn": -0.212706 + }, + { + "surface": "文字通り", + "readging": "もじどおり", + "pos": "名詞", + "pn": -0.212722 + }, + { + "surface": "興廃", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.212723 + }, + { + "surface": "はっと", + "readging": "はっと", + "pos": "副詞", + "pn": -0.212783 + }, + { + "surface": "きょうす", + "readging": "きょうす", + "pos": "名詞", + "pn": -0.212787 + }, + { + "surface": "地租", + "readging": "ちそ", + "pos": "名詞", + "pn": -0.212789 + }, + { + "surface": "国税", + "readging": "こくぜい", + "pos": "名詞", + "pn": -0.212802 + }, + { + "surface": "同種同文", + "readging": "どうしゅどうぶん", + "pos": "名詞", + "pn": -0.212811 + }, + { + "surface": "嫩葉", + "readging": "どんよう", + "pos": "名詞", + "pn": -0.212822 + }, + { + "surface": "迫撃砲", + "readging": "はくげきほう", + "pos": "名詞", + "pn": -0.212827 + }, + { + "surface": "六観音", + "readging": "ろっかんのん", + "pos": "名詞", + "pn": -0.212831 + }, + { + "surface": "スワン", + "readging": "スワン", + "pos": "名詞", + "pn": -0.212867 + }, + { + "surface": "食客", + "readging": "しょっきゃく", + "pos": "名詞", + "pn": -0.212868 + }, + { + "surface": "女郎買", + "readging": "じょろかい", + "pos": "名詞", + "pn": -0.212873 + }, + { + "surface": "国家社会主義", + "readging": "こっかしゃかいしゅぎ", + "pos": "名詞", + "pn": -0.212877 + }, + { + "surface": "雀", + "readging": "じゃく", + "pos": "名詞", + "pn": -0.212878 + }, + { + "surface": "針箱", + "readging": "はりばこ", + "pos": "名詞", + "pn": -0.212885 + }, + { + "surface": "例会", + "readging": "れいかい", + "pos": "名詞", + "pn": -0.212906 + }, + { + "surface": "日刊", + "readging": "にっかん", + "pos": "名詞", + "pn": -0.212912 + }, + { + "surface": "根芋", + "readging": "ねいも", + "pos": "名詞", + "pn": -0.212915 + }, + { + "surface": "止痛", + "readging": "しつう", + "pos": "名詞", + "pn": -0.212943 + }, + { + "surface": "エトランゼ", + "readging": "エトランゼ", + "pos": "名詞", + "pn": -0.212953 + }, + { + "surface": "面目", + "readging": "めんぼく", + "pos": "名詞", + "pn": -0.212958 + }, + { + "surface": "檄文", + "readging": "げきぶん", + "pos": "名詞", + "pn": -0.212983 + }, + { + "surface": "縦長", + "readging": "たてなが", + "pos": "名詞", + "pn": -0.212986 + }, + { + "surface": "下付", + "readging": "かふ", + "pos": "名詞", + "pn": -0.21299 + }, + { + "surface": "樹立", + "readging": "じゅりつ", + "pos": "名詞", + "pn": -0.212992 + }, + { + "surface": "口語", + "readging": "こうご", + "pos": "名詞", + "pn": -0.213002 + }, + { + "surface": "学芸", + "readging": "がくげい", + "pos": "名詞", + "pn": -0.213011 + }, + { + "surface": "唐箕", + "readging": "とうみ", + "pos": "名詞", + "pn": -0.213016 + }, + { + "surface": "解毒", + "readging": "げどく", + "pos": "名詞", + "pn": -0.213024 + }, + { + "surface": "侯爵", + "readging": "こうしゃく", + "pos": "名詞", + "pn": -0.213049 + }, + { + "surface": "月毛", + "readging": "つきげ", + "pos": "名詞", + "pn": -0.21307 + }, + { + "surface": "卍巴", + "readging": "まんじどもえ", + "pos": "名詞", + "pn": -0.213073 + }, + { + "surface": "普請", + "readging": "ふしん", + "pos": "名詞", + "pn": -0.213078 + }, + { + "surface": "平皿", + "readging": "ひらざら", + "pos": "名詞", + "pn": -0.21309 + }, + { + "surface": "築き上げる", + "readging": "きずきあげる", + "pos": "動詞", + "pn": -0.213104 + }, + { + "surface": "本文", + "readging": "ほんぶん", + "pos": "名詞", + "pn": -0.213114 + }, + { + "surface": "詣でる", + "readging": "もうでる", + "pos": "動詞", + "pn": -0.213136 + }, + { + "surface": "モリブデン", + "readging": "モリブデン", + "pos": "名詞", + "pn": -0.213139 + }, + { + "surface": "古手", + "readging": "ふるて", + "pos": "名詞", + "pn": -0.213165 + }, + { + "surface": "博物学", + "readging": "はくぶつがく", + "pos": "名詞", + "pn": -0.213184 + }, + { + "surface": "オーボエ", + "readging": "オーボエ", + "pos": "名詞", + "pn": -0.213188 + }, + { + "surface": "願い事", + "readging": "ねがいごと", + "pos": "名詞", + "pn": -0.213197 + }, + { + "surface": "一天", + "readging": "いってん", + "pos": "名詞", + "pn": -0.213205 + }, + { + "surface": "掩護", + "readging": "えんご", + "pos": "名詞", + "pn": -0.213213 + }, + { + "surface": "持番", + "readging": "もちばん", + "pos": "名詞", + "pn": -0.213227 + }, + { + "surface": "ラブ", + "readging": "ラブ", + "pos": "名詞", + "pn": -0.21324 + }, + { + "surface": "匙加減", + "readging": "さじかげん", + "pos": "名詞", + "pn": -0.21324 + }, + { + "surface": "農産物", + "readging": "のうさんぶつ", + "pos": "名詞", + "pn": -0.213243 + }, + { + "surface": "脱帽", + "readging": "だつぼう", + "pos": "名詞", + "pn": -0.213252 + }, + { + "surface": "自我意識", + "readging": "じがいしき", + "pos": "名詞", + "pn": -0.213262 + }, + { + "surface": "染抜く", + "readging": "そめぬく", + "pos": "動詞", + "pn": -0.213265 + }, + { + "surface": "首班", + "readging": "しゅはん", + "pos": "名詞", + "pn": -0.21327 + }, + { + "surface": "鼓手", + "readging": "こしゅ", + "pos": "名詞", + "pn": -0.213285 + }, + { + "surface": "祭事", + "readging": "さいじ", + "pos": "名詞", + "pn": -0.213305 + }, + { + "surface": "ぽっと", + "readging": "ぽっと", + "pos": "副詞", + "pn": -0.213312 + }, + { + "surface": "農繁期", + "readging": "のうはんき", + "pos": "名詞", + "pn": -0.213326 + }, + { + "surface": "緒戦", + "readging": "しょせん", + "pos": "名詞", + "pn": -0.213327 + }, + { + "surface": "快刀", + "readging": "かいとう", + "pos": "名詞", + "pn": -0.213333 + }, + { + "surface": "超勤", + "readging": "ちょうきん", + "pos": "名詞", + "pn": -0.213337 + }, + { + "surface": "旧字体", + "readging": "きゅうじたい", + "pos": "名詞", + "pn": -0.213344 + }, + { + "surface": "篤実", + "readging": "とくじつ", + "pos": "名詞", + "pn": -0.213373 + }, + { + "surface": "商議員", + "readging": "しょうぎいん", + "pos": "名詞", + "pn": -0.213375 + }, + { + "surface": "密書", + "readging": "みっしょ", + "pos": "名詞", + "pn": -0.213383 + }, + { + "surface": "現ずる", + "readging": "げんずる", + "pos": "動詞", + "pn": -0.213386 + }, + { + "surface": "使い込む", + "readging": "つかいこむ", + "pos": "動詞", + "pn": -0.2134 + }, + { + "surface": "乱婚", + "readging": "らんこん", + "pos": "名詞", + "pn": -0.213431 + }, + { + "surface": "投薬", + "readging": "とうやく", + "pos": "名詞", + "pn": -0.213433 + }, + { + "surface": "天測", + "readging": "てんそく", + "pos": "名詞", + "pn": -0.213438 + }, + { + "surface": "変通", + "readging": "へんつう", + "pos": "名詞", + "pn": -0.213465 + }, + { + "surface": "百官", + "readging": "ひゃっかん", + "pos": "名詞", + "pn": -0.213479 + }, + { + "surface": "地鳴き", + "readging": "じなき", + "pos": "名詞", + "pn": -0.213485 + }, + { + "surface": "続載", + "readging": "ぞくさい", + "pos": "名詞", + "pn": -0.213494 + }, + { + "surface": "刃傷", + "readging": "にんじょう", + "pos": "名詞", + "pn": -0.213533 + }, + { + "surface": "税吏", + "readging": "ぜいり", + "pos": "名詞", + "pn": -0.21354 + }, + { + "surface": "ピストン輸送", + "readging": "ピストンゆそう", + "pos": "名詞", + "pn": -0.213549 + }, + { + "surface": "疑問符", + "readging": "ぎもんふ", + "pos": "名詞", + "pn": -0.213552 + }, + { + "surface": "課税", + "readging": "かぜい", + "pos": "名詞", + "pn": -0.213569 + }, + { + "surface": "気象", + "readging": "きしょう", + "pos": "名詞", + "pn": -0.213579 + }, + { + "surface": "史話", + "readging": "しわ", + "pos": "名詞", + "pn": -0.213589 + }, + { + "surface": "攻落す", + "readging": "せめおとす", + "pos": "動詞", + "pn": -0.213591 + }, + { + "surface": "差損", + "readging": "さそん", + "pos": "名詞", + "pn": -0.213611 + }, + { + "surface": "教区", + "readging": "きょうく", + "pos": "名詞", + "pn": -0.21362 + }, + { + "surface": "食い延す", + "readging": "くいのばす", + "pos": "動詞", + "pn": -0.213639 + }, + { + "surface": "柱廊", + "readging": "ちゅうろう", + "pos": "名詞", + "pn": -0.213651 + }, + { + "surface": "仏菩薩", + "readging": "ぶつぼさつ", + "pos": "名詞", + "pn": -0.213652 + }, + { + "surface": "私服", + "readging": "しふく", + "pos": "名詞", + "pn": -0.213653 + }, + { + "surface": "鉄骨", + "readging": "てっこつ", + "pos": "名詞", + "pn": -0.213688 + }, + { + "surface": "霊山", + "readging": "れいざん", + "pos": "名詞", + "pn": -0.213724 + }, + { + "surface": "兼務", + "readging": "けんむ", + "pos": "名詞", + "pn": -0.21373 + }, + { + "surface": "年長", + "readging": "ねんちょう", + "pos": "名詞", + "pn": -0.213735 + }, + { + "surface": "気圏", + "readging": "きけん", + "pos": "名詞", + "pn": -0.213755 + }, + { + "surface": "ソング", + "readging": "ソング", + "pos": "名詞", + "pn": -0.213758 + }, + { + "surface": "除去", + "readging": "じょきょ", + "pos": "名詞", + "pn": -0.213767 + }, + { + "surface": "再認", + "readging": "さいにん", + "pos": "名詞", + "pn": -0.21378 + }, + { + "surface": "死花", + "readging": "しか", + "pos": "名詞", + "pn": -0.213782 + }, + { + "surface": "少年団", + "readging": "しょうねんだん", + "pos": "名詞", + "pn": -0.213801 + }, + { + "surface": "出戻り", + "readging": "でもどり", + "pos": "名詞", + "pn": -0.213804 + }, + { + "surface": "戦災", + "readging": "せんさい", + "pos": "名詞", + "pn": -0.213813 + }, + { + "surface": "黄鳥", + "readging": "こうちょう", + "pos": "名詞", + "pn": -0.213827 + }, + { + "surface": "引け時", + "readging": "ひけどき", + "pos": "名詞", + "pn": -0.213829 + }, + { + "surface": "詩想", + "readging": "しそう", + "pos": "名詞", + "pn": -0.21384 + }, + { + "surface": "釈尊", + "readging": "しゃくそん", + "pos": "名詞", + "pn": -0.213847 + }, + { + "surface": "縁日", + "readging": "えんにち", + "pos": "名詞", + "pn": -0.213847 + }, + { + "surface": "帳元", + "readging": "ちょうもと", + "pos": "名詞", + "pn": -0.213881 + }, + { + "surface": "治乱", + "readging": "ちらん", + "pos": "名詞", + "pn": -0.213883 + }, + { + "surface": "分子量", + "readging": "ぶんしりょう", + "pos": "名詞", + "pn": -0.213884 + }, + { + "surface": "所司代", + "readging": "しょしだい", + "pos": "名詞", + "pn": -0.213891 + }, + { + "surface": "鉄路", + "readging": "てつろ", + "pos": "名詞", + "pn": -0.213944 + }, + { + "surface": "闘将", + "readging": "とうしょう", + "pos": "名詞", + "pn": -0.213955 + }, + { + "surface": "マイル", + "readging": "マイル", + "pos": "名詞", + "pn": -0.213966 + }, + { + "surface": "言い条", + "readging": "いいじょう", + "pos": "名詞", + "pn": -0.213968 + }, + { + "surface": "アスター", + "readging": "アスター", + "pos": "名詞", + "pn": -0.213996 + }, + { + "surface": "長丁場", + "readging": "ながちょうば", + "pos": "名詞", + "pn": -0.214013 + }, + { + "surface": "国費", + "readging": "こくひ", + "pos": "名詞", + "pn": -0.214019 + }, + { + "surface": "曇勝ち", + "readging": "くもりがち", + "pos": "名詞", + "pn": -0.214046 + }, + { + "surface": "品目", + "readging": "ひんもく", + "pos": "名詞", + "pn": -0.214052 + }, + { + "surface": "衆愚", + "readging": "しゅうぐ", + "pos": "名詞", + "pn": -0.214058 + }, + { + "surface": "一代記", + "readging": "いちだいき", + "pos": "名詞", + "pn": -0.214064 + }, + { + "surface": "麻幹", + "readging": "おがら", + "pos": "名詞", + "pn": -0.214069 + }, + { + "surface": "上つ世", + "readging": "かみつよ", + "pos": "名詞", + "pn": -0.214097 + }, + { + "surface": "張手", + "readging": "はりて", + "pos": "名詞", + "pn": -0.214106 + }, + { + "surface": "進出", + "readging": "しんしゅつ", + "pos": "名詞", + "pn": -0.214115 + }, + { + "surface": "ぴいぴい", + "readging": "ぴいぴい", + "pos": "副詞", + "pn": -0.214121 + }, + { + "surface": "家電", + "readging": "かでん", + "pos": "名詞", + "pn": -0.214128 + }, + { + "surface": "全長", + "readging": "ぜんちょう", + "pos": "名詞", + "pn": -0.214129 + }, + { + "surface": "顫音", + "readging": "せんおん", + "pos": "名詞", + "pn": -0.21413 + }, + { + "surface": "投槍", + "readging": "なげやり", + "pos": "名詞", + "pn": -0.214137 + }, + { + "surface": "人影", + "readging": "ひとかげ", + "pos": "名詞", + "pn": -0.21416 + }, + { + "surface": "種板", + "readging": "たねいた", + "pos": "名詞", + "pn": -0.214196 + }, + { + "surface": "丸木橋", + "readging": "まるきばし", + "pos": "名詞", + "pn": -0.214219 + }, + { + "surface": "モノローグ", + "readging": "モノローグ", + "pos": "名詞", + "pn": -0.214229 + }, + { + "surface": "半母音", + "readging": "はんぼいん", + "pos": "名詞", + "pn": -0.214237 + }, + { + "surface": "鉢の子", + "readging": "はちのこ", + "pos": "名詞", + "pn": -0.21425 + }, + { + "surface": "東道", + "readging": "とうどう", + "pos": "名詞", + "pn": -0.214269 + }, + { + "surface": "国喪", + "readging": "こくそう", + "pos": "名詞", + "pn": -0.214305 + }, + { + "surface": "単価", + "readging": "たんか", + "pos": "名詞", + "pn": -0.214309 + }, + { + "surface": "依託", + "readging": "いたく", + "pos": "名詞", + "pn": -0.214342 + }, + { + "surface": "縷言", + "readging": "るげん", + "pos": "名詞", + "pn": -0.214346 + }, + { + "surface": "抜歯", + "readging": "ばっし", + "pos": "名詞", + "pn": -0.214352 + }, + { + "surface": "口直し", + "readging": "くちなおし", + "pos": "名詞", + "pn": -0.214358 + }, + { + "surface": "角柱", + "readging": "かくちゅう", + "pos": "名詞", + "pn": -0.214364 + }, + { + "surface": "密儀", + "readging": "みつぎ", + "pos": "名詞", + "pn": -0.21437 + }, + { + "surface": "容積率", + "readging": "ようせきりつ", + "pos": "名詞", + "pn": -0.214375 + }, + { + "surface": "三思", + "readging": "さんし", + "pos": "名詞", + "pn": -0.214387 + }, + { + "surface": "多血質", + "readging": "たけつしつ", + "pos": "名詞", + "pn": -0.214388 + }, + { + "surface": "入射", + "readging": "にゅうしゃ", + "pos": "名詞", + "pn": -0.2144 + }, + { + "surface": "百味", + "readging": "ひゃくみ", + "pos": "名詞", + "pn": -0.214407 + }, + { + "surface": "肉離れ", + "readging": "にくばなれ", + "pos": "名詞", + "pn": -0.21441 + }, + { + "surface": "聾", + "readging": "ろう", + "pos": "名詞", + "pn": -0.214426 + }, + { + "surface": "コンプレッサー", + "readging": "コンプレッサー", + "pos": "名詞", + "pn": -0.214427 + }, + { + "surface": "厘", + "readging": "りん", + "pos": "名詞", + "pn": -0.214432 + }, + { + "surface": "閨閥", + "readging": "けいばつ", + "pos": "名詞", + "pn": -0.214432 + }, + { + "surface": "激昂", + "readging": "げっこう", + "pos": "名詞", + "pn": -0.214438 + }, + { + "surface": "政務次官", + "readging": "せいむじかん", + "pos": "名詞", + "pn": -0.214441 + }, + { + "surface": "空返事", + "readging": "そらへんじ", + "pos": "名詞", + "pn": -0.214449 + }, + { + "surface": "花御堂", + "readging": "はなみどう", + "pos": "名詞", + "pn": -0.214472 + }, + { + "surface": "六経", + "readging": "りくけい", + "pos": "名詞", + "pn": -0.214474 + }, + { + "surface": "降雪", + "readging": "こうせつ", + "pos": "名詞", + "pn": -0.214492 + }, + { + "surface": "リフォーム", + "readging": "リフォーム", + "pos": "名詞", + "pn": -0.214498 + }, + { + "surface": "跡形", + "readging": "あとかた", + "pos": "名詞", + "pn": -0.214522 + }, + { + "surface": "ダブルス", + "readging": "ダブルス", + "pos": "名詞", + "pn": -0.214536 + }, + { + "surface": "鎮台", + "readging": "ちんだい", + "pos": "名詞", + "pn": -0.214536 + }, + { + "surface": "偏する", + "readging": "へんする", + "pos": "動詞", + "pn": -0.21455 + }, + { + "surface": "見取図", + "readging": "みとりず", + "pos": "名詞", + "pn": -0.214554 + }, + { + "surface": "鶏肋", + "readging": "けいろく", + "pos": "名詞", + "pn": -0.214562 + }, + { + "surface": "果糖", + "readging": "かとう", + "pos": "名詞", + "pn": -0.214565 + }, + { + "surface": "傍観", + "readging": "ぼうかん", + "pos": "名詞", + "pn": -0.214568 + }, + { + "surface": "中島", + "readging": "なかじま", + "pos": "名詞", + "pn": -0.214571 + }, + { + "surface": "深緑", + "readging": "ふかみどり", + "pos": "名詞", + "pn": -0.214574 + }, + { + "surface": "羊皮紙", + "readging": "ようひし", + "pos": "名詞", + "pn": -0.214576 + }, + { + "surface": "福助", + "readging": "ふくすけ", + "pos": "名詞", + "pn": -0.214586 + }, + { + "surface": "隻手", + "readging": "せきしゅ", + "pos": "名詞", + "pn": -0.21461 + }, + { + "surface": "ぐいっと", + "readging": "ぐいっと", + "pos": "副詞", + "pn": -0.21462 + }, + { + "surface": "セメン シナ", + "readging": "セメン シナ", + "pos": "名詞", + "pn": -0.214661 + }, + { + "surface": "バンガロー", + "readging": "バンガロー", + "pos": "名詞", + "pn": -0.214686 + }, + { + "surface": "受刑", + "readging": "じゅけい", + "pos": "名詞", + "pn": -0.214689 + }, + { + "surface": "車窓", + "readging": "しゃそう", + "pos": "名詞", + "pn": -0.214719 + }, + { + "surface": "申立てる", + "readging": "もうしたてる", + "pos": "動詞", + "pn": -0.21472 + }, + { + "surface": "激する", + "readging": "げきする", + "pos": "動詞", + "pn": -0.214721 + }, + { + "surface": "畝織", + "readging": "うねおり", + "pos": "名詞", + "pn": -0.214735 + }, + { + "surface": "金石文", + "readging": "きんせきぶん", + "pos": "名詞", + "pn": -0.214739 + }, + { + "surface": "粗鋼", + "readging": "そこう", + "pos": "名詞", + "pn": -0.214759 + }, + { + "surface": "アンチ", + "readging": "アンチ", + "pos": "名詞", + "pn": -0.214769 + }, + { + "surface": "畢生", + "readging": "ひっせい", + "pos": "名詞", + "pn": -0.214779 + }, + { + "surface": "省筆", + "readging": "しょうひつ", + "pos": "名詞", + "pn": -0.214788 + }, + { + "surface": "年額", + "readging": "ねんがく", + "pos": "名詞", + "pn": -0.214803 + }, + { + "surface": "練", + "readging": "れん", + "pos": "名詞", + "pn": -0.214804 + }, + { + "surface": "テアトル", + "readging": "テアトル", + "pos": "名詞", + "pn": -0.214809 + }, + { + "surface": "血眼", + "readging": "ちまなこ", + "pos": "名詞", + "pn": -0.21481 + }, + { + "surface": "ホイル", + "readging": "ホイル", + "pos": "名詞", + "pn": -0.214828 + }, + { + "surface": "法家", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.214833 + }, + { + "surface": "結球", + "readging": "けっきゅう", + "pos": "名詞", + "pn": -0.214844 + }, + { + "surface": "歩道", + "readging": "ほどう", + "pos": "名詞", + "pn": -0.214848 + }, + { + "surface": "老僕", + "readging": "ろうぼく", + "pos": "名詞", + "pn": -0.214861 + }, + { + "surface": "相槌", + "readging": "あいづち", + "pos": "名詞", + "pn": -0.214865 + }, + { + "surface": "大谷石", + "readging": "おおやいし", + "pos": "名詞", + "pn": -0.214872 + }, + { + "surface": "胚乳", + "readging": "はいにゅう", + "pos": "名詞", + "pn": -0.214889 + }, + { + "surface": "艇身", + "readging": "ていしん", + "pos": "名詞", + "pn": -0.214892 + }, + { + "surface": "短艇", + "readging": "たんてい", + "pos": "名詞", + "pn": -0.214892 + }, + { + "surface": "善悪", + "readging": "ぜんあく", + "pos": "名詞", + "pn": -0.214896 + }, + { + "surface": "渡航", + "readging": "とこう", + "pos": "名詞", + "pn": -0.214897 + }, + { + "surface": "俯角", + "readging": "ふかく", + "pos": "名詞", + "pn": -0.214901 + }, + { + "surface": "命毛", + "readging": "いのちげ", + "pos": "名詞", + "pn": -0.214901 + }, + { + "surface": "手当り次第", + "readging": "てあたりしだい", + "pos": "副詞", + "pn": -0.214903 + }, + { + "surface": "幅広", + "readging": "はばひろ", + "pos": "名詞", + "pn": -0.214906 + }, + { + "surface": "ひね", + "readging": "ひね", + "pos": "名詞", + "pn": -0.214914 + }, + { + "surface": "がり版", + "readging": "がりばん", + "pos": "名詞", + "pn": -0.214929 + }, + { + "surface": "定本", + "readging": "ていほん", + "pos": "名詞", + "pn": -0.21493 + }, + { + "surface": "精巧", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.214954 + }, + { + "surface": "神道教派", + "readging": "しんとうきょうは", + "pos": "名詞", + "pn": -0.214958 + }, + { + "surface": "愛する", + "readging": "あいする", + "pos": "動詞", + "pn": -0.214965 + }, + { + "surface": "ビオラ", + "readging": "ビオラ", + "pos": "名詞", + "pn": -0.214974 + }, + { + "surface": "洋画", + "readging": "ようが", + "pos": "名詞", + "pn": -0.214992 + }, + { + "surface": "古城", + "readging": "こじょう", + "pos": "名詞", + "pn": -0.214994 + }, + { + "surface": "寡婦", + "readging": "かふ", + "pos": "名詞", + "pn": -0.215009 + }, + { + "surface": "マルチ", + "readging": "マルチ", + "pos": "名詞", + "pn": -0.21501 + }, + { + "surface": "分水界", + "readging": "ぶんすいかい", + "pos": "名詞", + "pn": -0.215015 + }, + { + "surface": "三十三所", + "readging": "さんじゅうさんしょ", + "pos": "名詞", + "pn": -0.215023 + }, + { + "surface": "三角測量", + "readging": "さんかくそくりょう", + "pos": "名詞", + "pn": -0.21503 + }, + { + "surface": "陣立", + "readging": "じんだて", + "pos": "名詞", + "pn": -0.21503 + }, + { + "surface": "遊離", + "readging": "ゆうり", + "pos": "名詞", + "pn": -0.215032 + }, + { + "surface": "指頭", + "readging": "しとう", + "pos": "名詞", + "pn": -0.21504 + }, + { + "surface": "小口書", + "readging": "こぐちがき", + "pos": "名詞", + "pn": -0.215044 + }, + { + "surface": "定石", + "readging": "じょうせき", + "pos": "名詞", + "pn": -0.215056 + }, + { + "surface": "摂関", + "readging": "せっかん", + "pos": "名詞", + "pn": -0.21506 + }, + { + "surface": "定期券", + "readging": "ていきけん", + "pos": "名詞", + "pn": -0.215068 + }, + { + "surface": "写像", + "readging": "しゃぞう", + "pos": "名詞", + "pn": -0.215085 + }, + { + "surface": "背切り", + "readging": "せぎり", + "pos": "名詞", + "pn": -0.21513 + }, + { + "surface": "再演", + "readging": "さいえん", + "pos": "名詞", + "pn": -0.21514 + }, + { + "surface": "憶説", + "readging": "おくせつ", + "pos": "名詞", + "pn": -0.215149 + }, + { + "surface": "貸家", + "readging": "かしや", + "pos": "名詞", + "pn": -0.215152 + }, + { + "surface": "単行本", + "readging": "たんこうぼん", + "pos": "名詞", + "pn": -0.215156 + }, + { + "surface": "持腐れ", + "readging": "もちぐされ", + "pos": "名詞", + "pn": -0.215157 + }, + { + "surface": "吏員", + "readging": "りいん", + "pos": "名詞", + "pn": -0.215162 + }, + { + "surface": "生花", + "readging": "せいか", + "pos": "名詞", + "pn": -0.215176 + }, + { + "surface": "種紙", + "readging": "たねがみ", + "pos": "名詞", + "pn": -0.215182 + }, + { + "surface": "咬傷", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.215184 + }, + { + "surface": "鮭", + "readging": "しゃけ", + "pos": "名詞", + "pn": -0.215188 + }, + { + "surface": "持久", + "readging": "じきゅう", + "pos": "名詞", + "pn": -0.21519 + }, + { + "surface": "物産", + "readging": "ぶっさん", + "pos": "名詞", + "pn": -0.215192 + }, + { + "surface": "齟齬", + "readging": "そご", + "pos": "名詞", + "pn": -0.215227 + }, + { + "surface": "万里", + "readging": "ばんり", + "pos": "名詞", + "pn": -0.215238 + }, + { + "surface": "書入れ時", + "readging": "かきいれどき", + "pos": "名詞", + "pn": -0.215242 + }, + { + "surface": "士分", + "readging": "しぶん", + "pos": "名詞", + "pn": -0.215243 + }, + { + "surface": "泥板岩", + "readging": "でいばんがん", + "pos": "名詞", + "pn": -0.215254 + }, + { + "surface": "精進落", + "readging": "しょうじんおち", + "pos": "名詞", + "pn": -0.215261 + }, + { + "surface": "デパート", + "readging": "デパート", + "pos": "名詞", + "pn": -0.215271 + }, + { + "surface": "木骨", + "readging": "もっこつ", + "pos": "名詞", + "pn": -0.215274 + }, + { + "surface": "リアリティー", + "readging": "リアリティー", + "pos": "名詞", + "pn": -0.215283 + }, + { + "surface": "投物", + "readging": "なげもの", + "pos": "名詞", + "pn": -0.215286 + }, + { + "surface": "不動産", + "readging": "ふどうさん", + "pos": "名詞", + "pn": -0.2153 + }, + { + "surface": "同感", + "readging": "どうかん", + "pos": "名詞", + "pn": -0.215355 + }, + { + "surface": "略伝", + "readging": "りゃくでん", + "pos": "名詞", + "pn": -0.215357 + }, + { + "surface": "清閑", + "readging": "せいかん", + "pos": "名詞", + "pn": -0.215366 + }, + { + "surface": "自省", + "readging": "じせい", + "pos": "名詞", + "pn": -0.215411 + }, + { + "surface": "寄合所帯", + "readging": "よりあい", + "pos": "名詞", + "pn": -0.215421 + }, + { + "surface": "他生", + "readging": "たしょう", + "pos": "名詞", + "pn": -0.215434 + }, + { + "surface": "柔術", + "readging": "じゅうじゅつ", + "pos": "名詞", + "pn": -0.215449 + }, + { + "surface": "菊人形", + "readging": "きくにんぎょう", + "pos": "名詞", + "pn": -0.215449 + }, + { + "surface": "憤然", + "readging": "ふんぜん", + "pos": "名詞", + "pn": -0.215474 + }, + { + "surface": "付き物", + "readging": "つきもの", + "pos": "名詞", + "pn": -0.215479 + }, + { + "surface": "逆襲", + "readging": "ぎゃくしゅう", + "pos": "名詞", + "pn": -0.215492 + }, + { + "surface": "年俸", + "readging": "ねんぽう", + "pos": "名詞", + "pn": -0.215497 + }, + { + "surface": "アクション", + "readging": "アクション", + "pos": "名詞", + "pn": -0.215505 + }, + { + "surface": "協業", + "readging": "きょうぎょう", + "pos": "名詞", + "pn": -0.215511 + }, + { + "surface": "張替え", + "readging": "はりかえ", + "pos": "名詞", + "pn": -0.215522 + }, + { + "surface": "乗数", + "readging": "じょうすう", + "pos": "名詞", + "pn": -0.215551 + }, + { + "surface": "掉尾", + "readging": "ちょうび", + "pos": "名詞", + "pn": -0.215558 + }, + { + "surface": "ブロッコリー", + "readging": "ブロッコリー", + "pos": "名詞", + "pn": -0.215566 + }, + { + "surface": "旅物", + "readging": "たびもの", + "pos": "名詞", + "pn": -0.215573 + }, + { + "surface": "再帰", + "readging": "さいき", + "pos": "名詞", + "pn": -0.215614 + }, + { + "surface": "御諚", + "readging": "ごじょう", + "pos": "名詞", + "pn": -0.215643 + }, + { + "surface": "年忘れ", + "readging": "としわすれ", + "pos": "名詞", + "pn": -0.215648 + }, + { + "surface": "松", + "readging": "しょう", + "pos": "名詞", + "pn": -0.215653 + }, + { + "surface": "託児", + "readging": "たくじ", + "pos": "名詞", + "pn": -0.215658 + }, + { + "surface": "幹事", + "readging": "かんじ", + "pos": "名詞", + "pn": -0.215695 + }, + { + "surface": "基金", + "readging": "ききん", + "pos": "名詞", + "pn": -0.215718 + }, + { + "surface": "法器", + "readging": "ほうき", + "pos": "名詞", + "pn": -0.215725 + }, + { + "surface": "銀子", + "readging": "ぎんす", + "pos": "名詞", + "pn": -0.215728 + }, + { + "surface": "精神科学", + "readging": "せいしんかがく", + "pos": "名詞", + "pn": -0.215731 + }, + { + "surface": "演目", + "readging": "えんもく", + "pos": "名詞", + "pn": -0.215739 + }, + { + "surface": "七転八倒", + "readging": "しってんばっとう", + "pos": "名詞", + "pn": -0.215742 + }, + { + "surface": "種明し", + "readging": "たねあかし", + "pos": "名詞", + "pn": -0.215754 + }, + { + "surface": "後学", + "readging": "こうがく", + "pos": "名詞", + "pn": -0.215763 + }, + { + "surface": "人様", + "readging": "ひとさま", + "pos": "名詞", + "pn": -0.21577 + }, + { + "surface": "夕涼み", + "readging": "ゆうすずみ", + "pos": "名詞", + "pn": -0.215771 + }, + { + "surface": "衣帯", + "readging": "いたい", + "pos": "名詞", + "pn": -0.215791 + }, + { + "surface": "と", + "readging": "と", + "pos": "副詞", + "pn": -0.215793 + }, + { + "surface": "首題", + "readging": "しゅだい", + "pos": "名詞", + "pn": -0.215812 + }, + { + "surface": "出癖", + "readging": "でぐせ", + "pos": "名詞", + "pn": -0.215841 + }, + { + "surface": "痛み入る", + "readging": "いたみいる", + "pos": "動詞", + "pn": -0.215844 + }, + { + "surface": "文", + "readging": "もん", + "pos": "名詞", + "pn": -0.215847 + }, + { + "surface": "乗車券", + "readging": "じょうしゃけん", + "pos": "名詞", + "pn": -0.215853 + }, + { + "surface": "ニヒリズム", + "readging": "ニヒリズム", + "pos": "名詞", + "pn": -0.215854 + }, + { + "surface": "劇映画", + "readging": "げきえいが", + "pos": "名詞", + "pn": -0.215857 + }, + { + "surface": "紀行", + "readging": "きこう", + "pos": "名詞", + "pn": -0.21586 + }, + { + "surface": "フォーヴィスム", + "readging": "フォーヴィスム", + "pos": "名詞", + "pn": -0.215874 + }, + { + "surface": "戦列", + "readging": "せんれつ", + "pos": "名詞", + "pn": -0.215885 + }, + { + "surface": "表", + "readging": "おもて", + "pos": "名詞", + "pn": -0.215885 + }, + { + "surface": "養親子", + "readging": "ようしんし", + "pos": "名詞", + "pn": -0.215892 + }, + { + "surface": "音義", + "readging": "おんぎ", + "pos": "名詞", + "pn": -0.215908 + }, + { + "surface": "カロリー", + "readging": "カロリー", + "pos": "名詞", + "pn": -0.215928 + }, + { + "surface": "送料", + "readging": "そうりょう", + "pos": "名詞", + "pn": -0.215939 + }, + { + "surface": "黒土", + "readging": "こくど", + "pos": "名詞", + "pn": -0.215975 + }, + { + "surface": "内海", + "readging": "うちうみ", + "pos": "名詞", + "pn": -0.215988 + }, + { + "surface": "地縁", + "readging": "ちえん", + "pos": "名詞", + "pn": -0.215992 + }, + { + "surface": "包皮", + "readging": "ほうひ", + "pos": "名詞", + "pn": -0.215993 + }, + { + "surface": "伝令", + "readging": "でんれい", + "pos": "名詞", + "pn": -0.215996 + }, + { + "surface": "発足", + "readging": "ほっそく", + "pos": "名詞", + "pn": -0.215997 + }, + { + "surface": "枯枝", + "readging": "かれえだ", + "pos": "名詞", + "pn": -0.215999 + }, + { + "surface": "オングストローム", + "readging": "オングストローム", + "pos": "名詞", + "pn": -0.216022 + }, + { + "surface": "波及", + "readging": "はきゅう", + "pos": "名詞", + "pn": -0.216024 + }, + { + "surface": "江戸詰", + "readging": "えどづめ", + "pos": "名詞", + "pn": -0.216032 + }, + { + "surface": "糯米", + "readging": "もちごめ", + "pos": "名詞", + "pn": -0.216049 + }, + { + "surface": "ヴァニラ", + "readging": "ヴァニラ", + "pos": "名詞", + "pn": -0.216051 + }, + { + "surface": "カフェテリア", + "readging": "カフェテリア", + "pos": "名詞", + "pn": -0.216076 + }, + { + "surface": "切れ字", + "readging": "きれじ", + "pos": "名詞", + "pn": -0.216081 + }, + { + "surface": "買物", + "readging": "かいもの", + "pos": "名詞", + "pn": -0.216081 + }, + { + "surface": "著者", + "readging": "ちょしゃ", + "pos": "名詞", + "pn": -0.216083 + }, + { + "surface": "禁裏", + "readging": "きんり", + "pos": "名詞", + "pn": -0.21609 + }, + { + "surface": "虫腹", + "readging": "むしばら", + "pos": "名詞", + "pn": -0.216093 + }, + { + "surface": "視聴覚", + "readging": "しちょうかく", + "pos": "名詞", + "pn": -0.216095 + }, + { + "surface": "保母", + "readging": "ほぼ", + "pos": "名詞", + "pn": -0.216114 + }, + { + "surface": "度忘れ", + "readging": "どわすれ", + "pos": "名詞", + "pn": -0.216122 + }, + { + "surface": "電磁", + "readging": "でんじ", + "pos": "名詞", + "pn": -0.216124 + }, + { + "surface": "使臣", + "readging": "ししん", + "pos": "名詞", + "pn": -0.216124 + }, + { + "surface": "下読み", + "readging": "したよみ", + "pos": "名詞", + "pn": -0.216127 + }, + { + "surface": "五十肩", + "readging": "ごじゅうかた", + "pos": "名詞", + "pn": -0.216137 + }, + { + "surface": "スペア", + "readging": "スペア", + "pos": "名詞", + "pn": -0.216152 + }, + { + "surface": "土語", + "readging": "どご", + "pos": "名詞", + "pn": -0.216153 + }, + { + "surface": "備砲", + "readging": "びほう", + "pos": "名詞", + "pn": -0.216163 + }, + { + "surface": "関脇", + "readging": "せきわけ", + "pos": "名詞", + "pn": -0.216165 + }, + { + "surface": "撲滅", + "readging": "ぼくめつ", + "pos": "名詞", + "pn": -0.216199 + }, + { + "surface": "諜報", + "readging": "ちょうほう", + "pos": "名詞", + "pn": -0.216202 + }, + { + "surface": "ケース", + "readging": "ケースワーカー", + "pos": "名詞", + "pn": -0.216209 + }, + { + "surface": "写実主義", + "readging": "しゃじつしゅぎ", + "pos": "名詞", + "pn": -0.216214 + }, + { + "surface": "払下げ", + "readging": "はらいさげ", + "pos": "名詞", + "pn": -0.216226 + }, + { + "surface": "越訴", + "readging": "おっそ", + "pos": "名詞", + "pn": -0.216249 + }, + { + "surface": "頭蓋", + "readging": "とうがい", + "pos": "名詞", + "pn": -0.216258 + }, + { + "surface": "角細工", + "readging": "つのざいく", + "pos": "名詞", + "pn": -0.216284 + }, + { + "surface": "損耗", + "readging": "そんもう", + "pos": "名詞", + "pn": -0.216331 + }, + { + "surface": "嘘つき", + "readging": "うそつき", + "pos": "名詞", + "pn": -0.216334 + }, + { + "surface": "狂奔", + "readging": "きょうほん", + "pos": "名詞", + "pn": -0.216345 + }, + { + "surface": "略譜", + "readging": "りゃくふ", + "pos": "名詞", + "pn": -0.216346 + }, + { + "surface": "コントロール", + "readging": "コントロール", + "pos": "名詞", + "pn": -0.216356 + }, + { + "surface": "ヒューマニズム", + "readging": "ヒューマニズム", + "pos": "名詞", + "pn": -0.216367 + }, + { + "surface": "歳歳", + "readging": "さいさい", + "pos": "名詞", + "pn": -0.216371 + }, + { + "surface": "芸事", + "readging": "げいごと", + "pos": "名詞", + "pn": -0.216408 + }, + { + "surface": "御沙汰", + "readging": "ごさた", + "pos": "名詞", + "pn": -0.216415 + }, + { + "surface": "歳時記", + "readging": "さいじき", + "pos": "名詞", + "pn": -0.216421 + }, + { + "surface": "コルト", + "readging": "コルト", + "pos": "名詞", + "pn": -0.216423 + }, + { + "surface": "トロピカル", + "readging": "トロピカル", + "pos": "名詞", + "pn": -0.216449 + }, + { + "surface": "禁輸", + "readging": "きんゆ", + "pos": "名詞", + "pn": -0.216456 + }, + { + "surface": "季秋", + "readging": "きしゅう", + "pos": "名詞", + "pn": -0.216456 + }, + { + "surface": "棋譜", + "readging": "きふ", + "pos": "名詞", + "pn": -0.216462 + }, + { + "surface": "高値", + "readging": "たかね", + "pos": "名詞", + "pn": -0.216463 + }, + { + "surface": "手刷", + "readging": "てずり", + "pos": "名詞", + "pn": -0.216464 + }, + { + "surface": "ターバン", + "readging": "ターバン", + "pos": "名詞", + "pn": -0.216479 + }, + { + "surface": "鶚", + "readging": "みさご", + "pos": "名詞", + "pn": -0.216493 + }, + { + "surface": "高等官", + "readging": "こうとうかん", + "pos": "名詞", + "pn": -0.216494 + }, + { + "surface": "フリー", + "readging": "フリー", + "pos": "名詞", + "pn": -0.216495 + }, + { + "surface": "抑圧", + "readging": "よくあつ", + "pos": "名詞", + "pn": -0.216529 + }, + { + "surface": "ブローニング", + "readging": "ブローニング", + "pos": "名詞", + "pn": -0.216535 + }, + { + "surface": "花時", + "readging": "はなどき", + "pos": "名詞", + "pn": -0.216537 + }, + { + "surface": "チューン アップ", + "readging": "チューン アップ", + "pos": "名詞", + "pn": -0.216539 + }, + { + "surface": "尺じめ", + "readging": "しゃくじめ", + "pos": "名詞", + "pn": -0.216542 + }, + { + "surface": "白刃", + "readging": "はくじん", + "pos": "名詞", + "pn": -0.216548 + }, + { + "surface": "道化", + "readging": "どうけ", + "pos": "名詞", + "pn": -0.21655 + }, + { + "surface": "交合", + "readging": "こうごう", + "pos": "名詞", + "pn": -0.216553 + }, + { + "surface": "砲車", + "readging": "ほうしゃ", + "pos": "名詞", + "pn": -0.216571 + }, + { + "surface": "検見", + "readging": "けんみ", + "pos": "名詞", + "pn": -0.216571 + }, + { + "surface": "岡焼き", + "readging": "おかやき", + "pos": "名詞", + "pn": -0.216581 + }, + { + "surface": "コントラスト", + "readging": "コントラスト", + "pos": "名詞", + "pn": -0.216608 + }, + { + "surface": "農機具", + "readging": "のうきぐ", + "pos": "名詞", + "pn": -0.21662 + }, + { + "surface": "すらっと", + "readging": "すらっと", + "pos": "副詞", + "pn": -0.216622 + }, + { + "surface": "電磁場", + "readging": "でんじば", + "pos": "名詞", + "pn": -0.21663 + }, + { + "surface": "重労働", + "readging": "じゅうろうどう", + "pos": "名詞", + "pn": -0.216636 + }, + { + "surface": "だくだく", + "readging": "だくだく", + "pos": "副詞", + "pn": -0.21664 + }, + { + "surface": "此の方", + "readging": "このかた", + "pos": "名詞", + "pn": -0.216652 + }, + { + "surface": "スプリング", + "readging": "スプリング", + "pos": "名詞", + "pn": -0.216667 + }, + { + "surface": "太公望", + "readging": "たいこうぼう", + "pos": "名詞", + "pn": -0.216667 + }, + { + "surface": "OB", + "readging": "オービー", + "pos": "名詞", + "pn": -0.216689 + }, + { + "surface": "発信", + "readging": "はっしん", + "pos": "名詞", + "pn": -0.216693 + }, + { + "surface": "猫背", + "readging": "ねこぜ", + "pos": "名詞", + "pn": -0.216696 + }, + { + "surface": "イオン", + "readging": "イオン", + "pos": "名詞", + "pn": -0.216709 + }, + { + "surface": "段だら", + "readging": "だんだら", + "pos": "名詞", + "pn": -0.21675 + }, + { + "surface": "受け太刀", + "readging": "うけだち", + "pos": "名詞", + "pn": -0.216756 + }, + { + "surface": "練兵", + "readging": "れんぺい", + "pos": "名詞", + "pn": -0.216782 + }, + { + "surface": "牛車", + "readging": "ぎっしゃ", + "pos": "名詞", + "pn": -0.216784 + }, + { + "surface": "矢種", + "readging": "やだね", + "pos": "名詞", + "pn": -0.216804 + }, + { + "surface": "書役", + "readging": "かきやく", + "pos": "名詞", + "pn": -0.216806 + }, + { + "surface": "行動半径", + "readging": "こうどうはんけい", + "pos": "名詞", + "pn": -0.216832 + }, + { + "surface": "後前", + "readging": "うしろまえ", + "pos": "名詞", + "pn": -0.216847 + }, + { + "surface": "打出の小槌", + "readging": "うちでのこづち", + "pos": "名詞", + "pn": -0.216848 + }, + { + "surface": "懐かしむ", + "readging": "なつかしむ", + "pos": "動詞", + "pn": -0.216861 + }, + { + "surface": "タイム", + "readging": "タイムスイッチ", + "pos": "名詞", + "pn": -0.216865 + }, + { + "surface": "避寒", + "readging": "ひかん", + "pos": "名詞", + "pn": -0.216869 + }, + { + "surface": "秣場", + "readging": "まぐさば", + "pos": "名詞", + "pn": -0.216881 + }, + { + "surface": "ハーブ", + "readging": "ハーブ", + "pos": "名詞", + "pn": -0.216883 + }, + { + "surface": "ポテンシャル", + "readging": "ポテンシャル", + "pos": "名詞", + "pn": -0.216896 + }, + { + "surface": "御召物", + "readging": "おめしもの", + "pos": "名詞", + "pn": -0.216917 + }, + { + "surface": "埃", + "readging": "あい", + "pos": "名詞", + "pn": -0.216938 + }, + { + "surface": "ドライヤー", + "readging": "ドライヤー", + "pos": "名詞", + "pn": -0.216943 + }, + { + "surface": "上り調子", + "readging": "のぼりちょうし", + "pos": "名詞", + "pn": -0.216963 + }, + { + "surface": "海里", + "readging": "かいり", + "pos": "名詞", + "pn": -0.21697 + }, + { + "surface": "甘皮", + "readging": "あまかわ", + "pos": "名詞", + "pn": -0.216998 + }, + { + "surface": "筆触", + "readging": "ひっしょく", + "pos": "名詞", + "pn": -0.217002 + }, + { + "surface": "日和", + "readging": "ひより", + "pos": "名詞", + "pn": -0.217004 + }, + { + "surface": "形而上学", + "readging": "けいじじょうがく", + "pos": "名詞", + "pn": -0.217034 + }, + { + "surface": "煮える", + "readging": "にえる", + "pos": "動詞", + "pn": -0.217047 + }, + { + "surface": "上がり", + "readging": "あがり", + "pos": "名詞", + "pn": -0.217054 + }, + { + "surface": "盛付ける", + "readging": "もりつける", + "pos": "動詞", + "pn": -0.217058 + }, + { + "surface": "開通", + "readging": "かいつう", + "pos": "名詞", + "pn": -0.217085 + }, + { + "surface": "一位", + "readging": "いちい", + "pos": "名詞", + "pn": -0.217089 + }, + { + "surface": "差戻す", + "readging": "さしもどす", + "pos": "動詞", + "pn": -0.217089 + }, + { + "surface": "国防", + "readging": "こくぼう", + "pos": "名詞", + "pn": -0.2171 + }, + { + "surface": "マップ", + "readging": "マップ", + "pos": "名詞", + "pn": -0.217104 + }, + { + "surface": "掌理", + "readging": "しょうり", + "pos": "名詞", + "pn": -0.217109 + }, + { + "surface": "マイクロ", + "readging": "マイクロ", + "pos": "名詞", + "pn": -0.217126 + }, + { + "surface": "ジレンマ", + "readging": "ジレンマ", + "pos": "名詞", + "pn": -0.217135 + }, + { + "surface": "グリル", + "readging": "グリル", + "pos": "名詞", + "pn": -0.217138 + }, + { + "surface": "部分食", + "readging": "ぶぶんしょく", + "pos": "名詞", + "pn": -0.217154 + }, + { + "surface": "逃げ支度", + "readging": "にげじたく", + "pos": "名詞", + "pn": -0.217155 + }, + { + "surface": "梵天", + "readging": "ぼんてん", + "pos": "名詞", + "pn": -0.217166 + }, + { + "surface": "酒癖", + "readging": "さけくせ", + "pos": "名詞", + "pn": -0.217176 + }, + { + "surface": "義理合", + "readging": "ぎりあい", + "pos": "名詞", + "pn": -0.217181 + }, + { + "surface": "専用", + "readging": "せんよう", + "pos": "名詞", + "pn": -0.217206 + }, + { + "surface": "諷誦", + "readging": "ふうじゅ", + "pos": "名詞", + "pn": -0.217208 + }, + { + "surface": "迷妄", + "readging": "めいもう", + "pos": "名詞", + "pn": -0.217254 + }, + { + "surface": "チェック", + "readging": "チェックアウト", + "pos": "名詞", + "pn": -0.217278 + }, + { + "surface": "機巧", + "readging": "きこう", + "pos": "名詞", + "pn": -0.217282 + }, + { + "surface": "親", + "readging": "おや", + "pos": "名詞", + "pn": -0.217298 + }, + { + "surface": "藻魚", + "readging": "もうお", + "pos": "名詞", + "pn": -0.217303 + }, + { + "surface": "順列", + "readging": "じゅんれつ", + "pos": "名詞", + "pn": -0.217333 + }, + { + "surface": "送風", + "readging": "そうふう", + "pos": "名詞", + "pn": -0.217336 + }, + { + "surface": "有声音", + "readging": "ゆうせいおん", + "pos": "名詞", + "pn": -0.217367 + }, + { + "surface": "入潮", + "readging": "いりしお", + "pos": "名詞", + "pn": -0.21738 + }, + { + "surface": "反射望遠鏡", + "readging": "はんしゃぼうえんきょう", + "pos": "名詞", + "pn": -0.217417 + }, + { + "surface": "チューナー", + "readging": "チューナー", + "pos": "名詞", + "pn": -0.217421 + }, + { + "surface": "国外", + "readging": "こくがい", + "pos": "名詞", + "pn": -0.217446 + }, + { + "surface": "夷狄", + "readging": "いてき", + "pos": "名詞", + "pn": -0.217451 + }, + { + "surface": "六波羅蜜", + "readging": "ろくはらみつ", + "pos": "名詞", + "pn": -0.217458 + }, + { + "surface": "客殿", + "readging": "きゃくでん", + "pos": "名詞", + "pn": -0.217484 + }, + { + "surface": "なり手", + "readging": "なりて", + "pos": "名詞", + "pn": -0.217496 + }, + { + "surface": "蔗糖", + "readging": "しょとう", + "pos": "名詞", + "pn": -0.217499 + }, + { + "surface": "吹込む", + "readging": "ふきこむ", + "pos": "動詞", + "pn": -0.217505 + }, + { + "surface": "預血", + "readging": "よけつ", + "pos": "名詞", + "pn": -0.217509 + }, + { + "surface": "寮生", + "readging": "りょうせい", + "pos": "名詞", + "pn": -0.217511 + }, + { + "surface": "緋縮緬", + "readging": "ひぢりめん", + "pos": "名詞", + "pn": -0.217512 + }, + { + "surface": "通り言葉", + "readging": "とおりことば", + "pos": "名詞", + "pn": -0.21752 + }, + { + "surface": "奥向", + "readging": "おくむき", + "pos": "名詞", + "pn": -0.217567 + }, + { + "surface": "クロッカス", + "readging": "クロッカス", + "pos": "名詞", + "pn": -0.217571 + }, + { + "surface": "便ずる", + "readging": "べんずる", + "pos": "動詞", + "pn": -0.217578 + }, + { + "surface": "三和音", + "readging": "さんわおん", + "pos": "名詞", + "pn": -0.217581 + }, + { + "surface": "世間擦れ", + "readging": "せけんずれ", + "pos": "名詞", + "pn": -0.217625 + }, + { + "surface": "勢威", + "readging": "せいい", + "pos": "名詞", + "pn": -0.217635 + }, + { + "surface": "冷", + "readging": "ひや", + "pos": "名詞", + "pn": -0.217635 + }, + { + "surface": "三角", + "readging": "さんかく", + "pos": "名詞", + "pn": -0.217637 + }, + { + "surface": "便箋", + "readging": "びんせん", + "pos": "名詞", + "pn": -0.217647 + }, + { + "surface": "代行", + "readging": "だいこう", + "pos": "名詞", + "pn": -0.217647 + }, + { + "surface": "しょびく", + "readging": "しょびく", + "pos": "動詞", + "pn": -0.217667 + }, + { + "surface": "中学年", + "readging": "ちゅうがくねん", + "pos": "名詞", + "pn": -0.217693 + }, + { + "surface": "謎謎", + "readging": "なぞなぞ", + "pos": "名詞", + "pn": -0.217705 + }, + { + "surface": "前勘定", + "readging": "まえかんじょう", + "pos": "名詞", + "pn": -0.217719 + }, + { + "surface": "複複線", + "readging": "ふくふくせん", + "pos": "名詞", + "pn": -0.217739 + }, + { + "surface": "別邸", + "readging": "べってい", + "pos": "名詞", + "pn": -0.21774 + }, + { + "surface": "小包", + "readging": "こづつみ", + "pos": "名詞", + "pn": -0.21774 + }, + { + "surface": "本紀", + "readging": "ほんぎ", + "pos": "名詞", + "pn": -0.217742 + }, + { + "surface": "背地性", + "readging": "はいちせい", + "pos": "名詞", + "pn": -0.217744 + }, + { + "surface": "野中", + "readging": "のなか", + "pos": "名詞", + "pn": -0.217746 + }, + { + "surface": "累減", + "readging": "るいげん", + "pos": "名詞", + "pn": -0.217751 + }, + { + "surface": "はいすい量", + "readging": "はいすいりょう", + "pos": "名詞", + "pn": -0.217752 + }, + { + "surface": "乃父", + "readging": "だいふ", + "pos": "名詞", + "pn": -0.217766 + }, + { + "surface": "人付合い", + "readging": "ひとづきあい", + "pos": "名詞", + "pn": -0.217777 + }, + { + "surface": "甜菜", + "readging": "てんさい", + "pos": "名詞", + "pn": -0.217781 + }, + { + "surface": "地場", + "readging": "じば", + "pos": "名詞", + "pn": -0.217797 + }, + { + "surface": "鑑札", + "readging": "かんさつ", + "pos": "名詞", + "pn": -0.217801 + }, + { + "surface": "大蔵経", + "readging": "だいぞうきょう", + "pos": "名詞", + "pn": -0.217816 + }, + { + "surface": "縞目", + "readging": "しまめ", + "pos": "名詞", + "pn": -0.217818 + }, + { + "surface": "夢精", + "readging": "むせい", + "pos": "名詞", + "pn": -0.217819 + }, + { + "surface": "多面", + "readging": "ためん", + "pos": "名詞", + "pn": -0.217823 + }, + { + "surface": "銀本位", + "readging": "ぎんほんい", + "pos": "名詞", + "pn": -0.217827 + }, + { + "surface": "闘士", + "readging": "とうし", + "pos": "名詞", + "pn": -0.217835 + }, + { + "surface": "統帥", + "readging": "とうすい", + "pos": "名詞", + "pn": -0.217838 + }, + { + "surface": "転属", + "readging": "てんぞく", + "pos": "名詞", + "pn": -0.217838 + }, + { + "surface": "献体", + "readging": "けんたい", + "pos": "名詞", + "pn": -0.217842 + }, + { + "surface": "友垣", + "readging": "ともがき", + "pos": "名詞", + "pn": -0.217843 + }, + { + "surface": "憂鬱質", + "readging": "ゆううつしつ", + "pos": "名詞", + "pn": -0.217845 + }, + { + "surface": "ルンバ", + "readging": "ルンバ", + "pos": "名詞", + "pn": -0.217864 + }, + { + "surface": "別冊", + "readging": "べっさつ", + "pos": "名詞", + "pn": -0.217869 + }, + { + "surface": "猿人", + "readging": "えんじん", + "pos": "名詞", + "pn": -0.217871 + }, + { + "surface": "上京", + "readging": "じょうきょう", + "pos": "名詞", + "pn": -0.217894 + }, + { + "surface": "寸劇", + "readging": "すんげき", + "pos": "名詞", + "pn": -0.217894 + }, + { + "surface": "読応え", + "readging": "よみごたえ", + "pos": "名詞", + "pn": -0.217901 + }, + { + "surface": "連発", + "readging": "れんぱつ", + "pos": "名詞", + "pn": -0.217912 + }, + { + "surface": "活版", + "readging": "かっぱん", + "pos": "名詞", + "pn": -0.217926 + }, + { + "surface": "北の方", + "readging": "きたのかた", + "pos": "名詞", + "pn": -0.217933 + }, + { + "surface": "呼ばれる", + "readging": "よばれる", + "pos": "動詞", + "pn": -0.217934 + }, + { + "surface": "産み落す", + "readging": "うみおとす", + "pos": "動詞", + "pn": -0.21794 + }, + { + "surface": "蹴出し", + "readging": "けだし", + "pos": "名詞", + "pn": -0.217951 + }, + { + "surface": "先決", + "readging": "せんけつ", + "pos": "名詞", + "pn": -0.217951 + }, + { + "surface": "艦", + "readging": "かん", + "pos": "名詞", + "pn": -0.217954 + }, + { + "surface": "胸裏", + "readging": "きょうり", + "pos": "名詞", + "pn": -0.217955 + }, + { + "surface": "舟運", + "readging": "しゅううん", + "pos": "名詞", + "pn": -0.217959 + }, + { + "surface": "流出", + "readging": "りゅうしゅつ", + "pos": "名詞", + "pn": -0.217964 + }, + { + "surface": "人情話", + "readging": "にんじょうばなし", + "pos": "名詞", + "pn": -0.217985 + }, + { + "surface": "アスレチック", + "readging": "アスレチック", + "pos": "名詞", + "pn": -0.217986 + }, + { + "surface": "供花", + "readging": "くげ", + "pos": "名詞", + "pn": -0.217989 + }, + { + "surface": "鉛灰色", + "readging": "えんかいしょく", + "pos": "名詞", + "pn": -0.218008 + }, + { + "surface": "投射", + "readging": "とうしゃ", + "pos": "名詞", + "pn": -0.218026 + }, + { + "surface": "家産", + "readging": "かさん", + "pos": "名詞", + "pn": -0.21804 + }, + { + "surface": "純真", + "readging": "じゅんしん", + "pos": "名詞", + "pn": -0.218056 + }, + { + "surface": "脂肪太り", + "readging": "しぼうぶとり", + "pos": "名詞", + "pn": -0.218065 + }, + { + "surface": "校訂", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.218068 + }, + { + "surface": "縫上げる", + "readging": "ぬいあげる", + "pos": "動詞", + "pn": -0.218078 + }, + { + "surface": "回訓", + "readging": "かいくん", + "pos": "名詞", + "pn": -0.218079 + }, + { + "surface": "廃合", + "readging": "はいごう", + "pos": "名詞", + "pn": -0.218092 + }, + { + "surface": "腹鼓", + "readging": "はらつづみ", + "pos": "名詞", + "pn": -0.218094 + }, + { + "surface": "職方", + "readging": "しょくかた", + "pos": "名詞", + "pn": -0.218113 + }, + { + "surface": "楷書", + "readging": "かいしょ", + "pos": "名詞", + "pn": -0.218122 + }, + { + "surface": "ポルカ", + "readging": "ポルカ", + "pos": "名詞", + "pn": -0.218123 + }, + { + "surface": "序盤", + "readging": "じょばん", + "pos": "名詞", + "pn": -0.218132 + }, + { + "surface": "月面", + "readging": "げつめん", + "pos": "名詞", + "pn": -0.218145 + }, + { + "surface": "生殺与奪", + "readging": "せいさつよだつ", + "pos": "名詞", + "pn": -0.218171 + }, + { + "surface": "中農", + "readging": "ちゅうのう", + "pos": "名詞", + "pn": -0.218194 + }, + { + "surface": "証歌", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.218198 + }, + { + "surface": "伝動", + "readging": "でんどう", + "pos": "名詞", + "pn": -0.218222 + }, + { + "surface": "古道具", + "readging": "ふるどうぐ", + "pos": "名詞", + "pn": -0.218224 + }, + { + "surface": "須弥山", + "readging": "しゅみせん", + "pos": "名詞", + "pn": -0.218232 + }, + { + "surface": "真夜中", + "readging": "まよなか", + "pos": "名詞", + "pn": -0.218241 + }, + { + "surface": "媚", + "readging": "こび", + "pos": "名詞", + "pn": -0.218241 + }, + { + "surface": "痴情", + "readging": "ちじょう", + "pos": "名詞", + "pn": -0.21827 + }, + { + "surface": "月足らず", + "readging": "つきたらず", + "pos": "名詞", + "pn": -0.218285 + }, + { + "surface": "シグナル", + "readging": "シグナル", + "pos": "名詞", + "pn": -0.218314 + }, + { + "surface": "時論", + "readging": "じろん", + "pos": "名詞", + "pn": -0.218316 + }, + { + "surface": "狸囃子", + "readging": "たぬきばやし", + "pos": "名詞", + "pn": -0.218347 + }, + { + "surface": "七曲り", + "readging": "ななまがり", + "pos": "名詞", + "pn": -0.218355 + }, + { + "surface": "売物", + "readging": "うりもの", + "pos": "名詞", + "pn": -0.218365 + }, + { + "surface": "掲出", + "readging": "けいしゅつ", + "pos": "名詞", + "pn": -0.218386 + }, + { + "surface": "得喪", + "readging": "とくそう", + "pos": "名詞", + "pn": -0.218398 + }, + { + "surface": "ハイク", + "readging": "ハイク", + "pos": "名詞", + "pn": -0.218419 + }, + { + "surface": "合点", + "readging": "がってん", + "pos": "名詞", + "pn": -0.21842 + }, + { + "surface": "長大", + "readging": "ちょうだい", + "pos": "名詞", + "pn": -0.218421 + }, + { + "surface": "レタス", + "readging": "レタス", + "pos": "名詞", + "pn": -0.218426 + }, + { + "surface": "封地", + "readging": "ほうち", + "pos": "名詞", + "pn": -0.218437 + }, + { + "surface": "女学生", + "readging": "じょがくせい", + "pos": "名詞", + "pn": -0.218443 + }, + { + "surface": "ぶんまわし", + "readging": "ぶんまわし", + "pos": "名詞", + "pn": -0.218446 + }, + { + "surface": "偽悪", + "readging": "ぎあく", + "pos": "名詞", + "pn": -0.218469 + }, + { + "surface": "立憲政体", + "readging": "りっけんせいたい", + "pos": "名詞", + "pn": -0.218477 + }, + { + "surface": "改暦", + "readging": "かいれき", + "pos": "名詞", + "pn": -0.218503 + }, + { + "surface": "合せ酢", + "readging": "あわせず", + "pos": "名詞", + "pn": -0.218538 + }, + { + "surface": "上がり高", + "readging": "あがりだか", + "pos": "名詞", + "pn": -0.218541 + }, + { + "surface": "流転", + "readging": "るてん", + "pos": "名詞", + "pn": -0.218577 + }, + { + "surface": "綸旨", + "readging": "りんじ", + "pos": "名詞", + "pn": -0.218588 + }, + { + "surface": "カタパルト", + "readging": "カタパルト", + "pos": "名詞", + "pn": -0.218597 + }, + { + "surface": "ハイウエー", + "readging": "ハイウエー", + "pos": "名詞", + "pn": -0.218601 + }, + { + "surface": "ショール", + "readging": "ショール", + "pos": "名詞", + "pn": -0.218613 + }, + { + "surface": "ファゴット", + "readging": "ファゴット", + "pos": "名詞", + "pn": -0.218615 + }, + { + "surface": "足萎え", + "readging": "あしなえ", + "pos": "名詞", + "pn": -0.218626 + }, + { + "surface": "御会式", + "readging": "おえしき", + "pos": "名詞", + "pn": -0.218631 + }, + { + "surface": "ウエートレス", + "readging": "ウエートレス", + "pos": "名詞", + "pn": -0.218641 + }, + { + "surface": "公達", + "readging": "こうたつ", + "pos": "名詞", + "pn": -0.218656 + }, + { + "surface": "縫紋", + "readging": "ぬいもん", + "pos": "名詞", + "pn": -0.218656 + }, + { + "surface": "むり矢理", + "readging": "むりやり", + "pos": "名詞", + "pn": -0.218668 + }, + { + "surface": "被衣", + "readging": "かつぎ", + "pos": "名詞", + "pn": -0.21869 + }, + { + "surface": "床山", + "readging": "とこやま", + "pos": "名詞", + "pn": -0.218692 + }, + { + "surface": "発狂", + "readging": "はっきょう", + "pos": "名詞", + "pn": -0.218712 + }, + { + "surface": "整枝", + "readging": "せいし", + "pos": "名詞", + "pn": -0.218715 + }, + { + "surface": "サンプリング", + "readging": "サンプリング", + "pos": "名詞", + "pn": -0.218719 + }, + { + "surface": "フレーズ", + "readging": "フレーズ", + "pos": "名詞", + "pn": -0.218725 + }, + { + "surface": "予察", + "readging": "よさつ", + "pos": "名詞", + "pn": -0.218735 + }, + { + "surface": "灌仏会", + "readging": "かんぶつえ", + "pos": "名詞", + "pn": -0.218736 + }, + { + "surface": "後産", + "readging": "あとざん", + "pos": "名詞", + "pn": -0.218749 + }, + { + "surface": "請負業", + "readging": "うけおい", + "pos": "名詞", + "pn": -0.218762 + }, + { + "surface": "位置付ける", + "readging": "いちづける", + "pos": "動詞", + "pn": -0.218781 + }, + { + "surface": "攻め太鼓", + "readging": "せめだいこ", + "pos": "名詞", + "pn": -0.218783 + }, + { + "surface": "片肺", + "readging": "かたはい", + "pos": "名詞", + "pn": -0.218784 + }, + { + "surface": "純量", + "readging": "じゅんりょう", + "pos": "名詞", + "pn": -0.218817 + }, + { + "surface": "蓄電池", + "readging": "ちくでんち", + "pos": "名詞", + "pn": -0.218818 + }, + { + "surface": "掛合せる", + "readging": "かけあわせる", + "pos": "動詞", + "pn": -0.218831 + }, + { + "surface": "家政婦", + "readging": "かせいふ", + "pos": "名詞", + "pn": -0.218841 + }, + { + "surface": "羽車", + "readging": "はぐるま", + "pos": "名詞", + "pn": -0.218843 + }, + { + "surface": "濃緑", + "readging": "こみどり", + "pos": "名詞", + "pn": -0.218845 + }, + { + "surface": "通日", + "readging": "つうじつ", + "pos": "名詞", + "pn": -0.218857 + }, + { + "surface": "ボーキサイト", + "readging": "ボーキサイト", + "pos": "名詞", + "pn": -0.218871 + }, + { + "surface": "観念論", + "readging": "かんねんろん", + "pos": "名詞", + "pn": -0.218887 + }, + { + "surface": "軍師", + "readging": "ぐんし", + "pos": "名詞", + "pn": -0.218887 + }, + { + "surface": "非金属元素", + "readging": "ひきんぞくげんそ", + "pos": "名詞", + "pn": -0.218907 + }, + { + "surface": "希塩酸", + "readging": "きえんさん", + "pos": "名詞", + "pn": -0.218915 + }, + { + "surface": "園生", + "readging": "そのう", + "pos": "名詞", + "pn": -0.218916 + }, + { + "surface": "角速度", + "readging": "かくそくど", + "pos": "名詞", + "pn": -0.218931 + }, + { + "surface": "浮舟", + "readging": "うきふね", + "pos": "名詞", + "pn": -0.218937 + }, + { + "surface": "連関", + "readging": "れんかん", + "pos": "名詞", + "pn": -0.21895 + }, + { + "surface": "栄養素", + "readging": "えいようそ", + "pos": "名詞", + "pn": -0.218967 + }, + { + "surface": "浸炭", + "readging": "しんたん", + "pos": "名詞", + "pn": -0.218977 + }, + { + "surface": "プランナー", + "readging": "プランナー", + "pos": "名詞", + "pn": -0.218978 + }, + { + "surface": "マチネー", + "readging": "マチネー", + "pos": "名詞", + "pn": -0.219008 + }, + { + "surface": "公人", + "readging": "こうじん", + "pos": "名詞", + "pn": -0.219009 + }, + { + "surface": "一刻千金", + "readging": "いっこくせんきん", + "pos": "名詞", + "pn": -0.219019 + }, + { + "surface": "大仏", + "readging": "だいぶつ", + "pos": "名詞", + "pn": -0.21902 + }, + { + "surface": "天地玄黄", + "readging": "てんちげんこう", + "pos": "名詞", + "pn": -0.219025 + }, + { + "surface": "財界", + "readging": "ざいかい", + "pos": "名詞", + "pn": -0.219026 + }, + { + "surface": "広目屋", + "readging": "ひろめや", + "pos": "名詞", + "pn": -0.219035 + }, + { + "surface": "房事", + "readging": "ぼうじ", + "pos": "名詞", + "pn": -0.219045 + }, + { + "surface": "新来", + "readging": "しんらい", + "pos": "名詞", + "pn": -0.219062 + }, + { + "surface": "養豚", + "readging": "ようとん", + "pos": "名詞", + "pn": -0.219063 + }, + { + "surface": "鏡銅", + "readging": "きょうどう", + "pos": "名詞", + "pn": -0.21907 + }, + { + "surface": "下請", + "readging": "したうけ", + "pos": "名詞", + "pn": -0.219089 + }, + { + "surface": "家人", + "readging": "かじん", + "pos": "名詞", + "pn": -0.219089 + }, + { + "surface": "白波", + "readging": "しらなみ", + "pos": "名詞", + "pn": -0.219099 + }, + { + "surface": "長屋門", + "readging": "ながやもん", + "pos": "名詞", + "pn": -0.2191 + }, + { + "surface": "宮城", + "readging": "きゅうじょう", + "pos": "名詞", + "pn": -0.219108 + }, + { + "surface": "幻滅", + "readging": "げんめつ", + "pos": "名詞", + "pn": -0.219111 + }, + { + "surface": "教職", + "readging": "きょうしょく", + "pos": "名詞", + "pn": -0.219112 + }, + { + "surface": "お札", + "readging": "おさつ", + "pos": "名詞", + "pn": -0.219128 + }, + { + "surface": "下半身", + "readging": "かはんしん", + "pos": "名詞", + "pn": -0.219133 + }, + { + "surface": "制欲", + "readging": "せいよく", + "pos": "名詞", + "pn": -0.219141 + }, + { + "surface": "生薬", + "readging": "しょうやく", + "pos": "名詞", + "pn": -0.219142 + }, + { + "surface": "院号", + "readging": "いんごう", + "pos": "名詞", + "pn": -0.219145 + }, + { + "surface": "作付", + "readging": "さくづけ", + "pos": "名詞", + "pn": -0.219149 + }, + { + "surface": "船軍", + "readging": "ふないくさ", + "pos": "名詞", + "pn": -0.219154 + }, + { + "surface": "大樹", + "readging": "たいじゅ", + "pos": "名詞", + "pn": -0.219157 + }, + { + "surface": "大嘗祭", + "readging": "だいじょうさい", + "pos": "名詞", + "pn": -0.219195 + }, + { + "surface": "付いて回る", + "readging": "ついてまわる", + "pos": "動詞", + "pn": -0.219203 + }, + { + "surface": "一筆", + "readging": "ひとふで", + "pos": "名詞", + "pn": -0.219207 + }, + { + "surface": "ちんちくりん", + "readging": "ちんちくりん", + "pos": "名詞", + "pn": -0.219223 + }, + { + "surface": "見知る", + "readging": "みしる", + "pos": "動詞", + "pn": -0.21924 + }, + { + "surface": "重金属", + "readging": "じゅうきんぞく", + "pos": "名詞", + "pn": -0.219272 + }, + { + "surface": "利付", + "readging": "りつき", + "pos": "名詞", + "pn": -0.21931 + }, + { + "surface": "割増し", + "readging": "わりまし", + "pos": "名詞", + "pn": -0.219312 + }, + { + "surface": "立志伝", + "readging": "りっしでん", + "pos": "名詞", + "pn": -0.219349 + }, + { + "surface": "将来性", + "readging": "しょうらいせい", + "pos": "名詞", + "pn": -0.219367 + }, + { + "surface": "海容", + "readging": "かいよう", + "pos": "名詞", + "pn": -0.219385 + }, + { + "surface": "反攻", + "readging": "はんこう", + "pos": "名詞", + "pn": -0.219404 + }, + { + "surface": "平温", + "readging": "へいおん", + "pos": "名詞", + "pn": -0.219404 + }, + { + "surface": "自主", + "readging": "じしゅ", + "pos": "名詞", + "pn": -0.219423 + }, + { + "surface": "駅舎", + "readging": "えきしゃ", + "pos": "名詞", + "pn": -0.219423 + }, + { + "surface": "表象", + "readging": "ひょうしょう", + "pos": "名詞", + "pn": -0.219425 + }, + { + "surface": "徒弟", + "readging": "とてい", + "pos": "名詞", + "pn": -0.219456 + }, + { + "surface": "自炊", + "readging": "じすい", + "pos": "名詞", + "pn": -0.219459 + }, + { + "surface": "唯物", + "readging": "ゆいぶつ", + "pos": "名詞", + "pn": -0.219466 + }, + { + "surface": "ビヤ ホール", + "readging": "ビヤ ホール", + "pos": "名詞", + "pn": -0.219503 + }, + { + "surface": "手綱捌き", + "readging": "たづなさばき", + "pos": "名詞", + "pn": -0.219523 + }, + { + "surface": "低姿勢", + "readging": "ていしせい", + "pos": "名詞", + "pn": -0.219528 + }, + { + "surface": "布置", + "readging": "ふち", + "pos": "名詞", + "pn": -0.219534 + }, + { + "surface": "貢物", + "readging": "みつぎもの", + "pos": "名詞", + "pn": -0.219548 + }, + { + "surface": "財務", + "readging": "ざいむ", + "pos": "名詞", + "pn": -0.219551 + }, + { + "surface": "閲する", + "readging": "えっする", + "pos": "動詞", + "pn": -0.219602 + }, + { + "surface": "芽胞", + "readging": "がほう", + "pos": "名詞", + "pn": -0.219628 + }, + { + "surface": "念持", + "readging": "ねんじ", + "pos": "名詞", + "pn": -0.219629 + }, + { + "surface": "代診", + "readging": "だいしん", + "pos": "名詞", + "pn": -0.219644 + }, + { + "surface": "陰間", + "readging": "かげま", + "pos": "名詞", + "pn": -0.219656 + }, + { + "surface": "散会", + "readging": "さんかい", + "pos": "名詞", + "pn": -0.219681 + }, + { + "surface": "如何物食い", + "readging": "いかものぐい", + "pos": "名詞", + "pn": -0.219684 + }, + { + "surface": "服務", + "readging": "ふくむ", + "pos": "名詞", + "pn": -0.219692 + }, + { + "surface": "締高", + "readging": "しめだか", + "pos": "名詞", + "pn": -0.219702 + }, + { + "surface": "ディレクター", + "readging": "ディレクター", + "pos": "名詞", + "pn": -0.21972 + }, + { + "surface": "嚥下", + "readging": "えんか", + "pos": "名詞", + "pn": -0.219724 + }, + { + "surface": "本堂", + "readging": "ほんどう", + "pos": "名詞", + "pn": -0.21973 + }, + { + "surface": "満ち潮", + "readging": "みちしお", + "pos": "名詞", + "pn": -0.21974 + }, + { + "surface": "直読", + "readging": "ちょくどく", + "pos": "名詞", + "pn": -0.21974 + }, + { + "surface": "朱欄", + "readging": "しゅらん", + "pos": "名詞", + "pn": -0.219745 + }, + { + "surface": "客地", + "readging": "かくち", + "pos": "名詞", + "pn": -0.219755 + }, + { + "surface": "廊下鳶", + "readging": "ろうかとんび", + "pos": "名詞", + "pn": -0.219775 + }, + { + "surface": "一昔", + "readging": "ひとむかし", + "pos": "名詞", + "pn": -0.219775 + }, + { + "surface": "ガロン", + "readging": "ガロン", + "pos": "名詞", + "pn": -0.219792 + }, + { + "surface": "新作", + "readging": "しんさく", + "pos": "名詞", + "pn": -0.219796 + }, + { + "surface": "紫斑", + "readging": "しはん", + "pos": "名詞", + "pn": -0.219815 + }, + { + "surface": "旧冬", + "readging": "きゅうとう", + "pos": "名詞", + "pn": -0.219819 + }, + { + "surface": "足癖", + "readging": "あしくせ", + "pos": "名詞", + "pn": -0.219824 + }, + { + "surface": "貸店", + "readging": "かしみせ", + "pos": "名詞", + "pn": -0.219829 + }, + { + "surface": "広角", + "readging": "こうかく", + "pos": "名詞", + "pn": -0.219836 + }, + { + "surface": "使いこなす", + "readging": "つかいこなす", + "pos": "動詞", + "pn": -0.219837 + }, + { + "surface": "濫獲", + "readging": "らんかく", + "pos": "名詞", + "pn": -0.219856 + }, + { + "surface": "十夜", + "readging": "じゅうや", + "pos": "名詞", + "pn": -0.219871 + }, + { + "surface": "届け先", + "readging": "とどけさき", + "pos": "名詞", + "pn": -0.219874 + }, + { + "surface": "分れ目", + "readging": "わかれめ", + "pos": "名詞", + "pn": -0.219883 + }, + { + "surface": "入用", + "readging": "いりよう", + "pos": "名詞", + "pn": -0.219885 + }, + { + "surface": "空陸", + "readging": "くうりく", + "pos": "名詞", + "pn": -0.219887 + }, + { + "surface": "消化器", + "readging": "しょうかき", + "pos": "名詞", + "pn": -0.219898 + }, + { + "surface": "性徴", + "readging": "せいちょう", + "pos": "名詞", + "pn": -0.219912 + }, + { + "surface": "画賛", + "readging": "がさん", + "pos": "名詞", + "pn": -0.219918 + }, + { + "surface": "女衒", + "readging": "ぜげん", + "pos": "名詞", + "pn": -0.219933 + }, + { + "surface": "一聯", + "readging": "いちれん", + "pos": "名詞", + "pn": -0.219937 + }, + { + "surface": "自小作", + "readging": "じこさく", + "pos": "名詞", + "pn": -0.219939 + }, + { + "surface": "太虚", + "readging": "たいきょ", + "pos": "名詞", + "pn": -0.219967 + }, + { + "surface": "私生児", + "readging": "しせいじ", + "pos": "名詞", + "pn": -0.22 + }, + { + "surface": "言張る", + "readging": "いいはる", + "pos": "動詞", + "pn": -0.220003 + }, + { + "surface": "正門", + "readging": "せいもん", + "pos": "名詞", + "pn": -0.220004 + }, + { + "surface": "征矢", + "readging": "そや", + "pos": "名詞", + "pn": -0.220013 + }, + { + "surface": "飴色", + "readging": "あめいろ", + "pos": "名詞", + "pn": -0.220038 + }, + { + "surface": "身悶え", + "readging": "みもだえ", + "pos": "名詞", + "pn": -0.220039 + }, + { + "surface": "パステル", + "readging": "パステルカラー", + "pos": "名詞", + "pn": -0.22004 + }, + { + "surface": "エキス", + "readging": "エキス", + "pos": "名詞", + "pn": -0.220048 + }, + { + "surface": "クリーナー", + "readging": "クリーナー", + "pos": "名詞", + "pn": -0.220053 + }, + { + "surface": "地上権", + "readging": "ちじょうけん", + "pos": "名詞", + "pn": -0.220054 + }, + { + "surface": "星辰", + "readging": "せいしん", + "pos": "名詞", + "pn": -0.220064 + }, + { + "surface": "ゲリラ", + "readging": "ゲリラ", + "pos": "名詞", + "pn": -0.220082 + }, + { + "surface": "自前", + "readging": "じまえ", + "pos": "名詞", + "pn": -0.220096 + }, + { + "surface": "総花", + "readging": "そうばな", + "pos": "名詞", + "pn": -0.220133 + }, + { + "surface": "虚心坦懐", + "readging": "きょしんたんかい", + "pos": "名詞", + "pn": -0.220158 + }, + { + "surface": "見目形", + "readging": "みめかたち", + "pos": "名詞", + "pn": -0.220168 + }, + { + "surface": "自浄", + "readging": "じじょう", + "pos": "名詞", + "pn": -0.220173 + }, + { + "surface": "分筆", + "readging": "ぶんぴつ", + "pos": "名詞", + "pn": -0.220174 + }, + { + "surface": "建玉", + "readging": "たてぎょく", + "pos": "名詞", + "pn": -0.220178 + }, + { + "surface": "小頭", + "readging": "こがしら", + "pos": "名詞", + "pn": -0.220184 + }, + { + "surface": "散史", + "readging": "さんし", + "pos": "名詞", + "pn": -0.220189 + }, + { + "surface": "通がる", + "readging": "つうがる", + "pos": "動詞", + "pn": -0.220209 + }, + { + "surface": "澆季", + "readging": "ぎょうき", + "pos": "名詞", + "pn": -0.220211 + }, + { + "surface": "大台", + "readging": "おおだい", + "pos": "名詞", + "pn": -0.220223 + }, + { + "surface": "後件", + "readging": "こうけん", + "pos": "名詞", + "pn": -0.220225 + }, + { + "surface": "ベンジン", + "readging": "ベンジン", + "pos": "名詞", + "pn": -0.220252 + }, + { + "surface": "測深", + "readging": "そくしん", + "pos": "名詞", + "pn": -0.220261 + }, + { + "surface": "回向", + "readging": "えこう", + "pos": "名詞", + "pn": -0.220261 + }, + { + "surface": "シェア", + "readging": "シェア", + "pos": "名詞", + "pn": -0.220266 + }, + { + "surface": "学部", + "readging": "がくぶ", + "pos": "名詞", + "pn": -0.220279 + }, + { + "surface": "坦坦", + "readging": "たんたん", + "pos": "名詞", + "pn": -0.220283 + }, + { + "surface": "弦音", + "readging": "つるおと", + "pos": "名詞", + "pn": -0.220284 + }, + { + "surface": "軍閥", + "readging": "ぐんばつ", + "pos": "名詞", + "pn": -0.220296 + }, + { + "surface": "等高線", + "readging": "とうこうせん", + "pos": "名詞", + "pn": -0.220308 + }, + { + "surface": "通信網", + "readging": "つうしんもう", + "pos": "名詞", + "pn": -0.220314 + }, + { + "surface": "試", + "readging": "し", + "pos": "名詞", + "pn": -0.220328 + }, + { + "surface": "シャンパン", + "readging": "シャンパン", + "pos": "名詞", + "pn": -0.220337 + }, + { + "surface": "標柱", + "readging": "ひょうちゅう", + "pos": "名詞", + "pn": -0.220342 + }, + { + "surface": "梯団", + "readging": "ていだん", + "pos": "名詞", + "pn": -0.220366 + }, + { + "surface": "ゼスチュア", + "readging": "ゼスチュア", + "pos": "名詞", + "pn": -0.220377 + }, + { + "surface": "共演", + "readging": "きょうえん", + "pos": "名詞", + "pn": -0.220392 + }, + { + "surface": "遠心力", + "readging": "えんしんりょく", + "pos": "名詞", + "pn": -0.220408 + }, + { + "surface": "色盲", + "readging": "しきもう", + "pos": "名詞", + "pn": -0.220425 + }, + { + "surface": "失血", + "readging": "しっけつ", + "pos": "名詞", + "pn": -0.22043 + }, + { + "surface": "太太神楽", + "readging": "だいだいかぐら", + "pos": "名詞", + "pn": -0.220439 + }, + { + "surface": "熱風", + "readging": "ねっぷう", + "pos": "名詞", + "pn": -0.220441 + }, + { + "surface": "アンケート", + "readging": "アンケート", + "pos": "名詞", + "pn": -0.22047 + }, + { + "surface": "吹かす", + "readging": "ふかす", + "pos": "動詞", + "pn": -0.220475 + }, + { + "surface": "燃え種", + "readging": "もえくさ", + "pos": "名詞", + "pn": -0.220493 + }, + { + "surface": "信託統治", + "readging": "しんたくとうち", + "pos": "名詞", + "pn": -0.220502 + }, + { + "surface": "胃酸", + "readging": "いさん", + "pos": "名詞", + "pn": -0.220504 + }, + { + "surface": "止り木", + "readging": "とまりぎ", + "pos": "名詞", + "pn": -0.220525 + }, + { + "surface": "四則", + "readging": "しそく", + "pos": "名詞", + "pn": -0.220541 + }, + { + "surface": "岩根", + "readging": "いわね", + "pos": "名詞", + "pn": -0.220547 + }, + { + "surface": "暗渠", + "readging": "あんきょ", + "pos": "名詞", + "pn": -0.220547 + }, + { + "surface": "参列", + "readging": "さんれつ", + "pos": "名詞", + "pn": -0.220581 + }, + { + "surface": "十六六指", + "readging": "じゅうろくむさし", + "pos": "名詞", + "pn": -0.2206 + }, + { + "surface": "直面", + "readging": "ちょくめん", + "pos": "名詞", + "pn": -0.220619 + }, + { + "surface": "昼光色", + "readging": "ちゅうこうしょく", + "pos": "名詞", + "pn": -0.220647 + }, + { + "surface": "操", + "readging": "そう", + "pos": "名詞", + "pn": -0.220665 + }, + { + "surface": "宿送り", + "readging": "しゅくおくり", + "pos": "名詞", + "pn": -0.220679 + }, + { + "surface": "紺碧", + "readging": "こんぺき", + "pos": "名詞", + "pn": -0.220684 + }, + { + "surface": "住荒らす", + "readging": "すみあらす", + "pos": "動詞", + "pn": -0.220734 + }, + { + "surface": "先行き", + "readging": "さきいき", + "pos": "名詞", + "pn": -0.220734 + }, + { + "surface": "寄進", + "readging": "きしん", + "pos": "名詞", + "pn": -0.220756 + }, + { + "surface": "新陳代謝", + "readging": "しんちんたいしゃ", + "pos": "名詞", + "pn": -0.220759 + }, + { + "surface": "デカダン", + "readging": "デカダン", + "pos": "名詞", + "pn": -0.220771 + }, + { + "surface": "全盛", + "readging": "ぜんせい", + "pos": "名詞", + "pn": -0.220772 + }, + { + "surface": "大獄", + "readging": "たいごく", + "pos": "名詞", + "pn": -0.220778 + }, + { + "surface": "青地", + "readging": "あおじ", + "pos": "名詞", + "pn": -0.220784 + }, + { + "surface": "保釈", + "readging": "ほしゃく", + "pos": "名詞", + "pn": -0.2208 + }, + { + "surface": "だぶつく", + "readging": "だぶつく", + "pos": "動詞", + "pn": -0.220803 + }, + { + "surface": "有料", + "readging": "ゆうりょう", + "pos": "名詞", + "pn": -0.220812 + }, + { + "surface": "三叉", + "readging": "さんさ", + "pos": "名詞", + "pn": -0.220819 + }, + { + "surface": "華美", + "readging": "かび", + "pos": "名詞", + "pn": -0.220819 + }, + { + "surface": "言回し", + "readging": "いいまわし", + "pos": "名詞", + "pn": -0.220829 + }, + { + "surface": "味わう", + "readging": "あじわう", + "pos": "動詞", + "pn": -0.22083 + }, + { + "surface": "初一念", + "readging": "しょいちねん", + "pos": "名詞", + "pn": -0.220846 + }, + { + "surface": "浜荻", + "readging": "はまおぎ", + "pos": "名詞", + "pn": -0.220849 + }, + { + "surface": "田租", + "readging": "でんそ", + "pos": "名詞", + "pn": -0.220862 + }, + { + "surface": "座付", + "readging": "ざつき", + "pos": "名詞", + "pn": -0.220869 + }, + { + "surface": "困窮", + "readging": "こんきゅう", + "pos": "名詞", + "pn": -0.220882 + }, + { + "surface": "真名", + "readging": "まな", + "pos": "名詞", + "pn": -0.220898 + }, + { + "surface": "豚箱", + "readging": "ぶたばこ", + "pos": "名詞", + "pn": -0.220913 + }, + { + "surface": "裏腹", + "readging": "うらはら", + "pos": "名詞", + "pn": -0.22092 + }, + { + "surface": "涕泣", + "readging": "ていきゅう", + "pos": "名詞", + "pn": -0.220926 + }, + { + "surface": "語序", + "readging": "ごじょ", + "pos": "名詞", + "pn": -0.22093 + }, + { + "surface": "後身", + "readging": "こうしん", + "pos": "名詞", + "pn": -0.220933 + }, + { + "surface": "紛い", + "readging": "まがい", + "pos": "名詞", + "pn": -0.220965 + }, + { + "surface": "分外", + "readging": "ぶんがい", + "pos": "名詞", + "pn": -0.220967 + }, + { + "surface": "太織", + "readging": "ふとおり", + "pos": "名詞", + "pn": -0.220987 + }, + { + "surface": "雑支出", + "readging": "ざつししゅつ", + "pos": "名詞", + "pn": -0.22099 + }, + { + "surface": "音数律", + "readging": "おんすうりつ", + "pos": "名詞", + "pn": -0.220999 + }, + { + "surface": "透視", + "readging": "とうし", + "pos": "名詞", + "pn": -0.221013 + }, + { + "surface": "粉", + "readging": "こな", + "pos": "名詞", + "pn": -0.221029 + }, + { + "surface": "ペーブメント", + "readging": "ペーブメント", + "pos": "名詞", + "pn": -0.221033 + }, + { + "surface": "攻守", + "readging": "こうしゅ", + "pos": "名詞", + "pn": -0.221036 + }, + { + "surface": "若菜", + "readging": "わかな", + "pos": "名詞", + "pn": -0.221039 + }, + { + "surface": "歩積み預金", + "readging": "ぶづみよきん", + "pos": "名詞", + "pn": -0.221054 + }, + { + "surface": "後夜", + "readging": "ごや", + "pos": "名詞", + "pn": -0.221058 + }, + { + "surface": "筆跡", + "readging": "ひっせき", + "pos": "名詞", + "pn": -0.221062 + }, + { + "surface": "家職", + "readging": "かしょく", + "pos": "名詞", + "pn": -0.221062 + }, + { + "surface": "高官", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.221074 + }, + { + "surface": "取返し", + "readging": "とりかえし", + "pos": "名詞", + "pn": -0.221077 + }, + { + "surface": "内面", + "readging": "ないめん", + "pos": "名詞", + "pn": -0.221082 + }, + { + "surface": "ダンピング", + "readging": "ダンピング", + "pos": "名詞", + "pn": -0.221087 + }, + { + "surface": "給血", + "readging": "きゅうけつ", + "pos": "名詞", + "pn": -0.221088 + }, + { + "surface": "山荘", + "readging": "さんそう", + "pos": "名詞", + "pn": -0.221108 + }, + { + "surface": "芸者", + "readging": "げいしゃ", + "pos": "名詞", + "pn": -0.221121 + }, + { + "surface": "自主権", + "readging": "じしゅけん", + "pos": "名詞", + "pn": -0.221123 + }, + { + "surface": "デージー", + "readging": "デージー", + "pos": "名詞", + "pn": -0.221127 + }, + { + "surface": "軸馬力", + "readging": "じくばりき", + "pos": "名詞", + "pn": -0.221156 + }, + { + "surface": "鉄山", + "readging": "てつざん", + "pos": "名詞", + "pn": -0.221169 + }, + { + "surface": "世襲", + "readging": "せしゅう", + "pos": "名詞", + "pn": -0.221171 + }, + { + "surface": "狂乱", + "readging": "きょうらん", + "pos": "名詞", + "pn": -0.221183 + }, + { + "surface": "隠れ蓑", + "readging": "かくれみの", + "pos": "名詞", + "pn": -0.221187 + }, + { + "surface": "寄書き", + "readging": "よせがき", + "pos": "名詞", + "pn": -0.221205 + }, + { + "surface": "承知", + "readging": "しょうち", + "pos": "名詞", + "pn": -0.221211 + }, + { + "surface": "領海", + "readging": "りょうかい", + "pos": "名詞", + "pn": -0.221236 + }, + { + "surface": "解明", + "readging": "かいめい", + "pos": "名詞", + "pn": -0.221238 + }, + { + "surface": "鉄", + "readging": "くろがね", + "pos": "名詞", + "pn": -0.22124 + }, + { + "surface": "敗軍", + "readging": "はいぐん", + "pos": "名詞", + "pn": -0.221246 + }, + { + "surface": "スコア", + "readging": "スコアボード", + "pos": "名詞", + "pn": -0.221251 + }, + { + "surface": "真情", + "readging": "しんじょう", + "pos": "名詞", + "pn": -0.221254 + }, + { + "surface": "筒咲き", + "readging": "つつざき", + "pos": "名詞", + "pn": -0.221268 + }, + { + "surface": "至", + "readging": "いたり", + "pos": "名詞", + "pn": -0.221277 + }, + { + "surface": "切盛り", + "readging": "きりもり", + "pos": "名詞", + "pn": -0.22128 + }, + { + "surface": "データ", + "readging": "データ", + "pos": "名詞", + "pn": -0.221302 + }, + { + "surface": "裏面", + "readging": "りめん", + "pos": "名詞", + "pn": -0.221312 + }, + { + "surface": "自律神経", + "readging": "じりつしんけい", + "pos": "名詞", + "pn": -0.221323 + }, + { + "surface": "自転", + "readging": "じてん", + "pos": "名詞", + "pn": -0.221331 + }, + { + "surface": "院線", + "readging": "いんせん", + "pos": "名詞", + "pn": -0.221333 + }, + { + "surface": "行啓", + "readging": "ぎょうけい", + "pos": "名詞", + "pn": -0.221338 + }, + { + "surface": "三毛作", + "readging": "さんもうさく", + "pos": "名詞", + "pn": -0.221341 + }, + { + "surface": "塗板", + "readging": "ぬりいた", + "pos": "名詞", + "pn": -0.221364 + }, + { + "surface": "株分け", + "readging": "かぶわけ", + "pos": "名詞", + "pn": -0.221369 + }, + { + "surface": "箸枕", + "readging": "はしまくら", + "pos": "名詞", + "pn": -0.221373 + }, + { + "surface": "唐人", + "readging": "とうじん", + "pos": "名詞", + "pn": -0.221377 + }, + { + "surface": "恋する", + "readging": "こいする", + "pos": "動詞", + "pn": -0.221388 + }, + { + "surface": "宥免", + "readging": "ゆうめん", + "pos": "名詞", + "pn": -0.22141 + }, + { + "surface": "踏破", + "readging": "とうは", + "pos": "名詞", + "pn": -0.221461 + }, + { + "surface": "検収", + "readging": "けんしゅう", + "pos": "名詞", + "pn": -0.221482 + }, + { + "surface": "プレリュード", + "readging": "プレリュード", + "pos": "名詞", + "pn": -0.221543 + }, + { + "surface": "上天", + "readging": "じょうてん", + "pos": "名詞", + "pn": -0.221549 + }, + { + "surface": "決心", + "readging": "けっしん", + "pos": "名詞", + "pn": -0.221552 + }, + { + "surface": "ネオン", + "readging": "ネオンサイン", + "pos": "名詞", + "pn": -0.221553 + }, + { + "surface": "公立", + "readging": "こうりつ", + "pos": "名詞", + "pn": -0.221567 + }, + { + "surface": "グリーン", + "readging": "グリーン", + "pos": "名詞", + "pn": -0.221629 + }, + { + "surface": "液化", + "readging": "えきか", + "pos": "名詞", + "pn": -0.221629 + }, + { + "surface": "予覚", + "readging": "よかく", + "pos": "名詞", + "pn": -0.221635 + }, + { + "surface": "字配り", + "readging": "じくばり", + "pos": "名詞", + "pn": -0.221643 + }, + { + "surface": "取合う", + "readging": "とりあう", + "pos": "動詞", + "pn": -0.221648 + }, + { + "surface": "和字", + "readging": "わじ", + "pos": "名詞", + "pn": -0.221666 + }, + { + "surface": "三代", + "readging": "さんだい", + "pos": "名詞", + "pn": -0.221666 + }, + { + "surface": "上擦る", + "readging": "うわずる", + "pos": "動詞", + "pn": -0.221672 + }, + { + "surface": "和洋折衷", + "readging": "わようせっちゅう", + "pos": "名詞", + "pn": -0.221691 + }, + { + "surface": "村民", + "readging": "そんみん", + "pos": "名詞", + "pn": -0.221699 + }, + { + "surface": "鷹飼", + "readging": "たかがい", + "pos": "名詞", + "pn": -0.221699 + }, + { + "surface": "小名", + "readging": "しょうみょう", + "pos": "名詞", + "pn": -0.221712 + }, + { + "surface": "客体", + "readging": "きゃくたい", + "pos": "名詞", + "pn": -0.221717 + }, + { + "surface": "微粉", + "readging": "びふん", + "pos": "名詞", + "pn": -0.221718 + }, + { + "surface": "遠足", + "readging": "えんそく", + "pos": "名詞", + "pn": -0.221721 + }, + { + "surface": "帰り支度", + "readging": "かえりじたく", + "pos": "名詞", + "pn": -0.221726 + }, + { + "surface": "庵主", + "readging": "あんしゅ", + "pos": "名詞", + "pn": -0.221738 + }, + { + "surface": "プロパガンダ", + "readging": "プロパガンダ", + "pos": "名詞", + "pn": -0.221738 + }, + { + "surface": "賦役", + "readging": "ふえき", + "pos": "名詞", + "pn": -0.221773 + }, + { + "surface": "丙", + "readging": "ひのえ", + "pos": "名詞", + "pn": -0.221774 + }, + { + "surface": "俳話", + "readging": "はいわ", + "pos": "名詞", + "pn": -0.221786 + }, + { + "surface": "塔婆", + "readging": "とうば", + "pos": "名詞", + "pn": -0.221795 + }, + { + "surface": "行政法", + "readging": "ぎょうせいほう", + "pos": "名詞", + "pn": -0.221807 + }, + { + "surface": "初役", + "readging": "はつやく", + "pos": "名詞", + "pn": -0.221819 + }, + { + "surface": "菩提寺", + "readging": "ぼだいじ", + "pos": "名詞", + "pn": -0.22182 + }, + { + "surface": "天領", + "readging": "てんりょう", + "pos": "名詞", + "pn": -0.221827 + }, + { + "surface": "総出", + "readging": "そうで", + "pos": "名詞", + "pn": -0.221829 + }, + { + "surface": "査証", + "readging": "さしょう", + "pos": "名詞", + "pn": -0.221829 + }, + { + "surface": "縞柄", + "readging": "しまがら", + "pos": "名詞", + "pn": -0.22183 + }, + { + "surface": "辛", + "readging": "かのと", + "pos": "名詞", + "pn": -0.221843 + }, + { + "surface": "外食", + "readging": "がいしょく", + "pos": "名詞", + "pn": -0.221844 + }, + { + "surface": "ヴェール", + "readging": "ヴェール", + "pos": "名詞", + "pn": -0.221851 + }, + { + "surface": "自害", + "readging": "じがい", + "pos": "名詞", + "pn": -0.221879 + }, + { + "surface": "せいご", + "readging": "せいご", + "pos": "名詞", + "pn": -0.221882 + }, + { + "surface": "僧坊", + "readging": "そうぼう", + "pos": "名詞", + "pn": -0.221894 + }, + { + "surface": "身動き", + "readging": "みうごき", + "pos": "名詞", + "pn": -0.221894 + }, + { + "surface": "職能", + "readging": "しょくのう", + "pos": "名詞", + "pn": -0.221898 + }, + { + "surface": "アーチェリー", + "readging": "アーチェリー", + "pos": "名詞", + "pn": -0.221898 + }, + { + "surface": "翰林", + "readging": "かんりん", + "pos": "名詞", + "pn": -0.221901 + }, + { + "surface": "綱具", + "readging": "つなぐ", + "pos": "名詞", + "pn": -0.221909 + }, + { + "surface": "宅診", + "readging": "たくしん", + "pos": "名詞", + "pn": -0.221928 + }, + { + "surface": "心算", + "readging": "しんさん", + "pos": "名詞", + "pn": -0.221936 + }, + { + "surface": "志願", + "readging": "しがん", + "pos": "名詞", + "pn": -0.221966 + }, + { + "surface": "検案", + "readging": "けんあん", + "pos": "名詞", + "pn": -0.221976 + }, + { + "surface": "力布", + "readging": "ちからぬの", + "pos": "名詞", + "pn": -0.221979 + }, + { + "surface": "賃仕事", + "readging": "ちんしごと", + "pos": "名詞", + "pn": -0.221983 + }, + { + "surface": "ハイファイ", + "readging": "ハイファイ", + "pos": "名詞", + "pn": -0.221994 + }, + { + "surface": "神州", + "readging": "しんしゅう", + "pos": "名詞", + "pn": -0.222008 + }, + { + "surface": "売値", + "readging": "うりね", + "pos": "名詞", + "pn": -0.222028 + }, + { + "surface": "切畑", + "readging": "きりはた", + "pos": "名詞", + "pn": -0.222041 + }, + { + "surface": "口移し", + "readging": "くちうつし", + "pos": "名詞", + "pn": -0.222066 + }, + { + "surface": "A5", + "readging": "エーご", + "pos": "名詞", + "pn": -0.222076 + }, + { + "surface": "剣劇", + "readging": "けんげき", + "pos": "名詞", + "pn": -0.222083 + }, + { + "surface": "大門", + "readging": "だいもん", + "pos": "名詞", + "pn": -0.2221 + }, + { + "surface": "腹背", + "readging": "ふくはい", + "pos": "名詞", + "pn": -0.222102 + }, + { + "surface": "野営", + "readging": "やえい", + "pos": "名詞", + "pn": -0.222108 + }, + { + "surface": "木の間", + "readging": "このま", + "pos": "名詞", + "pn": -0.222108 + }, + { + "surface": "著作物", + "readging": "ちょさくぶつ", + "pos": "名詞", + "pn": -0.222146 + }, + { + "surface": "明察", + "readging": "めいさつ", + "pos": "名詞", + "pn": -0.222148 + }, + { + "surface": "ぴしりと", + "readging": "ぴしりと", + "pos": "副詞", + "pn": -0.22216 + }, + { + "surface": "毒矢", + "readging": "どくや", + "pos": "名詞", + "pn": -0.222189 + }, + { + "surface": "夜軍", + "readging": "よいくさ", + "pos": "名詞", + "pn": -0.222193 + }, + { + "surface": "博言学", + "readging": "はくげんがく", + "pos": "名詞", + "pn": -0.222204 + }, + { + "surface": "万事", + "readging": "ばんじ", + "pos": "名詞", + "pn": -0.222211 + }, + { + "surface": "肉眼", + "readging": "にくがん", + "pos": "名詞", + "pn": -0.222228 + }, + { + "surface": "残額", + "readging": "ざんがく", + "pos": "名詞", + "pn": -0.22223 + }, + { + "surface": "プレー", + "readging": "プレーガイド", + "pos": "名詞", + "pn": -0.222259 + }, + { + "surface": "兵員", + "readging": "へいいん", + "pos": "名詞", + "pn": -0.22227 + }, + { + "surface": "凸面", + "readging": "とつめん", + "pos": "名詞", + "pn": -0.22228 + }, + { + "surface": "鞏膜", + "readging": "きょうまく", + "pos": "名詞", + "pn": -0.222282 + }, + { + "surface": "変説", + "readging": "へんせつ", + "pos": "名詞", + "pn": -0.222285 + }, + { + "surface": "真一文字", + "readging": "まいちもんじ", + "pos": "名詞", + "pn": -0.222296 + }, + { + "surface": "親類書", + "readging": "しんるいがき", + "pos": "名詞", + "pn": -0.222296 + }, + { + "surface": "狭斜", + "readging": "きょうしゃ", + "pos": "名詞", + "pn": -0.222309 + }, + { + "surface": "金剛砂", + "readging": "こんごうしゃ", + "pos": "名詞", + "pn": -0.222322 + }, + { + "surface": "墓守", + "readging": "はかもり", + "pos": "名詞", + "pn": -0.222342 + }, + { + "surface": "協奏曲", + "readging": "きょうそうきょく", + "pos": "名詞", + "pn": -0.222362 + }, + { + "surface": "特徴", + "readging": "とくちょう", + "pos": "名詞", + "pn": -0.22238 + }, + { + "surface": "落ち", + "readging": "おち", + "pos": "名詞", + "pn": -0.222396 + }, + { + "surface": "経典", + "readging": "きょうてん", + "pos": "名詞", + "pn": -0.222401 + }, + { + "surface": "自由主義", + "readging": "じゆうしゅぎ", + "pos": "名詞", + "pn": -0.222418 + }, + { + "surface": "昔語り", + "readging": "むかしがたり", + "pos": "名詞", + "pn": -0.22243 + }, + { + "surface": "同点", + "readging": "どうてん", + "pos": "名詞", + "pn": -0.222441 + }, + { + "surface": "タイプ", + "readging": "タイプ", + "pos": "名詞", + "pn": -0.222444 + }, + { + "surface": "コンダクター", + "readging": "コンダクター", + "pos": "名詞", + "pn": -0.222467 + }, + { + "surface": "二重構造", + "readging": "にじゅうこうぞう", + "pos": "名詞", + "pn": -0.222476 + }, + { + "surface": "同人雑誌", + "readging": "どうじんざっし", + "pos": "名詞", + "pn": -0.222486 + }, + { + "surface": "作動", + "readging": "さどう", + "pos": "名詞", + "pn": -0.2225 + }, + { + "surface": "灯用", + "readging": "とうよう", + "pos": "名詞", + "pn": -0.222532 + }, + { + "surface": "社会主義", + "readging": "しゃかいしゅぎ", + "pos": "名詞", + "pn": -0.22256 + }, + { + "surface": "御神酒", + "readging": "おみき", + "pos": "名詞", + "pn": -0.222575 + }, + { + "surface": "軍記物語", + "readging": "ぐんきものがたり", + "pos": "名詞", + "pn": -0.222586 + }, + { + "surface": "山田", + "readging": "やまだ", + "pos": "名詞", + "pn": -0.222593 + }, + { + "surface": "公印", + "readging": "こういん", + "pos": "名詞", + "pn": -0.222626 + }, + { + "surface": "葬列", + "readging": "そうれつ", + "pos": "名詞", + "pn": -0.222632 + }, + { + "surface": "引っ被る", + "readging": "ひっかぶる", + "pos": "動詞", + "pn": -0.222651 + }, + { + "surface": "キャッシュ", + "readging": "キャッシュ", + "pos": "名詞", + "pn": -0.222655 + }, + { + "surface": "路面", + "readging": "ろめん", + "pos": "名詞", + "pn": -0.222661 + }, + { + "surface": "流涕", + "readging": "りゅうてい", + "pos": "名詞", + "pn": -0.222676 + }, + { + "surface": "悲喜劇", + "readging": "ひきげき", + "pos": "名詞", + "pn": -0.222704 + }, + { + "surface": "村長", + "readging": "そんちょう", + "pos": "名詞", + "pn": -0.222709 + }, + { + "surface": "遠近法", + "readging": "えんきんほう", + "pos": "名詞", + "pn": -0.22273 + }, + { + "surface": "界面", + "readging": "かいめん", + "pos": "名詞", + "pn": -0.222754 + }, + { + "surface": "鳥網", + "readging": "とりあみ", + "pos": "名詞", + "pn": -0.222756 + }, + { + "surface": "太閤", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.222762 + }, + { + "surface": "ライブラリー", + "readging": "ライブラリー", + "pos": "名詞", + "pn": -0.222763 + }, + { + "surface": "根こそぎ", + "readging": "ねこそぎ", + "pos": "名詞", + "pn": -0.222769 + }, + { + "surface": "薄暑", + "readging": "はくしょ", + "pos": "名詞", + "pn": -0.222774 + }, + { + "surface": "前口上", + "readging": "まえこうじょう", + "pos": "名詞", + "pn": -0.222777 + }, + { + "surface": "脚韻", + "readging": "きゃくいん", + "pos": "名詞", + "pn": -0.222789 + }, + { + "surface": "チェンバロ", + "readging": "チェンバロ", + "pos": "名詞", + "pn": -0.222798 + }, + { + "surface": "滞欧", + "readging": "たいおう", + "pos": "名詞", + "pn": -0.22284 + }, + { + "surface": "年表", + "readging": "ねんぴょう", + "pos": "名詞", + "pn": -0.222852 + }, + { + "surface": "共裏", + "readging": "ともうら", + "pos": "名詞", + "pn": -0.222872 + }, + { + "surface": "検温器", + "readging": "けんおんき", + "pos": "名詞", + "pn": -0.222878 + }, + { + "surface": "和書", + "readging": "わしょ", + "pos": "名詞", + "pn": -0.22288 + }, + { + "surface": "弘法", + "readging": "ぐほう", + "pos": "名詞", + "pn": -0.222883 + }, + { + "surface": "出立", + "readging": "いでたち", + "pos": "名詞", + "pn": -0.222887 + }, + { + "surface": "祭る", + "readging": "まつる", + "pos": "動詞", + "pn": -0.222888 + }, + { + "surface": "品薄", + "readging": "しなうす", + "pos": "名詞", + "pn": -0.222893 + }, + { + "surface": "むかっと", + "readging": "むかっと", + "pos": "副詞", + "pn": -0.22291 + }, + { + "surface": "牧場", + "readging": "ぼくじょう", + "pos": "名詞", + "pn": -0.222917 + }, + { + "surface": "オナニー", + "readging": "オナニー", + "pos": "名詞", + "pn": -0.222921 + }, + { + "surface": "御歌", + "readging": "おうた", + "pos": "名詞", + "pn": -0.222938 + }, + { + "surface": "諄諄", + "readging": "じゅんじゅん", + "pos": "名詞", + "pn": -0.222946 + }, + { + "surface": "原名", + "readging": "げんめい", + "pos": "名詞", + "pn": -0.222948 + }, + { + "surface": "玉取り", + "readging": "たまとり", + "pos": "名詞", + "pn": -0.222953 + }, + { + "surface": "時世", + "readging": "じせい", + "pos": "名詞", + "pn": -0.222955 + }, + { + "surface": "口止め", + "readging": "くちどめ", + "pos": "名詞", + "pn": -0.222965 + }, + { + "surface": "事跡", + "readging": "じせき", + "pos": "名詞", + "pn": -0.22297 + }, + { + "surface": "持場", + "readging": "もちば", + "pos": "名詞", + "pn": -0.222972 + }, + { + "surface": "受像", + "readging": "じゅぞう", + "pos": "名詞", + "pn": -0.222976 + }, + { + "surface": "経国", + "readging": "けいこく", + "pos": "名詞", + "pn": -0.222993 + }, + { + "surface": "海洋気候", + "readging": "かいようきこう", + "pos": "名詞", + "pn": -0.223009 + }, + { + "surface": "連綿", + "readging": "れんめん", + "pos": "名詞", + "pn": -0.223029 + }, + { + "surface": "分子式", + "readging": "ぶんししき", + "pos": "名詞", + "pn": -0.223041 + }, + { + "surface": "清", + "readging": "せい", + "pos": "名詞", + "pn": -0.223069 + }, + { + "surface": "内分", + "readging": "ないぶん", + "pos": "名詞", + "pn": -0.223073 + }, + { + "surface": "年休", + "readging": "ねんきゅう", + "pos": "名詞", + "pn": -0.223085 + }, + { + "surface": "横恋慕", + "readging": "よこれんぼ", + "pos": "名詞", + "pn": -0.223088 + }, + { + "surface": "葷酒", + "readging": "くんしゅ", + "pos": "名詞", + "pn": -0.223097 + }, + { + "surface": "狂わせる", + "readging": "くるわせる", + "pos": "動詞", + "pn": -0.223105 + }, + { + "surface": "殲滅", + "readging": "せんめつ", + "pos": "名詞", + "pn": -0.223108 + }, + { + "surface": "馬方", + "readging": "うまかた", + "pos": "名詞", + "pn": -0.223116 + }, + { + "surface": "真最中", + "readging": "まっさいちゅう", + "pos": "名詞", + "pn": -0.223138 + }, + { + "surface": "目引き袖引き", + "readging": "めひきそでひき", + "pos": "名詞", + "pn": -0.223149 + }, + { + "surface": "曲打ち", + "readging": "きょくうち", + "pos": "名詞", + "pn": -0.22315 + }, + { + "surface": "抹香", + "readging": "まっこう", + "pos": "名詞", + "pn": -0.223187 + }, + { + "surface": "工廠", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.223191 + }, + { + "surface": "レクイエム", + "readging": "レクイエム", + "pos": "名詞", + "pn": -0.223192 + }, + { + "surface": "三拝九拝", + "readging": "さんぱいきゅうはい", + "pos": "名詞", + "pn": -0.223192 + }, + { + "surface": "適量", + "readging": "てきりょう", + "pos": "名詞", + "pn": -0.223193 + }, + { + "surface": "鮎", + "readging": "あゆ", + "pos": "名詞", + "pn": -0.223194 + }, + { + "surface": "阿堵物", + "readging": "あとぶつ", + "pos": "名詞", + "pn": -0.223197 + }, + { + "surface": "さく葉", + "readging": "さくよう", + "pos": "名詞", + "pn": -0.223216 + }, + { + "surface": "忍者", + "readging": "にんじゃ", + "pos": "名詞", + "pn": -0.223226 + }, + { + "surface": "断想", + "readging": "だんそう", + "pos": "名詞", + "pn": -0.22323 + }, + { + "surface": "輪抜け", + "readging": "わぬけ", + "pos": "名詞", + "pn": -0.223238 + }, + { + "surface": "山分け", + "readging": "やまわけ", + "pos": "名詞", + "pn": -0.223269 + }, + { + "surface": "戯れる", + "readging": "ざれる", + "pos": "動詞", + "pn": -0.22327 + }, + { + "surface": "徒競走", + "readging": "ときょうそう", + "pos": "名詞", + "pn": -0.223272 + }, + { + "surface": "要職", + "readging": "ようしょく", + "pos": "名詞", + "pn": -0.223282 + }, + { + "surface": "日の丸弁当", + "readging": "ひのまるべんとう", + "pos": "名詞", + "pn": -0.223282 + }, + { + "surface": "年取る", + "readging": "としとる", + "pos": "動詞", + "pn": -0.223297 + }, + { + "surface": "一石二鳥", + "readging": "いっせきにちょう", + "pos": "名詞", + "pn": -0.223319 + }, + { + "surface": "設営", + "readging": "せつえい", + "pos": "名詞", + "pn": -0.223332 + }, + { + "surface": "返電", + "readging": "へんでん", + "pos": "名詞", + "pn": -0.223334 + }, + { + "surface": "並べて", + "readging": "なべて", + "pos": "副詞", + "pn": -0.22334 + }, + { + "surface": "一世一代", + "readging": "いっせいちだい", + "pos": "名詞", + "pn": -0.223358 + }, + { + "surface": "本年", + "readging": "ほんねん", + "pos": "名詞", + "pn": -0.223364 + }, + { + "surface": "仁王門", + "readging": "におうもん", + "pos": "名詞", + "pn": -0.223365 + }, + { + "surface": "禁猟", + "readging": "きんりょう", + "pos": "名詞", + "pn": -0.223382 + }, + { + "surface": "御台", + "readging": "みだい", + "pos": "名詞", + "pn": -0.223386 + }, + { + "surface": "買切る", + "readging": "かいきる", + "pos": "動詞", + "pn": -0.22339 + }, + { + "surface": "行政官", + "readging": "ぎょうせいかん", + "pos": "名詞", + "pn": -0.223393 + }, + { + "surface": "荷捌", + "readging": "にさばき", + "pos": "名詞", + "pn": -0.223419 + }, + { + "surface": "やなあさって", + "readging": "やなあさって", + "pos": "名詞", + "pn": -0.223422 + }, + { + "surface": "どっしり", + "readging": "どっしり", + "pos": "副詞", + "pn": -0.223466 + }, + { + "surface": "丸抱え", + "readging": "まるがかえ", + "pos": "名詞", + "pn": -0.223469 + }, + { + "surface": "陳腐", + "readging": "ちんぷ", + "pos": "名詞", + "pn": -0.223499 + }, + { + "surface": "デジタル", + "readging": "デジタル", + "pos": "名詞", + "pn": -0.223508 + }, + { + "surface": "開催", + "readging": "かいさい", + "pos": "名詞", + "pn": -0.223521 + }, + { + "surface": "もったい", + "readging": "もったいぶる", + "pos": "動詞", + "pn": -0.223523 + }, + { + "surface": "全容", + "readging": "ぜんよう", + "pos": "名詞", + "pn": -0.223567 + }, + { + "surface": "原品", + "readging": "げんぴん", + "pos": "名詞", + "pn": -0.22357 + }, + { + "surface": "三等親", + "readging": "さんとうしん", + "pos": "名詞", + "pn": -0.223586 + }, + { + "surface": "伽羅木", + "readging": "きゃらぼく", + "pos": "名詞", + "pn": -0.223607 + }, + { + "surface": "ハロ", + "readging": "ハロ", + "pos": "名詞", + "pn": -0.223611 + }, + { + "surface": "破邪顕正", + "readging": "はじゃけんしょう", + "pos": "名詞", + "pn": -0.223631 + }, + { + "surface": "食い倒す", + "readging": "くいたおす", + "pos": "動詞", + "pn": -0.223661 + }, + { + "surface": "策応", + "readging": "さくおう", + "pos": "名詞", + "pn": -0.22367 + }, + { + "surface": "腰骨", + "readging": "こしぼね", + "pos": "名詞", + "pn": -0.22368 + }, + { + "surface": "敗亡", + "readging": "はいぼう", + "pos": "名詞", + "pn": -0.223699 + }, + { + "surface": "不縁", + "readging": "ふえん", + "pos": "名詞", + "pn": -0.223736 + }, + { + "surface": "勘亭流", + "readging": "かんていりゅう", + "pos": "名詞", + "pn": -0.223749 + }, + { + "surface": "パンフレット", + "readging": "パンフレット", + "pos": "名詞", + "pn": -0.223762 + }, + { + "surface": "昨日", + "readging": "きのう", + "pos": "名詞", + "pn": -0.223766 + }, + { + "surface": "化現", + "readging": "けげん", + "pos": "名詞", + "pn": -0.223769 + }, + { + "surface": "借越", + "readging": "かりこし", + "pos": "名詞", + "pn": -0.223781 + }, + { + "surface": "茶筅髪", + "readging": "ちゃせんがみ", + "pos": "名詞", + "pn": -0.223785 + }, + { + "surface": "発言権", + "readging": "はつげんけん", + "pos": "名詞", + "pn": -0.223799 + }, + { + "surface": "闘牛", + "readging": "とうぎゅう", + "pos": "名詞", + "pn": -0.223815 + }, + { + "surface": "パトロン", + "readging": "パトロン", + "pos": "名詞", + "pn": -0.223844 + }, + { + "surface": "硬派", + "readging": "こうは", + "pos": "名詞", + "pn": -0.223844 + }, + { + "surface": "雌", + "readging": "し", + "pos": "名詞", + "pn": -0.223885 + }, + { + "surface": "注解", + "readging": "ちゅうかい", + "pos": "名詞", + "pn": -0.223895 + }, + { + "surface": "有明行灯", + "readging": "ありあけあんどん", + "pos": "名詞", + "pn": -0.223896 + }, + { + "surface": "聞糺す", + "readging": "ききただす", + "pos": "動詞", + "pn": -0.22391 + }, + { + "surface": "前史", + "readging": "ぜんし", + "pos": "名詞", + "pn": -0.223914 + }, + { + "surface": "宛ら", + "readging": "さながら", + "pos": "副詞", + "pn": -0.223916 + }, + { + "surface": "物件", + "readging": "ぶっけん", + "pos": "名詞", + "pn": -0.223921 + }, + { + "surface": "秋蚕", + "readging": "あきご", + "pos": "名詞", + "pn": -0.223929 + }, + { + "surface": "拍子抜け", + "readging": "ひょうしぬけ", + "pos": "名詞", + "pn": -0.223937 + }, + { + "surface": "ウオーター シュート", + "readging": "ウオーター シュート", + "pos": "名詞", + "pn": -0.223948 + }, + { + "surface": "長編", + "readging": "ちょうへん", + "pos": "名詞", + "pn": -0.223949 + }, + { + "surface": "園児", + "readging": "えんじ", + "pos": "名詞", + "pn": -0.223969 + }, + { + "surface": "衣紋", + "readging": "えもん", + "pos": "名詞", + "pn": -0.223975 + }, + { + "surface": "下半期", + "readging": "しもはんき", + "pos": "名詞", + "pn": -0.224 + }, + { + "surface": "菊水", + "readging": "きくすい", + "pos": "名詞", + "pn": -0.224015 + }, + { + "surface": "血色素", + "readging": "けっしきそ", + "pos": "名詞", + "pn": -0.224027 + }, + { + "surface": "食券", + "readging": "しょっけん", + "pos": "名詞", + "pn": -0.224034 + }, + { + "surface": "烈風", + "readging": "れっぷう", + "pos": "名詞", + "pn": -0.224051 + }, + { + "surface": "金縛り", + "readging": "かなしばり", + "pos": "名詞", + "pn": -0.224052 + }, + { + "surface": "強訴", + "readging": "ごうそ", + "pos": "名詞", + "pn": -0.224057 + }, + { + "surface": "面長", + "readging": "おもなが", + "pos": "名詞", + "pn": -0.224058 + }, + { + "surface": "改訂", + "readging": "かいてい", + "pos": "名詞", + "pn": -0.22407 + }, + { + "surface": "老兵", + "readging": "ろうへい", + "pos": "名詞", + "pn": -0.224071 + }, + { + "surface": "倍率", + "readging": "ばいりつ", + "pos": "名詞", + "pn": -0.224083 + }, + { + "surface": "夢見", + "readging": "ゆめみ", + "pos": "名詞", + "pn": -0.224086 + }, + { + "surface": "飲明かす", + "readging": "のみあかす", + "pos": "動詞", + "pn": -0.2241 + }, + { + "surface": "火の元", + "readging": "ひのもと", + "pos": "名詞", + "pn": -0.224124 + }, + { + "surface": "独創", + "readging": "どくそう", + "pos": "名詞", + "pn": -0.224136 + }, + { + "surface": "光源", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.224161 + }, + { + "surface": "朝令暮改", + "readging": "ちょうれいぼかい", + "pos": "名詞", + "pn": -0.224167 + }, + { + "surface": "単元", + "readging": "たんげん", + "pos": "名詞", + "pn": -0.224181 + }, + { + "surface": "雲上", + "readging": "うんじょう", + "pos": "名詞", + "pn": -0.224203 + }, + { + "surface": "文人", + "readging": "ぶんじん", + "pos": "名詞", + "pn": -0.224214 + }, + { + "surface": "類比", + "readging": "るいひ", + "pos": "名詞", + "pn": -0.224219 + }, + { + "surface": "朝焼け", + "readging": "あさやけ", + "pos": "名詞", + "pn": -0.224245 + }, + { + "surface": "西国", + "readging": "さいこく", + "pos": "名詞", + "pn": -0.224245 + }, + { + "surface": "仕方咄", + "readging": "しかたばなし", + "pos": "名詞", + "pn": -0.224257 + }, + { + "surface": "住込み", + "readging": "すみこみ", + "pos": "名詞", + "pn": -0.224258 + }, + { + "surface": "御方", + "readging": "おんかた", + "pos": "名詞", + "pn": -0.224294 + }, + { + "surface": "緯線", + "readging": "いせん", + "pos": "名詞", + "pn": -0.224304 + }, + { + "surface": "畜力", + "readging": "ちくりょく", + "pos": "名詞", + "pn": -0.224321 + }, + { + "surface": "仮葺き", + "readging": "かりぶき", + "pos": "名詞", + "pn": -0.224328 + }, + { + "surface": "拘引", + "readging": "こういん", + "pos": "名詞", + "pn": -0.224332 + }, + { + "surface": "折菓子", + "readging": "おりがし", + "pos": "名詞", + "pn": -0.224336 + }, + { + "surface": "水芸", + "readging": "みずげい", + "pos": "名詞", + "pn": -0.224352 + }, + { + "surface": "定理", + "readging": "ていり", + "pos": "名詞", + "pn": -0.224432 + }, + { + "surface": "芳情", + "readging": "ほうじょう", + "pos": "名詞", + "pn": -0.224439 + }, + { + "surface": "山法師", + "readging": "やまほうし", + "pos": "名詞", + "pn": -0.224467 + }, + { + "surface": "属島", + "readging": "ぞくとう", + "pos": "名詞", + "pn": -0.22447 + }, + { + "surface": "照", + "readging": "しょう", + "pos": "名詞", + "pn": -0.224491 + }, + { + "surface": "ブローカー", + "readging": "ブローカー", + "pos": "名詞", + "pn": -0.224494 + }, + { + "surface": "物分り", + "readging": "ものわかり", + "pos": "名詞", + "pn": -0.224517 + }, + { + "surface": "卓袱台", + "readging": "ちゃぶだい", + "pos": "名詞", + "pn": -0.224523 + }, + { + "surface": "大礼", + "readging": "たいれい", + "pos": "名詞", + "pn": -0.224524 + }, + { + "surface": "細引", + "readging": "ほそびき", + "pos": "名詞", + "pn": -0.224531 + }, + { + "surface": "事績", + "readging": "じせき", + "pos": "名詞", + "pn": -0.224566 + }, + { + "surface": "歓喜天", + "readging": "かんぎてん", + "pos": "名詞", + "pn": -0.224574 + }, + { + "surface": "相関", + "readging": "そうかん", + "pos": "名詞", + "pn": -0.224576 + }, + { + "surface": "転出", + "readging": "てんしゅつ", + "pos": "名詞", + "pn": -0.22458 + }, + { + "surface": "寄港", + "readging": "きこう", + "pos": "名詞", + "pn": -0.224585 + }, + { + "surface": "御歌所", + "readging": "おうたどころ", + "pos": "名詞", + "pn": -0.224593 + }, + { + "surface": "ビデオ", + "readging": "ビデオカメラ", + "pos": "名詞", + "pn": -0.224607 + }, + { + "surface": "等辺", + "readging": "とうへん", + "pos": "名詞", + "pn": -0.224631 + }, + { + "surface": "往来物", + "readging": "おうらいもの", + "pos": "名詞", + "pn": -0.224638 + }, + { + "surface": "御料", + "readging": "ごりょう", + "pos": "名詞", + "pn": -0.224644 + }, + { + "surface": "眠らす", + "readging": "ねむらす", + "pos": "動詞", + "pn": -0.224647 + }, + { + "surface": "平射", + "readging": "へいしゃ", + "pos": "名詞", + "pn": -0.224647 + }, + { + "surface": "朗吟", + "readging": "ろうぎん", + "pos": "名詞", + "pn": -0.224658 + }, + { + "surface": "不知案内", + "readging": "ふちあんない", + "pos": "名詞", + "pn": -0.22468 + }, + { + "surface": "明明白白", + "readging": "めいめいはくはく", + "pos": "名詞", + "pn": -0.2247 + }, + { + "surface": "存", + "readging": "そん", + "pos": "名詞", + "pn": -0.224704 + }, + { + "surface": "宣布", + "readging": "せんぷ", + "pos": "名詞", + "pn": -0.224708 + }, + { + "surface": "展墓", + "readging": "てんぼ", + "pos": "名詞", + "pn": -0.224712 + }, + { + "surface": "系図買", + "readging": "けいずかい", + "pos": "名詞", + "pn": -0.224723 + }, + { + "surface": "テレタイプ", + "readging": "テレタイプ", + "pos": "名詞", + "pn": -0.224735 + }, + { + "surface": "勤労者", + "readging": "きんろうしゃ", + "pos": "名詞", + "pn": -0.224736 + }, + { + "surface": "三幅布団", + "readging": "みのぶとん", + "pos": "名詞", + "pn": -0.224737 + }, + { + "surface": "西経", + "readging": "せいけい", + "pos": "名詞", + "pn": -0.224742 + }, + { + "surface": "特種", + "readging": "とくしゅ", + "pos": "名詞", + "pn": -0.224779 + }, + { + "surface": "代書", + "readging": "だいしょ", + "pos": "名詞", + "pn": -0.224781 + }, + { + "surface": "建増し", + "readging": "たてまし", + "pos": "名詞", + "pn": -0.224785 + }, + { + "surface": "鎮静", + "readging": "ちんせい", + "pos": "名詞", + "pn": -0.224793 + }, + { + "surface": "切支丹伴天連", + "readging": "キリシタンバテレン", + "pos": "名詞", + "pn": -0.224793 + }, + { + "surface": "レコーダー", + "readging": "レコーダー", + "pos": "名詞", + "pn": -0.224797 + }, + { + "surface": "親王", + "readging": "しんのう", + "pos": "名詞", + "pn": -0.224806 + }, + { + "surface": "人名用漢字", + "readging": "じんめいようかんじ", + "pos": "名詞", + "pn": -0.224813 + }, + { + "surface": "別件", + "readging": "べっけん", + "pos": "名詞", + "pn": -0.224827 + }, + { + "surface": "早出", + "readging": "そうしゅつ", + "pos": "名詞", + "pn": -0.22484 + }, + { + "surface": "サウンド", + "readging": "サウンド", + "pos": "名詞", + "pn": -0.224868 + }, + { + "surface": "徴集", + "readging": "ちょうしゅう", + "pos": "名詞", + "pn": -0.224869 + }, + { + "surface": "電解", + "readging": "でんかい", + "pos": "名詞", + "pn": -0.224876 + }, + { + "surface": "沈める", + "readging": "しずめる", + "pos": "動詞", + "pn": -0.224905 + }, + { + "surface": "海王星", + "readging": "かいおうせい", + "pos": "名詞", + "pn": -0.22493 + }, + { + "surface": "満塁", + "readging": "まんるい", + "pos": "名詞", + "pn": -0.224936 + }, + { + "surface": "ディスカッション", + "readging": "ディスカッション", + "pos": "名詞", + "pn": -0.224944 + }, + { + "surface": "戦敗", + "readging": "せんぱい", + "pos": "名詞", + "pn": -0.22496 + }, + { + "surface": "親元", + "readging": "おやもと", + "pos": "名詞", + "pn": -0.224963 + }, + { + "surface": "惚気", + "readging": "のろけ", + "pos": "名詞", + "pn": -0.224969 + }, + { + "surface": "印紙", + "readging": "いんし", + "pos": "名詞", + "pn": -0.224999 + }, + { + "surface": "竜騎兵", + "readging": "りゅうきへい", + "pos": "名詞", + "pn": -0.225008 + }, + { + "surface": "水無月", + "readging": "みなづき", + "pos": "名詞", + "pn": -0.225027 + }, + { + "surface": "日掛", + "readging": "ひがけ", + "pos": "名詞", + "pn": -0.225041 + }, + { + "surface": "神苑", + "readging": "しんえん", + "pos": "名詞", + "pn": -0.225041 + }, + { + "surface": "尊属", + "readging": "そんぞく", + "pos": "名詞", + "pn": -0.225051 + }, + { + "surface": "鍍金", + "readging": "めっき", + "pos": "名詞", + "pn": -0.225062 + }, + { + "surface": "裁", + "readging": "さい", + "pos": "名詞", + "pn": -0.225074 + }, + { + "surface": "鮴", + "readging": "ごり", + "pos": "名詞", + "pn": -0.225093 + }, + { + "surface": "現役", + "readging": "げんえき", + "pos": "名詞", + "pn": -0.225117 + }, + { + "surface": "中間子", + "readging": "ちゅうかんし", + "pos": "名詞", + "pn": -0.225118 + }, + { + "surface": "新香", + "readging": "しんこ", + "pos": "名詞", + "pn": -0.225127 + }, + { + "surface": "高原", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.225129 + }, + { + "surface": "肉交", + "readging": "にくこう", + "pos": "名詞", + "pn": -0.225164 + }, + { + "surface": "塩乾魚", + "readging": "えんかんぎょ", + "pos": "名詞", + "pn": -0.225203 + }, + { + "surface": "不悉", + "readging": "ふしつ", + "pos": "名詞", + "pn": -0.225232 + }, + { + "surface": "府内", + "readging": "ふない", + "pos": "名詞", + "pn": -0.225248 + }, + { + "surface": "ギルド", + "readging": "ギルド", + "pos": "名詞", + "pn": -0.225253 + }, + { + "surface": "一本釣", + "readging": "いっぽんづり", + "pos": "名詞", + "pn": -0.225258 + }, + { + "surface": "前貸し", + "readging": "まえがし", + "pos": "名詞", + "pn": -0.225263 + }, + { + "surface": "小割", + "readging": "こわり", + "pos": "名詞", + "pn": -0.22527 + }, + { + "surface": "又の日", + "readging": "またのひ", + "pos": "名詞", + "pn": -0.225276 + }, + { + "surface": "民事訴訟", + "readging": "みんじそしょう", + "pos": "名詞", + "pn": -0.225277 + }, + { + "surface": "炉辺談話", + "readging": "ろへんだんわ", + "pos": "名詞", + "pn": -0.225277 + }, + { + "surface": "徒者", + "readging": "ただもの", + "pos": "名詞", + "pn": -0.225282 + }, + { + "surface": "探測", + "readging": "たんそく", + "pos": "名詞", + "pn": -0.225285 + }, + { + "surface": "テクノクラート", + "readging": "テクノクラート", + "pos": "名詞", + "pn": -0.225288 + }, + { + "surface": "浜千鳥", + "readging": "はまちどり", + "pos": "名詞", + "pn": -0.225294 + }, + { + "surface": "武備", + "readging": "ぶび", + "pos": "名詞", + "pn": -0.225294 + }, + { + "surface": "宵の口", + "readging": "よいのくち", + "pos": "名詞", + "pn": -0.225299 + }, + { + "surface": "時速", + "readging": "じそく", + "pos": "名詞", + "pn": -0.22531 + }, + { + "surface": "素語り", + "readging": "すがたり", + "pos": "名詞", + "pn": -0.225323 + }, + { + "surface": "ぎくしゃく", + "readging": "ぎくしゃく", + "pos": "名詞", + "pn": -0.225323 + }, + { + "surface": "腰部", + "readging": "ようぶ", + "pos": "名詞", + "pn": -0.225346 + }, + { + "surface": "反例", + "readging": "はんれい", + "pos": "名詞", + "pn": -0.225362 + }, + { + "surface": "カメラ", + "readging": "カメラ", + "pos": "名詞", + "pn": -0.225365 + }, + { + "surface": "露霜", + "readging": "つゆじも", + "pos": "名詞", + "pn": -0.225403 + }, + { + "surface": "艦艇", + "readging": "かんてい", + "pos": "名詞", + "pn": -0.225404 + }, + { + "surface": "操典", + "readging": "そうてん", + "pos": "名詞", + "pn": -0.225427 + }, + { + "surface": "狂い咲き", + "readging": "くるいざき", + "pos": "名詞", + "pn": -0.225444 + }, + { + "surface": "関", + "readging": "せき", + "pos": "名詞", + "pn": -0.225455 + }, + { + "surface": "帯側", + "readging": "おびかわ", + "pos": "名詞", + "pn": -0.225459 + }, + { + "surface": "級数", + "readging": "きゅうすう", + "pos": "名詞", + "pn": -0.225465 + }, + { + "surface": "連名", + "readging": "れんめい", + "pos": "名詞", + "pn": -0.225471 + }, + { + "surface": "情状", + "readging": "じょうじょう", + "pos": "名詞", + "pn": -0.225478 + }, + { + "surface": "儒教", + "readging": "じゅきょう", + "pos": "名詞", + "pn": -0.225511 + }, + { + "surface": "寝台", + "readging": "ねだい", + "pos": "名詞", + "pn": -0.22556 + }, + { + "surface": "時借り", + "readging": "ときがり", + "pos": "名詞", + "pn": -0.225569 + }, + { + "surface": "蔵店", + "readging": "くらみせ", + "pos": "名詞", + "pn": -0.225569 + }, + { + "surface": "モダン", + "readging": "モダン", + "pos": "名詞", + "pn": -0.225571 + }, + { + "surface": "着雪", + "readging": "ちゃくせつ", + "pos": "名詞", + "pn": -0.225584 + }, + { + "surface": "ケント紙", + "readging": "ケントし", + "pos": "名詞", + "pn": -0.225597 + }, + { + "surface": "口凌ぎ", + "readging": "くちしのぎ", + "pos": "名詞", + "pn": -0.2256 + }, + { + "surface": "和漢混淆文", + "readging": "わかんこんこうぶん", + "pos": "名詞", + "pn": -0.225615 + }, + { + "surface": "同定", + "readging": "どうてい", + "pos": "名詞", + "pn": -0.22562 + }, + { + "surface": "地境", + "readging": "じざかい", + "pos": "名詞", + "pn": -0.225623 + }, + { + "surface": "牧畜", + "readging": "ぼくちく", + "pos": "名詞", + "pn": -0.225656 + }, + { + "surface": "ポルノ", + "readging": "ポルノ", + "pos": "名詞", + "pn": -0.225678 + }, + { + "surface": "菜種梅雨", + "readging": "なたねづゆ", + "pos": "名詞", + "pn": -0.225683 + }, + { + "surface": "カツ", + "readging": "カツ", + "pos": "名詞", + "pn": -0.225685 + }, + { + "surface": "自意識", + "readging": "じいしき", + "pos": "名詞", + "pn": -0.225695 + }, + { + "surface": "民芸", + "readging": "みんげい", + "pos": "名詞", + "pn": -0.225705 + }, + { + "surface": "決行", + "readging": "けっこう", + "pos": "名詞", + "pn": -0.225727 + }, + { + "surface": "シャッポ", + "readging": "シャッポ", + "pos": "名詞", + "pn": -0.225727 + }, + { + "surface": "畳み掛ける", + "readging": "たたみかける", + "pos": "動詞", + "pn": -0.225769 + }, + { + "surface": "生存", + "readging": "せいぞん", + "pos": "名詞", + "pn": -0.225785 + }, + { + "surface": "初犯", + "readging": "しょはん", + "pos": "名詞", + "pn": -0.225822 + }, + { + "surface": "輿論", + "readging": "よろん", + "pos": "名詞", + "pn": -0.225826 + }, + { + "surface": "心理学", + "readging": "しんりがく", + "pos": "名詞", + "pn": -0.225837 + }, + { + "surface": "職分", + "readging": "しょくぶん", + "pos": "名詞", + "pn": -0.225838 + }, + { + "surface": "詔書", + "readging": "しょうしょ", + "pos": "名詞", + "pn": -0.225846 + }, + { + "surface": "パーラー", + "readging": "パーラー", + "pos": "名詞", + "pn": -0.225865 + }, + { + "surface": "砲術", + "readging": "ほうじゅつ", + "pos": "名詞", + "pn": -0.225872 + }, + { + "surface": "竹縁", + "readging": "たけえん", + "pos": "名詞", + "pn": -0.225878 + }, + { + "surface": "四重唱", + "readging": "しじゅうしょう", + "pos": "名詞", + "pn": -0.225878 + }, + { + "surface": "御璽", + "readging": "ぎょじ", + "pos": "名詞", + "pn": -0.225887 + }, + { + "surface": "当て嵌める", + "readging": "あてはめる", + "pos": "動詞", + "pn": -0.2259 + }, + { + "surface": "遊休", + "readging": "ゆうきゅう", + "pos": "名詞", + "pn": -0.225901 + }, + { + "surface": "小太刀", + "readging": "こだち", + "pos": "名詞", + "pn": -0.225917 + }, + { + "surface": "講師", + "readging": "こうし", + "pos": "名詞", + "pn": -0.225933 + }, + { + "surface": "素槍", + "readging": "すやり", + "pos": "名詞", + "pn": -0.225936 + }, + { + "surface": "花園", + "readging": "はなぞの", + "pos": "名詞", + "pn": -0.225945 + }, + { + "surface": "陶工", + "readging": "とうこう", + "pos": "名詞", + "pn": -0.22596 + }, + { + "surface": "光点", + "readging": "こうてん", + "pos": "名詞", + "pn": -0.225978 + }, + { + "surface": "話し手", + "readging": "はなして", + "pos": "名詞", + "pn": -0.225985 + }, + { + "surface": "小正月", + "readging": "こしょうがつ", + "pos": "名詞", + "pn": -0.225991 + }, + { + "surface": "胡", + "readging": "こ", + "pos": "名詞", + "pn": -0.226004 + }, + { + "surface": "結成", + "readging": "けっせい", + "pos": "名詞", + "pn": -0.226006 + }, + { + "surface": "抜本", + "readging": "ばっぽん", + "pos": "名詞", + "pn": -0.226007 + }, + { + "surface": "ありつく", + "readging": "ありつく", + "pos": "動詞", + "pn": -0.22602 + }, + { + "surface": "小屋組", + "readging": "こやぐみ", + "pos": "名詞", + "pn": -0.22605 + }, + { + "surface": "入方", + "readging": "いりがた", + "pos": "名詞", + "pn": -0.226051 + }, + { + "surface": "飲潰す", + "readging": "のみつぶす", + "pos": "動詞", + "pn": -0.226051 + }, + { + "surface": "一筋縄", + "readging": "ひとすじ", + "pos": "名詞", + "pn": -0.226058 + }, + { + "surface": "気象台", + "readging": "きしょうだい", + "pos": "名詞", + "pn": -0.226072 + }, + { + "surface": "くるまる", + "readging": "くるまる", + "pos": "動詞", + "pn": -0.226093 + }, + { + "surface": "耳朶", + "readging": "みみたぶ", + "pos": "名詞", + "pn": -0.226114 + }, + { + "surface": "星取表", + "readging": "ほしとりひょう", + "pos": "名詞", + "pn": -0.226114 + }, + { + "surface": "夏山", + "readging": "なつやま", + "pos": "名詞", + "pn": -0.226125 + }, + { + "surface": "張りぼて", + "readging": "はりぼて", + "pos": "名詞", + "pn": -0.22614 + }, + { + "surface": "金融公庫", + "readging": "きんゆうこうこ", + "pos": "名詞", + "pn": -0.226147 + }, + { + "surface": "実働", + "readging": "じつどう", + "pos": "名詞", + "pn": -0.226152 + }, + { + "surface": "遊興", + "readging": "ゆうきょう", + "pos": "名詞", + "pn": -0.22617 + }, + { + "surface": "幕末", + "readging": "ばくまつ", + "pos": "名詞", + "pn": -0.226175 + }, + { + "surface": "血尿", + "readging": "けつにょう", + "pos": "名詞", + "pn": -0.226198 + }, + { + "surface": "染め型", + "readging": "そめがた", + "pos": "名詞", + "pn": -0.2262 + }, + { + "surface": "意匠登録", + "readging": "いしょうとうろく", + "pos": "名詞", + "pn": -0.226222 + }, + { + "surface": "がらんどう", + "readging": "がらんどう", + "pos": "名詞", + "pn": -0.226224 + }, + { + "surface": "対戦", + "readging": "たいせん", + "pos": "名詞", + "pn": -0.226227 + }, + { + "surface": "船団", + "readging": "せんだん", + "pos": "名詞", + "pn": -0.226242 + }, + { + "surface": "等価", + "readging": "とうか", + "pos": "名詞", + "pn": -0.226269 + }, + { + "surface": "六趣", + "readging": "ろくしゅ", + "pos": "名詞", + "pn": -0.226269 + }, + { + "surface": "堅人", + "readging": "かたじん", + "pos": "名詞", + "pn": -0.226272 + }, + { + "surface": "和名", + "readging": "わみょう", + "pos": "名詞", + "pn": -0.226286 + }, + { + "surface": "夜なべ", + "readging": "よなべ", + "pos": "名詞", + "pn": -0.226288 + }, + { + "surface": "大量生産", + "readging": "たいりょうせいさん", + "pos": "名詞", + "pn": -0.226296 + }, + { + "surface": "村塾", + "readging": "そんじゅく", + "pos": "名詞", + "pn": -0.226305 + }, + { + "surface": "根掛", + "readging": "ねがけ", + "pos": "名詞", + "pn": -0.226306 + }, + { + "surface": "協定", + "readging": "きょうてい", + "pos": "名詞", + "pn": -0.226316 + }, + { + "surface": "鼻血", + "readging": "はなぢ", + "pos": "名詞", + "pn": -0.226319 + }, + { + "surface": "食い切る", + "readging": "くいきる", + "pos": "動詞", + "pn": -0.226327 + }, + { + "surface": "ぱちくり", + "readging": "ぱちくり", + "pos": "副詞", + "pn": -0.226379 + }, + { + "surface": "一驚", + "readging": "いっきょう", + "pos": "名詞", + "pn": -0.226379 + }, + { + "surface": "分脈", + "readging": "ぶんみゃく", + "pos": "名詞", + "pn": -0.226386 + }, + { + "surface": "循環論法", + "readging": "じゅんかんろんぽう", + "pos": "名詞", + "pn": -0.226405 + }, + { + "surface": "回航", + "readging": "かいこう", + "pos": "名詞", + "pn": -0.226414 + }, + { + "surface": "惰性", + "readging": "だせい", + "pos": "名詞", + "pn": -0.22642 + }, + { + "surface": "すっぽかす", + "readging": "すっぽかす", + "pos": "動詞", + "pn": -0.226438 + }, + { + "surface": "スチュワーデス", + "readging": "スチュワーデス", + "pos": "名詞", + "pn": -0.226463 + }, + { + "surface": "時系列", + "readging": "じけいれつ", + "pos": "名詞", + "pn": -0.226473 + }, + { + "surface": "従来", + "readging": "じゅうらい", + "pos": "名詞", + "pn": -0.226478 + }, + { + "surface": "金本位", + "readging": "きんほんい", + "pos": "名詞", + "pn": -0.226489 + }, + { + "surface": "活火山", + "readging": "かっかざん", + "pos": "名詞", + "pn": -0.226492 + }, + { + "surface": "現時点", + "readging": "げんじてん", + "pos": "名詞", + "pn": -0.226513 + }, + { + "surface": "耽溺", + "readging": "たんでき", + "pos": "名詞", + "pn": -0.226519 + }, + { + "surface": "常磐", + "readging": "ときわ", + "pos": "名詞", + "pn": -0.226557 + }, + { + "surface": "行過ぎる", + "readging": "ゆきすぎる", + "pos": "動詞", + "pn": -0.226569 + }, + { + "surface": "作柄", + "readging": "さくがら", + "pos": "名詞", + "pn": -0.226596 + }, + { + "surface": "お浚い", + "readging": "おさらい", + "pos": "名詞", + "pn": -0.226603 + }, + { + "surface": "船齢", + "readging": "せんれい", + "pos": "名詞", + "pn": -0.226608 + }, + { + "surface": "新仏", + "readging": "あらぼとけ", + "pos": "名詞", + "pn": -0.226612 + }, + { + "surface": "三千世界", + "readging": "さんぜんせかい", + "pos": "名詞", + "pn": -0.226638 + }, + { + "surface": "教派", + "readging": "きょうは", + "pos": "名詞", + "pn": -0.226655 + }, + { + "surface": "初物食い", + "readging": "はつものぐい", + "pos": "名詞", + "pn": -0.226656 + }, + { + "surface": "一枚岩", + "readging": "いちまいいわ", + "pos": "名詞", + "pn": -0.226661 + }, + { + "surface": "思い合せる", + "readging": "おもいあわせる", + "pos": "動詞", + "pn": -0.226675 + }, + { + "surface": "咳唾", + "readging": "がいだ", + "pos": "名詞", + "pn": -0.226713 + }, + { + "surface": "間接税", + "readging": "かんせつぜい", + "pos": "名詞", + "pn": -0.226727 + }, + { + "surface": "満場", + "readging": "まんじょう", + "pos": "名詞", + "pn": -0.226728 + }, + { + "surface": "女優", + "readging": "じょゆう", + "pos": "名詞", + "pn": -0.226739 + }, + { + "surface": "ドリアン", + "readging": "ドリアン", + "pos": "名詞", + "pn": -0.226768 + }, + { + "surface": "背理法", + "readging": "はいりほう", + "pos": "名詞", + "pn": -0.226777 + }, + { + "surface": "不可能", + "readging": "ふかのう", + "pos": "名詞", + "pn": -0.226781 + }, + { + "surface": "近付ける", + "readging": "ちかづける", + "pos": "動詞", + "pn": -0.226787 + }, + { + "surface": "全速力", + "readging": "ぜんそくりょく", + "pos": "名詞", + "pn": -0.226795 + }, + { + "surface": "両輪", + "readging": "りょうりん", + "pos": "名詞", + "pn": -0.226796 + }, + { + "surface": "切通し", + "readging": "きりどおし", + "pos": "名詞", + "pn": -0.226799 + }, + { + "surface": "裁定", + "readging": "さいてい", + "pos": "名詞", + "pn": -0.226813 + }, + { + "surface": "直輸入", + "readging": "ちょくゆにゅう", + "pos": "名詞", + "pn": -0.226815 + }, + { + "surface": "蚕食", + "readging": "さんしょく", + "pos": "名詞", + "pn": -0.226816 + }, + { + "surface": "事切れる", + "readging": "こときれる", + "pos": "動詞", + "pn": -0.226825 + }, + { + "surface": "乗じる", + "readging": "じょうじる", + "pos": "動詞", + "pn": -0.226841 + }, + { + "surface": "濃染", + "readging": "こぞめ", + "pos": "名詞", + "pn": -0.226858 + }, + { + "surface": "鯔", + "readging": "いな", + "pos": "名詞", + "pn": -0.22688 + }, + { + "surface": "暗躍", + "readging": "あんやく", + "pos": "名詞", + "pn": -0.226881 + }, + { + "surface": "教理", + "readging": "きょうり", + "pos": "名詞", + "pn": -0.22689 + }, + { + "surface": "探査", + "readging": "たんさ", + "pos": "名詞", + "pn": -0.226901 + }, + { + "surface": "累増", + "readging": "るいぞう", + "pos": "名詞", + "pn": -0.226912 + }, + { + "surface": "嘱望", + "readging": "しょくぼう", + "pos": "名詞", + "pn": -0.226939 + }, + { + "surface": "旦那芸", + "readging": "だんなげい", + "pos": "名詞", + "pn": -0.226959 + }, + { + "surface": "言言", + "readging": "げんげん", + "pos": "名詞", + "pn": -0.226975 + }, + { + "surface": "最下", + "readging": "さいか", + "pos": "名詞", + "pn": -0.226983 + }, + { + "surface": "物覚え", + "readging": "ものおぼえ", + "pos": "名詞", + "pn": -0.226985 + }, + { + "surface": "片前", + "readging": "かたまえ", + "pos": "名詞", + "pn": -0.226989 + }, + { + "surface": "ハングル", + "readging": "ハングル", + "pos": "名詞", + "pn": -0.22699 + }, + { + "surface": "如夜叉", + "readging": "にょやしゃ", + "pos": "名詞", + "pn": -0.226994 + }, + { + "surface": "空振り", + "readging": "からぶり", + "pos": "名詞", + "pn": -0.227021 + }, + { + "surface": "郵船", + "readging": "ゆうせん", + "pos": "名詞", + "pn": -0.227027 + }, + { + "surface": "差立てる", + "readging": "さしたてる", + "pos": "動詞", + "pn": -0.227029 + }, + { + "surface": "南風", + "readging": "なんぷう", + "pos": "名詞", + "pn": -0.227032 + }, + { + "surface": "差渡し", + "readging": "さしわたし", + "pos": "名詞", + "pn": -0.227047 + }, + { + "surface": "刺殺", + "readging": "しさつ", + "pos": "名詞", + "pn": -0.227055 + }, + { + "surface": "一戦", + "readging": "いっせん", + "pos": "名詞", + "pn": -0.227076 + }, + { + "surface": "家中", + "readging": "かちゅう", + "pos": "名詞", + "pn": -0.227084 + }, + { + "surface": "するりと", + "readging": "するりと", + "pos": "副詞", + "pn": -0.227091 + }, + { + "surface": "一知半解", + "readging": "いっちはんかい", + "pos": "名詞", + "pn": -0.227111 + }, + { + "surface": "電算機", + "readging": "でんさんき", + "pos": "名詞", + "pn": -0.227112 + }, + { + "surface": "旧法", + "readging": "きゅうほう", + "pos": "名詞", + "pn": -0.227122 + }, + { + "surface": "断獄", + "readging": "だんごく", + "pos": "名詞", + "pn": -0.227123 + }, + { + "surface": "姉", + "readging": "あね", + "pos": "名詞", + "pn": -0.227128 + }, + { + "surface": "近視", + "readging": "きんし", + "pos": "名詞", + "pn": -0.227144 + }, + { + "surface": "半双", + "readging": "はんそう", + "pos": "名詞", + "pn": -0.227144 + }, + { + "surface": "軍部", + "readging": "ぐんぶ", + "pos": "名詞", + "pn": -0.227148 + }, + { + "surface": "茶羽織", + "readging": "ちゃばおり", + "pos": "名詞", + "pn": -0.227165 + }, + { + "surface": "惹句", + "readging": "じゃっく", + "pos": "名詞", + "pn": -0.227168 + }, + { + "surface": "ニット", + "readging": "ニット", + "pos": "名詞", + "pn": -0.227177 + }, + { + "surface": "産婦人科", + "readging": "さんふじんか", + "pos": "名詞", + "pn": -0.227182 + }, + { + "surface": "送金", + "readging": "そうきん", + "pos": "名詞", + "pn": -0.227189 + }, + { + "surface": "塗絵", + "readging": "ぬりえ", + "pos": "名詞", + "pn": -0.227214 + }, + { + "surface": "貸費", + "readging": "たいひ", + "pos": "名詞", + "pn": -0.227219 + }, + { + "surface": "どっさり", + "readging": "どっさり", + "pos": "副詞", + "pn": -0.227226 + }, + { + "surface": "耐久", + "readging": "たいきゅう", + "pos": "名詞", + "pn": -0.227229 + }, + { + "surface": "永別", + "readging": "えいべつ", + "pos": "名詞", + "pn": -0.227231 + }, + { + "surface": "知", + "readging": "ち", + "pos": "名詞", + "pn": -0.227233 + }, + { + "surface": "絵心", + "readging": "えごころ", + "pos": "名詞", + "pn": -0.22725 + }, + { + "surface": "ノック", + "readging": "ノックアウト", + "pos": "名詞", + "pn": -0.227252 + }, + { + "surface": "本曇", + "readging": "ほんぐもり", + "pos": "名詞", + "pn": -0.227253 + }, + { + "surface": "掘削", + "readging": "くっさく", + "pos": "名詞", + "pn": -0.227255 + }, + { + "surface": "入滅", + "readging": "にゅうめつ", + "pos": "名詞", + "pn": -0.227259 + }, + { + "surface": "見せ消ち", + "readging": "みせけち", + "pos": "名詞", + "pn": -0.227274 + }, + { + "surface": "夜の目", + "readging": "よのめ", + "pos": "名詞", + "pn": -0.227279 + }, + { + "surface": "蟯虫", + "readging": "ぎょうちゅう", + "pos": "名詞", + "pn": -0.227287 + }, + { + "surface": "島民", + "readging": "とうみん", + "pos": "名詞", + "pn": -0.227297 + }, + { + "surface": "頭陀", + "readging": "ずだ", + "pos": "名詞", + "pn": -0.227297 + }, + { + "surface": "民兵", + "readging": "みんぺい", + "pos": "名詞", + "pn": -0.227313 + }, + { + "surface": "即売", + "readging": "そくばい", + "pos": "名詞", + "pn": -0.227348 + }, + { + "surface": "マス", + "readging": "マスプロダクション", + "pos": "名詞", + "pn": -0.227414 + }, + { + "surface": "ニグロ", + "readging": "ニグロ", + "pos": "名詞", + "pn": -0.227427 + }, + { + "surface": "宵越し", + "readging": "よいごし", + "pos": "名詞", + "pn": -0.227428 + }, + { + "surface": "半島", + "readging": "はんとう", + "pos": "名詞", + "pn": -0.227437 + }, + { + "surface": "戦闘機", + "readging": "せんとうき", + "pos": "名詞", + "pn": -0.227456 + }, + { + "surface": "蒸散", + "readging": "じょうさん", + "pos": "名詞", + "pn": -0.227456 + }, + { + "surface": "均衡", + "readging": "きんこう", + "pos": "名詞", + "pn": -0.22746 + }, + { + "surface": "文楽", + "readging": "ぶんらく", + "pos": "名詞", + "pn": -0.227464 + }, + { + "surface": "累算", + "readging": "るいさん", + "pos": "名詞", + "pn": -0.227467 + }, + { + "surface": "罰杯", + "readging": "ばっぱい", + "pos": "名詞", + "pn": -0.227467 + }, + { + "surface": "盆石", + "readging": "ぼんせき", + "pos": "名詞", + "pn": -0.227505 + }, + { + "surface": "凍害", + "readging": "とうがい", + "pos": "名詞", + "pn": -0.227524 + }, + { + "surface": "笑納", + "readging": "しょうのう", + "pos": "名詞", + "pn": -0.227541 + }, + { + "surface": "棒術", + "readging": "ぼうじゅつ", + "pos": "名詞", + "pn": -0.227552 + }, + { + "surface": "原音", + "readging": "げんおん", + "pos": "名詞", + "pn": -0.227564 + }, + { + "surface": "地元", + "readging": "じもと", + "pos": "名詞", + "pn": -0.227565 + }, + { + "surface": "手ずから", + "readging": "てずから", + "pos": "副詞", + "pn": -0.227583 + }, + { + "surface": "焚書坑儒", + "readging": "ふんしょこうじゅ", + "pos": "名詞", + "pn": -0.227584 + }, + { + "surface": "一得", + "readging": "いっとく", + "pos": "名詞", + "pn": -0.227595 + }, + { + "surface": "湾岸", + "readging": "わんがん", + "pos": "名詞", + "pn": -0.227616 + }, + { + "surface": "両隣", + "readging": "りょうどなり", + "pos": "名詞", + "pn": -0.227621 + }, + { + "surface": "空気抜き", + "readging": "くうきぬき", + "pos": "名詞", + "pn": -0.227623 + }, + { + "surface": "深奥", + "readging": "しんおう", + "pos": "名詞", + "pn": -0.227635 + }, + { + "surface": "乗員", + "readging": "じょういん", + "pos": "名詞", + "pn": -0.227638 + }, + { + "surface": "岩木", + "readging": "いわき", + "pos": "名詞", + "pn": -0.227643 + }, + { + "surface": "遺書", + "readging": "いしょ", + "pos": "名詞", + "pn": -0.227649 + }, + { + "surface": "来駕", + "readging": "らいが", + "pos": "名詞", + "pn": -0.227655 + }, + { + "surface": "トレード", + "readging": "トレードオフ", + "pos": "名詞", + "pn": -0.227662 + }, + { + "surface": "サラダ菜", + "readging": "サラダな", + "pos": "名詞", + "pn": -0.227693 + }, + { + "surface": "補色", + "readging": "ほしょく", + "pos": "名詞", + "pn": -0.227724 + }, + { + "surface": "能弁", + "readging": "のうべん", + "pos": "名詞", + "pn": -0.227727 + }, + { + "surface": "噺家", + "readging": "はなしか", + "pos": "名詞", + "pn": -0.227732 + }, + { + "surface": "王家", + "readging": "おうけ", + "pos": "名詞", + "pn": -0.227738 + }, + { + "surface": "支庁", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.227747 + }, + { + "surface": "俗書", + "readging": "ぞくしょ", + "pos": "名詞", + "pn": -0.227752 + }, + { + "surface": "会員", + "readging": "かいいん", + "pos": "名詞", + "pn": -0.22777 + }, + { + "surface": "別種", + "readging": "べっしゅ", + "pos": "名詞", + "pn": -0.227813 + }, + { + "surface": "変装", + "readging": "へんそう", + "pos": "名詞", + "pn": -0.227817 + }, + { + "surface": "受験", + "readging": "じゅけん", + "pos": "名詞", + "pn": -0.227831 + }, + { + "surface": "木刀", + "readging": "ぼくとう", + "pos": "名詞", + "pn": -0.227848 + }, + { + "surface": "クッキー", + "readging": "クッキー", + "pos": "名詞", + "pn": -0.227855 + }, + { + "surface": "人造繊維", + "readging": "じんぞうせんい", + "pos": "名詞", + "pn": -0.227858 + }, + { + "surface": "ドライブ", + "readging": "ドライブイン", + "pos": "名詞", + "pn": -0.227879 + }, + { + "surface": "ブロマイド", + "readging": "ブロマイド", + "pos": "名詞", + "pn": -0.227883 + }, + { + "surface": "較差", + "readging": "こうさ", + "pos": "名詞", + "pn": -0.227886 + }, + { + "surface": "暑中", + "readging": "しょちゅう", + "pos": "名詞", + "pn": -0.22789 + }, + { + "surface": "唐綾", + "readging": "からあや", + "pos": "名詞", + "pn": -0.2279 + }, + { + "surface": "帯紙", + "readging": "おびがみ", + "pos": "名詞", + "pn": -0.227903 + }, + { + "surface": "泣笑い", + "readging": "なきわらい", + "pos": "名詞", + "pn": -0.227906 + }, + { + "surface": "純度", + "readging": "じゅんど", + "pos": "名詞", + "pn": -0.227909 + }, + { + "surface": "ロードショー", + "readging": "ロードショー", + "pos": "名詞", + "pn": -0.22792 + }, + { + "surface": "皆兵", + "readging": "かいへい", + "pos": "名詞", + "pn": -0.227937 + }, + { + "surface": "大殿", + "readging": "おおとの", + "pos": "名詞", + "pn": -0.227947 + }, + { + "surface": "済ませる", + "readging": "すませる", + "pos": "動詞", + "pn": -0.227949 + }, + { + "surface": "ディスインフレーション", + "readging": "ディスインフレーション", + "pos": "名詞", + "pn": -0.227951 + }, + { + "surface": "奉加", + "readging": "ほうが", + "pos": "名詞", + "pn": -0.22796 + }, + { + "surface": "グレーン", + "readging": "グレーン", + "pos": "名詞", + "pn": -0.227976 + }, + { + "surface": "ライフ", + "readging": "ライフ", + "pos": "名詞", + "pn": -0.227977 + }, + { + "surface": "同宿", + "readging": "どうしゅく", + "pos": "名詞", + "pn": -0.227977 + }, + { + "surface": "未知数", + "readging": "みちすう", + "pos": "名詞", + "pn": -0.22798 + }, + { + "surface": "出先機関", + "readging": "でさききかん", + "pos": "名詞", + "pn": -0.227982 + }, + { + "surface": "モデル", + "readging": "モデルケース", + "pos": "名詞", + "pn": -0.227986 + }, + { + "surface": "大夫", + "readging": "だいぶ", + "pos": "名詞", + "pn": -0.227987 + }, + { + "surface": "希元素", + "readging": "きげんそ", + "pos": "名詞", + "pn": -0.227987 + }, + { + "surface": "属僚", + "readging": "ぞくりょう", + "pos": "名詞", + "pn": -0.227989 + }, + { + "surface": "寸足らず", + "readging": "すんたらず", + "pos": "名詞", + "pn": -0.227992 + }, + { + "surface": "重商主義", + "readging": "じゅうしょうしゅぎ", + "pos": "名詞", + "pn": -0.228005 + }, + { + "surface": "大夫", + "readging": "たいふ", + "pos": "名詞", + "pn": -0.228022 + }, + { + "surface": "休", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.228025 + }, + { + "surface": "デカ", + "readging": "デカ", + "pos": "名詞", + "pn": -0.228053 + }, + { + "surface": "月琴", + "readging": "げっきん", + "pos": "名詞", + "pn": -0.228064 + }, + { + "surface": "剛腹", + "readging": "ごうふく", + "pos": "名詞", + "pn": -0.22807 + }, + { + "surface": "間色", + "readging": "かんしょく", + "pos": "名詞", + "pn": -0.228084 + }, + { + "surface": "式目", + "readging": "しきもく", + "pos": "名詞", + "pn": -0.228085 + }, + { + "surface": "ゆめ", + "readging": "ゆめ", + "pos": "副詞", + "pn": -0.228085 + }, + { + "surface": "解放", + "readging": "かいほう", + "pos": "名詞", + "pn": -0.2281 + }, + { + "surface": "感性", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.228107 + }, + { + "surface": "未曾有", + "readging": "みぞう", + "pos": "名詞", + "pn": -0.228133 + }, + { + "surface": "降雹", + "readging": "こうひょう", + "pos": "名詞", + "pn": -0.228136 + }, + { + "surface": "遠祖", + "readging": "えんそ", + "pos": "名詞", + "pn": -0.228154 + }, + { + "surface": "師弟", + "readging": "してい", + "pos": "名詞", + "pn": -0.228166 + }, + { + "surface": "念珠", + "readging": "ねんず", + "pos": "名詞", + "pn": -0.228183 + }, + { + "surface": "曰く付き", + "readging": "いわくつき", + "pos": "名詞", + "pn": -0.228241 + }, + { + "surface": "奥様", + "readging": "おくさま", + "pos": "名詞", + "pn": -0.228271 + }, + { + "surface": "機銃", + "readging": "きじゅう", + "pos": "名詞", + "pn": -0.228273 + }, + { + "surface": "脱脂", + "readging": "だっし", + "pos": "名詞", + "pn": -0.228274 + }, + { + "surface": "実に", + "readging": "げに", + "pos": "副詞", + "pn": -0.228301 + }, + { + "surface": "浮足立つ", + "readging": "うきあしだつ", + "pos": "動詞", + "pn": -0.228302 + }, + { + "surface": "申入れる", + "readging": "もうしいれる", + "pos": "動詞", + "pn": -0.228304 + }, + { + "surface": "観兵", + "readging": "かんぺい", + "pos": "名詞", + "pn": -0.228332 + }, + { + "surface": "職人気質", + "readging": "しょくにんかたぎ", + "pos": "名詞", + "pn": -0.228345 + }, + { + "surface": "白砂", + "readging": "はくしゃ", + "pos": "名詞", + "pn": -0.228355 + }, + { + "surface": "客座敷", + "readging": "きゃくざしき", + "pos": "名詞", + "pn": -0.228385 + }, + { + "surface": "焦点距離", + "readging": "しょうてんきょり", + "pos": "名詞", + "pn": -0.228404 + }, + { + "surface": "白馬", + "readging": "しろうま", + "pos": "名詞", + "pn": -0.228405 + }, + { + "surface": "軟水", + "readging": "なんすい", + "pos": "名詞", + "pn": -0.228412 + }, + { + "surface": "西人", + "readging": "せいじん", + "pos": "名詞", + "pn": -0.228447 + }, + { + "surface": "猛然", + "readging": "もうぜん", + "pos": "副詞", + "pn": -0.228467 + }, + { + "surface": "分ち書き", + "readging": "わかちがき", + "pos": "名詞", + "pn": -0.228468 + }, + { + "surface": "場代", + "readging": "ばだい", + "pos": "名詞", + "pn": -0.228472 + }, + { + "surface": "フットボール", + "readging": "フットボール", + "pos": "名詞", + "pn": -0.228482 + }, + { + "surface": "切狂言", + "readging": "きりきょうげん", + "pos": "名詞", + "pn": -0.228508 + }, + { + "surface": "避妊", + "readging": "ひにん", + "pos": "名詞", + "pn": -0.228509 + }, + { + "surface": "座元", + "readging": "ざもと", + "pos": "名詞", + "pn": -0.228515 + }, + { + "surface": "フォーク ソング", + "readging": "フォーク ソング", + "pos": "名詞", + "pn": -0.228527 + }, + { + "surface": "紺屋", + "readging": "こうや", + "pos": "名詞", + "pn": -0.228531 + }, + { + "surface": "造り酒屋", + "readging": "つくりざかや", + "pos": "名詞", + "pn": -0.228552 + }, + { + "surface": "子弟", + "readging": "してい", + "pos": "名詞", + "pn": -0.228579 + }, + { + "surface": "割普請", + "readging": "わりぶしん", + "pos": "名詞", + "pn": -0.228592 + }, + { + "surface": "上表", + "readging": "じょうひょう", + "pos": "名詞", + "pn": -0.228596 + }, + { + "surface": "そこそこ", + "readging": "そこそこ", + "pos": "名詞", + "pn": -0.228604 + }, + { + "surface": "施術", + "readging": "しじゅつ", + "pos": "名詞", + "pn": -0.22864 + }, + { + "surface": "万端", + "readging": "ばんたん", + "pos": "名詞", + "pn": -0.228662 + }, + { + "surface": "貨客船", + "readging": "かきゃくせん", + "pos": "名詞", + "pn": -0.22868 + }, + { + "surface": "旅籠屋", + "readging": "はたごや", + "pos": "名詞", + "pn": -0.228694 + }, + { + "surface": "成", + "readging": "せい", + "pos": "名詞", + "pn": -0.228702 + }, + { + "surface": "猟銃", + "readging": "りょうじゅう", + "pos": "名詞", + "pn": -0.228704 + }, + { + "surface": "入道雲", + "readging": "にゅうどうぐも", + "pos": "名詞", + "pn": -0.228717 + }, + { + "surface": "サイレント", + "readging": "サイレント", + "pos": "名詞", + "pn": -0.228723 + }, + { + "surface": "こじん", + "readging": "こじんプレー", + "pos": "名詞", + "pn": -0.228735 + }, + { + "surface": "押目", + "readging": "おしめ", + "pos": "名詞", + "pn": -0.228735 + }, + { + "surface": "買叩く", + "readging": "かいたたく", + "pos": "動詞", + "pn": -0.228748 + }, + { + "surface": "財", + "readging": "ざい", + "pos": "名詞", + "pn": -0.228752 + }, + { + "surface": "防音", + "readging": "ぼうおん", + "pos": "名詞", + "pn": -0.228783 + }, + { + "surface": "フローリング", + "readging": "フローリング", + "pos": "名詞", + "pn": -0.228788 + }, + { + "surface": "判例", + "readging": "はんれい", + "pos": "名詞", + "pn": -0.228792 + }, + { + "surface": "飼育", + "readging": "しいく", + "pos": "名詞", + "pn": -0.228797 + }, + { + "surface": "上場", + "readging": "じょうじょう", + "pos": "名詞", + "pn": -0.228804 + }, + { + "surface": "馳参ずる", + "readging": "はせさんずる", + "pos": "動詞", + "pn": -0.228805 + }, + { + "surface": "名古屋帯", + "readging": "なごやおび", + "pos": "名詞", + "pn": -0.22882 + }, + { + "surface": "伏在", + "readging": "ふくざい", + "pos": "名詞", + "pn": -0.22885 + }, + { + "surface": "花札", + "readging": "はなふだ", + "pos": "名詞", + "pn": -0.228864 + }, + { + "surface": "校庭", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.228867 + }, + { + "surface": "成員", + "readging": "せいいん", + "pos": "名詞", + "pn": -0.228875 + }, + { + "surface": "検車", + "readging": "けんしゃ", + "pos": "名詞", + "pn": -0.228894 + }, + { + "surface": "立上る", + "readging": "たちのぼる", + "pos": "動詞", + "pn": -0.228898 + }, + { + "surface": "金石学", + "readging": "きんせきがく", + "pos": "名詞", + "pn": -0.228936 + }, + { + "surface": "洋算", + "readging": "ようざん", + "pos": "名詞", + "pn": -0.228959 + }, + { + "surface": "章節", + "readging": "しょうせつ", + "pos": "名詞", + "pn": -0.228986 + }, + { + "surface": "病室", + "readging": "びょうしつ", + "pos": "名詞", + "pn": -0.229002 + }, + { + "surface": "レビュー", + "readging": "レビュー", + "pos": "名詞", + "pn": -0.229003 + }, + { + "surface": "別電", + "readging": "べつでん", + "pos": "名詞", + "pn": -0.229023 + }, + { + "surface": "コール サイン", + "readging": "コール サイン", + "pos": "名詞", + "pn": -0.229023 + }, + { + "surface": "混紡", + "readging": "こんぼう", + "pos": "名詞", + "pn": -0.229046 + }, + { + "surface": "手洗鉢", + "readging": "てあらい", + "pos": "名詞", + "pn": -0.22905 + }, + { + "surface": "航空母艦", + "readging": "こうくうぼかん", + "pos": "名詞", + "pn": -0.229058 + }, + { + "surface": "エポック", + "readging": "エポック", + "pos": "名詞", + "pn": -0.229072 + }, + { + "surface": "温故", + "readging": "おんこ", + "pos": "名詞", + "pn": -0.229073 + }, + { + "surface": "肋材", + "readging": "ろくざい", + "pos": "名詞", + "pn": -0.229074 + }, + { + "surface": "無辺", + "readging": "むへん", + "pos": "名詞", + "pn": -0.229077 + }, + { + "surface": "精霊棚", + "readging": "しょうりょうだな", + "pos": "名詞", + "pn": -0.229095 + }, + { + "surface": "公用人", + "readging": "こうようにん", + "pos": "名詞", + "pn": -0.229097 + }, + { + "surface": "要するに", + "readging": "ようするに", + "pos": "副詞", + "pn": -0.229123 + }, + { + "surface": "粢", + "readging": "しとぎ", + "pos": "名詞", + "pn": -0.229135 + }, + { + "surface": "法曹", + "readging": "ほうそう", + "pos": "名詞", + "pn": -0.229147 + }, + { + "surface": "浮動", + "readging": "ふどう", + "pos": "名詞", + "pn": -0.229149 + }, + { + "surface": "管内", + "readging": "かんない", + "pos": "名詞", + "pn": -0.22918 + }, + { + "surface": "吹飛ばす", + "readging": "ふきとばす", + "pos": "動詞", + "pn": -0.229192 + }, + { + "surface": "輪投げ", + "readging": "わなげ", + "pos": "名詞", + "pn": -0.229204 + }, + { + "surface": "小歌", + "readging": "こうた", + "pos": "名詞", + "pn": -0.229211 + }, + { + "surface": "名残狂言", + "readging": "なごりきょうげん", + "pos": "名詞", + "pn": -0.229254 + }, + { + "surface": "道中記", + "readging": "どうちゅうき", + "pos": "名詞", + "pn": -0.229254 + }, + { + "surface": "従量税", + "readging": "じゅうりょうぜい", + "pos": "名詞", + "pn": -0.229254 + }, + { + "surface": "脈脈", + "readging": "みゃくみゃく", + "pos": "名詞", + "pn": -0.22926 + }, + { + "surface": "異本", + "readging": "いほん", + "pos": "名詞", + "pn": -0.22927 + }, + { + "surface": "飼葉", + "readging": "かいば", + "pos": "名詞", + "pn": -0.229285 + }, + { + "surface": "捧", + "readging": "ほう", + "pos": "名詞", + "pn": -0.229293 + }, + { + "surface": "いちい", + "readging": "いちい", + "pos": "名詞", + "pn": -0.229313 + }, + { + "surface": "木星", + "readging": "もくせい", + "pos": "名詞", + "pn": -0.229315 + }, + { + "surface": "産額", + "readging": "さんがく", + "pos": "名詞", + "pn": -0.229324 + }, + { + "surface": "板書", + "readging": "ばんしょ", + "pos": "名詞", + "pn": -0.22933 + }, + { + "surface": "二等兵", + "readging": "にとうへい", + "pos": "名詞", + "pn": -0.229333 + }, + { + "surface": "通算", + "readging": "つうさん", + "pos": "名詞", + "pn": -0.229352 + }, + { + "surface": "酒樽", + "readging": "さかだる", + "pos": "名詞", + "pn": -0.229367 + }, + { + "surface": "末座", + "readging": "まつざ", + "pos": "名詞", + "pn": -0.229399 + }, + { + "surface": "下げ渡す", + "readging": "さげわたす", + "pos": "動詞", + "pn": -0.229411 + }, + { + "surface": "試験官", + "readging": "しけんかん", + "pos": "名詞", + "pn": -0.229412 + }, + { + "surface": "四季咲き", + "readging": "しきざき", + "pos": "名詞", + "pn": -0.229417 + }, + { + "surface": "女犯", + "readging": "にょぼん", + "pos": "名詞", + "pn": -0.229455 + }, + { + "surface": "納采", + "readging": "のうさい", + "pos": "名詞", + "pn": -0.229474 + }, + { + "surface": "銘柄", + "readging": "めいがら", + "pos": "名詞", + "pn": -0.229492 + }, + { + "surface": "胴亀", + "readging": "どうがめ", + "pos": "名詞", + "pn": -0.229494 + }, + { + "surface": "短剣", + "readging": "たんけん", + "pos": "名詞", + "pn": -0.229536 + }, + { + "surface": "棒立ち", + "readging": "ぼうだち", + "pos": "名詞", + "pn": -0.229543 + }, + { + "surface": "本身", + "readging": "ほんみ", + "pos": "名詞", + "pn": -0.229552 + }, + { + "surface": "ストロンチウム", + "readging": "ストロンチウム", + "pos": "名詞", + "pn": -0.229558 + }, + { + "surface": "本省", + "readging": "ほんしょう", + "pos": "名詞", + "pn": -0.229574 + }, + { + "surface": "民主主義", + "readging": "みんしゅしゅぎ", + "pos": "名詞", + "pn": -0.229599 + }, + { + "surface": "国勢", + "readging": "こくせい", + "pos": "名詞", + "pn": -0.229599 + }, + { + "surface": "でずっぱり", + "readging": "でずっぱり", + "pos": "名詞", + "pn": -0.229608 + }, + { + "surface": "北回帰線", + "readging": "きたかいきせん", + "pos": "名詞", + "pn": -0.229621 + }, + { + "surface": "買手", + "readging": "かいて", + "pos": "名詞", + "pn": -0.229622 + }, + { + "surface": "モヒ", + "readging": "モヒ", + "pos": "名詞", + "pn": -0.229626 + }, + { + "surface": "持って回る", + "readging": "もってまわる", + "pos": "動詞", + "pn": -0.229639 + }, + { + "surface": "血の雨", + "readging": "ちのあめ", + "pos": "名詞", + "pn": -0.229639 + }, + { + "surface": "掃き掃除", + "readging": "はきそうじ", + "pos": "名詞", + "pn": -0.229648 + }, + { + "surface": "どうにか", + "readging": "どうにかこうにか", + "pos": "副詞", + "pn": -0.229655 + }, + { + "surface": "防人", + "readging": "さきもり", + "pos": "名詞", + "pn": -0.229656 + }, + { + "surface": "笑い話", + "readging": "わらいばなし", + "pos": "名詞", + "pn": -0.229678 + }, + { + "surface": "唐獅子", + "readging": "からじし", + "pos": "名詞", + "pn": -0.229684 + }, + { + "surface": "船渠", + "readging": "せんきょ", + "pos": "名詞", + "pn": -0.229685 + }, + { + "surface": "有用", + "readging": "ゆうよう", + "pos": "名詞", + "pn": -0.229686 + }, + { + "surface": "早熟", + "readging": "そうじゅく", + "pos": "名詞", + "pn": -0.22971 + }, + { + "surface": "ダッグアウト", + "readging": "ダッグアウト", + "pos": "名詞", + "pn": -0.229715 + }, + { + "surface": "夏場所", + "readging": "なつばしょ", + "pos": "名詞", + "pn": -0.229719 + }, + { + "surface": "公子", + "readging": "こうし", + "pos": "名詞", + "pn": -0.229723 + }, + { + "surface": "歯音", + "readging": "しおん", + "pos": "名詞", + "pn": -0.229724 + }, + { + "surface": "ボーイ", + "readging": "ボーイスカウト", + "pos": "名詞", + "pn": -0.229725 + }, + { + "surface": "画帳", + "readging": "がちょう", + "pos": "名詞", + "pn": -0.229727 + }, + { + "surface": "本線", + "readging": "ほんせん", + "pos": "名詞", + "pn": -0.229733 + }, + { + "surface": "頭書", + "readging": "とうしょ", + "pos": "名詞", + "pn": -0.229745 + }, + { + "surface": "叙情詩", + "readging": "じょじょうし", + "pos": "名詞", + "pn": -0.229753 + }, + { + "surface": "野外劇", + "readging": "やがいげき", + "pos": "名詞", + "pn": -0.229755 + }, + { + "surface": "笹折", + "readging": "ささおり", + "pos": "名詞", + "pn": -0.229766 + }, + { + "surface": "単線", + "readging": "たんせん", + "pos": "名詞", + "pn": -0.229772 + }, + { + "surface": "茶寮", + "readging": "さりょう", + "pos": "名詞", + "pn": -0.229797 + }, + { + "surface": "乙甲", + "readging": "めりかり", + "pos": "名詞", + "pn": -0.2298 + }, + { + "surface": "雑粉", + "readging": "ざっぷん", + "pos": "名詞", + "pn": -0.22981 + }, + { + "surface": "守", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.229819 + }, + { + "surface": "貸倒れ", + "readging": "かしだおれ", + "pos": "名詞", + "pn": -0.229831 + }, + { + "surface": "誘発", + "readging": "ゆうはつ", + "pos": "名詞", + "pn": -0.229843 + }, + { + "surface": "家令", + "readging": "かれい", + "pos": "名詞", + "pn": -0.229872 + }, + { + "surface": "葵祭", + "readging": "あおいまつり", + "pos": "名詞", + "pn": -0.229874 + }, + { + "surface": "敷居越し", + "readging": "しきい", + "pos": "名詞", + "pn": -0.229878 + }, + { + "surface": "市価", + "readging": "しか", + "pos": "名詞", + "pn": -0.229882 + }, + { + "surface": "暈", + "readging": "かさ", + "pos": "名詞", + "pn": -0.229883 + }, + { + "surface": "侵略", + "readging": "しんりゃく", + "pos": "名詞", + "pn": -0.229887 + }, + { + "surface": "明後", + "readging": "みょうご", + "pos": "名詞", + "pn": -0.229918 + }, + { + "surface": "定食", + "readging": "ていしょく", + "pos": "名詞", + "pn": -0.229923 + }, + { + "surface": "縫針", + "readging": "ぬいばり", + "pos": "名詞", + "pn": -0.229942 + }, + { + "surface": "兼帯", + "readging": "けんたい", + "pos": "名詞", + "pn": -0.229944 + }, + { + "surface": "リポイド", + "readging": "リポイド", + "pos": "名詞", + "pn": -0.229955 + }, + { + "surface": "建蔽率", + "readging": "けんぺいりつ", + "pos": "名詞", + "pn": -0.229972 + }, + { + "surface": "力車", + "readging": "りきしゃ", + "pos": "名詞", + "pn": -0.229982 + }, + { + "surface": "酸茎", + "readging": "すぐき", + "pos": "名詞", + "pn": -0.229985 + }, + { + "surface": "旧家", + "readging": "きゅうか", + "pos": "名詞", + "pn": -0.229997 + }, + { + "surface": "早帰り", + "readging": "はやがえり", + "pos": "名詞", + "pn": -0.230015 + }, + { + "surface": "検定", + "readging": "けんてい", + "pos": "名詞", + "pn": -0.230026 + }, + { + "surface": "隠花植物", + "readging": "いんかしょくぶつ", + "pos": "名詞", + "pn": -0.230038 + }, + { + "surface": "出演", + "readging": "しゅつえん", + "pos": "名詞", + "pn": -0.230065 + }, + { + "surface": "右府", + "readging": "うふ", + "pos": "名詞", + "pn": -0.230066 + }, + { + "surface": "通りすがり", + "readging": "とおりすがり", + "pos": "名詞", + "pn": -0.230068 + }, + { + "surface": "転石", + "readging": "てんせき", + "pos": "名詞", + "pn": -0.230077 + }, + { + "surface": "焼切る", + "readging": "やききる", + "pos": "動詞", + "pn": -0.230088 + }, + { + "surface": "下僕", + "readging": "げぼく", + "pos": "名詞", + "pn": -0.230106 + }, + { + "surface": "歴任", + "readging": "れきにん", + "pos": "名詞", + "pn": -0.230113 + }, + { + "surface": "GNP", + "readging": "ジーエヌピー", + "pos": "名詞", + "pn": -0.230115 + }, + { + "surface": "四切り", + "readging": "よつぎり", + "pos": "名詞", + "pn": -0.230135 + }, + { + "surface": "キャビネ", + "readging": "キャビネ", + "pos": "名詞", + "pn": -0.230159 + }, + { + "surface": "温石", + "readging": "おんじゃく", + "pos": "名詞", + "pn": -0.230167 + }, + { + "surface": "ぴちっと", + "readging": "ぴちっと", + "pos": "副詞", + "pn": -0.23019 + }, + { + "surface": "姦通", + "readging": "かんつう", + "pos": "名詞", + "pn": -0.230216 + }, + { + "surface": "不随意筋", + "readging": "ふずいいきん", + "pos": "名詞", + "pn": -0.230232 + }, + { + "surface": "四方拝", + "readging": "しほうはい", + "pos": "名詞", + "pn": -0.23025 + }, + { + "surface": "レポート", + "readging": "レポート", + "pos": "名詞", + "pn": -0.230261 + }, + { + "surface": "助数詞", + "readging": "じょすうし", + "pos": "名詞", + "pn": -0.23027 + }, + { + "surface": "七堂", + "readging": "しちどう", + "pos": "名詞", + "pn": -0.230278 + }, + { + "surface": "散急ぐ", + "readging": "ちりいそぐ", + "pos": "動詞", + "pn": -0.230284 + }, + { + "surface": "戸口", + "readging": "ここう", + "pos": "名詞", + "pn": -0.230287 + }, + { + "surface": "大勢", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.230288 + }, + { + "surface": "御伽草子", + "readging": "おとぎぞうし", + "pos": "名詞", + "pn": -0.230294 + }, + { + "surface": "内庭", + "readging": "うちにわ", + "pos": "名詞", + "pn": -0.230294 + }, + { + "surface": "牛皮", + "readging": "ぎゅうひ", + "pos": "名詞", + "pn": -0.230345 + }, + { + "surface": "重臣", + "readging": "じゅうしん", + "pos": "名詞", + "pn": -0.230348 + }, + { + "surface": "でんき時計", + "readging": "でんきどけい", + "pos": "名詞", + "pn": -0.23035 + }, + { + "surface": "兼題", + "readging": "けんだい", + "pos": "名詞", + "pn": -0.230379 + }, + { + "surface": "三周忌", + "readging": "さんしゅうき", + "pos": "名詞", + "pn": -0.230388 + }, + { + "surface": "古伝", + "readging": "こでん", + "pos": "名詞", + "pn": -0.230421 + }, + { + "surface": "ガイド", + "readging": "ガイド", + "pos": "名詞", + "pn": -0.230431 + }, + { + "surface": "旧派", + "readging": "きゅうは", + "pos": "名詞", + "pn": -0.230484 + }, + { + "surface": "防戦", + "readging": "ぼうせん", + "pos": "名詞", + "pn": -0.230486 + }, + { + "surface": "無沙汰", + "readging": "ぶさた", + "pos": "名詞", + "pn": -0.2305 + }, + { + "surface": "媚態", + "readging": "びたい", + "pos": "名詞", + "pn": -0.230506 + }, + { + "surface": "リーダー", + "readging": "リーダー", + "pos": "名詞", + "pn": -0.230508 + }, + { + "surface": "伸子張り", + "readging": "しんしばり", + "pos": "名詞", + "pn": -0.230518 + }, + { + "surface": "ゲバルト", + "readging": "ゲバルト", + "pos": "名詞", + "pn": -0.230536 + }, + { + "surface": "下される", + "readging": "くだされる", + "pos": "動詞", + "pn": -0.230572 + }, + { + "surface": "組曲", + "readging": "くみきょく", + "pos": "名詞", + "pn": -0.230572 + }, + { + "surface": "天主教", + "readging": "てんしゅきょう", + "pos": "名詞", + "pn": -0.230584 + }, + { + "surface": "直直", + "readging": "じきじき", + "pos": "名詞", + "pn": -0.230618 + }, + { + "surface": "ベンチレーター", + "readging": "ベンチレーター", + "pos": "名詞", + "pn": -0.230622 + }, + { + "surface": "下り坂", + "readging": "くだりざか", + "pos": "名詞", + "pn": -0.230628 + }, + { + "surface": "南船北馬", + "readging": "なんせんほくば", + "pos": "名詞", + "pn": -0.230646 + }, + { + "surface": "変圧", + "readging": "へんあつ", + "pos": "名詞", + "pn": -0.230649 + }, + { + "surface": "序幕", + "readging": "じょまく", + "pos": "名詞", + "pn": -0.230649 + }, + { + "surface": "一殺多生", + "readging": "いっせつたしょう", + "pos": "名詞", + "pn": -0.230657 + }, + { + "surface": "氏名", + "readging": "しめい", + "pos": "名詞", + "pn": -0.230668 + }, + { + "surface": "キット", + "readging": "キット", + "pos": "名詞", + "pn": -0.230683 + }, + { + "surface": "仏殿", + "readging": "ぶつでん", + "pos": "名詞", + "pn": -0.23069 + }, + { + "surface": "物理化学", + "readging": "ぶつりかがく", + "pos": "名詞", + "pn": -0.230713 + }, + { + "surface": "褒章", + "readging": "ほうしょう", + "pos": "名詞", + "pn": -0.230728 + }, + { + "surface": "不在投票", + "readging": "ふざいとうひょう", + "pos": "名詞", + "pn": -0.230742 + }, + { + "surface": "風倒木", + "readging": "ふうとうぼく", + "pos": "名詞", + "pn": -0.230763 + }, + { + "surface": "露天", + "readging": "ろてん", + "pos": "名詞", + "pn": -0.23077 + }, + { + "surface": "予告", + "readging": "よこく", + "pos": "名詞", + "pn": -0.230772 + }, + { + "surface": "末寺", + "readging": "まつじ", + "pos": "名詞", + "pn": -0.230776 + }, + { + "surface": "大部屋", + "readging": "おおべや", + "pos": "名詞", + "pn": -0.230809 + }, + { + "surface": "運勢", + "readging": "うんせい", + "pos": "名詞", + "pn": -0.230818 + }, + { + "surface": "炭肺", + "readging": "たんはい", + "pos": "名詞", + "pn": -0.230823 + }, + { + "surface": "踏倒す", + "readging": "ふみたおす", + "pos": "動詞", + "pn": -0.230827 + }, + { + "surface": "公民", + "readging": "こうみん", + "pos": "名詞", + "pn": -0.230834 + }, + { + "surface": "算用", + "readging": "さんよう", + "pos": "名詞", + "pn": -0.23085 + }, + { + "surface": "急造", + "readging": "きゅうぞう", + "pos": "名詞", + "pn": -0.230854 + }, + { + "surface": "定足数", + "readging": "ていそくすう", + "pos": "名詞", + "pn": -0.230866 + }, + { + "surface": "戦闘帽", + "readging": "せんとうぼう", + "pos": "名詞", + "pn": -0.230866 + }, + { + "surface": "終車", + "readging": "しゅうしゃ", + "pos": "名詞", + "pn": -0.230888 + }, + { + "surface": "約手", + "readging": "やくて", + "pos": "名詞", + "pn": -0.230889 + }, + { + "surface": "第五列", + "readging": "だいごれつ", + "pos": "名詞", + "pn": -0.230897 + }, + { + "surface": "由由しい", + "readging": "ゆゆしい", + "pos": "形容詞", + "pn": -0.230949 + }, + { + "surface": "写真版", + "readging": "しゃしんばん", + "pos": "名詞", + "pn": -0.230978 + }, + { + "surface": "秋日", + "readging": "しゅうじつ", + "pos": "名詞", + "pn": -0.231016 + }, + { + "surface": "汁物", + "readging": "しるもの", + "pos": "名詞", + "pn": -0.23102 + }, + { + "surface": "御無音", + "readging": "ごぶいん", + "pos": "名詞", + "pn": -0.231023 + }, + { + "surface": "継妻", + "readging": "けいさい", + "pos": "名詞", + "pn": -0.231054 + }, + { + "surface": "アブサン", + "readging": "アブサン", + "pos": "名詞", + "pn": -0.231101 + }, + { + "surface": "油照り", + "readging": "あぶらでり", + "pos": "名詞", + "pn": -0.231103 + }, + { + "surface": "顔色", + "readging": "がんしょく", + "pos": "名詞", + "pn": -0.231103 + }, + { + "surface": "名分", + "readging": "めいぶん", + "pos": "名詞", + "pn": -0.231112 + }, + { + "surface": "日課", + "readging": "にっか", + "pos": "名詞", + "pn": -0.231125 + }, + { + "surface": "件", + "readging": "くだん", + "pos": "名詞", + "pn": -0.23113 + }, + { + "surface": "クリスマス", + "readging": "クリスマスツリー", + "pos": "名詞", + "pn": -0.231152 + }, + { + "surface": "糸偏", + "readging": "いとへん", + "pos": "名詞", + "pn": -0.231189 + }, + { + "surface": "後輩", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.231195 + }, + { + "surface": "刀剣", + "readging": "とうけん", + "pos": "名詞", + "pn": -0.231215 + }, + { + "surface": "給油", + "readging": "きゅうゆ", + "pos": "名詞", + "pn": -0.231227 + }, + { + "surface": "入用", + "readging": "にゅうよう", + "pos": "名詞", + "pn": -0.231246 + }, + { + "surface": "柱時計", + "readging": "はしらどけい", + "pos": "名詞", + "pn": -0.231249 + }, + { + "surface": "歩度", + "readging": "ほど", + "pos": "名詞", + "pn": -0.23125 + }, + { + "surface": "遺文", + "readging": "いぶん", + "pos": "名詞", + "pn": -0.231254 + }, + { + "surface": "仲店", + "readging": "なかみせ", + "pos": "名詞", + "pn": -0.231258 + }, + { + "surface": "市中銀行", + "readging": "しちゅうぎんこう", + "pos": "名詞", + "pn": -0.23126 + }, + { + "surface": "商人", + "readging": "あきんど", + "pos": "名詞", + "pn": -0.231266 + }, + { + "surface": "高騰", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.231279 + }, + { + "surface": "銀幕", + "readging": "ぎんまく", + "pos": "名詞", + "pn": -0.231286 + }, + { + "surface": "トルソー", + "readging": "トルソー", + "pos": "名詞", + "pn": -0.23129 + }, + { + "surface": "百箇日", + "readging": "ひゃっかにち", + "pos": "名詞", + "pn": -0.231329 + }, + { + "surface": "遠山里", + "readging": "とおやまざと", + "pos": "名詞", + "pn": -0.231331 + }, + { + "surface": "仏敵", + "readging": "ぶってき", + "pos": "名詞", + "pn": -0.231342 + }, + { + "surface": "併科", + "readging": "へいか", + "pos": "名詞", + "pn": -0.231347 + }, + { + "surface": "法橋", + "readging": "ほっきょう", + "pos": "名詞", + "pn": -0.231349 + }, + { + "surface": "家筋", + "readging": "いえすじ", + "pos": "名詞", + "pn": -0.231355 + }, + { + "surface": "窮措大", + "readging": "きゅうそだい", + "pos": "名詞", + "pn": -0.231356 + }, + { + "surface": "奥書", + "readging": "おくがき", + "pos": "名詞", + "pn": -0.231365 + }, + { + "surface": "パルチザン", + "readging": "パルチザン", + "pos": "名詞", + "pn": -0.231385 + }, + { + "surface": "台形", + "readging": "だいけい", + "pos": "名詞", + "pn": -0.2314 + }, + { + "surface": "ナレーション", + "readging": "ナレーション", + "pos": "名詞", + "pn": -0.231408 + }, + { + "surface": "奉祀", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.23141 + }, + { + "surface": "朋輩", + "readging": "ほうばい", + "pos": "名詞", + "pn": -0.231432 + }, + { + "surface": "夏季", + "readging": "かき", + "pos": "名詞", + "pn": -0.231452 + }, + { + "surface": "市", + "readging": "いち", + "pos": "名詞", + "pn": -0.231471 + }, + { + "surface": "絽織", + "readging": "ろおり", + "pos": "名詞", + "pn": -0.231474 + }, + { + "surface": "横手", + "readging": "よこて", + "pos": "名詞", + "pn": -0.231475 + }, + { + "surface": "増長天", + "readging": "ぞうちょうてん", + "pos": "名詞", + "pn": -0.231491 + }, + { + "surface": "奴僕", + "readging": "ぬぼく", + "pos": "名詞", + "pn": -0.231494 + }, + { + "surface": "特命全権大使", + "readging": "とくめいぜんけんたいし", + "pos": "名詞", + "pn": -0.231502 + }, + { + "surface": "官公庁", + "readging": "かんこうちょう", + "pos": "名詞", + "pn": -0.231505 + }, + { + "surface": "下山", + "readging": "げさん", + "pos": "名詞", + "pn": -0.231521 + }, + { + "surface": "正座", + "readging": "せいざ", + "pos": "名詞", + "pn": -0.231534 + }, + { + "surface": "荘重", + "readging": "そうちょう", + "pos": "名詞", + "pn": -0.231538 + }, + { + "surface": "天文", + "readging": "てんもん", + "pos": "名詞", + "pn": -0.231569 + }, + { + "surface": "鶯", + "readging": "おう", + "pos": "名詞", + "pn": -0.231585 + }, + { + "surface": "でんき抵抗", + "readging": "でんきていこう", + "pos": "名詞", + "pn": -0.231602 + }, + { + "surface": "枯木", + "readging": "かれき", + "pos": "名詞", + "pn": -0.231602 + }, + { + "surface": "被写体", + "readging": "ひしゃたい", + "pos": "名詞", + "pn": -0.231604 + }, + { + "surface": "青い鳥", + "readging": "あおいとり", + "pos": "名詞", + "pn": -0.231605 + }, + { + "surface": "マス", + "readging": "マス", + "pos": "名詞", + "pn": -0.231607 + }, + { + "surface": "阿片窟", + "readging": "あへんくつ", + "pos": "名詞", + "pn": -0.231635 + }, + { + "surface": "春風", + "readging": "しゅんぷう", + "pos": "名詞", + "pn": -0.231645 + }, + { + "surface": "宅配", + "readging": "たくはい", + "pos": "名詞", + "pn": -0.231648 + }, + { + "surface": "横穴", + "readging": "よこあな", + "pos": "名詞", + "pn": -0.231664 + }, + { + "surface": "希釈", + "readging": "きしゃく", + "pos": "名詞", + "pn": -0.231666 + }, + { + "surface": "機動", + "readging": "きどう", + "pos": "名詞", + "pn": -0.231672 + }, + { + "surface": "被弾", + "readging": "ひだん", + "pos": "名詞", + "pn": -0.231676 + }, + { + "surface": "如月", + "readging": "きさらぎ", + "pos": "名詞", + "pn": -0.231679 + }, + { + "surface": "参殿", + "readging": "さんでん", + "pos": "名詞", + "pn": -0.231692 + }, + { + "surface": "今週", + "readging": "こんしゅう", + "pos": "名詞", + "pn": -0.231729 + }, + { + "surface": "鬱蒼", + "readging": "うっそう", + "pos": "名詞", + "pn": -0.231735 + }, + { + "surface": "解禁", + "readging": "かいきん", + "pos": "名詞", + "pn": -0.231744 + }, + { + "surface": "存立", + "readging": "そんりつ", + "pos": "名詞", + "pn": -0.231757 + }, + { + "surface": "銀輪", + "readging": "ぎんりん", + "pos": "名詞", + "pn": -0.23176 + }, + { + "surface": "茶請け", + "readging": "ちゃうけ", + "pos": "名詞", + "pn": -0.23177 + }, + { + "surface": "近代化", + "readging": "きんだいか", + "pos": "名詞", + "pn": -0.23178 + }, + { + "surface": "内金", + "readging": "うちきん", + "pos": "名詞", + "pn": -0.231782 + }, + { + "surface": "地価", + "readging": "ちか", + "pos": "名詞", + "pn": -0.231783 + }, + { + "surface": "宣旨", + "readging": "せんじ", + "pos": "名詞", + "pn": -0.231789 + }, + { + "surface": "赦免", + "readging": "しゃめん", + "pos": "名詞", + "pn": -0.231791 + }, + { + "surface": "働かす", + "readging": "はたらかす", + "pos": "動詞", + "pn": -0.23182 + }, + { + "surface": "小康", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.231826 + }, + { + "surface": "雨勝ち", + "readging": "あめがち", + "pos": "名詞", + "pn": -0.23183 + }, + { + "surface": "キセノン", + "readging": "キセノン", + "pos": "名詞", + "pn": -0.231838 + }, + { + "surface": "大白", + "readging": "たいはく", + "pos": "名詞", + "pn": -0.231848 + }, + { + "surface": "裏返す", + "readging": "うらがえす", + "pos": "動詞", + "pn": -0.231864 + }, + { + "surface": "障害競走", + "readging": "しょうがいきょうそう", + "pos": "名詞", + "pn": -0.231887 + }, + { + "surface": "着剣", + "readging": "ちゃっけん", + "pos": "名詞", + "pn": -0.231897 + }, + { + "surface": "荷足", + "readging": "にたり", + "pos": "名詞", + "pn": -0.231936 + }, + { + "surface": "大本", + "readging": "おおもと", + "pos": "名詞", + "pn": -0.231939 + }, + { + "surface": "開城", + "readging": "かいじょう", + "pos": "名詞", + "pn": -0.231958 + }, + { + "surface": "電離", + "readging": "でんり", + "pos": "名詞", + "pn": -0.231999 + }, + { + "surface": "経済封鎖", + "readging": "けいざいふうさ", + "pos": "名詞", + "pn": -0.232049 + }, + { + "surface": "大洋", + "readging": "たいよう", + "pos": "名詞", + "pn": -0.232062 + }, + { + "surface": "特別会計", + "readging": "とくべつかいけい", + "pos": "名詞", + "pn": -0.232073 + }, + { + "surface": "調教", + "readging": "ちょうきょう", + "pos": "名詞", + "pn": -0.232088 + }, + { + "surface": "不如意", + "readging": "ふにょい", + "pos": "名詞", + "pn": -0.232092 + }, + { + "surface": "グリコーゲン", + "readging": "グリコーゲン", + "pos": "名詞", + "pn": -0.232105 + }, + { + "surface": "軍勢", + "readging": "ぐんぜい", + "pos": "名詞", + "pn": -0.232106 + }, + { + "surface": "連山", + "readging": "れんざん", + "pos": "名詞", + "pn": -0.232107 + }, + { + "surface": "ハイツ", + "readging": "ハイツ", + "pos": "名詞", + "pn": -0.232112 + }, + { + "surface": "捕方", + "readging": "とりかた", + "pos": "名詞", + "pn": -0.23212 + }, + { + "surface": "初更", + "readging": "しょこう", + "pos": "名詞", + "pn": -0.232121 + }, + { + "surface": "風狂", + "readging": "ふうきょう", + "pos": "名詞", + "pn": -0.232128 + }, + { + "surface": "氏", + "readging": "うじ", + "pos": "名詞", + "pn": -0.232145 + }, + { + "surface": "峰", + "readging": "ほう", + "pos": "名詞", + "pn": -0.232151 + }, + { + "surface": "大役", + "readging": "たいやく", + "pos": "名詞", + "pn": -0.232155 + }, + { + "surface": "第一", + "readging": "だいいち", + "pos": "名詞", + "pn": -0.232165 + }, + { + "surface": "ギャル", + "readging": "ギャル", + "pos": "名詞", + "pn": -0.232165 + }, + { + "surface": "印税", + "readging": "いんぜい", + "pos": "名詞", + "pn": -0.232176 + }, + { + "surface": "向後", + "readging": "きょうこう", + "pos": "副詞", + "pn": -0.232198 + }, + { + "surface": "文殊", + "readging": "もんじゅ", + "pos": "名詞", + "pn": -0.232208 + }, + { + "surface": "五倫", + "readging": "ごりん", + "pos": "名詞", + "pn": -0.232232 + }, + { + "surface": "来車", + "readging": "らいしゃ", + "pos": "名詞", + "pn": -0.232238 + }, + { + "surface": "船具", + "readging": "ふなぐ", + "pos": "名詞", + "pn": -0.23224 + }, + { + "surface": "編纂", + "readging": "へんさん", + "pos": "名詞", + "pn": -0.232262 + }, + { + "surface": "支点", + "readging": "してん", + "pos": "名詞", + "pn": -0.232263 + }, + { + "surface": "地歌", + "readging": "じうた", + "pos": "名詞", + "pn": -0.232276 + }, + { + "surface": "アレンジ", + "readging": "アレンジ", + "pos": "名詞", + "pn": -0.232276 + }, + { + "surface": "酔客", + "readging": "すいかく", + "pos": "名詞", + "pn": -0.232304 + }, + { + "surface": "尚侍", + "readging": "しょうじ", + "pos": "名詞", + "pn": -0.232309 + }, + { + "surface": "宿業", + "readging": "しゅくごう", + "pos": "名詞", + "pn": -0.232314 + }, + { + "surface": "国防色", + "readging": "こくぼうしょく", + "pos": "名詞", + "pn": -0.23232 + }, + { + "surface": "釣瓶打", + "readging": "つるべうち", + "pos": "名詞", + "pn": -0.232333 + }, + { + "surface": "ナショナリズム", + "readging": "ナショナリズム", + "pos": "名詞", + "pn": -0.232348 + }, + { + "surface": "結願", + "readging": "けちがん", + "pos": "名詞", + "pn": -0.23235 + }, + { + "surface": "棟木", + "readging": "むなぎ", + "pos": "名詞", + "pn": -0.232358 + }, + { + "surface": "益金", + "readging": "えききん", + "pos": "名詞", + "pn": -0.23236 + }, + { + "surface": "磁力", + "readging": "じりょく", + "pos": "名詞", + "pn": -0.232367 + }, + { + "surface": "米食", + "readging": "べいしょく", + "pos": "名詞", + "pn": -0.232372 + }, + { + "surface": "春分点", + "readging": "しゅんぶんてん", + "pos": "名詞", + "pn": -0.232375 + }, + { + "surface": "外注", + "readging": "がいちゅう", + "pos": "名詞", + "pn": -0.232375 + }, + { + "surface": "離籍", + "readging": "りせき", + "pos": "名詞", + "pn": -0.23239 + }, + { + "surface": "吹降ろす", + "readging": "ふきおろす", + "pos": "動詞", + "pn": -0.232436 + }, + { + "surface": "軍扇", + "readging": "ぐんせん", + "pos": "名詞", + "pn": -0.232455 + }, + { + "surface": "引時", + "readging": "ひきどき", + "pos": "名詞", + "pn": -0.232479 + }, + { + "surface": "長虫", + "readging": "ながむし", + "pos": "名詞", + "pn": -0.23251 + }, + { + "surface": "提要", + "readging": "ていよう", + "pos": "名詞", + "pn": -0.232521 + }, + { + "surface": "入朝", + "readging": "にゅうちょう", + "pos": "名詞", + "pn": -0.23253 + }, + { + "surface": "道士", + "readging": "どうし", + "pos": "名詞", + "pn": -0.232532 + }, + { + "surface": "鼠色", + "readging": "ねずみいろ", + "pos": "名詞", + "pn": -0.232538 + }, + { + "surface": "マスター", + "readging": "マスターキー", + "pos": "名詞", + "pn": -0.232569 + }, + { + "surface": "大圏", + "readging": "たいけん", + "pos": "名詞", + "pn": -0.232571 + }, + { + "surface": "突然変異", + "readging": "とつぜんへんい", + "pos": "名詞", + "pn": -0.232587 + }, + { + "surface": "通信教育", + "readging": "つうしんきょういく", + "pos": "名詞", + "pn": -0.232628 + }, + { + "surface": "燎原", + "readging": "りょうげん", + "pos": "名詞", + "pn": -0.232655 + }, + { + "surface": "防犯", + "readging": "ぼうはん", + "pos": "名詞", + "pn": -0.23267 + }, + { + "surface": "重職", + "readging": "じゅうしょく", + "pos": "名詞", + "pn": -0.232676 + }, + { + "surface": "白黒", + "readging": "しろくろ", + "pos": "名詞", + "pn": -0.232684 + }, + { + "surface": "余禄", + "readging": "よろく", + "pos": "名詞", + "pn": -0.23269 + }, + { + "surface": "推輓", + "readging": "すいばん", + "pos": "名詞", + "pn": -0.232705 + }, + { + "surface": "煙硝", + "readging": "えんしょう", + "pos": "名詞", + "pn": -0.232712 + }, + { + "surface": "象徴主義", + "readging": "しょうちょうしゅぎ", + "pos": "名詞", + "pn": -0.232718 + }, + { + "surface": "主面", + "readging": "しゅうづら", + "pos": "名詞", + "pn": -0.232734 + }, + { + "surface": "従僕", + "readging": "じゅうぼく", + "pos": "名詞", + "pn": -0.232737 + }, + { + "surface": "帰還", + "readging": "きかん", + "pos": "名詞", + "pn": -0.232756 + }, + { + "surface": "役畜", + "readging": "えきちく", + "pos": "名詞", + "pn": -0.232768 + }, + { + "surface": "大篆", + "readging": "だいてん", + "pos": "名詞", + "pn": -0.232778 + }, + { + "surface": "マンガン", + "readging": "マンガン", + "pos": "名詞", + "pn": -0.232786 + }, + { + "surface": "一七日", + "readging": "ひとなのか", + "pos": "名詞", + "pn": -0.232818 + }, + { + "surface": "累年", + "readging": "るいねん", + "pos": "名詞", + "pn": -0.232826 + }, + { + "surface": "記憶装置", + "readging": "きおくそうち", + "pos": "名詞", + "pn": -0.232869 + }, + { + "surface": "ゲレンデ", + "readging": "ゲレンデ", + "pos": "名詞", + "pn": -0.232873 + }, + { + "surface": "曲師", + "readging": "きょくし", + "pos": "名詞", + "pn": -0.232878 + }, + { + "surface": "葉茶屋", + "readging": "はぢゃや", + "pos": "名詞", + "pn": -0.23288 + }, + { + "surface": "電位差", + "readging": "でんいさ", + "pos": "名詞", + "pn": -0.23289 + }, + { + "surface": "コント", + "readging": "コント", + "pos": "名詞", + "pn": -0.232918 + }, + { + "surface": "隷従", + "readging": "れいじゅう", + "pos": "名詞", + "pn": -0.232932 + }, + { + "surface": "投じる", + "readging": "とうじる", + "pos": "動詞", + "pn": -0.232943 + }, + { + "surface": "インタビュー", + "readging": "インタビュー", + "pos": "名詞", + "pn": -0.232955 + }, + { + "surface": "とっても", + "readging": "とっても", + "pos": "副詞", + "pn": -0.232971 + }, + { + "surface": "モンタージュ", + "readging": "モンタージュ", + "pos": "名詞", + "pn": -0.233025 + }, + { + "surface": "減車", + "readging": "げんしゃ", + "pos": "名詞", + "pn": -0.233026 + }, + { + "surface": "ミンク", + "readging": "ミンク", + "pos": "名詞", + "pn": -0.233037 + }, + { + "surface": "銀杏形", + "readging": "いちょうがた", + "pos": "名詞", + "pn": -0.233041 + }, + { + "surface": "名籍", + "readging": "めいせき", + "pos": "名詞", + "pn": -0.233047 + }, + { + "surface": "玉門", + "readging": "ぎょくもん", + "pos": "名詞", + "pn": -0.233081 + }, + { + "surface": "読売", + "readging": "よみうり", + "pos": "名詞", + "pn": -0.233088 + }, + { + "surface": "形木", + "readging": "かたぎ", + "pos": "名詞", + "pn": -0.233109 + }, + { + "surface": "艶物", + "readging": "つやもの", + "pos": "名詞", + "pn": -0.233115 + }, + { + "surface": "ウイークデー", + "readging": "ウイークデー", + "pos": "名詞", + "pn": -0.233122 + }, + { + "surface": "高高", + "readging": "たかだか", + "pos": "副詞", + "pn": -0.233169 + }, + { + "surface": "風土記", + "readging": "ふどき", + "pos": "名詞", + "pn": -0.2332 + }, + { + "surface": "タレント", + "readging": "タレント", + "pos": "名詞", + "pn": -0.233205 + }, + { + "surface": "押送", + "readging": "おうそう", + "pos": "名詞", + "pn": -0.233239 + }, + { + "surface": "枝毛", + "readging": "えだげ", + "pos": "名詞", + "pn": -0.233243 + }, + { + "surface": "盛土", + "readging": "もりつち", + "pos": "名詞", + "pn": -0.233254 + }, + { + "surface": "四六文", + "readging": "しろくぶん", + "pos": "名詞", + "pn": -0.233255 + }, + { + "surface": "母国", + "readging": "ぼこく", + "pos": "名詞", + "pn": -0.233266 + }, + { + "surface": "送検", + "readging": "そうけん", + "pos": "名詞", + "pn": -0.233266 + }, + { + "surface": "休職", + "readging": "きゅうしょく", + "pos": "名詞", + "pn": -0.233268 + }, + { + "surface": "俗受け", + "readging": "ぞくうけ", + "pos": "名詞", + "pn": -0.233281 + }, + { + "surface": "訳", + "readging": "わけ", + "pos": "名詞", + "pn": -0.233285 + }, + { + "surface": "ロータリー", + "readging": "ロータリークラブ", + "pos": "名詞", + "pn": -0.233287 + }, + { + "surface": "連ね", + "readging": "つらね", + "pos": "名詞", + "pn": -0.233305 + }, + { + "surface": "ミリタリズム", + "readging": "ミリタリズム", + "pos": "名詞", + "pn": -0.233307 + }, + { + "surface": "スクーリング", + "readging": "スクーリング", + "pos": "名詞", + "pn": -0.233309 + }, + { + "surface": "副審", + "readging": "ふくしん", + "pos": "名詞", + "pn": -0.233319 + }, + { + "surface": "塾舎", + "readging": "じゅくしゃ", + "pos": "名詞", + "pn": -0.233329 + }, + { + "surface": "総浚い", + "readging": "そうざらい", + "pos": "名詞", + "pn": -0.233331 + }, + { + "surface": "舎利別", + "readging": "しゃりべつ", + "pos": "名詞", + "pn": -0.233343 + }, + { + "surface": "人士", + "readging": "じんし", + "pos": "名詞", + "pn": -0.233345 + }, + { + "surface": "土産", + "readging": "どさん", + "pos": "名詞", + "pn": -0.233357 + }, + { + "surface": "お座なり", + "readging": "おざなり", + "pos": "名詞", + "pn": -0.233368 + }, + { + "surface": "党閥", + "readging": "とうばつ", + "pos": "名詞", + "pn": -0.23337 + }, + { + "surface": "馬蹄形", + "readging": "ばていけい", + "pos": "名詞", + "pn": -0.233373 + }, + { + "surface": "原子価", + "readging": "げんしか", + "pos": "名詞", + "pn": -0.233389 + }, + { + "surface": "逸話", + "readging": "いつわ", + "pos": "名詞", + "pn": -0.233401 + }, + { + "surface": "締り雪", + "readging": "しまりゆき", + "pos": "名詞", + "pn": -0.233404 + }, + { + "surface": "修験道", + "readging": "しゅげんどう", + "pos": "名詞", + "pn": -0.233434 + }, + { + "surface": "揺籃", + "readging": "ようらん", + "pos": "名詞", + "pn": -0.233439 + }, + { + "surface": "白無垢", + "readging": "しろむく", + "pos": "名詞", + "pn": -0.233442 + }, + { + "surface": "変造", + "readging": "へんぞう", + "pos": "名詞", + "pn": -0.233448 + }, + { + "surface": "斎院", + "readging": "さいいん", + "pos": "名詞", + "pn": -0.233456 + }, + { + "surface": "分極化", + "readging": "ぶんきょくか", + "pos": "名詞", + "pn": -0.233499 + }, + { + "surface": "塾頭", + "readging": "じゅくとう", + "pos": "名詞", + "pn": -0.233505 + }, + { + "surface": "仮令", + "readging": "たとい", + "pos": "副詞", + "pn": -0.233506 + }, + { + "surface": "生産財", + "readging": "せいさんざい", + "pos": "名詞", + "pn": -0.233516 + }, + { + "surface": "親潮", + "readging": "おやしお", + "pos": "名詞", + "pn": -0.233517 + }, + { + "surface": "地鳥", + "readging": "じどり", + "pos": "名詞", + "pn": -0.233527 + }, + { + "surface": "尾花", + "readging": "おばな", + "pos": "名詞", + "pn": -0.233548 + }, + { + "surface": "気晴し", + "readging": "きばらし", + "pos": "名詞", + "pn": -0.233548 + }, + { + "surface": "受持", + "readging": "うけもち", + "pos": "名詞", + "pn": -0.233549 + }, + { + "surface": "実母", + "readging": "じつぼ", + "pos": "名詞", + "pn": -0.233549 + }, + { + "surface": "戸前", + "readging": "とまえ", + "pos": "名詞", + "pn": -0.23356 + }, + { + "surface": "どか貧", + "readging": "どかひん", + "pos": "名詞", + "pn": -0.233565 + }, + { + "surface": "オペラ", + "readging": "オペラグラス", + "pos": "名詞", + "pn": -0.2336 + }, + { + "surface": "歌御会始", + "readging": "うたごかいはじめ", + "pos": "名詞", + "pn": -0.233601 + }, + { + "surface": "絹針", + "readging": "きぬばり", + "pos": "名詞", + "pn": -0.233621 + }, + { + "surface": "性器", + "readging": "せいき", + "pos": "名詞", + "pn": -0.233645 + }, + { + "surface": "ロマンス", + "readging": "ロマンス", + "pos": "名詞", + "pn": -0.233653 + }, + { + "surface": "兵家", + "readging": "へいか", + "pos": "名詞", + "pn": -0.233654 + }, + { + "surface": "在府", + "readging": "ざいふ", + "pos": "名詞", + "pn": -0.233659 + }, + { + "surface": "下り鮎", + "readging": "くだりあゆ", + "pos": "名詞", + "pn": -0.233659 + }, + { + "surface": "取高", + "readging": "とりだか", + "pos": "名詞", + "pn": -0.233665 + }, + { + "surface": "勧進元", + "readging": "かんじんもと", + "pos": "名詞", + "pn": -0.233666 + }, + { + "surface": "図鑑", + "readging": "ずかん", + "pos": "名詞", + "pn": -0.233673 + }, + { + "surface": "本紙", + "readging": "ほんし", + "pos": "名詞", + "pn": -0.233674 + }, + { + "surface": "横紙破り", + "readging": "よこがみやぶり", + "pos": "名詞", + "pn": -0.233681 + }, + { + "surface": "掃出す", + "readging": "はきだす", + "pos": "動詞", + "pn": -0.233689 + }, + { + "surface": "御形", + "readging": "ごぎょう", + "pos": "名詞", + "pn": -0.233693 + }, + { + "surface": "店賃", + "readging": "たなちん", + "pos": "名詞", + "pn": -0.233698 + }, + { + "surface": "孤島", + "readging": "ことう", + "pos": "名詞", + "pn": -0.233707 + }, + { + "surface": "類字", + "readging": "るいじ", + "pos": "名詞", + "pn": -0.233718 + }, + { + "surface": "仕事師", + "readging": "しごとし", + "pos": "名詞", + "pn": -0.233722 + }, + { + "surface": "留風呂", + "readging": "とめぶろ", + "pos": "名詞", + "pn": -0.233724 + }, + { + "surface": "仏語", + "readging": "ぶつご", + "pos": "名詞", + "pn": -0.23373 + }, + { + "surface": "リスリン", + "readging": "リスリン", + "pos": "名詞", + "pn": -0.233741 + }, + { + "surface": "実社会", + "readging": "じっしゃかい", + "pos": "名詞", + "pn": -0.233742 + }, + { + "surface": "評する", + "readging": "ひょうする", + "pos": "動詞", + "pn": -0.233744 + }, + { + "surface": "発句", + "readging": "ほっく", + "pos": "名詞", + "pn": -0.233751 + }, + { + "surface": "異口同音", + "readging": "いくどうおん", + "pos": "名詞", + "pn": -0.23376 + }, + { + "surface": "ドレッサー", + "readging": "ドレッサー", + "pos": "名詞", + "pn": -0.233763 + }, + { + "surface": "終着", + "readging": "しゅうちゃく", + "pos": "名詞", + "pn": -0.233772 + }, + { + "surface": "唐織", + "readging": "からおり", + "pos": "名詞", + "pn": -0.233814 + }, + { + "surface": "会席", + "readging": "かいせき", + "pos": "名詞", + "pn": -0.233817 + }, + { + "surface": "半休", + "readging": "はんきゅう", + "pos": "名詞", + "pn": -0.233818 + }, + { + "surface": "スピーカー", + "readging": "スピーカー", + "pos": "名詞", + "pn": -0.233819 + }, + { + "surface": "血色", + "readging": "けっしょく", + "pos": "名詞", + "pn": -0.233828 + }, + { + "surface": "ハイヤー", + "readging": "ハイヤー", + "pos": "名詞", + "pn": -0.233873 + }, + { + "surface": "遼遠", + "readging": "りょうえん", + "pos": "名詞", + "pn": -0.233909 + }, + { + "surface": "著作家", + "readging": "ちょさくか", + "pos": "名詞", + "pn": -0.233919 + }, + { + "surface": "消滅", + "readging": "しょうめつ", + "pos": "名詞", + "pn": -0.233923 + }, + { + "surface": "硯箱", + "readging": "すずりばこ", + "pos": "名詞", + "pn": -0.233946 + }, + { + "surface": "題言", + "readging": "だいげん", + "pos": "名詞", + "pn": -0.233955 + }, + { + "surface": "本格", + "readging": "ほんかく", + "pos": "名詞", + "pn": -0.233957 + }, + { + "surface": "創設", + "readging": "そうせつ", + "pos": "名詞", + "pn": -0.233962 + }, + { + "surface": "遊山", + "readging": "ゆさん", + "pos": "名詞", + "pn": -0.233963 + }, + { + "surface": "売れ残り", + "readging": "うれのこり", + "pos": "名詞", + "pn": -0.233969 + }, + { + "surface": "遠山", + "readging": "とおやま", + "pos": "名詞", + "pn": -0.233973 + }, + { + "surface": "クロワッサン", + "readging": "クロワッサン", + "pos": "名詞", + "pn": -0.233978 + }, + { + "surface": "軍書", + "readging": "ぐんしょ", + "pos": "名詞", + "pn": -0.233987 + }, + { + "surface": "一品料理", + "readging": "いっぴんりょうり", + "pos": "名詞", + "pn": -0.233992 + }, + { + "surface": "根回り", + "readging": "ねまわり", + "pos": "名詞", + "pn": -0.233994 + }, + { + "surface": "一の膳", + "readging": "いちのぜん", + "pos": "名詞", + "pn": -0.234 + }, + { + "surface": "残業", + "readging": "ざんぎょう", + "pos": "名詞", + "pn": -0.234001 + }, + { + "surface": "乗逃げ", + "readging": "のりにげ", + "pos": "名詞", + "pn": -0.234002 + }, + { + "surface": "業界", + "readging": "ぎょうかい", + "pos": "名詞", + "pn": -0.234015 + }, + { + "surface": "初音", + "readging": "はつね", + "pos": "名詞", + "pn": -0.234024 + }, + { + "surface": "雷雲", + "readging": "らいうん", + "pos": "名詞", + "pn": -0.234024 + }, + { + "surface": "甚大", + "readging": "じんだい", + "pos": "名詞", + "pn": -0.23403 + }, + { + "surface": "宮廷", + "readging": "きゅうてい", + "pos": "名詞", + "pn": -0.234047 + }, + { + "surface": "定期便", + "readging": "ていきびん", + "pos": "名詞", + "pn": -0.234082 + }, + { + "surface": "未収", + "readging": "みしゅう", + "pos": "名詞", + "pn": -0.234091 + }, + { + "surface": "記憶容量", + "readging": "きおくようりょう", + "pos": "名詞", + "pn": -0.234096 + }, + { + "surface": "田打", + "readging": "たうち", + "pos": "名詞", + "pn": -0.23411 + }, + { + "surface": "又の名", + "readging": "またのな", + "pos": "名詞", + "pn": -0.234131 + }, + { + "surface": "休診", + "readging": "きゅうしん", + "pos": "名詞", + "pn": -0.234148 + }, + { + "surface": "ジャー", + "readging": "ジャー", + "pos": "名詞", + "pn": -0.234159 + }, + { + "surface": "晨鶏", + "readging": "しんけい", + "pos": "名詞", + "pn": -0.234168 + }, + { + "surface": "象眼", + "readging": "ぞうがん", + "pos": "名詞", + "pn": -0.234172 + }, + { + "surface": "ポータブル", + "readging": "ポータブル", + "pos": "名詞", + "pn": -0.234173 + }, + { + "surface": "バズーカ砲", + "readging": "バズーカほう", + "pos": "名詞", + "pn": -0.234182 + }, + { + "surface": "心して", + "readging": "こころして", + "pos": "副詞", + "pn": -0.234193 + }, + { + "surface": "動員", + "readging": "どういん", + "pos": "名詞", + "pn": -0.234197 + }, + { + "surface": "先蹤", + "readging": "せんしょう", + "pos": "名詞", + "pn": -0.234197 + }, + { + "surface": "シェーカー", + "readging": "シェーカー", + "pos": "名詞", + "pn": -0.234207 + }, + { + "surface": "直輸出", + "readging": "ちょくゆしゅつ", + "pos": "名詞", + "pn": -0.234212 + }, + { + "surface": "エレメント", + "readging": "エレメント", + "pos": "名詞", + "pn": -0.23424 + }, + { + "surface": "覆没", + "readging": "ふくぼつ", + "pos": "名詞", + "pn": -0.234241 + }, + { + "surface": "専制", + "readging": "せんせい", + "pos": "名詞", + "pn": -0.234262 + }, + { + "surface": "定休", + "readging": "ていきゅう", + "pos": "名詞", + "pn": -0.234265 + }, + { + "surface": "副官", + "readging": "ふっかん", + "pos": "名詞", + "pn": -0.234267 + }, + { + "surface": "繁簡", + "readging": "はんかん", + "pos": "名詞", + "pn": -0.234287 + }, + { + "surface": "除草", + "readging": "じょそう", + "pos": "名詞", + "pn": -0.234293 + }, + { + "surface": "逍遥", + "readging": "しょうよう", + "pos": "名詞", + "pn": -0.234295 + }, + { + "surface": "二親等", + "readging": "にしんとう", + "pos": "名詞", + "pn": -0.234297 + }, + { + "surface": "畳字", + "readging": "じょうじ", + "pos": "名詞", + "pn": -0.234302 + }, + { + "surface": "考課状", + "readging": "こうかじょう", + "pos": "名詞", + "pn": -0.234305 + }, + { + "surface": "経論", + "readging": "きょうろん", + "pos": "名詞", + "pn": -0.23431 + }, + { + "surface": "JAS", + "readging": "ジャス", + "pos": "名詞", + "pn": -0.23432 + }, + { + "surface": "割線", + "readging": "かっせん", + "pos": "名詞", + "pn": -0.23432 + }, + { + "surface": "使い勝手", + "readging": "つかいがって", + "pos": "名詞", + "pn": -0.23432 + }, + { + "surface": "バー", + "readging": "バー", + "pos": "名詞", + "pn": -0.234327 + }, + { + "surface": "杉綾", + "readging": "すぎあや", + "pos": "名詞", + "pn": -0.234364 + }, + { + "surface": "帰休", + "readging": "ききゅう", + "pos": "名詞", + "pn": -0.234372 + }, + { + "surface": "授受", + "readging": "じゅじゅ", + "pos": "名詞", + "pn": -0.234376 + }, + { + "surface": "ブランク", + "readging": "ブランク", + "pos": "名詞", + "pn": -0.234396 + }, + { + "surface": "所払い", + "readging": "ところばらい", + "pos": "名詞", + "pn": -0.234397 + }, + { + "surface": "高祖父", + "readging": "こうそふ", + "pos": "名詞", + "pn": -0.234397 + }, + { + "surface": "夜汽車", + "readging": "よぎしゃ", + "pos": "名詞", + "pn": -0.234408 + }, + { + "surface": "罷工", + "readging": "ひこう", + "pos": "名詞", + "pn": -0.234418 + }, + { + "surface": "冷蔵", + "readging": "れいぞう", + "pos": "名詞", + "pn": -0.234429 + }, + { + "surface": "露店", + "readging": "ろてん", + "pos": "名詞", + "pn": -0.234452 + }, + { + "surface": "剪定", + "readging": "せんてい", + "pos": "名詞", + "pn": -0.234464 + }, + { + "surface": "親株", + "readging": "おやかぶ", + "pos": "名詞", + "pn": -0.234483 + }, + { + "surface": "袋戸棚", + "readging": "ふくろとだな", + "pos": "名詞", + "pn": -0.234488 + }, + { + "surface": "すだく", + "readging": "すだく", + "pos": "動詞", + "pn": -0.234508 + }, + { + "surface": "蔵本", + "readging": "ぞうほん", + "pos": "名詞", + "pn": -0.234532 + }, + { + "surface": "黒毛", + "readging": "くろげ", + "pos": "名詞", + "pn": -0.234534 + }, + { + "surface": "協", + "readging": "きょう", + "pos": "名詞", + "pn": -0.234549 + }, + { + "surface": "論判", + "readging": "ろんぱん", + "pos": "名詞", + "pn": -0.234557 + }, + { + "surface": "船級", + "readging": "せんきゅう", + "pos": "名詞", + "pn": -0.234567 + }, + { + "surface": "演繹", + "readging": "えんえき", + "pos": "名詞", + "pn": -0.234573 + }, + { + "surface": "ぼちぼち", + "readging": "ぼちぼち", + "pos": "副詞", + "pn": -0.234638 + }, + { + "surface": "三三五五", + "readging": "さんさんごご", + "pos": "副詞", + "pn": -0.23464 + }, + { + "surface": "巻軸", + "readging": "かんじく", + "pos": "名詞", + "pn": -0.234643 + }, + { + "surface": "蓄電", + "readging": "ちくでん", + "pos": "名詞", + "pn": -0.234666 + }, + { + "surface": "首座", + "readging": "しゅざ", + "pos": "名詞", + "pn": -0.234676 + }, + { + "surface": "商社", + "readging": "しょうしゃ", + "pos": "名詞", + "pn": -0.234683 + }, + { + "surface": "関頭", + "readging": "かんとう", + "pos": "名詞", + "pn": -0.234688 + }, + { + "surface": "眼鏡橋", + "readging": "めがねばし", + "pos": "名詞", + "pn": -0.234696 + }, + { + "surface": "戯場", + "readging": "ぎじょう", + "pos": "名詞", + "pn": -0.234698 + }, + { + "surface": "並製", + "readging": "なみせい", + "pos": "名詞", + "pn": -0.234789 + }, + { + "surface": "消費税", + "readging": "しょうひぜい", + "pos": "名詞", + "pn": -0.234793 + }, + { + "surface": "テーゼ", + "readging": "テーゼ", + "pos": "名詞", + "pn": -0.23481 + }, + { + "surface": "修養", + "readging": "しゅうよう", + "pos": "名詞", + "pn": -0.234812 + }, + { + "surface": "陣列", + "readging": "じんれつ", + "pos": "名詞", + "pn": -0.23482 + }, + { + "surface": "金談", + "readging": "きんだん", + "pos": "名詞", + "pn": -0.234827 + }, + { + "surface": "堅持", + "readging": "けんじ", + "pos": "名詞", + "pn": -0.234828 + }, + { + "surface": "己", + "readging": "き", + "pos": "名詞", + "pn": -0.23483 + }, + { + "surface": "シリコン", + "readging": "シリコン", + "pos": "名詞", + "pn": -0.234834 + }, + { + "surface": "銀地", + "readging": "ぎんじ", + "pos": "名詞", + "pn": -0.234842 + }, + { + "surface": "踏歌", + "readging": "とうか", + "pos": "名詞", + "pn": -0.234843 + }, + { + "surface": "なんじょう", + "readging": "なんじょう", + "pos": "名詞", + "pn": -0.234847 + }, + { + "surface": "号外", + "readging": "ごうがい", + "pos": "名詞", + "pn": -0.234848 + }, + { + "surface": "プラント", + "readging": "プラント", + "pos": "名詞", + "pn": -0.234888 + }, + { + "surface": "了察", + "readging": "りょうさつ", + "pos": "名詞", + "pn": -0.234891 + }, + { + "surface": "知能検査", + "readging": "ちのうけんさ", + "pos": "名詞", + "pn": -0.234893 + }, + { + "surface": "寒参り", + "readging": "かんまいり", + "pos": "名詞", + "pn": -0.234894 + }, + { + "surface": "全量", + "readging": "ぜんりょう", + "pos": "名詞", + "pn": -0.234921 + }, + { + "surface": "小謡", + "readging": "こうたい", + "pos": "名詞", + "pn": -0.234921 + }, + { + "surface": "時価", + "readging": "じか", + "pos": "名詞", + "pn": -0.23493 + }, + { + "surface": "弄花", + "readging": "ろうか", + "pos": "名詞", + "pn": -0.234935 + }, + { + "surface": "提議", + "readging": "ていぎ", + "pos": "名詞", + "pn": -0.234939 + }, + { + "surface": "戦力", + "readging": "せんりょく", + "pos": "名詞", + "pn": -0.234962 + }, + { + "surface": "相身互い", + "readging": "あいみたがい", + "pos": "名詞", + "pn": -0.234978 + }, + { + "surface": "通商", + "readging": "つうしょう", + "pos": "名詞", + "pn": -0.235007 + }, + { + "surface": "薪炭", + "readging": "しんたん", + "pos": "名詞", + "pn": -0.235008 + }, + { + "surface": "霊界", + "readging": "れいかい", + "pos": "名詞", + "pn": -0.23502 + }, + { + "surface": "内陣", + "readging": "ないじん", + "pos": "名詞", + "pn": -0.235026 + }, + { + "surface": "七言", + "readging": "しちごん", + "pos": "名詞", + "pn": -0.235031 + }, + { + "surface": "実弾", + "readging": "じつだん", + "pos": "名詞", + "pn": -0.235047 + }, + { + "surface": "当局", + "readging": "とうきょく", + "pos": "名詞", + "pn": -0.23505 + }, + { + "surface": "転籍", + "readging": "てんせき", + "pos": "名詞", + "pn": -0.235077 + }, + { + "surface": "故事", + "readging": "こじ", + "pos": "名詞", + "pn": -0.235102 + }, + { + "surface": "東都", + "readging": "とうと", + "pos": "名詞", + "pn": -0.235103 + }, + { + "surface": "女官", + "readging": "じょかん", + "pos": "名詞", + "pn": -0.23512 + }, + { + "surface": "専制政体", + "readging": "せんせいせいたい", + "pos": "名詞", + "pn": -0.235139 + }, + { + "surface": "寝乱れ髪", + "readging": "ねみだれがみ", + "pos": "名詞", + "pn": -0.235142 + }, + { + "surface": "初対面", + "readging": "しょたいめん", + "pos": "名詞", + "pn": -0.235208 + }, + { + "surface": "結露", + "readging": "けつろ", + "pos": "名詞", + "pn": -0.235215 + }, + { + "surface": "ずっしり", + "readging": "ずっしり", + "pos": "副詞", + "pn": -0.235226 + }, + { + "surface": "達", + "readging": "たち", + "pos": "名詞", + "pn": -0.235263 + }, + { + "surface": "礼法", + "readging": "れいほう", + "pos": "名詞", + "pn": -0.235266 + }, + { + "surface": "召集令状", + "readging": "しょうしゅうれいじょう", + "pos": "名詞", + "pn": -0.235266 + }, + { + "surface": "巻取紙", + "readging": "まきとりし", + "pos": "名詞", + "pn": -0.235267 + }, + { + "surface": "敬体", + "readging": "けいたい", + "pos": "名詞", + "pn": -0.235283 + }, + { + "surface": "悔し涙", + "readging": "くやしなみだ", + "pos": "名詞", + "pn": -0.235289 + }, + { + "surface": "カルキ", + "readging": "カルキ", + "pos": "名詞", + "pn": -0.235305 + }, + { + "surface": "工員", + "readging": "こういん", + "pos": "名詞", + "pn": -0.235307 + }, + { + "surface": "考古学", + "readging": "こうこがく", + "pos": "名詞", + "pn": -0.235308 + }, + { + "surface": "ユートピアン", + "readging": "ユートピアン", + "pos": "名詞", + "pn": -0.235312 + }, + { + "surface": "読通す", + "readging": "よみとおす", + "pos": "動詞", + "pn": -0.235323 + }, + { + "surface": "保安", + "readging": "ほあん", + "pos": "名詞", + "pn": -0.235325 + }, + { + "surface": "封土", + "readging": "ほうど", + "pos": "名詞", + "pn": -0.235336 + }, + { + "surface": "補習", + "readging": "ほしゅう", + "pos": "名詞", + "pn": -0.235337 + }, + { + "surface": "メガ", + "readging": "メガ", + "pos": "名詞", + "pn": -0.235346 + }, + { + "surface": "サンチ", + "readging": "サンチ", + "pos": "名詞", + "pn": -0.235351 + }, + { + "surface": "焼場", + "readging": "やきば", + "pos": "名詞", + "pn": -0.235372 + }, + { + "surface": "葦笛", + "readging": "あしぶえ", + "pos": "名詞", + "pn": -0.235374 + }, + { + "surface": "想定", + "readging": "そうてい", + "pos": "名詞", + "pn": -0.235376 + }, + { + "surface": "東経", + "readging": "とうけい", + "pos": "名詞", + "pn": -0.235383 + }, + { + "surface": "アイコン", + "readging": "アイコン", + "pos": "名詞", + "pn": -0.235436 + }, + { + "surface": "シャーマニズム", + "readging": "シャーマニズム", + "pos": "名詞", + "pn": -0.235478 + }, + { + "surface": "累加", + "readging": "るいか", + "pos": "名詞", + "pn": -0.23549 + }, + { + "surface": "道案内", + "readging": "みちあんない", + "pos": "名詞", + "pn": -0.235533 + }, + { + "surface": "食堂", + "readging": "じきどう", + "pos": "名詞", + "pn": -0.235546 + }, + { + "surface": "共同戦線", + "readging": "きょうどうせんせん", + "pos": "名詞", + "pn": -0.235562 + }, + { + "surface": "悪乗り", + "readging": "わるのり", + "pos": "名詞", + "pn": -0.235571 + }, + { + "surface": "立上がる", + "readging": "たちあがる", + "pos": "動詞", + "pn": -0.235585 + }, + { + "surface": "庚", + "readging": "かのえ", + "pos": "名詞", + "pn": -0.235602 + }, + { + "surface": "細作", + "readging": "さいさく", + "pos": "名詞", + "pn": -0.235605 + }, + { + "surface": "初審", + "readging": "しょしん", + "pos": "名詞", + "pn": -0.235612 + }, + { + "surface": "高音", + "readging": "たかね", + "pos": "名詞", + "pn": -0.235642 + }, + { + "surface": "放し飼い", + "readging": "はなしがい", + "pos": "名詞", + "pn": -0.235652 + }, + { + "surface": "大詰", + "readging": "おおづめ", + "pos": "名詞", + "pn": -0.235661 + }, + { + "surface": "大笑い", + "readging": "おおわらい", + "pos": "名詞", + "pn": -0.235664 + }, + { + "surface": "国民性", + "readging": "こくみんせい", + "pos": "名詞", + "pn": -0.235683 + }, + { + "surface": "用布", + "readging": "ようふ", + "pos": "名詞", + "pn": -0.235756 + }, + { + "surface": "ソロ", + "readging": "ソロ", + "pos": "名詞", + "pn": -0.235802 + }, + { + "surface": "同名異人", + "readging": "どうめいいじん", + "pos": "名詞", + "pn": -0.235805 + }, + { + "surface": "追討", + "readging": "ついとう", + "pos": "名詞", + "pn": -0.235836 + }, + { + "surface": "三の丸", + "readging": "さんのまる", + "pos": "名詞", + "pn": -0.235841 + }, + { + "surface": "持掛ける", + "readging": "もちかける", + "pos": "動詞", + "pn": -0.235864 + }, + { + "surface": "舟航", + "readging": "しゅうこう", + "pos": "名詞", + "pn": -0.235866 + }, + { + "surface": "深甚", + "readging": "しんじん", + "pos": "名詞", + "pn": -0.235891 + }, + { + "surface": "天道", + "readging": "てんとう", + "pos": "名詞", + "pn": -0.235892 + }, + { + "surface": "専管", + "readging": "せんかん", + "pos": "名詞", + "pn": -0.235898 + }, + { + "surface": "塔屋", + "readging": "とうや", + "pos": "名詞", + "pn": -0.235905 + }, + { + "surface": "元高", + "readging": "もとだか", + "pos": "名詞", + "pn": -0.235907 + }, + { + "surface": "役場", + "readging": "やくば", + "pos": "名詞", + "pn": -0.235932 + }, + { + "surface": "訳文", + "readging": "やくぶん", + "pos": "名詞", + "pn": -0.235933 + }, + { + "surface": "審査", + "readging": "しんさ", + "pos": "名詞", + "pn": -0.235946 + }, + { + "surface": "老中", + "readging": "ろうじゅう", + "pos": "名詞", + "pn": -0.235958 + }, + { + "surface": "変速", + "readging": "へんそく", + "pos": "名詞", + "pn": -0.235989 + }, + { + "surface": "赤地", + "readging": "あかじ", + "pos": "名詞", + "pn": -0.236001 + }, + { + "surface": "ワンダーフォーゲル", + "readging": "ワンダーフォーゲル", + "pos": "名詞", + "pn": -0.236003 + }, + { + "surface": "野菊", + "readging": "のぎく", + "pos": "名詞", + "pn": -0.23601 + }, + { + "surface": "鳩羽色", + "readging": "はとばいろ", + "pos": "名詞", + "pn": -0.236015 + }, + { + "surface": "機", + "readging": "はた", + "pos": "名詞", + "pn": -0.236023 + }, + { + "surface": "番長", + "readging": "ばんちょう", + "pos": "名詞", + "pn": -0.236048 + }, + { + "surface": "内幕", + "readging": "ないまく", + "pos": "名詞", + "pn": -0.236056 + }, + { + "surface": "見立てる", + "readging": "みたてる", + "pos": "動詞", + "pn": -0.236065 + }, + { + "surface": "極力", + "readging": "きょくりょく", + "pos": "副詞", + "pn": -0.236071 + }, + { + "surface": "釣堀", + "readging": "つりぼり", + "pos": "名詞", + "pn": -0.236082 + }, + { + "surface": "水中花", + "readging": "すいちゅうか", + "pos": "名詞", + "pn": -0.236082 + }, + { + "surface": "イブニング", + "readging": "イブニング", + "pos": "名詞", + "pn": -0.236083 + }, + { + "surface": "欠席裁判", + "readging": "けっせきさいばん", + "pos": "名詞", + "pn": -0.236123 + }, + { + "surface": "生理学", + "readging": "せいりがく", + "pos": "名詞", + "pn": -0.236149 + }, + { + "surface": "試供品", + "readging": "しきょうひん", + "pos": "名詞", + "pn": -0.236211 + }, + { + "surface": "カラット", + "readging": "カラット", + "pos": "名詞", + "pn": -0.236219 + }, + { + "surface": "操作主義", + "readging": "そうさしゅぎ", + "pos": "名詞", + "pn": -0.236219 + }, + { + "surface": "命脈", + "readging": "めいみゃく", + "pos": "名詞", + "pn": -0.236243 + }, + { + "surface": "ルクス", + "readging": "ルクス", + "pos": "名詞", + "pn": -0.236254 + }, + { + "surface": "聞惚れる", + "readging": "ききほれる", + "pos": "動詞", + "pn": -0.236255 + }, + { + "surface": "中潮", + "readging": "なかしお", + "pos": "名詞", + "pn": -0.236273 + }, + { + "surface": "自律", + "readging": "じりつ", + "pos": "名詞", + "pn": -0.236276 + }, + { + "surface": "約分", + "readging": "やくぶん", + "pos": "名詞", + "pn": -0.236285 + }, + { + "surface": "理化学", + "readging": "りかがく", + "pos": "名詞", + "pn": -0.236303 + }, + { + "surface": "ペッサリー", + "readging": "ペッサリー", + "pos": "名詞", + "pn": -0.236304 + }, + { + "surface": "並び大名", + "readging": "ならびだいみょう", + "pos": "名詞", + "pn": -0.236333 + }, + { + "surface": "荷電", + "readging": "かでん", + "pos": "名詞", + "pn": -0.236339 + }, + { + "surface": "釈迦牟尼", + "readging": "しゃかむに", + "pos": "名詞", + "pn": -0.236365 + }, + { + "surface": "注視", + "readging": "ちゅうし", + "pos": "名詞", + "pn": -0.236391 + }, + { + "surface": "外字", + "readging": "がいじ", + "pos": "名詞", + "pn": -0.236414 + }, + { + "surface": "胸倉", + "readging": "むなぐら", + "pos": "名詞", + "pn": -0.236418 + }, + { + "surface": "五郎八茶碗", + "readging": "ごろはちぢゃわん", + "pos": "名詞", + "pn": -0.236428 + }, + { + "surface": "下掛る", + "readging": "しもがかる", + "pos": "動詞", + "pn": -0.236443 + }, + { + "surface": "密輸出", + "readging": "みつゆしゅつ", + "pos": "名詞", + "pn": -0.236451 + }, + { + "surface": "年男", + "readging": "としおとこ", + "pos": "名詞", + "pn": -0.236465 + }, + { + "surface": "神明", + "readging": "しんめい", + "pos": "名詞", + "pn": -0.236468 + }, + { + "surface": "脳死", + "readging": "のうし", + "pos": "名詞", + "pn": -0.236475 + }, + { + "surface": "網すき", + "readging": "あみすき", + "pos": "名詞", + "pn": -0.23648 + }, + { + "surface": "陪席", + "readging": "ばいせき", + "pos": "名詞", + "pn": -0.236484 + }, + { + "surface": "休学", + "readging": "きゅうがく", + "pos": "名詞", + "pn": -0.236485 + }, + { + "surface": "動物質", + "readging": "どうぶつしつ", + "pos": "名詞", + "pn": -0.236498 + }, + { + "surface": "民", + "readging": "たみ", + "pos": "名詞", + "pn": -0.236506 + }, + { + "surface": "コントラバス", + "readging": "コントラバス", + "pos": "名詞", + "pn": -0.236536 + }, + { + "surface": "原子量", + "readging": "げんしりょう", + "pos": "名詞", + "pn": -0.236554 + }, + { + "surface": "去声", + "readging": "きょせい", + "pos": "名詞", + "pn": -0.236575 + }, + { + "surface": "対話", + "readging": "たいわ", + "pos": "名詞", + "pn": -0.236587 + }, + { + "surface": "夜討", + "readging": "ようち", + "pos": "名詞", + "pn": -0.236594 + }, + { + "surface": "パントマイム", + "readging": "パントマイム", + "pos": "名詞", + "pn": -0.236599 + }, + { + "surface": "名題", + "readging": "なだい", + "pos": "名詞", + "pn": -0.236612 + }, + { + "surface": "株主", + "readging": "かぶぬし", + "pos": "名詞", + "pn": -0.236612 + }, + { + "surface": "地代", + "readging": "じだい", + "pos": "名詞", + "pn": -0.236615 + }, + { + "surface": "ボンネット", + "readging": "ボンネット", + "pos": "名詞", + "pn": -0.236621 + }, + { + "surface": "アジ プロ", + "readging": "アジ プロ", + "pos": "名詞", + "pn": -0.236667 + }, + { + "surface": "点描", + "readging": "てんびょう", + "pos": "名詞", + "pn": -0.236688 + }, + { + "surface": "枝折", + "readging": "しおり", + "pos": "名詞", + "pn": -0.23669 + }, + { + "surface": "筆者", + "readging": "ひっしゃ", + "pos": "名詞", + "pn": -0.236693 + }, + { + "surface": "冥護", + "readging": "みょうご", + "pos": "名詞", + "pn": -0.236699 + }, + { + "surface": "千軍万馬", + "readging": "せんぐんばんば", + "pos": "名詞", + "pn": -0.236707 + }, + { + "surface": "振分ける", + "readging": "ふりわける", + "pos": "動詞", + "pn": -0.236717 + }, + { + "surface": "コプラ", + "readging": "コプラ", + "pos": "名詞", + "pn": -0.236728 + }, + { + "surface": "ユーモア", + "readging": "ユーモア", + "pos": "名詞", + "pn": -0.236731 + }, + { + "surface": "バーボン", + "readging": "バーボン", + "pos": "名詞", + "pn": -0.236731 + }, + { + "surface": "胃痛", + "readging": "いつう", + "pos": "名詞", + "pn": -0.236751 + }, + { + "surface": "鳥刺", + "readging": "とりさし", + "pos": "名詞", + "pn": -0.236754 + }, + { + "surface": "渡奉公", + "readging": "わたりぼうこう", + "pos": "名詞", + "pn": -0.236756 + }, + { + "surface": "山房", + "readging": "さんぼう", + "pos": "名詞", + "pn": -0.236766 + }, + { + "surface": "推敲", + "readging": "すいこう", + "pos": "名詞", + "pn": -0.236766 + }, + { + "surface": "応ずる", + "readging": "おうずる", + "pos": "動詞", + "pn": -0.236781 + }, + { + "surface": "セクション", + "readging": "セクションペーパー", + "pos": "名詞", + "pn": -0.236783 + }, + { + "surface": "踊場", + "readging": "おどりば", + "pos": "名詞", + "pn": -0.236789 + }, + { + "surface": "日帰り", + "readging": "ひがえり", + "pos": "名詞", + "pn": -0.236799 + }, + { + "surface": "盲信", + "readging": "もうしん", + "pos": "名詞", + "pn": -0.236801 + }, + { + "surface": "授乳", + "readging": "じゅにゅう", + "pos": "名詞", + "pn": -0.236811 + }, + { + "surface": "塩基性", + "readging": "えんきせい", + "pos": "名詞", + "pn": -0.236817 + }, + { + "surface": "右翼", + "readging": "うよく", + "pos": "名詞", + "pn": -0.23683 + }, + { + "surface": "門標", + "readging": "もんぴょう", + "pos": "名詞", + "pn": -0.236848 + }, + { + "surface": "番小屋", + "readging": "ばんごや", + "pos": "名詞", + "pn": -0.236851 + }, + { + "surface": "残燭", + "readging": "ざんしょく", + "pos": "名詞", + "pn": -0.236858 + }, + { + "surface": "東路", + "readging": "あずまじ", + "pos": "名詞", + "pn": -0.236872 + }, + { + "surface": "役儀", + "readging": "やくぎ", + "pos": "名詞", + "pn": -0.236886 + }, + { + "surface": "因明", + "readging": "いんみょう", + "pos": "名詞", + "pn": -0.236891 + }, + { + "surface": "実竹", + "readging": "じっちく", + "pos": "名詞", + "pn": -0.236898 + }, + { + "surface": "引かれ者", + "readging": "ひかれもの", + "pos": "名詞", + "pn": -0.236901 + }, + { + "surface": "墓域", + "readging": "ぼいき", + "pos": "名詞", + "pn": -0.236928 + }, + { + "surface": "足長蜂", + "readging": "あしながばち", + "pos": "名詞", + "pn": -0.236928 + }, + { + "surface": "絎ける", + "readging": "くける", + "pos": "動詞", + "pn": -0.236931 + }, + { + "surface": "羹", + "readging": "あつもの", + "pos": "名詞", + "pn": -0.236936 + }, + { + "surface": "枢密顧問官", + "readging": "すうみつこもんかん", + "pos": "名詞", + "pn": -0.236953 + }, + { + "surface": "ガイダンス", + "readging": "ガイダンス", + "pos": "名詞", + "pn": -0.236964 + }, + { + "surface": "放歌", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.236965 + }, + { + "surface": "ダダイスト", + "readging": "ダダイスト", + "pos": "名詞", + "pn": -0.236968 + }, + { + "surface": "切裂く", + "readging": "きりさく", + "pos": "動詞", + "pn": -0.236988 + }, + { + "surface": "人名", + "readging": "じんめい", + "pos": "名詞", + "pn": -0.23699 + }, + { + "surface": "孔版", + "readging": "こうはん", + "pos": "名詞", + "pn": -0.237011 + }, + { + "surface": "裁可", + "readging": "さいか", + "pos": "名詞", + "pn": -0.237024 + }, + { + "surface": "腕章", + "readging": "わんしょう", + "pos": "名詞", + "pn": -0.237025 + }, + { + "surface": "掛り", + "readging": "かかり", + "pos": "名詞", + "pn": -0.237048 + }, + { + "surface": "安全剃刀", + "readging": "あんぜんかみそり", + "pos": "名詞", + "pn": -0.237048 + }, + { + "surface": "教門", + "readging": "きょうもん", + "pos": "名詞", + "pn": -0.237056 + }, + { + "surface": "黄燐", + "readging": "おうりん", + "pos": "名詞", + "pn": -0.237065 + }, + { + "surface": "ダイン", + "readging": "ダイン", + "pos": "名詞", + "pn": -0.237066 + }, + { + "surface": "学業", + "readging": "がくぎょう", + "pos": "名詞", + "pn": -0.237067 + }, + { + "surface": "たんさん紙", + "readging": "たんさんし", + "pos": "名詞", + "pn": -0.237081 + }, + { + "surface": "細則", + "readging": "さいそく", + "pos": "名詞", + "pn": -0.237087 + }, + { + "surface": "裸体", + "readging": "らたい", + "pos": "名詞", + "pn": -0.23711 + }, + { + "surface": "群島", + "readging": "ぐんとう", + "pos": "名詞", + "pn": -0.237136 + }, + { + "surface": "金利", + "readging": "きんり", + "pos": "名詞", + "pn": -0.237156 + }, + { + "surface": "頓に", + "readging": "とみに", + "pos": "副詞", + "pn": -0.237158 + }, + { + "surface": "猛威", + "readging": "もうい", + "pos": "名詞", + "pn": -0.237162 + }, + { + "surface": "所信", + "readging": "しょしん", + "pos": "名詞", + "pn": -0.237168 + }, + { + "surface": "リモート", + "readging": "リモート", + "pos": "名詞", + "pn": -0.237177 + }, + { + "surface": "検事", + "readging": "けんじ", + "pos": "名詞", + "pn": -0.237178 + }, + { + "surface": "荷鞍", + "readging": "にぐら", + "pos": "名詞", + "pn": -0.237187 + }, + { + "surface": "篠竹", + "readging": "しのだけ", + "pos": "名詞", + "pn": -0.237208 + }, + { + "surface": "例証", + "readging": "れいしょう", + "pos": "名詞", + "pn": -0.237222 + }, + { + "surface": "角", + "readging": "かど", + "pos": "名詞", + "pn": -0.237223 + }, + { + "surface": "予科", + "readging": "よか", + "pos": "名詞", + "pn": -0.237231 + }, + { + "surface": "レギュラー", + "readging": "レギュラー", + "pos": "名詞", + "pn": -0.237237 + }, + { + "surface": "もっと", + "readging": "もっと", + "pos": "副詞", + "pn": -0.237262 + }, + { + "surface": "ブル", + "readging": "ブル", + "pos": "名詞", + "pn": -0.237276 + }, + { + "surface": "帳尻", + "readging": "ちょうじり", + "pos": "名詞", + "pn": -0.237291 + }, + { + "surface": "四面楚歌", + "readging": "しめんそか", + "pos": "名詞", + "pn": -0.237293 + }, + { + "surface": "旅稼ぎ", + "readging": "たびかせぎ", + "pos": "名詞", + "pn": -0.237299 + }, + { + "surface": "答弁", + "readging": "とうべん", + "pos": "名詞", + "pn": -0.237315 + }, + { + "surface": "中性子", + "readging": "ちゅうせいし", + "pos": "名詞", + "pn": -0.237317 + }, + { + "surface": "末梢神経", + "readging": "まっしょうしんけい", + "pos": "名詞", + "pn": -0.237317 + }, + { + "surface": "霧隠れ", + "readging": "きりがくれ", + "pos": "名詞", + "pn": -0.237324 + }, + { + "surface": "訴権", + "readging": "そけん", + "pos": "名詞", + "pn": -0.237326 + }, + { + "surface": "サーカス", + "readging": "サーカス", + "pos": "名詞", + "pn": -0.237332 + }, + { + "surface": "助士", + "readging": "じょし", + "pos": "名詞", + "pn": -0.237336 + }, + { + "surface": "仙境", + "readging": "せんきょう", + "pos": "名詞", + "pn": -0.237341 + }, + { + "surface": "没頭", + "readging": "ぼっとう", + "pos": "名詞", + "pn": -0.237399 + }, + { + "surface": "前回", + "readging": "ぜんかい", + "pos": "名詞", + "pn": -0.2374 + }, + { + "surface": "巣引", + "readging": "すびき", + "pos": "名詞", + "pn": -0.237413 + }, + { + "surface": "廃寺", + "readging": "はいじ", + "pos": "名詞", + "pn": -0.237417 + }, + { + "surface": "ごろりと", + "readging": "ごろりと", + "pos": "副詞", + "pn": -0.237421 + }, + { + "surface": "お婆さん", + "readging": "おばあさん", + "pos": "名詞", + "pn": -0.237421 + }, + { + "surface": "風位", + "readging": "ふうい", + "pos": "名詞", + "pn": -0.237459 + }, + { + "surface": "諸手", + "readging": "もろて", + "pos": "名詞", + "pn": -0.237468 + }, + { + "surface": "フェニックス", + "readging": "フェニックス", + "pos": "名詞", + "pn": -0.237469 + }, + { + "surface": "完済", + "readging": "かんさい", + "pos": "名詞", + "pn": -0.237479 + }, + { + "surface": "警戒線", + "readging": "けいかいせん", + "pos": "名詞", + "pn": -0.237489 + }, + { + "surface": "風除け", + "readging": "かざよけ", + "pos": "名詞", + "pn": -0.237493 + }, + { + "surface": "肯定", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.237494 + }, + { + "surface": "減価償却", + "readging": "げんかしょうきゃく", + "pos": "名詞", + "pn": -0.237506 + }, + { + "surface": "ガジュマル", + "readging": "ガジュマル", + "pos": "名詞", + "pn": -0.237511 + }, + { + "surface": "変じる", + "readging": "へんじる", + "pos": "動詞", + "pn": -0.237517 + }, + { + "surface": "漸減", + "readging": "ぜんげん", + "pos": "名詞", + "pn": -0.23753 + }, + { + "surface": "末路", + "readging": "まつろ", + "pos": "名詞", + "pn": -0.237544 + }, + { + "surface": "対訳", + "readging": "たいやく", + "pos": "名詞", + "pn": -0.237584 + }, + { + "surface": "閣議", + "readging": "かくぎ", + "pos": "名詞", + "pn": -0.237589 + }, + { + "surface": "社会民主主義", + "readging": "しゃかいみんしゅしゅぎ", + "pos": "名詞", + "pn": -0.237597 + }, + { + "surface": "相克", + "readging": "そうこく", + "pos": "名詞", + "pn": -0.237606 + }, + { + "surface": "塵紙", + "readging": "ちりがみ", + "pos": "名詞", + "pn": -0.237627 + }, + { + "surface": "私立", + "readging": "わたくしりつ", + "pos": "名詞", + "pn": -0.23763 + }, + { + "surface": "近似", + "readging": "きんじ", + "pos": "名詞", + "pn": -0.237635 + }, + { + "surface": "清流", + "readging": "せいりゅう", + "pos": "名詞", + "pn": -0.237636 + }, + { + "surface": "通計", + "readging": "つうけい", + "pos": "名詞", + "pn": -0.237655 + }, + { + "surface": "素引", + "readging": "すびき", + "pos": "名詞", + "pn": -0.237666 + }, + { + "surface": "見取り", + "readging": "みとり", + "pos": "名詞", + "pn": -0.237674 + }, + { + "surface": "伊万里焼", + "readging": "いまりやき", + "pos": "名詞", + "pn": -0.237676 + }, + { + "surface": "外郎", + "readging": "ういろう", + "pos": "名詞", + "pn": -0.23768 + }, + { + "surface": "巣箱", + "readging": "すばこ", + "pos": "名詞", + "pn": -0.237692 + }, + { + "surface": "セミプロ", + "readging": "セミプロ", + "pos": "名詞", + "pn": -0.237696 + }, + { + "surface": "軍票", + "readging": "ぐんぴょう", + "pos": "名詞", + "pn": -0.237701 + }, + { + "surface": "パセリ", + "readging": "パセリ", + "pos": "名詞", + "pn": -0.237708 + }, + { + "surface": "風浪", + "readging": "ふうろう", + "pos": "名詞", + "pn": -0.237715 + }, + { + "surface": "流行歌", + "readging": "はやりうた", + "pos": "名詞", + "pn": -0.237742 + }, + { + "surface": "湯煙", + "readging": "ゆけむり", + "pos": "名詞", + "pn": -0.237778 + }, + { + "surface": "細分", + "readging": "さいぶん", + "pos": "名詞", + "pn": -0.237779 + }, + { + "surface": "分水嶺", + "readging": "ぶんすいれい", + "pos": "名詞", + "pn": -0.237802 + }, + { + "surface": "唯物史観", + "readging": "ゆいぶつしかん", + "pos": "名詞", + "pn": -0.237845 + }, + { + "surface": "洋弓", + "readging": "ようきゅう", + "pos": "名詞", + "pn": -0.237847 + }, + { + "surface": "早とちり", + "readging": "はやとちり", + "pos": "名詞", + "pn": -0.237849 + }, + { + "surface": "陪賓", + "readging": "ばいひん", + "pos": "名詞", + "pn": -0.237873 + }, + { + "surface": "見参", + "readging": "げんざん", + "pos": "名詞", + "pn": -0.237903 + }, + { + "surface": "専務", + "readging": "せんむ", + "pos": "名詞", + "pn": -0.237908 + }, + { + "surface": "サンバ", + "readging": "サンバ", + "pos": "名詞", + "pn": -0.237908 + }, + { + "surface": "成人", + "readging": "せいじん", + "pos": "名詞", + "pn": -0.237958 + }, + { + "surface": "逆さ言葉", + "readging": "さかさことば", + "pos": "名詞", + "pn": -0.237959 + }, + { + "surface": "時流", + "readging": "じりゅう", + "pos": "名詞", + "pn": -0.237988 + }, + { + "surface": "休場", + "readging": "きゅうじょう", + "pos": "名詞", + "pn": -0.237995 + }, + { + "surface": "筋繊維", + "readging": "きんせんい", + "pos": "名詞", + "pn": -0.238001 + }, + { + "surface": "霊地", + "readging": "れいち", + "pos": "名詞", + "pn": -0.238004 + }, + { + "surface": "信用金庫", + "readging": "しんようきんこ", + "pos": "名詞", + "pn": -0.238015 + }, + { + "surface": "秋分点", + "readging": "しゅうぶんてん", + "pos": "名詞", + "pn": -0.238025 + }, + { + "surface": "出勤", + "readging": "しゅっきん", + "pos": "名詞", + "pn": -0.238034 + }, + { + "surface": "山菜", + "readging": "さんさい", + "pos": "名詞", + "pn": -0.238073 + }, + { + "surface": "セパレーツ", + "readging": "セパレーツ", + "pos": "名詞", + "pn": -0.238089 + }, + { + "surface": "射出", + "readging": "しゃしゅつ", + "pos": "名詞", + "pn": -0.238112 + }, + { + "surface": "山寺", + "readging": "やまでら", + "pos": "名詞", + "pn": -0.238117 + }, + { + "surface": "僧団", + "readging": "そうだん", + "pos": "名詞", + "pn": -0.238128 + }, + { + "surface": "技手", + "readging": "ぎしゅ", + "pos": "名詞", + "pn": -0.23819 + }, + { + "surface": "塵土", + "readging": "じんど", + "pos": "名詞", + "pn": -0.238193 + }, + { + "surface": "嚢底", + "readging": "のうてい", + "pos": "名詞", + "pn": -0.238207 + }, + { + "surface": "ホルダー", + "readging": "ホルダー", + "pos": "名詞", + "pn": -0.23821 + }, + { + "surface": "おくるみ", + "readging": "おくるみ", + "pos": "名詞", + "pn": -0.238218 + }, + { + "surface": "獄窓", + "readging": "ごくそう", + "pos": "名詞", + "pn": -0.238231 + }, + { + "surface": "和本", + "readging": "わほん", + "pos": "名詞", + "pn": -0.23825 + }, + { + "surface": "風樹", + "readging": "ふうじゅ", + "pos": "名詞", + "pn": -0.238256 + }, + { + "surface": "嘱託", + "readging": "しょくたく", + "pos": "名詞", + "pn": -0.238257 + }, + { + "surface": "正訓", + "readging": "せいくん", + "pos": "名詞", + "pn": -0.23828 + }, + { + "surface": "折角", + "readging": "せっかく", + "pos": "副詞", + "pn": -0.238281 + }, + { + "surface": "鉄御納戸", + "readging": "てつおなんど", + "pos": "名詞", + "pn": -0.238285 + }, + { + "surface": "ケルビン", + "readging": "ケルビン", + "pos": "名詞", + "pn": -0.238285 + }, + { + "surface": "一変", + "readging": "いっぺん", + "pos": "名詞", + "pn": -0.238315 + }, + { + "surface": "旧約", + "readging": "きゅうやく", + "pos": "名詞", + "pn": -0.238321 + }, + { + "surface": "動議", + "readging": "どうぎ", + "pos": "名詞", + "pn": -0.238354 + }, + { + "surface": "夢見る", + "readging": "ゆめみる", + "pos": "動詞", + "pn": -0.238357 + }, + { + "surface": "半濁点", + "readging": "はんだくてん", + "pos": "名詞", + "pn": -0.238361 + }, + { + "surface": "鳴物", + "readging": "なりもの", + "pos": "名詞", + "pn": -0.238405 + }, + { + "surface": "村払い", + "readging": "むらばらい", + "pos": "名詞", + "pn": -0.238406 + }, + { + "surface": "丸取り", + "readging": "まるどり", + "pos": "名詞", + "pn": -0.238415 + }, + { + "surface": "黒装束", + "readging": "くろしょうぞく", + "pos": "名詞", + "pn": -0.238425 + }, + { + "surface": "サーフィン", + "readging": "サーフィン", + "pos": "名詞", + "pn": -0.23843 + }, + { + "surface": "急テンポ", + "readging": "きゅうテンポ", + "pos": "名詞", + "pn": -0.238433 + }, + { + "surface": "歳出", + "readging": "さいしゅつ", + "pos": "名詞", + "pn": -0.238463 + }, + { + "surface": "淘汰", + "readging": "とうた", + "pos": "名詞", + "pn": -0.238471 + }, + { + "surface": "自供", + "readging": "じきょう", + "pos": "名詞", + "pn": -0.238473 + }, + { + "surface": "生害", + "readging": "しょうがい", + "pos": "名詞", + "pn": -0.238473 + }, + { + "surface": "老躯", + "readging": "ろうく", + "pos": "名詞", + "pn": -0.238484 + }, + { + "surface": "アンゴラ", + "readging": "アンゴラ", + "pos": "名詞", + "pn": -0.238495 + }, + { + "surface": "セダン", + "readging": "セダン", + "pos": "名詞", + "pn": -0.238501 + }, + { + "surface": "論駁", + "readging": "ろんばく", + "pos": "名詞", + "pn": -0.238503 + }, + { + "surface": "一筆", + "readging": "いっぴつ", + "pos": "名詞", + "pn": -0.238509 + }, + { + "surface": "開国", + "readging": "かいこく", + "pos": "名詞", + "pn": -0.238509 + }, + { + "surface": "車中談", + "readging": "しゃちゅうだん", + "pos": "名詞", + "pn": -0.238518 + }, + { + "surface": "鋭角", + "readging": "えいかく", + "pos": "名詞", + "pn": -0.238535 + }, + { + "surface": "信書", + "readging": "しんしょ", + "pos": "名詞", + "pn": -0.238542 + }, + { + "surface": "同前", + "readging": "どうぜん", + "pos": "名詞", + "pn": -0.238544 + }, + { + "surface": "試掘", + "readging": "しくつ", + "pos": "名詞", + "pn": -0.238545 + }, + { + "surface": "左傾", + "readging": "さけい", + "pos": "名詞", + "pn": -0.238561 + }, + { + "surface": "縫箔", + "readging": "ぬいはく", + "pos": "名詞", + "pn": -0.238589 + }, + { + "surface": "宝祚", + "readging": "ほうそ", + "pos": "名詞", + "pn": -0.23859 + }, + { + "surface": "筆生", + "readging": "ひっせい", + "pos": "名詞", + "pn": -0.238605 + }, + { + "surface": "和魂漢才", + "readging": "わこんかんさい", + "pos": "名詞", + "pn": -0.238619 + }, + { + "surface": "製菓", + "readging": "せいか", + "pos": "名詞", + "pn": -0.238621 + }, + { + "surface": "寺侍", + "readging": "てらざむらい", + "pos": "名詞", + "pn": -0.238623 + }, + { + "surface": "敬称", + "readging": "けいしょう", + "pos": "名詞", + "pn": -0.238627 + }, + { + "surface": "ふうふう", + "readging": "ふうふう", + "pos": "副詞", + "pn": -0.238639 + }, + { + "surface": "遷宮", + "readging": "せんぐう", + "pos": "名詞", + "pn": -0.238651 + }, + { + "surface": "多数決", + "readging": "たすうけつ", + "pos": "名詞", + "pn": -0.238651 + }, + { + "surface": "作例", + "readging": "さくれい", + "pos": "名詞", + "pn": -0.238652 + }, + { + "surface": "羽衣", + "readging": "はごろも", + "pos": "名詞", + "pn": -0.238659 + }, + { + "surface": "露頭", + "readging": "ろとう", + "pos": "名詞", + "pn": -0.238663 + }, + { + "surface": "証跡", + "readging": "しょうせき", + "pos": "名詞", + "pn": -0.238692 + }, + { + "surface": "鉄砲水", + "readging": "てっぽうみず", + "pos": "名詞", + "pn": -0.23872 + }, + { + "surface": "副将", + "readging": "ふくしょう", + "pos": "名詞", + "pn": -0.238722 + }, + { + "surface": "編年史", + "readging": "へんねんし", + "pos": "名詞", + "pn": -0.238724 + }, + { + "surface": "金婚式", + "readging": "きんこんしき", + "pos": "名詞", + "pn": -0.238739 + }, + { + "surface": "教員", + "readging": "きょういん", + "pos": "名詞", + "pn": -0.238739 + }, + { + "surface": "利回り", + "readging": "りまわり", + "pos": "名詞", + "pn": -0.23874 + }, + { + "surface": "受取る", + "readging": "うけとる", + "pos": "動詞", + "pn": -0.238741 + }, + { + "surface": "弥増す", + "readging": "いやます", + "pos": "動詞", + "pn": -0.238748 + }, + { + "surface": "締出す", + "readging": "しめだす", + "pos": "動詞", + "pn": -0.238758 + }, + { + "surface": "菊の節句", + "readging": "きくのせっく", + "pos": "名詞", + "pn": -0.23877 + }, + { + "surface": "仕丁", + "readging": "じちょう", + "pos": "名詞", + "pn": -0.238771 + }, + { + "surface": "請負師", + "readging": "うけおい", + "pos": "名詞", + "pn": -0.238772 + }, + { + "surface": "縞物", + "readging": "しまもの", + "pos": "名詞", + "pn": -0.238785 + }, + { + "surface": "平熱", + "readging": "へいねつ", + "pos": "名詞", + "pn": -0.238788 + }, + { + "surface": "理財", + "readging": "りざい", + "pos": "名詞", + "pn": -0.238795 + }, + { + "surface": "来臨", + "readging": "らいりん", + "pos": "名詞", + "pn": -0.238801 + }, + { + "surface": "レストラン", + "readging": "レストラン", + "pos": "名詞", + "pn": -0.238801 + }, + { + "surface": "漕着ける", + "readging": "こぎつける", + "pos": "動詞", + "pn": -0.238816 + }, + { + "surface": "気心", + "readging": "きごころ", + "pos": "名詞", + "pn": -0.238831 + }, + { + "surface": "製薬", + "readging": "せいやく", + "pos": "名詞", + "pn": -0.238833 + }, + { + "surface": "ワン ピース", + "readging": "ワン ピース", + "pos": "名詞", + "pn": -0.238879 + }, + { + "surface": "初伝", + "readging": "しょでん", + "pos": "名詞", + "pn": -0.238883 + }, + { + "surface": "恭倹", + "readging": "きょうけん", + "pos": "名詞", + "pn": -0.238884 + }, + { + "surface": "車検", + "readging": "しゃけん", + "pos": "名詞", + "pn": -0.23889 + }, + { + "surface": "小笠原流", + "readging": "おがさわらりゅう", + "pos": "名詞", + "pn": -0.238914 + }, + { + "surface": "お爺さん", + "readging": "おじいさん", + "pos": "名詞", + "pn": -0.238922 + }, + { + "surface": "ホーム", + "readging": "ホームスパン", + "pos": "名詞", + "pn": -0.238954 + }, + { + "surface": "美育", + "readging": "びいく", + "pos": "名詞", + "pn": -0.238968 + }, + { + "surface": "台下", + "readging": "だいか", + "pos": "名詞", + "pn": -0.23898 + }, + { + "surface": "供託", + "readging": "きょうたく", + "pos": "名詞", + "pn": -0.238999 + }, + { + "surface": "多年生植物", + "readging": "たねんせいしょくぶつ", + "pos": "名詞", + "pn": -0.239008 + }, + { + "surface": "開花", + "readging": "かいか", + "pos": "名詞", + "pn": -0.239017 + }, + { + "surface": "食い詰める", + "readging": "くいつめる", + "pos": "動詞", + "pn": -0.23902 + }, + { + "surface": "入道", + "readging": "にゅうどう", + "pos": "名詞", + "pn": -0.239023 + }, + { + "surface": "ロッジ", + "readging": "ロッジ", + "pos": "名詞", + "pn": -0.239029 + }, + { + "surface": "骨抜き", + "readging": "ほねぬき", + "pos": "名詞", + "pn": -0.239033 + }, + { + "surface": "清談", + "readging": "せいだん", + "pos": "名詞", + "pn": -0.239046 + }, + { + "surface": "動物園", + "readging": "どうぶつえん", + "pos": "名詞", + "pn": -0.239053 + }, + { + "surface": "モーテル", + "readging": "モーテル", + "pos": "名詞", + "pn": -0.239064 + }, + { + "surface": "味噌っ歯", + "readging": "みそっぱ", + "pos": "名詞", + "pn": -0.23907 + }, + { + "surface": "禁転載", + "readging": "きんてんさい", + "pos": "名詞", + "pn": -0.239079 + }, + { + "surface": "理科", + "readging": "りか", + "pos": "名詞", + "pn": -0.239089 + }, + { + "surface": "首長", + "readging": "しゅちょう", + "pos": "名詞", + "pn": -0.239091 + }, + { + "surface": "無抵抗", + "readging": "むていこう", + "pos": "名詞", + "pn": -0.239101 + }, + { + "surface": "テンポ", + "readging": "テンポ", + "pos": "名詞", + "pn": -0.239109 + }, + { + "surface": "物見", + "readging": "ものみ", + "pos": "名詞", + "pn": -0.239136 + }, + { + "surface": "偶成", + "readging": "ぐうせい", + "pos": "名詞", + "pn": -0.239136 + }, + { + "surface": "教授", + "readging": "きょうじゅ", + "pos": "名詞", + "pn": -0.239138 + }, + { + "surface": "擦る", + "readging": "こする", + "pos": "動詞", + "pn": -0.239139 + }, + { + "surface": "お通夜", + "readging": "おつや", + "pos": "名詞", + "pn": -0.23914 + }, + { + "surface": "船宿", + "readging": "ふなやど", + "pos": "名詞", + "pn": -0.239143 + }, + { + "surface": "煙毒", + "readging": "えんどく", + "pos": "名詞", + "pn": -0.239176 + }, + { + "surface": "ちえ歯", + "readging": "ちえば", + "pos": "名詞", + "pn": -0.239186 + }, + { + "surface": "除する", + "readging": "じょする", + "pos": "動詞", + "pn": -0.239206 + }, + { + "surface": "碁盤割", + "readging": "ごばんわり", + "pos": "名詞", + "pn": -0.239208 + }, + { + "surface": "訴人", + "readging": "そにん", + "pos": "名詞", + "pn": -0.239218 + }, + { + "surface": "中退", + "readging": "ちゅうたい", + "pos": "名詞", + "pn": -0.239249 + }, + { + "surface": "白蛇", + "readging": "しろへび", + "pos": "名詞", + "pn": -0.239252 + }, + { + "surface": "平時", + "readging": "へいじ", + "pos": "名詞", + "pn": -0.239301 + }, + { + "surface": "内入", + "readging": "うちいり", + "pos": "名詞", + "pn": -0.239305 + }, + { + "surface": "連累", + "readging": "れんるい", + "pos": "名詞", + "pn": -0.239317 + }, + { + "surface": "行人", + "readging": "こうじん", + "pos": "名詞", + "pn": -0.239341 + }, + { + "surface": "橋脚", + "readging": "きょうきゃく", + "pos": "名詞", + "pn": -0.239341 + }, + { + "surface": "用部屋", + "readging": "ようべや", + "pos": "名詞", + "pn": -0.239353 + }, + { + "surface": "丸幅", + "readging": "まるはば", + "pos": "名詞", + "pn": -0.239393 + }, + { + "surface": "紛然", + "readging": "ふんぜん", + "pos": "名詞", + "pn": -0.239417 + }, + { + "surface": "公売", + "readging": "こうばい", + "pos": "名詞", + "pn": -0.239426 + }, + { + "surface": "静物画", + "readging": "せいぶつが", + "pos": "名詞", + "pn": -0.239441 + }, + { + "surface": "双務", + "readging": "そうむ", + "pos": "名詞", + "pn": -0.239443 + }, + { + "surface": "紅涙", + "readging": "こうるい", + "pos": "名詞", + "pn": -0.239481 + }, + { + "surface": "遅咲き", + "readging": "おそざき", + "pos": "名詞", + "pn": -0.239486 + }, + { + "surface": "たんまり", + "readging": "たんまり", + "pos": "副詞", + "pn": -0.239503 + }, + { + "surface": "目色", + "readging": "めいろ", + "pos": "名詞", + "pn": -0.239522 + }, + { + "surface": "するする", + "readging": "するする", + "pos": "副詞", + "pn": -0.239545 + }, + { + "surface": "技術屋", + "readging": "ぎじゅつや", + "pos": "名詞", + "pn": -0.239569 + }, + { + "surface": "等量", + "readging": "とうりょう", + "pos": "名詞", + "pn": -0.239572 + }, + { + "surface": "農園", + "readging": "のうえん", + "pos": "名詞", + "pn": -0.239591 + }, + { + "surface": "単身", + "readging": "たんしん", + "pos": "名詞", + "pn": -0.239612 + }, + { + "surface": "私曲", + "readging": "しきょく", + "pos": "名詞", + "pn": -0.23962 + }, + { + "surface": "供物", + "readging": "くもつ", + "pos": "名詞", + "pn": -0.239623 + }, + { + "surface": "水物", + "readging": "みずもの", + "pos": "名詞", + "pn": -0.23964 + }, + { + "surface": "仮象", + "readging": "かしょう", + "pos": "名詞", + "pn": -0.239643 + }, + { + "surface": "滄海", + "readging": "そうかい", + "pos": "名詞", + "pn": -0.239661 + }, + { + "surface": "戸別", + "readging": "こべつ", + "pos": "名詞", + "pn": -0.239662 + }, + { + "surface": "質点", + "readging": "しつてん", + "pos": "名詞", + "pn": -0.239663 + }, + { + "surface": "強要", + "readging": "きょうよう", + "pos": "名詞", + "pn": -0.239663 + }, + { + "surface": "波乗り", + "readging": "なみのり", + "pos": "名詞", + "pn": -0.239669 + }, + { + "surface": "世事", + "readging": "せじ", + "pos": "名詞", + "pn": -0.23967 + }, + { + "surface": "荷動き", + "readging": "にうごき", + "pos": "名詞", + "pn": -0.239724 + }, + { + "surface": "暗記", + "readging": "あんき", + "pos": "名詞", + "pn": -0.239726 + }, + { + "surface": "全滅", + "readging": "ぜんめつ", + "pos": "名詞", + "pn": -0.239732 + }, + { + "surface": "百歳", + "readging": "ももとせ", + "pos": "名詞", + "pn": -0.239739 + }, + { + "surface": "プロレタリア革命", + "readging": "プロレタリアかくめい", + "pos": "名詞", + "pn": -0.239745 + }, + { + "surface": "プルトニウム", + "readging": "プルトニウム", + "pos": "名詞", + "pn": -0.239748 + }, + { + "surface": "古書", + "readging": "こしょ", + "pos": "名詞", + "pn": -0.239756 + }, + { + "surface": "大本山", + "readging": "だいほんざん", + "pos": "名詞", + "pn": -0.239759 + }, + { + "surface": "吟醸", + "readging": "ぎんじょう", + "pos": "名詞", + "pn": -0.239801 + }, + { + "surface": "ルビ", + "readging": "ルビ", + "pos": "名詞", + "pn": -0.239804 + }, + { + "surface": "尻取り", + "readging": "しりとり", + "pos": "名詞", + "pn": -0.239806 + }, + { + "surface": "心性", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.239807 + }, + { + "surface": "獅噛火鉢", + "readging": "しかみひばち", + "pos": "名詞", + "pn": -0.239823 + }, + { + "surface": "結党", + "readging": "けっとう", + "pos": "名詞", + "pn": -0.239825 + }, + { + "surface": "終生", + "readging": "しゅうせい", + "pos": "副詞", + "pn": -0.239852 + }, + { + "surface": "キュラソー", + "readging": "キュラソー", + "pos": "名詞", + "pn": -0.239857 + }, + { + "surface": "視聴", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.239873 + }, + { + "surface": "ショービニズム", + "readging": "ショービニズム", + "pos": "名詞", + "pn": -0.239881 + }, + { + "surface": "芸当", + "readging": "げいとう", + "pos": "名詞", + "pn": -0.239887 + }, + { + "surface": "客商売", + "readging": "きゃくしょうばい", + "pos": "名詞", + "pn": -0.239891 + }, + { + "surface": "藪井竹庵", + "readging": "やぶいちくあん", + "pos": "名詞", + "pn": -0.239912 + }, + { + "surface": "波頭", + "readging": "なみがしら", + "pos": "名詞", + "pn": -0.239928 + }, + { + "surface": "手向けの神", + "readging": "たむけのかみ", + "pos": "名詞", + "pn": -0.239987 + }, + { + "surface": "講堂", + "readging": "こうどう", + "pos": "名詞", + "pn": -0.239992 + }, + { + "surface": "供血", + "readging": "きょうけつ", + "pos": "名詞", + "pn": -0.239996 + }, + { + "surface": "天日塩", + "readging": "てんじつえん", + "pos": "名詞", + "pn": -0.240041 + }, + { + "surface": "姿見", + "readging": "すがたみ", + "pos": "名詞", + "pn": -0.240045 + }, + { + "surface": "久遠", + "readging": "くおん", + "pos": "名詞", + "pn": -0.240048 + }, + { + "surface": "包茎", + "readging": "ほうけい", + "pos": "名詞", + "pn": -0.240071 + }, + { + "surface": "新式", + "readging": "しんしき", + "pos": "名詞", + "pn": -0.240092 + }, + { + "surface": "ピッチャー", + "readging": "ピッチャー", + "pos": "名詞", + "pn": -0.240099 + }, + { + "surface": "問責", + "readging": "もんせき", + "pos": "名詞", + "pn": -0.240105 + }, + { + "surface": "謁", + "readging": "えつ", + "pos": "名詞", + "pn": -0.240116 + }, + { + "surface": "北洋", + "readging": "ほくよう", + "pos": "名詞", + "pn": -0.240165 + }, + { + "surface": "端近", + "readging": "はしぢか", + "pos": "名詞", + "pn": -0.240165 + }, + { + "surface": "依頼", + "readging": "いらい", + "pos": "名詞", + "pn": -0.240179 + }, + { + "surface": "付随", + "readging": "ふずい", + "pos": "名詞", + "pn": -0.240198 + }, + { + "surface": "実歴", + "readging": "じつれき", + "pos": "名詞", + "pn": -0.2402 + }, + { + "surface": "舞曲", + "readging": "ぶきょく", + "pos": "名詞", + "pn": -0.240204 + }, + { + "surface": "枝垂れる", + "readging": "しだれる", + "pos": "動詞", + "pn": -0.240204 + }, + { + "surface": "不起訴", + "readging": "ふきそ", + "pos": "名詞", + "pn": -0.240216 + }, + { + "surface": "父権", + "readging": "ふけん", + "pos": "名詞", + "pn": -0.240222 + }, + { + "surface": "素足", + "readging": "すあし", + "pos": "名詞", + "pn": -0.240223 + }, + { + "surface": "招集", + "readging": "しょうしゅう", + "pos": "名詞", + "pn": -0.24023 + }, + { + "surface": "裏店", + "readging": "うらだな", + "pos": "名詞", + "pn": -0.240235 + }, + { + "surface": "衡平", + "readging": "こうへい", + "pos": "名詞", + "pn": -0.240252 + }, + { + "surface": "御守殿", + "readging": "ごしゅでん", + "pos": "名詞", + "pn": -0.240258 + }, + { + "surface": "逐年", + "readging": "ちくねん", + "pos": "副詞", + "pn": -0.240258 + }, + { + "surface": "万斛", + "readging": "ばんこく", + "pos": "名詞", + "pn": -0.240264 + }, + { + "surface": "弱電", + "readging": "じゃくでん", + "pos": "名詞", + "pn": -0.240281 + }, + { + "surface": "突っ走る", + "readging": "つっぱしる", + "pos": "動詞", + "pn": -0.24029 + }, + { + "surface": "卍", + "readging": "まんじ", + "pos": "名詞", + "pn": -0.2403 + }, + { + "surface": "遊撃", + "readging": "ゆうげき", + "pos": "名詞", + "pn": -0.240304 + }, + { + "surface": "商家", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.24032 + }, + { + "surface": "氏姓制度", + "readging": "しせいせいど", + "pos": "名詞", + "pn": -0.240329 + }, + { + "surface": "フェンス", + "readging": "フェンス", + "pos": "名詞", + "pn": -0.240375 + }, + { + "surface": "征衣", + "readging": "せいい", + "pos": "名詞", + "pn": -0.240376 + }, + { + "surface": "地番", + "readging": "ちばん", + "pos": "名詞", + "pn": -0.240405 + }, + { + "surface": "自在画", + "readging": "じざいが", + "pos": "名詞", + "pn": -0.240427 + }, + { + "surface": "評言", + "readging": "ひょうげん", + "pos": "名詞", + "pn": -0.240432 + }, + { + "surface": "オーダー", + "readging": "オーダー", + "pos": "名詞", + "pn": -0.240444 + }, + { + "surface": "定点", + "readging": "ていてん", + "pos": "名詞", + "pn": -0.240467 + }, + { + "surface": "早霜", + "readging": "はやじも", + "pos": "名詞", + "pn": -0.240505 + }, + { + "surface": "山系", + "readging": "さんけい", + "pos": "名詞", + "pn": -0.240508 + }, + { + "surface": "柳色", + "readging": "りゅうしょく", + "pos": "名詞", + "pn": -0.240509 + }, + { + "surface": "トリオ", + "readging": "トリオ", + "pos": "名詞", + "pn": -0.240512 + }, + { + "surface": "ジャンル", + "readging": "ジャンル", + "pos": "名詞", + "pn": -0.240519 + }, + { + "surface": "召集令", + "readging": "しょうしゅうれい", + "pos": "名詞", + "pn": -0.240523 + }, + { + "surface": "縮写", + "readging": "しゅくしゃ", + "pos": "名詞", + "pn": -0.240523 + }, + { + "surface": "講読", + "readging": "こうどく", + "pos": "名詞", + "pn": -0.240534 + }, + { + "surface": "デス マスク", + "readging": "デス マスク", + "pos": "名詞", + "pn": -0.240544 + }, + { + "surface": "モーニング", + "readging": "モーニング", + "pos": "名詞", + "pn": -0.240559 + }, + { + "surface": "格天井", + "readging": "ごうてんじょう", + "pos": "名詞", + "pn": -0.240565 + }, + { + "surface": "鼎立", + "readging": "ていりつ", + "pos": "名詞", + "pn": -0.240566 + }, + { + "surface": "始祖", + "readging": "しそ", + "pos": "名詞", + "pn": -0.240574 + }, + { + "surface": "照空灯", + "readging": "しょうくうとう", + "pos": "名詞", + "pn": -0.240576 + }, + { + "surface": "里", + "readging": "さと", + "pos": "名詞", + "pn": -0.240582 + }, + { + "surface": "笹藪", + "readging": "ささやぶ", + "pos": "名詞", + "pn": -0.240583 + }, + { + "surface": "鮨詰", + "readging": "すしづめ", + "pos": "名詞", + "pn": -0.240588 + }, + { + "surface": "副使", + "readging": "ふくし", + "pos": "名詞", + "pn": -0.240595 + }, + { + "surface": "烏帽子親", + "readging": "えぼしおや", + "pos": "名詞", + "pn": -0.24063 + }, + { + "surface": "集団保障", + "readging": "しゅうだんほしょう", + "pos": "名詞", + "pn": -0.240633 + }, + { + "surface": "先生", + "readging": "せんせい", + "pos": "名詞", + "pn": -0.24065 + }, + { + "surface": "常民", + "readging": "じょうみん", + "pos": "名詞", + "pn": -0.240652 + }, + { + "surface": "尻拭い", + "readging": "しりぬぐい", + "pos": "名詞", + "pn": -0.240658 + }, + { + "surface": "年端", + "readging": "としは", + "pos": "名詞", + "pn": -0.240659 + }, + { + "surface": "頷く", + "readging": "うなずく", + "pos": "動詞", + "pn": -0.240676 + }, + { + "surface": "四半分", + "readging": "しはんぶん", + "pos": "名詞", + "pn": -0.240682 + }, + { + "surface": "紅", + "readging": "くれない", + "pos": "名詞", + "pn": -0.240688 + }, + { + "surface": "執行部", + "readging": "しっこうぶ", + "pos": "名詞", + "pn": -0.240696 + }, + { + "surface": "比例", + "readging": "ひれい", + "pos": "名詞", + "pn": -0.240705 + }, + { + "surface": "玉案", + "readging": "ぎょくあん", + "pos": "名詞", + "pn": -0.240708 + }, + { + "surface": "常設館", + "readging": "じょうせつかん", + "pos": "名詞", + "pn": -0.240727 + }, + { + "surface": "審問", + "readging": "しんもん", + "pos": "名詞", + "pn": -0.240727 + }, + { + "surface": "土佐節", + "readging": "とさぶし", + "pos": "名詞", + "pn": -0.240772 + }, + { + "surface": "戦士", + "readging": "せんし", + "pos": "名詞", + "pn": -0.240775 + }, + { + "surface": "屑屋", + "readging": "くずや", + "pos": "名詞", + "pn": -0.240798 + }, + { + "surface": "責め道具", + "readging": "せめどうぐ", + "pos": "名詞", + "pn": -0.240831 + }, + { + "surface": "気密", + "readging": "きみつ", + "pos": "名詞", + "pn": -0.240863 + }, + { + "surface": "御手許", + "readging": "おてもと", + "pos": "名詞", + "pn": -0.240867 + }, + { + "surface": "支所", + "readging": "ししょ", + "pos": "名詞", + "pn": -0.240879 + }, + { + "surface": "不行届", + "readging": "ふゆきとどき", + "pos": "名詞", + "pn": -0.240882 + }, + { + "surface": "三の酉", + "readging": "さんのとり", + "pos": "名詞", + "pn": -0.240908 + }, + { + "surface": "アウフヘーベン", + "readging": "アウフヘーベン", + "pos": "名詞", + "pn": -0.24091 + }, + { + "surface": "メカニズム", + "readging": "メカニズム", + "pos": "名詞", + "pn": -0.240938 + }, + { + "surface": "漸次", + "readging": "ぜんじ", + "pos": "副詞", + "pn": -0.24094 + }, + { + "surface": "碑文", + "readging": "ひぶん", + "pos": "名詞", + "pn": -0.240984 + }, + { + "surface": "悪魔主義", + "readging": "あくましゅぎ", + "pos": "名詞", + "pn": -0.240997 + }, + { + "surface": "羽風", + "readging": "はかぜ", + "pos": "名詞", + "pn": -0.240999 + }, + { + "surface": "製法", + "readging": "せいほう", + "pos": "名詞", + "pn": -0.241015 + }, + { + "surface": "局方", + "readging": "きょくほう", + "pos": "名詞", + "pn": -0.24103 + }, + { + "surface": "秋郊", + "readging": "しゅうこう", + "pos": "名詞", + "pn": -0.241034 + }, + { + "surface": "黄檗宗", + "readging": "おうばくしゅう", + "pos": "名詞", + "pn": -0.24105 + }, + { + "surface": "小柴垣", + "readging": "こしばがき", + "pos": "名詞", + "pn": -0.241067 + }, + { + "surface": "宗族", + "readging": "そうぞく", + "pos": "名詞", + "pn": -0.241077 + }, + { + "surface": "金券", + "readging": "きんけん", + "pos": "名詞", + "pn": -0.241089 + }, + { + "surface": "全通", + "readging": "ぜんつう", + "pos": "名詞", + "pn": -0.241091 + }, + { + "surface": "会食", + "readging": "かいしょく", + "pos": "名詞", + "pn": -0.241096 + }, + { + "surface": "寒露", + "readging": "かんろ", + "pos": "名詞", + "pn": -0.241112 + }, + { + "surface": "六界", + "readging": "ろっかい", + "pos": "名詞", + "pn": -0.241121 + }, + { + "surface": "爆雷", + "readging": "ばくらい", + "pos": "名詞", + "pn": -0.241127 + }, + { + "surface": "照魔鏡", + "readging": "しょうまきょう", + "pos": "名詞", + "pn": -0.24113 + }, + { + "surface": "ステーション", + "readging": "ステーション", + "pos": "名詞", + "pn": -0.241132 + }, + { + "surface": "イベント", + "readging": "イベント", + "pos": "名詞", + "pn": -0.241175 + }, + { + "surface": "法定貨幣", + "readging": "ほうていかへい", + "pos": "名詞", + "pn": -0.241187 + }, + { + "surface": "共同謀議", + "readging": "きょうどうぼうぎ", + "pos": "名詞", + "pn": -0.241195 + }, + { + "surface": "所為", + "readging": "しょい", + "pos": "名詞", + "pn": -0.241214 + }, + { + "surface": "約言", + "readging": "やくげん", + "pos": "名詞", + "pn": -0.24123 + }, + { + "surface": "御息所", + "readging": "みやすんどころ", + "pos": "名詞", + "pn": -0.241233 + }, + { + "surface": "フォーラム", + "readging": "フォーラム", + "pos": "名詞", + "pn": -0.241237 + }, + { + "surface": "白衣", + "readging": "はくい", + "pos": "名詞", + "pn": -0.241256 + }, + { + "surface": "短小", + "readging": "たんしょう", + "pos": "名詞", + "pn": -0.241267 + }, + { + "surface": "場繋ぎ", + "readging": "ばつなぎ", + "pos": "名詞", + "pn": -0.241269 + }, + { + "surface": "連俳", + "readging": "れんぱい", + "pos": "名詞", + "pn": -0.241276 + }, + { + "surface": "先渡し", + "readging": "さきわたし", + "pos": "名詞", + "pn": -0.241283 + }, + { + "surface": "体位", + "readging": "たいい", + "pos": "名詞", + "pn": -0.241301 + }, + { + "surface": "億兆", + "readging": "おくちょう", + "pos": "名詞", + "pn": -0.241302 + }, + { + "surface": "指導原理", + "readging": "しどうげんり", + "pos": "名詞", + "pn": -0.241342 + }, + { + "surface": "空中分解", + "readging": "くうちゅうぶんかい", + "pos": "名詞", + "pn": -0.241361 + }, + { + "surface": "紅鮭", + "readging": "べにざけ", + "pos": "名詞", + "pn": -0.241361 + }, + { + "surface": "アドバイス", + "readging": "アドバイス", + "pos": "名詞", + "pn": -0.241364 + }, + { + "surface": "不具", + "readging": "ふぐ", + "pos": "名詞", + "pn": -0.241385 + }, + { + "surface": "日めくり", + "readging": "ひめくり", + "pos": "名詞", + "pn": -0.241404 + }, + { + "surface": "反騰", + "readging": "はんとう", + "pos": "名詞", + "pn": -0.241438 + }, + { + "surface": "兵隊", + "readging": "へいたい", + "pos": "名詞", + "pn": -0.241438 + }, + { + "surface": "激流", + "readging": "げきりゅう", + "pos": "名詞", + "pn": -0.241445 + }, + { + "surface": "購入", + "readging": "こうにゅう", + "pos": "名詞", + "pn": -0.241449 + }, + { + "surface": "肉芽", + "readging": "にくが", + "pos": "名詞", + "pn": -0.241467 + }, + { + "surface": "悉皆屋", + "readging": "しっかいや", + "pos": "名詞", + "pn": -0.241487 + }, + { + "surface": "参向", + "readging": "さんこう", + "pos": "名詞", + "pn": -0.241491 + }, + { + "surface": "ポリエステル", + "readging": "ポリエステル", + "pos": "名詞", + "pn": -0.241491 + }, + { + "surface": "馬鹿笑い", + "readging": "ばかわらい", + "pos": "名詞", + "pn": -0.241491 + }, + { + "surface": "邦土", + "readging": "ほうど", + "pos": "名詞", + "pn": -0.241531 + }, + { + "surface": "春分", + "readging": "しゅんぶん", + "pos": "名詞", + "pn": -0.241537 + }, + { + "surface": "コンサート", + "readging": "コンサートマスター", + "pos": "名詞", + "pn": -0.24157 + }, + { + "surface": "付図", + "readging": "ふず", + "pos": "名詞", + "pn": -0.241575 + }, + { + "surface": "五音", + "readging": "ごおん", + "pos": "名詞", + "pn": -0.241582 + }, + { + "surface": "両刃", + "readging": "りょうば", + "pos": "名詞", + "pn": -0.241594 + }, + { + "surface": "単級", + "readging": "たんきゅう", + "pos": "名詞", + "pn": -0.241611 + }, + { + "surface": "一期", + "readging": "いちご", + "pos": "名詞", + "pn": -0.241613 + }, + { + "surface": "職印", + "readging": "しょくいん", + "pos": "名詞", + "pn": -0.241622 + }, + { + "surface": "夏至", + "readging": "げし", + "pos": "名詞", + "pn": -0.241628 + }, + { + "surface": "校規", + "readging": "こうき", + "pos": "名詞", + "pn": -0.241642 + }, + { + "surface": "でんき分解", + "readging": "でんきぶんかい", + "pos": "名詞", + "pn": -0.241656 + }, + { + "surface": "旅寝", + "readging": "たびね", + "pos": "名詞", + "pn": -0.241657 + }, + { + "surface": "李下", + "readging": "りか", + "pos": "名詞", + "pn": -0.241667 + }, + { + "surface": "信用調査", + "readging": "しんようちょうさ", + "pos": "名詞", + "pn": -0.241685 + }, + { + "surface": "使途", + "readging": "しと", + "pos": "名詞", + "pn": -0.241686 + }, + { + "surface": "翰林院", + "readging": "かんりんいん", + "pos": "名詞", + "pn": -0.241699 + }, + { + "surface": "検校", + "readging": "けんぎょう", + "pos": "名詞", + "pn": -0.241704 + }, + { + "surface": "まるこう", + "readging": "まるこう", + "pos": "名詞", + "pn": -0.241721 + }, + { + "surface": "寝食", + "readging": "しんしょく", + "pos": "名詞", + "pn": -0.241733 + }, + { + "surface": "清浄", + "readging": "しょうじょう", + "pos": "名詞", + "pn": -0.241734 + }, + { + "surface": "架台", + "readging": "かだい", + "pos": "名詞", + "pn": -0.241744 + }, + { + "surface": "語り明かす", + "readging": "かたりあかす", + "pos": "動詞", + "pn": -0.241751 + }, + { + "surface": "赤目魚", + "readging": "めなだ", + "pos": "名詞", + "pn": -0.241755 + }, + { + "surface": "捕虫網", + "readging": "ほちゅうあみ", + "pos": "名詞", + "pn": -0.241759 + }, + { + "surface": "血肉", + "readging": "けつにく", + "pos": "名詞", + "pn": -0.241773 + }, + { + "surface": "短靴", + "readging": "たんぐつ", + "pos": "名詞", + "pn": -0.241785 + }, + { + "surface": "字面", + "readging": "じづら", + "pos": "名詞", + "pn": -0.241785 + }, + { + "surface": "大全", + "readging": "たいぜん", + "pos": "名詞", + "pn": -0.241803 + }, + { + "surface": "姫松", + "readging": "ひめまつ", + "pos": "名詞", + "pn": -0.241808 + }, + { + "surface": "公傷", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.241834 + }, + { + "surface": "鱚", + "readging": "きす", + "pos": "名詞", + "pn": -0.241837 + }, + { + "surface": "モールス符号", + "readging": "モールスふごう", + "pos": "名詞", + "pn": -0.241843 + }, + { + "surface": "かちんと", + "readging": "かちんと", + "pos": "副詞", + "pn": -0.24185 + }, + { + "surface": "木強漢", + "readging": "ぼっきょうかん", + "pos": "名詞", + "pn": -0.241858 + }, + { + "surface": "タックル", + "readging": "タックル", + "pos": "名詞", + "pn": -0.241862 + }, + { + "surface": "ソフィスト", + "readging": "ソフィスト", + "pos": "名詞", + "pn": -0.241872 + }, + { + "surface": "送呈", + "readging": "そうてい", + "pos": "名詞", + "pn": -0.241887 + }, + { + "surface": "待機", + "readging": "たいき", + "pos": "名詞", + "pn": -0.241894 + }, + { + "surface": "水飲み", + "readging": "みずのみ", + "pos": "名詞", + "pn": -0.241897 + }, + { + "surface": "聞及ぶ", + "readging": "ききおよぶ", + "pos": "動詞", + "pn": -0.241913 + }, + { + "surface": "ふらっと", + "readging": "ふらっと", + "pos": "副詞", + "pn": -0.241926 + }, + { + "surface": "気障り", + "readging": "きざわり", + "pos": "名詞", + "pn": -0.241934 + }, + { + "surface": "人寄せ", + "readging": "ひとよせ", + "pos": "名詞", + "pn": -0.241979 + }, + { + "surface": "嘱する", + "readging": "しょくする", + "pos": "動詞", + "pn": -0.241982 + }, + { + "surface": "発覚", + "readging": "はっかく", + "pos": "名詞", + "pn": -0.241988 + }, + { + "surface": "保父", + "readging": "ほふ", + "pos": "名詞", + "pn": -0.241991 + }, + { + "surface": "鏤骨", + "readging": "るこつ", + "pos": "名詞", + "pn": -0.241999 + }, + { + "surface": "大域", + "readging": "たいいき", + "pos": "名詞", + "pn": -0.242003 + }, + { + "surface": "樺", + "readging": "かば", + "pos": "名詞", + "pn": -0.242003 + }, + { + "surface": "個人差", + "readging": "こじんさ", + "pos": "名詞", + "pn": -0.242004 + }, + { + "surface": "集荷", + "readging": "しゅうか", + "pos": "名詞", + "pn": -0.242006 + }, + { + "surface": "姻戚", + "readging": "いんせき", + "pos": "名詞", + "pn": -0.242028 + }, + { + "surface": "母艦", + "readging": "ぼかん", + "pos": "名詞", + "pn": -0.242028 + }, + { + "surface": "煎剤", + "readging": "せんざい", + "pos": "名詞", + "pn": -0.242042 + }, + { + "surface": "染め粉", + "readging": "そめこ", + "pos": "名詞", + "pn": -0.242056 + }, + { + "surface": "落穂", + "readging": "おちぼ", + "pos": "名詞", + "pn": -0.242066 + }, + { + "surface": "琴線", + "readging": "きんせん", + "pos": "名詞", + "pn": -0.242099 + }, + { + "surface": "心字池", + "readging": "しんじいけ", + "pos": "名詞", + "pn": -0.242119 + }, + { + "surface": "白兵戦", + "readging": "はくへいせん", + "pos": "名詞", + "pn": -0.242139 + }, + { + "surface": "ノギス", + "readging": "ノギス", + "pos": "名詞", + "pn": -0.242195 + }, + { + "surface": "談", + "readging": "だん", + "pos": "名詞", + "pn": -0.242199 + }, + { + "surface": "別働隊", + "readging": "べつどうたい", + "pos": "名詞", + "pn": -0.242201 + }, + { + "surface": "百貨店", + "readging": "ひゃっかてん", + "pos": "名詞", + "pn": -0.242201 + }, + { + "surface": "物影", + "readging": "ものかげ", + "pos": "名詞", + "pn": -0.242212 + }, + { + "surface": "漉く", + "readging": "すく", + "pos": "動詞", + "pn": -0.242223 + }, + { + "surface": "劇団", + "readging": "げきだん", + "pos": "名詞", + "pn": -0.242228 + }, + { + "surface": "ジョーカー", + "readging": "ジョーカー", + "pos": "名詞", + "pn": -0.242317 + }, + { + "surface": "銀婚式", + "readging": "ぎんこんしき", + "pos": "名詞", + "pn": -0.242343 + }, + { + "surface": "ぶち抜く", + "readging": "ぶちぬく", + "pos": "動詞", + "pn": -0.242364 + }, + { + "surface": "理不尽", + "readging": "りふじん", + "pos": "名詞", + "pn": -0.242378 + }, + { + "surface": "熟れる", + "readging": "うれる", + "pos": "動詞", + "pn": -0.242384 + }, + { + "surface": "辰宿", + "readging": "しんしゅく", + "pos": "名詞", + "pn": -0.242389 + }, + { + "surface": "上告審", + "readging": "じょうこくしん", + "pos": "名詞", + "pn": -0.242398 + }, + { + "surface": "邦楽", + "readging": "ほうがく", + "pos": "名詞", + "pn": -0.242425 + }, + { + "surface": "電気機関車", + "readging": "でんききかんしゃ", + "pos": "名詞", + "pn": -0.242429 + }, + { + "surface": "下位分類", + "readging": "かいぶんるい", + "pos": "名詞", + "pn": -0.242435 + }, + { + "surface": "三面", + "readging": "さんめん", + "pos": "名詞", + "pn": -0.242441 + }, + { + "surface": "銀座", + "readging": "ぎんざ", + "pos": "名詞", + "pn": -0.242447 + }, + { + "surface": "諸式", + "readging": "しょしき", + "pos": "名詞", + "pn": -0.242456 + }, + { + "surface": "新山", + "readging": "しんやま", + "pos": "名詞", + "pn": -0.242458 + }, + { + "surface": "山番", + "readging": "やまばん", + "pos": "名詞", + "pn": -0.242502 + }, + { + "surface": "床飾り", + "readging": "とこかざり", + "pos": "名詞", + "pn": -0.24252 + }, + { + "surface": "飛車", + "readging": "ひしゃ", + "pos": "名詞", + "pn": -0.242527 + }, + { + "surface": "絵", + "readging": "え", + "pos": "名詞", + "pn": -0.242537 + }, + { + "surface": "性格", + "readging": "せいかく", + "pos": "名詞", + "pn": -0.242544 + }, + { + "surface": "添状", + "readging": "そえじょう", + "pos": "名詞", + "pn": -0.242571 + }, + { + "surface": "反命", + "readging": "はんめい", + "pos": "名詞", + "pn": -0.242572 + }, + { + "surface": "捌く", + "readging": "さばく", + "pos": "動詞", + "pn": -0.242611 + }, + { + "surface": "解釈", + "readging": "かいしゃく", + "pos": "名詞", + "pn": -0.242611 + }, + { + "surface": "未決監", + "readging": "みけつかん", + "pos": "名詞", + "pn": -0.242612 + }, + { + "surface": "史実", + "readging": "しじつ", + "pos": "名詞", + "pn": -0.242631 + }, + { + "surface": "主薬", + "readging": "しゅやく", + "pos": "名詞", + "pn": -0.242641 + }, + { + "surface": "無機化学", + "readging": "むきかがく", + "pos": "名詞", + "pn": -0.24266 + }, + { + "surface": "朔北", + "readging": "さくほく", + "pos": "名詞", + "pn": -0.242671 + }, + { + "surface": "べんちゃら", + "readging": "べんちゃら", + "pos": "名詞", + "pn": -0.242676 + }, + { + "surface": "使徒", + "readging": "しと", + "pos": "名詞", + "pn": -0.242685 + }, + { + "surface": "心筋", + "readging": "しんきん", + "pos": "名詞", + "pn": -0.242703 + }, + { + "surface": "練歩く", + "readging": "ねりあるく", + "pos": "動詞", + "pn": -0.242714 + }, + { + "surface": "NG", + "readging": "エヌジー", + "pos": "名詞", + "pn": -0.242716 + }, + { + "surface": "でんでん虫", + "readging": "でんでんむし", + "pos": "名詞", + "pn": -0.242724 + }, + { + "surface": "崩御", + "readging": "ほうぎょ", + "pos": "名詞", + "pn": -0.242739 + }, + { + "surface": "満ち欠け", + "readging": "みちかけ", + "pos": "名詞", + "pn": -0.242741 + }, + { + "surface": "キャッチャー", + "readging": "キャッチャー", + "pos": "名詞", + "pn": -0.242753 + }, + { + "surface": "髄質", + "readging": "ずいしつ", + "pos": "名詞", + "pn": -0.242755 + }, + { + "surface": "戎衣", + "readging": "じゅうい", + "pos": "名詞", + "pn": -0.242755 + }, + { + "surface": "刀", + "readging": "かたな", + "pos": "名詞", + "pn": -0.242784 + }, + { + "surface": "標示", + "readging": "ひょうじ", + "pos": "名詞", + "pn": -0.242798 + }, + { + "surface": "譜代", + "readging": "ふだい", + "pos": "名詞", + "pn": -0.242798 + }, + { + "surface": "小話", + "readging": "しょうわ", + "pos": "名詞", + "pn": -0.242816 + }, + { + "surface": "天蚕", + "readging": "てんさん", + "pos": "名詞", + "pn": -0.242827 + }, + { + "surface": "お古", + "readging": "おふる", + "pos": "名詞", + "pn": -0.242841 + }, + { + "surface": "政党内閣", + "readging": "せいとうないかく", + "pos": "名詞", + "pn": -0.242846 + }, + { + "surface": "咆哮", + "readging": "ほうこう", + "pos": "名詞", + "pn": -0.242878 + }, + { + "surface": "過現未", + "readging": "かげんみ", + "pos": "名詞", + "pn": -0.242896 + }, + { + "surface": "相殺", + "readging": "そうさい", + "pos": "名詞", + "pn": -0.242907 + }, + { + "surface": "出征", + "readging": "しゅっせい", + "pos": "名詞", + "pn": -0.242911 + }, + { + "surface": "民主", + "readging": "みんしゅ", + "pos": "名詞", + "pn": -0.242915 + }, + { + "surface": "トースター", + "readging": "トースター", + "pos": "名詞", + "pn": -0.242933 + }, + { + "surface": "赤燐", + "readging": "せきりん", + "pos": "名詞", + "pn": -0.242954 + }, + { + "surface": "コンソール", + "readging": "コンソール", + "pos": "名詞", + "pn": -0.242954 + }, + { + "surface": "古参", + "readging": "こさん", + "pos": "名詞", + "pn": -0.242958 + }, + { + "surface": "停車場", + "readging": "ていしゃば", + "pos": "名詞", + "pn": -0.242969 + }, + { + "surface": "香の物", + "readging": "こうのもの", + "pos": "名詞", + "pn": -0.242971 + }, + { + "surface": "絹小町", + "readging": "きぬこまち", + "pos": "名詞", + "pn": -0.242974 + }, + { + "surface": "町民", + "readging": "ちょうみん", + "pos": "名詞", + "pn": -0.242977 + }, + { + "surface": "中道", + "readging": "ちゅうどう", + "pos": "名詞", + "pn": -0.243023 + }, + { + "surface": "昼夜帯", + "readging": "ちゅうやおび", + "pos": "名詞", + "pn": -0.243052 + }, + { + "surface": "梅雨", + "readging": "つゆばれ", + "pos": "名詞", + "pn": -0.243074 + }, + { + "surface": "ペニー", + "readging": "ペニー", + "pos": "名詞", + "pn": -0.243076 + }, + { + "surface": "シューズ", + "readging": "シューズ", + "pos": "名詞", + "pn": -0.243083 + }, + { + "surface": "初生り", + "readging": "はつなり", + "pos": "名詞", + "pn": -0.243089 + }, + { + "surface": "商う", + "readging": "あきなう", + "pos": "動詞", + "pn": -0.2431 + }, + { + "surface": "配当", + "readging": "はいとう", + "pos": "名詞", + "pn": -0.243111 + }, + { + "surface": "遣水", + "readging": "やりみず", + "pos": "名詞", + "pn": -0.243123 + }, + { + "surface": "風声鶴唳", + "readging": "ふうせいかくれい", + "pos": "名詞", + "pn": -0.24313 + }, + { + "surface": "アンペア", + "readging": "アンペア", + "pos": "名詞", + "pn": -0.243136 + }, + { + "surface": "徳性", + "readging": "とくせい", + "pos": "名詞", + "pn": -0.243137 + }, + { + "surface": "国民所得", + "readging": "こくみんしょとく", + "pos": "名詞", + "pn": -0.24314 + }, + { + "surface": "即題", + "readging": "そくだい", + "pos": "名詞", + "pn": -0.243176 + }, + { + "surface": "震央", + "readging": "しんおう", + "pos": "名詞", + "pn": -0.243193 + }, + { + "surface": "望楼", + "readging": "ぼうろう", + "pos": "名詞", + "pn": -0.2432 + }, + { + "surface": "アンチモニー", + "readging": "アンチモニー", + "pos": "名詞", + "pn": -0.243209 + }, + { + "surface": "仏舎利", + "readging": "ぶっしゃり", + "pos": "名詞", + "pn": -0.243221 + }, + { + "surface": "離村", + "readging": "りそん", + "pos": "名詞", + "pn": -0.243222 + }, + { + "surface": "洋食", + "readging": "ようしょく", + "pos": "名詞", + "pn": -0.243228 + }, + { + "surface": "限る", + "readging": "かぎる", + "pos": "動詞", + "pn": -0.243242 + }, + { + "surface": "空際", + "readging": "くうさい", + "pos": "名詞", + "pn": -0.243252 + }, + { + "surface": "叙述", + "readging": "じょじゅつ", + "pos": "名詞", + "pn": -0.243253 + }, + { + "surface": "弓道", + "readging": "きゅうどう", + "pos": "名詞", + "pn": -0.243254 + }, + { + "surface": "僧服", + "readging": "そうふく", + "pos": "名詞", + "pn": -0.243255 + }, + { + "surface": "死相", + "readging": "しそう", + "pos": "名詞", + "pn": -0.243261 + }, + { + "surface": "申達", + "readging": "しんたつ", + "pos": "名詞", + "pn": -0.243264 + }, + { + "surface": "共有", + "readging": "きょうゆう", + "pos": "名詞", + "pn": -0.243268 + }, + { + "surface": "奇利", + "readging": "きり", + "pos": "名詞", + "pn": -0.2433 + }, + { + "surface": "続発", + "readging": "ぞくはつ", + "pos": "名詞", + "pn": -0.243339 + }, + { + "surface": "弱り目", + "readging": "よわりめ", + "pos": "名詞", + "pn": -0.243346 + }, + { + "surface": "令状", + "readging": "れいじょう", + "pos": "名詞", + "pn": -0.24335 + }, + { + "surface": "白色人種", + "readging": "はくしょくじんしゅ", + "pos": "名詞", + "pn": -0.243351 + }, + { + "surface": "税込", + "readging": "ぜいこみ", + "pos": "名詞", + "pn": -0.243358 + }, + { + "surface": "暁", + "readging": "ぎょう", + "pos": "名詞", + "pn": -0.243377 + }, + { + "surface": "不時着", + "readging": "ふじちゃく", + "pos": "名詞", + "pn": -0.243379 + }, + { + "surface": "悲恋", + "readging": "ひれん", + "pos": "名詞", + "pn": -0.243415 + }, + { + "surface": "ヘッディング", + "readging": "ヘッディング", + "pos": "名詞", + "pn": -0.243417 + }, + { + "surface": "八朔", + "readging": "はっさく", + "pos": "名詞", + "pn": -0.243419 + }, + { + "surface": "行止り", + "readging": "ゆきどまり", + "pos": "名詞", + "pn": -0.243435 + }, + { + "surface": "高瀬", + "readging": "たかせ", + "pos": "名詞", + "pn": -0.243444 + }, + { + "surface": "焚物", + "readging": "たきもの", + "pos": "名詞", + "pn": -0.243472 + }, + { + "surface": "練絹", + "readging": "ねりぎぬ", + "pos": "名詞", + "pn": -0.243505 + }, + { + "surface": "身ごなし", + "readging": "みごなし", + "pos": "名詞", + "pn": -0.243533 + }, + { + "surface": "二元", + "readging": "にげん", + "pos": "名詞", + "pn": -0.243553 + }, + { + "surface": "焦土", + "readging": "しょうど", + "pos": "名詞", + "pn": -0.243553 + }, + { + "surface": "量水", + "readging": "りょうすい", + "pos": "名詞", + "pn": -0.243555 + }, + { + "surface": "車道", + "readging": "しゃどう", + "pos": "名詞", + "pn": -0.24361 + }, + { + "surface": "改選", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.243612 + }, + { + "surface": "細み", + "readging": "ほそみ", + "pos": "名詞", + "pn": -0.243619 + }, + { + "surface": "吟詠", + "readging": "ぎんえい", + "pos": "名詞", + "pn": -0.243629 + }, + { + "surface": "変位", + "readging": "へんい", + "pos": "名詞", + "pn": -0.243634 + }, + { + "surface": "末葉", + "readging": "ばつよう", + "pos": "名詞", + "pn": -0.243639 + }, + { + "surface": "法帖", + "readging": "ほうじょう", + "pos": "名詞", + "pn": -0.243641 + }, + { + "surface": "初", + "readging": "うい", + "pos": "名詞", + "pn": -0.243643 + }, + { + "surface": "読破", + "readging": "どくは", + "pos": "名詞", + "pn": -0.243645 + }, + { + "surface": "前芸", + "readging": "まえげい", + "pos": "名詞", + "pn": -0.243662 + }, + { + "surface": "令旨", + "readging": "りょうじ", + "pos": "名詞", + "pn": -0.243666 + }, + { + "surface": "複方", + "readging": "ふくほう", + "pos": "名詞", + "pn": -0.243667 + }, + { + "surface": "代弁", + "readging": "だいべん", + "pos": "名詞", + "pn": -0.243669 + }, + { + "surface": "胃の腑", + "readging": "いのふ", + "pos": "名詞", + "pn": -0.243671 + }, + { + "surface": "洗い堰", + "readging": "あらいぜき", + "pos": "名詞", + "pn": -0.243681 + }, + { + "surface": "出金", + "readging": "しゅっきん", + "pos": "名詞", + "pn": -0.243682 + }, + { + "surface": "ジャンパー", + "readging": "ジャンパー", + "pos": "名詞", + "pn": -0.243685 + }, + { + "surface": "雀踊", + "readging": "すずめおどり", + "pos": "名詞", + "pn": -0.243693 + }, + { + "surface": "トーテム", + "readging": "トーテム", + "pos": "名詞", + "pn": -0.243714 + }, + { + "surface": "戯曲", + "readging": "ぎきょく", + "pos": "名詞", + "pn": -0.243721 + }, + { + "surface": "法眼", + "readging": "ほうげん", + "pos": "名詞", + "pn": -0.243726 + }, + { + "surface": "屁の河童", + "readging": "へのかっぱ", + "pos": "名詞", + "pn": -0.243732 + }, + { + "surface": "仏堂", + "readging": "ぶつどう", + "pos": "名詞", + "pn": -0.243734 + }, + { + "surface": "木精", + "readging": "もくせい", + "pos": "名詞", + "pn": -0.243745 + }, + { + "surface": "片ちんば", + "readging": "かたちんば", + "pos": "名詞", + "pn": -0.243752 + }, + { + "surface": "当直", + "readging": "とうちょく", + "pos": "名詞", + "pn": -0.243759 + }, + { + "surface": "澪標", + "readging": "みおつくし", + "pos": "名詞", + "pn": -0.243797 + }, + { + "surface": "金壺", + "readging": "かなつぼ", + "pos": "名詞", + "pn": -0.243803 + }, + { + "surface": "クレオソート", + "readging": "クレオソート", + "pos": "名詞", + "pn": -0.243804 + }, + { + "surface": "召電", + "readging": "しょうでん", + "pos": "名詞", + "pn": -0.243832 + }, + { + "surface": "冬着", + "readging": "ふゆぎ", + "pos": "名詞", + "pn": -0.243832 + }, + { + "surface": "衆", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.243835 + }, + { + "surface": "地籍", + "readging": "ちせき", + "pos": "名詞", + "pn": -0.243836 + }, + { + "surface": "硫安", + "readging": "りゅうあん", + "pos": "名詞", + "pn": -0.243852 + }, + { + "surface": "ごろごろ", + "readging": "ごろごろ", + "pos": "副詞", + "pn": -0.24387 + }, + { + "surface": "こっくり", + "readging": "こっくり", + "pos": "副詞", + "pn": -0.24388 + }, + { + "surface": "ごまめ", + "readging": "ごまめ", + "pos": "名詞", + "pn": -0.243917 + }, + { + "surface": "記帳", + "readging": "きちょう", + "pos": "名詞", + "pn": -0.243924 + }, + { + "surface": "パーマネント", + "readging": "パーマネント", + "pos": "名詞", + "pn": -0.243926 + }, + { + "surface": "晴雨計", + "readging": "せいうけい", + "pos": "名詞", + "pn": -0.243929 + }, + { + "surface": "月行事", + "readging": "つきぎょうじ", + "pos": "名詞", + "pn": -0.243942 + }, + { + "surface": "金剛杵", + "readging": "こんごうしょ", + "pos": "名詞", + "pn": -0.243947 + }, + { + "surface": "炭殻", + "readging": "たんがら", + "pos": "名詞", + "pn": -0.243958 + }, + { + "surface": "亜", + "readging": "あ", + "pos": "名詞", + "pn": -0.243988 + }, + { + "surface": "妄想", + "readging": "もうぞう", + "pos": "名詞", + "pn": -0.244 + }, + { + "surface": "辻札", + "readging": "つじふだ", + "pos": "名詞", + "pn": -0.244037 + }, + { + "surface": "桜ん坊", + "readging": "さくらんぼう", + "pos": "名詞", + "pn": -0.244079 + }, + { + "surface": "内務", + "readging": "ないむ", + "pos": "名詞", + "pn": -0.244083 + }, + { + "surface": "レーン シューズ", + "readging": "レーン シューズ", + "pos": "名詞", + "pn": -0.244085 + }, + { + "surface": "定量分析", + "readging": "ていりょうぶんせき", + "pos": "名詞", + "pn": -0.244105 + }, + { + "surface": "決意", + "readging": "けつい", + "pos": "名詞", + "pn": -0.244117 + }, + { + "surface": "牧", + "readging": "まき", + "pos": "名詞", + "pn": -0.244126 + }, + { + "surface": "軍政", + "readging": "ぐんせい", + "pos": "名詞", + "pn": -0.24417 + }, + { + "surface": "入物", + "readging": "いれもの", + "pos": "名詞", + "pn": -0.244182 + }, + { + "surface": "四姓", + "readging": "しせい", + "pos": "名詞", + "pn": -0.244189 + }, + { + "surface": "職長", + "readging": "しょくちょう", + "pos": "名詞", + "pn": -0.244199 + }, + { + "surface": "大正琴", + "readging": "たいしょうごと", + "pos": "名詞", + "pn": -0.244233 + }, + { + "surface": "選鉱", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.244265 + }, + { + "surface": "仕上り", + "readging": "しあがり", + "pos": "名詞", + "pn": -0.244275 + }, + { + "surface": "祈祷", + "readging": "きとう", + "pos": "名詞", + "pn": -0.244293 + }, + { + "surface": "ぴしぴし", + "readging": "ぴしぴし", + "pos": "副詞", + "pn": -0.244313 + }, + { + "surface": "ワン パターン", + "readging": "ワン パターン", + "pos": "名詞", + "pn": -0.244343 + }, + { + "surface": "金環食", + "readging": "きんかんしょく", + "pos": "名詞", + "pn": -0.244352 + }, + { + "surface": "長歌", + "readging": "ちょうか", + "pos": "名詞", + "pn": -0.244356 + }, + { + "surface": "文鎮", + "readging": "ぶんちん", + "pos": "名詞", + "pn": -0.244365 + }, + { + "surface": "ゴー ストップ", + "readging": "ゴー ストップ", + "pos": "名詞", + "pn": -0.244366 + }, + { + "surface": "信条", + "readging": "しんじょう", + "pos": "名詞", + "pn": -0.244366 + }, + { + "surface": "転用", + "readging": "てんよう", + "pos": "名詞", + "pn": -0.244368 + }, + { + "surface": "五等爵", + "readging": "ごとうしゃく", + "pos": "名詞", + "pn": -0.244371 + }, + { + "surface": "小冊", + "readging": "しょうさつ", + "pos": "名詞", + "pn": -0.244394 + }, + { + "surface": "内弟子", + "readging": "うちでし", + "pos": "名詞", + "pn": -0.244398 + }, + { + "surface": "貸売り", + "readging": "かしうり", + "pos": "名詞", + "pn": -0.244405 + }, + { + "surface": "惚気る", + "readging": "のろける", + "pos": "動詞", + "pn": -0.244406 + }, + { + "surface": "エピローグ", + "readging": "エピローグ", + "pos": "名詞", + "pn": -0.244411 + }, + { + "surface": "剥き身", + "readging": "むきみ", + "pos": "名詞", + "pn": -0.244413 + }, + { + "surface": "地階", + "readging": "ちかい", + "pos": "名詞", + "pn": -0.244416 + }, + { + "surface": "食客", + "readging": "しょっかく", + "pos": "名詞", + "pn": -0.244422 + }, + { + "surface": "駆潜艇", + "readging": "くせんてい", + "pos": "名詞", + "pn": -0.244425 + }, + { + "surface": "所得税", + "readging": "しょとくぜい", + "pos": "名詞", + "pn": -0.24443 + }, + { + "surface": "広漠", + "readging": "こうばく", + "pos": "名詞", + "pn": -0.244432 + }, + { + "surface": "純毛", + "readging": "じゅんもう", + "pos": "名詞", + "pn": -0.24444 + }, + { + "surface": "藤波", + "readging": "ふじなみ", + "pos": "名詞", + "pn": -0.244449 + }, + { + "surface": "風力", + "readging": "ふうりょく", + "pos": "名詞", + "pn": -0.244465 + }, + { + "surface": "銅鉢", + "readging": "どうはち", + "pos": "名詞", + "pn": -0.244491 + }, + { + "surface": "総じて", + "readging": "そうじて", + "pos": "副詞", + "pn": -0.244492 + }, + { + "surface": "けちる", + "readging": "けちる", + "pos": "動詞", + "pn": -0.244499 + }, + { + "surface": "音量", + "readging": "おんりょう", + "pos": "名詞", + "pn": -0.244511 + }, + { + "surface": "均等", + "readging": "きんとう", + "pos": "名詞", + "pn": -0.244516 + }, + { + "surface": "金輪", + "readging": "かなわ", + "pos": "名詞", + "pn": -0.244518 + }, + { + "surface": "潜水", + "readging": "せんすい", + "pos": "名詞", + "pn": -0.244537 + }, + { + "surface": "割愛", + "readging": "かつあい", + "pos": "名詞", + "pn": -0.244545 + }, + { + "surface": "画稿", + "readging": "がこう", + "pos": "名詞", + "pn": -0.244546 + }, + { + "surface": "二元論", + "readging": "にげんろん", + "pos": "名詞", + "pn": -0.244556 + }, + { + "surface": "クーラー", + "readging": "クーラー", + "pos": "名詞", + "pn": -0.244576 + }, + { + "surface": "所帯", + "readging": "しょたい", + "pos": "名詞", + "pn": -0.244591 + }, + { + "surface": "陰萎", + "readging": "いんい", + "pos": "名詞", + "pn": -0.244595 + }, + { + "surface": "ニヒリスト", + "readging": "ニヒリスト", + "pos": "名詞", + "pn": -0.244634 + }, + { + "surface": "念書", + "readging": "ねんしょ", + "pos": "名詞", + "pn": -0.244643 + }, + { + "surface": "洋刀", + "readging": "ようとう", + "pos": "名詞", + "pn": -0.244672 + }, + { + "surface": "スペキュレーション", + "readging": "スペキュレーション", + "pos": "名詞", + "pn": -0.244672 + }, + { + "surface": "擬制資本", + "readging": "ぎせいしほん", + "pos": "名詞", + "pn": -0.244674 + }, + { + "surface": "一季", + "readging": "いっき", + "pos": "名詞", + "pn": -0.244702 + }, + { + "surface": "労働力", + "readging": "ろうどうりょく", + "pos": "名詞", + "pn": -0.244702 + }, + { + "surface": "防湿", + "readging": "ぼうしつ", + "pos": "名詞", + "pn": -0.244702 + }, + { + "surface": "ワン クッション", + "readging": "ワン クッション", + "pos": "名詞", + "pn": -0.244735 + }, + { + "surface": "方今", + "readging": "ほうこん", + "pos": "名詞", + "pn": -0.244742 + }, + { + "surface": "桜色", + "readging": "さくらいろ", + "pos": "名詞", + "pn": -0.244748 + }, + { + "surface": "煮え繰り返る", + "readging": "にえくりかえる", + "pos": "動詞", + "pn": -0.244767 + }, + { + "surface": "焚染める", + "readging": "たきしめる", + "pos": "動詞", + "pn": -0.244769 + }, + { + "surface": "堂塔", + "readging": "どうとう", + "pos": "名詞", + "pn": -0.244781 + }, + { + "surface": "ヘリポート", + "readging": "ヘリポート", + "pos": "名詞", + "pn": -0.244793 + }, + { + "surface": "胼胝", + "readging": "たこ", + "pos": "名詞", + "pn": -0.244825 + }, + { + "surface": "本坑", + "readging": "ほんこう", + "pos": "名詞", + "pn": -0.244848 + }, + { + "surface": "四重奏", + "readging": "しじゅうそう", + "pos": "名詞", + "pn": -0.244848 + }, + { + "surface": "蝋細工", + "readging": "ろうざいく", + "pos": "名詞", + "pn": -0.244863 + }, + { + "surface": "挙句", + "readging": "あげく", + "pos": "名詞", + "pn": -0.244864 + }, + { + "surface": "安打", + "readging": "あんだ", + "pos": "名詞", + "pn": -0.244867 + }, + { + "surface": "草食", + "readging": "そうしょく", + "pos": "名詞", + "pn": -0.244903 + }, + { + "surface": "昇降機", + "readging": "しょうこうき", + "pos": "名詞", + "pn": -0.244907 + }, + { + "surface": "サンドイッチ", + "readging": "サンドイッチマン", + "pos": "名詞", + "pn": -0.244916 + }, + { + "surface": "躁狂", + "readging": "そうきょう", + "pos": "名詞", + "pn": -0.244927 + }, + { + "surface": "死力", + "readging": "しりょく", + "pos": "名詞", + "pn": -0.244935 + }, + { + "surface": "さんざ", + "readging": "さんざ", + "pos": "副詞", + "pn": -0.244958 + }, + { + "surface": "ビデオ", + "readging": "ビデオ", + "pos": "名詞", + "pn": -0.244971 + }, + { + "surface": "初七日", + "readging": "しょなのか", + "pos": "名詞", + "pn": -0.24501 + }, + { + "surface": "袖垣", + "readging": "そでがき", + "pos": "名詞", + "pn": -0.245017 + }, + { + "surface": "議題", + "readging": "ぎだい", + "pos": "名詞", + "pn": -0.245019 + }, + { + "surface": "外気", + "readging": "がいき", + "pos": "名詞", + "pn": -0.245034 + }, + { + "surface": "群盲", + "readging": "ぐんもう", + "pos": "名詞", + "pn": -0.245037 + }, + { + "surface": "先導", + "readging": "せんどう", + "pos": "名詞", + "pn": -0.24504 + }, + { + "surface": "局番", + "readging": "きょくばん", + "pos": "名詞", + "pn": -0.245051 + }, + { + "surface": "土用三郎", + "readging": "どようさぶろう", + "pos": "名詞", + "pn": -0.245053 + }, + { + "surface": "旱魃", + "readging": "かんばつ", + "pos": "名詞", + "pn": -0.245086 + }, + { + "surface": "ヒンズー教", + "readging": "ヒンズーきょう", + "pos": "名詞", + "pn": -0.245134 + }, + { + "surface": "茶断ち", + "readging": "ちゃだち", + "pos": "名詞", + "pn": -0.245138 + }, + { + "surface": "賽銭", + "readging": "さいせん", + "pos": "名詞", + "pn": -0.245145 + }, + { + "surface": "出窓", + "readging": "でまど", + "pos": "名詞", + "pn": -0.24521 + }, + { + "surface": "赤樫", + "readging": "あかがし", + "pos": "名詞", + "pn": -0.245229 + }, + { + "surface": "今年", + "readging": "こんねん", + "pos": "名詞", + "pn": -0.245293 + }, + { + "surface": "ウナ", + "readging": "ウナ", + "pos": "名詞", + "pn": -0.245301 + }, + { + "surface": "秘する", + "readging": "ひする", + "pos": "動詞", + "pn": -0.24533 + }, + { + "surface": "反義語", + "readging": "はんぎご", + "pos": "名詞", + "pn": -0.245346 + }, + { + "surface": "小米", + "readging": "こごめ", + "pos": "名詞", + "pn": -0.245347 + }, + { + "surface": "公休", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.245348 + }, + { + "surface": "出語り", + "readging": "でがたり", + "pos": "名詞", + "pn": -0.245349 + }, + { + "surface": "実業", + "readging": "じつぎょう", + "pos": "名詞", + "pn": -0.245358 + }, + { + "surface": "同族", + "readging": "どうぞく", + "pos": "名詞", + "pn": -0.245366 + }, + { + "surface": "類火", + "readging": "るいか", + "pos": "名詞", + "pn": -0.245369 + }, + { + "surface": "単細胞動物", + "readging": "たんさいぼうどうぶつ", + "pos": "名詞", + "pn": -0.245372 + }, + { + "surface": "営造物", + "readging": "えいぞうぶつ", + "pos": "名詞", + "pn": -0.245375 + }, + { + "surface": "ガーリック", + "readging": "ガーリック", + "pos": "名詞", + "pn": -0.24538 + }, + { + "surface": "手引", + "readging": "てびき", + "pos": "名詞", + "pn": -0.245381 + }, + { + "surface": "渋染", + "readging": "しぶぞめ", + "pos": "名詞", + "pn": -0.245398 + }, + { + "surface": "実収", + "readging": "じっしゅう", + "pos": "名詞", + "pn": -0.245412 + }, + { + "surface": "声聞", + "readging": "しょうもん", + "pos": "名詞", + "pn": -0.245414 + }, + { + "surface": "厨", + "readging": "くりや", + "pos": "名詞", + "pn": -0.24542 + }, + { + "surface": "百方", + "readging": "ひゃっぽう", + "pos": "名詞", + "pn": -0.245435 + }, + { + "surface": "下意", + "readging": "かい", + "pos": "名詞", + "pn": -0.245444 + }, + { + "surface": "そわそわ", + "readging": "そわそわ", + "pos": "副詞", + "pn": -0.245483 + }, + { + "surface": "安宿", + "readging": "やすやど", + "pos": "名詞", + "pn": -0.245499 + }, + { + "surface": "忍び泣き", + "readging": "しのびなき", + "pos": "名詞", + "pn": -0.245508 + }, + { + "surface": "水盤", + "readging": "すいばん", + "pos": "名詞", + "pn": -0.245509 + }, + { + "surface": "語勢", + "readging": "ごせい", + "pos": "名詞", + "pn": -0.245512 + }, + { + "surface": "残骸", + "readging": "ざんがい", + "pos": "名詞", + "pn": -0.245513 + }, + { + "surface": "実権", + "readging": "じっけん", + "pos": "名詞", + "pn": -0.245546 + }, + { + "surface": "草創", + "readging": "そうそう", + "pos": "名詞", + "pn": -0.245583 + }, + { + "surface": "妓夫", + "readging": "ぎゅう", + "pos": "名詞", + "pn": -0.245587 + }, + { + "surface": "むんずと", + "readging": "むんずと", + "pos": "副詞", + "pn": -0.245588 + }, + { + "surface": "万古", + "readging": "ばんこ", + "pos": "名詞", + "pn": -0.245626 + }, + { + "surface": "言葉遣い", + "readging": "ことばづかい", + "pos": "名詞", + "pn": -0.245634 + }, + { + "surface": "艦隊", + "readging": "かんたい", + "pos": "名詞", + "pn": -0.245645 + }, + { + "surface": "大河", + "readging": "たいが", + "pos": "名詞", + "pn": -0.245649 + }, + { + "surface": "機甲", + "readging": "きこう", + "pos": "名詞", + "pn": -0.245655 + }, + { + "surface": "上声", + "readging": "じょうせい", + "pos": "名詞", + "pn": -0.245656 + }, + { + "surface": "銀翼", + "readging": "ぎんよく", + "pos": "名詞", + "pn": -0.245668 + }, + { + "surface": "原水爆", + "readging": "げんすいばく", + "pos": "名詞", + "pn": -0.245676 + }, + { + "surface": "遅達", + "readging": "ちたつ", + "pos": "名詞", + "pn": -0.245697 + }, + { + "surface": "縮図", + "readging": "しゅくず", + "pos": "名詞", + "pn": -0.245705 + }, + { + "surface": "史詩", + "readging": "しし", + "pos": "名詞", + "pn": -0.245723 + }, + { + "surface": "行き方", + "readging": "ゆきがた", + "pos": "名詞", + "pn": -0.245752 + }, + { + "surface": "条例", + "readging": "じょうれい", + "pos": "名詞", + "pn": -0.245757 + }, + { + "surface": "同居", + "readging": "どうきょ", + "pos": "名詞", + "pn": -0.245771 + }, + { + "surface": "自照", + "readging": "じしょう", + "pos": "名詞", + "pn": -0.245773 + }, + { + "surface": "初演", + "readging": "しょえん", + "pos": "名詞", + "pn": -0.245775 + }, + { + "surface": "プレパラート", + "readging": "プレパラート", + "pos": "名詞", + "pn": -0.245776 + }, + { + "surface": "御忌", + "readging": "ぎょき", + "pos": "名詞", + "pn": -0.245778 + }, + { + "surface": "釣書", + "readging": "つりがき", + "pos": "名詞", + "pn": -0.245779 + }, + { + "surface": "帰結", + "readging": "きけつ", + "pos": "名詞", + "pn": -0.245782 + }, + { + "surface": "五経", + "readging": "ごきょう", + "pos": "名詞", + "pn": -0.245799 + }, + { + "surface": "モノクローム", + "readging": "モノクローム", + "pos": "名詞", + "pn": -0.245824 + }, + { + "surface": "略歴", + "readging": "りゃくれき", + "pos": "名詞", + "pn": -0.245838 + }, + { + "surface": "主賓", + "readging": "しゅひん", + "pos": "名詞", + "pn": -0.24584 + }, + { + "surface": "双手", + "readging": "そうしゅ", + "pos": "名詞", + "pn": -0.245854 + }, + { + "surface": "理詰", + "readging": "りづめ", + "pos": "名詞", + "pn": -0.24587 + }, + { + "surface": "挺進", + "readging": "ていしん", + "pos": "名詞", + "pn": -0.245882 + }, + { + "surface": "水鳥", + "readging": "すいちょう", + "pos": "名詞", + "pn": -0.245899 + }, + { + "surface": "撞木杖", + "readging": "しゅもくづえ", + "pos": "名詞", + "pn": -0.245902 + }, + { + "surface": "干支", + "readging": "かんし", + "pos": "名詞", + "pn": -0.245934 + }, + { + "surface": "仕込む", + "readging": "しこむ", + "pos": "動詞", + "pn": -0.245935 + }, + { + "surface": "パラメトロン", + "readging": "パラメトロン", + "pos": "名詞", + "pn": -0.245936 + }, + { + "surface": "盛菓子", + "readging": "もりがし", + "pos": "名詞", + "pn": -0.245955 + }, + { + "surface": "三文", + "readging": "さんもん", + "pos": "名詞", + "pn": -0.245986 + }, + { + "surface": "沈潜", + "readging": "ちんせん", + "pos": "名詞", + "pn": -0.245994 + }, + { + "surface": "ストレート", + "readging": "ストレート", + "pos": "名詞", + "pn": -0.245999 + }, + { + "surface": "スクエア ダンス", + "readging": "スクエア ダンス", + "pos": "名詞", + "pn": -0.246002 + }, + { + "surface": "シンク タンク", + "readging": "シンク タンク", + "pos": "名詞", + "pn": -0.246003 + }, + { + "surface": "攻囲", + "readging": "こうい", + "pos": "名詞", + "pn": -0.246003 + }, + { + "surface": "文士", + "readging": "ぶんし", + "pos": "名詞", + "pn": -0.246003 + }, + { + "surface": "示し合せる", + "readging": "しめしあわせる", + "pos": "動詞", + "pn": -0.246005 + }, + { + "surface": "征戦", + "readging": "せいせん", + "pos": "名詞", + "pn": -0.246026 + }, + { + "surface": "書式", + "readging": "しょしき", + "pos": "名詞", + "pn": -0.246032 + }, + { + "surface": "竜神", + "readging": "りゅうじん", + "pos": "名詞", + "pn": -0.24604 + }, + { + "surface": "腰屏風", + "readging": "こしびょうぶ", + "pos": "名詞", + "pn": -0.246052 + }, + { + "surface": "経過規定", + "readging": "けいかきてい", + "pos": "名詞", + "pn": -0.246095 + }, + { + "surface": "回心", + "readging": "えしん", + "pos": "名詞", + "pn": -0.246131 + }, + { + "surface": "支部", + "readging": "しぶ", + "pos": "名詞", + "pn": -0.246157 + }, + { + "surface": "カービン銃", + "readging": "カービンじゅう", + "pos": "名詞", + "pn": -0.246158 + }, + { + "surface": "漁舟", + "readging": "ぎょしゅう", + "pos": "名詞", + "pn": -0.246159 + }, + { + "surface": "よくせき", + "readging": "よくせき", + "pos": "副詞", + "pn": -0.246163 + }, + { + "surface": "路標", + "readging": "ろひょう", + "pos": "名詞", + "pn": -0.246175 + }, + { + "surface": "特命", + "readging": "とくめい", + "pos": "名詞", + "pn": -0.246178 + }, + { + "surface": "光圧", + "readging": "こうあつ", + "pos": "名詞", + "pn": -0.24618 + }, + { + "surface": "登場", + "readging": "とうじょう", + "pos": "名詞", + "pn": -0.246185 + }, + { + "surface": "労働条件", + "readging": "ろうどうじょうけん", + "pos": "名詞", + "pn": -0.2462 + }, + { + "surface": "養親", + "readging": "ようしん", + "pos": "名詞", + "pn": -0.246206 + }, + { + "surface": "馬鹿丁寧", + "readging": "ばかていねい", + "pos": "名詞", + "pn": -0.246234 + }, + { + "surface": "バンパー", + "readging": "バンパー", + "pos": "名詞", + "pn": -0.246236 + }, + { + "surface": "水草", + "readging": "すいそう", + "pos": "名詞", + "pn": -0.246237 + }, + { + "surface": "天下", + "readging": "てんか", + "pos": "名詞", + "pn": -0.246248 + }, + { + "surface": "受胎", + "readging": "じゅたい", + "pos": "名詞", + "pn": -0.246279 + }, + { + "surface": "カメ", + "readging": "カメ", + "pos": "名詞", + "pn": -0.24628 + }, + { + "surface": "めじ鮪", + "readging": "めじまぐろ", + "pos": "名詞", + "pn": -0.246311 + }, + { + "surface": "自動制御", + "readging": "じどうせいぎょ", + "pos": "名詞", + "pn": -0.246313 + }, + { + "surface": "旅支度", + "readging": "たびじたく", + "pos": "名詞", + "pn": -0.246325 + }, + { + "surface": "打歩", + "readging": "うちぶ", + "pos": "名詞", + "pn": -0.246344 + }, + { + "surface": "俗文", + "readging": "ぞくぶん", + "pos": "名詞", + "pn": -0.246356 + }, + { + "surface": "青大将", + "readging": "あおだいしょう", + "pos": "名詞", + "pn": -0.246364 + }, + { + "surface": "公報", + "readging": "こうほう", + "pos": "名詞", + "pn": -0.246371 + }, + { + "surface": "花瓶", + "readging": "はながめ", + "pos": "名詞", + "pn": -0.246407 + }, + { + "surface": "曲り角", + "readging": "まがりかど", + "pos": "名詞", + "pn": -0.246413 + }, + { + "surface": "焼塩", + "readging": "やきしお", + "pos": "名詞", + "pn": -0.24643 + }, + { + "surface": "感情移入", + "readging": "かんじょういにゅう", + "pos": "名詞", + "pn": -0.246449 + }, + { + "surface": "世論", + "readging": "せいろん", + "pos": "名詞", + "pn": -0.246465 + }, + { + "surface": "七曜暦", + "readging": "しちようれき", + "pos": "名詞", + "pn": -0.24647 + }, + { + "surface": "油田", + "readging": "ゆでん", + "pos": "名詞", + "pn": -0.246483 + }, + { + "surface": "世評", + "readging": "せひょう", + "pos": "名詞", + "pn": -0.246491 + }, + { + "surface": "神聖", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.246522 + }, + { + "surface": "舟行", + "readging": "しゅうこう", + "pos": "名詞", + "pn": -0.246542 + }, + { + "surface": "生命保険", + "readging": "せいめいほけん", + "pos": "名詞", + "pn": -0.246564 + }, + { + "surface": "明き盲", + "readging": "あきめくら", + "pos": "名詞", + "pn": -0.246593 + }, + { + "surface": "車寄", + "readging": "くるまよせ", + "pos": "名詞", + "pn": -0.246611 + }, + { + "surface": "ヒロポン", + "readging": "ヒロポン", + "pos": "名詞", + "pn": -0.246627 + }, + { + "surface": "劇毒", + "readging": "げきどく", + "pos": "名詞", + "pn": -0.246628 + }, + { + "surface": "心理小説", + "readging": "しんりしょうせつ", + "pos": "名詞", + "pn": -0.246649 + }, + { + "surface": "内申", + "readging": "ないしん", + "pos": "名詞", + "pn": -0.246653 + }, + { + "surface": "把捉", + "readging": "はそく", + "pos": "名詞", + "pn": -0.246664 + }, + { + "surface": "赤らめる", + "readging": "あからめる", + "pos": "動詞", + "pn": -0.246664 + }, + { + "surface": "足し前", + "readging": "たしまえ", + "pos": "名詞", + "pn": -0.246684 + }, + { + "surface": "量子論", + "readging": "りょうしろん", + "pos": "名詞", + "pn": -0.246692 + }, + { + "surface": "子飼い", + "readging": "こがい", + "pos": "名詞", + "pn": -0.246701 + }, + { + "surface": "紫竹", + "readging": "しちく", + "pos": "名詞", + "pn": -0.24675 + }, + { + "surface": "敝衣破帽", + "readging": "へいいはぼう", + "pos": "名詞", + "pn": -0.24676 + }, + { + "surface": "白人", + "readging": "はくじん", + "pos": "名詞", + "pn": -0.246784 + }, + { + "surface": "転び寝", + "readging": "ころびね", + "pos": "名詞", + "pn": -0.246854 + }, + { + "surface": "心像", + "readging": "しんぞう", + "pos": "名詞", + "pn": -0.246875 + }, + { + "surface": "断ずる", + "readging": "だんずる", + "pos": "動詞", + "pn": -0.246893 + }, + { + "surface": "海人海女", + "readging": "あま", + "pos": "名詞", + "pn": -0.246901 + }, + { + "surface": "桜海老", + "readging": "さくらえび", + "pos": "名詞", + "pn": -0.246932 + }, + { + "surface": "積分", + "readging": "せきぶん", + "pos": "名詞", + "pn": -0.246933 + }, + { + "surface": "掘割", + "readging": "ほりわり", + "pos": "名詞", + "pn": -0.246949 + }, + { + "surface": "祖父", + "readging": "じじい", + "pos": "名詞", + "pn": -0.246955 + }, + { + "surface": "同額", + "readging": "どうがく", + "pos": "名詞", + "pn": -0.246959 + }, + { + "surface": "ラッカー", + "readging": "ラッカー", + "pos": "名詞", + "pn": -0.246962 + }, + { + "surface": "豈", + "readging": "あに", + "pos": "副詞", + "pn": -0.246977 + }, + { + "surface": "疑獄", + "readging": "ぎごく", + "pos": "名詞", + "pn": -0.246981 + }, + { + "surface": "家集", + "readging": "かしゅう", + "pos": "名詞", + "pn": -0.246993 + }, + { + "surface": "支給", + "readging": "しきゅう", + "pos": "名詞", + "pn": -0.246999 + }, + { + "surface": "着発", + "readging": "ちゃくはつ", + "pos": "名詞", + "pn": -0.246999 + }, + { + "surface": "晴上がる", + "readging": "はれあがる", + "pos": "動詞", + "pn": -0.247006 + }, + { + "surface": "定小屋", + "readging": "じょうごや", + "pos": "名詞", + "pn": -0.247009 + }, + { + "surface": "臥薪嘗胆", + "readging": "がしんしょうたん", + "pos": "名詞", + "pn": -0.247055 + }, + { + "surface": "梅桃", + "readging": "ゆすらうめ", + "pos": "名詞", + "pn": -0.247065 + }, + { + "surface": "JIS漢字", + "readging": "ジスかんじ", + "pos": "名詞", + "pn": -0.247074 + }, + { + "surface": "投げ首", + "readging": "なげくび", + "pos": "名詞", + "pn": -0.247079 + }, + { + "surface": "月額", + "readging": "げつがく", + "pos": "名詞", + "pn": -0.247085 + }, + { + "surface": "入電", + "readging": "にゅうでん", + "pos": "名詞", + "pn": -0.247098 + }, + { + "surface": "遠出", + "readging": "とおで", + "pos": "名詞", + "pn": -0.247111 + }, + { + "surface": "手控", + "readging": "てびかえ", + "pos": "名詞", + "pn": -0.247112 + }, + { + "surface": "探海灯", + "readging": "たんかいとう", + "pos": "名詞", + "pn": -0.247116 + }, + { + "surface": "世話狂言", + "readging": "せわきょうげん", + "pos": "名詞", + "pn": -0.247127 + }, + { + "surface": "半角", + "readging": "はんかく", + "pos": "名詞", + "pn": -0.247131 + }, + { + "surface": "実施", + "readging": "じっし", + "pos": "名詞", + "pn": -0.247146 + }, + { + "surface": "僧林", + "readging": "そうりん", + "pos": "名詞", + "pn": -0.247149 + }, + { + "surface": "涙雨", + "readging": "なみだあめ", + "pos": "名詞", + "pn": -0.247158 + }, + { + "surface": "宿意", + "readging": "しゅくい", + "pos": "名詞", + "pn": -0.24716 + }, + { + "surface": "配付", + "readging": "はいふ", + "pos": "名詞", + "pn": -0.247196 + }, + { + "surface": "焼山", + "readging": "やけやま", + "pos": "名詞", + "pn": -0.247209 + }, + { + "surface": "親藩", + "readging": "しんぱん", + "pos": "名詞", + "pn": -0.247211 + }, + { + "surface": "心耳", + "readging": "しんじ", + "pos": "名詞", + "pn": -0.247215 + }, + { + "surface": "覆刻", + "readging": "ふっこく", + "pos": "名詞", + "pn": -0.247217 + }, + { + "surface": "原爆", + "readging": "げんばく", + "pos": "名詞", + "pn": -0.247219 + }, + { + "surface": "冷泉", + "readging": "れいせん", + "pos": "名詞", + "pn": -0.247224 + }, + { + "surface": "目撃", + "readging": "もくげき", + "pos": "名詞", + "pn": -0.247235 + }, + { + "surface": "四等官", + "readging": "しとうかん", + "pos": "名詞", + "pn": -0.247236 + }, + { + "surface": "隷書", + "readging": "れいしょ", + "pos": "名詞", + "pn": -0.247238 + }, + { + "surface": "内談", + "readging": "ないだん", + "pos": "名詞", + "pn": -0.247257 + }, + { + "surface": "紀要", + "readging": "きよう", + "pos": "名詞", + "pn": -0.247262 + }, + { + "surface": "産科", + "readging": "さんか", + "pos": "名詞", + "pn": -0.247265 + }, + { + "surface": "精神療法", + "readging": "せいしんりょうほう", + "pos": "名詞", + "pn": -0.247267 + }, + { + "surface": "力学", + "readging": "りきがく", + "pos": "名詞", + "pn": -0.247276 + }, + { + "surface": "ギャバジン", + "readging": "ギャバジン", + "pos": "名詞", + "pn": -0.247315 + }, + { + "surface": "免囚", + "readging": "めんしゅう", + "pos": "名詞", + "pn": -0.24732 + }, + { + "surface": "出漁", + "readging": "しゅつぎょ", + "pos": "名詞", + "pn": -0.247334 + }, + { + "surface": "消費都市", + "readging": "しょうひとし", + "pos": "名詞", + "pn": -0.24734 + }, + { + "surface": "年季奉公", + "readging": "ねんきぼうこう", + "pos": "名詞", + "pn": -0.247353 + }, + { + "surface": "定期船", + "readging": "ていきせん", + "pos": "名詞", + "pn": -0.247358 + }, + { + "surface": "宣命書", + "readging": "せんみょうがき", + "pos": "名詞", + "pn": -0.247359 + }, + { + "surface": "証言", + "readging": "しょうげん", + "pos": "名詞", + "pn": -0.247371 + }, + { + "surface": "一卵性双生児", + "readging": "いちらんせいそうせいじ", + "pos": "名詞", + "pn": -0.24738 + }, + { + "surface": "代人", + "readging": "だいにん", + "pos": "名詞", + "pn": -0.247381 + }, + { + "surface": "ジャングル", + "readging": "ジャングル", + "pos": "名詞", + "pn": -0.247432 + }, + { + "surface": "カフェ", + "readging": "カフェオレ", + "pos": "名詞", + "pn": -0.247456 + }, + { + "surface": "糸鬢", + "readging": "いとびん", + "pos": "名詞", + "pn": -0.247463 + }, + { + "surface": "錬金術", + "readging": "れんきんじゅつ", + "pos": "名詞", + "pn": -0.247467 + }, + { + "surface": "親臨", + "readging": "しんりん", + "pos": "名詞", + "pn": -0.24747 + }, + { + "surface": "貸出す", + "readging": "かしだす", + "pos": "動詞", + "pn": -0.247473 + }, + { + "surface": "ピザ", + "readging": "ピザ", + "pos": "名詞", + "pn": -0.247492 + }, + { + "surface": "そろばん", + "readging": "そろばんずく", + "pos": "副詞", + "pn": -0.2475 + }, + { + "surface": "私法", + "readging": "しほう", + "pos": "名詞", + "pn": -0.247522 + }, + { + "surface": "老翁", + "readging": "ろうおう", + "pos": "名詞", + "pn": -0.247527 + }, + { + "surface": "八ミリ", + "readging": "はちミリ", + "pos": "名詞", + "pn": -0.247528 + }, + { + "surface": "轟沈", + "readging": "ごうちん", + "pos": "名詞", + "pn": -0.247547 + }, + { + "surface": "咀嚼", + "readging": "そしゃく", + "pos": "名詞", + "pn": -0.247548 + }, + { + "surface": "老身", + "readging": "ろうしん", + "pos": "名詞", + "pn": -0.247557 + }, + { + "surface": "ロケーション", + "readging": "ロケーション", + "pos": "名詞", + "pn": -0.247559 + }, + { + "surface": "原文", + "readging": "げんぶん", + "pos": "名詞", + "pn": -0.247563 + }, + { + "surface": "ロゴ", + "readging": "ロゴ", + "pos": "名詞", + "pn": -0.247566 + }, + { + "surface": "抗原", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.247569 + }, + { + "surface": "試乗", + "readging": "しじょう", + "pos": "名詞", + "pn": -0.247578 + }, + { + "surface": "陽炎", + "readging": "かげろう", + "pos": "名詞", + "pn": -0.247578 + }, + { + "surface": "一眼", + "readging": "いちがん", + "pos": "名詞", + "pn": -0.247579 + }, + { + "surface": "声明", + "readging": "しょうみょう", + "pos": "名詞", + "pn": -0.247583 + }, + { + "surface": "目つき", + "readging": "めつき", + "pos": "名詞", + "pn": -0.247587 + }, + { + "surface": "降嫁", + "readging": "こうか", + "pos": "名詞", + "pn": -0.247613 + }, + { + "surface": "鼻輪", + "readging": "はなわ", + "pos": "名詞", + "pn": -0.247622 + }, + { + "surface": "増幅", + "readging": "ぞうふく", + "pos": "名詞", + "pn": -0.247638 + }, + { + "surface": "人相見", + "readging": "にんそうみ", + "pos": "名詞", + "pn": -0.247649 + }, + { + "surface": "増発", + "readging": "ぞうはつ", + "pos": "名詞", + "pn": -0.247683 + }, + { + "surface": "秘史", + "readging": "ひし", + "pos": "名詞", + "pn": -0.247698 + }, + { + "surface": "血合", + "readging": "ちあい", + "pos": "名詞", + "pn": -0.24771 + }, + { + "surface": "涼む", + "readging": "すずむ", + "pos": "動詞", + "pn": -0.247715 + }, + { + "surface": "漁場", + "readging": "ぎょば", + "pos": "名詞", + "pn": -0.247715 + }, + { + "surface": "警邏", + "readging": "けいら", + "pos": "名詞", + "pn": -0.247722 + }, + { + "surface": "考究", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.247741 + }, + { + "surface": "試算", + "readging": "しさん", + "pos": "名詞", + "pn": -0.247751 + }, + { + "surface": "郵便局", + "readging": "ゆうびんきょく", + "pos": "名詞", + "pn": -0.247757 + }, + { + "surface": "腕力沙汰", + "readging": "わんりょくざた", + "pos": "名詞", + "pn": -0.247758 + }, + { + "surface": "商事", + "readging": "しょうじ", + "pos": "名詞", + "pn": -0.24777 + }, + { + "surface": "成し遂げる", + "readging": "なしとげる", + "pos": "動詞", + "pn": -0.247776 + }, + { + "surface": "御衣", + "readging": "ぎょい", + "pos": "名詞", + "pn": -0.24778 + }, + { + "surface": "租界", + "readging": "そかい", + "pos": "名詞", + "pn": -0.247796 + }, + { + "surface": "縮小", + "readging": "しゅくしょう", + "pos": "名詞", + "pn": -0.2478 + }, + { + "surface": "個癖", + "readging": "こへき", + "pos": "名詞", + "pn": -0.247806 + }, + { + "surface": "印象主義", + "readging": "いんしょうしゅぎ", + "pos": "名詞", + "pn": -0.247819 + }, + { + "surface": "杉形", + "readging": "すぎなり", + "pos": "名詞", + "pn": -0.247825 + }, + { + "surface": "純絹", + "readging": "じゅんけん", + "pos": "名詞", + "pn": -0.247843 + }, + { + "surface": "駐留", + "readging": "ちゅうりゅう", + "pos": "名詞", + "pn": -0.247847 + }, + { + "surface": "袋小路", + "readging": "ふくろこうじ", + "pos": "名詞", + "pn": -0.247847 + }, + { + "surface": "リモート", + "readging": "リモートコントロール", + "pos": "名詞", + "pn": -0.247866 + }, + { + "surface": "さっき", + "readging": "さっき", + "pos": "副詞", + "pn": -0.247876 + }, + { + "surface": "足踏み", + "readging": "あしぶみ", + "pos": "名詞", + "pn": -0.247891 + }, + { + "surface": "インキ", + "readging": "インキ", + "pos": "名詞", + "pn": -0.247897 + }, + { + "surface": "遊牧", + "readging": "ゆうぼく", + "pos": "名詞", + "pn": -0.247897 + }, + { + "surface": "フロンティア", + "readging": "フロンティア", + "pos": "名詞", + "pn": -0.247904 + }, + { + "surface": "ダーク ホース", + "readging": "ダーク ホース", + "pos": "名詞", + "pn": -0.247931 + }, + { + "surface": "伸し餅", + "readging": "のしもち", + "pos": "名詞", + "pn": -0.247934 + }, + { + "surface": "受渡し", + "readging": "うけわたし", + "pos": "名詞", + "pn": -0.247938 + }, + { + "surface": "二足の草鞋", + "readging": "にそくのわらじ", + "pos": "名詞", + "pn": -0.247953 + }, + { + "surface": "沈酔", + "readging": "ちんすい", + "pos": "名詞", + "pn": -0.247978 + }, + { + "surface": "二十日大根", + "readging": "はつかだいこん", + "pos": "名詞", + "pn": -0.247994 + }, + { + "surface": "儒生", + "readging": "じゅせい", + "pos": "名詞", + "pn": -0.247995 + }, + { + "surface": "冥界", + "readging": "めいかい", + "pos": "名詞", + "pn": -0.248001 + }, + { + "surface": "塒", + "readging": "ねぐら", + "pos": "名詞", + "pn": -0.248012 + }, + { + "surface": "便意", + "readging": "べんい", + "pos": "名詞", + "pn": -0.248014 + }, + { + "surface": "訪問着", + "readging": "ほうもんぎ", + "pos": "名詞", + "pn": -0.248014 + }, + { + "surface": "画家", + "readging": "がか", + "pos": "名詞", + "pn": -0.248022 + }, + { + "surface": "買掛け", + "readging": "かいかけ", + "pos": "名詞", + "pn": -0.248023 + }, + { + "surface": "通気", + "readging": "つうき", + "pos": "名詞", + "pn": -0.24803 + }, + { + "surface": "純益", + "readging": "じゅんえき", + "pos": "名詞", + "pn": -0.248058 + }, + { + "surface": "言", + "readging": "げん", + "pos": "名詞", + "pn": -0.248061 + }, + { + "surface": "粉砕", + "readging": "ふんさい", + "pos": "名詞", + "pn": -0.248066 + }, + { + "surface": "サージ", + "readging": "サージ", + "pos": "名詞", + "pn": -0.248076 + }, + { + "surface": "隻眼", + "readging": "せきがん", + "pos": "名詞", + "pn": -0.248087 + }, + { + "surface": "座卓", + "readging": "ざたく", + "pos": "名詞", + "pn": -0.248093 + }, + { + "surface": "転向", + "readging": "てんこう", + "pos": "名詞", + "pn": -0.248098 + }, + { + "surface": "大元帥", + "readging": "だいげんすい", + "pos": "名詞", + "pn": -0.2481 + }, + { + "surface": "お雛様", + "readging": "おひなさま", + "pos": "名詞", + "pn": -0.248111 + }, + { + "surface": "済し崩し", + "readging": "なしくずし", + "pos": "名詞", + "pn": -0.248117 + }, + { + "surface": "水質", + "readging": "すいしつ", + "pos": "名詞", + "pn": -0.248132 + }, + { + "surface": "柴犬", + "readging": "しばいぬ", + "pos": "名詞", + "pn": -0.248164 + }, + { + "surface": "河川敷", + "readging": "かせんしき", + "pos": "名詞", + "pn": -0.248185 + }, + { + "surface": "聴衆", + "readging": "ちょうしゅう", + "pos": "名詞", + "pn": -0.248198 + }, + { + "surface": "陽動作戦", + "readging": "ようどうさくせん", + "pos": "名詞", + "pn": -0.248204 + }, + { + "surface": "御用始め", + "readging": "ごようはじめ", + "pos": "名詞", + "pn": -0.248208 + }, + { + "surface": "単座", + "readging": "たんざ", + "pos": "名詞", + "pn": -0.248212 + }, + { + "surface": "見料", + "readging": "けんりょう", + "pos": "名詞", + "pn": -0.248233 + }, + { + "surface": "所帯持", + "readging": "しょたいもち", + "pos": "名詞", + "pn": -0.248234 + }, + { + "surface": "会衆", + "readging": "かいしゅう", + "pos": "名詞", + "pn": -0.24825 + }, + { + "surface": "総本山", + "readging": "そうほんざん", + "pos": "名詞", + "pn": -0.248262 + }, + { + "surface": "身贔屓", + "readging": "みびいき", + "pos": "名詞", + "pn": -0.248281 + }, + { + "surface": "清水の舞台", + "readging": "きよみずのぶたい", + "pos": "名詞", + "pn": -0.248287 + }, + { + "surface": "先達", + "readging": "せんだつ", + "pos": "名詞", + "pn": -0.248306 + }, + { + "surface": "立役者", + "readging": "たてやくしゃ", + "pos": "名詞", + "pn": -0.248345 + }, + { + "surface": "前方", + "readging": "ぜんぽう", + "pos": "名詞", + "pn": -0.24835 + }, + { + "surface": "掘下げる", + "readging": "ほりさげる", + "pos": "動詞", + "pn": -0.248365 + }, + { + "surface": "二捨三入", + "readging": "にしゃさんにゅう", + "pos": "名詞", + "pn": -0.248367 + }, + { + "surface": "入歯", + "readging": "いれば", + "pos": "名詞", + "pn": -0.248387 + }, + { + "surface": "石粉", + "readging": "いしこ", + "pos": "名詞", + "pn": -0.248423 + }, + { + "surface": "サイクロトロン", + "readging": "サイクロトロン", + "pos": "名詞", + "pn": -0.248442 + }, + { + "surface": "半幅", + "readging": "はんはば", + "pos": "名詞", + "pn": -0.248444 + }, + { + "surface": "聖典", + "readging": "せいてん", + "pos": "名詞", + "pn": -0.248457 + }, + { + "surface": "エスペラント", + "readging": "エスペラント", + "pos": "名詞", + "pn": -0.248473 + }, + { + "surface": "下浣", + "readging": "げかん", + "pos": "名詞", + "pn": -0.248475 + }, + { + "surface": "ぼっと", + "readging": "ぼっと", + "pos": "副詞", + "pn": -0.248482 + }, + { + "surface": "粘り", + "readging": "ねばり", + "pos": "名詞", + "pn": -0.248484 + }, + { + "surface": "キュリー", + "readging": "キュリー", + "pos": "名詞", + "pn": -0.248505 + }, + { + "surface": "会談", + "readging": "かいだん", + "pos": "名詞", + "pn": -0.248508 + }, + { + "surface": "公認", + "readging": "こうにん", + "pos": "名詞", + "pn": -0.248553 + }, + { + "surface": "情熱", + "readging": "じょうねつ", + "pos": "名詞", + "pn": -0.248567 + }, + { + "surface": "庶幾", + "readging": "しょき", + "pos": "名詞", + "pn": -0.24858 + }, + { + "surface": "減産", + "readging": "げんさん", + "pos": "名詞", + "pn": -0.248582 + }, + { + "surface": "端末機", + "readging": "たんまつき", + "pos": "名詞", + "pn": -0.248582 + }, + { + "surface": "継走", + "readging": "けいそう", + "pos": "名詞", + "pn": -0.248586 + }, + { + "surface": "料地", + "readging": "りょうち", + "pos": "名詞", + "pn": -0.248592 + }, + { + "surface": "意義", + "readging": "いぎ", + "pos": "名詞", + "pn": -0.248608 + }, + { + "surface": "万年", + "readging": "まんねん", + "pos": "名詞", + "pn": -0.24862 + }, + { + "surface": "裕福", + "readging": "ゆうふく", + "pos": "名詞", + "pn": -0.248623 + }, + { + "surface": "蘇民将来", + "readging": "そみんしょうらい", + "pos": "名詞", + "pn": -0.248623 + }, + { + "surface": "共役", + "readging": "きょうやく", + "pos": "名詞", + "pn": -0.248642 + }, + { + "surface": "世話場", + "readging": "せわば", + "pos": "名詞", + "pn": -0.248644 + }, + { + "surface": "渡船", + "readging": "とせん", + "pos": "名詞", + "pn": -0.248644 + }, + { + "surface": "既婚", + "readging": "きこん", + "pos": "名詞", + "pn": -0.248651 + }, + { + "surface": "野遊び", + "readging": "のあそび", + "pos": "名詞", + "pn": -0.248654 + }, + { + "surface": "四十腕", + "readging": "しじゅううで", + "pos": "名詞", + "pn": -0.248667 + }, + { + "surface": "繰糸", + "readging": "そうし", + "pos": "名詞", + "pn": -0.248668 + }, + { + "surface": "戦時", + "readging": "せんじ", + "pos": "名詞", + "pn": -0.248673 + }, + { + "surface": "引合", + "readging": "ひきあい", + "pos": "名詞", + "pn": -0.248681 + }, + { + "surface": "散漫", + "readging": "さんまん", + "pos": "名詞", + "pn": -0.248718 + }, + { + "surface": "相者", + "readging": "そうしゃ", + "pos": "名詞", + "pn": -0.248719 + }, + { + "surface": "本田", + "readging": "ほんでん", + "pos": "名詞", + "pn": -0.24873 + }, + { + "surface": "拡声器", + "readging": "かくせいき", + "pos": "名詞", + "pn": -0.248732 + }, + { + "surface": "香箱", + "readging": "こうばこ", + "pos": "名詞", + "pn": -0.248773 + }, + { + "surface": "弁護人", + "readging": "べんごにん", + "pos": "名詞", + "pn": -0.248783 + }, + { + "surface": "希", + "readging": "き", + "pos": "名詞", + "pn": -0.248839 + }, + { + "surface": "波立つ", + "readging": "なみだつ", + "pos": "動詞", + "pn": -0.248841 + }, + { + "surface": "復命", + "readging": "ふくめい", + "pos": "名詞", + "pn": -0.248862 + }, + { + "surface": "放牧", + "readging": "ほうぼく", + "pos": "名詞", + "pn": -0.248863 + }, + { + "surface": "監査", + "readging": "かんさ", + "pos": "名詞", + "pn": -0.248887 + }, + { + "surface": "キャビン", + "readging": "キャビン", + "pos": "名詞", + "pn": -0.248912 + }, + { + "surface": "住戸", + "readging": "じゅうこ", + "pos": "名詞", + "pn": -0.248915 + }, + { + "surface": "草藪", + "readging": "くさやぶ", + "pos": "名詞", + "pn": -0.248929 + }, + { + "surface": "順繰り", + "readging": "じゅんぐり", + "pos": "名詞", + "pn": -0.248942 + }, + { + "surface": "簡便", + "readging": "かんべん", + "pos": "名詞", + "pn": -0.248945 + }, + { + "surface": "経済計画", + "readging": "けいざいけいかく", + "pos": "名詞", + "pn": -0.248948 + }, + { + "surface": "張倒す", + "readging": "はりたおす", + "pos": "動詞", + "pn": -0.248972 + }, + { + "surface": "からりと", + "readging": "からりと", + "pos": "副詞", + "pn": -0.248987 + }, + { + "surface": "伊呂波歌", + "readging": "いろはうた", + "pos": "名詞", + "pn": -0.249029 + }, + { + "surface": "アルファ線", + "readging": "アルファせん", + "pos": "名詞", + "pn": -0.249032 + }, + { + "surface": "矢筒", + "readging": "やづつ", + "pos": "名詞", + "pn": -0.249032 + }, + { + "surface": "町場", + "readging": "ちょうば", + "pos": "名詞", + "pn": -0.249034 + }, + { + "surface": "就職", + "readging": "しゅうしょく", + "pos": "名詞", + "pn": -0.249047 + }, + { + "surface": "実生活", + "readging": "じっせいかつ", + "pos": "名詞", + "pn": -0.249053 + }, + { + "surface": "闇市", + "readging": "やみいち", + "pos": "名詞", + "pn": -0.249056 + }, + { + "surface": "奉納相撲", + "readging": "ほうのうずもう", + "pos": "名詞", + "pn": -0.249087 + }, + { + "surface": "二部作", + "readging": "にぶさく", + "pos": "名詞", + "pn": -0.249103 + }, + { + "surface": "枇杷", + "readging": "びわ", + "pos": "名詞", + "pn": -0.249113 + }, + { + "surface": "落体", + "readging": "らくたい", + "pos": "名詞", + "pn": -0.249125 + }, + { + "surface": "海抜", + "readging": "かいばつ", + "pos": "名詞", + "pn": -0.249128 + }, + { + "surface": "三更", + "readging": "さんこう", + "pos": "名詞", + "pn": -0.249132 + }, + { + "surface": "必着", + "readging": "ひっちゃく", + "pos": "名詞", + "pn": -0.249134 + }, + { + "surface": "物流", + "readging": "ぶつりゅう", + "pos": "名詞", + "pn": -0.249142 + }, + { + "surface": "十字火", + "readging": "じゅうじか", + "pos": "名詞", + "pn": -0.249143 + }, + { + "surface": "語尾", + "readging": "ごび", + "pos": "名詞", + "pn": -0.249146 + }, + { + "surface": "電子顕微鏡", + "readging": "でんしけんびきょう", + "pos": "名詞", + "pn": -0.249171 + }, + { + "surface": "軒昂", + "readging": "けんこう", + "pos": "名詞", + "pn": -0.249194 + }, + { + "surface": "車馬", + "readging": "しゃば", + "pos": "名詞", + "pn": -0.2492 + }, + { + "surface": "かけちがう", + "readging": "かけちがう", + "pos": "動詞", + "pn": -0.2492 + }, + { + "surface": "蛮行", + "readging": "ばんこう", + "pos": "名詞", + "pn": -0.249201 + }, + { + "surface": "投函", + "readging": "とうかん", + "pos": "名詞", + "pn": -0.249205 + }, + { + "surface": "耳鼻科", + "readging": "じびか", + "pos": "名詞", + "pn": -0.249206 + }, + { + "surface": "官制", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.249207 + }, + { + "surface": "制海権", + "readging": "せいかいけん", + "pos": "名詞", + "pn": -0.249215 + }, + { + "surface": "虚構", + "readging": "きょこう", + "pos": "名詞", + "pn": -0.249215 + }, + { + "surface": "灰", + "readging": "かい", + "pos": "名詞", + "pn": -0.249246 + }, + { + "surface": "留鳥", + "readging": "りゅうちょう", + "pos": "名詞", + "pn": -0.249256 + }, + { + "surface": "メモリー", + "readging": "メモリー", + "pos": "名詞", + "pn": -0.249273 + }, + { + "surface": "泣暮す", + "readging": "なきくらす", + "pos": "動詞", + "pn": -0.249288 + }, + { + "surface": "苫舟", + "readging": "とまぶね", + "pos": "名詞", + "pn": -0.249313 + }, + { + "surface": "富民", + "readging": "ふみん", + "pos": "名詞", + "pn": -0.249326 + }, + { + "surface": "光波", + "readging": "こうは", + "pos": "名詞", + "pn": -0.249331 + }, + { + "surface": "章句", + "readging": "しょうく", + "pos": "名詞", + "pn": -0.249338 + }, + { + "surface": "草市", + "readging": "くさいち", + "pos": "名詞", + "pn": -0.249351 + }, + { + "surface": "直属", + "readging": "ちょくぞく", + "pos": "名詞", + "pn": -0.249354 + }, + { + "surface": "料峭", + "readging": "りょうしょう", + "pos": "名詞", + "pn": -0.249355 + }, + { + "surface": "姦する", + "readging": "かんする", + "pos": "動詞", + "pn": -0.249362 + }, + { + "surface": "木賃", + "readging": "きちん", + "pos": "名詞", + "pn": -0.249368 + }, + { + "surface": "投了", + "readging": "とうりょう", + "pos": "名詞", + "pn": -0.249378 + }, + { + "surface": "会厭", + "readging": "ええん", + "pos": "名詞", + "pn": -0.249382 + }, + { + "surface": "暁星", + "readging": "ぎょうせい", + "pos": "名詞", + "pn": -0.249392 + }, + { + "surface": "試問", + "readging": "しもん", + "pos": "名詞", + "pn": -0.249395 + }, + { + "surface": "モルモット", + "readging": "モルモット", + "pos": "名詞", + "pn": -0.249398 + }, + { + "surface": "半舷", + "readging": "はんげん", + "pos": "名詞", + "pn": -0.249399 + }, + { + "surface": "甘口", + "readging": "あまくち", + "pos": "名詞", + "pn": -0.249399 + }, + { + "surface": "郎等", + "readging": "ろうどう", + "pos": "名詞", + "pn": -0.249406 + }, + { + "surface": "どきどき", + "readging": "どきどき", + "pos": "副詞", + "pn": -0.249407 + }, + { + "surface": "来状", + "readging": "らいじょう", + "pos": "名詞", + "pn": -0.24941 + }, + { + "surface": "勤番", + "readging": "きんばん", + "pos": "名詞", + "pn": -0.249435 + }, + { + "surface": "羸弱", + "readging": "るいじゃく", + "pos": "名詞", + "pn": -0.249442 + }, + { + "surface": "洋琴", + "readging": "ようきん", + "pos": "名詞", + "pn": -0.249448 + }, + { + "surface": "入水", + "readging": "じゅすい", + "pos": "名詞", + "pn": -0.249449 + }, + { + "surface": "濫発", + "readging": "らんぱつ", + "pos": "名詞", + "pn": -0.249456 + }, + { + "surface": "補欠", + "readging": "ほけつ", + "pos": "名詞", + "pn": -0.24948 + }, + { + "surface": "絵巻", + "readging": "えまき", + "pos": "名詞", + "pn": -0.24949 + }, + { + "surface": "敢為", + "readging": "かんい", + "pos": "名詞", + "pn": -0.249501 + }, + { + "surface": "配信", + "readging": "はいしん", + "pos": "名詞", + "pn": -0.249507 + }, + { + "surface": "進軍", + "readging": "しんぐん", + "pos": "名詞", + "pn": -0.249519 + }, + { + "surface": "養成", + "readging": "ようせい", + "pos": "名詞", + "pn": -0.249529 + }, + { + "surface": "御中", + "readging": "おんちゅう", + "pos": "名詞", + "pn": -0.249533 + }, + { + "surface": "やの字", + "readging": "やのじ", + "pos": "名詞", + "pn": -0.249553 + }, + { + "surface": "黄金分割", + "readging": "おうごんぶんかつ", + "pos": "名詞", + "pn": -0.249567 + }, + { + "surface": "向い風", + "readging": "むかいかぜ", + "pos": "名詞", + "pn": -0.24957 + }, + { + "surface": "奴僕", + "readging": "どぼく", + "pos": "名詞", + "pn": -0.24958 + }, + { + "surface": "アクセル", + "readging": "アクセル", + "pos": "名詞", + "pn": -0.24959 + }, + { + "surface": "小数", + "readging": "しょうすう", + "pos": "名詞", + "pn": -0.249617 + }, + { + "surface": "白紙委任状", + "readging": "はくしいにんじょう", + "pos": "名詞", + "pn": -0.249653 + }, + { + "surface": "屋台店", + "readging": "やたいみせ", + "pos": "名詞", + "pn": -0.249656 + }, + { + "surface": "週間", + "readging": "しゅうかん", + "pos": "名詞", + "pn": -0.249666 + }, + { + "surface": "合繊", + "readging": "ごうせん", + "pos": "名詞", + "pn": -0.249677 + }, + { + "surface": "春慶", + "readging": "しゅんけい", + "pos": "名詞", + "pn": -0.249683 + }, + { + "surface": "矢叫び", + "readging": "やたけび", + "pos": "名詞", + "pn": -0.249698 + }, + { + "surface": "致死遺伝子", + "readging": "ちしいでんし", + "pos": "名詞", + "pn": -0.249705 + }, + { + "surface": "重水素", + "readging": "じゅうすいそ", + "pos": "名詞", + "pn": -0.249709 + }, + { + "surface": "一世", + "readging": "いっせい", + "pos": "名詞", + "pn": -0.249718 + }, + { + "surface": "海賊版", + "readging": "かいぞくばん", + "pos": "名詞", + "pn": -0.249727 + }, + { + "surface": "末葉", + "readging": "まつよう", + "pos": "名詞", + "pn": -0.249738 + }, + { + "surface": "歯触り", + "readging": "はざわり", + "pos": "名詞", + "pn": -0.249738 + }, + { + "surface": "白旗", + "readging": "しらはた", + "pos": "名詞", + "pn": -0.249777 + }, + { + "surface": "内内", + "readging": "うちうち", + "pos": "副詞", + "pn": -0.249781 + }, + { + "surface": "遅配", + "readging": "ちはい", + "pos": "名詞", + "pn": -0.249798 + }, + { + "surface": "軍務", + "readging": "ぐんむ", + "pos": "名詞", + "pn": -0.249805 + }, + { + "surface": "不一", + "readging": "ふいつ", + "pos": "名詞", + "pn": -0.249806 + }, + { + "surface": "飛泉", + "readging": "ひせん", + "pos": "名詞", + "pn": -0.24981 + }, + { + "surface": "飛瀑", + "readging": "ひばく", + "pos": "名詞", + "pn": -0.24981 + }, + { + "surface": "岨", + "readging": "そわ", + "pos": "名詞", + "pn": -0.249812 + }, + { + "surface": "臼状", + "readging": "きゅうじょう", + "pos": "名詞", + "pn": -0.249833 + }, + { + "surface": "俳論", + "readging": "はいろん", + "pos": "名詞", + "pn": -0.249861 + }, + { + "surface": "貴覧", + "readging": "きらん", + "pos": "名詞", + "pn": -0.249864 + }, + { + "surface": "裏返る", + "readging": "うらがえる", + "pos": "動詞", + "pn": -0.249873 + }, + { + "surface": "寡占", + "readging": "かせん", + "pos": "名詞", + "pn": -0.249875 + }, + { + "surface": "晴耕雨読", + "readging": "せいこううどく", + "pos": "名詞", + "pn": -0.24988 + }, + { + "surface": "歳費", + "readging": "さいひ", + "pos": "名詞", + "pn": -0.249882 + }, + { + "surface": "クレジット", + "readging": "クレジットカード", + "pos": "名詞", + "pn": -0.249918 + }, + { + "surface": "百八十度", + "readging": "ひゃくはちじゅうど", + "pos": "名詞", + "pn": -0.249926 + }, + { + "surface": "栃", + "readging": "とち", + "pos": "名詞", + "pn": -0.249927 + }, + { + "surface": "銀扇", + "readging": "ぎんせん", + "pos": "名詞", + "pn": -0.24995 + }, + { + "surface": "マイクロ", + "readging": "マイクロホン", + "pos": "名詞", + "pn": -0.249979 + }, + { + "surface": "ショベル", + "readging": "ショベル", + "pos": "名詞", + "pn": -0.249995 + }, + { + "surface": "床机", + "readging": "しょうぎ", + "pos": "名詞", + "pn": -0.249995 + }, + { + "surface": "灯台守", + "readging": "とうだいもり", + "pos": "名詞", + "pn": -0.25 + }, + { + "surface": "究", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.250032 + }, + { + "surface": "用談", + "readging": "ようだん", + "pos": "名詞", + "pn": -0.250046 + }, + { + "surface": "電源", + "readging": "でんげん", + "pos": "名詞", + "pn": -0.25005 + }, + { + "surface": "お足", + "readging": "おあし", + "pos": "名詞", + "pn": -0.250051 + }, + { + "surface": "サマー タイム", + "readging": "サマー タイム", + "pos": "名詞", + "pn": -0.250063 + }, + { + "surface": "二重回し", + "readging": "にじゅうまわし", + "pos": "名詞", + "pn": -0.250073 + }, + { + "surface": "乾酪", + "readging": "かんらく", + "pos": "名詞", + "pn": -0.25008 + }, + { + "surface": "粋", + "readging": "いき", + "pos": "名詞", + "pn": -0.250111 + }, + { + "surface": "蟻の塔", + "readging": "ありのとう", + "pos": "名詞", + "pn": -0.250113 + }, + { + "surface": "ルーブル", + "readging": "ルーブル", + "pos": "名詞", + "pn": -0.250116 + }, + { + "surface": "鮠", + "readging": "はや", + "pos": "名詞", + "pn": -0.250156 + }, + { + "surface": "朝三暮四", + "readging": "ちょうさんぼし", + "pos": "名詞", + "pn": -0.250161 + }, + { + "surface": "麻の葉", + "readging": "あさのは", + "pos": "名詞", + "pn": -0.250173 + }, + { + "surface": "泣く泣く", + "readging": "なくなく", + "pos": "副詞", + "pn": -0.250189 + }, + { + "surface": "撃砕", + "readging": "げきさい", + "pos": "名詞", + "pn": -0.250195 + }, + { + "surface": "誓紙", + "readging": "せいし", + "pos": "名詞", + "pn": -0.250201 + }, + { + "surface": "劣勢", + "readging": "れっせい", + "pos": "名詞", + "pn": -0.250226 + }, + { + "surface": "部首", + "readging": "ぶしゅ", + "pos": "名詞", + "pn": -0.250243 + }, + { + "surface": "万般", + "readging": "ばんぱん", + "pos": "名詞", + "pn": -0.250248 + }, + { + "surface": "腱", + "readging": "けん", + "pos": "名詞", + "pn": -0.250248 + }, + { + "surface": "電鍵", + "readging": "でんけん", + "pos": "名詞", + "pn": -0.250256 + }, + { + "surface": "外圧", + "readging": "がいあつ", + "pos": "名詞", + "pn": -0.250256 + }, + { + "surface": "施行", + "readging": "しこう", + "pos": "名詞", + "pn": -0.250278 + }, + { + "surface": "農場", + "readging": "のうじょう", + "pos": "名詞", + "pn": -0.250287 + }, + { + "surface": "射術", + "readging": "しゃじゅつ", + "pos": "名詞", + "pn": -0.250296 + }, + { + "surface": "文辞", + "readging": "ぶんじ", + "pos": "名詞", + "pn": -0.250313 + }, + { + "surface": "口供", + "readging": "こうきょう", + "pos": "名詞", + "pn": -0.250347 + }, + { + "surface": "箔", + "readging": "はく", + "pos": "名詞", + "pn": -0.250352 + }, + { + "surface": "バーベキュー", + "readging": "バーベキュー", + "pos": "名詞", + "pn": -0.250357 + }, + { + "surface": "晒木綿", + "readging": "さらしもめん", + "pos": "名詞", + "pn": -0.250377 + }, + { + "surface": "絽縮緬", + "readging": "ろちりめん", + "pos": "名詞", + "pn": -0.250386 + }, + { + "surface": "引越", + "readging": "ひっこし", + "pos": "名詞", + "pn": -0.250402 + }, + { + "surface": "大納言", + "readging": "だいなごん", + "pos": "名詞", + "pn": -0.250411 + }, + { + "surface": "木の下闇", + "readging": "このしたやみ", + "pos": "名詞", + "pn": -0.25042 + }, + { + "surface": "発刊", + "readging": "はっかん", + "pos": "名詞", + "pn": -0.250466 + }, + { + "surface": "銀朱", + "readging": "ぎんしゅ", + "pos": "名詞", + "pn": -0.250467 + }, + { + "surface": "句合せ", + "readging": "くあわせ", + "pos": "名詞", + "pn": -0.250476 + }, + { + "surface": "元手", + "readging": "もとで", + "pos": "名詞", + "pn": -0.250482 + }, + { + "surface": "駄物", + "readging": "だもの", + "pos": "名詞", + "pn": -0.250483 + }, + { + "surface": "興信所", + "readging": "こうしんじょ", + "pos": "名詞", + "pn": -0.250497 + }, + { + "surface": "資本家", + "readging": "しほんか", + "pos": "名詞", + "pn": -0.250516 + }, + { + "surface": "レスト ハウス", + "readging": "レスト ハウス", + "pos": "名詞", + "pn": -0.250547 + }, + { + "surface": "普及", + "readging": "ふきゅう", + "pos": "名詞", + "pn": -0.2506 + }, + { + "surface": "ひご", + "readging": "ひご", + "pos": "名詞", + "pn": -0.250612 + }, + { + "surface": "疎通", + "readging": "そつう", + "pos": "名詞", + "pn": -0.250614 + }, + { + "surface": "鉢合せ", + "readging": "はちあわせ", + "pos": "名詞", + "pn": -0.250623 + }, + { + "surface": "斜影", + "readging": "しゃえい", + "pos": "名詞", + "pn": -0.250623 + }, + { + "surface": "片恨み", + "readging": "かたうらみ", + "pos": "名詞", + "pn": -0.250625 + }, + { + "surface": "SF", + "readging": "エスエフ", + "pos": "名詞", + "pn": -0.250632 + }, + { + "surface": "組天井", + "readging": "くみてんじょう", + "pos": "名詞", + "pn": -0.250688 + }, + { + "surface": "町役人", + "readging": "まちやくにん", + "pos": "名詞", + "pn": -0.250697 + }, + { + "surface": "響かせる", + "readging": "ひびかせる", + "pos": "動詞", + "pn": -0.250703 + }, + { + "surface": "詔", + "readging": "みことのり", + "pos": "名詞", + "pn": -0.250722 + }, + { + "surface": "白拍子", + "readging": "しらびょうし", + "pos": "名詞", + "pn": -0.250734 + }, + { + "surface": "昏昏と", + "readging": "こんこんと", + "pos": "副詞", + "pn": -0.250734 + }, + { + "surface": "月番", + "readging": "つきばん", + "pos": "名詞", + "pn": -0.25074 + }, + { + "surface": "煮付", + "readging": "につけ", + "pos": "名詞", + "pn": -0.250745 + }, + { + "surface": "縮刷", + "readging": "しゅくさつ", + "pos": "名詞", + "pn": -0.250762 + }, + { + "surface": "願掛け", + "readging": "がんかけ", + "pos": "名詞", + "pn": -0.250763 + }, + { + "surface": "風紀", + "readging": "ふうき", + "pos": "名詞", + "pn": -0.250777 + }, + { + "surface": "禅家", + "readging": "ぜんけ", + "pos": "名詞", + "pn": -0.250789 + }, + { + "surface": "国花", + "readging": "こっか", + "pos": "名詞", + "pn": -0.250796 + }, + { + "surface": "太陽年", + "readging": "たいようねん", + "pos": "名詞", + "pn": -0.250797 + }, + { + "surface": "書癖", + "readging": "しょへき", + "pos": "名詞", + "pn": -0.250797 + }, + { + "surface": "ギヤ", + "readging": "ギヤ", + "pos": "名詞", + "pn": -0.250797 + }, + { + "surface": "サイクリング", + "readging": "サイクリング", + "pos": "名詞", + "pn": -0.25081 + }, + { + "surface": "者共", + "readging": "ものども", + "pos": "名詞", + "pn": -0.250813 + }, + { + "surface": "方様", + "readging": "かたさま", + "pos": "名詞", + "pn": -0.250816 + }, + { + "surface": "満", + "readging": "まん", + "pos": "名詞", + "pn": -0.250819 + }, + { + "surface": "メリンス", + "readging": "メリンス", + "pos": "名詞", + "pn": -0.250831 + }, + { + "surface": "てっきん", + "readging": "てっきんコンクリート", + "pos": "名詞", + "pn": -0.250851 + }, + { + "surface": "熟む", + "readging": "うむ", + "pos": "動詞", + "pn": -0.250862 + }, + { + "surface": "知謀", + "readging": "ちぼう", + "pos": "名詞", + "pn": -0.250896 + }, + { + "surface": "田", + "readging": "た", + "pos": "名詞", + "pn": -0.250905 + }, + { + "surface": "柳箸", + "readging": "やなぎばし", + "pos": "名詞", + "pn": -0.250906 + }, + { + "surface": "フィーバー", + "readging": "フィーバー", + "pos": "名詞", + "pn": -0.250911 + }, + { + "surface": "概算", + "readging": "がいさん", + "pos": "名詞", + "pn": -0.250911 + }, + { + "surface": "デー", + "readging": "デーパック", + "pos": "名詞", + "pn": -0.250918 + }, + { + "surface": "売上", + "readging": "うりあげ", + "pos": "名詞", + "pn": -0.250927 + }, + { + "surface": "刻み足", + "readging": "きざみあし", + "pos": "名詞", + "pn": -0.250967 + }, + { + "surface": "番犬", + "readging": "ばんけん", + "pos": "名詞", + "pn": -0.250969 + }, + { + "surface": "散り散り", + "readging": "ちりぢり", + "pos": "名詞", + "pn": -0.250979 + }, + { + "surface": "星雲", + "readging": "せいうん", + "pos": "名詞", + "pn": -0.250979 + }, + { + "surface": "分数", + "readging": "ぶんすう", + "pos": "名詞", + "pn": -0.251004 + }, + { + "surface": "凸坊", + "readging": "でこぼう", + "pos": "名詞", + "pn": -0.251005 + }, + { + "surface": "梅雨", + "readging": "つゆいり", + "pos": "名詞", + "pn": -0.251013 + }, + { + "surface": "大番", + "readging": "おおばん", + "pos": "名詞", + "pn": -0.251017 + }, + { + "surface": "出湯", + "readging": "いでゆ", + "pos": "名詞", + "pn": -0.251025 + }, + { + "surface": "ベルツ水", + "readging": "ベルツすい", + "pos": "名詞", + "pn": -0.251035 + }, + { + "surface": "亡き数", + "readging": "なきかず", + "pos": "名詞", + "pn": -0.251039 + }, + { + "surface": "超短波", + "readging": "ちょうたんぱ", + "pos": "名詞", + "pn": -0.251041 + }, + { + "surface": "大衆課税", + "readging": "たいしゅうかぜい", + "pos": "名詞", + "pn": -0.25105 + }, + { + "surface": "榕樹", + "readging": "ようじゅ", + "pos": "名詞", + "pn": -0.251055 + }, + { + "surface": "役立てる", + "readging": "やくだてる", + "pos": "動詞", + "pn": -0.251065 + }, + { + "surface": "納屋", + "readging": "なや", + "pos": "名詞", + "pn": -0.251077 + }, + { + "surface": "祖国", + "readging": "そこく", + "pos": "名詞", + "pn": -0.251084 + }, + { + "surface": "談じ込む", + "readging": "だんじこむ", + "pos": "動詞", + "pn": -0.251132 + }, + { + "surface": "強談判", + "readging": "こわだんぱん", + "pos": "名詞", + "pn": -0.251132 + }, + { + "surface": "弥生", + "readging": "やよい", + "pos": "名詞", + "pn": -0.251138 + }, + { + "surface": "卸売", + "readging": "おろしうり", + "pos": "名詞", + "pn": -0.251141 + }, + { + "surface": "銘文", + "readging": "めいぶん", + "pos": "名詞", + "pn": -0.251145 + }, + { + "surface": "治略", + "readging": "ちりゃく", + "pos": "名詞", + "pn": -0.251146 + }, + { + "surface": "賊将", + "readging": "ぞくしょう", + "pos": "名詞", + "pn": -0.251153 + }, + { + "surface": "鶏冠", + "readging": "けいかん", + "pos": "名詞", + "pn": -0.251168 + }, + { + "surface": "帆掛舟", + "readging": "ほかけぶね", + "pos": "名詞", + "pn": -0.25117 + }, + { + "surface": "申文", + "readging": "もうしぶみ", + "pos": "名詞", + "pn": -0.251189 + }, + { + "surface": "キッチン", + "readging": "キッチン", + "pos": "名詞", + "pn": -0.251189 + }, + { + "surface": "活魚車", + "readging": "かつぎょしゃ", + "pos": "名詞", + "pn": -0.25121 + }, + { + "surface": "一律", + "readging": "いちりつ", + "pos": "名詞", + "pn": -0.251226 + }, + { + "surface": "魚族", + "readging": "ぎょぞく", + "pos": "名詞", + "pn": -0.251235 + }, + { + "surface": "無官の太夫", + "readging": "むかんのたゆう", + "pos": "名詞", + "pn": -0.251279 + }, + { + "surface": "段鼻", + "readging": "だんばな", + "pos": "名詞", + "pn": -0.251288 + }, + { + "surface": "自給", + "readging": "じきゅう", + "pos": "名詞", + "pn": -0.25131 + }, + { + "surface": "金扇", + "readging": "きんせん", + "pos": "名詞", + "pn": -0.251319 + }, + { + "surface": "エレキ", + "readging": "エレキギター", + "pos": "名詞", + "pn": -0.251323 + }, + { + "surface": "ビザ", + "readging": "ビザ", + "pos": "名詞", + "pn": -0.251348 + }, + { + "surface": "剛性", + "readging": "ごうせい", + "pos": "名詞", + "pn": -0.25135 + }, + { + "surface": "眩く", + "readging": "くるめく", + "pos": "動詞", + "pn": -0.251372 + }, + { + "surface": "内閣総理大臣", + "readging": "ないかくそうりだいじん", + "pos": "名詞", + "pn": -0.251372 + }, + { + "surface": "絵解き", + "readging": "えとき", + "pos": "名詞", + "pn": -0.251385 + }, + { + "surface": "法界", + "readging": "ほうかい", + "pos": "名詞", + "pn": -0.251387 + }, + { + "surface": "放下", + "readging": "ほうげ", + "pos": "名詞", + "pn": -0.251404 + }, + { + "surface": "民権", + "readging": "みんけん", + "pos": "名詞", + "pn": -0.251404 + }, + { + "surface": "青筋", + "readging": "あおすじ", + "pos": "名詞", + "pn": -0.251427 + }, + { + "surface": "ハイボール", + "readging": "ハイボール", + "pos": "名詞", + "pn": -0.251435 + }, + { + "surface": "内侍所", + "readging": "ないしどころ", + "pos": "名詞", + "pn": -0.251441 + }, + { + "surface": "塾生", + "readging": "じゅくせい", + "pos": "名詞", + "pn": -0.251446 + }, + { + "surface": "切株", + "readging": "きりかぶ", + "pos": "名詞", + "pn": -0.251452 + }, + { + "surface": "デリンジャー現象", + "readging": "デリンジャーげんしょう", + "pos": "名詞", + "pn": -0.251465 + }, + { + "surface": "精密", + "readging": "せいみつ", + "pos": "名詞", + "pn": -0.251474 + }, + { + "surface": "庶務", + "readging": "しょむ", + "pos": "名詞", + "pn": -0.2515 + }, + { + "surface": "表座敷", + "readging": "おもてざしき", + "pos": "名詞", + "pn": -0.251509 + }, + { + "surface": "巨万", + "readging": "きょまん", + "pos": "名詞", + "pn": -0.251511 + }, + { + "surface": "人入れ", + "readging": "ひといれ", + "pos": "名詞", + "pn": -0.251511 + }, + { + "surface": "御用商人", + "readging": "ごようしょうにん", + "pos": "名詞", + "pn": -0.251538 + }, + { + "surface": "駁する", + "readging": "ばくする", + "pos": "動詞", + "pn": -0.251545 + }, + { + "surface": "類推", + "readging": "るいすい", + "pos": "名詞", + "pn": -0.251553 + }, + { + "surface": "打綿", + "readging": "うちわた", + "pos": "名詞", + "pn": -0.251555 + }, + { + "surface": "宿帳", + "readging": "やどちょう", + "pos": "名詞", + "pn": -0.251568 + }, + { + "surface": "荷台", + "readging": "にだい", + "pos": "名詞", + "pn": -0.25162 + }, + { + "surface": "型式", + "readging": "かたしき", + "pos": "名詞", + "pn": -0.251629 + }, + { + "surface": "懇望", + "readging": "こんもう", + "pos": "名詞", + "pn": -0.251634 + }, + { + "surface": "流用", + "readging": "りゅうよう", + "pos": "名詞", + "pn": -0.251644 + }, + { + "surface": "濃縮", + "readging": "のうしゅく", + "pos": "名詞", + "pn": -0.251644 + }, + { + "surface": "まるぽちゃ", + "readging": "まるぽちゃ", + "pos": "名詞", + "pn": -0.251658 + }, + { + "surface": "千枚漬", + "readging": "せんまいづけ", + "pos": "名詞", + "pn": -0.251679 + }, + { + "surface": "邪魔っ気", + "readging": "じゃまっけ", + "pos": "名詞", + "pn": -0.251681 + }, + { + "surface": "木灰", + "readging": "きばい", + "pos": "名詞", + "pn": -0.251688 + }, + { + "surface": "滅私", + "readging": "めっし", + "pos": "名詞", + "pn": -0.251689 + }, + { + "surface": "橋銭", + "readging": "はしせん", + "pos": "名詞", + "pn": -0.251709 + }, + { + "surface": "凍り豆腐", + "readging": "こおりどうふ", + "pos": "名詞", + "pn": -0.251718 + }, + { + "surface": "インプレッション", + "readging": "インプレッション", + "pos": "名詞", + "pn": -0.251718 + }, + { + "surface": "アセテート", + "readging": "アセテート", + "pos": "名詞", + "pn": -0.251744 + }, + { + "surface": "南画", + "readging": "なんが", + "pos": "名詞", + "pn": -0.251755 + }, + { + "surface": "ナイター", + "readging": "ナイター", + "pos": "名詞", + "pn": -0.25176 + }, + { + "surface": "入党", + "readging": "にゅうとう", + "pos": "名詞", + "pn": -0.251763 + }, + { + "surface": "程度問題", + "readging": "ていどもんだい", + "pos": "名詞", + "pn": -0.251784 + }, + { + "surface": "町村組合", + "readging": "ちょうそんくみあい", + "pos": "名詞", + "pn": -0.251791 + }, + { + "surface": "玄関番", + "readging": "げんかんばん", + "pos": "名詞", + "pn": -0.251794 + }, + { + "surface": "キャピタル", + "readging": "キャピタル", + "pos": "名詞", + "pn": -0.251802 + }, + { + "surface": "俄仕込み", + "readging": "にわかじこみ", + "pos": "名詞", + "pn": -0.251811 + }, + { + "surface": "ポインター", + "readging": "ポインター", + "pos": "名詞", + "pn": -0.251834 + }, + { + "surface": "仕舞", + "readging": "しまい", + "pos": "名詞", + "pn": -0.251845 + }, + { + "surface": "親等", + "readging": "しんとう", + "pos": "名詞", + "pn": -0.251882 + }, + { + "surface": "積重なる", + "readging": "つみかさなる", + "pos": "動詞", + "pn": -0.251885 + }, + { + "surface": "わざくれ", + "readging": "わざくれ", + "pos": "名詞", + "pn": -0.251914 + }, + { + "surface": "腰揚げ", + "readging": "こしあげ", + "pos": "名詞", + "pn": -0.251947 + }, + { + "surface": "面疔", + "readging": "めんちょう", + "pos": "名詞", + "pn": -0.251956 + }, + { + "surface": "御教書", + "readging": "みぎょうしょ", + "pos": "名詞", + "pn": -0.251965 + }, + { + "surface": "急電", + "readging": "きゅうでん", + "pos": "名詞", + "pn": -0.251976 + }, + { + "surface": "鉢植", + "readging": "はちうえ", + "pos": "名詞", + "pn": -0.251978 + }, + { + "surface": "ドル", + "readging": "ドル", + "pos": "名詞", + "pn": -0.251978 + }, + { + "surface": "長四角", + "readging": "ながしかく", + "pos": "名詞", + "pn": -0.251979 + }, + { + "surface": "同属", + "readging": "どうぞく", + "pos": "名詞", + "pn": -0.251983 + }, + { + "surface": "小字", + "readging": "こあざ", + "pos": "名詞", + "pn": -0.251995 + }, + { + "surface": "祭儀", + "readging": "さいぎ", + "pos": "名詞", + "pn": -0.251998 + }, + { + "surface": "整流", + "readging": "せいりゅう", + "pos": "名詞", + "pn": -0.252006 + }, + { + "surface": "供出", + "readging": "きょうしゅつ", + "pos": "名詞", + "pn": -0.252006 + }, + { + "surface": "突堤", + "readging": "とってい", + "pos": "名詞", + "pn": -0.252032 + }, + { + "surface": "ざわめく", + "readging": "ざわめく", + "pos": "動詞", + "pn": -0.252062 + }, + { + "surface": "時候", + "readging": "じこう", + "pos": "名詞", + "pn": -0.252083 + }, + { + "surface": "会期", + "readging": "かいき", + "pos": "名詞", + "pn": -0.252088 + }, + { + "surface": "人払い", + "readging": "ひとばらい", + "pos": "名詞", + "pn": -0.252115 + }, + { + "surface": "酒保", + "readging": "しゅほ", + "pos": "名詞", + "pn": -0.252131 + }, + { + "surface": "混食", + "readging": "こんしょく", + "pos": "名詞", + "pn": -0.252147 + }, + { + "surface": "血路", + "readging": "けつろ", + "pos": "名詞", + "pn": -0.252147 + }, + { + "surface": "夜道", + "readging": "よみち", + "pos": "名詞", + "pn": -0.252156 + }, + { + "surface": "禍福", + "readging": "かふく", + "pos": "名詞", + "pn": -0.252164 + }, + { + "surface": "姫", + "readging": "き", + "pos": "名詞", + "pn": -0.25217 + }, + { + "surface": "パイナップル", + "readging": "パイナップル", + "pos": "名詞", + "pn": -0.252188 + }, + { + "surface": "野宿", + "readging": "のじゅく", + "pos": "名詞", + "pn": -0.2522 + }, + { + "surface": "天南星", + "readging": "てんなんしょう", + "pos": "名詞", + "pn": -0.252202 + }, + { + "surface": "白地図", + "readging": "はくちず", + "pos": "名詞", + "pn": -0.252203 + }, + { + "surface": "精微", + "readging": "せいび", + "pos": "名詞", + "pn": -0.252209 + }, + { + "surface": "派出婦", + "readging": "はしゅつふ", + "pos": "名詞", + "pn": -0.252213 + }, + { + "surface": "二次元", + "readging": "にじげん", + "pos": "名詞", + "pn": -0.252217 + }, + { + "surface": "訂正", + "readging": "ていせい", + "pos": "名詞", + "pn": -0.25222 + }, + { + "surface": "相乗平均", + "readging": "そうじょうへいきん", + "pos": "名詞", + "pn": -0.252243 + }, + { + "surface": "打刻", + "readging": "だこく", + "pos": "名詞", + "pn": -0.252243 + }, + { + "surface": "高段", + "readging": "こうだん", + "pos": "名詞", + "pn": -0.25225 + }, + { + "surface": "芽吹く", + "readging": "めぶく", + "pos": "動詞", + "pn": -0.25226 + }, + { + "surface": "けしき", + "readging": "けしきばむ", + "pos": "動詞", + "pn": -0.252265 + }, + { + "surface": "一決", + "readging": "いっけつ", + "pos": "名詞", + "pn": -0.252266 + }, + { + "surface": "名刺判", + "readging": "めいしばん", + "pos": "名詞", + "pn": -0.252287 + }, + { + "surface": "段幕", + "readging": "だんまく", + "pos": "名詞", + "pn": -0.252287 + }, + { + "surface": "震音", + "readging": "しんおん", + "pos": "名詞", + "pn": -0.252289 + }, + { + "surface": "八文字", + "readging": "はちもんじ", + "pos": "名詞", + "pn": -0.252292 + }, + { + "surface": "虫除け", + "readging": "むしよけ", + "pos": "名詞", + "pn": -0.252296 + }, + { + "surface": "本管", + "readging": "ほんかん", + "pos": "名詞", + "pn": -0.252325 + }, + { + "surface": "日賦", + "readging": "ひぶ", + "pos": "名詞", + "pn": -0.252329 + }, + { + "surface": "蠅帳", + "readging": "はいちょう", + "pos": "名詞", + "pn": -0.252337 + }, + { + "surface": "絵本", + "readging": "えほん", + "pos": "名詞", + "pn": -0.252354 + }, + { + "surface": "三下り", + "readging": "さんさがり", + "pos": "名詞", + "pn": -0.252357 + }, + { + "surface": "手枕", + "readging": "てまくら", + "pos": "名詞", + "pn": -0.252362 + }, + { + "surface": "岩魚", + "readging": "いわな", + "pos": "名詞", + "pn": -0.252368 + }, + { + "surface": "早昼", + "readging": "はやひる", + "pos": "名詞", + "pn": -0.252398 + }, + { + "surface": "細部", + "readging": "さいぶ", + "pos": "名詞", + "pn": -0.252401 + }, + { + "surface": "御構", + "readging": "おかまい", + "pos": "名詞", + "pn": -0.252415 + }, + { + "surface": "重刷", + "readging": "じゅうさつ", + "pos": "名詞", + "pn": -0.252425 + }, + { + "surface": "薄明", + "readging": "はくめい", + "pos": "名詞", + "pn": -0.252428 + }, + { + "surface": "強いて", + "readging": "しいて", + "pos": "副詞", + "pn": -0.252429 + }, + { + "surface": "遠称", + "readging": "えんしょう", + "pos": "名詞", + "pn": -0.25243 + }, + { + "surface": "ヘルパー", + "readging": "ヘルパー", + "pos": "名詞", + "pn": -0.25243 + }, + { + "surface": "戦役", + "readging": "せんえき", + "pos": "名詞", + "pn": -0.252431 + }, + { + "surface": "原器", + "readging": "げんき", + "pos": "名詞", + "pn": -0.252442 + }, + { + "surface": "電請", + "readging": "でんせい", + "pos": "名詞", + "pn": -0.252459 + }, + { + "surface": "脊索", + "readging": "せきさく", + "pos": "名詞", + "pn": -0.252507 + }, + { + "surface": "協同", + "readging": "きょうどう", + "pos": "名詞", + "pn": -0.252522 + }, + { + "surface": "通し矢", + "readging": "とおしや", + "pos": "名詞", + "pn": -0.252536 + }, + { + "surface": "手榴弾", + "readging": "しゅりゅうだん", + "pos": "名詞", + "pn": -0.252537 + }, + { + "surface": "賤民", + "readging": "せんみん", + "pos": "名詞", + "pn": -0.252541 + }, + { + "surface": "川止", + "readging": "かわどめ", + "pos": "名詞", + "pn": -0.252544 + }, + { + "surface": "火取虫", + "readging": "ひとりむし", + "pos": "名詞", + "pn": -0.252545 + }, + { + "surface": "時計回り", + "readging": "とけいまわり", + "pos": "名詞", + "pn": -0.252557 + }, + { + "surface": "譜面", + "readging": "ふめん", + "pos": "名詞", + "pn": -0.252565 + }, + { + "surface": "成績", + "readging": "せいせき", + "pos": "名詞", + "pn": -0.252594 + }, + { + "surface": "雪腹", + "readging": "ゆきばら", + "pos": "名詞", + "pn": -0.252606 + }, + { + "surface": "速記", + "readging": "そっき", + "pos": "名詞", + "pn": -0.252609 + }, + { + "surface": "株", + "readging": "くいぜ", + "pos": "名詞", + "pn": -0.25261 + }, + { + "surface": "内戦", + "readging": "ないせん", + "pos": "名詞", + "pn": -0.252613 + }, + { + "surface": "ブラック", + "readging": "ブラックボックス", + "pos": "名詞", + "pn": -0.252621 + }, + { + "surface": "念誦", + "readging": "ねんじゅ", + "pos": "名詞", + "pn": -0.252631 + }, + { + "surface": "船腹", + "readging": "せんぷく", + "pos": "名詞", + "pn": -0.252638 + }, + { + "surface": "される", + "readging": "される", + "pos": "動詞", + "pn": -0.25265 + }, + { + "surface": "愛蔵", + "readging": "あいぞう", + "pos": "名詞", + "pn": -0.252651 + }, + { + "surface": "加速度", + "readging": "かそくど", + "pos": "名詞", + "pn": -0.252652 + }, + { + "surface": "叩き台", + "readging": "たたきだい", + "pos": "名詞", + "pn": -0.252668 + }, + { + "surface": "人声", + "readging": "ひとごえ", + "pos": "名詞", + "pn": -0.252668 + }, + { + "surface": "胆", + "readging": "たん", + "pos": "名詞", + "pn": -0.252705 + }, + { + "surface": "血目", + "readging": "ちめ", + "pos": "名詞", + "pn": -0.252713 + }, + { + "surface": "轟然", + "readging": "ごうぜん", + "pos": "名詞", + "pn": -0.252738 + }, + { + "surface": "特需", + "readging": "とくじゅ", + "pos": "名詞", + "pn": -0.252742 + }, + { + "surface": "列する", + "readging": "れっする", + "pos": "動詞", + "pn": -0.252755 + }, + { + "surface": "冷蔵庫", + "readging": "れいぞうこ", + "pos": "名詞", + "pn": -0.252767 + }, + { + "surface": "ちょっきり", + "readging": "ちょっきり", + "pos": "副詞", + "pn": -0.252802 + }, + { + "surface": "売声", + "readging": "うりごえ", + "pos": "名詞", + "pn": -0.252806 + }, + { + "surface": "リスト", + "readging": "リストアップ", + "pos": "名詞", + "pn": -0.252812 + }, + { + "surface": "杉原", + "readging": "すぎはら", + "pos": "名詞", + "pn": -0.252826 + }, + { + "surface": "穂波", + "readging": "ほなみ", + "pos": "名詞", + "pn": -0.252832 + }, + { + "surface": "配膳", + "readging": "はいぜん", + "pos": "名詞", + "pn": -0.252844 + }, + { + "surface": "早手回し", + "readging": "はやてまわし", + "pos": "名詞", + "pn": -0.252861 + }, + { + "surface": "給養", + "readging": "きゅうよう", + "pos": "名詞", + "pn": -0.252864 + }, + { + "surface": "日出", + "readging": "にっしゅつ", + "pos": "名詞", + "pn": -0.252866 + }, + { + "surface": "陰極管", + "readging": "いんきょくかん", + "pos": "名詞", + "pn": -0.252874 + }, + { + "surface": "密通", + "readging": "みっつう", + "pos": "名詞", + "pn": -0.252902 + }, + { + "surface": "表具師", + "readging": "ひょうぐし", + "pos": "名詞", + "pn": -0.25291 + }, + { + "surface": "本舗", + "readging": "ほんぽ", + "pos": "名詞", + "pn": -0.252929 + }, + { + "surface": "奔命", + "readging": "ほんめい", + "pos": "名詞", + "pn": -0.252943 + }, + { + "surface": "画仙紙", + "readging": "がせんし", + "pos": "名詞", + "pn": -0.252961 + }, + { + "surface": "要地", + "readging": "ようち", + "pos": "名詞", + "pn": -0.252963 + }, + { + "surface": "断じて", + "readging": "だんじて", + "pos": "副詞", + "pn": -0.25297 + }, + { + "surface": "タンカー", + "readging": "タンカー", + "pos": "名詞", + "pn": -0.252979 + }, + { + "surface": "本能", + "readging": "ほんのう", + "pos": "名詞", + "pn": -0.252985 + }, + { + "surface": "後鉢巻", + "readging": "うしろはちまき", + "pos": "名詞", + "pn": -0.252987 + }, + { + "surface": "継馬", + "readging": "つぎうま", + "pos": "名詞", + "pn": -0.252989 + }, + { + "surface": "がらんと", + "readging": "がらんと", + "pos": "副詞", + "pn": -0.252991 + }, + { + "surface": "酸欠", + "readging": "さんけつ", + "pos": "名詞", + "pn": -0.253007 + }, + { + "surface": "鯔", + "readging": "ぼら", + "pos": "名詞", + "pn": -0.253023 + }, + { + "surface": "盲縞", + "readging": "めくらじま", + "pos": "名詞", + "pn": -0.253033 + }, + { + "surface": "脂下がる", + "readging": "やにさがる", + "pos": "動詞", + "pn": -0.253037 + }, + { + "surface": "実兄", + "readging": "じっけい", + "pos": "名詞", + "pn": -0.253046 + }, + { + "surface": "仮の世", + "readging": "かりのよ", + "pos": "名詞", + "pn": -0.253072 + }, + { + "surface": "大宮", + "readging": "おおみや", + "pos": "名詞", + "pn": -0.253073 + }, + { + "surface": "試補", + "readging": "しほ", + "pos": "名詞", + "pn": -0.253075 + }, + { + "surface": "眼界", + "readging": "がんかい", + "pos": "名詞", + "pn": -0.253077 + }, + { + "surface": "シャワー", + "readging": "シャワー", + "pos": "名詞", + "pn": -0.25308 + }, + { + "surface": "運筆", + "readging": "うんぴつ", + "pos": "名詞", + "pn": -0.253121 + }, + { + "surface": "火星", + "readging": "かせい", + "pos": "名詞", + "pn": -0.253162 + }, + { + "surface": "吸気", + "readging": "きゅうき", + "pos": "名詞", + "pn": -0.253168 + }, + { + "surface": "驀進", + "readging": "ばくしん", + "pos": "名詞", + "pn": -0.253172 + }, + { + "surface": "MKSA単位系", + "readging": "エムケーエスエーたんいけい", + "pos": "名詞", + "pn": -0.253175 + }, + { + "surface": "萵苣", + "readging": "ちさ", + "pos": "名詞", + "pn": -0.253177 + }, + { + "surface": "気慰み", + "readging": "きなぐさみ", + "pos": "名詞", + "pn": -0.253185 + }, + { + "surface": "外販", + "readging": "がいはん", + "pos": "名詞", + "pn": -0.2532 + }, + { + "surface": "拗音", + "readging": "ようおん", + "pos": "名詞", + "pn": -0.25321 + }, + { + "surface": "銃口", + "readging": "じゅうこう", + "pos": "名詞", + "pn": -0.253238 + }, + { + "surface": "春一番", + "readging": "はるいちばん", + "pos": "名詞", + "pn": -0.25325 + }, + { + "surface": "月極め", + "readging": "つきぎめ", + "pos": "名詞", + "pn": -0.253276 + }, + { + "surface": "一輪車", + "readging": "いちりんしゃ", + "pos": "名詞", + "pn": -0.253278 + }, + { + "surface": "ダイニング", + "readging": "ダイニング", + "pos": "名詞", + "pn": -0.253281 + }, + { + "surface": "浦里", + "readging": "うらざと", + "pos": "名詞", + "pn": -0.253282 + }, + { + "surface": "織地", + "readging": "おりじ", + "pos": "名詞", + "pn": -0.253303 + }, + { + "surface": "撃墜", + "readging": "げきつい", + "pos": "名詞", + "pn": -0.253308 + }, + { + "surface": "十手", + "readging": "じって", + "pos": "名詞", + "pn": -0.253321 + }, + { + "surface": "居竦まる", + "readging": "いすくまる", + "pos": "動詞", + "pn": -0.25336 + }, + { + "surface": "作家", + "readging": "さっか", + "pos": "名詞", + "pn": -0.253362 + }, + { + "surface": "貝割", + "readging": "かいわり", + "pos": "名詞", + "pn": -0.253367 + }, + { + "surface": "鉄橋", + "readging": "てっきょう", + "pos": "名詞", + "pn": -0.253384 + }, + { + "surface": "タコグラフ", + "readging": "タコグラフ", + "pos": "名詞", + "pn": -0.253385 + }, + { + "surface": "裏門", + "readging": "うらもん", + "pos": "名詞", + "pn": -0.253386 + }, + { + "surface": "主音", + "readging": "しゅおん", + "pos": "名詞", + "pn": -0.253393 + }, + { + "surface": "出炭", + "readging": "しゅったん", + "pos": "名詞", + "pn": -0.253413 + }, + { + "surface": "動産", + "readging": "どうさん", + "pos": "名詞", + "pn": -0.25342 + }, + { + "surface": "ラプソディー", + "readging": "ラプソディー", + "pos": "名詞", + "pn": -0.253428 + }, + { + "surface": "協約", + "readging": "きょうやく", + "pos": "名詞", + "pn": -0.253437 + }, + { + "surface": "内陸", + "readging": "ないりく", + "pos": "名詞", + "pn": -0.253448 + }, + { + "surface": "御納戸役", + "readging": "おなんどやく", + "pos": "名詞", + "pn": -0.253452 + }, + { + "surface": "万屋", + "readging": "よろずや", + "pos": "名詞", + "pn": -0.253485 + }, + { + "surface": "小心翼翼", + "readging": "しょうしんよくよく", + "pos": "名詞", + "pn": -0.253499 + }, + { + "surface": "箜篌", + "readging": "くご", + "pos": "名詞", + "pn": -0.2535 + }, + { + "surface": "夏座敷", + "readging": "なつざしき", + "pos": "名詞", + "pn": -0.253501 + }, + { + "surface": "中年", + "readging": "ちゅうねん", + "pos": "名詞", + "pn": -0.253514 + }, + { + "surface": "横っ面", + "readging": "よこっつら", + "pos": "名詞", + "pn": -0.253531 + }, + { + "surface": "グランド", + "readging": "グランド", + "pos": "名詞", + "pn": -0.253532 + }, + { + "surface": "海道", + "readging": "かいどう", + "pos": "名詞", + "pn": -0.253553 + }, + { + "surface": "相する", + "readging": "そうする", + "pos": "動詞", + "pn": -0.253558 + }, + { + "surface": "逃げ口上", + "readging": "にげこうじょう", + "pos": "名詞", + "pn": -0.253593 + }, + { + "surface": "タン", + "readging": "タン", + "pos": "名詞", + "pn": -0.253619 + }, + { + "surface": "水上警察", + "readging": "すいじょうけいさつ", + "pos": "名詞", + "pn": -0.253632 + }, + { + "surface": "伎楽", + "readging": "ぎがく", + "pos": "名詞", + "pn": -0.253672 + }, + { + "surface": "冷飯食い", + "readging": "ひやめしくい", + "pos": "名詞", + "pn": -0.253687 + }, + { + "surface": "亜炭", + "readging": "あたん", + "pos": "名詞", + "pn": -0.253703 + }, + { + "surface": "重役", + "readging": "じゅうやく", + "pos": "名詞", + "pn": -0.253745 + }, + { + "surface": "主我", + "readging": "しゅが", + "pos": "名詞", + "pn": -0.253748 + }, + { + "surface": "客冬", + "readging": "かくとう", + "pos": "名詞", + "pn": -0.253751 + }, + { + "surface": "白露", + "readging": "はくろ", + "pos": "名詞", + "pn": -0.253751 + }, + { + "surface": "心木", + "readging": "しんぎ", + "pos": "名詞", + "pn": -0.253803 + }, + { + "surface": "代", + "readging": "しろ", + "pos": "名詞", + "pn": -0.253805 + }, + { + "surface": "塗", + "readging": "ぬり", + "pos": "名詞", + "pn": -0.25382 + }, + { + "surface": "連判", + "readging": "れんばん", + "pos": "名詞", + "pn": -0.253824 + }, + { + "surface": "皇位", + "readging": "こうい", + "pos": "名詞", + "pn": -0.253826 + }, + { + "surface": "総決算", + "readging": "そうけっさん", + "pos": "名詞", + "pn": -0.25383 + }, + { + "surface": "一義", + "readging": "いちぎ", + "pos": "名詞", + "pn": -0.253831 + }, + { + "surface": "一軒家", + "readging": "いっけんや", + "pos": "名詞", + "pn": -0.253843 + }, + { + "surface": "大判", + "readging": "おおばん", + "pos": "名詞", + "pn": -0.253848 + }, + { + "surface": "自首", + "readging": "じしゅ", + "pos": "名詞", + "pn": -0.253864 + }, + { + "surface": "調整", + "readging": "ちょうせい", + "pos": "名詞", + "pn": -0.253877 + }, + { + "surface": "先途", + "readging": "せんど", + "pos": "名詞", + "pn": -0.25388 + }, + { + "surface": "硼素", + "readging": "ほうそ", + "pos": "名詞", + "pn": -0.253907 + }, + { + "surface": "利己", + "readging": "りこ", + "pos": "名詞", + "pn": -0.253916 + }, + { + "surface": "形而下", + "readging": "けいじか", + "pos": "名詞", + "pn": -0.253922 + }, + { + "surface": "ペース", + "readging": "ペースメーカー", + "pos": "名詞", + "pn": -0.253932 + }, + { + "surface": "pH", + "readging": "ピーエイチ", + "pos": "名詞", + "pn": -0.25394 + }, + { + "surface": "世", + "readging": "せい", + "pos": "名詞", + "pn": -0.253942 + }, + { + "surface": "嗅覚", + "readging": "きゅうかく", + "pos": "名詞", + "pn": -0.253963 + }, + { + "surface": "合意", + "readging": "ごうい", + "pos": "名詞", + "pn": -0.253964 + }, + { + "surface": "道教", + "readging": "どうきょう", + "pos": "名詞", + "pn": -0.25397 + }, + { + "surface": "東征", + "readging": "とうせい", + "pos": "名詞", + "pn": -0.253975 + }, + { + "surface": "書房", + "readging": "しょぼう", + "pos": "名詞", + "pn": -0.25398 + }, + { + "surface": "軽油", + "readging": "けいゆ", + "pos": "名詞", + "pn": -0.253987 + }, + { + "surface": "初夜権", + "readging": "しょやけん", + "pos": "名詞", + "pn": -0.254002 + }, + { + "surface": "甲", + "readging": "かん", + "pos": "名詞", + "pn": -0.254003 + }, + { + "surface": "諸人", + "readging": "もろびと", + "pos": "名詞", + "pn": -0.254004 + }, + { + "surface": "防共", + "readging": "ぼうきょう", + "pos": "名詞", + "pn": -0.254009 + }, + { + "surface": "筋向い", + "readging": "すじむかい", + "pos": "名詞", + "pn": -0.254016 + }, + { + "surface": "踏みしだく", + "readging": "ふみしだく", + "pos": "動詞", + "pn": -0.254024 + }, + { + "surface": "当限", + "readging": "とうぎり", + "pos": "名詞", + "pn": -0.254024 + }, + { + "surface": "印刻", + "readging": "いんこく", + "pos": "名詞", + "pn": -0.254029 + }, + { + "surface": "ソフト", + "readging": "ソフトドリンク", + "pos": "名詞", + "pn": -0.254038 + }, + { + "surface": "致仕", + "readging": "ちし", + "pos": "名詞", + "pn": -0.254074 + }, + { + "surface": "買食い", + "readging": "かいぐい", + "pos": "名詞", + "pn": -0.254085 + }, + { + "surface": "軍用", + "readging": "ぐんよう", + "pos": "名詞", + "pn": -0.254089 + }, + { + "surface": "スコア", + "readging": "スコアブック", + "pos": "名詞", + "pn": -0.2541 + }, + { + "surface": "斜辺", + "readging": "しゃへん", + "pos": "名詞", + "pn": -0.2541 + }, + { + "surface": "配電", + "readging": "はいでん", + "pos": "名詞", + "pn": -0.254106 + }, + { + "surface": "大厄", + "readging": "たいやく", + "pos": "名詞", + "pn": -0.25411 + }, + { + "surface": "温習", + "readging": "おんしゅう", + "pos": "名詞", + "pn": -0.254123 + }, + { + "surface": "仙女", + "readging": "せんじょ", + "pos": "名詞", + "pn": -0.254126 + }, + { + "surface": "粒食", + "readging": "りゅうしょく", + "pos": "名詞", + "pn": -0.254128 + }, + { + "surface": "低位", + "readging": "ていい", + "pos": "名詞", + "pn": -0.254138 + }, + { + "surface": "不日", + "readging": "ふじつ", + "pos": "副詞", + "pn": -0.254168 + }, + { + "surface": "俗論", + "readging": "ぞくろん", + "pos": "名詞", + "pn": -0.254174 + }, + { + "surface": "遠海", + "readging": "えんかい", + "pos": "名詞", + "pn": -0.25418 + }, + { + "surface": "属領", + "readging": "ぞくりょう", + "pos": "名詞", + "pn": -0.254185 + }, + { + "surface": "クライミング", + "readging": "クライミング", + "pos": "名詞", + "pn": -0.254191 + }, + { + "surface": "破瓜期", + "readging": "はかき", + "pos": "名詞", + "pn": -0.254195 + }, + { + "surface": "尼僧", + "readging": "にそう", + "pos": "名詞", + "pn": -0.254196 + }, + { + "surface": "甚句", + "readging": "じんく", + "pos": "名詞", + "pn": -0.25421 + }, + { + "surface": "スラックス", + "readging": "スラックス", + "pos": "名詞", + "pn": -0.254217 + }, + { + "surface": "返信", + "readging": "へんしん", + "pos": "名詞", + "pn": -0.254232 + }, + { + "surface": "憂慮", + "readging": "ゆうりょ", + "pos": "名詞", + "pn": -0.254247 + }, + { + "surface": "掃立て", + "readging": "はきたて", + "pos": "名詞", + "pn": -0.254277 + }, + { + "surface": "サテン", + "readging": "サテン", + "pos": "名詞", + "pn": -0.254292 + }, + { + "surface": "賄", + "readging": "まかない", + "pos": "名詞", + "pn": -0.254294 + }, + { + "surface": "毒魚", + "readging": "どくぎょ", + "pos": "名詞", + "pn": -0.254303 + }, + { + "surface": "胎動", + "readging": "たいどう", + "pos": "名詞", + "pn": -0.254314 + }, + { + "surface": "質札", + "readging": "しちふだ", + "pos": "名詞", + "pn": -0.254323 + }, + { + "surface": "外接", + "readging": "がいせつ", + "pos": "名詞", + "pn": -0.254323 + }, + { + "surface": "準用", + "readging": "じゅんよう", + "pos": "名詞", + "pn": -0.254357 + }, + { + "surface": "総評", + "readging": "そうひょう", + "pos": "名詞", + "pn": -0.254381 + }, + { + "surface": "振付", + "readging": "ふりつけ", + "pos": "名詞", + "pn": -0.254388 + }, + { + "surface": "撃破", + "readging": "げきは", + "pos": "名詞", + "pn": -0.254388 + }, + { + "surface": "選手権", + "readging": "せんしゅけん", + "pos": "名詞", + "pn": -0.254408 + }, + { + "surface": "空電", + "readging": "くうでん", + "pos": "名詞", + "pn": -0.254432 + }, + { + "surface": "武略", + "readging": "ぶりゃく", + "pos": "名詞", + "pn": -0.254438 + }, + { + "surface": "回米", + "readging": "かいまい", + "pos": "名詞", + "pn": -0.254445 + }, + { + "surface": "角書", + "readging": "つのがき", + "pos": "名詞", + "pn": -0.254454 + }, + { + "surface": "概評", + "readging": "がいひょう", + "pos": "名詞", + "pn": -0.254459 + }, + { + "surface": "鼈", + "readging": "すっぽん", + "pos": "名詞", + "pn": -0.254472 + }, + { + "surface": "何首烏", + "readging": "かしゅう", + "pos": "名詞", + "pn": -0.254474 + }, + { + "surface": "貰い下げる", + "readging": "もらいさげる", + "pos": "動詞", + "pn": -0.254484 + }, + { + "surface": "私書箱", + "readging": "ししょばこ", + "pos": "名詞", + "pn": -0.254516 + }, + { + "surface": "山骨", + "readging": "さんこつ", + "pos": "名詞", + "pn": -0.254521 + }, + { + "surface": "灰分", + "readging": "かいぶん", + "pos": "名詞", + "pn": -0.254526 + }, + { + "surface": "渾一", + "readging": "こんいつ", + "pos": "名詞", + "pn": -0.254553 + }, + { + "surface": "内親王", + "readging": "ないしんのう", + "pos": "名詞", + "pn": -0.254565 + }, + { + "surface": "信用状", + "readging": "しんようじょう", + "pos": "名詞", + "pn": -0.254566 + }, + { + "surface": "主情", + "readging": "しゅじょう", + "pos": "名詞", + "pn": -0.254573 + }, + { + "surface": "心地", + "readging": "ここち", + "pos": "名詞", + "pn": -0.25458 + }, + { + "surface": "レタリング", + "readging": "レタリング", + "pos": "名詞", + "pn": -0.254582 + }, + { + "surface": "通宝", + "readging": "つうほう", + "pos": "名詞", + "pn": -0.254584 + }, + { + "surface": "宗匠", + "readging": "そうしょう", + "pos": "名詞", + "pn": -0.254589 + }, + { + "surface": "一日", + "readging": "ついたち", + "pos": "名詞", + "pn": -0.254593 + }, + { + "surface": "身上", + "readging": "しんしょう", + "pos": "名詞", + "pn": -0.254605 + }, + { + "surface": "無我夢中", + "readging": "むがむちゅう", + "pos": "名詞", + "pn": -0.254637 + }, + { + "surface": "番太郎", + "readging": "ばんたろう", + "pos": "名詞", + "pn": -0.25465 + }, + { + "surface": "乾", + "readging": "かん", + "pos": "名詞", + "pn": -0.254678 + }, + { + "surface": "妖婦", + "readging": "ようふ", + "pos": "名詞", + "pn": -0.254688 + }, + { + "surface": "社線", + "readging": "しゃせん", + "pos": "名詞", + "pn": -0.254695 + }, + { + "surface": "歌祭文", + "readging": "うたざいもん", + "pos": "名詞", + "pn": -0.254702 + }, + { + "surface": "配合", + "readging": "はいごう", + "pos": "名詞", + "pn": -0.254721 + }, + { + "surface": "協商", + "readging": "きょうしょう", + "pos": "名詞", + "pn": -0.254738 + }, + { + "surface": "丁幾", + "readging": "チンキ", + "pos": "名詞", + "pn": -0.254742 + }, + { + "surface": "鑑みる", + "readging": "かんがみる", + "pos": "動詞", + "pn": -0.254745 + }, + { + "surface": "空取引", + "readging": "くうとりひき", + "pos": "名詞", + "pn": -0.254763 + }, + { + "surface": "争点", + "readging": "そうてん", + "pos": "名詞", + "pn": -0.254775 + }, + { + "surface": "全巻", + "readging": "ぜんかん", + "pos": "名詞", + "pn": -0.254775 + }, + { + "surface": "丸寝", + "readging": "まるね", + "pos": "名詞", + "pn": -0.254778 + }, + { + "surface": "姥", + "readging": "うば", + "pos": "名詞", + "pn": -0.254833 + }, + { + "surface": "複利法", + "readging": "ふくりほう", + "pos": "名詞", + "pn": -0.254841 + }, + { + "surface": "墓前", + "readging": "ぼぜん", + "pos": "名詞", + "pn": -0.254857 + }, + { + "surface": "一中節", + "readging": "いっちゅうぶし", + "pos": "名詞", + "pn": -0.254871 + }, + { + "surface": "排日", + "readging": "はいにち", + "pos": "名詞", + "pn": -0.254906 + }, + { + "surface": "註", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.254922 + }, + { + "surface": "自作", + "readging": "じさく", + "pos": "名詞", + "pn": -0.254922 + }, + { + "surface": "食い上げ", + "readging": "くいあげ", + "pos": "名詞", + "pn": -0.254929 + }, + { + "surface": "焼入れ", + "readging": "やきいれ", + "pos": "名詞", + "pn": -0.25493 + }, + { + "surface": "軍令", + "readging": "ぐんれい", + "pos": "名詞", + "pn": -0.254935 + }, + { + "surface": "電動機", + "readging": "でんどうき", + "pos": "名詞", + "pn": -0.254944 + }, + { + "surface": "無駄食い", + "readging": "むだぐい", + "pos": "名詞", + "pn": -0.254946 + }, + { + "surface": "生食", + "readging": "せいしょく", + "pos": "名詞", + "pn": -0.25495 + }, + { + "surface": "椿油", + "readging": "つばきあぶら", + "pos": "名詞", + "pn": -0.254964 + }, + { + "surface": "梓", + "readging": "し", + "pos": "名詞", + "pn": -0.254971 + }, + { + "surface": "祭典", + "readging": "さいてん", + "pos": "名詞", + "pn": -0.25499 + }, + { + "surface": "クレーン", + "readging": "クレーン", + "pos": "名詞", + "pn": -0.255003 + }, + { + "surface": "船板塀", + "readging": "ふないたべい", + "pos": "名詞", + "pn": -0.25503 + }, + { + "surface": "湯浴み", + "readging": "ゆあみ", + "pos": "名詞", + "pn": -0.255031 + }, + { + "surface": "氷室", + "readging": "ひむろ", + "pos": "名詞", + "pn": -0.255037 + }, + { + "surface": "重詰", + "readging": "じゅうづめ", + "pos": "名詞", + "pn": -0.25504 + }, + { + "surface": "虚虚実実", + "readging": "きょきょじつじつ", + "pos": "名詞", + "pn": -0.255042 + }, + { + "surface": "フィート", + "readging": "フィート", + "pos": "名詞", + "pn": -0.25508 + }, + { + "surface": "渋茶", + "readging": "しぶちゃ", + "pos": "名詞", + "pn": -0.255088 + }, + { + "surface": "私生子", + "readging": "しせいし", + "pos": "名詞", + "pn": -0.255098 + }, + { + "surface": "実習", + "readging": "じっしゅう", + "pos": "名詞", + "pn": -0.255104 + }, + { + "surface": "直音", + "readging": "ちょくおん", + "pos": "名詞", + "pn": -0.25513 + }, + { + "surface": "腹筋", + "readging": "ふっきん", + "pos": "名詞", + "pn": -0.255159 + }, + { + "surface": "ロゴス", + "readging": "ロゴス", + "pos": "名詞", + "pn": -0.255179 + }, + { + "surface": "駐在", + "readging": "ちゅうざい", + "pos": "名詞", + "pn": -0.255183 + }, + { + "surface": "知事", + "readging": "ちじ", + "pos": "名詞", + "pn": -0.255196 + }, + { + "surface": "能う", + "readging": "あたう", + "pos": "動詞", + "pn": -0.255203 + }, + { + "surface": "新嘗祭", + "readging": "にいなめさい", + "pos": "名詞", + "pn": -0.255238 + }, + { + "surface": "電路", + "readging": "でんろ", + "pos": "名詞", + "pn": -0.255242 + }, + { + "surface": "タップ", + "readging": "タップダンス", + "pos": "名詞", + "pn": -0.255251 + }, + { + "surface": "抜刷", + "readging": "ぬきずり", + "pos": "名詞", + "pn": -0.255264 + }, + { + "surface": "未設", + "readging": "みせつ", + "pos": "名詞", + "pn": -0.255289 + }, + { + "surface": "宗義", + "readging": "しゅうぎ", + "pos": "名詞", + "pn": -0.255296 + }, + { + "surface": "ラバ", + "readging": "ラバ", + "pos": "名詞", + "pn": -0.255306 + }, + { + "surface": "馳せる", + "readging": "はせる", + "pos": "動詞", + "pn": -0.255311 + }, + { + "surface": "誂える", + "readging": "あつらえる", + "pos": "動詞", + "pn": -0.255314 + }, + { + "surface": "語感", + "readging": "ごかん", + "pos": "名詞", + "pn": -0.255317 + }, + { + "surface": "抱く", + "readging": "いだく", + "pos": "動詞", + "pn": -0.255352 + }, + { + "surface": "後家", + "readging": "ごけ", + "pos": "名詞", + "pn": -0.255372 + }, + { + "surface": "クリニック", + "readging": "クリニック", + "pos": "名詞", + "pn": -0.255375 + }, + { + "surface": "光電管", + "readging": "こうでんかん", + "pos": "名詞", + "pn": -0.255378 + }, + { + "surface": "七回忌", + "readging": "しちかいき", + "pos": "名詞", + "pn": -0.255383 + }, + { + "surface": "櫓門", + "readging": "やぐらもん", + "pos": "名詞", + "pn": -0.255384 + }, + { + "surface": "フルート", + "readging": "フルート", + "pos": "名詞", + "pn": -0.255386 + }, + { + "surface": "旅団", + "readging": "りょだん", + "pos": "名詞", + "pn": -0.255387 + }, + { + "surface": "分会", + "readging": "ぶんかい", + "pos": "名詞", + "pn": -0.25539 + }, + { + "surface": "無月", + "readging": "むげつ", + "pos": "名詞", + "pn": -0.255402 + }, + { + "surface": "平面図", + "readging": "へいめんず", + "pos": "名詞", + "pn": -0.255402 + }, + { + "surface": "初生", + "readging": "しょせい", + "pos": "名詞", + "pn": -0.255405 + }, + { + "surface": "砂舟", + "readging": "すなぶね", + "pos": "名詞", + "pn": -0.255407 + }, + { + "surface": "転び", + "readging": "ころび", + "pos": "名詞", + "pn": -0.25541 + }, + { + "surface": "到達", + "readging": "とうたつ", + "pos": "名詞", + "pn": -0.255421 + }, + { + "surface": "見渡す", + "readging": "みわたす", + "pos": "動詞", + "pn": -0.255422 + }, + { + "surface": "僧庵", + "readging": "そうあん", + "pos": "名詞", + "pn": -0.255427 + }, + { + "surface": "野暮用", + "readging": "やぼよう", + "pos": "名詞", + "pn": -0.255461 + }, + { + "surface": "大和", + "readging": "やまとなでしこ", + "pos": "名詞", + "pn": -0.255471 + }, + { + "surface": "ゼロ歳児", + "readging": "ゼロさいじ", + "pos": "名詞", + "pn": -0.255494 + }, + { + "surface": "何がさて", + "readging": "なにがさて", + "pos": "副詞", + "pn": -0.255512 + }, + { + "surface": "宣戦", + "readging": "せんせん", + "pos": "名詞", + "pn": -0.255518 + }, + { + "surface": "散点", + "readging": "さんてん", + "pos": "名詞", + "pn": -0.255528 + }, + { + "surface": "差前", + "readging": "さしまえ", + "pos": "名詞", + "pn": -0.255548 + }, + { + "surface": "欹てる", + "readging": "そばだてる", + "pos": "動詞", + "pn": -0.25556 + }, + { + "surface": "落魚", + "readging": "おちうお", + "pos": "名詞", + "pn": -0.255569 + }, + { + "surface": "調子付く", + "readging": "ちょうしづく", + "pos": "動詞", + "pn": -0.25562 + }, + { + "surface": "運営", + "readging": "うんえい", + "pos": "名詞", + "pn": -0.255626 + }, + { + "surface": "条令", + "readging": "じょうれい", + "pos": "名詞", + "pn": -0.255634 + }, + { + "surface": "求職", + "readging": "きゅうしょく", + "pos": "名詞", + "pn": -0.255643 + }, + { + "surface": "起句", + "readging": "きく", + "pos": "名詞", + "pn": -0.255649 + }, + { + "surface": "最賃", + "readging": "さいちん", + "pos": "名詞", + "pn": -0.255652 + }, + { + "surface": "死灰", + "readging": "しかい", + "pos": "名詞", + "pn": -0.25566 + }, + { + "surface": "開発", + "readging": "かいはつ", + "pos": "名詞", + "pn": -0.255673 + }, + { + "surface": "反問", + "readging": "はんもん", + "pos": "名詞", + "pn": -0.255675 + }, + { + "surface": "遠泳", + "readging": "えんえい", + "pos": "名詞", + "pn": -0.255689 + }, + { + "surface": "一波", + "readging": "いっぱ", + "pos": "名詞", + "pn": -0.255705 + }, + { + "surface": "サドル", + "readging": "サドル", + "pos": "名詞", + "pn": -0.255711 + }, + { + "surface": "無意味", + "readging": "むいみ", + "pos": "名詞", + "pn": -0.255715 + }, + { + "surface": "最大公約数", + "readging": "さいだいこうやくすう", + "pos": "名詞", + "pn": -0.255716 + }, + { + "surface": "小数点", + "readging": "しょうすうてん", + "pos": "名詞", + "pn": -0.255731 + }, + { + "surface": "袋縫", + "readging": "ふくろぬい", + "pos": "名詞", + "pn": -0.255737 + }, + { + "surface": "経", + "readging": "きょう", + "pos": "名詞", + "pn": -0.255739 + }, + { + "surface": "別れ路", + "readging": "わかれじ", + "pos": "名詞", + "pn": -0.255761 + }, + { + "surface": "遠忌", + "readging": "おんき", + "pos": "名詞", + "pn": -0.255797 + }, + { + "surface": "控訴", + "readging": "こうそ", + "pos": "名詞", + "pn": -0.255799 + }, + { + "surface": "芽立ち", + "readging": "めだち", + "pos": "名詞", + "pn": -0.255813 + }, + { + "surface": "文官", + "readging": "ぶんかん", + "pos": "名詞", + "pn": -0.255818 + }, + { + "surface": "種変り", + "readging": "たねがわり", + "pos": "名詞", + "pn": -0.255839 + }, + { + "surface": "格付", + "readging": "かくづけ", + "pos": "名詞", + "pn": -0.255867 + }, + { + "surface": "沈丁花", + "readging": "じんちょうげ", + "pos": "名詞", + "pn": -0.25587 + }, + { + "surface": "風体", + "readging": "ふうてい", + "pos": "名詞", + "pn": -0.255872 + }, + { + "surface": "天文台", + "readging": "てんもんだい", + "pos": "名詞", + "pn": -0.255877 + }, + { + "surface": "ボレロ", + "readging": "ボレロ", + "pos": "名詞", + "pn": -0.255882 + }, + { + "surface": "レーゼドラマ", + "readging": "レーゼドラマ", + "pos": "名詞", + "pn": -0.255887 + }, + { + "surface": "答訪", + "readging": "とうほう", + "pos": "名詞", + "pn": -0.255894 + }, + { + "surface": "求縁", + "readging": "きゅうえん", + "pos": "名詞", + "pn": -0.255896 + }, + { + "surface": "月割", + "readging": "つきわり", + "pos": "名詞", + "pn": -0.255902 + }, + { + "surface": "雑交", + "readging": "ざっこう", + "pos": "名詞", + "pn": -0.255929 + }, + { + "surface": "リコール", + "readging": "リコール", + "pos": "名詞", + "pn": -0.255938 + }, + { + "surface": "一般法", + "readging": "いっぱんほう", + "pos": "名詞", + "pn": -0.255939 + }, + { + "surface": "熊ん蜂", + "readging": "くまんばち", + "pos": "名詞", + "pn": -0.255942 + }, + { + "surface": "化学兵器", + "readging": "かがくへいき", + "pos": "名詞", + "pn": -0.255946 + }, + { + "surface": "認証官", + "readging": "にんしょうかん", + "pos": "名詞", + "pn": -0.255954 + }, + { + "surface": "餞", + "readging": "はなむけ", + "pos": "名詞", + "pn": -0.255981 + }, + { + "surface": "船積み", + "readging": "ふなづみ", + "pos": "名詞", + "pn": -0.255988 + }, + { + "surface": "ホルン", + "readging": "ホルン", + "pos": "名詞", + "pn": -0.256003 + }, + { + "surface": "工数", + "readging": "こうすう", + "pos": "名詞", + "pn": -0.256003 + }, + { + "surface": "思い返す", + "readging": "おもいかえす", + "pos": "動詞", + "pn": -0.256016 + }, + { + "surface": "腹足類", + "readging": "ふくそくるい", + "pos": "名詞", + "pn": -0.25604 + }, + { + "surface": "ファッショ", + "readging": "ファッショ", + "pos": "名詞", + "pn": -0.256058 + }, + { + "surface": "朝礼", + "readging": "ちょうれい", + "pos": "名詞", + "pn": -0.256065 + }, + { + "surface": "敵愾心", + "readging": "てきがいしん", + "pos": "名詞", + "pn": -0.256068 + }, + { + "surface": "網打", + "readging": "あみうち", + "pos": "名詞", + "pn": -0.256083 + }, + { + "surface": "浮身", + "readging": "うきみ", + "pos": "名詞", + "pn": -0.256087 + }, + { + "surface": "母権", + "readging": "ぼけん", + "pos": "名詞", + "pn": -0.256098 + }, + { + "surface": "画集", + "readging": "がしゅう", + "pos": "名詞", + "pn": -0.256104 + }, + { + "surface": "機密", + "readging": "きみつ", + "pos": "名詞", + "pn": -0.256118 + }, + { + "surface": "ごった返す", + "readging": "ごったがえす", + "pos": "動詞", + "pn": -0.256166 + }, + { + "surface": "セミナー", + "readging": "セミナー", + "pos": "名詞", + "pn": -0.256168 + }, + { + "surface": "うつらうつら", + "readging": "うつらうつら", + "pos": "副詞", + "pn": -0.256202 + }, + { + "surface": "貧農", + "readging": "ひんのう", + "pos": "名詞", + "pn": -0.256224 + }, + { + "surface": "私通", + "readging": "しつう", + "pos": "名詞", + "pn": -0.256232 + }, + { + "surface": "無表情", + "readging": "むひょうじょう", + "pos": "名詞", + "pn": -0.256246 + }, + { + "surface": "常務", + "readging": "じょうむ", + "pos": "名詞", + "pn": -0.256257 + }, + { + "surface": "密殺", + "readging": "みっさつ", + "pos": "名詞", + "pn": -0.25626 + }, + { + "surface": "絶対権", + "readging": "ぜったいけん", + "pos": "名詞", + "pn": -0.256265 + }, + { + "surface": "嘶く", + "readging": "いななく", + "pos": "動詞", + "pn": -0.256274 + }, + { + "surface": "笹舟", + "readging": "ささぶね", + "pos": "名詞", + "pn": -0.256283 + }, + { + "surface": "兵権", + "readging": "へいけん", + "pos": "名詞", + "pn": -0.256284 + }, + { + "surface": "貴族", + "readging": "きぞく", + "pos": "名詞", + "pn": -0.256285 + }, + { + "surface": "長剣", + "readging": "ちょうけん", + "pos": "名詞", + "pn": -0.256289 + }, + { + "surface": "ステートメント", + "readging": "ステートメント", + "pos": "名詞", + "pn": -0.256325 + }, + { + "surface": "原動力", + "readging": "げんどうりょく", + "pos": "名詞", + "pn": -0.256331 + }, + { + "surface": "大序", + "readging": "だいじょ", + "pos": "名詞", + "pn": -0.256343 + }, + { + "surface": "カフエー", + "readging": "カフエー", + "pos": "名詞", + "pn": -0.256356 + }, + { + "surface": "積出す", + "readging": "つみだす", + "pos": "動詞", + "pn": -0.25637 + }, + { + "surface": "位記", + "readging": "いき", + "pos": "名詞", + "pn": -0.256382 + }, + { + "surface": "公図", + "readging": "こうず", + "pos": "名詞", + "pn": -0.256386 + }, + { + "surface": "大和", + "readging": "やまとことば", + "pos": "名詞", + "pn": -0.256392 + }, + { + "surface": "恰幅", + "readging": "かっぷく", + "pos": "名詞", + "pn": -0.256398 + }, + { + "surface": "諦", + "readging": "てい", + "pos": "名詞", + "pn": -0.2564 + }, + { + "surface": "姉妹", + "readging": "しまい", + "pos": "名詞", + "pn": -0.256406 + }, + { + "surface": "弱酸", + "readging": "じゃくさん", + "pos": "名詞", + "pn": -0.25642 + }, + { + "surface": "落籍す", + "readging": "ひかす", + "pos": "動詞", + "pn": -0.25642 + }, + { + "surface": "秋作", + "readging": "あきさく", + "pos": "名詞", + "pn": -0.256446 + }, + { + "surface": "戯作", + "readging": "げさく", + "pos": "名詞", + "pn": -0.256458 + }, + { + "surface": "滑降", + "readging": "かっこう", + "pos": "名詞", + "pn": -0.256472 + }, + { + "surface": "早仕舞", + "readging": "はやじまい", + "pos": "名詞", + "pn": -0.256474 + }, + { + "surface": "ディスプレー", + "readging": "ディスプレー", + "pos": "名詞", + "pn": -0.256477 + }, + { + "surface": "但書", + "readging": "ただしがき", + "pos": "名詞", + "pn": -0.256483 + }, + { + "surface": "高速度鋼", + "readging": "こうそくどこう", + "pos": "名詞", + "pn": -0.25649 + }, + { + "surface": "齷齪", + "readging": "あくせく", + "pos": "名詞", + "pn": -0.256509 + }, + { + "surface": "嵩", + "readging": "かさ", + "pos": "名詞", + "pn": -0.256515 + }, + { + "surface": "雪折れ", + "readging": "ゆきおれ", + "pos": "名詞", + "pn": -0.25652 + }, + { + "surface": "太陽灯", + "readging": "たいようとう", + "pos": "名詞", + "pn": -0.256522 + }, + { + "surface": "羽音", + "readging": "はおと", + "pos": "名詞", + "pn": -0.256543 + }, + { + "surface": "東国", + "readging": "とうごく", + "pos": "名詞", + "pn": -0.256545 + }, + { + "surface": "本妻", + "readging": "ほんさい", + "pos": "名詞", + "pn": -0.256553 + }, + { + "surface": "錦上", + "readging": "きんじょう", + "pos": "名詞", + "pn": -0.256559 + }, + { + "surface": "報ずる", + "readging": "ほうずる", + "pos": "動詞", + "pn": -0.256571 + }, + { + "surface": "忘憂", + "readging": "ぼうゆう", + "pos": "名詞", + "pn": -0.256616 + }, + { + "surface": "主意", + "readging": "しゅい", + "pos": "名詞", + "pn": -0.256623 + }, + { + "surface": "八頭身", + "readging": "はっとうしん", + "pos": "名詞", + "pn": -0.256624 + }, + { + "surface": "橋板", + "readging": "はしいた", + "pos": "名詞", + "pn": -0.256649 + }, + { + "surface": "脈動", + "readging": "みゃくどう", + "pos": "名詞", + "pn": -0.256652 + }, + { + "surface": "プラタナス", + "readging": "プラタナス", + "pos": "名詞", + "pn": -0.256686 + }, + { + "surface": "父君", + "readging": "ふくん", + "pos": "名詞", + "pn": -0.256695 + }, + { + "surface": "輪伐", + "readging": "りんばつ", + "pos": "名詞", + "pn": -0.256698 + }, + { + "surface": "出陣", + "readging": "しゅつじん", + "pos": "名詞", + "pn": -0.256715 + }, + { + "surface": "甘蔗", + "readging": "かんしょ", + "pos": "名詞", + "pn": -0.256735 + }, + { + "surface": "煮沸", + "readging": "しゃふつ", + "pos": "名詞", + "pn": -0.256748 + }, + { + "surface": "個人主義", + "readging": "こじんしゅぎ", + "pos": "名詞", + "pn": -0.256759 + }, + { + "surface": "牽強", + "readging": "けんきょう", + "pos": "名詞", + "pn": -0.256782 + }, + { + "surface": "サイバネティックス", + "readging": "サイバネティックス", + "pos": "名詞", + "pn": -0.256782 + }, + { + "surface": "面部", + "readging": "めんぶ", + "pos": "名詞", + "pn": -0.256836 + }, + { + "surface": "霊知", + "readging": "れいち", + "pos": "名詞", + "pn": -0.25684 + }, + { + "surface": "次官", + "readging": "じかん", + "pos": "名詞", + "pn": -0.256849 + }, + { + "surface": "アノフェレス", + "readging": "アノフェレス", + "pos": "名詞", + "pn": -0.256873 + }, + { + "surface": "切割り", + "readging": "きりわり", + "pos": "名詞", + "pn": -0.256892 + }, + { + "surface": "竜", + "readging": "りょう", + "pos": "名詞", + "pn": -0.256894 + }, + { + "surface": "相対性原理", + "readging": "そうたいせいげんり", + "pos": "名詞", + "pn": -0.256925 + }, + { + "surface": "出し殻", + "readging": "だしがら", + "pos": "名詞", + "pn": -0.256926 + }, + { + "surface": "割前", + "readging": "わりまえ", + "pos": "名詞", + "pn": -0.256936 + }, + { + "surface": "試聴", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.256941 + }, + { + "surface": "年限", + "readging": "ねんげん", + "pos": "名詞", + "pn": -0.256957 + }, + { + "surface": "帰航", + "readging": "きこう", + "pos": "名詞", + "pn": -0.256964 + }, + { + "surface": "迎え", + "readging": "むかえ", + "pos": "名詞", + "pn": -0.256968 + }, + { + "surface": "ごりごり", + "readging": "ごりごり", + "pos": "副詞", + "pn": -0.256969 + }, + { + "surface": "フラノ", + "readging": "フラノ", + "pos": "名詞", + "pn": -0.256981 + }, + { + "surface": "スパート", + "readging": "スパート", + "pos": "名詞", + "pn": -0.256984 + }, + { + "surface": "黒竹", + "readging": "くろちく", + "pos": "名詞", + "pn": -0.25699 + }, + { + "surface": "グラム", + "readging": "グラム", + "pos": "名詞", + "pn": -0.256997 + }, + { + "surface": "御朱印船", + "readging": "ごしゅいんせん", + "pos": "名詞", + "pn": -0.257011 + }, + { + "surface": "同数", + "readging": "どうすう", + "pos": "名詞", + "pn": -0.257011 + }, + { + "surface": "キャディー", + "readging": "キャディー", + "pos": "名詞", + "pn": -0.257014 + }, + { + "surface": "遣り過す", + "readging": "やりすごす", + "pos": "動詞", + "pn": -0.257054 + }, + { + "surface": "行い", + "readging": "おこない", + "pos": "名詞", + "pn": -0.257076 + }, + { + "surface": "施行", + "readging": "せこう", + "pos": "名詞", + "pn": -0.257113 + }, + { + "surface": "グレー", + "readging": "グレー", + "pos": "名詞", + "pn": -0.257116 + }, + { + "surface": "パラグラフ", + "readging": "パラグラフ", + "pos": "名詞", + "pn": -0.257138 + }, + { + "surface": "三椏", + "readging": "みつまた", + "pos": "名詞", + "pn": -0.257147 + }, + { + "surface": "マントルピース", + "readging": "マントルピース", + "pos": "名詞", + "pn": -0.257153 + }, + { + "surface": "早生れ", + "readging": "はやうまれ", + "pos": "名詞", + "pn": -0.257178 + }, + { + "surface": "労働協約", + "readging": "ろうどうきょうやく", + "pos": "名詞", + "pn": -0.257221 + }, + { + "surface": "字画", + "readging": "じかく", + "pos": "名詞", + "pn": -0.257221 + }, + { + "surface": "白酒", + "readging": "しろざけ", + "pos": "名詞", + "pn": -0.257242 + }, + { + "surface": "生死", + "readging": "しょうじ", + "pos": "名詞", + "pn": -0.257246 + }, + { + "surface": "冥王星", + "readging": "めいおうせい", + "pos": "名詞", + "pn": -0.257251 + }, + { + "surface": "猛鳥", + "readging": "もうちょう", + "pos": "名詞", + "pn": -0.257254 + }, + { + "surface": "辻車", + "readging": "つじぐるま", + "pos": "名詞", + "pn": -0.257266 + }, + { + "surface": "先回り", + "readging": "さきまわり", + "pos": "名詞", + "pn": -0.257267 + }, + { + "surface": "狭軌", + "readging": "きょうき", + "pos": "名詞", + "pn": -0.257276 + }, + { + "surface": "繊巧", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.257283 + }, + { + "surface": "七つ立ち", + "readging": "ななつだち", + "pos": "名詞", + "pn": -0.257285 + }, + { + "surface": "割礼", + "readging": "かつれい", + "pos": "名詞", + "pn": -0.257301 + }, + { + "surface": "咎人", + "readging": "とがにん", + "pos": "名詞", + "pn": -0.25731 + }, + { + "surface": "平文", + "readging": "ひらぶん", + "pos": "名詞", + "pn": -0.257327 + }, + { + "surface": "転進", + "readging": "てんしん", + "pos": "名詞", + "pn": -0.257336 + }, + { + "surface": "シール", + "readging": "シール", + "pos": "名詞", + "pn": -0.25735 + }, + { + "surface": "寺格", + "readging": "じかく", + "pos": "名詞", + "pn": -0.257356 + }, + { + "surface": "刻刻", + "readging": "こっこく", + "pos": "副詞", + "pn": -0.257385 + }, + { + "surface": "割込む", + "readging": "わりこむ", + "pos": "動詞", + "pn": -0.257391 + }, + { + "surface": "復帰", + "readging": "ふっき", + "pos": "名詞", + "pn": -0.257396 + }, + { + "surface": "感懐", + "readging": "かんかい", + "pos": "名詞", + "pn": -0.257397 + }, + { + "surface": "除名", + "readging": "じょめい", + "pos": "名詞", + "pn": -0.257399 + }, + { + "surface": "初子", + "readging": "はつね", + "pos": "名詞", + "pn": -0.257411 + }, + { + "surface": "時世", + "readging": "ときよ", + "pos": "名詞", + "pn": -0.257414 + }, + { + "surface": "読経", + "readging": "どっきょう", + "pos": "名詞", + "pn": -0.257415 + }, + { + "surface": "御日待", + "readging": "おひまち", + "pos": "名詞", + "pn": -0.257417 + }, + { + "surface": "セクト", + "readging": "セクト", + "pos": "名詞", + "pn": -0.257434 + }, + { + "surface": "春告鳥", + "readging": "はるつげどり", + "pos": "名詞", + "pn": -0.257438 + }, + { + "surface": "整列", + "readging": "せいれつ", + "pos": "名詞", + "pn": -0.257443 + }, + { + "surface": "取材", + "readging": "しゅざい", + "pos": "名詞", + "pn": -0.25746 + }, + { + "surface": "和事", + "readging": "わごと", + "pos": "名詞", + "pn": -0.257462 + }, + { + "surface": "軍船", + "readging": "ぐんせん", + "pos": "名詞", + "pn": -0.25748 + }, + { + "surface": "土手っ腹", + "readging": "どてっぱら", + "pos": "名詞", + "pn": -0.257487 + }, + { + "surface": "慣用音", + "readging": "かんようおん", + "pos": "名詞", + "pn": -0.257495 + }, + { + "surface": "復刊", + "readging": "ふっかん", + "pos": "名詞", + "pn": -0.257496 + }, + { + "surface": "低学年", + "readging": "ていがくねん", + "pos": "名詞", + "pn": -0.257497 + }, + { + "surface": "集散", + "readging": "しゅうさん", + "pos": "名詞", + "pn": -0.257503 + }, + { + "surface": "瀬戸物", + "readging": "せともの", + "pos": "名詞", + "pn": -0.257518 + }, + { + "surface": "通関", + "readging": "つうかん", + "pos": "名詞", + "pn": -0.257519 + }, + { + "surface": "愚民政策", + "readging": "ぐみんせいさく", + "pos": "名詞", + "pn": -0.257532 + }, + { + "surface": "奔流", + "readging": "ほんりゅう", + "pos": "名詞", + "pn": -0.257546 + }, + { + "surface": "一合", + "readging": "いちごう", + "pos": "名詞", + "pn": -0.257549 + }, + { + "surface": "飛行艇", + "readging": "ひこうてい", + "pos": "名詞", + "pn": -0.257552 + }, + { + "surface": "太刀", + "readging": "たちさばき", + "pos": "名詞", + "pn": -0.257552 + }, + { + "surface": "リキッド", + "readging": "リキッド", + "pos": "名詞", + "pn": -0.25757 + }, + { + "surface": "外車", + "readging": "がいしゃ", + "pos": "名詞", + "pn": -0.257604 + }, + { + "surface": "革新", + "readging": "かくしん", + "pos": "名詞", + "pn": -0.257648 + }, + { + "surface": "特集", + "readging": "とくしゅう", + "pos": "名詞", + "pn": -0.257685 + }, + { + "surface": "一の酉", + "readging": "いちのとり", + "pos": "名詞", + "pn": -0.257689 + }, + { + "surface": "上席", + "readging": "じょうせき", + "pos": "名詞", + "pn": -0.257711 + }, + { + "surface": "産児", + "readging": "さんじ", + "pos": "名詞", + "pn": -0.25772 + }, + { + "surface": "七曜星", + "readging": "しちようせい", + "pos": "名詞", + "pn": -0.257728 + }, + { + "surface": "縫針", + "readging": "ぬいはり", + "pos": "名詞", + "pn": -0.25773 + }, + { + "surface": "書抜く", + "readging": "かきぬく", + "pos": "動詞", + "pn": -0.257769 + }, + { + "surface": "前駆", + "readging": "ぜんく", + "pos": "名詞", + "pn": -0.257788 + }, + { + "surface": "漁労", + "readging": "ぎょろう", + "pos": "名詞", + "pn": -0.25779 + }, + { + "surface": "修学旅行", + "readging": "しゅうがくりょこう", + "pos": "名詞", + "pn": -0.257817 + }, + { + "surface": "ラケット", + "readging": "ラケット", + "pos": "名詞", + "pn": -0.25782 + }, + { + "surface": "鍋物", + "readging": "なべもの", + "pos": "名詞", + "pn": -0.257832 + }, + { + "surface": "横顔", + "readging": "よこがお", + "pos": "名詞", + "pn": -0.257853 + }, + { + "surface": "硝煙", + "readging": "しょうえん", + "pos": "名詞", + "pn": -0.257868 + }, + { + "surface": "翻然", + "readging": "ほんぜん", + "pos": "名詞", + "pn": -0.257878 + }, + { + "surface": "為替相場", + "readging": "かわせ", + "pos": "名詞", + "pn": -0.257889 + }, + { + "surface": "姉御", + "readging": "あねご", + "pos": "名詞", + "pn": -0.257897 + }, + { + "surface": "えたい", + "readging": "えたい", + "pos": "名詞", + "pn": -0.2579 + }, + { + "surface": "ピクニック", + "readging": "ピクニック", + "pos": "名詞", + "pn": -0.257936 + }, + { + "surface": "現業", + "readging": "げんぎょう", + "pos": "名詞", + "pn": -0.257943 + }, + { + "surface": "引当てる", + "readging": "ひきあてる", + "pos": "動詞", + "pn": -0.25796 + }, + { + "surface": "アフレコ", + "readging": "アフレコ", + "pos": "名詞", + "pn": -0.257961 + }, + { + "surface": "眉墨", + "readging": "まゆずみ", + "pos": "名詞", + "pn": -0.257979 + }, + { + "surface": "砒酸鉛", + "readging": "ひさんなまり", + "pos": "名詞", + "pn": -0.257981 + }, + { + "surface": "胃弱", + "readging": "いじゃく", + "pos": "名詞", + "pn": -0.257986 + }, + { + "surface": "有機化合物", + "readging": "ゆうきかごうぶつ", + "pos": "名詞", + "pn": -0.258015 + }, + { + "surface": "正当防衛", + "readging": "せいとうぼうえい", + "pos": "名詞", + "pn": -0.258019 + }, + { + "surface": "類人猿", + "readging": "るいじんえん", + "pos": "名詞", + "pn": -0.258034 + }, + { + "surface": "発心", + "readging": "ほっしん", + "pos": "名詞", + "pn": -0.25806 + }, + { + "surface": "別殿", + "readging": "べつでん", + "pos": "名詞", + "pn": -0.258077 + }, + { + "surface": "と金", + "readging": "ときん", + "pos": "名詞", + "pn": -0.258086 + }, + { + "surface": "貝の口", + "readging": "かいのくち", + "pos": "名詞", + "pn": -0.258121 + }, + { + "surface": "雪国", + "readging": "ゆきぐに", + "pos": "名詞", + "pn": -0.258137 + }, + { + "surface": "持て扱う", + "readging": "もてあつかう", + "pos": "動詞", + "pn": -0.25815 + }, + { + "surface": "脇戸", + "readging": "わきど", + "pos": "名詞", + "pn": -0.258152 + }, + { + "surface": "内高", + "readging": "うちだか", + "pos": "名詞", + "pn": -0.258163 + }, + { + "surface": "天皇制", + "readging": "てんのうせい", + "pos": "名詞", + "pn": -0.258174 + }, + { + "surface": "解消", + "readging": "かいしょう", + "pos": "名詞", + "pn": -0.258189 + }, + { + "surface": "大所", + "readging": "たいしょ", + "pos": "名詞", + "pn": -0.258194 + }, + { + "surface": "前件", + "readging": "ぜんけん", + "pos": "名詞", + "pn": -0.258198 + }, + { + "surface": "薬剤師", + "readging": "やくざいし", + "pos": "名詞", + "pn": -0.258199 + }, + { + "surface": "白妙", + "readging": "しろたえ", + "pos": "名詞", + "pn": -0.258199 + }, + { + "surface": "糖衣錠", + "readging": "とういじょう", + "pos": "名詞", + "pn": -0.258219 + }, + { + "surface": "襟元", + "readging": "えりもと", + "pos": "名詞", + "pn": -0.258221 + }, + { + "surface": "濁り", + "readging": "にごり", + "pos": "名詞", + "pn": -0.258225 + }, + { + "surface": "粉屋", + "readging": "こなや", + "pos": "名詞", + "pn": -0.258242 + }, + { + "surface": "将帥", + "readging": "しょうすい", + "pos": "名詞", + "pn": -0.258245 + }, + { + "surface": "アタック", + "readging": "アタック", + "pos": "名詞", + "pn": -0.258275 + }, + { + "surface": "人付き", + "readging": "ひとづき", + "pos": "名詞", + "pn": -0.258276 + }, + { + "surface": "黙視", + "readging": "もくし", + "pos": "名詞", + "pn": -0.258282 + }, + { + "surface": "絶縁体", + "readging": "ぜつえんたい", + "pos": "名詞", + "pn": -0.258294 + }, + { + "surface": "取組", + "readging": "とりくみ", + "pos": "名詞", + "pn": -0.258303 + }, + { + "surface": "人聞き", + "readging": "ひとぎき", + "pos": "名詞", + "pn": -0.258316 + }, + { + "surface": "浄土変相", + "readging": "じょうどへんそう", + "pos": "名詞", + "pn": -0.258328 + }, + { + "surface": "皮膜", + "readging": "ひまく", + "pos": "名詞", + "pn": -0.258332 + }, + { + "surface": "投資", + "readging": "とうし", + "pos": "名詞", + "pn": -0.258336 + }, + { + "surface": "プロレタリアート", + "readging": "プロレタリアート", + "pos": "名詞", + "pn": -0.258361 + }, + { + "surface": "真言", + "readging": "しんごん", + "pos": "名詞", + "pn": -0.25837 + }, + { + "surface": "均質", + "readging": "きんしつ", + "pos": "名詞", + "pn": -0.258377 + }, + { + "surface": "奴", + "readging": "やつ", + "pos": "名詞", + "pn": -0.258385 + }, + { + "surface": "帯電", + "readging": "たいでん", + "pos": "名詞", + "pn": -0.258386 + }, + { + "surface": "プレート", + "readging": "プレート", + "pos": "名詞", + "pn": -0.258391 + }, + { + "surface": "岡目八目", + "readging": "おかめ", + "pos": "名詞", + "pn": -0.258396 + }, + { + "surface": "下押し", + "readging": "したおし", + "pos": "名詞", + "pn": -0.258404 + }, + { + "surface": "聞し召す", + "readging": "きこしめす", + "pos": "動詞", + "pn": -0.258405 + }, + { + "surface": "駁論", + "readging": "ばくろん", + "pos": "名詞", + "pn": -0.258479 + }, + { + "surface": "夢幻", + "readging": "むげん", + "pos": "名詞", + "pn": -0.258492 + }, + { + "surface": "ステンレス", + "readging": "ステンレス", + "pos": "名詞", + "pn": -0.258523 + }, + { + "surface": "食尽", + "readging": "しょくじん", + "pos": "名詞", + "pn": -0.258529 + }, + { + "surface": "お先", + "readging": "おさき", + "pos": "名詞", + "pn": -0.258537 + }, + { + "surface": "遺家族", + "readging": "いかぞく", + "pos": "名詞", + "pn": -0.258542 + }, + { + "surface": "野", + "readging": "の", + "pos": "名詞", + "pn": -0.258563 + }, + { + "surface": "桜花", + "readging": "おうか", + "pos": "名詞", + "pn": -0.258567 + }, + { + "surface": "猫被り", + "readging": "ねこかぶり", + "pos": "名詞", + "pn": -0.25857 + }, + { + "surface": "解離", + "readging": "かいり", + "pos": "名詞", + "pn": -0.258573 + }, + { + "surface": "戊", + "readging": "つちのえ", + "pos": "名詞", + "pn": -0.258605 + }, + { + "surface": "泥炭", + "readging": "でいたん", + "pos": "名詞", + "pn": -0.258609 + }, + { + "surface": "散財", + "readging": "さんざい", + "pos": "名詞", + "pn": -0.258611 + }, + { + "surface": "小農", + "readging": "しょうのう", + "pos": "名詞", + "pn": -0.258629 + }, + { + "surface": "心証", + "readging": "しんしょう", + "pos": "名詞", + "pn": -0.258632 + }, + { + "surface": "名目", + "readging": "めいもく", + "pos": "名詞", + "pn": -0.258639 + }, + { + "surface": "大乱", + "readging": "たいらん", + "pos": "名詞", + "pn": -0.258645 + }, + { + "surface": "スケッチ", + "readging": "スケッチ", + "pos": "名詞", + "pn": -0.258648 + }, + { + "surface": "字引", + "readging": "じびき", + "pos": "名詞", + "pn": -0.258691 + }, + { + "surface": "返済", + "readging": "へんさい", + "pos": "名詞", + "pn": -0.258716 + }, + { + "surface": "満席", + "readging": "まんせき", + "pos": "名詞", + "pn": -0.258722 + }, + { + "surface": "広小路", + "readging": "ひろこうじ", + "pos": "名詞", + "pn": -0.258728 + }, + { + "surface": "言い様", + "readging": "いいよう", + "pos": "名詞", + "pn": -0.258728 + }, + { + "surface": "アルゴン", + "readging": "アルゴン", + "pos": "名詞", + "pn": -0.258736 + }, + { + "surface": "下刈", + "readging": "したがり", + "pos": "名詞", + "pn": -0.25874 + }, + { + "surface": "ぽっぽと", + "readging": "ぽっぽと", + "pos": "副詞", + "pn": -0.258743 + }, + { + "surface": "変数", + "readging": "へんすう", + "pos": "名詞", + "pn": -0.258782 + }, + { + "surface": "官印", + "readging": "かんいん", + "pos": "名詞", + "pn": -0.258798 + }, + { + "surface": "魚梯", + "readging": "ぎょてい", + "pos": "名詞", + "pn": -0.258801 + }, + { + "surface": "裏目", + "readging": "うらめ", + "pos": "名詞", + "pn": -0.258818 + }, + { + "surface": "投節", + "readging": "なげぶし", + "pos": "名詞", + "pn": -0.258828 + }, + { + "surface": "将", + "readging": "しょう", + "pos": "名詞", + "pn": -0.25883 + }, + { + "surface": "須弥壇", + "readging": "しゅみだん", + "pos": "名詞", + "pn": -0.258837 + }, + { + "surface": "入子", + "readging": "いれこ", + "pos": "名詞", + "pn": -0.258839 + }, + { + "surface": "サンジカリスム", + "readging": "サンジカリスム", + "pos": "名詞", + "pn": -0.258842 + }, + { + "surface": "稲扱き", + "readging": "いねこき", + "pos": "名詞", + "pn": -0.258862 + }, + { + "surface": "バッケン", + "readging": "バッケン", + "pos": "名詞", + "pn": -0.258869 + }, + { + "surface": "同盟罷業", + "readging": "どうめいひぎょう", + "pos": "名詞", + "pn": -0.25887 + }, + { + "surface": "浮かれ女", + "readging": "うかれめ", + "pos": "名詞", + "pn": -0.258876 + }, + { + "surface": "黄八丈", + "readging": "きはちじょう", + "pos": "名詞", + "pn": -0.258877 + }, + { + "surface": "プロテクター", + "readging": "プロテクター", + "pos": "名詞", + "pn": -0.258883 + }, + { + "surface": "オーディオ", + "readging": "オーディオ", + "pos": "名詞", + "pn": -0.258894 + }, + { + "surface": "兵力", + "readging": "へいりょく", + "pos": "名詞", + "pn": -0.258897 + }, + { + "surface": "国学", + "readging": "こくがく", + "pos": "名詞", + "pn": -0.258901 + }, + { + "surface": "語形", + "readging": "ごけい", + "pos": "名詞", + "pn": -0.258913 + }, + { + "surface": "数え上げる", + "readging": "かぞえあげる", + "pos": "動詞", + "pn": -0.258916 + }, + { + "surface": "使い分け", + "readging": "つかいわけ", + "pos": "名詞", + "pn": -0.258935 + }, + { + "surface": "解像", + "readging": "かいぞう", + "pos": "名詞", + "pn": -0.258944 + }, + { + "surface": "人工授精", + "readging": "じんこうじゅせい", + "pos": "名詞", + "pn": -0.258965 + }, + { + "surface": "前肢", + "readging": "ぜんし", + "pos": "名詞", + "pn": -0.258968 + }, + { + "surface": "背部", + "readging": "はいぶ", + "pos": "名詞", + "pn": -0.25899 + }, + { + "surface": "取入れ", + "readging": "とりいれ", + "pos": "名詞", + "pn": -0.259001 + }, + { + "surface": "塗師", + "readging": "ぬし", + "pos": "名詞", + "pn": -0.259015 + }, + { + "surface": "油圧", + "readging": "ゆあつ", + "pos": "名詞", + "pn": -0.259016 + }, + { + "surface": "ショート", + "readging": "ショートカット", + "pos": "名詞", + "pn": -0.259036 + }, + { + "surface": "サラミ", + "readging": "サラミ", + "pos": "名詞", + "pn": -0.259036 + }, + { + "surface": "迷路", + "readging": "めいろ", + "pos": "名詞", + "pn": -0.25905 + }, + { + "surface": "密使", + "readging": "みっし", + "pos": "名詞", + "pn": -0.259138 + }, + { + "surface": "石斧", + "readging": "せきふ", + "pos": "名詞", + "pn": -0.259139 + }, + { + "surface": "冬営", + "readging": "とうえい", + "pos": "名詞", + "pn": -0.259163 + }, + { + "surface": "カナリヤ", + "readging": "カナリヤ", + "pos": "名詞", + "pn": -0.25917 + }, + { + "surface": "半製品", + "readging": "はんせいひん", + "pos": "名詞", + "pn": -0.259173 + }, + { + "surface": "成鳥", + "readging": "せいちょう", + "pos": "名詞", + "pn": -0.259178 + }, + { + "surface": "資本主義", + "readging": "しほんしゅぎ", + "pos": "名詞", + "pn": -0.2592 + }, + { + "surface": "砂煙", + "readging": "すなけむり", + "pos": "名詞", + "pn": -0.25921 + }, + { + "surface": "三十一文字", + "readging": "みそひともじ", + "pos": "名詞", + "pn": -0.259216 + }, + { + "surface": "満腹", + "readging": "まんぷく", + "pos": "名詞", + "pn": -0.259221 + }, + { + "surface": "急調", + "readging": "きゅうちょう", + "pos": "名詞", + "pn": -0.259224 + }, + { + "surface": "漁港", + "readging": "ぎょこう", + "pos": "名詞", + "pn": -0.259274 + }, + { + "surface": "テロリスト", + "readging": "テロリスト", + "pos": "名詞", + "pn": -0.259276 + }, + { + "surface": "山川", + "readging": "さんせん", + "pos": "名詞", + "pn": -0.259299 + }, + { + "surface": "定性分析", + "readging": "ていせいぶんせき", + "pos": "名詞", + "pn": -0.259301 + }, + { + "surface": "仲裁", + "readging": "ちゅうさい", + "pos": "名詞", + "pn": -0.259303 + }, + { + "surface": "高周波", + "readging": "こうしゅうは", + "pos": "名詞", + "pn": -0.259317 + }, + { + "surface": "報謝", + "readging": "ほうしゃ", + "pos": "名詞", + "pn": -0.259331 + }, + { + "surface": "遣る", + "readging": "やる", + "pos": "動詞", + "pn": -0.259341 + }, + { + "surface": "パン種", + "readging": "パンだね", + "pos": "名詞", + "pn": -0.259351 + }, + { + "surface": "家伝", + "readging": "かでん", + "pos": "名詞", + "pn": -0.259361 + }, + { + "surface": "一党", + "readging": "いっとう", + "pos": "名詞", + "pn": -0.259363 + }, + { + "surface": "工兵", + "readging": "こうへい", + "pos": "名詞", + "pn": -0.259366 + }, + { + "surface": "グロッキー", + "readging": "グロッキー", + "pos": "名詞", + "pn": -0.259367 + }, + { + "surface": "地域社会", + "readging": "ちいきしゃかい", + "pos": "名詞", + "pn": -0.259383 + }, + { + "surface": "政争", + "readging": "せいそう", + "pos": "名詞", + "pn": -0.259389 + }, + { + "surface": "アダム", + "readging": "アダム", + "pos": "名詞", + "pn": -0.259427 + }, + { + "surface": "薬理", + "readging": "やくり", + "pos": "名詞", + "pn": -0.259439 + }, + { + "surface": "老骨", + "readging": "ろうこつ", + "pos": "名詞", + "pn": -0.25944 + }, + { + "surface": "油菜", + "readging": "あぶらな", + "pos": "名詞", + "pn": -0.259445 + }, + { + "surface": "許容", + "readging": "きょよう", + "pos": "名詞", + "pn": -0.259446 + }, + { + "surface": "勉強", + "readging": "べんきょう", + "pos": "名詞", + "pn": -0.259514 + }, + { + "surface": "舟守", + "readging": "ふなもり", + "pos": "名詞", + "pn": -0.259518 + }, + { + "surface": "無産", + "readging": "むさん", + "pos": "名詞", + "pn": -0.259531 + }, + { + "surface": "部署", + "readging": "ぶしょ", + "pos": "名詞", + "pn": -0.259538 + }, + { + "surface": "国風", + "readging": "こくふう", + "pos": "名詞", + "pn": -0.259544 + }, + { + "surface": "三身", + "readging": "みつみ", + "pos": "名詞", + "pn": -0.259569 + }, + { + "surface": "売店", + "readging": "ばいてん", + "pos": "名詞", + "pn": -0.259577 + }, + { + "surface": "チッキ", + "readging": "チッキ", + "pos": "名詞", + "pn": -0.259587 + }, + { + "surface": "中人", + "readging": "ちゅうにん", + "pos": "名詞", + "pn": -0.259601 + }, + { + "surface": "探鉱", + "readging": "たんこう", + "pos": "名詞", + "pn": -0.259603 + }, + { + "surface": "姫小松", + "readging": "ひめこまつ", + "pos": "名詞", + "pn": -0.259621 + }, + { + "surface": "復配", + "readging": "ふくはい", + "pos": "名詞", + "pn": -0.259622 + }, + { + "surface": "組歌", + "readging": "くみうた", + "pos": "名詞", + "pn": -0.259624 + }, + { + "surface": "道人", + "readging": "どうじん", + "pos": "名詞", + "pn": -0.259628 + }, + { + "surface": "山川", + "readging": "やまかわ", + "pos": "名詞", + "pn": -0.259629 + }, + { + "surface": "バルコン", + "readging": "バルコン", + "pos": "名詞", + "pn": -0.259632 + }, + { + "surface": "熟字", + "readging": "じゅくじ", + "pos": "名詞", + "pn": -0.259634 + }, + { + "surface": "六観音", + "readging": "ろくかんのん", + "pos": "名詞", + "pn": -0.259646 + }, + { + "surface": "隠し縫い", + "readging": "かくしぬい", + "pos": "名詞", + "pn": -0.259649 + }, + { + "surface": "小普請", + "readging": "こぶしん", + "pos": "名詞", + "pn": -0.259655 + }, + { + "surface": "梱", + "readging": "こり", + "pos": "名詞", + "pn": -0.259668 + }, + { + "surface": "調律", + "readging": "ちょうりつ", + "pos": "名詞", + "pn": -0.259668 + }, + { + "surface": "屍蝋", + "readging": "しろう", + "pos": "名詞", + "pn": -0.259713 + }, + { + "surface": "愛憐", + "readging": "あいれん", + "pos": "名詞", + "pn": -0.25973 + }, + { + "surface": "地紋", + "readging": "じもん", + "pos": "名詞", + "pn": -0.259741 + }, + { + "surface": "百姓読み", + "readging": "ひゃくしょうよみ", + "pos": "名詞", + "pn": -0.259743 + }, + { + "surface": "ウエスト", + "readging": "ウエスト", + "pos": "名詞", + "pn": -0.259766 + }, + { + "surface": "目八分", + "readging": "めはちぶ", + "pos": "名詞", + "pn": -0.259792 + }, + { + "surface": "沖合", + "readging": "おきあい", + "pos": "名詞", + "pn": -0.259812 + }, + { + "surface": "群落", + "readging": "ぐんらく", + "pos": "名詞", + "pn": -0.259836 + }, + { + "surface": "分流", + "readging": "ぶんりゅう", + "pos": "名詞", + "pn": -0.259839 + }, + { + "surface": "延坪", + "readging": "のべつぼ", + "pos": "名詞", + "pn": -0.259847 + }, + { + "surface": "晴渡る", + "readging": "はれわたる", + "pos": "動詞", + "pn": -0.259849 + }, + { + "surface": "図表", + "readging": "ずひょう", + "pos": "名詞", + "pn": -0.259858 + }, + { + "surface": "音訓", + "readging": "おんくん", + "pos": "名詞", + "pn": -0.25986 + }, + { + "surface": "柾目", + "readging": "まさめ", + "pos": "名詞", + "pn": -0.259866 + }, + { + "surface": "人台", + "readging": "じんだい", + "pos": "名詞", + "pn": -0.259871 + }, + { + "surface": "本字", + "readging": "ほんじ", + "pos": "名詞", + "pn": -0.259891 + }, + { + "surface": "死角", + "readging": "しかく", + "pos": "名詞", + "pn": -0.259892 + }, + { + "surface": "原案", + "readging": "げんあん", + "pos": "名詞", + "pn": -0.259899 + }, + { + "surface": "般若", + "readging": "はんにゃ", + "pos": "名詞", + "pn": -0.259906 + }, + { + "surface": "告知", + "readging": "こくち", + "pos": "名詞", + "pn": -0.259907 + }, + { + "surface": "遥遥", + "readging": "はるばる", + "pos": "副詞", + "pn": -0.259908 + }, + { + "surface": "オリンピック競技", + "readging": "オリンピックきょうぎ", + "pos": "名詞", + "pn": -0.259912 + }, + { + "surface": "自発", + "readging": "じはつ", + "pos": "名詞", + "pn": -0.259914 + }, + { + "surface": "火酒", + "readging": "かしゅ", + "pos": "名詞", + "pn": -0.259923 + }, + { + "surface": "蔵入れ", + "readging": "くらいれ", + "pos": "名詞", + "pn": -0.259935 + }, + { + "surface": "探訪", + "readging": "たんぼう", + "pos": "名詞", + "pn": -0.259947 + }, + { + "surface": "鉱業", + "readging": "こうぎょう", + "pos": "名詞", + "pn": -0.259969 + }, + { + "surface": "調剤", + "readging": "ちょうざい", + "pos": "名詞", + "pn": -0.259977 + }, + { + "surface": "奏者", + "readging": "そうしゃ", + "pos": "名詞", + "pn": -0.259986 + }, + { + "surface": "捨小舟", + "readging": "すておぶね", + "pos": "名詞", + "pn": -0.259992 + }, + { + "surface": "実父", + "readging": "じっぷ", + "pos": "名詞", + "pn": -0.26001 + }, + { + "surface": "洋舞", + "readging": "ようぶ", + "pos": "名詞", + "pn": -0.260048 + }, + { + "surface": "目障り", + "readging": "めざわり", + "pos": "名詞", + "pn": -0.260064 + }, + { + "surface": "ルーフ ガーデン", + "readging": "ルーフ ガーデン", + "pos": "名詞", + "pn": -0.260084 + }, + { + "surface": "ぶちまける", + "readging": "ぶちまける", + "pos": "動詞", + "pn": -0.260143 + }, + { + "surface": "呼称", + "readging": "こしょう", + "pos": "名詞", + "pn": -0.260147 + }, + { + "surface": "代物", + "readging": "だいもつ", + "pos": "名詞", + "pn": -0.260163 + }, + { + "surface": "二重奏", + "readging": "にじゅうそう", + "pos": "名詞", + "pn": -0.260168 + }, + { + "surface": "生産力", + "readging": "せいさんりょく", + "pos": "名詞", + "pn": -0.260177 + }, + { + "surface": "壮士芝居", + "readging": "そうししばい", + "pos": "名詞", + "pn": -0.260185 + }, + { + "surface": "秋色", + "readging": "しゅうしょく", + "pos": "名詞", + "pn": -0.260188 + }, + { + "surface": "防災", + "readging": "ぼうさい", + "pos": "名詞", + "pn": -0.260216 + }, + { + "surface": "論考", + "readging": "ろんこう", + "pos": "名詞", + "pn": -0.260222 + }, + { + "surface": "寮", + "readging": "りょう", + "pos": "名詞", + "pn": -0.260223 + }, + { + "surface": "義肢", + "readging": "ぎし", + "pos": "名詞", + "pn": -0.260223 + }, + { + "surface": "ノイズ", + "readging": "ノイズ", + "pos": "名詞", + "pn": -0.260225 + }, + { + "surface": "慣用", + "readging": "かんよう", + "pos": "名詞", + "pn": -0.26023 + }, + { + "surface": "値鞘", + "readging": "ねざや", + "pos": "名詞", + "pn": -0.260237 + }, + { + "surface": "旧臣", + "readging": "きゅうしん", + "pos": "名詞", + "pn": -0.260246 + }, + { + "surface": "シノニム", + "readging": "シノニム", + "pos": "名詞", + "pn": -0.260255 + }, + { + "surface": "瀬戸際", + "readging": "せとぎわ", + "pos": "名詞", + "pn": -0.260267 + }, + { + "surface": "どっこいどっこい", + "readging": "どっこいどっこい", + "pos": "名詞", + "pn": -0.26029 + }, + { + "surface": "八潮路", + "readging": "やしおじ", + "pos": "名詞", + "pn": -0.260316 + }, + { + "surface": "面目玉", + "readging": "めんぼくだま", + "pos": "名詞", + "pn": -0.260318 + }, + { + "surface": "しょうさん", + "readging": "しょうさんカリウム", + "pos": "名詞", + "pn": -0.260325 + }, + { + "surface": "木鼠", + "readging": "きねずみ", + "pos": "名詞", + "pn": -0.260339 + }, + { + "surface": "私印", + "readging": "しいん", + "pos": "名詞", + "pn": -0.260352 + }, + { + "surface": "増結", + "readging": "ぞうけつ", + "pos": "名詞", + "pn": -0.260353 + }, + { + "surface": "吹矢", + "readging": "ふきや", + "pos": "名詞", + "pn": -0.260364 + }, + { + "surface": "読心術", + "readging": "どくしんじゅつ", + "pos": "名詞", + "pn": -0.260374 + }, + { + "surface": "バクテリア", + "readging": "バクテリア", + "pos": "名詞", + "pn": -0.260415 + }, + { + "surface": "実に", + "readging": "じつに", + "pos": "副詞", + "pn": -0.260427 + }, + { + "surface": "預け", + "readging": "あずけ", + "pos": "名詞", + "pn": -0.260485 + }, + { + "surface": "醇", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.260492 + }, + { + "surface": "好き事", + "readging": "すきごと", + "pos": "名詞", + "pn": -0.260516 + }, + { + "surface": "花色", + "readging": "はないろ", + "pos": "名詞", + "pn": -0.260516 + }, + { + "surface": "艨艟", + "readging": "もうどう", + "pos": "名詞", + "pn": -0.260538 + }, + { + "surface": "兵船", + "readging": "へいせん", + "pos": "名詞", + "pn": -0.260538 + }, + { + "surface": "先カンブリア時代", + "readging": "せんカンブリアじだい", + "pos": "名詞", + "pn": -0.260543 + }, + { + "surface": "起動", + "readging": "きどう", + "pos": "名詞", + "pn": -0.260571 + }, + { + "surface": "閲", + "readging": "えつ", + "pos": "名詞", + "pn": -0.260582 + }, + { + "surface": "編章", + "readging": "へんしょう", + "pos": "名詞", + "pn": -0.260584 + }, + { + "surface": "自己流", + "readging": "じこりゅう", + "pos": "名詞", + "pn": -0.260585 + }, + { + "surface": "雛", + "readging": "すう", + "pos": "名詞", + "pn": -0.260607 + }, + { + "surface": "市区", + "readging": "しく", + "pos": "名詞", + "pn": -0.260644 + }, + { + "surface": "南回帰線", + "readging": "みなみかいきせん", + "pos": "名詞", + "pn": -0.260665 + }, + { + "surface": "下役", + "readging": "したやく", + "pos": "名詞", + "pn": -0.260682 + }, + { + "surface": "アルファベット", + "readging": "アルファベット", + "pos": "名詞", + "pn": -0.260684 + }, + { + "surface": "採草", + "readging": "さいそう", + "pos": "名詞", + "pn": -0.260688 + }, + { + "surface": "兵乱", + "readging": "へいらん", + "pos": "名詞", + "pn": -0.260705 + }, + { + "surface": "ムック", + "readging": "ムック", + "pos": "名詞", + "pn": -0.260714 + }, + { + "surface": "カンニング", + "readging": "カンニング", + "pos": "名詞", + "pn": -0.260749 + }, + { + "surface": "失脚", + "readging": "しっきゃく", + "pos": "名詞", + "pn": -0.260763 + }, + { + "surface": "仕掛", + "readging": "しかけ", + "pos": "名詞", + "pn": -0.260767 + }, + { + "surface": "専務取締役", + "readging": "せんむとりしまりやく", + "pos": "名詞", + "pn": -0.260777 + }, + { + "surface": "分配", + "readging": "ぶんぱい", + "pos": "名詞", + "pn": -0.260789 + }, + { + "surface": "賓辞", + "readging": "ひんじ", + "pos": "名詞", + "pn": -0.260813 + }, + { + "surface": "コック", + "readging": "コック", + "pos": "名詞", + "pn": -0.260813 + }, + { + "surface": "墳", + "readging": "ふん", + "pos": "名詞", + "pn": -0.260816 + }, + { + "surface": "片鱗", + "readging": "へんりん", + "pos": "名詞", + "pn": -0.260817 + }, + { + "surface": "タオル地", + "readging": "タオルじ", + "pos": "名詞", + "pn": -0.260827 + }, + { + "surface": "駝鳥", + "readging": "だちょう", + "pos": "名詞", + "pn": -0.260829 + }, + { + "surface": "中州", + "readging": "なかす", + "pos": "名詞", + "pn": -0.260837 + }, + { + "surface": "ヒーター", + "readging": "ヒーター", + "pos": "名詞", + "pn": -0.26084 + }, + { + "surface": "原始人", + "readging": "げんしじん", + "pos": "名詞", + "pn": -0.26084 + }, + { + "surface": "牧笛", + "readging": "ぼくてき", + "pos": "名詞", + "pn": -0.260846 + }, + { + "surface": "箱屋", + "readging": "はこや", + "pos": "名詞", + "pn": -0.260866 + }, + { + "surface": "着生", + "readging": "ちゃくせい", + "pos": "名詞", + "pn": -0.260876 + }, + { + "surface": "読者", + "readging": "どくしゃ", + "pos": "名詞", + "pn": -0.260883 + }, + { + "surface": "口蓋", + "readging": "こうがい", + "pos": "名詞", + "pn": -0.260915 + }, + { + "surface": "草刈", + "readging": "くさかり", + "pos": "名詞", + "pn": -0.260915 + }, + { + "surface": "シフト", + "readging": "シフト", + "pos": "名詞", + "pn": -0.260918 + }, + { + "surface": "プリペイド カード", + "readging": "プリペイド カード", + "pos": "名詞", + "pn": -0.260934 + }, + { + "surface": "霧雨", + "readging": "きりさめ", + "pos": "名詞", + "pn": -0.260937 + }, + { + "surface": "合名会社", + "readging": "ごうめいがいしゃ", + "pos": "名詞", + "pn": -0.260944 + }, + { + "surface": "入団", + "readging": "にゅうだん", + "pos": "名詞", + "pn": -0.260955 + }, + { + "surface": "汁", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.260979 + }, + { + "surface": "解き放つ", + "readging": "ときはなつ", + "pos": "動詞", + "pn": -0.260982 + }, + { + "surface": "薔薇色", + "readging": "ばらいろ", + "pos": "名詞", + "pn": -0.260991 + }, + { + "surface": "弧光", + "readging": "ここう", + "pos": "名詞", + "pn": -0.261009 + }, + { + "surface": "特高", + "readging": "とっこう", + "pos": "名詞", + "pn": -0.261015 + }, + { + "surface": "雷撃", + "readging": "らいげき", + "pos": "名詞", + "pn": -0.261019 + }, + { + "surface": "茶の子", + "readging": "ちゃのこ", + "pos": "名詞", + "pn": -0.261033 + }, + { + "surface": "専売", + "readging": "せんばい", + "pos": "名詞", + "pn": -0.261044 + }, + { + "surface": "熟する", + "readging": "じゅくする", + "pos": "動詞", + "pn": -0.261049 + }, + { + "surface": "雑木", + "readging": "ぞうぼく", + "pos": "名詞", + "pn": -0.261059 + }, + { + "surface": "撓む", + "readging": "たわむ", + "pos": "動詞", + "pn": -0.261072 + }, + { + "surface": "リーダー", + "readging": "リーダーシップ", + "pos": "名詞", + "pn": -0.261109 + }, + { + "surface": "公社", + "readging": "こうしゃ", + "pos": "名詞", + "pn": -0.261121 + }, + { + "surface": "縁組", + "readging": "えんぐみ", + "pos": "名詞", + "pn": -0.261126 + }, + { + "surface": "嵐", + "readging": "あらし", + "pos": "名詞", + "pn": -0.261149 + }, + { + "surface": "税目", + "readging": "ぜいもく", + "pos": "名詞", + "pn": -0.261171 + }, + { + "surface": "好んで", + "readging": "このんで", + "pos": "副詞", + "pn": -0.261175 + }, + { + "surface": "物療", + "readging": "ぶつりょう", + "pos": "名詞", + "pn": -0.261187 + }, + { + "surface": "使い果す", + "readging": "つかいはたす", + "pos": "動詞", + "pn": -0.261189 + }, + { + "surface": "搭載", + "readging": "とうさい", + "pos": "名詞", + "pn": -0.261193 + }, + { + "surface": "鉄蹄", + "readging": "てってい", + "pos": "名詞", + "pn": -0.261198 + }, + { + "surface": "雲合い", + "readging": "くもあい", + "pos": "名詞", + "pn": -0.261201 + }, + { + "surface": "組版", + "readging": "くみはん", + "pos": "名詞", + "pn": -0.26121 + }, + { + "surface": "浮世草子", + "readging": "うきよぞうし", + "pos": "名詞", + "pn": -0.26121 + }, + { + "surface": "車軸", + "readging": "しゃじく", + "pos": "名詞", + "pn": -0.261225 + }, + { + "surface": "片面", + "readging": "かためん", + "pos": "名詞", + "pn": -0.26124 + }, + { + "surface": "探照灯", + "readging": "たんしょうとう", + "pos": "名詞", + "pn": -0.26124 + }, + { + "surface": "電離層", + "readging": "でんりそう", + "pos": "名詞", + "pn": -0.261243 + }, + { + "surface": "質流れ", + "readging": "しちながれ", + "pos": "名詞", + "pn": -0.261251 + }, + { + "surface": "拝命", + "readging": "はいめい", + "pos": "名詞", + "pn": -0.261256 + }, + { + "surface": "乳母", + "readging": "おんば", + "pos": "名詞", + "pn": -0.261257 + }, + { + "surface": "茶道具", + "readging": "ちゃどうぐ", + "pos": "名詞", + "pn": -0.261289 + }, + { + "surface": "元正", + "readging": "がんしょう", + "pos": "名詞", + "pn": -0.261338 + }, + { + "surface": "封建", + "readging": "ほうけん", + "pos": "名詞", + "pn": -0.261362 + }, + { + "surface": "プログラミング", + "readging": "プログラミング", + "pos": "名詞", + "pn": -0.261381 + }, + { + "surface": "三后", + "readging": "さんこう", + "pos": "名詞", + "pn": -0.26139 + }, + { + "surface": "量子力学", + "readging": "りょうしりきがく", + "pos": "名詞", + "pn": -0.261395 + }, + { + "surface": "絶大", + "readging": "ぜつだい", + "pos": "名詞", + "pn": -0.261399 + }, + { + "surface": "校合", + "readging": "きょうごう", + "pos": "名詞", + "pn": -0.261416 + }, + { + "surface": "模式", + "readging": "もしき", + "pos": "名詞", + "pn": -0.26142 + }, + { + "surface": "紅土", + "readging": "こうど", + "pos": "名詞", + "pn": -0.261427 + }, + { + "surface": "バリエーション", + "readging": "バリエーション", + "pos": "名詞", + "pn": -0.261436 + }, + { + "surface": "五人囃子", + "readging": "ごにんばやし", + "pos": "名詞", + "pn": -0.261436 + }, + { + "surface": "華僑", + "readging": "かきょう", + "pos": "名詞", + "pn": -0.261468 + }, + { + "surface": "節回し", + "readging": "ふしまわし", + "pos": "名詞", + "pn": -0.261492 + }, + { + "surface": "臼砲", + "readging": "きゅうほう", + "pos": "名詞", + "pn": -0.261501 + }, + { + "surface": "麻", + "readging": "お", + "pos": "名詞", + "pn": -0.261505 + }, + { + "surface": "アンチテーゼ", + "readging": "アンチテーゼ", + "pos": "名詞", + "pn": -0.261511 + }, + { + "surface": "王妃", + "readging": "おうひ", + "pos": "名詞", + "pn": -0.261537 + }, + { + "surface": "ミステリー", + "readging": "ミステリー", + "pos": "名詞", + "pn": -0.261541 + }, + { + "surface": "所為", + "readging": "せい", + "pos": "名詞", + "pn": -0.261555 + }, + { + "surface": "讒訴", + "readging": "ざんそ", + "pos": "名詞", + "pn": -0.261563 + }, + { + "surface": "瓜実顔", + "readging": "うりざねがお", + "pos": "名詞", + "pn": -0.261571 + }, + { + "surface": "反対給付", + "readging": "はんたいきゅうふ", + "pos": "名詞", + "pn": -0.261593 + }, + { + "surface": "脈打つ", + "readging": "みゃくうつ", + "pos": "動詞", + "pn": -0.261595 + }, + { + "surface": "索道", + "readging": "さくどう", + "pos": "名詞", + "pn": -0.261609 + }, + { + "surface": "千手観音", + "readging": "せんじゅかんのん", + "pos": "名詞", + "pn": -0.261623 + }, + { + "surface": "心馳せ", + "readging": "こころばせ", + "pos": "名詞", + "pn": -0.261633 + }, + { + "surface": "胴の間", + "readging": "どうのま", + "pos": "名詞", + "pn": -0.261639 + }, + { + "surface": "貿易尻", + "readging": "ぼうえきじり", + "pos": "名詞", + "pn": -0.26164 + }, + { + "surface": "ボディー", + "readging": "ボディー", + "pos": "名詞", + "pn": -0.261654 + }, + { + "surface": "薩摩焼", + "readging": "さつまやき", + "pos": "名詞", + "pn": -0.261665 + }, + { + "surface": "年内", + "readging": "ねんない", + "pos": "名詞", + "pn": -0.261677 + }, + { + "surface": "神宝", + "readging": "しんぽう", + "pos": "名詞", + "pn": -0.261684 + }, + { + "surface": "幅", + "readging": "の", + "pos": "名詞", + "pn": -0.261686 + }, + { + "surface": "UFO", + "readging": "ユーフォー", + "pos": "名詞", + "pn": -0.261689 + }, + { + "surface": "申訳", + "readging": "もうしわけ", + "pos": "名詞", + "pn": -0.261702 + }, + { + "surface": "草野球", + "readging": "くさやきゅう", + "pos": "名詞", + "pn": -0.261713 + }, + { + "surface": "東天紅", + "readging": "とうてんこう", + "pos": "名詞", + "pn": -0.261724 + }, + { + "surface": "間", + "readging": "あわい", + "pos": "名詞", + "pn": -0.261728 + }, + { + "surface": "地方団体", + "readging": "ちほうだんたい", + "pos": "名詞", + "pn": -0.261761 + }, + { + "surface": "所管", + "readging": "しょかん", + "pos": "名詞", + "pn": -0.261771 + }, + { + "surface": "土民", + "readging": "どみん", + "pos": "名詞", + "pn": -0.261775 + }, + { + "surface": "茶殻", + "readging": "ちゃがら", + "pos": "名詞", + "pn": -0.261789 + }, + { + "surface": "囚衣", + "readging": "しゅうい", + "pos": "名詞", + "pn": -0.26181 + }, + { + "surface": "真", + "readging": "ま", + "pos": "名詞", + "pn": -0.261824 + }, + { + "surface": "カタログ", + "readging": "カタログ", + "pos": "名詞", + "pn": -0.261824 + }, + { + "surface": "踏破る", + "readging": "ふみやぶる", + "pos": "動詞", + "pn": -0.261826 + }, + { + "surface": "協力", + "readging": "きょうりょく", + "pos": "名詞", + "pn": -0.261847 + }, + { + "surface": "秋分", + "readging": "しゅうぶん", + "pos": "名詞", + "pn": -0.261856 + }, + { + "surface": "南京鼠", + "readging": "なんきんねずみ", + "pos": "名詞", + "pn": -0.261867 + }, + { + "surface": "十姉妹", + "readging": "じゅうしまつ", + "pos": "名詞", + "pn": -0.261882 + }, + { + "surface": "武張る", + "readging": "ぶばる", + "pos": "動詞", + "pn": -0.261888 + }, + { + "surface": "蘖", + "readging": "ひこばえ", + "pos": "名詞", + "pn": -0.261891 + }, + { + "surface": "論議", + "readging": "ろんぎ", + "pos": "名詞", + "pn": -0.261903 + }, + { + "surface": "ユニバーシアード", + "readging": "ユニバーシアード", + "pos": "名詞", + "pn": -0.261912 + }, + { + "surface": "働き手", + "readging": "はたらきて", + "pos": "名詞", + "pn": -0.261912 + }, + { + "surface": "実態", + "readging": "じったい", + "pos": "名詞", + "pn": -0.261913 + }, + { + "surface": "山門", + "readging": "さんもん", + "pos": "名詞", + "pn": -0.261944 + }, + { + "surface": "分館", + "readging": "ぶんかん", + "pos": "名詞", + "pn": -0.261959 + }, + { + "surface": "大船", + "readging": "おおぶね", + "pos": "名詞", + "pn": -0.262009 + }, + { + "surface": "紋服", + "readging": "もんぷく", + "pos": "名詞", + "pn": -0.262023 + }, + { + "surface": "サジェスチョン", + "readging": "サジェスチョン", + "pos": "名詞", + "pn": -0.262041 + }, + { + "surface": "独断", + "readging": "どくだん", + "pos": "名詞", + "pn": -0.262052 + }, + { + "surface": "乱入", + "readging": "らんにゅう", + "pos": "名詞", + "pn": -0.262073 + }, + { + "surface": "痛覚", + "readging": "つうかく", + "pos": "名詞", + "pn": -0.262081 + }, + { + "surface": "小者", + "readging": "こもの", + "pos": "名詞", + "pn": -0.262093 + }, + { + "surface": "当主", + "readging": "とうしゅ", + "pos": "名詞", + "pn": -0.262094 + }, + { + "surface": "弊社", + "readging": "へいしゃ", + "pos": "名詞", + "pn": -0.262149 + }, + { + "surface": "集権", + "readging": "しゅうけん", + "pos": "名詞", + "pn": -0.262151 + }, + { + "surface": "口数", + "readging": "こうすう", + "pos": "名詞", + "pn": -0.262173 + }, + { + "surface": "参勤", + "readging": "さんきん", + "pos": "名詞", + "pn": -0.26218 + }, + { + "surface": "いきなり", + "readging": "いきなり", + "pos": "副詞", + "pn": -0.262211 + }, + { + "surface": "着岸", + "readging": "ちゃくがん", + "pos": "名詞", + "pn": -0.262219 + }, + { + "surface": "植民", + "readging": "しょくみん", + "pos": "名詞", + "pn": -0.262236 + }, + { + "surface": "構想", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.262247 + }, + { + "surface": "落し物", + "readging": "おとしもの", + "pos": "名詞", + "pn": -0.262258 + }, + { + "surface": "ほつれ", + "readging": "ほつれ", + "pos": "名詞", + "pn": -0.26228 + }, + { + "surface": "内妻", + "readging": "ないさい", + "pos": "名詞", + "pn": -0.262282 + }, + { + "surface": "航空写真", + "readging": "こうくうしゃしん", + "pos": "名詞", + "pn": -0.262288 + }, + { + "surface": "触媒", + "readging": "しょくばい", + "pos": "名詞", + "pn": -0.262292 + }, + { + "surface": "底面", + "readging": "ていめん", + "pos": "名詞", + "pn": -0.262323 + }, + { + "surface": "山肌", + "readging": "やまはだ", + "pos": "名詞", + "pn": -0.262336 + }, + { + "surface": "雁行", + "readging": "がんこう", + "pos": "名詞", + "pn": -0.262351 + }, + { + "surface": "執事", + "readging": "しつじ", + "pos": "名詞", + "pn": -0.262366 + }, + { + "surface": "嫁取り", + "readging": "よめとり", + "pos": "名詞", + "pn": -0.262389 + }, + { + "surface": "立遅れる", + "readging": "たちおくれる", + "pos": "動詞", + "pn": -0.262391 + }, + { + "surface": "総点", + "readging": "そうてん", + "pos": "名詞", + "pn": -0.262396 + }, + { + "surface": "詩集", + "readging": "ししゅう", + "pos": "名詞", + "pn": -0.262396 + }, + { + "surface": "怒髪", + "readging": "どはつ", + "pos": "名詞", + "pn": -0.262427 + }, + { + "surface": "検針", + "readging": "けんしん", + "pos": "名詞", + "pn": -0.262427 + }, + { + "surface": "窮状", + "readging": "きゅうじょう", + "pos": "名詞", + "pn": -0.262439 + }, + { + "surface": "執権", + "readging": "しっけん", + "pos": "名詞", + "pn": -0.26245 + }, + { + "surface": "常設", + "readging": "じょうせつ", + "pos": "名詞", + "pn": -0.262464 + }, + { + "surface": "采女", + "readging": "うねめ", + "pos": "名詞", + "pn": -0.262469 + }, + { + "surface": "貫首", + "readging": "かんじゅ", + "pos": "名詞", + "pn": -0.262478 + }, + { + "surface": "引幕", + "readging": "ひきまく", + "pos": "名詞", + "pn": -0.262496 + }, + { + "surface": "沢庵", + "readging": "たくあん", + "pos": "名詞", + "pn": -0.262498 + }, + { + "surface": "柔構造", + "readging": "じゅうこうぞう", + "pos": "名詞", + "pn": -0.262503 + }, + { + "surface": "てよ", + "readging": "てよ", + "pos": "名詞", + "pn": -0.262514 + }, + { + "surface": "鼠取", + "readging": "ねずみとり", + "pos": "名詞", + "pn": -0.262515 + }, + { + "surface": "情人", + "readging": "じょうじん", + "pos": "名詞", + "pn": -0.262563 + }, + { + "surface": "陽性", + "readging": "ようせい", + "pos": "名詞", + "pn": -0.262566 + }, + { + "surface": "潜伏", + "readging": "せんぷく", + "pos": "名詞", + "pn": -0.262568 + }, + { + "surface": "述語", + "readging": "じゅつご", + "pos": "名詞", + "pn": -0.26258 + }, + { + "surface": "龕灯返し", + "readging": "がんどうがえし", + "pos": "名詞", + "pn": -0.262619 + }, + { + "surface": "末代", + "readging": "まつだい", + "pos": "名詞", + "pn": -0.262638 + }, + { + "surface": "矢声", + "readging": "やごえ", + "pos": "名詞", + "pn": -0.262642 + }, + { + "surface": "別納", + "readging": "べつのう", + "pos": "名詞", + "pn": -0.262648 + }, + { + "surface": "鹵獲", + "readging": "ろかく", + "pos": "名詞", + "pn": -0.262679 + }, + { + "surface": "催涙", + "readging": "さいるい", + "pos": "名詞", + "pn": -0.262682 + }, + { + "surface": "肉弾", + "readging": "にくだん", + "pos": "名詞", + "pn": -0.262689 + }, + { + "surface": "海牛", + "readging": "うみうし", + "pos": "名詞", + "pn": -0.262689 + }, + { + "surface": "結実", + "readging": "けつじつ", + "pos": "名詞", + "pn": -0.262696 + }, + { + "surface": "奥行", + "readging": "おくゆき", + "pos": "名詞", + "pn": -0.262702 + }, + { + "surface": "餅腹", + "readging": "もちばら", + "pos": "名詞", + "pn": -0.262709 + }, + { + "surface": "株", + "readging": "かぶ", + "pos": "名詞", + "pn": -0.26272 + }, + { + "surface": "郵便物", + "readging": "ゆうびんぶつ", + "pos": "名詞", + "pn": -0.262728 + }, + { + "surface": "抗弁権", + "readging": "こうべんけん", + "pos": "名詞", + "pn": -0.26276 + }, + { + "surface": "鑿井", + "readging": "さくせい", + "pos": "名詞", + "pn": -0.262769 + }, + { + "surface": "戎克", + "readging": "ジャンク", + "pos": "名詞", + "pn": -0.262772 + }, + { + "surface": "いしなぎ", + "readging": "いしなぎ", + "pos": "名詞", + "pn": -0.262773 + }, + { + "surface": "シミーズ", + "readging": "シミーズ", + "pos": "名詞", + "pn": -0.262778 + }, + { + "surface": "仮受金", + "readging": "かりうけきん", + "pos": "名詞", + "pn": -0.262778 + }, + { + "surface": "楽団", + "readging": "がくだん", + "pos": "名詞", + "pn": -0.262793 + }, + { + "surface": "太刀", + "readging": "たちうお", + "pos": "名詞", + "pn": -0.262799 + }, + { + "surface": "アクロバット", + "readging": "アクロバット", + "pos": "名詞", + "pn": -0.262829 + }, + { + "surface": "接ぎ", + "readging": "はぎ", + "pos": "名詞", + "pn": -0.262834 + }, + { + "surface": "和学", + "readging": "わがく", + "pos": "名詞", + "pn": -0.262836 + }, + { + "surface": "実線", + "readging": "じっせん", + "pos": "名詞", + "pn": -0.262858 + }, + { + "surface": "マダム", + "readging": "マダム", + "pos": "名詞", + "pn": -0.262868 + }, + { + "surface": "持重り", + "readging": "もちおもり", + "pos": "名詞", + "pn": -0.262869 + }, + { + "surface": "金地", + "readging": "きんじ", + "pos": "名詞", + "pn": -0.262872 + }, + { + "surface": "公僕", + "readging": "こうぼく", + "pos": "名詞", + "pn": -0.262877 + }, + { + "surface": "検察", + "readging": "けんさつ", + "pos": "名詞", + "pn": -0.262903 + }, + { + "surface": "校倉", + "readging": "あぜくら", + "pos": "名詞", + "pn": -0.262904 + }, + { + "surface": "極書", + "readging": "きわめがき", + "pos": "名詞", + "pn": -0.262914 + }, + { + "surface": "停止", + "readging": "ていし", + "pos": "名詞", + "pn": -0.262921 + }, + { + "surface": "雌", + "readging": "め", + "pos": "名詞", + "pn": -0.262926 + }, + { + "surface": "先乗り", + "readging": "さきのり", + "pos": "名詞", + "pn": -0.262939 + }, + { + "surface": "馳走", + "readging": "ちそう", + "pos": "名詞", + "pn": -0.262966 + }, + { + "surface": "プッシュ ホン", + "readging": "プッシュ ホン", + "pos": "名詞", + "pn": -0.262972 + }, + { + "surface": "骸骨", + "readging": "がいこつ", + "pos": "名詞", + "pn": -0.262981 + }, + { + "surface": "俗客", + "readging": "ぞっかく", + "pos": "名詞", + "pn": -0.262983 + }, + { + "surface": "賃借り", + "readging": "ちんがり", + "pos": "名詞", + "pn": -0.262986 + }, + { + "surface": "機織", + "readging": "はたおり", + "pos": "名詞", + "pn": -0.262992 + }, + { + "surface": "精米", + "readging": "せいまい", + "pos": "名詞", + "pn": -0.262995 + }, + { + "surface": "赤チン", + "readging": "あかチン", + "pos": "名詞", + "pn": -0.263007 + }, + { + "surface": "洋品", + "readging": "ようひん", + "pos": "名詞", + "pn": -0.263009 + }, + { + "surface": "根差す", + "readging": "ねざす", + "pos": "動詞", + "pn": -0.263014 + }, + { + "surface": "父系", + "readging": "ふけい", + "pos": "名詞", + "pn": -0.263023 + }, + { + "surface": "寸感", + "readging": "すんかん", + "pos": "名詞", + "pn": -0.263028 + }, + { + "surface": "葉隠れ", + "readging": "はがくれ", + "pos": "名詞", + "pn": -0.263062 + }, + { + "surface": "本裁", + "readging": "ほんだち", + "pos": "名詞", + "pn": -0.263081 + }, + { + "surface": "小見出し", + "readging": "こみだし", + "pos": "名詞", + "pn": -0.263084 + }, + { + "surface": "三民主義", + "readging": "さんみんしゅぎ", + "pos": "名詞", + "pn": -0.263084 + }, + { + "surface": "俯仰", + "readging": "ふぎょう", + "pos": "名詞", + "pn": -0.263102 + }, + { + "surface": "勤労階級", + "readging": "きんろうかいきゅう", + "pos": "名詞", + "pn": -0.263127 + }, + { + "surface": "貸席", + "readging": "かしせき", + "pos": "名詞", + "pn": -0.26314 + }, + { + "surface": "言淀む", + "readging": "いいよどむ", + "pos": "動詞", + "pn": -0.263182 + }, + { + "surface": "喃語", + "readging": "なんご", + "pos": "名詞", + "pn": -0.263187 + }, + { + "surface": "競歩", + "readging": "きょうほ", + "pos": "名詞", + "pn": -0.263199 + }, + { + "surface": "用心", + "readging": "ようじん", + "pos": "名詞", + "pn": -0.263226 + }, + { + "surface": "縦割り", + "readging": "たてわり", + "pos": "名詞", + "pn": -0.263228 + }, + { + "surface": "秘宝", + "readging": "ひほう", + "pos": "名詞", + "pn": -0.263235 + }, + { + "surface": "ホーム", + "readging": "ホーム", + "pos": "名詞", + "pn": -0.263255 + }, + { + "surface": "在家", + "readging": "ざいけ", + "pos": "名詞", + "pn": -0.26329 + }, + { + "surface": "危険率", + "readging": "きけんりつ", + "pos": "名詞", + "pn": -0.263294 + }, + { + "surface": "郵送", + "readging": "ゆうそう", + "pos": "名詞", + "pn": -0.263296 + }, + { + "surface": "町並", + "readging": "まちなみ", + "pos": "名詞", + "pn": -0.263302 + }, + { + "surface": "小径", + "readging": "しょうけい", + "pos": "名詞", + "pn": -0.26334 + }, + { + "surface": "告別", + "readging": "こくべつ", + "pos": "名詞", + "pn": -0.263379 + }, + { + "surface": "言切る", + "readging": "いいきる", + "pos": "動詞", + "pn": -0.263384 + }, + { + "surface": "外税", + "readging": "そとぜい", + "pos": "名詞", + "pn": -0.263415 + }, + { + "surface": "オート三輪車", + "readging": "オートさんりんしゃ", + "pos": "名詞", + "pn": -0.263433 + }, + { + "surface": "花柳界", + "readging": "かりゅうかい", + "pos": "名詞", + "pn": -0.26344 + }, + { + "surface": "論旨", + "readging": "ろんし", + "pos": "名詞", + "pn": -0.263445 + }, + { + "surface": "振向く", + "readging": "ふりむく", + "pos": "動詞", + "pn": -0.263447 + }, + { + "surface": "デフォルメ", + "readging": "デフォルメ", + "pos": "名詞", + "pn": -0.263453 + }, + { + "surface": "山の手", + "readging": "やまのて", + "pos": "名詞", + "pn": -0.263458 + }, + { + "surface": "漁村", + "readging": "ぎょそん", + "pos": "名詞", + "pn": -0.263469 + }, + { + "surface": "場銭", + "readging": "ばせん", + "pos": "名詞", + "pn": -0.26348 + }, + { + "surface": "マクロ", + "readging": "マクロ", + "pos": "名詞", + "pn": -0.263492 + }, + { + "surface": "藺草", + "readging": "いぐさ", + "pos": "名詞", + "pn": -0.263492 + }, + { + "surface": "老媼", + "readging": "ろうおう", + "pos": "名詞", + "pn": -0.263494 + }, + { + "surface": "秘法", + "readging": "ひほう", + "pos": "名詞", + "pn": -0.263514 + }, + { + "surface": "矢", + "readging": "し", + "pos": "名詞", + "pn": -0.263523 + }, + { + "surface": "ジャングル", + "readging": "ジャングルジム", + "pos": "名詞", + "pn": -0.263525 + }, + { + "surface": "切掛け", + "readging": "きりかけ", + "pos": "名詞", + "pn": -0.263531 + }, + { + "surface": "ぼってり", + "readging": "ぼってり", + "pos": "副詞", + "pn": -0.263542 + }, + { + "surface": "抜き放つ", + "readging": "ぬきはなつ", + "pos": "動詞", + "pn": -0.263544 + }, + { + "surface": "中隊", + "readging": "ちゅうたい", + "pos": "名詞", + "pn": -0.263546 + }, + { + "surface": "ホーム", + "readging": "ホームドクター", + "pos": "名詞", + "pn": -0.263565 + }, + { + "surface": "三振", + "readging": "さんしん", + "pos": "名詞", + "pn": -0.263574 + }, + { + "surface": "可変資本", + "readging": "かへんしほん", + "pos": "名詞", + "pn": -0.263574 + }, + { + "surface": "荷足", + "readging": "にあし", + "pos": "名詞", + "pn": -0.263576 + }, + { + "surface": "爆笑", + "readging": "ばくしょう", + "pos": "名詞", + "pn": -0.263587 + }, + { + "surface": "誘い水", + "readging": "さそいみず", + "pos": "名詞", + "pn": -0.263588 + }, + { + "surface": "著作", + "readging": "ちょさく", + "pos": "名詞", + "pn": -0.263611 + }, + { + "surface": "誤差", + "readging": "ごさ", + "pos": "名詞", + "pn": -0.263619 + }, + { + "surface": "厭人", + "readging": "えんじん", + "pos": "名詞", + "pn": -0.263624 + }, + { + "surface": "徐", + "readging": "じょ", + "pos": "名詞", + "pn": -0.263634 + }, + { + "surface": "選集", + "readging": "せんしゅう", + "pos": "名詞", + "pn": -0.26365 + }, + { + "surface": "ポエジー", + "readging": "ポエジー", + "pos": "名詞", + "pn": -0.263651 + }, + { + "surface": "転売", + "readging": "てんばい", + "pos": "名詞", + "pn": -0.263663 + }, + { + "surface": "後期", + "readging": "こうき", + "pos": "名詞", + "pn": -0.263745 + }, + { + "surface": "無実", + "readging": "むじつ", + "pos": "名詞", + "pn": -0.263747 + }, + { + "surface": "汲取口", + "readging": "くみとりぐち", + "pos": "名詞", + "pn": -0.26375 + }, + { + "surface": "不変", + "readging": "ふへん", + "pos": "名詞", + "pn": -0.263751 + }, + { + "surface": "粉炭", + "readging": "ふんたん", + "pos": "名詞", + "pn": -0.26378 + }, + { + "surface": "延発", + "readging": "えんぱつ", + "pos": "名詞", + "pn": -0.263785 + }, + { + "surface": "経由", + "readging": "けいゆ", + "pos": "名詞", + "pn": -0.263789 + }, + { + "surface": "労作", + "readging": "ろうさく", + "pos": "名詞", + "pn": -0.263803 + }, + { + "surface": "糾弾", + "readging": "きゅうだん", + "pos": "名詞", + "pn": -0.263811 + }, + { + "surface": "逆手", + "readging": "さかて", + "pos": "名詞", + "pn": -0.263833 + }, + { + "surface": "願書", + "readging": "がんしょ", + "pos": "名詞", + "pn": -0.263852 + }, + { + "surface": "楽屋落ち", + "readging": "がくやおち", + "pos": "名詞", + "pn": -0.263863 + }, + { + "surface": "兵法", + "readging": "ひょうほう", + "pos": "名詞", + "pn": -0.263871 + }, + { + "surface": "洋行", + "readging": "ようこう", + "pos": "名詞", + "pn": -0.263915 + }, + { + "surface": "清朝", + "readging": "せいちょう", + "pos": "名詞", + "pn": -0.263926 + }, + { + "surface": "農事", + "readging": "のうじ", + "pos": "名詞", + "pn": -0.263944 + }, + { + "surface": "池沼", + "readging": "ちしょう", + "pos": "名詞", + "pn": -0.263951 + }, + { + "surface": "神祭", + "readging": "しんさい", + "pos": "名詞", + "pn": -0.263977 + }, + { + "surface": "逐次", + "readging": "ちくじ", + "pos": "副詞", + "pn": -0.263991 + }, + { + "surface": "居合抜き", + "readging": "いあい", + "pos": "名詞", + "pn": -0.263993 + }, + { + "surface": "青銅器", + "readging": "せいどうき", + "pos": "名詞", + "pn": -0.263995 + }, + { + "surface": "上申", + "readging": "じょうしん", + "pos": "名詞", + "pn": -0.263996 + }, + { + "surface": "底土", + "readging": "そこつち", + "pos": "名詞", + "pn": -0.264006 + }, + { + "surface": "義士", + "readging": "ぎし", + "pos": "名詞", + "pn": -0.26401 + }, + { + "surface": "外務", + "readging": "がいむ", + "pos": "名詞", + "pn": -0.26401 + }, + { + "surface": "寝耳", + "readging": "ねみみ", + "pos": "名詞", + "pn": -0.264015 + }, + { + "surface": "法談", + "readging": "ほうだん", + "pos": "名詞", + "pn": -0.26405 + }, + { + "surface": "略筆", + "readging": "りゃくひつ", + "pos": "名詞", + "pn": -0.264064 + }, + { + "surface": "掌編", + "readging": "しょうへん", + "pos": "名詞", + "pn": -0.264077 + }, + { + "surface": "物心", + "readging": "ものごころ", + "pos": "名詞", + "pn": -0.264079 + }, + { + "surface": "周期律", + "readging": "しゅうきりつ", + "pos": "名詞", + "pn": -0.264096 + }, + { + "surface": "試演", + "readging": "しえん", + "pos": "名詞", + "pn": -0.2641 + }, + { + "surface": "越", + "readging": "えつ", + "pos": "名詞", + "pn": -0.264115 + }, + { + "surface": "女学校", + "readging": "じょがっこう", + "pos": "名詞", + "pn": -0.264123 + }, + { + "surface": "錦秋", + "readging": "きんしゅう", + "pos": "名詞", + "pn": -0.264128 + }, + { + "surface": "底流", + "readging": "ていりゅう", + "pos": "名詞", + "pn": -0.264128 + }, + { + "surface": "急行", + "readging": "きゅうこう", + "pos": "名詞", + "pn": -0.264131 + }, + { + "surface": "印綿", + "readging": "いんめん", + "pos": "名詞", + "pn": -0.264169 + }, + { + "surface": "生立ち", + "readging": "おいたち", + "pos": "名詞", + "pn": -0.264173 + }, + { + "surface": "判別", + "readging": "はんべつ", + "pos": "名詞", + "pn": -0.264203 + }, + { + "surface": "ビーコン", + "readging": "ビーコン", + "pos": "名詞", + "pn": -0.264204 + }, + { + "surface": "空閑地", + "readging": "くうかんち", + "pos": "名詞", + "pn": -0.264211 + }, + { + "surface": "出力", + "readging": "しゅつりょく", + "pos": "名詞", + "pn": -0.264211 + }, + { + "surface": "伝聞", + "readging": "でんぶん", + "pos": "名詞", + "pn": -0.26422 + }, + { + "surface": "俗界", + "readging": "ぞっかい", + "pos": "名詞", + "pn": -0.264224 + }, + { + "surface": "板金", + "readging": "ばんきん", + "pos": "名詞", + "pn": -0.264231 + }, + { + "surface": "白眼視", + "readging": "はくがんし", + "pos": "名詞", + "pn": -0.26424 + }, + { + "surface": "竜宮", + "readging": "りゅうぐう", + "pos": "名詞", + "pn": -0.264252 + }, + { + "surface": "碧", + "readging": "へき", + "pos": "名詞", + "pn": -0.264255 + }, + { + "surface": "取持ち", + "readging": "とりもち", + "pos": "名詞", + "pn": -0.264263 + }, + { + "surface": "上", + "readging": "うえ", + "pos": "名詞", + "pn": -0.264271 + }, + { + "surface": "一角獣", + "readging": "いっかくじゅう", + "pos": "名詞", + "pn": -0.264272 + }, + { + "surface": "百科", + "readging": "ひゃっか", + "pos": "名詞", + "pn": -0.264276 + }, + { + "surface": "為替尻", + "readging": "かわせ", + "pos": "名詞", + "pn": -0.264297 + }, + { + "surface": "在位", + "readging": "ざいい", + "pos": "名詞", + "pn": -0.264297 + }, + { + "surface": "微吟", + "readging": "びぎん", + "pos": "名詞", + "pn": -0.26432 + }, + { + "surface": "富士絹", + "readging": "ふじぎぬ", + "pos": "名詞", + "pn": -0.264322 + }, + { + "surface": "立願", + "readging": "りつがん", + "pos": "名詞", + "pn": -0.264327 + }, + { + "surface": "絶遠", + "readging": "ぜつえん", + "pos": "名詞", + "pn": -0.264385 + }, + { + "surface": "町筋", + "readging": "まちすじ", + "pos": "名詞", + "pn": -0.264421 + }, + { + "surface": "めくわせ", + "readging": "めくわせ", + "pos": "名詞", + "pn": -0.264437 + }, + { + "surface": "正金", + "readging": "しょうきん", + "pos": "名詞", + "pn": -0.26445 + }, + { + "surface": "爪繰る", + "readging": "つまぐる", + "pos": "動詞", + "pn": -0.264451 + }, + { + "surface": "古詩", + "readging": "こし", + "pos": "名詞", + "pn": -0.264476 + }, + { + "surface": "出生", + "readging": "しゅっせい", + "pos": "名詞", + "pn": -0.264488 + }, + { + "surface": "ライス", + "readging": "ライス", + "pos": "名詞", + "pn": -0.264496 + }, + { + "surface": "外形", + "readging": "がいけい", + "pos": "名詞", + "pn": -0.264503 + }, + { + "surface": "触出し", + "readging": "ふれだし", + "pos": "名詞", + "pn": -0.264518 + }, + { + "surface": "生涯", + "readging": "しょうがい", + "pos": "名詞", + "pn": -0.264524 + }, + { + "surface": "英数字", + "readging": "えいすうじ", + "pos": "名詞", + "pn": -0.264547 + }, + { + "surface": "勧進帳", + "readging": "かんじんちょう", + "pos": "名詞", + "pn": -0.264564 + }, + { + "surface": "パーソナリティー", + "readging": "パーソナリティー", + "pos": "名詞", + "pn": -0.264582 + }, + { + "surface": "郵券", + "readging": "ゆうけん", + "pos": "名詞", + "pn": -0.264596 + }, + { + "surface": "雪模様", + "readging": "ゆきもよう", + "pos": "名詞", + "pn": -0.264601 + }, + { + "surface": "自動電話", + "readging": "じどうでんわ", + "pos": "名詞", + "pn": -0.26461 + }, + { + "surface": "封皮", + "readging": "ふうひ", + "pos": "名詞", + "pn": -0.264628 + }, + { + "surface": "使嗾", + "readging": "しそう", + "pos": "名詞", + "pn": -0.264636 + }, + { + "surface": "検認", + "readging": "けんにん", + "pos": "名詞", + "pn": -0.26464 + }, + { + "surface": "コンデンス ミルク", + "readging": "コンデンス ミルク", + "pos": "名詞", + "pn": -0.264664 + }, + { + "surface": "考証", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.264665 + }, + { + "surface": "慣習法", + "readging": "かんしゅうほう", + "pos": "名詞", + "pn": -0.264692 + }, + { + "surface": "起因", + "readging": "きいん", + "pos": "名詞", + "pn": -0.264694 + }, + { + "surface": "一見", + "readging": "いちげん", + "pos": "名詞", + "pn": -0.264711 + }, + { + "surface": "やもめ", + "readging": "やもめ", + "pos": "名詞", + "pn": -0.26472 + }, + { + "surface": "地核", + "readging": "ちかく", + "pos": "名詞", + "pn": -0.264723 + }, + { + "surface": "三碧", + "readging": "さんぺき", + "pos": "名詞", + "pn": -0.264733 + }, + { + "surface": "敵背", + "readging": "てきはい", + "pos": "名詞", + "pn": -0.264747 + }, + { + "surface": "涼気", + "readging": "りょうき", + "pos": "名詞", + "pn": -0.264767 + }, + { + "surface": "遊資", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.264777 + }, + { + "surface": "半身", + "readging": "はんしん", + "pos": "名詞", + "pn": -0.264793 + }, + { + "surface": "メロン", + "readging": "メロン", + "pos": "名詞", + "pn": -0.264797 + }, + { + "surface": "言論", + "readging": "げんろん", + "pos": "名詞", + "pn": -0.264835 + }, + { + "surface": "徴発", + "readging": "ちょうはつ", + "pos": "名詞", + "pn": -0.264842 + }, + { + "surface": "蔵米", + "readging": "くらまい", + "pos": "名詞", + "pn": -0.264846 + }, + { + "surface": "研師", + "readging": "とぎし", + "pos": "名詞", + "pn": -0.264859 + }, + { + "surface": "魔界", + "readging": "まかい", + "pos": "名詞", + "pn": -0.264865 + }, + { + "surface": "鼻木", + "readging": "はなぎ", + "pos": "名詞", + "pn": -0.264867 + }, + { + "surface": "テックス", + "readging": "テックス", + "pos": "名詞", + "pn": -0.264869 + }, + { + "surface": "七生", + "readging": "しちしょう", + "pos": "名詞", + "pn": -0.264872 + }, + { + "surface": "プレーヤー", + "readging": "プレーヤー", + "pos": "名詞", + "pn": -0.264873 + }, + { + "surface": "有司", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.26489 + }, + { + "surface": "変り身", + "readging": "かわりみ", + "pos": "名詞", + "pn": -0.264896 + }, + { + "surface": "カリキュラム", + "readging": "カリキュラム", + "pos": "名詞", + "pn": -0.264937 + }, + { + "surface": "焦茶", + "readging": "こげちゃ", + "pos": "名詞", + "pn": -0.264942 + }, + { + "surface": "軍国主義", + "readging": "ぐんこくしゅぎ", + "pos": "名詞", + "pn": -0.264968 + }, + { + "surface": "禁足", + "readging": "きんそく", + "pos": "名詞", + "pn": -0.264986 + }, + { + "surface": "しっぺ", + "readging": "しっぺ", + "pos": "名詞", + "pn": -0.264989 + }, + { + "surface": "奏す", + "readging": "そうす", + "pos": "動詞", + "pn": -0.265004 + }, + { + "surface": "表看板", + "readging": "おもてかんばん", + "pos": "名詞", + "pn": -0.265022 + }, + { + "surface": "胚胎", + "readging": "はいたい", + "pos": "名詞", + "pn": -0.265029 + }, + { + "surface": "振りほどく", + "readging": "ふりほどく", + "pos": "動詞", + "pn": -0.265052 + }, + { + "surface": "仏閣", + "readging": "ぶっかく", + "pos": "名詞", + "pn": -0.265054 + }, + { + "surface": "係り結び", + "readging": "かかりむすび", + "pos": "名詞", + "pn": -0.265054 + }, + { + "surface": "永世中立国", + "readging": "えいせいちゅうりつこく", + "pos": "名詞", + "pn": -0.265067 + }, + { + "surface": "砕鉱", + "readging": "さいこう", + "pos": "名詞", + "pn": -0.265073 + }, + { + "surface": "鉄条", + "readging": "てつじょう", + "pos": "名詞", + "pn": -0.265093 + }, + { + "surface": "満願", + "readging": "まんがん", + "pos": "名詞", + "pn": -0.265113 + }, + { + "surface": "末輩", + "readging": "まっぱい", + "pos": "名詞", + "pn": -0.265117 + }, + { + "surface": "炒り子", + "readging": "いりこ", + "pos": "名詞", + "pn": -0.265128 + }, + { + "surface": "足留め", + "readging": "あしどめ", + "pos": "名詞", + "pn": -0.265135 + }, + { + "surface": "演壇", + "readging": "えんだん", + "pos": "名詞", + "pn": -0.265157 + }, + { + "surface": "砲台", + "readging": "ほうだい", + "pos": "名詞", + "pn": -0.265186 + }, + { + "surface": "和楽", + "readging": "わらく", + "pos": "名詞", + "pn": -0.2652 + }, + { + "surface": "再検討", + "readging": "さいけんとう", + "pos": "名詞", + "pn": -0.265257 + }, + { + "surface": "ぞろ目", + "readging": "ぞろめ", + "pos": "名詞", + "pn": -0.26528 + }, + { + "surface": "縮くれる", + "readging": "ちぢくれる", + "pos": "動詞", + "pn": -0.26529 + }, + { + "surface": "帽", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.265294 + }, + { + "surface": "他姓", + "readging": "たせい", + "pos": "名詞", + "pn": -0.265308 + }, + { + "surface": "検使", + "readging": "けんし", + "pos": "名詞", + "pn": -0.265366 + }, + { + "surface": "減摩", + "readging": "げんま", + "pos": "名詞", + "pn": -0.265387 + }, + { + "surface": "活気", + "readging": "かっき", + "pos": "名詞", + "pn": -0.26539 + }, + { + "surface": "生半可", + "readging": "なまはんか", + "pos": "名詞", + "pn": -0.265393 + }, + { + "surface": "薄荷脳", + "readging": "はっかのう", + "pos": "名詞", + "pn": -0.2654 + }, + { + "surface": "果し状", + "readging": "はたしじょう", + "pos": "名詞", + "pn": -0.265406 + }, + { + "surface": "卿", + "readging": "きょう", + "pos": "名詞", + "pn": -0.265407 + }, + { + "surface": "欧米", + "readging": "おうべい", + "pos": "名詞", + "pn": -0.265419 + }, + { + "surface": "リバーシブル", + "readging": "リバーシブル", + "pos": "名詞", + "pn": -0.265443 + }, + { + "surface": "資格任用", + "readging": "しかくにんよう", + "pos": "名詞", + "pn": -0.265452 + }, + { + "surface": "黄泉", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.265463 + }, + { + "surface": "邦", + "readging": "ほう", + "pos": "名詞", + "pn": -0.265471 + }, + { + "surface": "アトリエ", + "readging": "アトリエ", + "pos": "名詞", + "pn": -0.265472 + }, + { + "surface": "食分", + "readging": "しょくぶん", + "pos": "名詞", + "pn": -0.265479 + }, + { + "surface": "緩下剤", + "readging": "かんげざい", + "pos": "名詞", + "pn": -0.265479 + }, + { + "surface": "甘辛い", + "readging": "あまからい", + "pos": "形容詞", + "pn": -0.26549 + }, + { + "surface": "双眼鏡", + "readging": "そうがんきょう", + "pos": "名詞", + "pn": -0.265494 + }, + { + "surface": "煮染める", + "readging": "にしめる", + "pos": "動詞", + "pn": -0.265508 + }, + { + "surface": "浅薄", + "readging": "せんぱく", + "pos": "名詞", + "pn": -0.26551 + }, + { + "surface": "組入れる", + "readging": "くみいれる", + "pos": "動詞", + "pn": -0.265516 + }, + { + "surface": "龕灯", + "readging": "がんどう", + "pos": "名詞", + "pn": -0.265517 + }, + { + "surface": "起請文", + "readging": "きしょうもん", + "pos": "名詞", + "pn": -0.265523 + }, + { + "surface": "出版物", + "readging": "しゅっぱんぶつ", + "pos": "名詞", + "pn": -0.265526 + }, + { + "surface": "強制執行", + "readging": "きょうせいしっこう", + "pos": "名詞", + "pn": -0.265542 + }, + { + "surface": "立売", + "readging": "たちうり", + "pos": "名詞", + "pn": -0.265545 + }, + { + "surface": "六尺棒", + "readging": "ろくしゃくぼう", + "pos": "名詞", + "pn": -0.265569 + }, + { + "surface": "文選", + "readging": "ぶんせん", + "pos": "名詞", + "pn": -0.265573 + }, + { + "surface": "直談判", + "readging": "じかだんぱん", + "pos": "名詞", + "pn": -0.265609 + }, + { + "surface": "配転", + "readging": "はいてん", + "pos": "名詞", + "pn": -0.265611 + }, + { + "surface": "来し方", + "readging": "こしかた", + "pos": "名詞", + "pn": -0.265623 + }, + { + "surface": "垂幕", + "readging": "たれまく", + "pos": "名詞", + "pn": -0.26563 + }, + { + "surface": "縫目", + "readging": "ぬいめ", + "pos": "名詞", + "pn": -0.265653 + }, + { + "surface": "退治る", + "readging": "たいじる", + "pos": "動詞", + "pn": -0.265661 + }, + { + "surface": "弁じる", + "readging": "べんじる", + "pos": "動詞", + "pn": -0.265674 + }, + { + "surface": "悠遠", + "readging": "ゆうえん", + "pos": "名詞", + "pn": -0.265693 + }, + { + "surface": "船籍", + "readging": "せんせき", + "pos": "名詞", + "pn": -0.2657 + }, + { + "surface": "議決", + "readging": "ぎけつ", + "pos": "名詞", + "pn": -0.2657 + }, + { + "surface": "品等", + "readging": "ひんとう", + "pos": "名詞", + "pn": -0.265709 + }, + { + "surface": "百葉箱", + "readging": "ひゃくようばこ", + "pos": "名詞", + "pn": -0.265724 + }, + { + "surface": "裏書", + "readging": "うらがき", + "pos": "名詞", + "pn": -0.265733 + }, + { + "surface": "生絹", + "readging": "すずし", + "pos": "名詞", + "pn": -0.265736 + }, + { + "surface": "接岸", + "readging": "せつがん", + "pos": "名詞", + "pn": -0.265814 + }, + { + "surface": "先箱", + "readging": "さきばこ", + "pos": "名詞", + "pn": -0.265867 + }, + { + "surface": "胎生", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.265872 + }, + { + "surface": "楽人", + "readging": "がくじん", + "pos": "名詞", + "pn": -0.265874 + }, + { + "surface": "局待ち電報", + "readging": "きょくまちでんぽう", + "pos": "名詞", + "pn": -0.265878 + }, + { + "surface": "御羽車", + "readging": "おはぐるま", + "pos": "名詞", + "pn": -0.265881 + }, + { + "surface": "月参り", + "readging": "つきまいり", + "pos": "名詞", + "pn": -0.26589 + }, + { + "surface": "盲人", + "readging": "もうじん", + "pos": "名詞", + "pn": -0.265902 + }, + { + "surface": "局所", + "readging": "きょくしょ", + "pos": "名詞", + "pn": -0.265908 + }, + { + "surface": "幼稚園", + "readging": "ようちえん", + "pos": "名詞", + "pn": -0.265913 + }, + { + "surface": "タイム", + "readging": "タイム", + "pos": "名詞", + "pn": -0.265921 + }, + { + "surface": "手離れ", + "readging": "てばなれ", + "pos": "名詞", + "pn": -0.26593 + }, + { + "surface": "落し紙", + "readging": "おとしがみ", + "pos": "名詞", + "pn": -0.26596 + }, + { + "surface": "雨落ち", + "readging": "あまおち", + "pos": "名詞", + "pn": -0.265968 + }, + { + "surface": "火打石", + "readging": "ひうちいし", + "pos": "名詞", + "pn": -0.265974 + }, + { + "surface": "高覧", + "readging": "こうらん", + "pos": "名詞", + "pn": -0.26598 + }, + { + "surface": "教義", + "readging": "きょうぎ", + "pos": "名詞", + "pn": -0.265983 + }, + { + "surface": "八相", + "readging": "はっそう", + "pos": "名詞", + "pn": -0.265984 + }, + { + "surface": "里方", + "readging": "さとかた", + "pos": "名詞", + "pn": -0.266018 + }, + { + "surface": "撃沈", + "readging": "げきちん", + "pos": "名詞", + "pn": -0.266042 + }, + { + "surface": "グリーン", + "readging": "グリーンベルト", + "pos": "名詞", + "pn": -0.266045 + }, + { + "surface": "降魔", + "readging": "ごうま", + "pos": "名詞", + "pn": -0.26606 + }, + { + "surface": "円卓会議", + "readging": "えんたくかいぎ", + "pos": "名詞", + "pn": -0.266069 + }, + { + "surface": "塩瀬", + "readging": "しおぜ", + "pos": "名詞", + "pn": -0.266078 + }, + { + "surface": "白紙", + "readging": "はくし", + "pos": "名詞", + "pn": -0.26608 + }, + { + "surface": "炭田", + "readging": "たんでん", + "pos": "名詞", + "pn": -0.266092 + }, + { + "surface": "時勢", + "readging": "じせい", + "pos": "名詞", + "pn": -0.266098 + }, + { + "surface": "メーデー", + "readging": "メーデー", + "pos": "名詞", + "pn": -0.266104 + }, + { + "surface": "嶺", + "readging": "れい", + "pos": "名詞", + "pn": -0.266106 + }, + { + "surface": "爪立てる", + "readging": "つまだてる", + "pos": "動詞", + "pn": -0.266109 + }, + { + "surface": "枝肉", + "readging": "えだにく", + "pos": "名詞", + "pn": -0.266118 + }, + { + "surface": "紙屑", + "readging": "かみくず", + "pos": "名詞", + "pn": -0.26612 + }, + { + "surface": "軍学", + "readging": "ぐんがく", + "pos": "名詞", + "pn": -0.266124 + }, + { + "surface": "セロハン", + "readging": "セロハン", + "pos": "名詞", + "pn": -0.266149 + }, + { + "surface": "取合せ", + "readging": "とりあわせ", + "pos": "名詞", + "pn": -0.266158 + }, + { + "surface": "駆逐艦", + "readging": "くちくかん", + "pos": "名詞", + "pn": -0.266161 + }, + { + "surface": "能狂言", + "readging": "のうきょうげん", + "pos": "名詞", + "pn": -0.266179 + }, + { + "surface": "言逃れる", + "readging": "いいのがれる", + "pos": "動詞", + "pn": -0.266208 + }, + { + "surface": "タンク", + "readging": "タンク", + "pos": "名詞", + "pn": -0.266226 + }, + { + "surface": "便殿", + "readging": "びんでん", + "pos": "名詞", + "pn": -0.266238 + }, + { + "surface": "アイゼン", + "readging": "アイゼン", + "pos": "名詞", + "pn": -0.266251 + }, + { + "surface": "審", + "readging": "しん", + "pos": "名詞", + "pn": -0.266288 + }, + { + "surface": "パネリスト", + "readging": "パネリスト", + "pos": "名詞", + "pn": -0.26629 + }, + { + "surface": "蛮カラ", + "readging": "ばんカラ", + "pos": "名詞", + "pn": -0.266298 + }, + { + "surface": "声優", + "readging": "せいゆう", + "pos": "名詞", + "pn": -0.266322 + }, + { + "surface": "隆鼻術", + "readging": "りゅうびじゅつ", + "pos": "名詞", + "pn": -0.266366 + }, + { + "surface": "陰極線", + "readging": "いんきょくせん", + "pos": "名詞", + "pn": -0.266372 + }, + { + "surface": "独り舞台", + "readging": "ひとりぶたい", + "pos": "名詞", + "pn": -0.266399 + }, + { + "surface": "聞事", + "readging": "ききごと", + "pos": "名詞", + "pn": -0.266414 + }, + { + "surface": "火の車", + "readging": "ひのくるま", + "pos": "名詞", + "pn": -0.266429 + }, + { + "surface": "太刀", + "readging": "たちすじ", + "pos": "名詞", + "pn": -0.266431 + }, + { + "surface": "配分", + "readging": "はいぶん", + "pos": "名詞", + "pn": -0.266435 + }, + { + "surface": "樺色", + "readging": "かばいろ", + "pos": "名詞", + "pn": -0.266439 + }, + { + "surface": "灯蛾", + "readging": "とうが", + "pos": "名詞", + "pn": -0.266442 + }, + { + "surface": "特種", + "readging": "とくだね", + "pos": "名詞", + "pn": -0.266464 + }, + { + "surface": "対論", + "readging": "たいろん", + "pos": "名詞", + "pn": -0.266484 + }, + { + "surface": "ゆっくり", + "readging": "ゆっくり", + "pos": "副詞", + "pn": -0.266489 + }, + { + "surface": "聖譚曲", + "readging": "せいたんきょく", + "pos": "名詞", + "pn": -0.266498 + }, + { + "surface": "万頃", + "readging": "ばんけい", + "pos": "名詞", + "pn": -0.266502 + }, + { + "surface": "妾出", + "readging": "しょうしゅつ", + "pos": "名詞", + "pn": -0.266504 + }, + { + "surface": "検字", + "readging": "けんじ", + "pos": "名詞", + "pn": -0.266511 + }, + { + "surface": "ボールド", + "readging": "ボールド", + "pos": "名詞", + "pn": -0.266523 + }, + { + "surface": "近視眼", + "readging": "きんしがん", + "pos": "名詞", + "pn": -0.266525 + }, + { + "surface": "郵税", + "readging": "ゆうぜい", + "pos": "名詞", + "pn": -0.266592 + }, + { + "surface": "構造主義", + "readging": "こうぞうしゅぎ", + "pos": "名詞", + "pn": -0.266607 + }, + { + "surface": "御礼返し", + "readging": "おれいがえし", + "pos": "名詞", + "pn": -0.266609 + }, + { + "surface": "かなり", + "readging": "かなり", + "pos": "副詞", + "pn": -0.266611 + }, + { + "surface": "ギンガム", + "readging": "ギンガム", + "pos": "名詞", + "pn": -0.266617 + }, + { + "surface": "教養", + "readging": "きょうよう", + "pos": "名詞", + "pn": -0.266626 + }, + { + "surface": "なあなあ", + "readging": "なあなあ", + "pos": "名詞", + "pn": -0.266628 + }, + { + "surface": "半開", + "readging": "はんかい", + "pos": "名詞", + "pn": -0.266635 + }, + { + "surface": "警世", + "readging": "けいせい", + "pos": "名詞", + "pn": -0.266652 + }, + { + "surface": "シャンプー", + "readging": "シャンプー", + "pos": "名詞", + "pn": -0.26667 + }, + { + "surface": "照合", + "readging": "しょうごう", + "pos": "名詞", + "pn": -0.266674 + }, + { + "surface": "試み", + "readging": "こころみ", + "pos": "名詞", + "pn": -0.266708 + }, + { + "surface": "潮解", + "readging": "ちょうかい", + "pos": "名詞", + "pn": -0.266712 + }, + { + "surface": "守兵", + "readging": "しゅへい", + "pos": "名詞", + "pn": -0.266723 + }, + { + "surface": "往昔", + "readging": "おうせき", + "pos": "名詞", + "pn": -0.26675 + }, + { + "surface": "ジョーク", + "readging": "ジョーク", + "pos": "名詞", + "pn": -0.266761 + }, + { + "surface": "熱砂", + "readging": "ねっさ", + "pos": "名詞", + "pn": -0.266783 + }, + { + "surface": "参道", + "readging": "さんどう", + "pos": "名詞", + "pn": -0.266823 + }, + { + "surface": "海馬", + "readging": "かいば", + "pos": "名詞", + "pn": -0.266837 + }, + { + "surface": "露天掘り", + "readging": "ろてんぼり", + "pos": "名詞", + "pn": -0.266868 + }, + { + "surface": "手ぶら", + "readging": "てぶら", + "pos": "名詞", + "pn": -0.266899 + }, + { + "surface": "速報", + "readging": "そくほう", + "pos": "名詞", + "pn": -0.266917 + }, + { + "surface": "滑空", + "readging": "かっくう", + "pos": "名詞", + "pn": -0.266944 + }, + { + "surface": "姉", + "readging": "し", + "pos": "名詞", + "pn": -0.266947 + }, + { + "surface": "情報化", + "readging": "じょうほうか", + "pos": "名詞", + "pn": -0.266999 + }, + { + "surface": "物税", + "readging": "ぶつぜい", + "pos": "名詞", + "pn": -0.267001 + }, + { + "surface": "寄合", + "readging": "よりあい", + "pos": "名詞", + "pn": -0.267009 + }, + { + "surface": "紅毛", + "readging": "こうもう", + "pos": "名詞", + "pn": -0.267033 + }, + { + "surface": "対晤", + "readging": "たいご", + "pos": "名詞", + "pn": -0.267046 + }, + { + "surface": "集う", + "readging": "つどう", + "pos": "動詞", + "pn": -0.267068 + }, + { + "surface": "放水路", + "readging": "ほうすいろ", + "pos": "名詞", + "pn": -0.267073 + }, + { + "surface": "ポコペン", + "readging": "ポコペン", + "pos": "名詞", + "pn": -0.267075 + }, + { + "surface": "執筆", + "readging": "しっぴつ", + "pos": "名詞", + "pn": -0.267085 + }, + { + "surface": "銃刑", + "readging": "じゅうけい", + "pos": "名詞", + "pn": -0.267095 + }, + { + "surface": "ゴリラ", + "readging": "ゴリラ", + "pos": "名詞", + "pn": -0.267103 + }, + { + "surface": "春闘", + "readging": "しゅんとう", + "pos": "名詞", + "pn": -0.267106 + }, + { + "surface": "丁定規", + "readging": "ていじょうぎ", + "pos": "名詞", + "pn": -0.267126 + }, + { + "surface": "篇什", + "readging": "へんじゅう", + "pos": "名詞", + "pn": -0.267138 + }, + { + "surface": "山畑", + "readging": "やまばた", + "pos": "名詞", + "pn": -0.267142 + }, + { + "surface": "継子", + "readging": "けいし", + "pos": "名詞", + "pn": -0.267152 + }, + { + "surface": "路盤", + "readging": "ろばん", + "pos": "名詞", + "pn": -0.267185 + }, + { + "surface": "瑕疵", + "readging": "かし", + "pos": "名詞", + "pn": -0.267193 + }, + { + "surface": "優美", + "readging": "ゆうび", + "pos": "名詞", + "pn": -0.267213 + }, + { + "surface": "仕着せ", + "readging": "しきせ", + "pos": "名詞", + "pn": -0.267214 + }, + { + "surface": "内数", + "readging": "うちすう", + "pos": "名詞", + "pn": -0.26722 + }, + { + "surface": "コミュニティー", + "readging": "コミュニティー", + "pos": "名詞", + "pn": -0.26725 + }, + { + "surface": "動じる", + "readging": "どうじる", + "pos": "動詞", + "pn": -0.267251 + }, + { + "surface": "外電", + "readging": "がいでん", + "pos": "名詞", + "pn": -0.267255 + }, + { + "surface": "駒除け", + "readging": "こまよけ", + "pos": "名詞", + "pn": -0.267288 + }, + { + "surface": "修復", + "readging": "しゅうふく", + "pos": "名詞", + "pn": -0.267309 + }, + { + "surface": "人いきれ", + "readging": "ひといきれ", + "pos": "名詞", + "pn": -0.267349 + }, + { + "surface": "手捌き", + "readging": "てさばき", + "pos": "名詞", + "pn": -0.267355 + }, + { + "surface": "中庭", + "readging": "なかにわ", + "pos": "名詞", + "pn": -0.267366 + }, + { + "surface": "玉手箱", + "readging": "たまてばこ", + "pos": "名詞", + "pn": -0.267369 + }, + { + "surface": "菱形", + "readging": "ひしがた", + "pos": "名詞", + "pn": -0.267371 + }, + { + "surface": "生世話", + "readging": "きぜわ", + "pos": "名詞", + "pn": -0.267383 + }, + { + "surface": "エージェント", + "readging": "エージェント", + "pos": "名詞", + "pn": -0.267385 + }, + { + "surface": "千篇一律", + "readging": "せんぺんいちりつ", + "pos": "名詞", + "pn": -0.267401 + }, + { + "surface": "又", + "readging": "また", + "pos": "名詞", + "pn": -0.26744 + }, + { + "surface": "公認会計士", + "readging": "こうにんかいけいし", + "pos": "名詞", + "pn": -0.267442 + }, + { + "surface": "丹塗", + "readging": "にぬり", + "pos": "名詞", + "pn": -0.267503 + }, + { + "surface": "荘厳", + "readging": "そうごん", + "pos": "名詞", + "pn": -0.267506 + }, + { + "surface": "墨守", + "readging": "ぼくしゅ", + "pos": "名詞", + "pn": -0.267529 + }, + { + "surface": "津", + "readging": "しん", + "pos": "名詞", + "pn": -0.267533 + }, + { + "surface": "深見草", + "readging": "ふかみぐさ", + "pos": "名詞", + "pn": -0.267544 + }, + { + "surface": "メード", + "readging": "メード", + "pos": "名詞", + "pn": -0.267556 + }, + { + "surface": "乙矢", + "readging": "おとや", + "pos": "名詞", + "pn": -0.267565 + }, + { + "surface": "帯番組", + "readging": "おびばんぐみ", + "pos": "名詞", + "pn": -0.267574 + }, + { + "surface": "打砕く", + "readging": "うちくだく", + "pos": "動詞", + "pn": -0.267576 + }, + { + "surface": "相互", + "readging": "そうご", + "pos": "名詞", + "pn": -0.267604 + }, + { + "surface": "学力", + "readging": "がくりょく", + "pos": "名詞", + "pn": -0.267618 + }, + { + "surface": "化学反応", + "readging": "かがくはんのう", + "pos": "名詞", + "pn": -0.267618 + }, + { + "surface": "出張", + "readging": "しゅっちょう", + "pos": "名詞", + "pn": -0.267619 + }, + { + "surface": "脳膜", + "readging": "のうまく", + "pos": "名詞", + "pn": -0.26762 + }, + { + "surface": "殿", + "readging": "との", + "pos": "名詞", + "pn": -0.267637 + }, + { + "surface": "軍装", + "readging": "ぐんそう", + "pos": "名詞", + "pn": -0.267646 + }, + { + "surface": "二人三脚", + "readging": "ににんさんきゃく", + "pos": "名詞", + "pn": -0.267654 + }, + { + "surface": "別世界", + "readging": "べっせかい", + "pos": "名詞", + "pn": -0.267654 + }, + { + "surface": "ばさら髪", + "readging": "ばさらがみ", + "pos": "名詞", + "pn": -0.267662 + }, + { + "surface": "水差", + "readging": "みずさし", + "pos": "名詞", + "pn": -0.267674 + }, + { + "surface": "時制", + "readging": "じせい", + "pos": "名詞", + "pn": -0.267685 + }, + { + "surface": "飾り窓", + "readging": "かざりまど", + "pos": "名詞", + "pn": -0.267701 + }, + { + "surface": "性別", + "readging": "せいべつ", + "pos": "名詞", + "pn": -0.267716 + }, + { + "surface": "衣鉢", + "readging": "いはつ", + "pos": "名詞", + "pn": -0.267733 + }, + { + "surface": "波線", + "readging": "はせん", + "pos": "名詞", + "pn": -0.267734 + }, + { + "surface": "和菓子", + "readging": "わがし", + "pos": "名詞", + "pn": -0.267741 + }, + { + "surface": "用器画", + "readging": "ようきが", + "pos": "名詞", + "pn": -0.267751 + }, + { + "surface": "断頭台", + "readging": "だんとうだい", + "pos": "名詞", + "pn": -0.267762 + }, + { + "surface": "地球儀", + "readging": "ちきゅうぎ", + "pos": "名詞", + "pn": -0.267765 + }, + { + "surface": "元素記号", + "readging": "げんそきごう", + "pos": "名詞", + "pn": -0.267771 + }, + { + "surface": "篩い分ける", + "readging": "ふるいわける", + "pos": "動詞", + "pn": -0.267804 + }, + { + "surface": "高学年", + "readging": "こうがくねん", + "pos": "名詞", + "pn": -0.267806 + }, + { + "surface": "正餐", + "readging": "せいさん", + "pos": "名詞", + "pn": -0.26781 + }, + { + "surface": "ドンタク", + "readging": "ドンタク", + "pos": "名詞", + "pn": -0.267816 + }, + { + "surface": "合衆国", + "readging": "がっしゅうこく", + "pos": "名詞", + "pn": -0.26782 + }, + { + "surface": "落ち延びる", + "readging": "おちのびる", + "pos": "動詞", + "pn": -0.26782 + }, + { + "surface": "審議", + "readging": "しんぎ", + "pos": "名詞", + "pn": -0.26783 + }, + { + "surface": "甘薯", + "readging": "かんしょ", + "pos": "名詞", + "pn": -0.267845 + }, + { + "surface": "選り分ける", + "readging": "よりわける", + "pos": "動詞", + "pn": -0.267905 + }, + { + "surface": "出航", + "readging": "しゅっこう", + "pos": "名詞", + "pn": -0.267917 + }, + { + "surface": "門外漢", + "readging": "もんがいかん", + "pos": "名詞", + "pn": -0.267922 + }, + { + "surface": "縫物", + "readging": "ぬいもの", + "pos": "名詞", + "pn": -0.267922 + }, + { + "surface": "七つの海", + "readging": "ななつのうみ", + "pos": "名詞", + "pn": -0.267936 + }, + { + "surface": "ホーム", + "readging": "ホームステイ", + "pos": "名詞", + "pn": -0.267942 + }, + { + "surface": "柱石", + "readging": "ちゅうせき", + "pos": "名詞", + "pn": -0.267956 + }, + { + "surface": "駄賃", + "readging": "だちん", + "pos": "名詞", + "pn": -0.26796 + }, + { + "surface": "脈所", + "readging": "みゃくどころ", + "pos": "名詞", + "pn": -0.267978 + }, + { + "surface": "存念", + "readging": "ぞんねん", + "pos": "名詞", + "pn": -0.267986 + }, + { + "surface": "懐炉", + "readging": "かいろ", + "pos": "名詞", + "pn": -0.268011 + }, + { + "surface": "通訳", + "readging": "つうやく", + "pos": "名詞", + "pn": -0.268027 + }, + { + "surface": "帰する", + "readging": "きする", + "pos": "動詞", + "pn": -0.268032 + }, + { + "surface": "種子島", + "readging": "たねがしま", + "pos": "名詞", + "pn": -0.268047 + }, + { + "surface": "十五夜", + "readging": "じゅうごや", + "pos": "名詞", + "pn": -0.268047 + }, + { + "surface": "お伽噺", + "readging": "おとぎばなし", + "pos": "名詞", + "pn": -0.268052 + }, + { + "surface": "未発", + "readging": "みはつ", + "pos": "名詞", + "pn": -0.268053 + }, + { + "surface": "先任", + "readging": "せんにん", + "pos": "名詞", + "pn": -0.26807 + }, + { + "surface": "同流", + "readging": "どうりゅう", + "pos": "名詞", + "pn": -0.268103 + }, + { + "surface": "割栗", + "readging": "わりぐり", + "pos": "名詞", + "pn": -0.268139 + }, + { + "surface": "ボトム アップ", + "readging": "ボトム アップ", + "pos": "名詞", + "pn": -0.268139 + }, + { + "surface": "裸出", + "readging": "らしゅつ", + "pos": "名詞", + "pn": -0.268153 + }, + { + "surface": "歌心", + "readging": "うたごころ", + "pos": "名詞", + "pn": -0.268169 + }, + { + "surface": "溲瓶", + "readging": "しびん", + "pos": "名詞", + "pn": -0.268174 + }, + { + "surface": "梁木", + "readging": "りょうぼく", + "pos": "名詞", + "pn": -0.268181 + }, + { + "surface": "染色体", + "readging": "せんしょくたい", + "pos": "名詞", + "pn": -0.268185 + }, + { + "surface": "漫然", + "readging": "まんぜん", + "pos": "名詞", + "pn": -0.268209 + }, + { + "surface": "金字", + "readging": "こんじ", + "pos": "名詞", + "pn": -0.268209 + }, + { + "surface": "薙髪", + "readging": "ちはつ", + "pos": "名詞", + "pn": -0.268213 + }, + { + "surface": "守旧", + "readging": "しゅきゅう", + "pos": "名詞", + "pn": -0.268223 + }, + { + "surface": "ほろ酔い", + "readging": "ほろよい", + "pos": "名詞", + "pn": -0.268228 + }, + { + "surface": "巻尺", + "readging": "まきじゃく", + "pos": "名詞", + "pn": -0.268232 + }, + { + "surface": "小節", + "readging": "しょうせつ", + "pos": "名詞", + "pn": -0.268242 + }, + { + "surface": "お八つ", + "readging": "おやつ", + "pos": "名詞", + "pn": -0.268248 + }, + { + "surface": "和式", + "readging": "わしき", + "pos": "名詞", + "pn": -0.268259 + }, + { + "surface": "住い", + "readging": "すまい", + "pos": "名詞", + "pn": -0.268262 + }, + { + "surface": "図取り", + "readging": "ずどり", + "pos": "名詞", + "pn": -0.268272 + }, + { + "surface": "村勢", + "readging": "そんせい", + "pos": "名詞", + "pn": -0.268286 + }, + { + "surface": "産業革命", + "readging": "さんぎょうかくめい", + "pos": "名詞", + "pn": -0.268288 + }, + { + "surface": "刃渡り", + "readging": "はわたり", + "pos": "名詞", + "pn": -0.268295 + }, + { + "surface": "鵜匠", + "readging": "うしょう", + "pos": "名詞", + "pn": -0.268327 + }, + { + "surface": "高調子", + "readging": "たかちょうし", + "pos": "名詞", + "pn": -0.268333 + }, + { + "surface": "折畳む", + "readging": "おりたたむ", + "pos": "動詞", + "pn": -0.268426 + }, + { + "surface": "オリエンテーション", + "readging": "オリエンテーション", + "pos": "名詞", + "pn": -0.26844 + }, + { + "surface": "福袋", + "readging": "ふくぶくろ", + "pos": "名詞", + "pn": -0.268455 + }, + { + "surface": "鹿", + "readging": "ろく", + "pos": "名詞", + "pn": -0.268484 + }, + { + "surface": "原種", + "readging": "げんしゅ", + "pos": "名詞", + "pn": -0.26849 + }, + { + "surface": "団体交渉", + "readging": "だんたいこうしょう", + "pos": "名詞", + "pn": -0.2685 + }, + { + "surface": "海老茶", + "readging": "えびちゃ", + "pos": "名詞", + "pn": -0.268526 + }, + { + "surface": "綿ネル", + "readging": "めんネル", + "pos": "名詞", + "pn": -0.268529 + }, + { + "surface": "絶後", + "readging": "ぜつご", + "pos": "名詞", + "pn": -0.268541 + }, + { + "surface": "抱え", + "readging": "かかえ", + "pos": "名詞", + "pn": -0.268546 + }, + { + "surface": "判子", + "readging": "はんこ", + "pos": "名詞", + "pn": -0.26855 + }, + { + "surface": "肢体", + "readging": "したい", + "pos": "名詞", + "pn": -0.268553 + }, + { + "surface": "一年", + "readging": "いちねん", + "pos": "名詞", + "pn": -0.268561 + }, + { + "surface": "大掃除", + "readging": "おおそうじ", + "pos": "名詞", + "pn": -0.268574 + }, + { + "surface": "庵", + "readging": "いおり", + "pos": "名詞", + "pn": -0.26858 + }, + { + "surface": "擽り", + "readging": "くすぐり", + "pos": "名詞", + "pn": -0.268592 + }, + { + "surface": "夜寒", + "readging": "よさむ", + "pos": "名詞", + "pn": -0.268623 + }, + { + "surface": "波蝕", + "readging": "はしょく", + "pos": "名詞", + "pn": -0.268637 + }, + { + "surface": "信女", + "readging": "しんにょ", + "pos": "名詞", + "pn": -0.268676 + }, + { + "surface": "脱牢", + "readging": "だつろう", + "pos": "名詞", + "pn": -0.268682 + }, + { + "surface": "水掛け論", + "readging": "みずかけろん", + "pos": "名詞", + "pn": -0.268685 + }, + { + "surface": "惜別", + "readging": "せきべつ", + "pos": "名詞", + "pn": -0.26869 + }, + { + "surface": "返書", + "readging": "へんしょ", + "pos": "名詞", + "pn": -0.268717 + }, + { + "surface": "オクターブ", + "readging": "オクターブ", + "pos": "名詞", + "pn": -0.26875 + }, + { + "surface": "銅鐸", + "readging": "どうたく", + "pos": "名詞", + "pn": -0.268758 + }, + { + "surface": "人通り", + "readging": "ひとどおり", + "pos": "名詞", + "pn": -0.26881 + }, + { + "surface": "竹刀", + "readging": "しない", + "pos": "名詞", + "pn": -0.268828 + }, + { + "surface": "渋色", + "readging": "しぶいろ", + "pos": "名詞", + "pn": -0.268832 + }, + { + "surface": "単刀直入", + "readging": "たんとうちょくにゅう", + "pos": "名詞", + "pn": -0.268837 + }, + { + "surface": "摂取", + "readging": "せっしゅ", + "pos": "名詞", + "pn": -0.268867 + }, + { + "surface": "強行軍", + "readging": "きょうこうぐん", + "pos": "名詞", + "pn": -0.268899 + }, + { + "surface": "斎戒", + "readging": "さいかい", + "pos": "名詞", + "pn": -0.268913 + }, + { + "surface": "論証", + "readging": "ろんしょう", + "pos": "名詞", + "pn": -0.268916 + }, + { + "surface": "行着く", + "readging": "ゆきつく", + "pos": "動詞", + "pn": -0.268937 + }, + { + "surface": "盾", + "readging": "たて", + "pos": "名詞", + "pn": -0.268988 + }, + { + "surface": "関破り", + "readging": "せきやぶり", + "pos": "名詞", + "pn": -0.26899 + }, + { + "surface": "願文", + "readging": "がんもん", + "pos": "名詞", + "pn": -0.268993 + }, + { + "surface": "黒焼", + "readging": "くろやき", + "pos": "名詞", + "pn": -0.269011 + }, + { + "surface": "せっせと", + "readging": "せっせと", + "pos": "副詞", + "pn": -0.269017 + }, + { + "surface": "始生代", + "readging": "しせいだい", + "pos": "名詞", + "pn": -0.269027 + }, + { + "surface": "蛍狩", + "readging": "ほたるがり", + "pos": "名詞", + "pn": -0.269049 + }, + { + "surface": "未開発", + "readging": "みかいはつ", + "pos": "名詞", + "pn": -0.269059 + }, + { + "surface": "ミット", + "readging": "ミット", + "pos": "名詞", + "pn": -0.269061 + }, + { + "surface": "存外", + "readging": "ぞんがい", + "pos": "副詞", + "pn": -0.269114 + }, + { + "surface": "原告", + "readging": "げんこく", + "pos": "名詞", + "pn": -0.269122 + }, + { + "surface": "腰巾着", + "readging": "こしぎんちゃく", + "pos": "名詞", + "pn": -0.269127 + }, + { + "surface": "信託", + "readging": "しんたく", + "pos": "名詞", + "pn": -0.269132 + }, + { + "surface": "離", + "readging": "り", + "pos": "名詞", + "pn": -0.269135 + }, + { + "surface": "薬礼", + "readging": "やくれい", + "pos": "名詞", + "pn": -0.269156 + }, + { + "surface": "グレープ", + "readging": "グレープフルーツ", + "pos": "名詞", + "pn": -0.26917 + }, + { + "surface": "バント", + "readging": "バント", + "pos": "名詞", + "pn": -0.269172 + }, + { + "surface": "生命線", + "readging": "せいめいせん", + "pos": "名詞", + "pn": -0.269173 + }, + { + "surface": "イデオロギー", + "readging": "イデオロギー", + "pos": "名詞", + "pn": -0.26918 + }, + { + "surface": "涙腺", + "readging": "るいせん", + "pos": "名詞", + "pn": -0.269201 + }, + { + "surface": "借家", + "readging": "しゃくや", + "pos": "名詞", + "pn": -0.269203 + }, + { + "surface": "堂上", + "readging": "どうじょう", + "pos": "名詞", + "pn": -0.269205 + }, + { + "surface": "凝滞", + "readging": "ぎょうたい", + "pos": "名詞", + "pn": -0.269213 + }, + { + "surface": "平均台", + "readging": "へいきんだい", + "pos": "名詞", + "pn": -0.269226 + }, + { + "surface": "渡し賃", + "readging": "わたしちん", + "pos": "名詞", + "pn": -0.269252 + }, + { + "surface": "兵科", + "readging": "へいか", + "pos": "名詞", + "pn": -0.269263 + }, + { + "surface": "ヘクト", + "readging": "ヘクト", + "pos": "名詞", + "pn": -0.269281 + }, + { + "surface": "重陽", + "readging": "ちょうよう", + "pos": "名詞", + "pn": -0.269283 + }, + { + "surface": "テープ", + "readging": "テープ", + "pos": "名詞", + "pn": -0.269323 + }, + { + "surface": "脂足", + "readging": "あぶらあし", + "pos": "名詞", + "pn": -0.269327 + }, + { + "surface": "ネオン", + "readging": "ネオン", + "pos": "名詞", + "pn": -0.269333 + }, + { + "surface": "直系", + "readging": "ちょっけい", + "pos": "名詞", + "pn": -0.269351 + }, + { + "surface": "産院", + "readging": "さんいん", + "pos": "名詞", + "pn": -0.269356 + }, + { + "surface": "油断大敵", + "readging": "ゆだんたいてき", + "pos": "名詞", + "pn": -0.269357 + }, + { + "surface": "馬丁", + "readging": "ばてい", + "pos": "名詞", + "pn": -0.269376 + }, + { + "surface": "信任", + "readging": "しんにん", + "pos": "名詞", + "pn": -0.269386 + }, + { + "surface": "キー", + "readging": "キーボード", + "pos": "名詞", + "pn": -0.269389 + }, + { + "surface": "死斑", + "readging": "しはん", + "pos": "名詞", + "pn": -0.269399 + }, + { + "surface": "網版", + "readging": "あみはん", + "pos": "名詞", + "pn": -0.269421 + }, + { + "surface": "袴着", + "readging": "はかまぎ", + "pos": "名詞", + "pn": -0.269468 + }, + { + "surface": "覆轍", + "readging": "ふくてつ", + "pos": "名詞", + "pn": -0.269479 + }, + { + "surface": "御陵", + "readging": "ごりょう", + "pos": "名詞", + "pn": -0.269516 + }, + { + "surface": "定立", + "readging": "ていりつ", + "pos": "名詞", + "pn": -0.269525 + }, + { + "surface": "コーディネート", + "readging": "コーディネート", + "pos": "名詞", + "pn": -0.269557 + }, + { + "surface": "持続", + "readging": "じぞく", + "pos": "名詞", + "pn": -0.269574 + }, + { + "surface": "掛り", + "readging": "がかり", + "pos": "名詞", + "pn": -0.269591 + }, + { + "surface": "百物語", + "readging": "ひゃくものがたり", + "pos": "名詞", + "pn": -0.2696 + }, + { + "surface": "銀ぶら", + "readging": "ぎんぶら", + "pos": "名詞", + "pn": -0.269613 + }, + { + "surface": "公演", + "readging": "こうえん", + "pos": "名詞", + "pn": -0.269621 + }, + { + "surface": "又家来", + "readging": "またげらい", + "pos": "名詞", + "pn": -0.269623 + }, + { + "surface": "バーバリ", + "readging": "バーバリ", + "pos": "名詞", + "pn": -0.269643 + }, + { + "surface": "出穂", + "readging": "しゅっすい", + "pos": "名詞", + "pn": -0.269649 + }, + { + "surface": "共犯", + "readging": "きょうはん", + "pos": "名詞", + "pn": -0.269663 + }, + { + "surface": "浮浪", + "readging": "ふろう", + "pos": "名詞", + "pn": -0.269664 + }, + { + "surface": "無一物", + "readging": "むいちもつ", + "pos": "名詞", + "pn": -0.269683 + }, + { + "surface": "薙倒す", + "readging": "なぎたおす", + "pos": "動詞", + "pn": -0.269701 + }, + { + "surface": "含意", + "readging": "がんい", + "pos": "名詞", + "pn": -0.269705 + }, + { + "surface": "主祭", + "readging": "しゅさい", + "pos": "名詞", + "pn": -0.269706 + }, + { + "surface": "招待", + "readging": "しょうたい", + "pos": "名詞", + "pn": -0.269706 + }, + { + "surface": "愛染明王", + "readging": "あいぜんみょうおう", + "pos": "名詞", + "pn": -0.269713 + }, + { + "surface": "至人", + "readging": "しじん", + "pos": "名詞", + "pn": -0.269726 + }, + { + "surface": "開山", + "readging": "かいさん", + "pos": "名詞", + "pn": -0.269736 + }, + { + "surface": "半月", + "readging": "はんげつ", + "pos": "名詞", + "pn": -0.269742 + }, + { + "surface": "でんき炉", + "readging": "でんきろ", + "pos": "名詞", + "pn": -0.269754 + }, + { + "surface": "呉音", + "readging": "ごおん", + "pos": "名詞", + "pn": -0.269758 + }, + { + "surface": "のそのそ", + "readging": "のそのそ", + "pos": "副詞", + "pn": -0.269779 + }, + { + "surface": "絵葉書", + "readging": "えはがき", + "pos": "名詞", + "pn": -0.269781 + }, + { + "surface": "皇子", + "readging": "おうじ", + "pos": "名詞", + "pn": -0.269782 + }, + { + "surface": "虎口", + "readging": "ここう", + "pos": "名詞", + "pn": -0.269806 + }, + { + "surface": "アポイントメント", + "readging": "アポイントメント", + "pos": "名詞", + "pn": -0.269813 + }, + { + "surface": "陳弁", + "readging": "ちんべん", + "pos": "名詞", + "pn": -0.269824 + }, + { + "surface": "不知火", + "readging": "しらぬい", + "pos": "名詞", + "pn": -0.269838 + }, + { + "surface": "獣性", + "readging": "じゅうせい", + "pos": "名詞", + "pn": -0.269855 + }, + { + "surface": "ジーンズ", + "readging": "ジーンズ", + "pos": "名詞", + "pn": -0.269873 + }, + { + "surface": "轆轤", + "readging": "ろくろ", + "pos": "名詞", + "pn": -0.269886 + }, + { + "surface": "ボウル", + "readging": "ボウル", + "pos": "名詞", + "pn": -0.269898 + }, + { + "surface": "始発", + "readging": "しはつ", + "pos": "名詞", + "pn": -0.269912 + }, + { + "surface": "開廷", + "readging": "かいてい", + "pos": "名詞", + "pn": -0.269912 + }, + { + "surface": "物相飯", + "readging": "もっそうめし", + "pos": "名詞", + "pn": -0.269917 + }, + { + "surface": "高枕", + "readging": "たかまくら", + "pos": "名詞", + "pn": -0.26992 + }, + { + "surface": "鹿島立ち", + "readging": "かしまだち", + "pos": "名詞", + "pn": -0.269923 + }, + { + "surface": "混和", + "readging": "こんわ", + "pos": "名詞", + "pn": -0.269941 + }, + { + "surface": "もどく", + "readging": "もどく", + "pos": "動詞", + "pn": -0.269942 + }, + { + "surface": "ネーミング", + "readging": "ネーミング", + "pos": "名詞", + "pn": -0.269948 + }, + { + "surface": "イブ", + "readging": "イブ", + "pos": "名詞", + "pn": -0.269987 + }, + { + "surface": "供述", + "readging": "きょうじゅつ", + "pos": "名詞", + "pn": -0.269997 + }, + { + "surface": "新道", + "readging": "しんどう", + "pos": "名詞", + "pn": -0.270008 + }, + { + "surface": "正攻法", + "readging": "せいこうほう", + "pos": "名詞", + "pn": -0.270012 + }, + { + "surface": "金魚", + "readging": "きんぎょ", + "pos": "名詞", + "pn": -0.270012 + }, + { + "surface": "物理変化", + "readging": "ぶつりへんか", + "pos": "名詞", + "pn": -0.270014 + }, + { + "surface": "背負う", + "readging": "しょう", + "pos": "動詞", + "pn": -0.270019 + }, + { + "surface": "人妻", + "readging": "ひとづま", + "pos": "名詞", + "pn": -0.270039 + }, + { + "surface": "例文", + "readging": "れいぶん", + "pos": "名詞", + "pn": -0.270042 + }, + { + "surface": "寝込み", + "readging": "ねこみ", + "pos": "名詞", + "pn": -0.270064 + }, + { + "surface": "武者", + "readging": "むしゃ", + "pos": "名詞", + "pn": -0.270073 + }, + { + "surface": "宿怨", + "readging": "しゅくえん", + "pos": "名詞", + "pn": -0.270073 + }, + { + "surface": "篠懸", + "readging": "すずかけ", + "pos": "名詞", + "pn": -0.27008 + }, + { + "surface": "乗務", + "readging": "じょうむ", + "pos": "名詞", + "pn": -0.270081 + }, + { + "surface": "名弘め", + "readging": "なびろめ", + "pos": "名詞", + "pn": -0.270082 + }, + { + "surface": "粛啓", + "readging": "しゅくけい", + "pos": "名詞", + "pn": -0.270084 + }, + { + "surface": "キャッチ", + "readging": "キャッチフレーズ", + "pos": "名詞", + "pn": -0.270097 + }, + { + "surface": "付け焼刃", + "readging": "つけやきば", + "pos": "名詞", + "pn": -0.270104 + }, + { + "surface": "前官礼遇", + "readging": "ぜんかんれいぐう", + "pos": "名詞", + "pn": -0.270111 + }, + { + "surface": "昭", + "readging": "しょう", + "pos": "名詞", + "pn": -0.270113 + }, + { + "surface": "トッパー", + "readging": "トッパー", + "pos": "名詞", + "pn": -0.270118 + }, + { + "surface": "鰍", + "readging": "かじか", + "pos": "名詞", + "pn": -0.270119 + }, + { + "surface": "ツーリング", + "readging": "ツーリング", + "pos": "名詞", + "pn": -0.270122 + }, + { + "surface": "内の人", + "readging": "うちのひと", + "pos": "名詞", + "pn": -0.270128 + }, + { + "surface": "へたばる", + "readging": "へたばる", + "pos": "動詞", + "pn": -0.270153 + }, + { + "surface": "復航", + "readging": "ふっこう", + "pos": "名詞", + "pn": -0.27017 + }, + { + "surface": "闘犬", + "readging": "とうけん", + "pos": "名詞", + "pn": -0.270179 + }, + { + "surface": "バーディー", + "readging": "バーディー", + "pos": "名詞", + "pn": -0.270188 + }, + { + "surface": "スパゲッティ", + "readging": "スパゲッティ", + "pos": "名詞", + "pn": -0.270203 + }, + { + "surface": "黒奴", + "readging": "こくど", + "pos": "名詞", + "pn": -0.270203 + }, + { + "surface": "大寒", + "readging": "だいかん", + "pos": "名詞", + "pn": -0.270226 + }, + { + "surface": "中納言", + "readging": "ちゅうなごん", + "pos": "名詞", + "pn": -0.270229 + }, + { + "surface": "シアン", + "readging": "シアン", + "pos": "名詞", + "pn": -0.270229 + }, + { + "surface": "鉄扇", + "readging": "てっせん", + "pos": "名詞", + "pn": -0.270239 + }, + { + "surface": "飛退く", + "readging": "とびのく", + "pos": "動詞", + "pn": -0.27025 + }, + { + "surface": "素謡", + "readging": "すうたい", + "pos": "名詞", + "pn": -0.270258 + }, + { + "surface": "弾倉", + "readging": "だんそう", + "pos": "名詞", + "pn": -0.270279 + }, + { + "surface": "水茶屋", + "readging": "みずちゃや", + "pos": "名詞", + "pn": -0.270281 + }, + { + "surface": "教え", + "readging": "おしえ", + "pos": "名詞", + "pn": -0.270302 + }, + { + "surface": "ホログラフィー", + "readging": "ホログラフィー", + "pos": "名詞", + "pn": -0.270311 + }, + { + "surface": "勝抜く", + "readging": "かちぬく", + "pos": "動詞", + "pn": -0.270332 + }, + { + "surface": "煙霧", + "readging": "えんむ", + "pos": "名詞", + "pn": -0.270337 + }, + { + "surface": "トピック", + "readging": "トピック", + "pos": "名詞", + "pn": -0.270344 + }, + { + "surface": "逓次", + "readging": "ていじ", + "pos": "名詞", + "pn": -0.270351 + }, + { + "surface": "長椅子", + "readging": "ながいす", + "pos": "名詞", + "pn": -0.270358 + }, + { + "surface": "脳炎", + "readging": "のうえん", + "pos": "名詞", + "pn": -0.270364 + }, + { + "surface": "船繋り", + "readging": "ふながかり", + "pos": "名詞", + "pn": -0.270366 + }, + { + "surface": "源五郎鮒", + "readging": "げんごろうぶな", + "pos": "名詞", + "pn": -0.270366 + }, + { + "surface": "腹積り", + "readging": "はらづもり", + "pos": "名詞", + "pn": -0.270381 + }, + { + "surface": "道家", + "readging": "どうか", + "pos": "名詞", + "pn": -0.270402 + }, + { + "surface": "双眼", + "readging": "そうがん", + "pos": "名詞", + "pn": -0.270423 + }, + { + "surface": "兵糧", + "readging": "ひょうろう", + "pos": "名詞", + "pn": -0.270463 + }, + { + "surface": "震源", + "readging": "しんげん", + "pos": "名詞", + "pn": -0.270463 + }, + { + "surface": "指し示す", + "readging": "さししめす", + "pos": "動詞", + "pn": -0.270469 + }, + { + "surface": "デコレーション", + "readging": "デコレーション", + "pos": "名詞", + "pn": -0.27047 + }, + { + "surface": "葺板", + "readging": "ふきいた", + "pos": "名詞", + "pn": -0.270508 + }, + { + "surface": "ましょう", + "readging": "ましょう", + "pos": "動詞", + "pn": -0.270514 + }, + { + "surface": "服罪", + "readging": "ふくざい", + "pos": "名詞", + "pn": -0.270525 + }, + { + "surface": "旅商人", + "readging": "たびあきんど", + "pos": "名詞", + "pn": -0.27055 + }, + { + "surface": "尊覧", + "readging": "そんらん", + "pos": "名詞", + "pn": -0.270573 + }, + { + "surface": "寝道具", + "readging": "ねどうぐ", + "pos": "名詞", + "pn": -0.270578 + }, + { + "surface": "小用", + "readging": "こよう", + "pos": "名詞", + "pn": -0.270597 + }, + { + "surface": "分葱", + "readging": "わけぎ", + "pos": "名詞", + "pn": -0.270598 + }, + { + "surface": "本立", + "readging": "ほんたて", + "pos": "名詞", + "pn": -0.270599 + }, + { + "surface": "フロア", + "readging": "フロア", + "pos": "名詞", + "pn": -0.270607 + }, + { + "surface": "決勝", + "readging": "けっしょう", + "pos": "名詞", + "pn": -0.270637 + }, + { + "surface": "初午", + "readging": "はつうま", + "pos": "名詞", + "pn": -0.270688 + }, + { + "surface": "硬水", + "readging": "こうすい", + "pos": "名詞", + "pn": -0.270699 + }, + { + "surface": "フォックス トロット", + "readging": "フォックス トロット", + "pos": "名詞", + "pn": -0.270714 + }, + { + "surface": "ぶっかき", + "readging": "ぶっかき", + "pos": "名詞", + "pn": -0.270722 + }, + { + "surface": "早苗", + "readging": "さなえ", + "pos": "名詞", + "pn": -0.270732 + }, + { + "surface": "獣医", + "readging": "じゅうい", + "pos": "名詞", + "pn": -0.270739 + }, + { + "surface": "宰領", + "readging": "さいりょう", + "pos": "名詞", + "pn": -0.270755 + }, + { + "surface": "垂れ込む", + "readging": "たれこむ", + "pos": "動詞", + "pn": -0.270769 + }, + { + "surface": "異朝", + "readging": "いちょう", + "pos": "名詞", + "pn": -0.270774 + }, + { + "surface": "名跡", + "readging": "みょうせき", + "pos": "名詞", + "pn": -0.270788 + }, + { + "surface": "椹", + "readging": "さわら", + "pos": "名詞", + "pn": -0.270792 + }, + { + "surface": "バーテン", + "readging": "バーテン", + "pos": "名詞", + "pn": -0.270795 + }, + { + "surface": "オブザーバー", + "readging": "オブザーバー", + "pos": "名詞", + "pn": -0.270806 + }, + { + "surface": "歩留り", + "readging": "ぶどまり", + "pos": "名詞", + "pn": -0.270809 + }, + { + "surface": "転載", + "readging": "てんさい", + "pos": "名詞", + "pn": -0.270817 + }, + { + "surface": "高等裁判所", + "readging": "こうとうさいばんしょ", + "pos": "名詞", + "pn": -0.270819 + }, + { + "surface": "探題", + "readging": "たんだい", + "pos": "名詞", + "pn": -0.270827 + }, + { + "surface": "火線", + "readging": "かせん", + "pos": "名詞", + "pn": -0.270827 + }, + { + "surface": "純粋", + "readging": "じゅんすい", + "pos": "名詞", + "pn": -0.270864 + }, + { + "surface": "貸越", + "readging": "かしこし", + "pos": "名詞", + "pn": -0.270917 + }, + { + "surface": "足袋", + "readging": "たびはだし", + "pos": "名詞", + "pn": -0.270923 + }, + { + "surface": "不見転", + "readging": "みずてん", + "pos": "名詞", + "pn": -0.270927 + }, + { + "surface": "常務取締役", + "readging": "じょうむとりしまりやく", + "pos": "名詞", + "pn": -0.270931 + }, + { + "surface": "胸椎", + "readging": "きょうつい", + "pos": "名詞", + "pn": -0.270939 + }, + { + "surface": "粗餐", + "readging": "そさん", + "pos": "名詞", + "pn": -0.270951 + }, + { + "surface": "家紋", + "readging": "かもん", + "pos": "名詞", + "pn": -0.27096 + }, + { + "surface": "自家中毒", + "readging": "じかちゅうどく", + "pos": "名詞", + "pn": -0.270976 + }, + { + "surface": "知的所有権", + "readging": "ちてきしょゆうけん", + "pos": "名詞", + "pn": -0.270979 + }, + { + "surface": "養護", + "readging": "ようご", + "pos": "名詞", + "pn": -0.271005 + }, + { + "surface": "でんき溶接", + "readging": "でんきようせつ", + "pos": "名詞", + "pn": -0.271008 + }, + { + "surface": "犬儒", + "readging": "けんじゅ", + "pos": "名詞", + "pn": -0.271026 + }, + { + "surface": "梅雨", + "readging": "つゆざむ", + "pos": "名詞", + "pn": -0.271035 + }, + { + "surface": "索具", + "readging": "さくぐ", + "pos": "名詞", + "pn": -0.27104 + }, + { + "surface": "追突", + "readging": "ついとつ", + "pos": "名詞", + "pn": -0.271059 + }, + { + "surface": "リサイタル", + "readging": "リサイタル", + "pos": "名詞", + "pn": -0.271067 + }, + { + "surface": "桟敷", + "readging": "さじき", + "pos": "名詞", + "pn": -0.271076 + }, + { + "surface": "回申", + "readging": "かいしん", + "pos": "名詞", + "pn": -0.271083 + }, + { + "surface": "曩祖", + "readging": "のうそ", + "pos": "名詞", + "pn": -0.271116 + }, + { + "surface": "祭司", + "readging": "さいし", + "pos": "名詞", + "pn": -0.271118 + }, + { + "surface": "宮芝居", + "readging": "みやしばい", + "pos": "名詞", + "pn": -0.271147 + }, + { + "surface": "地力", + "readging": "じりき", + "pos": "名詞", + "pn": -0.27116 + }, + { + "surface": "発会", + "readging": "はっかい", + "pos": "名詞", + "pn": -0.271175 + }, + { + "surface": "丁字帯", + "readging": "ていじたい", + "pos": "名詞", + "pn": -0.271176 + }, + { + "surface": "自身番", + "readging": "じしんばん", + "pos": "名詞", + "pn": -0.271192 + }, + { + "surface": "輪舞", + "readging": "りんぶ", + "pos": "名詞", + "pn": -0.271193 + }, + { + "surface": "屠場", + "readging": "とじょう", + "pos": "名詞", + "pn": -0.271196 + }, + { + "surface": "命", + "readging": "いのち", + "pos": "名詞", + "pn": -0.271197 + }, + { + "surface": "柔弱", + "readging": "にゅうじゃく", + "pos": "名詞", + "pn": -0.271204 + }, + { + "surface": "心構え", + "readging": "こころがまえ", + "pos": "名詞", + "pn": -0.271205 + }, + { + "surface": "密航", + "readging": "みっこう", + "pos": "名詞", + "pn": -0.271222 + }, + { + "surface": "柳腰", + "readging": "やなぎごし", + "pos": "名詞", + "pn": -0.271252 + }, + { + "surface": "露点", + "readging": "ろてん", + "pos": "名詞", + "pn": -0.271256 + }, + { + "surface": "返本", + "readging": "へんぽん", + "pos": "名詞", + "pn": -0.271256 + }, + { + "surface": "ルポルタージュ", + "readging": "ルポルタージュ", + "pos": "名詞", + "pn": -0.27128 + }, + { + "surface": "綿羊", + "readging": "めんよう", + "pos": "名詞", + "pn": -0.27128 + }, + { + "surface": "旬報", + "readging": "じゅんぽう", + "pos": "名詞", + "pn": -0.271289 + }, + { + "surface": "駅弁", + "readging": "えきべん", + "pos": "名詞", + "pn": -0.271339 + }, + { + "surface": "出馬", + "readging": "しゅつば", + "pos": "名詞", + "pn": -0.271367 + }, + { + "surface": "鼻濁音", + "readging": "びだくおん", + "pos": "名詞", + "pn": -0.271384 + }, + { + "surface": "政治結社", + "readging": "せいじけっしゃ", + "pos": "名詞", + "pn": -0.2714 + }, + { + "surface": "生活給", + "readging": "せいかつきゅう", + "pos": "名詞", + "pn": -0.271453 + }, + { + "surface": "千切れ雲", + "readging": "ちぎれぐも", + "pos": "名詞", + "pn": -0.271455 + }, + { + "surface": "手羽", + "readging": "てば", + "pos": "名詞", + "pn": -0.271476 + }, + { + "surface": "匹夫", + "readging": "ひっぷ", + "pos": "名詞", + "pn": -0.271479 + }, + { + "surface": "産業資本", + "readging": "さんぎょうしほん", + "pos": "名詞", + "pn": -0.271488 + }, + { + "surface": "割腹", + "readging": "かっぷく", + "pos": "名詞", + "pn": -0.2715 + }, + { + "surface": "信士", + "readging": "しんじ", + "pos": "名詞", + "pn": -0.271501 + }, + { + "surface": "思惑", + "readging": "おもわく", + "pos": "名詞", + "pn": -0.271509 + }, + { + "surface": "門前町", + "readging": "もんぜんまち", + "pos": "名詞", + "pn": -0.271531 + }, + { + "surface": "有明", + "readging": "ありあけ", + "pos": "名詞", + "pn": -0.27154 + }, + { + "surface": "ドグマ", + "readging": "ドグマ", + "pos": "名詞", + "pn": -0.271548 + }, + { + "surface": "家郷", + "readging": "かきょう", + "pos": "名詞", + "pn": -0.271552 + }, + { + "surface": "最果て", + "readging": "さいはて", + "pos": "名詞", + "pn": -0.271554 + }, + { + "surface": "サブ", + "readging": "サブルーチン", + "pos": "名詞", + "pn": -0.271567 + }, + { + "surface": "一頃", + "readging": "ひところ", + "pos": "名詞", + "pn": -0.271576 + }, + { + "surface": "ビスマス", + "readging": "ビスマス", + "pos": "名詞", + "pn": -0.271589 + }, + { + "surface": "停年", + "readging": "ていねん", + "pos": "名詞", + "pn": -0.271596 + }, + { + "surface": "不即不離", + "readging": "ふそくふり", + "pos": "名詞", + "pn": -0.271613 + }, + { + "surface": "長夜", + "readging": "ちょうや", + "pos": "名詞", + "pn": -0.271614 + }, + { + "surface": "装飾音", + "readging": "そうしょくおん", + "pos": "名詞", + "pn": -0.271615 + }, + { + "surface": "大伯母", + "readging": "おおおば", + "pos": "名詞", + "pn": -0.271626 + }, + { + "surface": "兼用", + "readging": "けんよう", + "pos": "名詞", + "pn": -0.271628 + }, + { + "surface": "纜", + "readging": "ともづな", + "pos": "名詞", + "pn": -0.271637 + }, + { + "surface": "小六月", + "readging": "ころくがつ", + "pos": "名詞", + "pn": -0.271646 + }, + { + "surface": "粋事", + "readging": "いきごと", + "pos": "名詞", + "pn": -0.271678 + }, + { + "surface": "音速", + "readging": "おんそく", + "pos": "名詞", + "pn": -0.271682 + }, + { + "surface": "報知", + "readging": "ほうち", + "pos": "名詞", + "pn": -0.271685 + }, + { + "surface": "塩化", + "readging": "えんか", + "pos": "名詞", + "pn": -0.271686 + }, + { + "surface": "照葉樹林", + "readging": "しょうようじゅりん", + "pos": "名詞", + "pn": -0.271689 + }, + { + "surface": "電略", + "readging": "でんりゃく", + "pos": "名詞", + "pn": -0.271694 + }, + { + "surface": "こせつく", + "readging": "こせつく", + "pos": "動詞", + "pn": -0.271708 + }, + { + "surface": "田園都市", + "readging": "でんえんとし", + "pos": "名詞", + "pn": -0.271725 + }, + { + "surface": "十中八九", + "readging": "じっちゅうはっく", + "pos": "名詞", + "pn": -0.271737 + }, + { + "surface": "入営", + "readging": "にゅうえい", + "pos": "名詞", + "pn": -0.271761 + }, + { + "surface": "乱髪", + "readging": "らんぱつ", + "pos": "名詞", + "pn": -0.271789 + }, + { + "surface": "荷積", + "readging": "にづみ", + "pos": "名詞", + "pn": -0.271828 + }, + { + "surface": "牧歌", + "readging": "ぼっか", + "pos": "名詞", + "pn": -0.27183 + }, + { + "surface": "凶状", + "readging": "きょうじょう", + "pos": "名詞", + "pn": -0.271878 + }, + { + "surface": "検温", + "readging": "けんおん", + "pos": "名詞", + "pn": -0.271903 + }, + { + "surface": "デルタ", + "readging": "デルタ", + "pos": "名詞", + "pn": -0.271906 + }, + { + "surface": "傾き", + "readging": "かたむき", + "pos": "名詞", + "pn": -0.271959 + }, + { + "surface": "別名", + "readging": "べつみょう", + "pos": "名詞", + "pn": -0.271976 + }, + { + "surface": "略服", + "readging": "りゃくふく", + "pos": "名詞", + "pn": -0.271986 + }, + { + "surface": "自ずと", + "readging": "おのずと", + "pos": "副詞", + "pn": -0.271991 + }, + { + "surface": "伏流", + "readging": "ふくりゅう", + "pos": "名詞", + "pn": -0.272028 + }, + { + "surface": "元の木阿弥", + "readging": "もとのもくあみ", + "pos": "名詞", + "pn": -0.272065 + }, + { + "surface": "外敵", + "readging": "がいてき", + "pos": "名詞", + "pn": -0.272069 + }, + { + "surface": "高める", + "readging": "たかめる", + "pos": "動詞", + "pn": -0.272074 + }, + { + "surface": "新星", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.272075 + }, + { + "surface": "方程式", + "readging": "ほうていしき", + "pos": "名詞", + "pn": -0.272084 + }, + { + "surface": "媒染", + "readging": "ばいせん", + "pos": "名詞", + "pn": -0.272096 + }, + { + "surface": "公聴会", + "readging": "こうちょうかい", + "pos": "名詞", + "pn": -0.272114 + }, + { + "surface": "銑", + "readging": "ずく", + "pos": "名詞", + "pn": -0.272126 + }, + { + "surface": "苫葺", + "readging": "とまぶき", + "pos": "名詞", + "pn": -0.272139 + }, + { + "surface": "よたよた", + "readging": "よたよた", + "pos": "副詞", + "pn": -0.272164 + }, + { + "surface": "創作", + "readging": "そうさく", + "pos": "名詞", + "pn": -0.272169 + }, + { + "surface": "テスター", + "readging": "テスター", + "pos": "名詞", + "pn": -0.272174 + }, + { + "surface": "鉄道馬車", + "readging": "てつどうばしゃ", + "pos": "名詞", + "pn": -0.272188 + }, + { + "surface": "聴罪", + "readging": "ちょうざい", + "pos": "名詞", + "pn": -0.2722 + }, + { + "surface": "修道院", + "readging": "しゅうどういん", + "pos": "名詞", + "pn": -0.272206 + }, + { + "surface": "物音", + "readging": "ものおと", + "pos": "名詞", + "pn": -0.272209 + }, + { + "surface": "逃げ水", + "readging": "にげみず", + "pos": "名詞", + "pn": -0.272211 + }, + { + "surface": "顕花植物", + "readging": "けんかしょくぶつ", + "pos": "名詞", + "pn": -0.272225 + }, + { + "surface": "切出し", + "readging": "きりだし", + "pos": "名詞", + "pn": -0.272229 + }, + { + "surface": "禄盗人", + "readging": "ろくぬすびと", + "pos": "名詞", + "pn": -0.272253 + }, + { + "surface": "電波天文学", + "readging": "でんぱてんもんがく", + "pos": "名詞", + "pn": -0.272259 + }, + { + "surface": "チリ硝石", + "readging": "チリしょうせき", + "pos": "名詞", + "pn": -0.272259 + }, + { + "surface": "グルタミン酸", + "readging": "グルタミンさん", + "pos": "名詞", + "pn": -0.272291 + }, + { + "surface": "薄給", + "readging": "はっきゅう", + "pos": "名詞", + "pn": -0.272294 + }, + { + "surface": "送致", + "readging": "そうち", + "pos": "名詞", + "pn": -0.272305 + }, + { + "surface": "玉垂れ", + "readging": "たまだれ", + "pos": "名詞", + "pn": -0.272307 + }, + { + "surface": "教科", + "readging": "きょうか", + "pos": "名詞", + "pn": -0.272316 + }, + { + "surface": "居酒屋", + "readging": "いざかや", + "pos": "名詞", + "pn": -0.272345 + }, + { + "surface": "仕向け", + "readging": "しむけ", + "pos": "名詞", + "pn": -0.272349 + }, + { + "surface": "アフター サービス", + "readging": "アフター サービス", + "pos": "名詞", + "pn": -0.272353 + }, + { + "surface": "過飽和", + "readging": "かほうわ", + "pos": "名詞", + "pn": -0.272387 + }, + { + "surface": "毘沙門天", + "readging": "びしゃもんてん", + "pos": "名詞", + "pn": -0.272396 + }, + { + "surface": "ニュートン", + "readging": "ニュートン", + "pos": "名詞", + "pn": -0.272397 + }, + { + "surface": "燗番", + "readging": "かんばん", + "pos": "名詞", + "pn": -0.272404 + }, + { + "surface": "廃液", + "readging": "はいえき", + "pos": "名詞", + "pn": -0.272423 + }, + { + "surface": "黒豆", + "readging": "くろまめ", + "pos": "名詞", + "pn": -0.272425 + }, + { + "surface": "癸", + "readging": "みずのと", + "pos": "名詞", + "pn": -0.272433 + }, + { + "surface": "韜晦", + "readging": "とうかい", + "pos": "名詞", + "pn": -0.272452 + }, + { + "surface": "牛頭", + "readging": "ごず", + "pos": "名詞", + "pn": -0.272456 + }, + { + "surface": "旧臘", + "readging": "きゅうろう", + "pos": "名詞", + "pn": -0.27246 + }, + { + "surface": "軍靴", + "readging": "ぐんか", + "pos": "名詞", + "pn": -0.272462 + }, + { + "surface": "旅住い", + "readging": "たびずまい", + "pos": "名詞", + "pn": -0.272463 + }, + { + "surface": "ナチュラル", + "readging": "ナチュラル", + "pos": "名詞", + "pn": -0.272466 + }, + { + "surface": "五衰", + "readging": "ごすい", + "pos": "名詞", + "pn": -0.272471 + }, + { + "surface": "ナフタリン", + "readging": "ナフタリン", + "pos": "名詞", + "pn": -0.272481 + }, + { + "surface": "狂言綺語", + "readging": "きょうげんきご", + "pos": "名詞", + "pn": -0.272481 + }, + { + "surface": "ウインドー", + "readging": "ウインドー", + "pos": "名詞", + "pn": -0.272483 + }, + { + "surface": "父無し子", + "readging": "ててなしご", + "pos": "名詞", + "pn": -0.272485 + }, + { + "surface": "去声", + "readging": "きょしょう", + "pos": "名詞", + "pn": -0.272496 + }, + { + "surface": "沈下", + "readging": "ちんか", + "pos": "名詞", + "pn": -0.272498 + }, + { + "surface": "画餅", + "readging": "がべい", + "pos": "名詞", + "pn": -0.272504 + }, + { + "surface": "女給", + "readging": "じょきゅう", + "pos": "名詞", + "pn": -0.27251 + }, + { + "surface": "肥える", + "readging": "こえる", + "pos": "動詞", + "pn": -0.272514 + }, + { + "surface": "若宮", + "readging": "わかみや", + "pos": "名詞", + "pn": -0.272528 + }, + { + "surface": "ティー", + "readging": "ティーパーティー", + "pos": "名詞", + "pn": -0.272553 + }, + { + "surface": "女", + "readging": "おみな", + "pos": "名詞", + "pn": -0.272553 + }, + { + "surface": "ロジック", + "readging": "ロジック", + "pos": "名詞", + "pn": -0.272569 + }, + { + "surface": "サキソホン", + "readging": "サキソホン", + "pos": "名詞", + "pn": -0.272572 + }, + { + "surface": "コーラ", + "readging": "コーラ", + "pos": "名詞", + "pn": -0.272578 + }, + { + "surface": "鉱害", + "readging": "こうがい", + "pos": "名詞", + "pn": -0.272581 + }, + { + "surface": "御末", + "readging": "おすえ", + "pos": "名詞", + "pn": -0.272581 + }, + { + "surface": "歌集", + "readging": "かしゅう", + "pos": "名詞", + "pn": -0.272596 + }, + { + "surface": "町会", + "readging": "ちょうかい", + "pos": "名詞", + "pn": -0.272611 + }, + { + "surface": "代数学", + "readging": "だいすうがく", + "pos": "名詞", + "pn": -0.272615 + }, + { + "surface": "原皮", + "readging": "げんぴ", + "pos": "名詞", + "pn": -0.272618 + }, + { + "surface": "上底", + "readging": "あげぞこ", + "pos": "名詞", + "pn": -0.272619 + }, + { + "surface": "濁江", + "readging": "にごりえ", + "pos": "名詞", + "pn": -0.272643 + }, + { + "surface": "メーン", + "readging": "メーンマスト", + "pos": "名詞", + "pn": -0.272647 + }, + { + "surface": "空軍", + "readging": "くうぐん", + "pos": "名詞", + "pn": -0.272653 + }, + { + "surface": "逓送", + "readging": "ていそう", + "pos": "名詞", + "pn": -0.272711 + }, + { + "surface": "泊り明け", + "readging": "とまりあけ", + "pos": "名詞", + "pn": -0.272714 + }, + { + "surface": "後の世", + "readging": "のちのよ", + "pos": "名詞", + "pn": -0.272719 + }, + { + "surface": "蒸発", + "readging": "じょうはつ", + "pos": "名詞", + "pn": -0.272727 + }, + { + "surface": "若年寄", + "readging": "わかどしより", + "pos": "名詞", + "pn": -0.272742 + }, + { + "surface": "水爆", + "readging": "すいばく", + "pos": "名詞", + "pn": -0.272743 + }, + { + "surface": "泊り掛け", + "readging": "とまりがけ", + "pos": "名詞", + "pn": -0.272744 + }, + { + "surface": "酔潰れる", + "readging": "よいつぶれる", + "pos": "動詞", + "pn": -0.272748 + }, + { + "surface": "コンベヤー", + "readging": "コンベヤー", + "pos": "名詞", + "pn": -0.272794 + }, + { + "surface": "無職", + "readging": "ぶしょく", + "pos": "名詞", + "pn": -0.27281 + }, + { + "surface": "夏休", + "readging": "なつやすみ", + "pos": "名詞", + "pn": -0.272824 + }, + { + "surface": "挺", + "readging": "てい", + "pos": "名詞", + "pn": -0.272828 + }, + { + "surface": "品評", + "readging": "ひんぴょう", + "pos": "名詞", + "pn": -0.27288 + }, + { + "surface": "空漠", + "readging": "くうばく", + "pos": "名詞", + "pn": -0.272887 + }, + { + "surface": "忠信", + "readging": "ちゅうしん", + "pos": "名詞", + "pn": -0.27289 + }, + { + "surface": "将星", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.2729 + }, + { + "surface": "計数形", + "readging": "けいすうがた", + "pos": "名詞", + "pn": -0.272907 + }, + { + "surface": "悩乱", + "readging": "のうらん", + "pos": "名詞", + "pn": -0.272918 + }, + { + "surface": "ずべら", + "readging": "ずべら", + "pos": "名詞", + "pn": -0.272921 + }, + { + "surface": "学派", + "readging": "がくは", + "pos": "名詞", + "pn": -0.272924 + }, + { + "surface": "勇退", + "readging": "ゆうたい", + "pos": "名詞", + "pn": -0.272942 + }, + { + "surface": "総理", + "readging": "そうり", + "pos": "名詞", + "pn": -0.272982 + }, + { + "surface": "飽き飽きする", + "readging": "あきあきする", + "pos": "動詞", + "pn": -0.273019 + }, + { + "surface": "無粋", + "readging": "ぶすい", + "pos": "名詞", + "pn": -0.273021 + }, + { + "surface": "寄食", + "readging": "きしょく", + "pos": "名詞", + "pn": -0.273035 + }, + { + "surface": "渋り腹", + "readging": "しぶりばら", + "pos": "名詞", + "pn": -0.27304 + }, + { + "surface": "闕所", + "readging": "けっしょ", + "pos": "名詞", + "pn": -0.273044 + }, + { + "surface": "低め", + "readging": "ひくめ", + "pos": "名詞", + "pn": -0.273051 + }, + { + "surface": "前期", + "readging": "ぜんき", + "pos": "名詞", + "pn": -0.273051 + }, + { + "surface": "布石", + "readging": "ふせき", + "pos": "名詞", + "pn": -0.273052 + }, + { + "surface": "八方破れ", + "readging": "はっぽうやぶれ", + "pos": "名詞", + "pn": -0.273071 + }, + { + "surface": "材質", + "readging": "ざいしつ", + "pos": "名詞", + "pn": -0.273077 + }, + { + "surface": "底上げ", + "readging": "そこあげ", + "pos": "名詞", + "pn": -0.273081 + }, + { + "surface": "深夜", + "readging": "しんや", + "pos": "名詞", + "pn": -0.273096 + }, + { + "surface": "式三番", + "readging": "しきさんば", + "pos": "名詞", + "pn": -0.273099 + }, + { + "surface": "微細", + "readging": "びさい", + "pos": "名詞", + "pn": -0.273102 + }, + { + "surface": "馬食", + "readging": "ばしょく", + "pos": "名詞", + "pn": -0.27311 + }, + { + "surface": "成敗", + "readging": "せいはい", + "pos": "名詞", + "pn": -0.273112 + }, + { + "surface": "水浴", + "readging": "すいよく", + "pos": "名詞", + "pn": -0.273116 + }, + { + "surface": "矩", + "readging": "かね", + "pos": "名詞", + "pn": -0.273129 + }, + { + "surface": "積乱雲", + "readging": "せきらんうん", + "pos": "名詞", + "pn": -0.273132 + }, + { + "surface": "五大", + "readging": "ごだい", + "pos": "名詞", + "pn": -0.273151 + }, + { + "surface": "芸名", + "readging": "げいめい", + "pos": "名詞", + "pn": -0.273164 + }, + { + "surface": "呱呱", + "readging": "ここ", + "pos": "名詞", + "pn": -0.273165 + }, + { + "surface": "取寄せる", + "readging": "とりよせる", + "pos": "動詞", + "pn": -0.273175 + }, + { + "surface": "曹達水", + "readging": "ソーダすい", + "pos": "名詞", + "pn": -0.273177 + }, + { + "surface": "スタンス", + "readging": "スタンス", + "pos": "名詞", + "pn": -0.273188 + }, + { + "surface": "密輸入", + "readging": "みつゆにゅう", + "pos": "名詞", + "pn": -0.273208 + }, + { + "surface": "火炙り", + "readging": "ひあぶり", + "pos": "名詞", + "pn": -0.273229 + }, + { + "surface": "産婆", + "readging": "さんば", + "pos": "名詞", + "pn": -0.273253 + }, + { + "surface": "休業", + "readging": "きゅうぎょう", + "pos": "名詞", + "pn": -0.273257 + }, + { + "surface": "同門", + "readging": "どうもん", + "pos": "名詞", + "pn": -0.273267 + }, + { + "surface": "マニア", + "readging": "マニア", + "pos": "名詞", + "pn": -0.273268 + }, + { + "surface": "割注", + "readging": "わりちゅう", + "pos": "名詞", + "pn": -0.273275 + }, + { + "surface": "バッテリー", + "readging": "バッテリー", + "pos": "名詞", + "pn": -0.273285 + }, + { + "surface": "前哨戦", + "readging": "ぜんしょうせん", + "pos": "名詞", + "pn": -0.273294 + }, + { + "surface": "問掛ける", + "readging": "といかける", + "pos": "動詞", + "pn": -0.273302 + }, + { + "surface": "前付", + "readging": "まえづけ", + "pos": "名詞", + "pn": -0.273314 + }, + { + "surface": "井戸替え", + "readging": "いど", + "pos": "名詞", + "pn": -0.273327 + }, + { + "surface": "遠望", + "readging": "えんぼう", + "pos": "名詞", + "pn": -0.273346 + }, + { + "surface": "ブルジョア革命", + "readging": "ブルジョアかくめい", + "pos": "名詞", + "pn": -0.273369 + }, + { + "surface": "ショー", + "readging": "ショールーム", + "pos": "名詞", + "pn": -0.273386 + }, + { + "surface": "萌葱", + "readging": "もえぎ", + "pos": "名詞", + "pn": -0.273419 + }, + { + "surface": "負け嫌い", + "readging": "まけぎらい", + "pos": "名詞", + "pn": -0.273442 + }, + { + "surface": "丸帯", + "readging": "まるおび", + "pos": "名詞", + "pn": -0.273458 + }, + { + "surface": "長尻", + "readging": "ながじり", + "pos": "名詞", + "pn": -0.273481 + }, + { + "surface": "入力", + "readging": "にゅうりょく", + "pos": "名詞", + "pn": -0.273497 + }, + { + "surface": "ぶつ切り", + "readging": "ぶつぎり", + "pos": "名詞", + "pn": -0.273499 + }, + { + "surface": "古称", + "readging": "こしょう", + "pos": "名詞", + "pn": -0.273503 + }, + { + "surface": "コンパチ", + "readging": "コンパチ", + "pos": "副詞", + "pn": -0.273506 + }, + { + "surface": "櫟", + "readging": "くぬぎ", + "pos": "名詞", + "pn": -0.27352 + }, + { + "surface": "デノミネーション", + "readging": "デノミネーション", + "pos": "名詞", + "pn": -0.273537 + }, + { + "surface": "姫百合", + "readging": "ひめゆり", + "pos": "名詞", + "pn": -0.27355 + }, + { + "surface": "あながち", + "readging": "あながち", + "pos": "副詞", + "pn": -0.273555 + }, + { + "surface": "アチーブメント テスト", + "readging": "アチーブメント テスト", + "pos": "名詞", + "pn": -0.273563 + }, + { + "surface": "八道", + "readging": "はちどう", + "pos": "名詞", + "pn": -0.273572 + }, + { + "surface": "煮浸し", + "readging": "にびたし", + "pos": "名詞", + "pn": -0.273579 + }, + { + "surface": "借家", + "readging": "しゃっか", + "pos": "名詞", + "pn": -0.273612 + }, + { + "surface": "内診", + "readging": "ないしん", + "pos": "名詞", + "pn": -0.273617 + }, + { + "surface": "片雲", + "readging": "へんうん", + "pos": "名詞", + "pn": -0.273629 + }, + { + "surface": "要請", + "readging": "ようせい", + "pos": "名詞", + "pn": -0.273666 + }, + { + "surface": "痛憤", + "readging": "つうふん", + "pos": "名詞", + "pn": -0.273675 + }, + { + "surface": "蒔直し", + "readging": "まきなおし", + "pos": "名詞", + "pn": -0.273695 + }, + { + "surface": "保障", + "readging": "ほしょう", + "pos": "名詞", + "pn": -0.273706 + }, + { + "surface": "司式", + "readging": "ししき", + "pos": "名詞", + "pn": -0.273721 + }, + { + "surface": "喜劇", + "readging": "きげき", + "pos": "名詞", + "pn": -0.273733 + }, + { + "surface": "干鰯", + "readging": "ほしか", + "pos": "名詞", + "pn": -0.273734 + }, + { + "surface": "瀬", + "readging": "せ", + "pos": "名詞", + "pn": -0.273752 + }, + { + "surface": "発展", + "readging": "はってん", + "pos": "名詞", + "pn": -0.273756 + }, + { + "surface": "市場調査", + "readging": "しじょうちょうさ", + "pos": "名詞", + "pn": -0.273761 + }, + { + "surface": "丸刈", + "readging": "まるがり", + "pos": "名詞", + "pn": -0.273762 + }, + { + "surface": "植物園", + "readging": "しょくぶつえん", + "pos": "名詞", + "pn": -0.273763 + }, + { + "surface": "モヘア", + "readging": "モヘア", + "pos": "名詞", + "pn": -0.27377 + }, + { + "surface": "中有", + "readging": "ちゅうう", + "pos": "名詞", + "pn": -0.273783 + }, + { + "surface": "車代", + "readging": "くるまだい", + "pos": "名詞", + "pn": -0.273788 + }, + { + "surface": "サイクル", + "readging": "サイクル", + "pos": "名詞", + "pn": -0.273801 + }, + { + "surface": "流連", + "readging": "りゅうれん", + "pos": "名詞", + "pn": -0.273811 + }, + { + "surface": "サウンド", + "readging": "サウンドトラック", + "pos": "名詞", + "pn": -0.273843 + }, + { + "surface": "測度", + "readging": "そくど", + "pos": "名詞", + "pn": -0.273848 + }, + { + "surface": "滅尽", + "readging": "めつじん", + "pos": "名詞", + "pn": -0.273851 + }, + { + "surface": "出前", + "readging": "でまえ", + "pos": "名詞", + "pn": -0.273852 + }, + { + "surface": "本床", + "readging": "ほんどこ", + "pos": "名詞", + "pn": -0.273854 + }, + { + "surface": "暮し向き", + "readging": "くらしむき", + "pos": "名詞", + "pn": -0.273861 + }, + { + "surface": "甲板", + "readging": "かんぱん", + "pos": "名詞", + "pn": -0.273863 + }, + { + "surface": "極大", + "readging": "きょくだい", + "pos": "名詞", + "pn": -0.273882 + }, + { + "surface": "用務員", + "readging": "ようむいん", + "pos": "名詞", + "pn": -0.273883 + }, + { + "surface": "兄", + "readging": "けい", + "pos": "名詞", + "pn": -0.273888 + }, + { + "surface": "均一", + "readging": "きんいつ", + "pos": "名詞", + "pn": -0.273889 + }, + { + "surface": "鷹野", + "readging": "たかの", + "pos": "名詞", + "pn": -0.273892 + }, + { + "surface": "トランシーバー", + "readging": "トランシーバー", + "pos": "名詞", + "pn": -0.273893 + }, + { + "surface": "噛み煙草", + "readging": "かみタバコ", + "pos": "名詞", + "pn": -0.273893 + }, + { + "surface": "盛砂", + "readging": "もりずな", + "pos": "名詞", + "pn": -0.273913 + }, + { + "surface": "ジェット機", + "readging": "ジェットき", + "pos": "名詞", + "pn": -0.273919 + }, + { + "surface": "天日", + "readging": "てんじつ", + "pos": "名詞", + "pn": -0.273923 + }, + { + "surface": "造花", + "readging": "ぞうか", + "pos": "名詞", + "pn": -0.273934 + }, + { + "surface": "道場破り", + "readging": "どうじょうやぶり", + "pos": "名詞", + "pn": -0.27394 + }, + { + "surface": "隠し釘", + "readging": "かくしくぎ", + "pos": "名詞", + "pn": -0.273946 + }, + { + "surface": "測地線", + "readging": "そくちせん", + "pos": "名詞", + "pn": -0.273969 + }, + { + "surface": "食傷", + "readging": "しょくしょう", + "pos": "名詞", + "pn": -0.274007 + }, + { + "surface": "帆桁", + "readging": "ほげた", + "pos": "名詞", + "pn": -0.27401 + }, + { + "surface": "小乗", + "readging": "しょうじょう", + "pos": "名詞", + "pn": -0.274016 + }, + { + "surface": "柔", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.27402 + }, + { + "surface": "心底", + "readging": "しんそこ", + "pos": "名詞", + "pn": -0.274082 + }, + { + "surface": "茂み", + "readging": "しげみ", + "pos": "名詞", + "pn": -0.274101 + }, + { + "surface": "変調", + "readging": "へんちょう", + "pos": "名詞", + "pn": -0.274108 + }, + { + "surface": "渓", + "readging": "けい", + "pos": "名詞", + "pn": -0.274117 + }, + { + "surface": "透かし彫", + "readging": "すかしぼり", + "pos": "名詞", + "pn": -0.274123 + }, + { + "surface": "自爆", + "readging": "じばく", + "pos": "名詞", + "pn": -0.274147 + }, + { + "surface": "代香", + "readging": "だいこう", + "pos": "名詞", + "pn": -0.274162 + }, + { + "surface": "ユニオン ショップ", + "readging": "ユニオン ショップ", + "pos": "名詞", + "pn": -0.274193 + }, + { + "surface": "願う", + "readging": "ねがう", + "pos": "動詞", + "pn": -0.274203 + }, + { + "surface": "浅蜊", + "readging": "あさり", + "pos": "名詞", + "pn": -0.274218 + }, + { + "surface": "土付かず", + "readging": "つちつかず", + "pos": "名詞", + "pn": -0.274227 + }, + { + "surface": "人受け", + "readging": "ひとうけ", + "pos": "名詞", + "pn": -0.274233 + }, + { + "surface": "園丁", + "readging": "えんてい", + "pos": "名詞", + "pn": -0.274234 + }, + { + "surface": "堆石", + "readging": "たいせき", + "pos": "名詞", + "pn": -0.274253 + }, + { + "surface": "受け腰", + "readging": "うけごし", + "pos": "名詞", + "pn": -0.274271 + }, + { + "surface": "柔らか物", + "readging": "やわらか", + "pos": "名詞", + "pn": -0.274287 + }, + { + "surface": "太棹", + "readging": "ふとざお", + "pos": "名詞", + "pn": -0.274289 + }, + { + "surface": "仕付け", + "readging": "しつけ", + "pos": "名詞", + "pn": -0.274296 + }, + { + "surface": "白鞘", + "readging": "しらさや", + "pos": "名詞", + "pn": -0.274374 + }, + { + "surface": "嫁ぐ", + "readging": "とつぐ", + "pos": "動詞", + "pn": -0.27439 + }, + { + "surface": "端境期", + "readging": "はざかいき", + "pos": "名詞", + "pn": -0.274392 + }, + { + "surface": "狂騒", + "readging": "きょうそう", + "pos": "名詞", + "pn": -0.274395 + }, + { + "surface": "語気", + "readging": "ごき", + "pos": "名詞", + "pn": -0.27441 + }, + { + "surface": "鼻筋", + "readging": "はなすじ", + "pos": "名詞", + "pn": -0.274411 + }, + { + "surface": "潜没", + "readging": "せんぼつ", + "pos": "名詞", + "pn": -0.274464 + }, + { + "surface": "足代", + "readging": "あしだい", + "pos": "名詞", + "pn": -0.274465 + }, + { + "surface": "浮世絵", + "readging": "うきよえ", + "pos": "名詞", + "pn": -0.274487 + }, + { + "surface": "号令", + "readging": "ごうれい", + "pos": "名詞", + "pn": -0.274506 + }, + { + "surface": "爪先", + "readging": "つまさき", + "pos": "名詞", + "pn": -0.274522 + }, + { + "surface": "町歩", + "readging": "ちょうぶ", + "pos": "名詞", + "pn": -0.274541 + }, + { + "surface": "家例", + "readging": "かれい", + "pos": "名詞", + "pn": -0.27457 + }, + { + "surface": "雑色", + "readging": "ぞうしき", + "pos": "名詞", + "pn": -0.274571 + }, + { + "surface": "会費", + "readging": "かいひ", + "pos": "名詞", + "pn": -0.274571 + }, + { + "surface": "諒闇", + "readging": "りょうあん", + "pos": "名詞", + "pn": -0.274573 + }, + { + "surface": "核融合", + "readging": "かくゆうごう", + "pos": "名詞", + "pn": -0.274577 + }, + { + "surface": "千鳥格子", + "readging": "ちどりごうし", + "pos": "名詞", + "pn": -0.274608 + }, + { + "surface": "親会社", + "readging": "おやがいしゃ", + "pos": "名詞", + "pn": -0.274613 + }, + { + "surface": "雲脂", + "readging": "ふけ", + "pos": "名詞", + "pn": -0.274638 + }, + { + "surface": "豆炭", + "readging": "まめたん", + "pos": "名詞", + "pn": -0.274644 + }, + { + "surface": "真意", + "readging": "しんい", + "pos": "名詞", + "pn": -0.274658 + }, + { + "surface": "整備", + "readging": "せいび", + "pos": "名詞", + "pn": -0.274691 + }, + { + "surface": "太刀", + "readging": "たちかぜ", + "pos": "名詞", + "pn": -0.274693 + }, + { + "surface": "お守", + "readging": "おもり", + "pos": "名詞", + "pn": -0.274694 + }, + { + "surface": "炊煙", + "readging": "すいえん", + "pos": "名詞", + "pn": -0.274695 + }, + { + "surface": "排尿", + "readging": "はいにょう", + "pos": "名詞", + "pn": -0.274709 + }, + { + "surface": "くりくり", + "readging": "くりくり", + "pos": "副詞", + "pn": -0.274715 + }, + { + "surface": "小出し", + "readging": "こだし", + "pos": "名詞", + "pn": -0.274723 + }, + { + "surface": "獣疫", + "readging": "じゅうえき", + "pos": "名詞", + "pn": -0.274746 + }, + { + "surface": "拵え事", + "readging": "こしらえごと", + "pos": "名詞", + "pn": -0.274752 + }, + { + "surface": "車線", + "readging": "しゃせん", + "pos": "名詞", + "pn": -0.274775 + }, + { + "surface": "組子", + "readging": "くみこ", + "pos": "名詞", + "pn": -0.274784 + }, + { + "surface": "サイド", + "readging": "サイドビジネス", + "pos": "名詞", + "pn": -0.274795 + }, + { + "surface": "お冷", + "readging": "おひや", + "pos": "名詞", + "pn": -0.274797 + }, + { + "surface": "汗腺", + "readging": "かんせん", + "pos": "名詞", + "pn": -0.274805 + }, + { + "surface": "網戸", + "readging": "あみど", + "pos": "名詞", + "pn": -0.274813 + }, + { + "surface": "開業医", + "readging": "かいぎょうい", + "pos": "名詞", + "pn": -0.274824 + }, + { + "surface": "店開き", + "readging": "みせびらき", + "pos": "名詞", + "pn": -0.274843 + }, + { + "surface": "排外", + "readging": "はいがい", + "pos": "名詞", + "pn": -0.274849 + }, + { + "surface": "お出で", + "readging": "おいで", + "pos": "名詞", + "pn": -0.274864 + }, + { + "surface": "引当て", + "readging": "ひきあて", + "pos": "名詞", + "pn": -0.27488 + }, + { + "surface": "重重", + "readging": "じゅうじゅう", + "pos": "副詞", + "pn": -0.274884 + }, + { + "surface": "前払", + "readging": "まえばらい", + "pos": "名詞", + "pn": -0.274891 + }, + { + "surface": "注目", + "readging": "ちゅうもく", + "pos": "名詞", + "pn": -0.2749 + }, + { + "surface": "閃光電球", + "readging": "せんこうでんきゅう", + "pos": "名詞", + "pn": -0.274906 + }, + { + "surface": "変換", + "readging": "へんかん", + "pos": "名詞", + "pn": -0.274907 + }, + { + "surface": "渺茫", + "readging": "びょうぼう", + "pos": "名詞", + "pn": -0.274909 + }, + { + "surface": "同座", + "readging": "どうざ", + "pos": "名詞", + "pn": -0.274915 + }, + { + "surface": "綿雪", + "readging": "わたゆき", + "pos": "名詞", + "pn": -0.274918 + }, + { + "surface": "スウェット スーツ", + "readging": "スウェット スーツ", + "pos": "名詞", + "pn": -0.274931 + }, + { + "surface": "版元", + "readging": "はんもと", + "pos": "名詞", + "pn": -0.274954 + }, + { + "surface": "望郷", + "readging": "ぼうきょう", + "pos": "名詞", + "pn": -0.274983 + }, + { + "surface": "ブルー", + "readging": "ブルー", + "pos": "名詞", + "pn": -0.274983 + }, + { + "surface": "防疫", + "readging": "ぼうえき", + "pos": "名詞", + "pn": -0.274987 + }, + { + "surface": "星団", + "readging": "せいだん", + "pos": "名詞", + "pn": -0.274994 + }, + { + "surface": "烏金", + "readging": "からすがね", + "pos": "名詞", + "pn": -0.275014 + }, + { + "surface": "作事", + "readging": "さくじ", + "pos": "名詞", + "pn": -0.275023 + }, + { + "surface": "語口", + "readging": "かたりくち", + "pos": "名詞", + "pn": -0.275024 + }, + { + "surface": "不条理", + "readging": "ふじょうり", + "pos": "名詞", + "pn": -0.275057 + }, + { + "surface": "背丈", + "readging": "せたけ", + "pos": "名詞", + "pn": -0.27506 + }, + { + "surface": "騎馬", + "readging": "きば", + "pos": "名詞", + "pn": -0.275064 + }, + { + "surface": "帆綱", + "readging": "ほづな", + "pos": "名詞", + "pn": -0.275094 + }, + { + "surface": "胸中", + "readging": "きょうちゅう", + "pos": "名詞", + "pn": -0.275095 + }, + { + "surface": "長談義", + "readging": "ながだんぎ", + "pos": "名詞", + "pn": -0.275122 + }, + { + "surface": "諧調", + "readging": "かいちょう", + "pos": "名詞", + "pn": -0.275128 + }, + { + "surface": "配所", + "readging": "はいしょ", + "pos": "名詞", + "pn": -0.275139 + }, + { + "surface": "頸動脈", + "readging": "けいどうみゃく", + "pos": "名詞", + "pn": -0.275158 + }, + { + "surface": "再販", + "readging": "さいはん", + "pos": "名詞", + "pn": -0.275169 + }, + { + "surface": "山葵漬", + "readging": "わさびづけ", + "pos": "名詞", + "pn": -0.27517 + }, + { + "surface": "虫薬", + "readging": "むしぐすり", + "pos": "名詞", + "pn": -0.275187 + }, + { + "surface": "習俗", + "readging": "しゅうぞく", + "pos": "名詞", + "pn": -0.275204 + }, + { + "surface": "三毛", + "readging": "みけ", + "pos": "名詞", + "pn": -0.275209 + }, + { + "surface": "席代", + "readging": "せきだい", + "pos": "名詞", + "pn": -0.275214 + }, + { + "surface": "伏角", + "readging": "ふっかく", + "pos": "名詞", + "pn": -0.275239 + }, + { + "surface": "明徳", + "readging": "めいとく", + "pos": "名詞", + "pn": -0.27527 + }, + { + "surface": "紬", + "readging": "つむぎ", + "pos": "名詞", + "pn": -0.275275 + }, + { + "surface": "もたもた", + "readging": "もたもた", + "pos": "副詞", + "pn": -0.275298 + }, + { + "surface": "瘢痕", + "readging": "はんこん", + "pos": "名詞", + "pn": -0.275298 + }, + { + "surface": "雲量", + "readging": "うんりょう", + "pos": "名詞", + "pn": -0.275301 + }, + { + "surface": "異邦", + "readging": "いほう", + "pos": "名詞", + "pn": -0.275307 + }, + { + "surface": "開架", + "readging": "かいか", + "pos": "名詞", + "pn": -0.275318 + }, + { + "surface": "体形", + "readging": "たいけい", + "pos": "名詞", + "pn": -0.275345 + }, + { + "surface": "令外", + "readging": "りょうげ", + "pos": "名詞", + "pn": -0.275354 + }, + { + "surface": "封切", + "readging": "ふうきり", + "pos": "名詞", + "pn": -0.275374 + }, + { + "surface": "原綿", + "readging": "げんめん", + "pos": "名詞", + "pn": -0.275377 + }, + { + "surface": "没取", + "readging": "ぼっしゅ", + "pos": "名詞", + "pn": -0.275386 + }, + { + "surface": "意趣", + "readging": "いしゅ", + "pos": "名詞", + "pn": -0.275415 + }, + { + "surface": "レッカー車", + "readging": "レッカーしゃ", + "pos": "名詞", + "pn": -0.275422 + }, + { + "surface": "物理療法", + "readging": "ぶつりりょうほう", + "pos": "名詞", + "pn": -0.275432 + }, + { + "surface": "水筒", + "readging": "すいとう", + "pos": "名詞", + "pn": -0.275439 + }, + { + "surface": "リード", + "readging": "リード", + "pos": "名詞", + "pn": -0.275442 + }, + { + "surface": "社団法人", + "readging": "しゃだんほうじん", + "pos": "名詞", + "pn": -0.275452 + }, + { + "surface": "劇画", + "readging": "げきが", + "pos": "名詞", + "pn": -0.275459 + }, + { + "surface": "実入り", + "readging": "みいり", + "pos": "名詞", + "pn": -0.275516 + }, + { + "surface": "九十九髪", + "readging": "つくもがみ", + "pos": "名詞", + "pn": -0.275525 + }, + { + "surface": "考案", + "readging": "こうあん", + "pos": "名詞", + "pn": -0.275549 + }, + { + "surface": "客歳", + "readging": "かくさい", + "pos": "名詞", + "pn": -0.275557 + }, + { + "surface": "婆羅門", + "readging": "バラモン", + "pos": "名詞", + "pn": -0.275573 + }, + { + "surface": "エレクトロン", + "readging": "エレクトロン", + "pos": "名詞", + "pn": -0.275577 + }, + { + "surface": "徴憑", + "readging": "ちょうひょう", + "pos": "名詞", + "pn": -0.275585 + }, + { + "surface": "げじげじ眉", + "readging": "げじげじ", + "pos": "名詞", + "pn": -0.275595 + }, + { + "surface": "血脈", + "readging": "けちみゃく", + "pos": "名詞", + "pn": -0.275601 + }, + { + "surface": "丸出し", + "readging": "まるだし", + "pos": "名詞", + "pn": -0.275651 + }, + { + "surface": "文武", + "readging": "ぶんぶ", + "pos": "名詞", + "pn": -0.275665 + }, + { + "surface": "常体", + "readging": "じょうたい", + "pos": "名詞", + "pn": -0.275669 + }, + { + "surface": "噴霧器", + "readging": "ふんむき", + "pos": "名詞", + "pn": -0.275671 + }, + { + "surface": "手繰り", + "readging": "てぐり", + "pos": "名詞", + "pn": -0.275677 + }, + { + "surface": "挿話", + "readging": "そうわ", + "pos": "名詞", + "pn": -0.275683 + }, + { + "surface": "目", + "readging": "め", + "pos": "名詞", + "pn": -0.275699 + }, + { + "surface": "ヤードポンド法", + "readging": "ヤードポンドほう", + "pos": "名詞", + "pn": -0.27572 + }, + { + "surface": "俄狂言", + "readging": "にわかきょうげん", + "pos": "名詞", + "pn": -0.275722 + }, + { + "surface": "膜質", + "readging": "まくしつ", + "pos": "名詞", + "pn": -0.275731 + }, + { + "surface": "道程", + "readging": "どうてい", + "pos": "名詞", + "pn": -0.275731 + }, + { + "surface": "しかく四面", + "readging": "しかくしめん", + "pos": "名詞", + "pn": -0.275749 + }, + { + "surface": "川床", + "readging": "かわどこ", + "pos": "名詞", + "pn": -0.275752 + }, + { + "surface": "ABC", + "readging": "エービーシー", + "pos": "名詞", + "pn": -0.275756 + }, + { + "surface": "語彙", + "readging": "ごい", + "pos": "名詞", + "pn": -0.275757 + }, + { + "surface": "負け惜しみ", + "readging": "まけおしみ", + "pos": "名詞", + "pn": -0.275758 + }, + { + "surface": "片務契約", + "readging": "へんむけいやく", + "pos": "名詞", + "pn": -0.275762 + }, + { + "surface": "九九", + "readging": "くく", + "pos": "名詞", + "pn": -0.275762 + }, + { + "surface": "万引", + "readging": "まんびき", + "pos": "名詞", + "pn": -0.275769 + }, + { + "surface": "採血", + "readging": "さいけつ", + "pos": "名詞", + "pn": -0.275772 + }, + { + "surface": "阿羅漢", + "readging": "あらかん", + "pos": "名詞", + "pn": -0.275778 + }, + { + "surface": "雁垂", + "readging": "がんだれ", + "pos": "名詞", + "pn": -0.275792 + }, + { + "surface": "うつ伏す", + "readging": "うつぶす", + "pos": "動詞", + "pn": -0.275812 + }, + { + "surface": "永続", + "readging": "えいぞく", + "pos": "名詞", + "pn": -0.275831 + }, + { + "surface": "ピコ", + "readging": "ピコ", + "pos": "名詞", + "pn": -0.275834 + }, + { + "surface": "二部教授", + "readging": "にぶきょうじゅ", + "pos": "名詞", + "pn": -0.27584 + }, + { + "surface": "投身", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.275853 + }, + { + "surface": "東夷", + "readging": "とうい", + "pos": "名詞", + "pn": -0.275861 + }, + { + "surface": "排他", + "readging": "はいた", + "pos": "名詞", + "pn": -0.275867 + }, + { + "surface": "剣難", + "readging": "けんなん", + "pos": "名詞", + "pn": -0.27587 + }, + { + "surface": "圧延", + "readging": "あつえん", + "pos": "名詞", + "pn": -0.275878 + }, + { + "surface": "件", + "readging": "けん", + "pos": "名詞", + "pn": -0.27588 + }, + { + "surface": "輪講", + "readging": "りんこう", + "pos": "名詞", + "pn": -0.275881 + }, + { + "surface": "団匪", + "readging": "だんぴ", + "pos": "名詞", + "pn": -0.275889 + }, + { + "surface": "とば口", + "readging": "とばくち", + "pos": "名詞", + "pn": -0.275915 + }, + { + "surface": "母語", + "readging": "ぼご", + "pos": "名詞", + "pn": -0.275918 + }, + { + "surface": "技師", + "readging": "ぎし", + "pos": "名詞", + "pn": -0.275923 + }, + { + "surface": "電波望遠鏡", + "readging": "でんぱぼうえんきょう", + "pos": "名詞", + "pn": -0.275929 + }, + { + "surface": "原生代", + "readging": "げんせいだい", + "pos": "名詞", + "pn": -0.275947 + }, + { + "surface": "スクイズ", + "readging": "スクイズ", + "pos": "名詞", + "pn": -0.275949 + }, + { + "surface": "空身", + "readging": "からみ", + "pos": "名詞", + "pn": -0.275975 + }, + { + "surface": "キャスティング ボート", + "readging": "キャスティング ボート", + "pos": "名詞", + "pn": -0.275983 + }, + { + "surface": "プリン", + "readging": "プリン", + "pos": "名詞", + "pn": -0.275995 + }, + { + "surface": "砂", + "readging": "さ", + "pos": "名詞", + "pn": -0.276038 + }, + { + "surface": "象徴", + "readging": "しょうちょう", + "pos": "名詞", + "pn": -0.27604 + }, + { + "surface": "重機", + "readging": "じゅうき", + "pos": "名詞", + "pn": -0.276055 + }, + { + "surface": "士農工商", + "readging": "しのうこうしょう", + "pos": "名詞", + "pn": -0.27607 + }, + { + "surface": "風俗小説", + "readging": "ふうぞくしょうせつ", + "pos": "名詞", + "pn": -0.276072 + }, + { + "surface": "地頭", + "readging": "じとう", + "pos": "名詞", + "pn": -0.276083 + }, + { + "surface": "入掛け", + "readging": "いれかけ", + "pos": "名詞", + "pn": -0.276101 + }, + { + "surface": "詔勅", + "readging": "しょうちょく", + "pos": "名詞", + "pn": -0.276106 + }, + { + "surface": "別れ霜", + "readging": "わかれじも", + "pos": "名詞", + "pn": -0.276111 + }, + { + "surface": "シトロン", + "readging": "シトロン", + "pos": "名詞", + "pn": -0.276117 + }, + { + "surface": "紅雀", + "readging": "べにすずめ", + "pos": "名詞", + "pn": -0.276129 + }, + { + "surface": "強迫観念", + "readging": "きょうはくかんねん", + "pos": "名詞", + "pn": -0.276135 + }, + { + "surface": "投掛ける", + "readging": "なげかける", + "pos": "動詞", + "pn": -0.27616 + }, + { + "surface": "国歌", + "readging": "こっか", + "pos": "名詞", + "pn": -0.276179 + }, + { + "surface": "空梅雨", + "readging": "からつゆ", + "pos": "名詞", + "pn": -0.27619 + }, + { + "surface": "降職", + "readging": "こうしょく", + "pos": "名詞", + "pn": -0.276195 + }, + { + "surface": "塩浜", + "readging": "しおはま", + "pos": "名詞", + "pn": -0.276224 + }, + { + "surface": "所帯道具", + "readging": "しょたいどうぐ", + "pos": "名詞", + "pn": -0.276232 + }, + { + "surface": "蓮", + "readging": "はちす", + "pos": "名詞", + "pn": -0.276233 + }, + { + "surface": "抜打ち", + "readging": "ぬきうち", + "pos": "名詞", + "pn": -0.276235 + }, + { + "surface": "消音", + "readging": "しょうおん", + "pos": "名詞", + "pn": -0.276261 + }, + { + "surface": "勾当", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.276294 + }, + { + "surface": "言合せる", + "readging": "いいあわせる", + "pos": "動詞", + "pn": -0.276294 + }, + { + "surface": "アドレス", + "readging": "アドレス", + "pos": "名詞", + "pn": -0.276309 + }, + { + "surface": "草枯", + "readging": "くさがれ", + "pos": "名詞", + "pn": -0.276311 + }, + { + "surface": "ユートピア", + "readging": "ユートピア", + "pos": "名詞", + "pn": -0.276317 + }, + { + "surface": "ユニホーム", + "readging": "ユニホーム", + "pos": "名詞", + "pn": -0.276346 + }, + { + "surface": "宿直", + "readging": "しゅくちょく", + "pos": "名詞", + "pn": -0.276352 + }, + { + "surface": "信用機関", + "readging": "しんようきかん", + "pos": "名詞", + "pn": -0.276353 + }, + { + "surface": "前渡し", + "readging": "まえわたし", + "pos": "名詞", + "pn": -0.276369 + }, + { + "surface": "測候所", + "readging": "そっこうじょ", + "pos": "名詞", + "pn": -0.276389 + }, + { + "surface": "ぼてぼて", + "readging": "ぼてぼて", + "pos": "副詞", + "pn": -0.276394 + }, + { + "surface": "核反応", + "readging": "かくはんのう", + "pos": "名詞", + "pn": -0.276401 + }, + { + "surface": "寝殿", + "readging": "しんでん", + "pos": "名詞", + "pn": -0.276402 + }, + { + "surface": "鳥小屋", + "readging": "とりごや", + "pos": "名詞", + "pn": -0.276408 + }, + { + "surface": "浮薄", + "readging": "ふはく", + "pos": "名詞", + "pn": -0.27643 + }, + { + "surface": "ノルマ", + "readging": "ノルマ", + "pos": "名詞", + "pn": -0.276432 + }, + { + "surface": "妾腹", + "readging": "しょうふく", + "pos": "名詞", + "pn": -0.276434 + }, + { + "surface": "論外", + "readging": "ろんがい", + "pos": "名詞", + "pn": -0.276444 + }, + { + "surface": "先回", + "readging": "せんかい", + "pos": "名詞", + "pn": -0.276452 + }, + { + "surface": "書判", + "readging": "かきはん", + "pos": "名詞", + "pn": -0.276452 + }, + { + "surface": "講壇", + "readging": "こうだん", + "pos": "名詞", + "pn": -0.276453 + }, + { + "surface": "出品", + "readging": "しゅっぴん", + "pos": "名詞", + "pn": -0.27646 + }, + { + "surface": "八宗兼学", + "readging": "はっしゅうけんがく", + "pos": "名詞", + "pn": -0.276462 + }, + { + "surface": "潸然", + "readging": "さんぜん", + "pos": "名詞", + "pn": -0.276472 + }, + { + "surface": "鍼灸", + "readging": "しんきゅう", + "pos": "名詞", + "pn": -0.276479 + }, + { + "surface": "勃然", + "readging": "ぼつぜん", + "pos": "名詞", + "pn": -0.276496 + }, + { + "surface": "ての", + "readging": "ての", + "pos": "名詞", + "pn": -0.276522 + }, + { + "surface": "メーター", + "readging": "メーター", + "pos": "名詞", + "pn": -0.276527 + }, + { + "surface": "幕下", + "readging": "まくした", + "pos": "名詞", + "pn": -0.276531 + }, + { + "surface": "熱帯夜", + "readging": "ねったいや", + "pos": "名詞", + "pn": -0.276531 + }, + { + "surface": "在京", + "readging": "ざいきょう", + "pos": "名詞", + "pn": -0.276559 + }, + { + "surface": "山並", + "readging": "やまなみ", + "pos": "名詞", + "pn": -0.276567 + }, + { + "surface": "連動", + "readging": "れんどう", + "pos": "名詞", + "pn": -0.276568 + }, + { + "surface": "檣楼", + "readging": "しょうろう", + "pos": "名詞", + "pn": -0.27657 + }, + { + "surface": "リネン", + "readging": "リネン", + "pos": "名詞", + "pn": -0.276572 + }, + { + "surface": "表構", + "readging": "おもてがまえ", + "pos": "名詞", + "pn": -0.27658 + }, + { + "surface": "どさ回り", + "readging": "どさまわり", + "pos": "名詞", + "pn": -0.276599 + }, + { + "surface": "合言葉", + "readging": "あいことば", + "pos": "名詞", + "pn": -0.27662 + }, + { + "surface": "図抜ける", + "readging": "ずぬける", + "pos": "動詞", + "pn": -0.276623 + }, + { + "surface": "振込む", + "readging": "ふりこむ", + "pos": "動詞", + "pn": -0.276638 + }, + { + "surface": "祈る", + "readging": "いのる", + "pos": "動詞", + "pn": -0.276678 + }, + { + "surface": "涜神", + "readging": "とくしん", + "pos": "名詞", + "pn": -0.276692 + }, + { + "surface": "強酸", + "readging": "きょうさん", + "pos": "名詞", + "pn": -0.276716 + }, + { + "surface": "生年", + "readging": "せいねん", + "pos": "名詞", + "pn": -0.276728 + }, + { + "surface": "宿割", + "readging": "やどわり", + "pos": "名詞", + "pn": -0.276773 + }, + { + "surface": "二本差", + "readging": "にほんざし", + "pos": "名詞", + "pn": -0.276786 + }, + { + "surface": "奥方", + "readging": "おくがた", + "pos": "名詞", + "pn": -0.27679 + }, + { + "surface": "柳眉", + "readging": "りゅうび", + "pos": "名詞", + "pn": -0.276793 + }, + { + "surface": "畜舎", + "readging": "ちくしゃ", + "pos": "名詞", + "pn": -0.276829 + }, + { + "surface": "嫁入り", + "readging": "よめいり", + "pos": "名詞", + "pn": -0.276838 + }, + { + "surface": "九谷焼", + "readging": "くたにやき", + "pos": "名詞", + "pn": -0.276884 + }, + { + "surface": "唇歯輔車", + "readging": "しんしほしゃ", + "pos": "名詞", + "pn": -0.276891 + }, + { + "surface": "国際公法", + "readging": "こくさいこうほう", + "pos": "名詞", + "pn": -0.276902 + }, + { + "surface": "荷主", + "readging": "にぬし", + "pos": "名詞", + "pn": -0.276957 + }, + { + "surface": "医院", + "readging": "いいん", + "pos": "名詞", + "pn": -0.27697 + }, + { + "surface": "ひらべったい", + "readging": "ひらべったい", + "pos": "形容詞", + "pn": -0.276972 + }, + { + "surface": "俗縁", + "readging": "ぞくえん", + "pos": "名詞", + "pn": -0.27699 + }, + { + "surface": "具合", + "readging": "ぐあい", + "pos": "名詞", + "pn": -0.276995 + }, + { + "surface": "軒下", + "readging": "のきした", + "pos": "名詞", + "pn": -0.277018 + }, + { + "surface": "横物", + "readging": "よこもの", + "pos": "名詞", + "pn": -0.277028 + }, + { + "surface": "白面", + "readging": "はくめん", + "pos": "名詞", + "pn": -0.277045 + }, + { + "surface": "汎論", + "readging": "はんろん", + "pos": "名詞", + "pn": -0.277077 + }, + { + "surface": "培う", + "readging": "つちかう", + "pos": "動詞", + "pn": -0.277079 + }, + { + "surface": "スト", + "readging": "スト", + "pos": "名詞", + "pn": -0.27708 + }, + { + "surface": "澱", + "readging": "おり", + "pos": "名詞", + "pn": -0.277091 + }, + { + "surface": "紋下", + "readging": "もんした", + "pos": "名詞", + "pn": -0.277102 + }, + { + "surface": "毒中り", + "readging": "どくあたり", + "pos": "名詞", + "pn": -0.277108 + }, + { + "surface": "日日", + "readging": "ひにち", + "pos": "名詞", + "pn": -0.277137 + }, + { + "surface": "金融市場", + "readging": "きんゆうしじょう", + "pos": "名詞", + "pn": -0.277137 + }, + { + "surface": "歌ガルタ", + "readging": "うたガルタ", + "pos": "名詞", + "pn": -0.277139 + }, + { + "surface": "焦げ付く", + "readging": "こげつく", + "pos": "動詞", + "pn": -0.277219 + }, + { + "surface": "優勝", + "readging": "ゆうしょう", + "pos": "名詞", + "pn": -0.277219 + }, + { + "surface": "舗道", + "readging": "ほどう", + "pos": "名詞", + "pn": -0.277235 + }, + { + "surface": "有田焼", + "readging": "ありたやき", + "pos": "名詞", + "pn": -0.277238 + }, + { + "surface": "骨粉", + "readging": "こっぷん", + "pos": "名詞", + "pn": -0.27724 + }, + { + "surface": "蒸気船", + "readging": "じょうきせん", + "pos": "名詞", + "pn": -0.277243 + }, + { + "surface": "リーグ戦", + "readging": "リーグせん", + "pos": "名詞", + "pn": -0.277272 + }, + { + "surface": "奥歯", + "readging": "おくば", + "pos": "名詞", + "pn": -0.277275 + }, + { + "surface": "丸干", + "readging": "まるぼし", + "pos": "名詞", + "pn": -0.277284 + }, + { + "surface": "弁理公使", + "readging": "べんりこうし", + "pos": "名詞", + "pn": -0.27729 + }, + { + "surface": "だん袋", + "readging": "だんぶくろ", + "pos": "名詞", + "pn": -0.277298 + }, + { + "surface": "孝女", + "readging": "こうじょ", + "pos": "名詞", + "pn": -0.27731 + }, + { + "surface": "呼ぶ子", + "readging": "よぶこ", + "pos": "名詞", + "pn": -0.277324 + }, + { + "surface": "クレパス", + "readging": "クレパス", + "pos": "名詞", + "pn": -0.27733 + }, + { + "surface": "余憤", + "readging": "よふん", + "pos": "名詞", + "pn": -0.277345 + }, + { + "surface": "真岡", + "readging": "もうか", + "pos": "名詞", + "pn": -0.277367 + }, + { + "surface": "書風", + "readging": "しょふう", + "pos": "名詞", + "pn": -0.277374 + }, + { + "surface": "螻蛄首", + "readging": "けらくび", + "pos": "名詞", + "pn": -0.277379 + }, + { + "surface": "地方銀行", + "readging": "ちほうぎんこう", + "pos": "名詞", + "pn": -0.27741 + }, + { + "surface": "幣物", + "readging": "へいもつ", + "pos": "名詞", + "pn": -0.277414 + }, + { + "surface": "年号", + "readging": "ねんごう", + "pos": "名詞", + "pn": -0.277425 + }, + { + "surface": "即戦力", + "readging": "そくせんりょく", + "pos": "名詞", + "pn": -0.277435 + }, + { + "surface": "縁談", + "readging": "えんだん", + "pos": "名詞", + "pn": -0.277448 + }, + { + "surface": "破局", + "readging": "はきょく", + "pos": "名詞", + "pn": -0.27745 + }, + { + "surface": "乱気流", + "readging": "らんきりゅう", + "pos": "名詞", + "pn": -0.277469 + }, + { + "surface": "率土", + "readging": "そっと", + "pos": "名詞", + "pn": -0.277477 + }, + { + "surface": "白木", + "readging": "しらき", + "pos": "名詞", + "pn": -0.277493 + }, + { + "surface": "乗越す", + "readging": "のりこす", + "pos": "動詞", + "pn": -0.277499 + }, + { + "surface": "滅却", + "readging": "めっきゃく", + "pos": "名詞", + "pn": -0.277518 + }, + { + "surface": "手馴し", + "readging": "てならし", + "pos": "名詞", + "pn": -0.277528 + }, + { + "surface": "眼目", + "readging": "がんもく", + "pos": "名詞", + "pn": -0.277532 + }, + { + "surface": "劣弱", + "readging": "れつじゃく", + "pos": "名詞", + "pn": -0.277546 + }, + { + "surface": "感慨", + "readging": "かんがい", + "pos": "名詞", + "pn": -0.277567 + }, + { + "surface": "テーマ", + "readging": "テーマ", + "pos": "名詞", + "pn": -0.277569 + }, + { + "surface": "冷酒", + "readging": "れいしゅ", + "pos": "名詞", + "pn": -0.277576 + }, + { + "surface": "後棒", + "readging": "あとぼう", + "pos": "名詞", + "pn": -0.277587 + }, + { + "surface": "アナクロニズム", + "readging": "アナクロニズム", + "pos": "名詞", + "pn": -0.277592 + }, + { + "surface": "鶏舎", + "readging": "けいしゃ", + "pos": "名詞", + "pn": -0.277598 + }, + { + "surface": "座談", + "readging": "ざだん", + "pos": "名詞", + "pn": -0.277615 + }, + { + "surface": "御酉様", + "readging": "おとりさま", + "pos": "名詞", + "pn": -0.277615 + }, + { + "surface": "コミュニケーション", + "readging": "コミュニケーション", + "pos": "名詞", + "pn": -0.277622 + }, + { + "surface": "振う", + "readging": "ふるう", + "pos": "動詞", + "pn": -0.277645 + }, + { + "surface": "水平面", + "readging": "すいへいめん", + "pos": "名詞", + "pn": -0.277654 + }, + { + "surface": "切合う", + "readging": "きりあう", + "pos": "動詞", + "pn": -0.277663 + }, + { + "surface": "抜き合せる", + "readging": "ぬきあわせる", + "pos": "動詞", + "pn": -0.277738 + }, + { + "surface": "親権", + "readging": "しんけん", + "pos": "名詞", + "pn": -0.277809 + }, + { + "surface": "スリラー", + "readging": "スリラー", + "pos": "名詞", + "pn": -0.277819 + }, + { + "surface": "ふにゃふにゃ", + "readging": "ふにゃふにゃ", + "pos": "副詞", + "pn": -0.277833 + }, + { + "surface": "ごそごそ", + "readging": "ごそごそ", + "pos": "副詞", + "pn": -0.277848 + }, + { + "surface": "菌糸", + "readging": "きんし", + "pos": "名詞", + "pn": -0.277849 + }, + { + "surface": "残痕", + "readging": "ざんこん", + "pos": "名詞", + "pn": -0.277852 + }, + { + "surface": "降灰", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.27786 + }, + { + "surface": "返付", + "readging": "へんぷ", + "pos": "名詞", + "pn": -0.277898 + }, + { + "surface": "弾着点", + "readging": "だんちゃくてん", + "pos": "名詞", + "pn": -0.277912 + }, + { + "surface": "夏下冬上", + "readging": "かかとうじょう", + "pos": "名詞", + "pn": -0.277913 + }, + { + "surface": "族制", + "readging": "ぞくせい", + "pos": "名詞", + "pn": -0.277927 + }, + { + "surface": "節気", + "readging": "せっき", + "pos": "名詞", + "pn": -0.277927 + }, + { + "surface": "中許", + "readging": "なかゆるし", + "pos": "名詞", + "pn": -0.277929 + }, + { + "surface": "弾薬", + "readging": "だんやく", + "pos": "名詞", + "pn": -0.277943 + }, + { + "surface": "笹鳴き", + "readging": "ささなき", + "pos": "名詞", + "pn": -0.277943 + }, + { + "surface": "癒着", + "readging": "ゆちゃく", + "pos": "名詞", + "pn": -0.277954 + }, + { + "surface": "情報科学", + "readging": "じょうほうかがく", + "pos": "名詞", + "pn": -0.277958 + }, + { + "surface": "緑野", + "readging": "りょくや", + "pos": "名詞", + "pn": -0.277959 + }, + { + "surface": "直叙", + "readging": "ちょくじょ", + "pos": "名詞", + "pn": -0.27796 + }, + { + "surface": "庁", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.277992 + }, + { + "surface": "盆暮", + "readging": "ぼんくれ", + "pos": "名詞", + "pn": -0.278018 + }, + { + "surface": "後指", + "readging": "うしろゆび", + "pos": "名詞", + "pn": -0.278018 + }, + { + "surface": "水先", + "readging": "みずさき", + "pos": "名詞", + "pn": -0.278027 + }, + { + "surface": "主任", + "readging": "しゅにん", + "pos": "名詞", + "pn": -0.278044 + }, + { + "surface": "省令", + "readging": "しょうれい", + "pos": "名詞", + "pn": -0.278057 + }, + { + "surface": "驟雨", + "readging": "しゅうう", + "pos": "名詞", + "pn": -0.278151 + }, + { + "surface": "菜食", + "readging": "さいしょく", + "pos": "名詞", + "pn": -0.278163 + }, + { + "surface": "弛張", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.278176 + }, + { + "surface": "出自", + "readging": "しゅつじ", + "pos": "名詞", + "pn": -0.278178 + }, + { + "surface": "JIS", + "readging": "ジス", + "pos": "名詞", + "pn": -0.278184 + }, + { + "surface": "深山", + "readging": "しんざん", + "pos": "名詞", + "pn": -0.278209 + }, + { + "surface": "上書", + "readging": "じょうしょ", + "pos": "名詞", + "pn": -0.278213 + }, + { + "surface": "楔形文字", + "readging": "せっけいもんじ", + "pos": "名詞", + "pn": -0.278226 + }, + { + "surface": "向い合う", + "readging": "むかいあう", + "pos": "動詞", + "pn": -0.278263 + }, + { + "surface": "漉返し", + "readging": "すきかえし", + "pos": "名詞", + "pn": -0.278271 + }, + { + "surface": "語調", + "readging": "ごちょう", + "pos": "名詞", + "pn": -0.278274 + }, + { + "surface": "精度", + "readging": "せいど", + "pos": "名詞", + "pn": -0.278295 + }, + { + "surface": "単複", + "readging": "たんぷく", + "pos": "名詞", + "pn": -0.278301 + }, + { + "surface": "弁理士", + "readging": "べんりし", + "pos": "名詞", + "pn": -0.27831 + }, + { + "surface": "格技", + "readging": "かくぎ", + "pos": "名詞", + "pn": -0.278316 + }, + { + "surface": "肝心", + "readging": "かんじん", + "pos": "名詞", + "pn": -0.278325 + }, + { + "surface": "プレー", + "readging": "プレーオフ", + "pos": "名詞", + "pn": -0.27833 + }, + { + "surface": "美容", + "readging": "びよう", + "pos": "名詞", + "pn": -0.278332 + }, + { + "surface": "ピクル", + "readging": "ピクル", + "pos": "名詞", + "pn": -0.278338 + }, + { + "surface": "領収", + "readging": "りょうしゅう", + "pos": "名詞", + "pn": -0.278349 + }, + { + "surface": "弾劾裁判所", + "readging": "だんがいさいばんしょ", + "pos": "名詞", + "pn": -0.278352 + }, + { + "surface": "洛", + "readging": "らく", + "pos": "名詞", + "pn": -0.278363 + }, + { + "surface": "ノスタルジア", + "readging": "ノスタルジア", + "pos": "名詞", + "pn": -0.278366 + }, + { + "surface": "林野", + "readging": "りんや", + "pos": "名詞", + "pn": -0.278375 + }, + { + "surface": "喜怒", + "readging": "きど", + "pos": "名詞", + "pn": -0.278375 + }, + { + "surface": "や", + "readging": "や", + "pos": "名詞", + "pn": -0.278384 + }, + { + "surface": "願立て", + "readging": "がんだて", + "pos": "名詞", + "pn": -0.278407 + }, + { + "surface": "コスモポリタン", + "readging": "コスモポリタン", + "pos": "名詞", + "pn": -0.278425 + }, + { + "surface": "水平線", + "readging": "すいへいせん", + "pos": "名詞", + "pn": -0.278439 + }, + { + "surface": "ボギー", + "readging": "ボギー", + "pos": "名詞", + "pn": -0.278447 + }, + { + "surface": "ほんだわら", + "readging": "ほんだわら", + "pos": "名詞", + "pn": -0.278453 + }, + { + "surface": "国際私法", + "readging": "こくさいしほう", + "pos": "名詞", + "pn": -0.278455 + }, + { + "surface": "力", + "readging": "りき", + "pos": "名詞", + "pn": -0.278463 + }, + { + "surface": "臨海学校", + "readging": "りんかいがっこう", + "pos": "名詞", + "pn": -0.278473 + }, + { + "surface": "鉄心", + "readging": "てっしん", + "pos": "名詞", + "pn": -0.278491 + }, + { + "surface": "鋼材", + "readging": "こうざい", + "pos": "名詞", + "pn": -0.2785 + }, + { + "surface": "血止め", + "readging": "ちどめ", + "pos": "名詞", + "pn": -0.278508 + }, + { + "surface": "涙金", + "readging": "なみだきん", + "pos": "名詞", + "pn": -0.278524 + }, + { + "surface": "エレクトロニクス", + "readging": "エレクトロニクス", + "pos": "名詞", + "pn": -0.278539 + }, + { + "surface": "折れ合う", + "readging": "おれあう", + "pos": "動詞", + "pn": -0.278552 + }, + { + "surface": "箙", + "readging": "えびら", + "pos": "名詞", + "pn": -0.278561 + }, + { + "surface": "老婆", + "readging": "ろうば", + "pos": "名詞", + "pn": -0.278565 + }, + { + "surface": "民", + "readging": "みん", + "pos": "名詞", + "pn": -0.278566 + }, + { + "surface": "層状", + "readging": "そうじょう", + "pos": "名詞", + "pn": -0.27858 + }, + { + "surface": "墨染", + "readging": "すみぞめ", + "pos": "名詞", + "pn": -0.278589 + }, + { + "surface": "板碑", + "readging": "いたび", + "pos": "名詞", + "pn": -0.278593 + }, + { + "surface": "荘厳", + "readging": "しょうごん", + "pos": "名詞", + "pn": -0.278597 + }, + { + "surface": "拝殿", + "readging": "はいでん", + "pos": "名詞", + "pn": -0.278616 + }, + { + "surface": "騎手", + "readging": "きしゅ", + "pos": "名詞", + "pn": -0.278628 + }, + { + "surface": "経帷子", + "readging": "きょうかたびら", + "pos": "名詞", + "pn": -0.278634 + }, + { + "surface": "神典", + "readging": "しんてん", + "pos": "名詞", + "pn": -0.278636 + }, + { + "surface": "邪欲", + "readging": "じゃよく", + "pos": "名詞", + "pn": -0.278652 + }, + { + "surface": "お代", + "readging": "おだい", + "pos": "名詞", + "pn": -0.278687 + }, + { + "surface": "歌舞", + "readging": "かぶ", + "pos": "名詞", + "pn": -0.278691 + }, + { + "surface": "鉛槧", + "readging": "えんざん", + "pos": "名詞", + "pn": -0.278691 + }, + { + "surface": "脊梁", + "readging": "せきりょう", + "pos": "名詞", + "pn": -0.278696 + }, + { + "surface": "歴代", + "readging": "れきだい", + "pos": "名詞", + "pn": -0.278716 + }, + { + "surface": "簡易保険", + "readging": "かんいほけん", + "pos": "名詞", + "pn": -0.278729 + }, + { + "surface": "麦粉", + "readging": "むぎこ", + "pos": "名詞", + "pn": -0.278733 + }, + { + "surface": "選り分ける", + "readging": "えりわける", + "pos": "動詞", + "pn": -0.278748 + }, + { + "surface": "盛花", + "readging": "もりばな", + "pos": "名詞", + "pn": -0.278759 + }, + { + "surface": "立会", + "readging": "たちあい", + "pos": "名詞", + "pn": -0.278795 + }, + { + "surface": "前代未聞", + "readging": "ぜんだいみもん", + "pos": "名詞", + "pn": -0.278829 + }, + { + "surface": "油槽", + "readging": "ゆそう", + "pos": "名詞", + "pn": -0.278833 + }, + { + "surface": "夢合せ", + "readging": "ゆめあわせ", + "pos": "名詞", + "pn": -0.278835 + }, + { + "surface": "悪酔", + "readging": "わるよい", + "pos": "名詞", + "pn": -0.278846 + }, + { + "surface": "せせらぎ", + "readging": "せせらぎ", + "pos": "名詞", + "pn": -0.27885 + }, + { + "surface": "五感", + "readging": "ごかん", + "pos": "名詞", + "pn": -0.278872 + }, + { + "surface": "冷罨法", + "readging": "れいあんぽう", + "pos": "名詞", + "pn": -0.278875 + }, + { + "surface": "点在", + "readging": "てんざい", + "pos": "名詞", + "pn": -0.278875 + }, + { + "surface": "皇国", + "readging": "こうこく", + "pos": "名詞", + "pn": -0.278884 + }, + { + "surface": "ゲゼルシャフト", + "readging": "ゲゼルシャフト", + "pos": "名詞", + "pn": -0.278897 + }, + { + "surface": "ベータ線", + "readging": "ベータせん", + "pos": "名詞", + "pn": -0.278916 + }, + { + "surface": "裸麦", + "readging": "はだかむぎ", + "pos": "名詞", + "pn": -0.278924 + }, + { + "surface": "鶉豆", + "readging": "うずらまめ", + "pos": "名詞", + "pn": -0.27894 + }, + { + "surface": "文身", + "readging": "ぶんしん", + "pos": "名詞", + "pn": -0.278962 + }, + { + "surface": "姓名判断", + "readging": "せいめいはんだん", + "pos": "名詞", + "pn": -0.278969 + }, + { + "surface": "入朱", + "readging": "にゅうしゅ", + "pos": "名詞", + "pn": -0.278972 + }, + { + "surface": "秦", + "readging": "しん", + "pos": "名詞", + "pn": -0.279039 + }, + { + "surface": "ワーク ステーション", + "readging": "ワーク ステーション", + "pos": "名詞", + "pn": -0.279067 + }, + { + "surface": "ダイナマイト", + "readging": "ダイナマイト", + "pos": "名詞", + "pn": -0.279098 + }, + { + "surface": "風貌", + "readging": "ふうぼう", + "pos": "名詞", + "pn": -0.279099 + }, + { + "surface": "夜通し", + "readging": "よどおし", + "pos": "副詞", + "pn": -0.279116 + }, + { + "surface": "熱気球", + "readging": "ねつききゅう", + "pos": "名詞", + "pn": -0.279126 + }, + { + "surface": "パーツ", + "readging": "パーツ", + "pos": "名詞", + "pn": -0.279141 + }, + { + "surface": "作土", + "readging": "さくど", + "pos": "名詞", + "pn": -0.279151 + }, + { + "surface": "役柄", + "readging": "やくがら", + "pos": "名詞", + "pn": -0.279163 + }, + { + "surface": "軍籍", + "readging": "ぐんせき", + "pos": "名詞", + "pn": -0.279175 + }, + { + "surface": "索引", + "readging": "さくいん", + "pos": "名詞", + "pn": -0.279181 + }, + { + "surface": "牧人", + "readging": "ぼくじん", + "pos": "名詞", + "pn": -0.279189 + }, + { + "surface": "替紋", + "readging": "かえもん", + "pos": "名詞", + "pn": -0.279223 + }, + { + "surface": "交趾", + "readging": "コーチン", + "pos": "名詞", + "pn": -0.279235 + }, + { + "surface": "狂者", + "readging": "きょうしゃ", + "pos": "名詞", + "pn": -0.279236 + }, + { + "surface": "主権", + "readging": "しゅけん", + "pos": "名詞", + "pn": -0.279246 + }, + { + "surface": "反意語", + "readging": "はんいご", + "pos": "名詞", + "pn": -0.279253 + }, + { + "surface": "玉の緒", + "readging": "たまのお", + "pos": "名詞", + "pn": -0.279263 + }, + { + "surface": "沈鐘", + "readging": "ちんしょう", + "pos": "名詞", + "pn": -0.279275 + }, + { + "surface": "抵抗器", + "readging": "ていこうき", + "pos": "名詞", + "pn": -0.279285 + }, + { + "surface": "ブレーン", + "readging": "ブレーントラスト", + "pos": "名詞", + "pn": -0.279294 + }, + { + "surface": "玄関子", + "readging": "げんかんし", + "pos": "名詞", + "pn": -0.27931 + }, + { + "surface": "放る", + "readging": "ひる", + "pos": "動詞", + "pn": -0.279312 + }, + { + "surface": "感知", + "readging": "かんち", + "pos": "名詞", + "pn": -0.279316 + }, + { + "surface": "お預け", + "readging": "おあずけ", + "pos": "名詞", + "pn": -0.279335 + }, + { + "surface": "フレックスタイム", + "readging": "フレックスタイム", + "pos": "名詞", + "pn": -0.27934 + }, + { + "surface": "発動機", + "readging": "はつどうき", + "pos": "名詞", + "pn": -0.279354 + }, + { + "surface": "検地", + "readging": "けんち", + "pos": "名詞", + "pn": -0.279369 + }, + { + "surface": "そそける", + "readging": "そそける", + "pos": "動詞", + "pn": -0.279381 + }, + { + "surface": "荒磯", + "readging": "あらいそ", + "pos": "名詞", + "pn": -0.279388 + }, + { + "surface": "株券", + "readging": "かぶけん", + "pos": "名詞", + "pn": -0.279409 + }, + { + "surface": "押釦", + "readging": "おしボタン", + "pos": "名詞", + "pn": -0.279413 + }, + { + "surface": "肉汁", + "readging": "にくじゅう", + "pos": "名詞", + "pn": -0.279425 + }, + { + "surface": "水足", + "readging": "みずあし", + "pos": "名詞", + "pn": -0.279427 + }, + { + "surface": "パラチオン", + "readging": "パラチオン", + "pos": "名詞", + "pn": -0.279431 + }, + { + "surface": "外線", + "readging": "がいせん", + "pos": "名詞", + "pn": -0.279446 + }, + { + "surface": "夕飯", + "readging": "ゆうはん", + "pos": "名詞", + "pn": -0.279451 + }, + { + "surface": "重度", + "readging": "じゅうど", + "pos": "名詞", + "pn": -0.279473 + }, + { + "surface": "大紋", + "readging": "だいもん", + "pos": "名詞", + "pn": -0.279478 + }, + { + "surface": "耽る", + "readging": "ふける", + "pos": "動詞", + "pn": -0.27948 + }, + { + "surface": "償金", + "readging": "しょうきん", + "pos": "名詞", + "pn": -0.279492 + }, + { + "surface": "年譜", + "readging": "ねんぷ", + "pos": "名詞", + "pn": -0.279496 + }, + { + "surface": "引け値", + "readging": "ひけね", + "pos": "名詞", + "pn": -0.279505 + }, + { + "surface": "反旗", + "readging": "はんき", + "pos": "名詞", + "pn": -0.279512 + }, + { + "surface": "文集", + "readging": "ぶんしゅう", + "pos": "名詞", + "pn": -0.279518 + }, + { + "surface": "塞ぎ", + "readging": "ふさぎ", + "pos": "名詞", + "pn": -0.279527 + }, + { + "surface": "水車", + "readging": "すいしゃ", + "pos": "名詞", + "pn": -0.279531 + }, + { + "surface": "裁決", + "readging": "さいけつ", + "pos": "名詞", + "pn": -0.279562 + }, + { + "surface": "縫糸", + "readging": "ぬいいと", + "pos": "名詞", + "pn": -0.279571 + }, + { + "surface": "長汀曲浦", + "readging": "ちょうていきょくほ", + "pos": "名詞", + "pn": -0.279581 + }, + { + "surface": "亜寒帯", + "readging": "あかんたい", + "pos": "名詞", + "pn": -0.279591 + }, + { + "surface": "角隠し", + "readging": "つのかくし", + "pos": "名詞", + "pn": -0.279602 + }, + { + "surface": "末始終", + "readging": "すえしじゅう", + "pos": "副詞", + "pn": -0.279602 + }, + { + "surface": "本営", + "readging": "ほんえい", + "pos": "名詞", + "pn": -0.279605 + }, + { + "surface": "変圧器", + "readging": "へんあつき", + "pos": "名詞", + "pn": -0.279618 + }, + { + "surface": "決め手", + "readging": "きめて", + "pos": "名詞", + "pn": -0.27966 + }, + { + "surface": "月刊", + "readging": "げっかん", + "pos": "名詞", + "pn": -0.279672 + }, + { + "surface": "分校", + "readging": "ぶんこう", + "pos": "名詞", + "pn": -0.279678 + }, + { + "surface": "呼び鈴", + "readging": "よびりん", + "pos": "名詞", + "pn": -0.27969 + }, + { + "surface": "群棲", + "readging": "ぐんせい", + "pos": "名詞", + "pn": -0.279738 + }, + { + "surface": "八面玲瓏", + "readging": "はちめんれいろう", + "pos": "名詞", + "pn": -0.279763 + }, + { + "surface": "金鉄", + "readging": "きんてつ", + "pos": "名詞", + "pn": -0.279768 + }, + { + "surface": "火山脈", + "readging": "かざんみゃく", + "pos": "名詞", + "pn": -0.279781 + }, + { + "surface": "天動説", + "readging": "てんどうせつ", + "pos": "名詞", + "pn": -0.279806 + }, + { + "surface": "カフェ", + "readging": "カフェテラス", + "pos": "名詞", + "pn": -0.279813 + }, + { + "surface": "火除", + "readging": "ひよけ", + "pos": "名詞", + "pn": -0.279827 + }, + { + "surface": "プレハブ", + "readging": "プレハブ", + "pos": "名詞", + "pn": -0.279864 + }, + { + "surface": "普", + "readging": "ふ", + "pos": "名詞", + "pn": -0.279865 + }, + { + "surface": "口任せ", + "readging": "くちまかせ", + "pos": "名詞", + "pn": -0.279866 + }, + { + "surface": "ダーク チェンジ", + "readging": "ダーク チェンジ", + "pos": "名詞", + "pn": -0.279886 + }, + { + "surface": "精算", + "readging": "せいさん", + "pos": "名詞", + "pn": -0.279894 + }, + { + "surface": "神意", + "readging": "しんい", + "pos": "名詞", + "pn": -0.279932 + }, + { + "surface": "ガール", + "readging": "ガールスカウト", + "pos": "名詞", + "pn": -0.279947 + }, + { + "surface": "背教", + "readging": "はいきょう", + "pos": "名詞", + "pn": -0.279947 + }, + { + "surface": "カウンセリング", + "readging": "カウンセリング", + "pos": "名詞", + "pn": -0.279951 + }, + { + "surface": "公衆電話", + "readging": "こうしゅうでんわ", + "pos": "名詞", + "pn": -0.279955 + }, + { + "surface": "敷瓦", + "readging": "しきがわら", + "pos": "名詞", + "pn": -0.279957 + }, + { + "surface": "貧乏神", + "readging": "びんぼうがみ", + "pos": "名詞", + "pn": -0.27999 + }, + { + "surface": "店立て", + "readging": "たなだて", + "pos": "名詞", + "pn": -0.28003 + }, + { + "surface": "余程", + "readging": "よほど", + "pos": "副詞", + "pn": -0.280032 + }, + { + "surface": "縋り付く", + "readging": "すがりつく", + "pos": "動詞", + "pn": -0.280032 + }, + { + "surface": "刊本", + "readging": "かんぽん", + "pos": "名詞", + "pn": -0.280039 + }, + { + "surface": "批点", + "readging": "ひてん", + "pos": "名詞", + "pn": -0.280083 + }, + { + "surface": "四目錐", + "readging": "よつめぎり", + "pos": "名詞", + "pn": -0.280087 + }, + { + "surface": "玉子綴じ", + "readging": "たまごとじ", + "pos": "名詞", + "pn": -0.280104 + }, + { + "surface": "乗組員", + "readging": "のりくみいん", + "pos": "名詞", + "pn": -0.280176 + }, + { + "surface": "アルバイト", + "readging": "アルバイト", + "pos": "名詞", + "pn": -0.280177 + }, + { + "surface": "畢竟", + "readging": "ひっきょう", + "pos": "副詞", + "pn": -0.28018 + }, + { + "surface": "迷子", + "readging": "まいご", + "pos": "名詞", + "pn": -0.280184 + }, + { + "surface": "壁書", + "readging": "へきしょ", + "pos": "名詞", + "pn": -0.280186 + }, + { + "surface": "在学", + "readging": "ざいがく", + "pos": "名詞", + "pn": -0.280194 + }, + { + "surface": "バイアスロン", + "readging": "バイアスロン", + "pos": "名詞", + "pn": -0.280201 + }, + { + "surface": "提唱", + "readging": "ていしょう", + "pos": "名詞", + "pn": -0.280218 + }, + { + "surface": "平らぐ", + "readging": "たいらぐ", + "pos": "動詞", + "pn": -0.280224 + }, + { + "surface": "低音", + "readging": "ていおん", + "pos": "名詞", + "pn": -0.280226 + }, + { + "surface": "愁訴", + "readging": "しゅうそ", + "pos": "名詞", + "pn": -0.28023 + }, + { + "surface": "租借", + "readging": "そしゃく", + "pos": "名詞", + "pn": -0.28024 + }, + { + "surface": "アップ", + "readging": "アップ", + "pos": "名詞", + "pn": -0.280242 + }, + { + "surface": "ゲル", + "readging": "ゲル", + "pos": "名詞", + "pn": -0.280281 + }, + { + "surface": "恒常", + "readging": "こうじょう", + "pos": "名詞", + "pn": -0.280287 + }, + { + "surface": "主審", + "readging": "しゅしん", + "pos": "名詞", + "pn": -0.280288 + }, + { + "surface": "肉薄", + "readging": "にくはく", + "pos": "名詞", + "pn": -0.280299 + }, + { + "surface": "混血児", + "readging": "こんけつじ", + "pos": "名詞", + "pn": -0.280328 + }, + { + "surface": "遠心分離機", + "readging": "えんしんぶんりき", + "pos": "名詞", + "pn": -0.280329 + }, + { + "surface": "聘する", + "readging": "へいする", + "pos": "動詞", + "pn": -0.280343 + }, + { + "surface": "入貢", + "readging": "にゅうこう", + "pos": "名詞", + "pn": -0.280351 + }, + { + "surface": "一男", + "readging": "いちなん", + "pos": "名詞", + "pn": -0.280369 + }, + { + "surface": "役回り", + "readging": "やくまわり", + "pos": "名詞", + "pn": -0.280393 + }, + { + "surface": "御用納め", + "readging": "ごようおさめ", + "pos": "名詞", + "pn": -0.280396 + }, + { + "surface": "食靠れ", + "readging": "しょくもたれ", + "pos": "名詞", + "pn": -0.2804 + }, + { + "surface": "ガーデン", + "readging": "ガーデン", + "pos": "名詞", + "pn": -0.280418 + }, + { + "surface": "擁立", + "readging": "ようりつ", + "pos": "名詞", + "pn": -0.280425 + }, + { + "surface": "メーン", + "readging": "メーンエベント", + "pos": "名詞", + "pn": -0.280425 + }, + { + "surface": "追究", + "readging": "ついきゅう", + "pos": "名詞", + "pn": -0.280438 + }, + { + "surface": "ワン ポイント", + "readging": "ワン ポイント", + "pos": "名詞", + "pn": -0.280489 + }, + { + "surface": "遇する", + "readging": "ぐうする", + "pos": "動詞", + "pn": -0.2805 + }, + { + "surface": "接眼レンズ", + "readging": "せつがんレンズ", + "pos": "名詞", + "pn": -0.280503 + }, + { + "surface": "ブイヨン", + "readging": "ブイヨン", + "pos": "名詞", + "pn": -0.280517 + }, + { + "surface": "得意", + "readging": "とくい", + "pos": "名詞", + "pn": -0.280546 + }, + { + "surface": "手榴弾", + "readging": "てりゅうだん", + "pos": "名詞", + "pn": -0.280561 + }, + { + "surface": "認定", + "readging": "にんてい", + "pos": "名詞", + "pn": -0.280586 + }, + { + "surface": "単行法", + "readging": "たんこうほう", + "pos": "名詞", + "pn": -0.2806 + }, + { + "surface": "先駆ける", + "readging": "さきがける", + "pos": "動詞", + "pn": -0.28061 + }, + { + "surface": "直情", + "readging": "ちょくじょう", + "pos": "名詞", + "pn": -0.280611 + }, + { + "surface": "シンデレラ", + "readging": "シンデレラ", + "pos": "名詞", + "pn": -0.280624 + }, + { + "surface": "楊弓", + "readging": "ようきゅう", + "pos": "名詞", + "pn": -0.280626 + }, + { + "surface": "食い初め", + "readging": "くいぞめ", + "pos": "名詞", + "pn": -0.280637 + }, + { + "surface": "腸詰", + "readging": "ちょうづめ", + "pos": "名詞", + "pn": -0.280643 + }, + { + "surface": "はぐらかす", + "readging": "はぐらかす", + "pos": "動詞", + "pn": -0.280646 + }, + { + "surface": "スライス", + "readging": "スライス", + "pos": "名詞", + "pn": -0.280681 + }, + { + "surface": "探検", + "readging": "たんけん", + "pos": "名詞", + "pn": -0.280703 + }, + { + "surface": "吹雪く", + "readging": "ふぶく", + "pos": "動詞", + "pn": -0.280704 + }, + { + "surface": "段段畑", + "readging": "だんだんばたけ", + "pos": "名詞", + "pn": -0.280718 + }, + { + "surface": "週番", + "readging": "しゅうばん", + "pos": "名詞", + "pn": -0.280721 + }, + { + "surface": "作者", + "readging": "さくしゃ", + "pos": "名詞", + "pn": -0.280723 + }, + { + "surface": "遺族", + "readging": "いぞく", + "pos": "名詞", + "pn": -0.280738 + }, + { + "surface": "くすむ", + "readging": "くすむ", + "pos": "動詞", + "pn": -0.280741 + }, + { + "surface": "珊瑚樹", + "readging": "さんごじゅ", + "pos": "名詞", + "pn": -0.280748 + }, + { + "surface": "光年", + "readging": "こうねん", + "pos": "名詞", + "pn": -0.280763 + }, + { + "surface": "軸木", + "readging": "じくぎ", + "pos": "名詞", + "pn": -0.280781 + }, + { + "surface": "利腕", + "readging": "ききうで", + "pos": "名詞", + "pn": -0.280784 + }, + { + "surface": "ちゃんと", + "readging": "ちゃんと", + "pos": "副詞", + "pn": -0.280786 + }, + { + "surface": "向う隣", + "readging": "むこうどなり", + "pos": "名詞", + "pn": -0.280797 + }, + { + "surface": "申聞ける", + "readging": "もうしきける", + "pos": "動詞", + "pn": -0.280819 + }, + { + "surface": "監事", + "readging": "かんじ", + "pos": "名詞", + "pn": -0.280833 + }, + { + "surface": "僕婢", + "readging": "ぼくひ", + "pos": "名詞", + "pn": -0.280839 + }, + { + "surface": "未亡人", + "readging": "みぼうじん", + "pos": "名詞", + "pn": -0.280845 + }, + { + "surface": "摘心", + "readging": "てきしん", + "pos": "名詞", + "pn": -0.280858 + }, + { + "surface": "九天", + "readging": "きゅうてん", + "pos": "名詞", + "pn": -0.280868 + }, + { + "surface": "蒼生", + "readging": "そうせい", + "pos": "名詞", + "pn": -0.280884 + }, + { + "surface": "反軍", + "readging": "はんぐん", + "pos": "名詞", + "pn": -0.280889 + }, + { + "surface": "受合う", + "readging": "うけあう", + "pos": "動詞", + "pn": -0.280889 + }, + { + "surface": "脱水", + "readging": "だっすい", + "pos": "名詞", + "pn": -0.280976 + }, + { + "surface": "治安", + "readging": "ちあん", + "pos": "名詞", + "pn": -0.280993 + }, + { + "surface": "熱度", + "readging": "ねつど", + "pos": "名詞", + "pn": -0.280997 + }, + { + "surface": "絨毛", + "readging": "じゅうもう", + "pos": "名詞", + "pn": -0.281022 + }, + { + "surface": "独参湯", + "readging": "どくじんとう", + "pos": "名詞", + "pn": -0.281023 + }, + { + "surface": "指揮棒", + "readging": "しきぼう", + "pos": "名詞", + "pn": -0.281026 + }, + { + "surface": "ざら場", + "readging": "ざらば", + "pos": "名詞", + "pn": -0.281028 + }, + { + "surface": "きゃあきゃあ", + "readging": "きゃあきゃあ", + "pos": "副詞", + "pn": -0.281028 + }, + { + "surface": "通学", + "readging": "つうがく", + "pos": "名詞", + "pn": -0.281048 + }, + { + "surface": "酒焼け", + "readging": "さかやけ", + "pos": "名詞", + "pn": -0.281059 + }, + { + "surface": "変遷", + "readging": "へんせん", + "pos": "名詞", + "pn": -0.281067 + }, + { + "surface": "別封", + "readging": "べっぷう", + "pos": "名詞", + "pn": -0.281107 + }, + { + "surface": "スポット", + "readging": "スポットアナウンス", + "pos": "名詞", + "pn": -0.281126 + }, + { + "surface": "乱戦", + "readging": "らんせん", + "pos": "名詞", + "pn": -0.281143 + }, + { + "surface": "チータ", + "readging": "チータ", + "pos": "名詞", + "pn": -0.281158 + }, + { + "surface": "レイプ", + "readging": "レイプ", + "pos": "名詞", + "pn": -0.281162 + }, + { + "surface": "アンサンブル", + "readging": "アンサンブル", + "pos": "名詞", + "pn": -0.281163 + }, + { + "surface": "胞衣", + "readging": "えな", + "pos": "名詞", + "pn": -0.281186 + }, + { + "surface": "被り物", + "readging": "かぶりもの", + "pos": "名詞", + "pn": -0.281191 + }, + { + "surface": "関が原", + "readging": "せきがはら", + "pos": "名詞", + "pn": -0.281204 + }, + { + "surface": "勧工場", + "readging": "かんこうば", + "pos": "名詞", + "pn": -0.281209 + }, + { + "surface": "石室", + "readging": "いしむろ", + "pos": "名詞", + "pn": -0.281226 + }, + { + "surface": "固練り", + "readging": "かたねり", + "pos": "名詞", + "pn": -0.281232 + }, + { + "surface": "炭層", + "readging": "たんそう", + "pos": "名詞", + "pn": -0.281233 + }, + { + "surface": "収録", + "readging": "しゅうろく", + "pos": "名詞", + "pn": -0.281263 + }, + { + "surface": "禁断", + "readging": "きんだん", + "pos": "名詞", + "pn": -0.281277 + }, + { + "surface": "ジャーナリスト", + "readging": "ジャーナリスト", + "pos": "名詞", + "pn": -0.281289 + }, + { + "surface": "政談", + "readging": "せいだん", + "pos": "名詞", + "pn": -0.28129 + }, + { + "surface": "鴨居", + "readging": "かもい", + "pos": "名詞", + "pn": -0.28129 + }, + { + "surface": "唐津焼", + "readging": "からつやき", + "pos": "名詞", + "pn": -0.281292 + }, + { + "surface": "毒消し", + "readging": "どくけし", + "pos": "名詞", + "pn": -0.281303 + }, + { + "surface": "水域", + "readging": "すいいき", + "pos": "名詞", + "pn": -0.281317 + }, + { + "surface": "定置漁業", + "readging": "ていちぎょぎょう", + "pos": "名詞", + "pn": -0.281327 + }, + { + "surface": "上蔟", + "readging": "じょうぞく", + "pos": "名詞", + "pn": -0.281328 + }, + { + "surface": "珪石", + "readging": "けいせき", + "pos": "名詞", + "pn": -0.281337 + }, + { + "surface": "ステージ", + "readging": "ステージ", + "pos": "名詞", + "pn": -0.281366 + }, + { + "surface": "御不承", + "readging": "ごふしょう", + "pos": "名詞", + "pn": -0.281379 + }, + { + "surface": "極刑", + "readging": "きょっけい", + "pos": "名詞", + "pn": -0.281388 + }, + { + "surface": "レーン ハット", + "readging": "レーン ハット", + "pos": "名詞", + "pn": -0.281388 + }, + { + "surface": "洋梨", + "readging": "ようなし", + "pos": "名詞", + "pn": -0.281392 + }, + { + "surface": "甘党", + "readging": "あまとう", + "pos": "名詞", + "pn": -0.281403 + }, + { + "surface": "雑穀", + "readging": "ざっこく", + "pos": "名詞", + "pn": -0.28142 + }, + { + "surface": "奉行", + "readging": "ぶぎょう", + "pos": "名詞", + "pn": -0.281435 + }, + { + "surface": "インポテンツ", + "readging": "インポテンツ", + "pos": "名詞", + "pn": -0.281438 + }, + { + "surface": "合流", + "readging": "ごうりゅう", + "pos": "名詞", + "pn": -0.281443 + }, + { + "surface": "白魚", + "readging": "しらうお", + "pos": "名詞", + "pn": -0.281449 + }, + { + "surface": "指相撲", + "readging": "ゆびずもう", + "pos": "名詞", + "pn": -0.281456 + }, + { + "surface": "通信員", + "readging": "つうしんいん", + "pos": "名詞", + "pn": -0.281456 + }, + { + "surface": "喘鳴", + "readging": "ぜんめい", + "pos": "名詞", + "pn": -0.281459 + }, + { + "surface": "氷菓", + "readging": "ひょうか", + "pos": "名詞", + "pn": -0.281465 + }, + { + "surface": "蛍光板", + "readging": "けいこうばん", + "pos": "名詞", + "pn": -0.281468 + }, + { + "surface": "掃射", + "readging": "そうしゃ", + "pos": "名詞", + "pn": -0.281491 + }, + { + "surface": "悪場", + "readging": "わるば", + "pos": "名詞", + "pn": -0.281511 + }, + { + "surface": "朦朧", + "readging": "もうろう", + "pos": "名詞", + "pn": -0.281539 + }, + { + "surface": "越冬", + "readging": "えっとう", + "pos": "名詞", + "pn": -0.281545 + }, + { + "surface": "浮木", + "readging": "ふぼく", + "pos": "名詞", + "pn": -0.281551 + }, + { + "surface": "雪洞", + "readging": "ぼんぼり", + "pos": "名詞", + "pn": -0.281596 + }, + { + "surface": "全書", + "readging": "ぜんしょ", + "pos": "名詞", + "pn": -0.281605 + }, + { + "surface": "老廃", + "readging": "ろうはい", + "pos": "名詞", + "pn": -0.281607 + }, + { + "surface": "流石", + "readging": "さすが", + "pos": "副詞", + "pn": -0.281609 + }, + { + "surface": "目安", + "readging": "めやす", + "pos": "名詞", + "pn": -0.281625 + }, + { + "surface": "騎射", + "readging": "きしゃ", + "pos": "名詞", + "pn": -0.281631 + }, + { + "surface": "字彙", + "readging": "じい", + "pos": "名詞", + "pn": -0.281635 + }, + { + "surface": "申請", + "readging": "しんせい", + "pos": "名詞", + "pn": -0.281644 + }, + { + "surface": "モス", + "readging": "モス", + "pos": "名詞", + "pn": -0.281657 + }, + { + "surface": "上空", + "readging": "じょうくう", + "pos": "名詞", + "pn": -0.281673 + }, + { + "surface": "草", + "readging": "くさ", + "pos": "名詞", + "pn": -0.281688 + }, + { + "surface": "陸奥", + "readging": "みちのく", + "pos": "名詞", + "pn": -0.281694 + }, + { + "surface": "正課", + "readging": "せいか", + "pos": "名詞", + "pn": -0.281695 + }, + { + "surface": "確言", + "readging": "かくげん", + "pos": "名詞", + "pn": -0.281717 + }, + { + "surface": "座浴", + "readging": "ざよく", + "pos": "名詞", + "pn": -0.281747 + }, + { + "surface": "ハイテク", + "readging": "ハイテク", + "pos": "名詞", + "pn": -0.281768 + }, + { + "surface": "倍", + "readging": "ばい", + "pos": "名詞", + "pn": -0.281791 + }, + { + "surface": "有難迷惑", + "readging": "ありがためいわく", + "pos": "名詞", + "pn": -0.281798 + }, + { + "surface": "倉渡し", + "readging": "くらわたし", + "pos": "名詞", + "pn": -0.281812 + }, + { + "surface": "鹿砦", + "readging": "ろくさい", + "pos": "名詞", + "pn": -0.281822 + }, + { + "surface": "破瓜", + "readging": "はか", + "pos": "名詞", + "pn": -0.281833 + }, + { + "surface": "前処理", + "readging": "まえしょり", + "pos": "名詞", + "pn": -0.281836 + }, + { + "surface": "本題", + "readging": "ほんだい", + "pos": "名詞", + "pn": -0.281848 + }, + { + "surface": "恟恟", + "readging": "きょうきょう", + "pos": "名詞", + "pn": -0.281874 + }, + { + "surface": "達", + "readging": "たっし", + "pos": "名詞", + "pn": -0.281876 + }, + { + "surface": "如是我聞", + "readging": "にょぜがもん", + "pos": "名詞", + "pn": -0.281891 + }, + { + "surface": "公証", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.281924 + }, + { + "surface": "救護", + "readging": "きゅうご", + "pos": "名詞", + "pn": -0.281927 + }, + { + "surface": "名刺", + "readging": "めいし", + "pos": "名詞", + "pn": -0.28193 + }, + { + "surface": "夜嵐", + "readging": "よあらし", + "pos": "名詞", + "pn": -0.281943 + }, + { + "surface": "御天道様", + "readging": "おてんとさま", + "pos": "名詞", + "pn": -0.28195 + }, + { + "surface": "殿原", + "readging": "とのばら", + "pos": "名詞", + "pn": -0.28197 + }, + { + "surface": "中門", + "readging": "ちゅうもん", + "pos": "名詞", + "pn": -0.282009 + }, + { + "surface": "臨港線", + "readging": "りんこうせん", + "pos": "名詞", + "pn": -0.282019 + }, + { + "surface": "流域", + "readging": "りゅういき", + "pos": "名詞", + "pn": -0.282028 + }, + { + "surface": "庇髪", + "readging": "ひさしがみ", + "pos": "名詞", + "pn": -0.282031 + }, + { + "surface": "相部屋", + "readging": "あいべや", + "pos": "名詞", + "pn": -0.282046 + }, + { + "surface": "道草", + "readging": "みちくさ", + "pos": "名詞", + "pn": -0.282063 + }, + { + "surface": "南京豆", + "readging": "なんきんまめ", + "pos": "名詞", + "pn": -0.282065 + }, + { + "surface": "産業組合", + "readging": "さんぎょうくみあい", + "pos": "名詞", + "pn": -0.282076 + }, + { + "surface": "世迷い言", + "readging": "よまいごと", + "pos": "名詞", + "pn": -0.282095 + }, + { + "surface": "壮丁", + "readging": "そうてい", + "pos": "名詞", + "pn": -0.282112 + }, + { + "surface": "肉用種", + "readging": "にくようしゅ", + "pos": "名詞", + "pn": -0.282128 + }, + { + "surface": "水油", + "readging": "みずあぶら", + "pos": "名詞", + "pn": -0.282129 + }, + { + "surface": "ドーム", + "readging": "ドーム", + "pos": "名詞", + "pn": -0.282131 + }, + { + "surface": "留針", + "readging": "とめばり", + "pos": "名詞", + "pn": -0.282137 + }, + { + "surface": "結社", + "readging": "けっしゃ", + "pos": "名詞", + "pn": -0.282155 + }, + { + "surface": "感電", + "readging": "かんでん", + "pos": "名詞", + "pn": -0.282161 + }, + { + "surface": "遠視", + "readging": "えんし", + "pos": "名詞", + "pn": -0.282167 + }, + { + "surface": "償還", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.282178 + }, + { + "surface": "間接照明", + "readging": "かんせつしょうめい", + "pos": "名詞", + "pn": -0.282203 + }, + { + "surface": "忽然と", + "readging": "こつねんと", + "pos": "副詞", + "pn": -0.282207 + }, + { + "surface": "名寄せ", + "readging": "なよせ", + "pos": "名詞", + "pn": -0.282207 + }, + { + "surface": "学習漢字", + "readging": "がくしゅうかんじ", + "pos": "名詞", + "pn": -0.282215 + }, + { + "surface": "医業", + "readging": "いぎょう", + "pos": "名詞", + "pn": -0.282226 + }, + { + "surface": "CGS単位", + "readging": "シージーエスたんい", + "pos": "名詞", + "pn": -0.28223 + }, + { + "surface": "雲母", + "readging": "きらら", + "pos": "名詞", + "pn": -0.282247 + }, + { + "surface": "ノブ", + "readging": "ノブ", + "pos": "名詞", + "pn": -0.28225 + }, + { + "surface": "低気圧", + "readging": "ていきあつ", + "pos": "名詞", + "pn": -0.282255 + }, + { + "surface": "焼直し", + "readging": "やきなおし", + "pos": "名詞", + "pn": -0.282265 + }, + { + "surface": "ヌード", + "readging": "ヌード", + "pos": "名詞", + "pn": -0.282287 + }, + { + "surface": "かけら", + "readging": "かけら", + "pos": "名詞", + "pn": -0.282313 + }, + { + "surface": "質店", + "readging": "しちみせ", + "pos": "名詞", + "pn": -0.282315 + }, + { + "surface": "物売り", + "readging": "ものうり", + "pos": "名詞", + "pn": -0.282322 + }, + { + "surface": "読会", + "readging": "どっかい", + "pos": "名詞", + "pn": -0.282326 + }, + { + "surface": "母系", + "readging": "ぼけい", + "pos": "名詞", + "pn": -0.282327 + }, + { + "surface": "自作農", + "readging": "じさくのう", + "pos": "名詞", + "pn": -0.282327 + }, + { + "surface": "木蓮", + "readging": "もくれん", + "pos": "名詞", + "pn": -0.28233 + }, + { + "surface": "内患", + "readging": "ないかん", + "pos": "名詞", + "pn": -0.282331 + }, + { + "surface": "敏腕", + "readging": "びんわん", + "pos": "名詞", + "pn": -0.282382 + }, + { + "surface": "張", + "readging": "はり", + "pos": "名詞", + "pn": -0.282383 + }, + { + "surface": "逆宣伝", + "readging": "ぎゃくせんでん", + "pos": "名詞", + "pn": -0.282407 + }, + { + "surface": "アンコール", + "readging": "アンコール", + "pos": "名詞", + "pn": -0.282428 + }, + { + "surface": "日の目", + "readging": "ひのめ", + "pos": "名詞", + "pn": -0.282437 + }, + { + "surface": "国字", + "readging": "こくじ", + "pos": "名詞", + "pn": -0.282441 + }, + { + "surface": "床杯", + "readging": "とこさかずき", + "pos": "名詞", + "pn": -0.282447 + }, + { + "surface": "極論", + "readging": "きょくろん", + "pos": "名詞", + "pn": -0.28246 + }, + { + "surface": "負数", + "readging": "ふすう", + "pos": "名詞", + "pn": -0.28248 + }, + { + "surface": "せめて", + "readging": "せめて", + "pos": "副詞", + "pn": -0.282485 + }, + { + "surface": "前倒し", + "readging": "まえだおし", + "pos": "名詞", + "pn": -0.282491 + }, + { + "surface": "四面", + "readging": "しめん", + "pos": "名詞", + "pn": -0.282507 + }, + { + "surface": "余技", + "readging": "よぎ", + "pos": "名詞", + "pn": -0.282518 + }, + { + "surface": "納会", + "readging": "のうかい", + "pos": "名詞", + "pn": -0.282527 + }, + { + "surface": "残土", + "readging": "ざんど", + "pos": "名詞", + "pn": -0.282534 + }, + { + "surface": "川筋", + "readging": "かわすじ", + "pos": "名詞", + "pn": -0.282552 + }, + { + "surface": "哺乳類", + "readging": "ほにゅうるい", + "pos": "名詞", + "pn": -0.282557 + }, + { + "surface": "連邦", + "readging": "れんぽう", + "pos": "名詞", + "pn": -0.282565 + }, + { + "surface": "掻い繕う", + "readging": "かいつくろう", + "pos": "動詞", + "pn": -0.282567 + }, + { + "surface": "概して", + "readging": "がいして", + "pos": "副詞", + "pn": -0.282576 + }, + { + "surface": "盗難", + "readging": "とうなん", + "pos": "名詞", + "pn": -0.282589 + }, + { + "surface": "黒焦げ", + "readging": "くろこげ", + "pos": "名詞", + "pn": -0.282601 + }, + { + "surface": "国債", + "readging": "こくさい", + "pos": "名詞", + "pn": -0.282611 + }, + { + "surface": "家構え", + "readging": "いえがまえ", + "pos": "名詞", + "pn": -0.282618 + }, + { + "surface": "マネージャー", + "readging": "マネージャー", + "pos": "名詞", + "pn": -0.282621 + }, + { + "surface": "一寸試し", + "readging": "いっすんだめし", + "pos": "名詞", + "pn": -0.282631 + }, + { + "surface": "つんのめる", + "readging": "つんのめる", + "pos": "動詞", + "pn": -0.282633 + }, + { + "surface": "当用漢字", + "readging": "とうようかんじ", + "pos": "名詞", + "pn": -0.282666 + }, + { + "surface": "大文字", + "readging": "だいもんじ", + "pos": "名詞", + "pn": -0.282679 + }, + { + "surface": "水神", + "readging": "すいじん", + "pos": "名詞", + "pn": -0.282696 + }, + { + "surface": "歯髄", + "readging": "しずい", + "pos": "名詞", + "pn": -0.282701 + }, + { + "surface": "原図", + "readging": "げんず", + "pos": "名詞", + "pn": -0.282722 + }, + { + "surface": "寒菊", + "readging": "かんぎく", + "pos": "名詞", + "pn": -0.282734 + }, + { + "surface": "衛星中継", + "readging": "えいせいちゅうけい", + "pos": "名詞", + "pn": -0.282753 + }, + { + "surface": "日の本", + "readging": "ひのもと", + "pos": "名詞", + "pn": -0.282754 + }, + { + "surface": "馬屋", + "readging": "うまや", + "pos": "名詞", + "pn": -0.28276 + }, + { + "surface": "世間気", + "readging": "せけんぎ", + "pos": "名詞", + "pn": -0.282761 + }, + { + "surface": "征野", + "readging": "せいや", + "pos": "名詞", + "pn": -0.28277 + }, + { + "surface": "申送る", + "readging": "もうしおくる", + "pos": "動詞", + "pn": -0.282781 + }, + { + "surface": "BGM", + "readging": "ビージーエム", + "pos": "名詞", + "pn": -0.2828 + }, + { + "surface": "股旅", + "readging": "またたび", + "pos": "名詞", + "pn": -0.282833 + }, + { + "surface": "初春", + "readging": "しょしゅん", + "pos": "名詞", + "pn": -0.282838 + }, + { + "surface": "随員", + "readging": "ずいいん", + "pos": "名詞", + "pn": -0.28284 + }, + { + "surface": "原動機", + "readging": "げんどうき", + "pos": "名詞", + "pn": -0.28285 + }, + { + "surface": "暈し", + "readging": "ぼかし", + "pos": "名詞", + "pn": -0.28286 + }, + { + "surface": "槍玉", + "readging": "やりだま", + "pos": "名詞", + "pn": -0.282873 + }, + { + "surface": "プラネタリウム", + "readging": "プラネタリウム", + "pos": "名詞", + "pn": -0.282877 + }, + { + "surface": "出席", + "readging": "しゅっせき", + "pos": "名詞", + "pn": -0.282878 + }, + { + "surface": "秘書", + "readging": "ひしょ", + "pos": "名詞", + "pn": -0.282884 + }, + { + "surface": "機軸", + "readging": "きじく", + "pos": "名詞", + "pn": -0.282892 + }, + { + "surface": "宣誓", + "readging": "せんせい", + "pos": "名詞", + "pn": -0.282902 + }, + { + "surface": "差入れる", + "readging": "さしいれる", + "pos": "動詞", + "pn": -0.282903 + }, + { + "surface": "影像", + "readging": "えいぞう", + "pos": "名詞", + "pn": -0.282909 + }, + { + "surface": "卓袱料理", + "readging": "しっぽくりょうり", + "pos": "名詞", + "pn": -0.282921 + }, + { + "surface": "字音", + "readging": "じおん", + "pos": "名詞", + "pn": -0.282934 + }, + { + "surface": "端唄", + "readging": "はうた", + "pos": "名詞", + "pn": -0.282934 + }, + { + "surface": "欧", + "readging": "おう", + "pos": "名詞", + "pn": -0.282935 + }, + { + "surface": "異人", + "readging": "いじん", + "pos": "名詞", + "pn": -0.28294 + }, + { + "surface": "朽木", + "readging": "くちき", + "pos": "名詞", + "pn": -0.282943 + }, + { + "surface": "造語成分", + "readging": "ぞうごせいぶん", + "pos": "名詞", + "pn": -0.282961 + }, + { + "surface": "使い道", + "readging": "つかいみち", + "pos": "名詞", + "pn": -0.282962 + }, + { + "surface": "香花", + "readging": "こうばな", + "pos": "名詞", + "pn": -0.282979 + }, + { + "surface": "司書", + "readging": "ししょ", + "pos": "名詞", + "pn": -0.282988 + }, + { + "surface": "感受", + "readging": "かんじゅ", + "pos": "名詞", + "pn": -0.283003 + }, + { + "surface": "付纏う", + "readging": "つきまとう", + "pos": "動詞", + "pn": -0.283006 + }, + { + "surface": "マネージメント", + "readging": "マネージメント", + "pos": "名詞", + "pn": -0.283032 + }, + { + "surface": "乗降", + "readging": "じょうこう", + "pos": "名詞", + "pn": -0.283033 + }, + { + "surface": "無断", + "readging": "むだん", + "pos": "名詞", + "pn": -0.28304 + }, + { + "surface": "私心", + "readging": "ししん", + "pos": "名詞", + "pn": -0.283041 + }, + { + "surface": "道具方", + "readging": "どうぐかた", + "pos": "名詞", + "pn": -0.283063 + }, + { + "surface": "相次ぐ", + "readging": "あいつぐ", + "pos": "動詞", + "pn": -0.283068 + }, + { + "surface": "急火", + "readging": "きゅうび", + "pos": "名詞", + "pn": -0.283093 + }, + { + "surface": "退社", + "readging": "たいしゃ", + "pos": "名詞", + "pn": -0.283102 + }, + { + "surface": "三寒四温", + "readging": "さんかんしおん", + "pos": "名詞", + "pn": -0.283109 + }, + { + "surface": "順風", + "readging": "じゅんぷう", + "pos": "名詞", + "pn": -0.28311 + }, + { + "surface": "代言", + "readging": "だいげん", + "pos": "名詞", + "pn": -0.283115 + }, + { + "surface": "口走る", + "readging": "くちばしる", + "pos": "動詞", + "pn": -0.283121 + }, + { + "surface": "浸出液", + "readging": "しんしゅつえき", + "pos": "名詞", + "pn": -0.283123 + }, + { + "surface": "来診", + "readging": "らいしん", + "pos": "名詞", + "pn": -0.28313 + }, + { + "surface": "銅貨", + "readging": "どうか", + "pos": "名詞", + "pn": -0.283145 + }, + { + "surface": "円タク", + "readging": "えんタク", + "pos": "名詞", + "pn": -0.283148 + }, + { + "surface": "渡り稼ぎ", + "readging": "わたりかせぎ", + "pos": "名詞", + "pn": -0.28315 + }, + { + "surface": "遥か", + "readging": "はるか", + "pos": "副詞", + "pn": -0.283165 + }, + { + "surface": "別離", + "readging": "べつり", + "pos": "名詞", + "pn": -0.28317 + }, + { + "surface": "ザイル", + "readging": "ザイル", + "pos": "名詞", + "pn": -0.283192 + }, + { + "surface": "切戻す", + "readging": "きりもどす", + "pos": "動詞", + "pn": -0.283207 + }, + { + "surface": "考え付く", + "readging": "かんがえつく", + "pos": "動詞", + "pn": -0.283221 + }, + { + "surface": "夢物語", + "readging": "ゆめものがたり", + "pos": "名詞", + "pn": -0.283228 + }, + { + "surface": "蔵書", + "readging": "ぞうしょ", + "pos": "名詞", + "pn": -0.283236 + }, + { + "surface": "重農主義", + "readging": "じゅうのうしゅぎ", + "pos": "名詞", + "pn": -0.283242 + }, + { + "surface": "大福帳", + "readging": "だいふくちょう", + "pos": "名詞", + "pn": -0.283297 + }, + { + "surface": "気合", + "readging": "きあい", + "pos": "名詞", + "pn": -0.283306 + }, + { + "surface": "セリウム", + "readging": "セリウム", + "pos": "名詞", + "pn": -0.283326 + }, + { + "surface": "パスカル", + "readging": "パスカル", + "pos": "名詞", + "pn": -0.283332 + }, + { + "surface": "到底", + "readging": "とうてい", + "pos": "副詞", + "pn": -0.283332 + }, + { + "surface": "奉納", + "readging": "ほうのう", + "pos": "名詞", + "pn": -0.283338 + }, + { + "surface": "フェミニズム", + "readging": "フェミニズム", + "pos": "名詞", + "pn": -0.283373 + }, + { + "surface": "石子詰", + "readging": "いしこづめ", + "pos": "名詞", + "pn": -0.283374 + }, + { + "surface": "空涙", + "readging": "そらなみだ", + "pos": "名詞", + "pn": -0.283389 + }, + { + "surface": "官報", + "readging": "かんぽう", + "pos": "名詞", + "pn": -0.283417 + }, + { + "surface": "持上がる", + "readging": "もちあがる", + "pos": "動詞", + "pn": -0.283476 + }, + { + "surface": "催告", + "readging": "さいこく", + "pos": "名詞", + "pn": -0.283476 + }, + { + "surface": "精気", + "readging": "せいき", + "pos": "名詞", + "pn": -0.283484 + }, + { + "surface": "活弁", + "readging": "かつべん", + "pos": "名詞", + "pn": -0.28351 + }, + { + "surface": "最前線", + "readging": "さいぜんせん", + "pos": "名詞", + "pn": -0.283517 + }, + { + "surface": "国持", + "readging": "くにもち", + "pos": "名詞", + "pn": -0.283533 + }, + { + "surface": "驀地", + "readging": "まっしぐら", + "pos": "副詞", + "pn": -0.283554 + }, + { + "surface": "最も", + "readging": "もっとも", + "pos": "副詞", + "pn": -0.283575 + }, + { + "surface": "請人", + "readging": "うけにん", + "pos": "名詞", + "pn": -0.283593 + }, + { + "surface": "氷", + "readging": "こおり", + "pos": "名詞", + "pn": -0.283606 + }, + { + "surface": "返照", + "readging": "へんしょう", + "pos": "名詞", + "pn": -0.283609 + }, + { + "surface": "煤埃", + "readging": "すすほこり", + "pos": "名詞", + "pn": -0.283631 + }, + { + "surface": "乱痴気騒ぎ", + "readging": "らんちきさわぎ", + "pos": "名詞", + "pn": -0.283661 + }, + { + "surface": "免状", + "readging": "めんじょう", + "pos": "名詞", + "pn": -0.28367 + }, + { + "surface": "拳銃", + "readging": "けんじゅう", + "pos": "名詞", + "pn": -0.283679 + }, + { + "surface": "計理士", + "readging": "けいりし", + "pos": "名詞", + "pn": -0.28369 + }, + { + "surface": "転た寝", + "readging": "うたたね", + "pos": "名詞", + "pn": -0.283715 + }, + { + "surface": "元栓", + "readging": "もとせん", + "pos": "名詞", + "pn": -0.283736 + }, + { + "surface": "告示", + "readging": "こくじ", + "pos": "名詞", + "pn": -0.283754 + }, + { + "surface": "呉須", + "readging": "ごす", + "pos": "名詞", + "pn": -0.283772 + }, + { + "surface": "刑期", + "readging": "けいき", + "pos": "名詞", + "pn": -0.283811 + }, + { + "surface": "乱酒", + "readging": "らんしゅ", + "pos": "名詞", + "pn": -0.283812 + }, + { + "surface": "開演", + "readging": "かいえん", + "pos": "名詞", + "pn": -0.283858 + }, + { + "surface": "満年齢", + "readging": "まんねんれい", + "pos": "名詞", + "pn": -0.283863 + }, + { + "surface": "さざめく", + "readging": "さざめく", + "pos": "動詞", + "pn": -0.283872 + }, + { + "surface": "疎水", + "readging": "そすい", + "pos": "名詞", + "pn": -0.283876 + }, + { + "surface": "イントロダクション", + "readging": "イントロダクション", + "pos": "名詞", + "pn": -0.283878 + }, + { + "surface": "供応", + "readging": "きょうおう", + "pos": "名詞", + "pn": -0.283881 + }, + { + "surface": "鬼子", + "readging": "おにご", + "pos": "名詞", + "pn": -0.283886 + }, + { + "surface": "治水", + "readging": "ちすい", + "pos": "名詞", + "pn": -0.283912 + }, + { + "surface": "封建制", + "readging": "ほうけんせい", + "pos": "名詞", + "pn": -0.283916 + }, + { + "surface": "怒り肩", + "readging": "いかりがた", + "pos": "名詞", + "pn": -0.283926 + }, + { + "surface": "修道", + "readging": "しゅうどう", + "pos": "名詞", + "pn": -0.283942 + }, + { + "surface": "花片", + "readging": "かへん", + "pos": "名詞", + "pn": -0.283976 + }, + { + "surface": "猩猩蠅", + "readging": "しょうじょうばえ", + "pos": "名詞", + "pn": -0.283983 + }, + { + "surface": "ウラン", + "readging": "ウラン", + "pos": "名詞", + "pn": -0.284001 + }, + { + "surface": "国際単位系", + "readging": "こくさいたんいけい", + "pos": "名詞", + "pn": -0.284004 + }, + { + "surface": "ぱったり", + "readging": "ぱったり", + "pos": "副詞", + "pn": -0.284014 + }, + { + "surface": "鴟尾", + "readging": "しび", + "pos": "名詞", + "pn": -0.284033 + }, + { + "surface": "前身", + "readging": "ぜんしん", + "pos": "名詞", + "pn": -0.284063 + }, + { + "surface": "半球", + "readging": "はんきゅう", + "pos": "名詞", + "pn": -0.284105 + }, + { + "surface": "判任官", + "readging": "はんにんかん", + "pos": "名詞", + "pn": -0.28411 + }, + { + "surface": "山人", + "readging": "さんじん", + "pos": "名詞", + "pn": -0.284115 + }, + { + "surface": "十三夜", + "readging": "じゅうさんや", + "pos": "名詞", + "pn": -0.284129 + }, + { + "surface": "辺陬", + "readging": "へんすう", + "pos": "名詞", + "pn": -0.284134 + }, + { + "surface": "綱渡り", + "readging": "つなわたり", + "pos": "名詞", + "pn": -0.284137 + }, + { + "surface": "四十九日", + "readging": "しじゅうくにち", + "pos": "名詞", + "pn": -0.284204 + }, + { + "surface": "塗物", + "readging": "ぬりもの", + "pos": "名詞", + "pn": -0.284206 + }, + { + "surface": "二百二十日", + "readging": "にひゃくはつか", + "pos": "名詞", + "pn": -0.284206 + }, + { + "surface": "二百十日", + "readging": "にひゃくとおか", + "pos": "名詞", + "pn": -0.284206 + }, + { + "surface": "モチーフ", + "readging": "モチーフ", + "pos": "名詞", + "pn": -0.284218 + }, + { + "surface": "流俗", + "readging": "りゅうぞく", + "pos": "名詞", + "pn": -0.28422 + }, + { + "surface": "移用", + "readging": "いよう", + "pos": "名詞", + "pn": -0.284266 + }, + { + "surface": "指令", + "readging": "しれい", + "pos": "名詞", + "pn": -0.284274 + }, + { + "surface": "結果論", + "readging": "けっかろん", + "pos": "名詞", + "pn": -0.284277 + }, + { + "surface": "文意", + "readging": "ぶんい", + "pos": "名詞", + "pn": -0.28428 + }, + { + "surface": "オン", + "readging": "オン", + "pos": "名詞", + "pn": -0.284286 + }, + { + "surface": "盗犯", + "readging": "とうはん", + "pos": "名詞", + "pn": -0.284298 + }, + { + "surface": "天の原", + "readging": "あまのはら", + "pos": "名詞", + "pn": -0.284301 + }, + { + "surface": "庶子", + "readging": "しょし", + "pos": "名詞", + "pn": -0.284315 + }, + { + "surface": "古本", + "readging": "ふるほん", + "pos": "名詞", + "pn": -0.284332 + }, + { + "surface": "切掛る", + "readging": "きりかかる", + "pos": "動詞", + "pn": -0.284349 + }, + { + "surface": "光背", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.284383 + }, + { + "surface": "笹", + "readging": "ささ", + "pos": "名詞", + "pn": -0.284395 + }, + { + "surface": "ブルー", + "readging": "ブルーカラー", + "pos": "名詞", + "pn": -0.284395 + }, + { + "surface": "命懸け", + "readging": "いのちがけ", + "pos": "名詞", + "pn": -0.284399 + }, + { + "surface": "芽生え", + "readging": "めばえ", + "pos": "名詞", + "pn": -0.284401 + }, + { + "surface": "割下水", + "readging": "わりげすい", + "pos": "名詞", + "pn": -0.284411 + }, + { + "surface": "東風", + "readging": "こち", + "pos": "名詞", + "pn": -0.284429 + }, + { + "surface": "ドット", + "readging": "ドット", + "pos": "名詞", + "pn": -0.28444 + }, + { + "surface": "食い倒れ", + "readging": "くいだおれ", + "pos": "名詞", + "pn": -0.28444 + }, + { + "surface": "火災保険", + "readging": "かさいほけん", + "pos": "名詞", + "pn": -0.284467 + }, + { + "surface": "正貨準備", + "readging": "せいかじゅんび", + "pos": "名詞", + "pn": -0.284469 + }, + { + "surface": "便衣隊", + "readging": "べんいたい", + "pos": "名詞", + "pn": -0.284472 + }, + { + "surface": "分担", + "readging": "ぶんたん", + "pos": "名詞", + "pn": -0.284487 + }, + { + "surface": "潮位", + "readging": "ちょうい", + "pos": "名詞", + "pn": -0.284494 + }, + { + "surface": "漁り", + "readging": "いさり", + "pos": "名詞", + "pn": -0.284526 + }, + { + "surface": "横線", + "readging": "おうせん", + "pos": "名詞", + "pn": -0.284541 + }, + { + "surface": "書分ける", + "readging": "かきわける", + "pos": "動詞", + "pn": -0.28455 + }, + { + "surface": "線香花火", + "readging": "せんこうはなび", + "pos": "名詞", + "pn": -0.28459 + }, + { + "surface": "女王", + "readging": "じょおう", + "pos": "名詞", + "pn": -0.284601 + }, + { + "surface": "褐鉄鉱", + "readging": "かってっこう", + "pos": "名詞", + "pn": -0.284605 + }, + { + "surface": "掛図", + "readging": "かけず", + "pos": "名詞", + "pn": -0.284607 + }, + { + "surface": "逢着", + "readging": "ほうちゃく", + "pos": "名詞", + "pn": -0.284608 + }, + { + "surface": "商船", + "readging": "しょうせん", + "pos": "名詞", + "pn": -0.284618 + }, + { + "surface": "渋滞", + "readging": "じゅうたい", + "pos": "名詞", + "pn": -0.28463 + }, + { + "surface": "軍夫", + "readging": "ぐんぷ", + "pos": "名詞", + "pn": -0.28464 + }, + { + "surface": "文化", + "readging": "ぶんか", + "pos": "名詞", + "pn": -0.284641 + }, + { + "surface": "大使", + "readging": "たいし", + "pos": "名詞", + "pn": -0.284648 + }, + { + "surface": "火消", + "readging": "ひけし", + "pos": "名詞", + "pn": -0.28465 + }, + { + "surface": "糠油", + "readging": "ぬかあぶら", + "pos": "名詞", + "pn": -0.284656 + }, + { + "surface": "交差点", + "readging": "こうさてん", + "pos": "名詞", + "pn": -0.284659 + }, + { + "surface": "理念", + "readging": "りねん", + "pos": "名詞", + "pn": -0.284671 + }, + { + "surface": "常態", + "readging": "じょうたい", + "pos": "名詞", + "pn": -0.284755 + }, + { + "surface": "寝袋", + "readging": "ねぶくろ", + "pos": "名詞", + "pn": -0.28476 + }, + { + "surface": "渓流", + "readging": "けいりゅう", + "pos": "名詞", + "pn": -0.284775 + }, + { + "surface": "水生", + "readging": "すいせい", + "pos": "名詞", + "pn": -0.284796 + }, + { + "surface": "イヒチオール", + "readging": "イヒチオール", + "pos": "名詞", + "pn": -0.284838 + }, + { + "surface": "ベーキング パウダー", + "readging": "ベーキング パウダー", + "pos": "名詞", + "pn": -0.284838 + }, + { + "surface": "仏", + "readging": "ぶつ", + "pos": "名詞", + "pn": -0.28489 + }, + { + "surface": "発足", + "readging": "はっそく", + "pos": "名詞", + "pn": -0.284905 + }, + { + "surface": "菊判", + "readging": "きくばん", + "pos": "名詞", + "pn": -0.284905 + }, + { + "surface": "たなご", + "readging": "たなご", + "pos": "名詞", + "pn": -0.284917 + }, + { + "surface": "時間割", + "readging": "じかんわり", + "pos": "名詞", + "pn": -0.284926 + }, + { + "surface": "不倶戴天", + "readging": "ふぐたいてん", + "pos": "名詞", + "pn": -0.284934 + }, + { + "surface": "下知", + "readging": "げぢ", + "pos": "名詞", + "pn": -0.284935 + }, + { + "surface": "立冬", + "readging": "りっとう", + "pos": "名詞", + "pn": -0.284944 + }, + { + "surface": "予約", + "readging": "よやく", + "pos": "名詞", + "pn": -0.28496 + }, + { + "surface": "要用", + "readging": "ようよう", + "pos": "名詞", + "pn": -0.284962 + }, + { + "surface": "毎月", + "readging": "まいげつ", + "pos": "名詞", + "pn": -0.284987 + }, + { + "surface": "流し元", + "readging": "ながしもと", + "pos": "名詞", + "pn": -0.28499 + }, + { + "surface": "天竺浪人", + "readging": "てんじくろうにん", + "pos": "名詞", + "pn": -0.285006 + }, + { + "surface": "異境", + "readging": "いきょう", + "pos": "名詞", + "pn": -0.285009 + }, + { + "surface": "鰻上り", + "readging": "うなぎのぼり", + "pos": "名詞", + "pn": -0.285041 + }, + { + "surface": "逆潮", + "readging": "ぎゃくちょう", + "pos": "名詞", + "pn": -0.285087 + }, + { + "surface": "発掘", + "readging": "はっくつ", + "pos": "名詞", + "pn": -0.285088 + }, + { + "surface": "降霜", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.285105 + }, + { + "surface": "バイオ", + "readging": "バイオテクノロジー", + "pos": "名詞", + "pn": -0.285109 + }, + { + "surface": "論争", + "readging": "ろんそう", + "pos": "名詞", + "pn": -0.285119 + }, + { + "surface": "浮力", + "readging": "ふりょく", + "pos": "名詞", + "pn": -0.28514 + }, + { + "surface": "武者奉行", + "readging": "むしゃぶぎょう", + "pos": "名詞", + "pn": -0.285143 + }, + { + "surface": "地動説", + "readging": "ちどうせつ", + "pos": "名詞", + "pn": -0.285154 + }, + { + "surface": "歯牙", + "readging": "しが", + "pos": "名詞", + "pn": -0.28516 + }, + { + "surface": "無味", + "readging": "むみ", + "pos": "名詞", + "pn": -0.285185 + }, + { + "surface": "銀鱗", + "readging": "ぎんりん", + "pos": "名詞", + "pn": -0.285185 + }, + { + "surface": "千人針", + "readging": "せんにんばり", + "pos": "名詞", + "pn": -0.285204 + }, + { + "surface": "抗菌", + "readging": "こうきん", + "pos": "名詞", + "pn": -0.285209 + }, + { + "surface": "綿油", + "readging": "わたあぶら", + "pos": "名詞", + "pn": -0.285229 + }, + { + "surface": "戸数割", + "readging": "こすうわり", + "pos": "名詞", + "pn": -0.285232 + }, + { + "surface": "ガール", + "readging": "ガール", + "pos": "名詞", + "pn": -0.285234 + }, + { + "surface": "置換", + "readging": "ちかん", + "pos": "名詞", + "pn": -0.285238 + }, + { + "surface": "原毛", + "readging": "げんもう", + "pos": "名詞", + "pn": -0.285266 + }, + { + "surface": "考察", + "readging": "こうさつ", + "pos": "名詞", + "pn": -0.285275 + }, + { + "surface": "嘆き暮す", + "readging": "なげきくらす", + "pos": "動詞", + "pn": -0.285282 + }, + { + "surface": "下士官", + "readging": "かしかん", + "pos": "名詞", + "pn": -0.285284 + }, + { + "surface": "原産地", + "readging": "げんさんち", + "pos": "名詞", + "pn": -0.285308 + }, + { + "surface": "プロレタリア", + "readging": "プロレタリア", + "pos": "名詞", + "pn": -0.285315 + }, + { + "surface": "独り身", + "readging": "ひとりみ", + "pos": "名詞", + "pn": -0.285317 + }, + { + "surface": "キロ", + "readging": "キログラム", + "pos": "名詞", + "pn": -0.28532 + }, + { + "surface": "暮", + "readging": "くれ", + "pos": "名詞", + "pn": -0.285325 + }, + { + "surface": "説及ぶ", + "readging": "ときおよぶ", + "pos": "動詞", + "pn": -0.285338 + }, + { + "surface": "かちあう", + "readging": "かちあう", + "pos": "動詞", + "pn": -0.285359 + }, + { + "surface": "賊軍", + "readging": "ぞくぐん", + "pos": "名詞", + "pn": -0.285378 + }, + { + "surface": "ぬた", + "readging": "ぬた", + "pos": "名詞", + "pn": -0.285387 + }, + { + "surface": "請負", + "readging": "うけおい", + "pos": "名詞", + "pn": -0.285394 + }, + { + "surface": "槍持", + "readging": "やりもち", + "pos": "名詞", + "pn": -0.285402 + }, + { + "surface": "順逆", + "readging": "じゅんぎゃく", + "pos": "名詞", + "pn": -0.285444 + }, + { + "surface": "銀盤", + "readging": "ぎんばん", + "pos": "名詞", + "pn": -0.285449 + }, + { + "surface": "扇風機", + "readging": "せんぷうき", + "pos": "名詞", + "pn": -0.285464 + }, + { + "surface": "通信簿", + "readging": "つうしんぼ", + "pos": "名詞", + "pn": -0.285487 + }, + { + "surface": "ベル", + "readging": "ベル", + "pos": "名詞", + "pn": -0.285497 + }, + { + "surface": "ダイアローグ", + "readging": "ダイアローグ", + "pos": "名詞", + "pn": -0.285501 + }, + { + "surface": "菫色", + "readging": "すみれいろ", + "pos": "名詞", + "pn": -0.285509 + }, + { + "surface": "ゼネスト", + "readging": "ゼネスト", + "pos": "名詞", + "pn": -0.28552 + }, + { + "surface": "ピラニア", + "readging": "ピラニア", + "pos": "名詞", + "pn": -0.285528 + }, + { + "surface": "博する", + "readging": "はくする", + "pos": "動詞", + "pn": -0.285534 + }, + { + "surface": "全権", + "readging": "ぜんけん", + "pos": "名詞", + "pn": -0.285542 + }, + { + "surface": "巳", + "readging": "み", + "pos": "名詞", + "pn": -0.285555 + }, + { + "surface": "朱印", + "readging": "しゅいん", + "pos": "名詞", + "pn": -0.285562 + }, + { + "surface": "戦乱", + "readging": "せんらん", + "pos": "名詞", + "pn": -0.285565 + }, + { + "surface": "万万", + "readging": "ばんばん", + "pos": "副詞", + "pn": -0.28557 + }, + { + "surface": "三角巾", + "readging": "さんかくきん", + "pos": "名詞", + "pn": -0.285591 + }, + { + "surface": "爆沈", + "readging": "ばくちん", + "pos": "名詞", + "pn": -0.285592 + }, + { + "surface": "見極める", + "readging": "みきわめる", + "pos": "動詞", + "pn": -0.285599 + }, + { + "surface": "卵塔", + "readging": "らんとう", + "pos": "名詞", + "pn": -0.28563 + }, + { + "surface": "物量", + "readging": "ぶつりょう", + "pos": "名詞", + "pn": -0.285643 + }, + { + "surface": "苦行", + "readging": "くぎょう", + "pos": "名詞", + "pn": -0.285645 + }, + { + "surface": "荏苒", + "readging": "じんぜん", + "pos": "副詞", + "pn": -0.285646 + }, + { + "surface": "産児制限", + "readging": "さんじせいげん", + "pos": "名詞", + "pn": -0.285652 + }, + { + "surface": "ダム", + "readging": "ダムサイト", + "pos": "名詞", + "pn": -0.285703 + }, + { + "surface": "波布茶", + "readging": "はぶちゃ", + "pos": "名詞", + "pn": -0.285715 + }, + { + "surface": "隅っこ", + "readging": "すみっこ", + "pos": "名詞", + "pn": -0.285729 + }, + { + "surface": "成文", + "readging": "せいぶん", + "pos": "名詞", + "pn": -0.28573 + }, + { + "surface": "オーブン", + "readging": "オーブン", + "pos": "名詞", + "pn": -0.285735 + }, + { + "surface": "七つ下り", + "readging": "ななつさがり", + "pos": "名詞", + "pn": -0.285735 + }, + { + "surface": "潸潸", + "readging": "さんさん", + "pos": "名詞", + "pn": -0.28575 + }, + { + "surface": "磁気嵐", + "readging": "じきあらし", + "pos": "名詞", + "pn": -0.28577 + }, + { + "surface": "正装", + "readging": "せいそう", + "pos": "名詞", + "pn": -0.285781 + }, + { + "surface": "禁制", + "readging": "きんせい", + "pos": "名詞", + "pn": -0.285817 + }, + { + "surface": "看板娘", + "readging": "かんばんむすめ", + "pos": "名詞", + "pn": -0.285847 + }, + { + "surface": "肩先", + "readging": "かたさき", + "pos": "名詞", + "pn": -0.285857 + }, + { + "surface": "鉄兜", + "readging": "てつかぶと", + "pos": "名詞", + "pn": -0.285858 + }, + { + "surface": "ぼた山", + "readging": "ぼたやま", + "pos": "名詞", + "pn": -0.285866 + }, + { + "surface": "ルーキー", + "readging": "ルーキー", + "pos": "名詞", + "pn": -0.28587 + }, + { + "surface": "取上げる", + "readging": "とりあげる", + "pos": "動詞", + "pn": -0.28589 + }, + { + "surface": "未詳", + "readging": "みしょう", + "pos": "名詞", + "pn": -0.285904 + }, + { + "surface": "歌謡曲", + "readging": "かようきょく", + "pos": "名詞", + "pn": -0.285908 + }, + { + "surface": "リレー", + "readging": "リレー", + "pos": "名詞", + "pn": -0.285919 + }, + { + "surface": "殺到", + "readging": "さっとう", + "pos": "名詞", + "pn": -0.285922 + }, + { + "surface": "面壁", + "readging": "めんぺき", + "pos": "名詞", + "pn": -0.285933 + }, + { + "surface": "又聞き", + "readging": "またぎき", + "pos": "名詞", + "pn": -0.285951 + }, + { + "surface": "禁則", + "readging": "きんそく", + "pos": "名詞", + "pn": -0.285973 + }, + { + "surface": "木隠れ", + "readging": "こがくれ", + "pos": "名詞", + "pn": -0.285975 + }, + { + "surface": "遠乗り", + "readging": "とおのり", + "pos": "名詞", + "pn": -0.285993 + }, + { + "surface": "不貞", + "readging": "ふてい", + "pos": "名詞", + "pn": -0.285998 + }, + { + "surface": "ナンバー", + "readging": "ナンバー", + "pos": "名詞", + "pn": -0.286056 + }, + { + "surface": "一見識", + "readging": "いちけんしき", + "pos": "名詞", + "pn": -0.286078 + }, + { + "surface": "軍服", + "readging": "ぐんぷく", + "pos": "名詞", + "pn": -0.286094 + }, + { + "surface": "赤行嚢", + "readging": "あかこうのう", + "pos": "名詞", + "pn": -0.286101 + }, + { + "surface": "農奴", + "readging": "のうど", + "pos": "名詞", + "pn": -0.286107 + }, + { + "surface": "首巻", + "readging": "しゅかん", + "pos": "名詞", + "pn": -0.286126 + }, + { + "surface": "末広り", + "readging": "すえひろがり", + "pos": "名詞", + "pn": -0.286129 + }, + { + "surface": "ジェット気流", + "readging": "ジェットきりゅう", + "pos": "名詞", + "pn": -0.286146 + }, + { + "surface": "反切", + "readging": "はんせつ", + "pos": "名詞", + "pn": -0.28615 + }, + { + "surface": "話半分", + "readging": "はなしはんぶん", + "pos": "名詞", + "pn": -0.286169 + }, + { + "surface": "ゼロ", + "readging": "ゼロ", + "pos": "名詞", + "pn": -0.286172 + }, + { + "surface": "にょろにょろ", + "readging": "にょろにょろ", + "pos": "副詞", + "pn": -0.286181 + }, + { + "surface": "沸起る", + "readging": "わきおこる", + "pos": "動詞", + "pn": -0.286188 + }, + { + "surface": "サーベル", + "readging": "サーベル", + "pos": "名詞", + "pn": -0.286195 + }, + { + "surface": "金隠し", + "readging": "きんかくし", + "pos": "名詞", + "pn": -0.286197 + }, + { + "surface": "木像", + "readging": "もくぞう", + "pos": "名詞", + "pn": -0.286202 + }, + { + "surface": "不感症", + "readging": "ふかんしょう", + "pos": "名詞", + "pn": -0.286203 + }, + { + "surface": "破戒", + "readging": "はかい", + "pos": "名詞", + "pn": -0.28622 + }, + { + "surface": "器財", + "readging": "きざい", + "pos": "名詞", + "pn": -0.28622 + }, + { + "surface": "用地", + "readging": "ようち", + "pos": "名詞", + "pn": -0.286224 + }, + { + "surface": "公庫", + "readging": "こうこ", + "pos": "名詞", + "pn": -0.286224 + }, + { + "surface": "鎌止め", + "readging": "かまどめ", + "pos": "名詞", + "pn": -0.286228 + }, + { + "surface": "ウエス", + "readging": "ウエス", + "pos": "名詞", + "pn": -0.286228 + }, + { + "surface": "ミューズ", + "readging": "ミューズ", + "pos": "名詞", + "pn": -0.286232 + }, + { + "surface": "蒙昧", + "readging": "もうまい", + "pos": "名詞", + "pn": -0.286234 + }, + { + "surface": "砂", + "readging": "いさご", + "pos": "名詞", + "pn": -0.286249 + }, + { + "surface": "書生部屋", + "readging": "しょせいべや", + "pos": "名詞", + "pn": -0.286269 + }, + { + "surface": "陪席裁判官", + "readging": "ばいせきさいばんかん", + "pos": "名詞", + "pn": -0.286306 + }, + { + "surface": "そうこう", + "readging": "そうこう", + "pos": "副詞", + "pn": -0.286313 + }, + { + "surface": "薩摩上布", + "readging": "さつまじょうふ", + "pos": "名詞", + "pn": -0.286315 + }, + { + "surface": "長袖", + "readging": "ながそで", + "pos": "名詞", + "pn": -0.286326 + }, + { + "surface": "菱餅", + "readging": "ひしもち", + "pos": "名詞", + "pn": -0.286329 + }, + { + "surface": "泣上戸", + "readging": "なきじょうご", + "pos": "名詞", + "pn": -0.286337 + }, + { + "surface": "成金", + "readging": "なりきん", + "pos": "名詞", + "pn": -0.28634 + }, + { + "surface": "改作", + "readging": "かいさく", + "pos": "名詞", + "pn": -0.286435 + }, + { + "surface": "あて先", + "readging": "あてさき", + "pos": "名詞", + "pn": -0.286457 + }, + { + "surface": "誅する", + "readging": "ちゅうする", + "pos": "動詞", + "pn": -0.286467 + }, + { + "surface": "ウール", + "readging": "ウール", + "pos": "名詞", + "pn": -0.286483 + }, + { + "surface": "側圧", + "readging": "そくあつ", + "pos": "名詞", + "pn": -0.286514 + }, + { + "surface": "干鱈", + "readging": "ひだら", + "pos": "名詞", + "pn": -0.286524 + }, + { + "surface": "土鈴", + "readging": "どれい", + "pos": "名詞", + "pn": -0.286531 + }, + { + "surface": "ブンゼン灯", + "readging": "ブンゼンとう", + "pos": "名詞", + "pn": -0.286533 + }, + { + "surface": "仙窟", + "readging": "せんくつ", + "pos": "名詞", + "pn": -0.286536 + }, + { + "surface": "抵当流れ", + "readging": "ていとうながれ", + "pos": "名詞", + "pn": -0.286557 + }, + { + "surface": "慈悲心鳥", + "readging": "じひしんちょう", + "pos": "名詞", + "pn": -0.286624 + }, + { + "surface": "回診", + "readging": "かいしん", + "pos": "名詞", + "pn": -0.286626 + }, + { + "surface": "置引", + "readging": "おきびき", + "pos": "名詞", + "pn": -0.286642 + }, + { + "surface": "猩猩緋", + "readging": "しょうじょうひ", + "pos": "名詞", + "pn": -0.286652 + }, + { + "surface": "新婦", + "readging": "しんぷ", + "pos": "名詞", + "pn": -0.286654 + }, + { + "surface": "タブレット", + "readging": "タブレット", + "pos": "名詞", + "pn": -0.286659 + }, + { + "surface": "事欠く", + "readging": "ことかく", + "pos": "動詞", + "pn": -0.286668 + }, + { + "surface": "偽証", + "readging": "ぎしょう", + "pos": "名詞", + "pn": -0.286669 + }, + { + "surface": "郷国", + "readging": "きょうこく", + "pos": "名詞", + "pn": -0.286672 + }, + { + "surface": "不可解", + "readging": "ふかかい", + "pos": "名詞", + "pn": -0.286692 + }, + { + "surface": "守衛", + "readging": "しゅえい", + "pos": "名詞", + "pn": -0.286693 + }, + { + "surface": "身過ぎ", + "readging": "みすぎ", + "pos": "名詞", + "pn": -0.286729 + }, + { + "surface": "気詰り", + "readging": "きづまり", + "pos": "名詞", + "pn": -0.286751 + }, + { + "surface": "ウオーミング アップ", + "readging": "ウオーミング アップ", + "pos": "名詞", + "pn": -0.286767 + }, + { + "surface": "シミュレーション", + "readging": "シミュレーション", + "pos": "名詞", + "pn": -0.28678 + }, + { + "surface": "遣手", + "readging": "やりて", + "pos": "名詞", + "pn": -0.28678 + }, + { + "surface": "日時計", + "readging": "ひどけい", + "pos": "名詞", + "pn": -0.286783 + }, + { + "surface": "寝待の月", + "readging": "ねまちのつき", + "pos": "名詞", + "pn": -0.286784 + }, + { + "surface": "赤新聞", + "readging": "あかしんぶん", + "pos": "名詞", + "pn": -0.286807 + }, + { + "surface": "遊ばせ言葉", + "readging": "あそばせことば", + "pos": "名詞", + "pn": -0.286817 + }, + { + "surface": "付録", + "readging": "ふろく", + "pos": "名詞", + "pn": -0.286827 + }, + { + "surface": "教師", + "readging": "きょうし", + "pos": "名詞", + "pn": -0.286848 + }, + { + "surface": "寄り掛る", + "readging": "よりかかる", + "pos": "動詞", + "pn": -0.286851 + }, + { + "surface": "円建て", + "readging": "えんだて", + "pos": "名詞", + "pn": -0.286854 + }, + { + "surface": "番所", + "readging": "ばんしょ", + "pos": "名詞", + "pn": -0.286861 + }, + { + "surface": "情緒", + "readging": "じょうちょ", + "pos": "名詞", + "pn": -0.286877 + }, + { + "surface": "絹物", + "readging": "きぬもの", + "pos": "名詞", + "pn": -0.286885 + }, + { + "surface": "壬", + "readging": "みずのえ", + "pos": "名詞", + "pn": -0.286917 + }, + { + "surface": "テクノポリス", + "readging": "テクノポリス", + "pos": "名詞", + "pn": -0.286921 + }, + { + "surface": "アリーナ", + "readging": "アリーナ", + "pos": "名詞", + "pn": -0.286938 + }, + { + "surface": "初年", + "readging": "しょねん", + "pos": "名詞", + "pn": -0.286941 + }, + { + "surface": "無精卵", + "readging": "むせいらん", + "pos": "名詞", + "pn": -0.286954 + }, + { + "surface": "フロント", + "readging": "フロント", + "pos": "名詞", + "pn": -0.286971 + }, + { + "surface": "砕石", + "readging": "さいせき", + "pos": "名詞", + "pn": -0.286981 + }, + { + "surface": "大会", + "readging": "たいかい", + "pos": "名詞", + "pn": -0.286999 + }, + { + "surface": "妹", + "readging": "いもうと", + "pos": "名詞", + "pn": -0.287007 + }, + { + "surface": "属す", + "readging": "ぞくす", + "pos": "動詞", + "pn": -0.287023 + }, + { + "surface": "法文", + "readging": "ほうぶん", + "pos": "名詞", + "pn": -0.287031 + }, + { + "surface": "遭遇", + "readging": "そうぐう", + "pos": "名詞", + "pn": -0.287039 + }, + { + "surface": "不正確", + "readging": "ふせいかく", + "pos": "名詞", + "pn": -0.287046 + }, + { + "surface": "飲まれる", + "readging": "のまれる", + "pos": "動詞", + "pn": -0.287067 + }, + { + "surface": "不孝", + "readging": "ふこう", + "pos": "名詞", + "pn": -0.287096 + }, + { + "surface": "南鐐", + "readging": "なんりょう", + "pos": "名詞", + "pn": -0.287104 + }, + { + "surface": "破線", + "readging": "はせん", + "pos": "名詞", + "pn": -0.287115 + }, + { + "surface": "分室", + "readging": "ぶんしつ", + "pos": "名詞", + "pn": -0.287121 + }, + { + "surface": "女好き", + "readging": "おんなずき", + "pos": "名詞", + "pn": -0.287132 + }, + { + "surface": "神田", + "readging": "しんでん", + "pos": "名詞", + "pn": -0.287134 + }, + { + "surface": "蹲", + "readging": "つくばい", + "pos": "名詞", + "pn": -0.287175 + }, + { + "surface": "行合う", + "readging": "ゆきあう", + "pos": "動詞", + "pn": -0.287178 + }, + { + "surface": "藪睨み", + "readging": "やぶにらみ", + "pos": "名詞", + "pn": -0.287188 + }, + { + "surface": "数え年", + "readging": "かぞえどし", + "pos": "名詞", + "pn": -0.287213 + }, + { + "surface": "鮟鱇形", + "readging": "あんこうがた", + "pos": "名詞", + "pn": -0.287277 + }, + { + "surface": "五十音", + "readging": "ごじゅうおん", + "pos": "名詞", + "pn": -0.28728 + }, + { + "surface": "倉敷料", + "readging": "くらしきりょう", + "pos": "名詞", + "pn": -0.287282 + }, + { + "surface": "成年", + "readging": "せいねん", + "pos": "名詞", + "pn": -0.287288 + }, + { + "surface": "トロッコ", + "readging": "トロッコ", + "pos": "名詞", + "pn": -0.287298 + }, + { + "surface": "広義", + "readging": "こうぎ", + "pos": "名詞", + "pn": -0.28732 + }, + { + "surface": "珍蔵", + "readging": "ちんぞう", + "pos": "名詞", + "pn": -0.287345 + }, + { + "surface": "飛道具", + "readging": "とびどうぐ", + "pos": "名詞", + "pn": -0.287359 + }, + { + "surface": "ヒレ", + "readging": "ヒレ", + "pos": "名詞", + "pn": -0.287364 + }, + { + "surface": "ビーフ", + "readging": "ビーフ", + "pos": "名詞", + "pn": -0.287369 + }, + { + "surface": "プロパン", + "readging": "プロパン", + "pos": "名詞", + "pn": -0.28739 + }, + { + "surface": "山内", + "readging": "さんない", + "pos": "名詞", + "pn": -0.287392 + }, + { + "surface": "冬至", + "readging": "とうじ", + "pos": "名詞", + "pn": -0.287394 + }, + { + "surface": "音質", + "readging": "おんしつ", + "pos": "名詞", + "pn": -0.287402 + }, + { + "surface": "土石流", + "readging": "どせきりゅう", + "pos": "名詞", + "pn": -0.287408 + }, + { + "surface": "暴走", + "readging": "ぼうそう", + "pos": "名詞", + "pn": -0.287418 + }, + { + "surface": "曲目", + "readging": "きょくもく", + "pos": "名詞", + "pn": -0.287425 + }, + { + "surface": "クーポン", + "readging": "クーポン", + "pos": "名詞", + "pn": -0.287446 + }, + { + "surface": "安山岩", + "readging": "あんざんがん", + "pos": "名詞", + "pn": -0.287465 + }, + { + "surface": "唐桟", + "readging": "とうざん", + "pos": "名詞", + "pn": -0.287497 + }, + { + "surface": "レシピ", + "readging": "レシピ", + "pos": "名詞", + "pn": -0.2875 + }, + { + "surface": "硝石", + "readging": "しょうせき", + "pos": "名詞", + "pn": -0.287504 + }, + { + "surface": "カトリック教", + "readging": "カトリックきょう", + "pos": "名詞", + "pn": -0.28752 + }, + { + "surface": "営団", + "readging": "えいだん", + "pos": "名詞", + "pn": -0.287524 + }, + { + "surface": "原人", + "readging": "げんじん", + "pos": "名詞", + "pn": -0.287543 + }, + { + "surface": "辰巳上り", + "readging": "たつみあがり", + "pos": "名詞", + "pn": -0.28755 + }, + { + "surface": "博多帯", + "readging": "はかたおび", + "pos": "名詞", + "pn": -0.287568 + }, + { + "surface": "返杯", + "readging": "へんぱい", + "pos": "名詞", + "pn": -0.287586 + }, + { + "surface": "文芸", + "readging": "ぶんげい", + "pos": "名詞", + "pn": -0.287588 + }, + { + "surface": "部屋住", + "readging": "へやずみ", + "pos": "名詞", + "pn": -0.287618 + }, + { + "surface": "聾桟敷", + "readging": "つんぼさじき", + "pos": "名詞", + "pn": -0.287625 + }, + { + "surface": "金融資本", + "readging": "きんゆうしほん", + "pos": "名詞", + "pn": -0.28763 + }, + { + "surface": "三代相恩", + "readging": "さんだいそうおん", + "pos": "名詞", + "pn": -0.287649 + }, + { + "surface": "室内楽", + "readging": "しつないがく", + "pos": "名詞", + "pn": -0.287663 + }, + { + "surface": "鷹匠", + "readging": "たかじょう", + "pos": "名詞", + "pn": -0.287671 + }, + { + "surface": "縄延び", + "readging": "なわのび", + "pos": "名詞", + "pn": -0.287735 + }, + { + "surface": "商工", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.287743 + }, + { + "surface": "現在地", + "readging": "げんざいち", + "pos": "名詞", + "pn": -0.287751 + }, + { + "surface": "回転軸", + "readging": "かいてんじく", + "pos": "名詞", + "pn": -0.287751 + }, + { + "surface": "数数", + "readging": "かずかず", + "pos": "名詞", + "pn": -0.287755 + }, + { + "surface": "品柄", + "readging": "しながら", + "pos": "名詞", + "pn": -0.287771 + }, + { + "surface": "止", + "readging": "し", + "pos": "名詞", + "pn": -0.287816 + }, + { + "surface": "肋木", + "readging": "ろくぼく", + "pos": "名詞", + "pn": -0.287827 + }, + { + "surface": "グルタミン", + "readging": "グルタミン", + "pos": "名詞", + "pn": -0.287835 + }, + { + "surface": "原虫", + "readging": "げんちゅう", + "pos": "名詞", + "pn": -0.287836 + }, + { + "surface": "引綿", + "readging": "ひきわた", + "pos": "名詞", + "pn": -0.287848 + }, + { + "surface": "カバー", + "readging": "カバー", + "pos": "名詞", + "pn": -0.287861 + }, + { + "surface": "ランナー", + "readging": "ランナー", + "pos": "名詞", + "pn": -0.287864 + }, + { + "surface": "公準", + "readging": "こうじゅん", + "pos": "名詞", + "pn": -0.28787 + }, + { + "surface": "豪邸", + "readging": "ごうてい", + "pos": "名詞", + "pn": -0.287875 + }, + { + "surface": "精神衛生", + "readging": "せいしんえいせい", + "pos": "名詞", + "pn": -0.287898 + }, + { + "surface": "勅勘", + "readging": "ちょっかん", + "pos": "名詞", + "pn": -0.287911 + }, + { + "surface": "唐金", + "readging": "からかね", + "pos": "名詞", + "pn": -0.287921 + }, + { + "surface": "実験式", + "readging": "じっけんしき", + "pos": "名詞", + "pn": -0.287932 + }, + { + "surface": "くさくさ", + "readging": "くさくさ", + "pos": "副詞", + "pn": -0.287934 + }, + { + "surface": "ニュース", + "readging": "ニュースキャスター", + "pos": "名詞", + "pn": -0.287935 + }, + { + "surface": "大回り", + "readging": "おおまわり", + "pos": "名詞", + "pn": -0.287943 + }, + { + "surface": "読本", + "readging": "よみほん", + "pos": "名詞", + "pn": -0.287961 + }, + { + "surface": "恐怖症", + "readging": "きょうふしょう", + "pos": "名詞", + "pn": -0.28797 + }, + { + "surface": "ぐっと", + "readging": "ぐっと", + "pos": "副詞", + "pn": -0.28798 + }, + { + "surface": "端渓", + "readging": "たんけい", + "pos": "名詞", + "pn": -0.28798 + }, + { + "surface": "線分", + "readging": "せんぶん", + "pos": "名詞", + "pn": -0.287982 + }, + { + "surface": "僧兵", + "readging": "そうへい", + "pos": "名詞", + "pn": -0.288015 + }, + { + "surface": "外様", + "readging": "とざま", + "pos": "名詞", + "pn": -0.288025 + }, + { + "surface": "見殺し", + "readging": "みごろし", + "pos": "名詞", + "pn": -0.288045 + }, + { + "surface": "甘い", + "readging": "あまい", + "pos": "形容詞", + "pn": -0.288049 + }, + { + "surface": "植林", + "readging": "しょくりん", + "pos": "名詞", + "pn": -0.28805 + }, + { + "surface": "紅一点", + "readging": "こういってん", + "pos": "名詞", + "pn": -0.288055 + }, + { + "surface": "漸層法", + "readging": "ぜんそうほう", + "pos": "名詞", + "pn": -0.288082 + }, + { + "surface": "器楽", + "readging": "きがく", + "pos": "名詞", + "pn": -0.288096 + }, + { + "surface": "家扶", + "readging": "かふ", + "pos": "名詞", + "pn": -0.288098 + }, + { + "surface": "ノズル", + "readging": "ノズル", + "pos": "名詞", + "pn": -0.288108 + }, + { + "surface": "薬研堀", + "readging": "やげんぼり", + "pos": "名詞", + "pn": -0.288139 + }, + { + "surface": "銀灰色", + "readging": "ぎんかいしょく", + "pos": "名詞", + "pn": -0.288152 + }, + { + "surface": "凪", + "readging": "なぎ", + "pos": "名詞", + "pn": -0.288165 + }, + { + "surface": "命からがら", + "readging": "いのちからがら", + "pos": "副詞", + "pn": -0.288196 + }, + { + "surface": "直訳", + "readging": "ちょくやく", + "pos": "名詞", + "pn": -0.288201 + }, + { + "surface": "琴柱", + "readging": "ことじ", + "pos": "名詞", + "pn": -0.288201 + }, + { + "surface": "のろ", + "readging": "のろ", + "pos": "名詞", + "pn": -0.28822 + }, + { + "surface": "切言", + "readging": "せつげん", + "pos": "名詞", + "pn": -0.288226 + }, + { + "surface": "臥煙", + "readging": "がえん", + "pos": "名詞", + "pn": -0.288227 + }, + { + "surface": "吐剤", + "readging": "とざい", + "pos": "名詞", + "pn": -0.288228 + }, + { + "surface": "詩歌", + "readging": "しいか", + "pos": "名詞", + "pn": -0.28823 + }, + { + "surface": "下人", + "readging": "げにん", + "pos": "名詞", + "pn": -0.288268 + }, + { + "surface": "寵姫", + "readging": "ちょうき", + "pos": "名詞", + "pn": -0.288273 + }, + { + "surface": "拍子木", + "readging": "ひょうしぎ", + "pos": "名詞", + "pn": -0.288279 + }, + { + "surface": "別天地", + "readging": "べってんち", + "pos": "名詞", + "pn": -0.288281 + }, + { + "surface": "蔵版", + "readging": "ぞうはん", + "pos": "名詞", + "pn": -0.28829 + }, + { + "surface": "無風", + "readging": "むふう", + "pos": "名詞", + "pn": -0.288294 + }, + { + "surface": "冬草", + "readging": "ふゆくさ", + "pos": "名詞", + "pn": -0.288304 + }, + { + "surface": "飲み食い", + "readging": "のみくい", + "pos": "名詞", + "pn": -0.288312 + }, + { + "surface": "年の功", + "readging": "としのこう", + "pos": "名詞", + "pn": -0.288364 + }, + { + "surface": "式場", + "readging": "しきじょう", + "pos": "名詞", + "pn": -0.288364 + }, + { + "surface": "生り年", + "readging": "なりどし", + "pos": "名詞", + "pn": -0.288365 + }, + { + "surface": "実刑", + "readging": "じっけい", + "pos": "名詞", + "pn": -0.28838 + }, + { + "surface": "気付く", + "readging": "きづく", + "pos": "動詞", + "pn": -0.28839 + }, + { + "surface": "バラード", + "readging": "バラード", + "pos": "名詞", + "pn": -0.288404 + }, + { + "surface": "延竿", + "readging": "のべざお", + "pos": "名詞", + "pn": -0.288419 + }, + { + "surface": "法貨", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.288422 + }, + { + "surface": "アフタヌーン", + "readging": "アフタヌーン", + "pos": "名詞", + "pn": -0.288431 + }, + { + "surface": "山猫", + "readging": "やまねこ", + "pos": "名詞", + "pn": -0.288448 + }, + { + "surface": "幽する", + "readging": "ゆうする", + "pos": "動詞", + "pn": -0.288458 + }, + { + "surface": "多事", + "readging": "たじ", + "pos": "名詞", + "pn": -0.288477 + }, + { + "surface": "地肌", + "readging": "じはだ", + "pos": "名詞", + "pn": -0.288482 + }, + { + "surface": "瀝青炭", + "readging": "れきせいたん", + "pos": "名詞", + "pn": -0.288496 + }, + { + "surface": "まったり", + "readging": "まったり", + "pos": "副詞", + "pn": -0.288503 + }, + { + "surface": "即今", + "readging": "そっこん", + "pos": "名詞", + "pn": -0.288512 + }, + { + "surface": "紅毛碧眼", + "readging": "こうもうへきがん", + "pos": "名詞", + "pn": -0.288516 + }, + { + "surface": "毛並", + "readging": "けなみ", + "pos": "名詞", + "pn": -0.288527 + }, + { + "surface": "票田", + "readging": "ひょうでん", + "pos": "名詞", + "pn": -0.288533 + }, + { + "surface": "隋", + "readging": "ずい", + "pos": "名詞", + "pn": -0.288538 + }, + { + "surface": "製茶", + "readging": "せいちゃ", + "pos": "名詞", + "pn": -0.288553 + }, + { + "surface": "土器", + "readging": "かわらけ", + "pos": "名詞", + "pn": -0.288557 + }, + { + "surface": "知略", + "readging": "ちりゃく", + "pos": "名詞", + "pn": -0.288574 + }, + { + "surface": "願主", + "readging": "がんしゅ", + "pos": "名詞", + "pn": -0.28861 + }, + { + "surface": "レポーター", + "readging": "レポーター", + "pos": "名詞", + "pn": -0.288622 + }, + { + "surface": "強まる", + "readging": "つよまる", + "pos": "動詞", + "pn": -0.288635 + }, + { + "surface": "水仕事", + "readging": "みずしごと", + "pos": "名詞", + "pn": -0.288636 + }, + { + "surface": "虫ピン", + "readging": "むしピン", + "pos": "名詞", + "pn": -0.288642 + }, + { + "surface": "熱源", + "readging": "ねつげん", + "pos": "名詞", + "pn": -0.288642 + }, + { + "surface": "ダイエット", + "readging": "ダイエット", + "pos": "名詞", + "pn": -0.288667 + }, + { + "surface": "義理", + "readging": "ぎり", + "pos": "名詞", + "pn": -0.288677 + }, + { + "surface": "正目", + "readging": "しょうめ", + "pos": "名詞", + "pn": -0.28869 + }, + { + "surface": "伝導", + "readging": "でんどう", + "pos": "名詞", + "pn": -0.288694 + }, + { + "surface": "現物", + "readging": "げんぶつ", + "pos": "名詞", + "pn": -0.288702 + }, + { + "surface": "書出し", + "readging": "かきだし", + "pos": "名詞", + "pn": -0.288706 + }, + { + "surface": "デザート", + "readging": "デザート", + "pos": "名詞", + "pn": -0.288716 + }, + { + "surface": "写真測量", + "readging": "しゃしんそくりょう", + "pos": "名詞", + "pn": -0.288721 + }, + { + "surface": "天辺", + "readging": "てっぺん", + "pos": "名詞", + "pn": -0.288747 + }, + { + "surface": "粗飯", + "readging": "そはん", + "pos": "名詞", + "pn": -0.28875 + }, + { + "surface": "がぶりと", + "readging": "がぶりと", + "pos": "副詞", + "pn": -0.288767 + }, + { + "surface": "楽曲", + "readging": "がっきょく", + "pos": "名詞", + "pn": -0.288773 + }, + { + "surface": "蛸入道", + "readging": "たこにゅうどう", + "pos": "名詞", + "pn": -0.288779 + }, + { + "surface": "二の丸", + "readging": "にのまる", + "pos": "名詞", + "pn": -0.2888 + }, + { + "surface": "青梅", + "readging": "あおうめ", + "pos": "名詞", + "pn": -0.288809 + }, + { + "surface": "過燐酸石灰", + "readging": "かりんさんせっかい", + "pos": "名詞", + "pn": -0.288837 + }, + { + "surface": "末位", + "readging": "まつい", + "pos": "名詞", + "pn": -0.288841 + }, + { + "surface": "焼成", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.288873 + }, + { + "surface": "司", + "readging": "つかさ", + "pos": "名詞", + "pn": -0.288889 + }, + { + "surface": "ボースン", + "readging": "ボースン", + "pos": "名詞", + "pn": -0.288891 + }, + { + "surface": "郷士", + "readging": "ごうし", + "pos": "名詞", + "pn": -0.288912 + }, + { + "surface": "調製", + "readging": "ちょうせい", + "pos": "名詞", + "pn": -0.288931 + }, + { + "surface": "警笛", + "readging": "けいてき", + "pos": "名詞", + "pn": -0.28894 + }, + { + "surface": "揺り籠", + "readging": "ゆりかご", + "pos": "名詞", + "pn": -0.288951 + }, + { + "surface": "憲", + "readging": "けん", + "pos": "名詞", + "pn": -0.288957 + }, + { + "surface": "マスタード", + "readging": "マスタード", + "pos": "名詞", + "pn": -0.288991 + }, + { + "surface": "内在", + "readging": "ないざい", + "pos": "名詞", + "pn": -0.289007 + }, + { + "surface": "主点", + "readging": "しゅてん", + "pos": "名詞", + "pn": -0.289021 + }, + { + "surface": "音盤", + "readging": "おんばん", + "pos": "名詞", + "pn": -0.289048 + }, + { + "surface": "不必要", + "readging": "ふひつよう", + "pos": "名詞", + "pn": -0.289052 + }, + { + "surface": "ラーゲル", + "readging": "ラーゲル", + "pos": "名詞", + "pn": -0.289058 + }, + { + "surface": "攻寄る", + "readging": "せめよる", + "pos": "動詞", + "pn": -0.28908 + }, + { + "surface": "初めまして", + "readging": "はじめまして", + "pos": "副詞", + "pn": -0.289099 + }, + { + "surface": "退役", + "readging": "たいえき", + "pos": "名詞", + "pn": -0.289105 + }, + { + "surface": "風琴", + "readging": "ふうきん", + "pos": "名詞", + "pn": -0.289112 + }, + { + "surface": "気立て", + "readging": "きだて", + "pos": "名詞", + "pn": -0.289143 + }, + { + "surface": "イメージ", + "readging": "イメージ", + "pos": "名詞", + "pn": -0.289151 + }, + { + "surface": "リハーサル", + "readging": "リハーサル", + "pos": "名詞", + "pn": -0.289155 + }, + { + "surface": "ハイジャック", + "readging": "ハイジャック", + "pos": "名詞", + "pn": -0.289171 + }, + { + "surface": "修士", + "readging": "しゅうし", + "pos": "名詞", + "pn": -0.289182 + }, + { + "surface": "雪女", + "readging": "ゆきおんな", + "pos": "名詞", + "pn": -0.289218 + }, + { + "surface": "山陰", + "readging": "さんいん", + "pos": "名詞", + "pn": -0.289218 + }, + { + "surface": "端本", + "readging": "はほん", + "pos": "名詞", + "pn": -0.289248 + }, + { + "surface": "口答え", + "readging": "くちごたえ", + "pos": "名詞", + "pn": -0.289283 + }, + { + "surface": "肺門", + "readging": "はいもん", + "pos": "名詞", + "pn": -0.289285 + }, + { + "surface": "神域", + "readging": "しんいき", + "pos": "名詞", + "pn": -0.289301 + }, + { + "surface": "人足", + "readging": "にんそく", + "pos": "名詞", + "pn": -0.289311 + }, + { + "surface": "前膊骨", + "readging": "ぜんはくこつ", + "pos": "名詞", + "pn": -0.289315 + }, + { + "surface": "局紙", + "readging": "きょくし", + "pos": "名詞", + "pn": -0.289316 + }, + { + "surface": "小刀", + "readging": "こがたな", + "pos": "名詞", + "pn": -0.289326 + }, + { + "surface": "子細", + "readging": "しさい", + "pos": "名詞", + "pn": -0.28933 + }, + { + "surface": "拝復", + "readging": "はいふく", + "pos": "名詞", + "pn": -0.289332 + }, + { + "surface": "縫込み", + "readging": "ぬいこみ", + "pos": "名詞", + "pn": -0.289339 + }, + { + "surface": "冬芽", + "readging": "とうが", + "pos": "名詞", + "pn": -0.289342 + }, + { + "surface": "ピストン", + "readging": "ピストン", + "pos": "名詞", + "pn": -0.289343 + }, + { + "surface": "攻寄せる", + "readging": "せめよせる", + "pos": "動詞", + "pn": -0.289354 + }, + { + "surface": "朱泥", + "readging": "しゅでい", + "pos": "名詞", + "pn": -0.289369 + }, + { + "surface": "盲従", + "readging": "もうじゅう", + "pos": "名詞", + "pn": -0.289389 + }, + { + "surface": "菜切包丁", + "readging": "なきりぼうちょう", + "pos": "名詞", + "pn": -0.289395 + }, + { + "surface": "横長", + "readging": "よこなが", + "pos": "名詞", + "pn": -0.289428 + }, + { + "surface": "安物", + "readging": "やすもの", + "pos": "名詞", + "pn": -0.289448 + }, + { + "surface": "点検", + "readging": "てんけん", + "pos": "名詞", + "pn": -0.28945 + }, + { + "surface": "外法", + "readging": "そとのり", + "pos": "名詞", + "pn": -0.289504 + }, + { + "surface": "霧吹", + "readging": "きりふき", + "pos": "名詞", + "pn": -0.28952 + }, + { + "surface": "直披", + "readging": "じきひ", + "pos": "名詞", + "pn": -0.289544 + }, + { + "surface": "遊技", + "readging": "ゆうぎ", + "pos": "名詞", + "pn": -0.289545 + }, + { + "surface": "上の句", + "readging": "かみのく", + "pos": "名詞", + "pn": -0.289552 + }, + { + "surface": "撓る", + "readging": "しわる", + "pos": "動詞", + "pn": -0.28956 + }, + { + "surface": "議長", + "readging": "ぎちょう", + "pos": "名詞", + "pn": -0.289571 + }, + { + "surface": "決闘", + "readging": "けっとう", + "pos": "名詞", + "pn": -0.289595 + }, + { + "surface": "突如", + "readging": "とつじょ", + "pos": "副詞", + "pn": -0.289598 + }, + { + "surface": "運算", + "readging": "うんざん", + "pos": "名詞", + "pn": -0.289605 + }, + { + "surface": "開港", + "readging": "かいこう", + "pos": "名詞", + "pn": -0.289609 + }, + { + "surface": "山村", + "readging": "さんそん", + "pos": "名詞", + "pn": -0.289612 + }, + { + "surface": "直接税", + "readging": "ちょくせつぜい", + "pos": "名詞", + "pn": -0.289648 + }, + { + "surface": "謹啓", + "readging": "きんけい", + "pos": "名詞", + "pn": -0.28965 + }, + { + "surface": "宮仕え", + "readging": "みやづかえ", + "pos": "名詞", + "pn": -0.28968 + }, + { + "surface": "落し胤", + "readging": "おとしだね", + "pos": "名詞", + "pn": -0.289697 + }, + { + "surface": "通語", + "readging": "つうご", + "pos": "名詞", + "pn": -0.289698 + }, + { + "surface": "視界", + "readging": "しかい", + "pos": "名詞", + "pn": -0.289704 + }, + { + "surface": "金物", + "readging": "かなもの", + "pos": "名詞", + "pn": -0.289722 + }, + { + "surface": "水準器", + "readging": "すいじゅんき", + "pos": "名詞", + "pn": -0.289749 + }, + { + "surface": "抗う", + "readging": "あらがう", + "pos": "動詞", + "pn": -0.28975 + }, + { + "surface": "特進", + "readging": "とくしん", + "pos": "名詞", + "pn": -0.289771 + }, + { + "surface": "モーメント", + "readging": "モーメント", + "pos": "名詞", + "pn": -0.289773 + }, + { + "surface": "認証", + "readging": "にんしょう", + "pos": "名詞", + "pn": -0.289775 + }, + { + "surface": "支流", + "readging": "しりゅう", + "pos": "名詞", + "pn": -0.289791 + }, + { + "surface": "マホガニー", + "readging": "マホガニー", + "pos": "名詞", + "pn": -0.289804 + }, + { + "surface": "軍人", + "readging": "ぐんじん", + "pos": "名詞", + "pn": -0.28981 + }, + { + "surface": "嗜好品", + "readging": "しこうひん", + "pos": "名詞", + "pn": -0.289836 + }, + { + "surface": "横書き", + "readging": "よこがき", + "pos": "名詞", + "pn": -0.289871 + }, + { + "surface": "欲深", + "readging": "よくふか", + "pos": "名詞", + "pn": -0.289878 + }, + { + "surface": "肌", + "readging": "はだ", + "pos": "名詞", + "pn": -0.289894 + }, + { + "surface": "ホーム", + "readging": "ホームドラマ", + "pos": "名詞", + "pn": -0.289906 + }, + { + "surface": "サポーター", + "readging": "サポーター", + "pos": "名詞", + "pn": -0.289924 + }, + { + "surface": "申開き", + "readging": "もうしひらき", + "pos": "名詞", + "pn": -0.289942 + }, + { + "surface": "代謝", + "readging": "たいしゃ", + "pos": "名詞", + "pn": -0.289956 + }, + { + "surface": "ピリン系", + "readging": "ピリンけい", + "pos": "名詞", + "pn": -0.289994 + }, + { + "surface": "高利", + "readging": "こうり", + "pos": "名詞", + "pn": -0.289995 + }, + { + "surface": "宛", + "readging": "ずつ", + "pos": "名詞", + "pn": -0.289998 + }, + { + "surface": "性向", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.290007 + }, + { + "surface": "仲働き", + "readging": "なかばたらき", + "pos": "名詞", + "pn": -0.290013 + }, + { + "surface": "ドナー", + "readging": "ドナー", + "pos": "名詞", + "pn": -0.290029 + }, + { + "surface": "拡散", + "readging": "かくさん", + "pos": "名詞", + "pn": -0.290035 + }, + { + "surface": "リース", + "readging": "リース", + "pos": "名詞", + "pn": -0.290038 + }, + { + "surface": "盲法師", + "readging": "めくらほうし", + "pos": "名詞", + "pn": -0.290043 + }, + { + "surface": "落札", + "readging": "らくさつ", + "pos": "名詞", + "pn": -0.290049 + }, + { + "surface": "免", + "readging": "めん", + "pos": "名詞", + "pn": -0.290056 + }, + { + "surface": "国境", + "readging": "こっきょう", + "pos": "名詞", + "pn": -0.290058 + }, + { + "surface": "クルス", + "readging": "クルス", + "pos": "名詞", + "pn": -0.290065 + }, + { + "surface": "禿鷹", + "readging": "はげたか", + "pos": "名詞", + "pn": -0.290083 + }, + { + "surface": "呵呵", + "readging": "かか", + "pos": "名詞", + "pn": -0.290088 + }, + { + "surface": "使丁", + "readging": "してい", + "pos": "名詞", + "pn": -0.290089 + }, + { + "surface": "心慮", + "readging": "しんりょ", + "pos": "名詞", + "pn": -0.290092 + }, + { + "surface": "敷石", + "readging": "しきいし", + "pos": "名詞", + "pn": -0.290115 + }, + { + "surface": "斡旋", + "readging": "あっせん", + "pos": "名詞", + "pn": -0.290115 + }, + { + "surface": "来週", + "readging": "らいしゅう", + "pos": "名詞", + "pn": -0.290116 + }, + { + "surface": "貢", + "readging": "みつぎ", + "pos": "名詞", + "pn": -0.290128 + }, + { + "surface": "コンタクト", + "readging": "コンタクト", + "pos": "名詞", + "pn": -0.290172 + }, + { + "surface": "子規", + "readging": "しき", + "pos": "名詞", + "pn": -0.290189 + }, + { + "surface": "防食", + "readging": "ぼうしょく", + "pos": "名詞", + "pn": -0.2902 + }, + { + "surface": "毒除け", + "readging": "どくよけ", + "pos": "名詞", + "pn": -0.2902 + }, + { + "surface": "さら地", + "readging": "さらち", + "pos": "名詞", + "pn": -0.290204 + }, + { + "surface": "リバイバル", + "readging": "リバイバル", + "pos": "名詞", + "pn": -0.290219 + }, + { + "surface": "吾妻コート", + "readging": "あずまコート", + "pos": "名詞", + "pn": -0.29023 + }, + { + "surface": "屠腹", + "readging": "とふく", + "pos": "名詞", + "pn": -0.290244 + }, + { + "surface": "理事", + "readging": "りじ", + "pos": "名詞", + "pn": -0.290249 + }, + { + "surface": "文科", + "readging": "ぶんか", + "pos": "名詞", + "pn": -0.290256 + }, + { + "surface": "断髪", + "readging": "だんぱつ", + "pos": "名詞", + "pn": -0.290293 + }, + { + "surface": "武官", + "readging": "ぶかん", + "pos": "名詞", + "pn": -0.290299 + }, + { + "surface": "万葉仮名", + "readging": "まんようがな", + "pos": "名詞", + "pn": -0.290313 + }, + { + "surface": "水陸", + "readging": "すいりく", + "pos": "名詞", + "pn": -0.290323 + }, + { + "surface": "対峙", + "readging": "たいじ", + "pos": "名詞", + "pn": -0.290333 + }, + { + "surface": "胴抜き", + "readging": "どうぬき", + "pos": "名詞", + "pn": -0.290358 + }, + { + "surface": "権利金", + "readging": "けんりきん", + "pos": "名詞", + "pn": -0.290361 + }, + { + "surface": "活断層", + "readging": "かつだんそう", + "pos": "名詞", + "pn": -0.290361 + }, + { + "surface": "類同", + "readging": "るいどう", + "pos": "名詞", + "pn": -0.290364 + }, + { + "surface": "洗剤", + "readging": "せんざい", + "pos": "名詞", + "pn": -0.290401 + }, + { + "surface": "オーム", + "readging": "オーム", + "pos": "名詞", + "pn": -0.290405 + }, + { + "surface": "禁書", + "readging": "きんしょ", + "pos": "名詞", + "pn": -0.290422 + }, + { + "surface": "祭", + "readging": "まつり", + "pos": "名詞", + "pn": -0.290426 + }, + { + "surface": "力抜け", + "readging": "ちからぬけ", + "pos": "名詞", + "pn": -0.290438 + }, + { + "surface": "落款", + "readging": "らっかん", + "pos": "名詞", + "pn": -0.290442 + }, + { + "surface": "ファースト", + "readging": "ファーストレディー", + "pos": "名詞", + "pn": -0.290449 + }, + { + "surface": "練磨", + "readging": "れんま", + "pos": "名詞", + "pn": -0.290457 + }, + { + "surface": "ボルシェビキ", + "readging": "ボルシェビキ", + "pos": "名詞", + "pn": -0.290463 + }, + { + "surface": "俗務", + "readging": "ぞくむ", + "pos": "名詞", + "pn": -0.290464 + }, + { + "surface": "見付", + "readging": "みつけ", + "pos": "名詞", + "pn": -0.290505 + }, + { + "surface": "角刈り", + "readging": "かくがり", + "pos": "名詞", + "pn": -0.290516 + }, + { + "surface": "ガイド", + "readging": "ガイドライン", + "pos": "名詞", + "pn": -0.290535 + }, + { + "surface": "本絹", + "readging": "ほんけん", + "pos": "名詞", + "pn": -0.290574 + }, + { + "surface": "電送", + "readging": "でんそう", + "pos": "名詞", + "pn": -0.290578 + }, + { + "surface": "一倍", + "readging": "いちばい", + "pos": "名詞", + "pn": -0.290588 + }, + { + "surface": "プチブル", + "readging": "プチブル", + "pos": "名詞", + "pn": -0.290605 + }, + { + "surface": "番屋", + "readging": "ばんや", + "pos": "名詞", + "pn": -0.290606 + }, + { + "surface": "腰椎", + "readging": "ようつい", + "pos": "名詞", + "pn": -0.290608 + }, + { + "surface": "船出", + "readging": "ふなで", + "pos": "名詞", + "pn": -0.290613 + }, + { + "surface": "参禅", + "readging": "さんぜん", + "pos": "名詞", + "pn": -0.290616 + }, + { + "surface": "雁木", + "readging": "がんぎ", + "pos": "名詞", + "pn": -0.29062 + }, + { + "surface": "妻子", + "readging": "さいし", + "pos": "名詞", + "pn": -0.290621 + }, + { + "surface": "馴初め", + "readging": "なれそめ", + "pos": "名詞", + "pn": -0.29063 + }, + { + "surface": "組討", + "readging": "くみうち", + "pos": "名詞", + "pn": -0.290651 + }, + { + "surface": "版権", + "readging": "はんけん", + "pos": "名詞", + "pn": -0.290655 + }, + { + "surface": "デュエット", + "readging": "デュエット", + "pos": "名詞", + "pn": -0.290655 + }, + { + "surface": "指笛", + "readging": "ゆびぶえ", + "pos": "名詞", + "pn": -0.290657 + }, + { + "surface": "造園", + "readging": "ぞうえん", + "pos": "名詞", + "pn": -0.290673 + }, + { + "surface": "歯齦", + "readging": "しぎん", + "pos": "名詞", + "pn": -0.290694 + }, + { + "surface": "船橋", + "readging": "ふなばし", + "pos": "名詞", + "pn": -0.290697 + }, + { + "surface": "客年", + "readging": "かくねん", + "pos": "名詞", + "pn": -0.290757 + }, + { + "surface": "儀礼", + "readging": "ぎれい", + "pos": "名詞", + "pn": -0.290778 + }, + { + "surface": "論戦", + "readging": "ろんせん", + "pos": "名詞", + "pn": -0.29081 + }, + { + "surface": "新道", + "readging": "しんみち", + "pos": "名詞", + "pn": -0.290832 + }, + { + "surface": "梨地", + "readging": "なしじ", + "pos": "名詞", + "pn": -0.290894 + }, + { + "surface": "沈魚", + "readging": "しずみうお", + "pos": "名詞", + "pn": -0.290908 + }, + { + "surface": "日照", + "readging": "にっしょう", + "pos": "名詞", + "pn": -0.290914 + }, + { + "surface": "楊弓場", + "readging": "ようきゅうば", + "pos": "名詞", + "pn": -0.290926 + }, + { + "surface": "風食", + "readging": "ふうしょく", + "pos": "名詞", + "pn": -0.290944 + }, + { + "surface": "鶏冠", + "readging": "とさか", + "pos": "名詞", + "pn": -0.290946 + }, + { + "surface": "構内", + "readging": "こうない", + "pos": "名詞", + "pn": -0.290956 + }, + { + "surface": "花街", + "readging": "はなまち", + "pos": "名詞", + "pn": -0.29102 + }, + { + "surface": "物書き", + "readging": "ものかき", + "pos": "名詞", + "pn": -0.291063 + }, + { + "surface": "思潮", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.291085 + }, + { + "surface": "胴切り", + "readging": "どうぎり", + "pos": "名詞", + "pn": -0.291101 + }, + { + "surface": "唐丸", + "readging": "とうまる", + "pos": "名詞", + "pn": -0.291123 + }, + { + "surface": "ワゴン", + "readging": "ワゴン", + "pos": "名詞", + "pn": -0.291133 + }, + { + "surface": "ジュニア", + "readging": "ジュニア", + "pos": "名詞", + "pn": -0.291151 + }, + { + "surface": "最小公倍数", + "readging": "さいしょうこうばいすう", + "pos": "名詞", + "pn": -0.291163 + }, + { + "surface": "コンパ", + "readging": "コンパ", + "pos": "名詞", + "pn": -0.291185 + }, + { + "surface": "肌身", + "readging": "はだみ", + "pos": "名詞", + "pn": -0.291207 + }, + { + "surface": "風塵", + "readging": "ふうじん", + "pos": "名詞", + "pn": -0.2913 + }, + { + "surface": "乗越える", + "readging": "のりこえる", + "pos": "動詞", + "pn": -0.291335 + }, + { + "surface": "干乾", + "readging": "ひぼし", + "pos": "名詞", + "pn": -0.291353 + }, + { + "surface": "通言", + "readging": "つうげん", + "pos": "名詞", + "pn": -0.291359 + }, + { + "surface": "鉄色", + "readging": "てついろ", + "pos": "名詞", + "pn": -0.29136 + }, + { + "surface": "左褄", + "readging": "ひだりづま", + "pos": "名詞", + "pn": -0.291399 + }, + { + "surface": "馬返し", + "readging": "うまがえし", + "pos": "名詞", + "pn": -0.291402 + }, + { + "surface": "異域", + "readging": "いいき", + "pos": "名詞", + "pn": -0.291406 + }, + { + "surface": "麻垂", + "readging": "まだれ", + "pos": "名詞", + "pn": -0.291453 + }, + { + "surface": "病垂", + "readging": "やまいだれ", + "pos": "名詞", + "pn": -0.291453 + }, + { + "surface": "戦中派", + "readging": "せんちゅうは", + "pos": "名詞", + "pn": -0.291471 + }, + { + "surface": "底入れ", + "readging": "そこいれ", + "pos": "名詞", + "pn": -0.291477 + }, + { + "surface": "軟文学", + "readging": "なんぶんがく", + "pos": "名詞", + "pn": -0.291481 + }, + { + "surface": "国庫", + "readging": "こっこ", + "pos": "名詞", + "pn": -0.291512 + }, + { + "surface": "塑像", + "readging": "そぞう", + "pos": "名詞", + "pn": -0.291535 + }, + { + "surface": "市長", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.291536 + }, + { + "surface": "ミニマム", + "readging": "ミニマム", + "pos": "名詞", + "pn": -0.291554 + }, + { + "surface": "創始", + "readging": "そうし", + "pos": "名詞", + "pn": -0.291555 + }, + { + "surface": "気に入る", + "readging": "きにいる", + "pos": "動詞", + "pn": -0.291555 + }, + { + "surface": "仕切金", + "readging": "しきりきん", + "pos": "名詞", + "pn": -0.291558 + }, + { + "surface": "卒業", + "readging": "そつぎょう", + "pos": "名詞", + "pn": -0.291601 + }, + { + "surface": "世道", + "readging": "せどう", + "pos": "名詞", + "pn": -0.291608 + }, + { + "surface": "ホーム", + "readging": "ホームシック", + "pos": "名詞", + "pn": -0.29162 + }, + { + "surface": "御物", + "readging": "ぎょぶつ", + "pos": "名詞", + "pn": -0.291621 + }, + { + "surface": "直行", + "readging": "ちょっこう", + "pos": "名詞", + "pn": -0.291626 + }, + { + "surface": "完新世", + "readging": "かんしんせい", + "pos": "名詞", + "pn": -0.291652 + }, + { + "surface": "虎斑", + "readging": "とらふ", + "pos": "名詞", + "pn": -0.291667 + }, + { + "surface": "生化学", + "readging": "せいかがく", + "pos": "名詞", + "pn": -0.291685 + }, + { + "surface": "竹篦", + "readging": "しっぺい", + "pos": "名詞", + "pn": -0.291687 + }, + { + "surface": "古着", + "readging": "ふるぎ", + "pos": "名詞", + "pn": -0.291691 + }, + { + "surface": "ちきり", + "readging": "ちきり", + "pos": "名詞", + "pn": -0.291694 + }, + { + "surface": "屯", + "readging": "とん", + "pos": "名詞", + "pn": -0.291712 + }, + { + "surface": "理想化", + "readging": "りそうか", + "pos": "名詞", + "pn": -0.291722 + }, + { + "surface": "よろけ", + "readging": "よろけ", + "pos": "名詞", + "pn": -0.29174 + }, + { + "surface": "ライン", + "readging": "ラインアップ", + "pos": "名詞", + "pn": -0.291753 + }, + { + "surface": "霧笛", + "readging": "むてき", + "pos": "名詞", + "pn": -0.291782 + }, + { + "surface": "向光性", + "readging": "こうこうせい", + "pos": "名詞", + "pn": -0.291783 + }, + { + "surface": "運賃", + "readging": "うんちん", + "pos": "名詞", + "pn": -0.291809 + }, + { + "surface": "試論", + "readging": "しろん", + "pos": "名詞", + "pn": -0.291816 + }, + { + "surface": "遠島", + "readging": "えんとう", + "pos": "名詞", + "pn": -0.291823 + }, + { + "surface": "頭蓋", + "readging": "ずがい", + "pos": "名詞", + "pn": -0.291837 + }, + { + "surface": "小分け", + "readging": "こわけ", + "pos": "名詞", + "pn": -0.291844 + }, + { + "surface": "睦月", + "readging": "むつき", + "pos": "名詞", + "pn": -0.291856 + }, + { + "surface": "底辺", + "readging": "ていへん", + "pos": "名詞", + "pn": -0.291862 + }, + { + "surface": "突っ込み", + "readging": "つっこみ", + "pos": "名詞", + "pn": -0.291863 + }, + { + "surface": "官僚", + "readging": "かんりょう", + "pos": "名詞", + "pn": -0.291863 + }, + { + "surface": "僧俗", + "readging": "そうぞく", + "pos": "名詞", + "pn": -0.291893 + }, + { + "surface": "砂岩", + "readging": "しゃがん", + "pos": "名詞", + "pn": -0.291925 + }, + { + "surface": "二の酉", + "readging": "にのとり", + "pos": "名詞", + "pn": -0.291926 + }, + { + "surface": "位牌", + "readging": "いはい", + "pos": "名詞", + "pn": -0.291926 + }, + { + "surface": "浮き沈み", + "readging": "うきしずみ", + "pos": "名詞", + "pn": -0.291937 + }, + { + "surface": "改めて", + "readging": "あらためて", + "pos": "副詞", + "pn": -0.291937 + }, + { + "surface": "取回し", + "readging": "とりまわし", + "pos": "名詞", + "pn": -0.291967 + }, + { + "surface": "禽舎", + "readging": "きんしゃ", + "pos": "名詞", + "pn": -0.291976 + }, + { + "surface": "雑俳", + "readging": "ざっぱい", + "pos": "名詞", + "pn": -0.291976 + }, + { + "surface": "硬質", + "readging": "こうしつ", + "pos": "名詞", + "pn": -0.291989 + }, + { + "surface": "ファウル", + "readging": "ファウル", + "pos": "名詞", + "pn": -0.292012 + }, + { + "surface": "桁行", + "readging": "けたゆき", + "pos": "名詞", + "pn": -0.292018 + }, + { + "surface": "じゃれる", + "readging": "じゃれる", + "pos": "動詞", + "pn": -0.292018 + }, + { + "surface": "小作争議", + "readging": "こさくそうぎ", + "pos": "名詞", + "pn": -0.292024 + }, + { + "surface": "無常", + "readging": "むじょう", + "pos": "名詞", + "pn": -0.292025 + }, + { + "surface": "人工知能", + "readging": "じんこうちのう", + "pos": "名詞", + "pn": -0.292037 + }, + { + "surface": "狭霧", + "readging": "さぎり", + "pos": "名詞", + "pn": -0.292051 + }, + { + "surface": "公卿", + "readging": "くぎょう", + "pos": "名詞", + "pn": -0.29206 + }, + { + "surface": "株式会社", + "readging": "かぶしきがいしゃ", + "pos": "名詞", + "pn": -0.292068 + }, + { + "surface": "プロデューサー", + "readging": "プロデューサー", + "pos": "名詞", + "pn": -0.292068 + }, + { + "surface": "洗い粉", + "readging": "あらいこ", + "pos": "名詞", + "pn": -0.292101 + }, + { + "surface": "ジンジャー", + "readging": "ジンジャーエール", + "pos": "名詞", + "pn": -0.29212 + }, + { + "surface": "スロープ", + "readging": "スロープ", + "pos": "名詞", + "pn": -0.292142 + }, + { + "surface": "本腰", + "readging": "ほんごし", + "pos": "名詞", + "pn": -0.292158 + }, + { + "surface": "踏まえ所", + "readging": "ふまえどころ", + "pos": "名詞", + "pn": -0.292161 + }, + { + "surface": "政令", + "readging": "せいれい", + "pos": "名詞", + "pn": -0.292164 + }, + { + "surface": "腐らす", + "readging": "くさらす", + "pos": "動詞", + "pn": -0.292173 + }, + { + "surface": "説付ける", + "readging": "ときつける", + "pos": "動詞", + "pn": -0.292183 + }, + { + "surface": "減価", + "readging": "げんか", + "pos": "名詞", + "pn": -0.292192 + }, + { + "surface": "火の見", + "readging": "ひのみ", + "pos": "名詞", + "pn": -0.292195 + }, + { + "surface": "時時刻刻", + "readging": "じじこっこく", + "pos": "副詞", + "pn": -0.292209 + }, + { + "surface": "壁代", + "readging": "かべしろ", + "pos": "名詞", + "pn": -0.292233 + }, + { + "surface": "後朝", + "readging": "きぬぎぬ", + "pos": "名詞", + "pn": -0.292238 + }, + { + "surface": "胸襟", + "readging": "きょうきん", + "pos": "名詞", + "pn": -0.292251 + }, + { + "surface": "人屋", + "readging": "ひとや", + "pos": "名詞", + "pn": -0.292254 + }, + { + "surface": "人馬", + "readging": "じんば", + "pos": "名詞", + "pn": -0.292256 + }, + { + "surface": "三目錐", + "readging": "みつめぎり", + "pos": "名詞", + "pn": -0.292265 + }, + { + "surface": "頑として", + "readging": "がんとして", + "pos": "副詞", + "pn": -0.292267 + }, + { + "surface": "常道", + "readging": "じょうどう", + "pos": "名詞", + "pn": -0.292281 + }, + { + "surface": "南", + "readging": "なん", + "pos": "名詞", + "pn": -0.292334 + }, + { + "surface": "がばと", + "readging": "がばと", + "pos": "副詞", + "pn": -0.292338 + }, + { + "surface": "時運", + "readging": "じうん", + "pos": "名詞", + "pn": -0.292366 + }, + { + "surface": "騎士", + "readging": "きし", + "pos": "名詞", + "pn": -0.292396 + }, + { + "surface": "勧誘", + "readging": "かんゆう", + "pos": "名詞", + "pn": -0.292419 + }, + { + "surface": "メンデリズム", + "readging": "メンデリズム", + "pos": "名詞", + "pn": -0.292421 + }, + { + "surface": "氷原", + "readging": "ひょうげん", + "pos": "名詞", + "pn": -0.292424 + }, + { + "surface": "改鋳", + "readging": "かいちゅう", + "pos": "名詞", + "pn": -0.292433 + }, + { + "surface": "苔", + "readging": "こけ", + "pos": "名詞", + "pn": -0.292434 + }, + { + "surface": "ジストマ", + "readging": "ジストマ", + "pos": "名詞", + "pn": -0.292444 + }, + { + "surface": "揚羽蝶", + "readging": "あげはちょう", + "pos": "名詞", + "pn": -0.292451 + }, + { + "surface": "肉筆", + "readging": "にくひつ", + "pos": "名詞", + "pn": -0.292494 + }, + { + "surface": "税理士", + "readging": "ぜいりし", + "pos": "名詞", + "pn": -0.292497 + }, + { + "surface": "追越す", + "readging": "おいこす", + "pos": "動詞", + "pn": -0.292506 + }, + { + "surface": "口開け", + "readging": "くちあけ", + "pos": "名詞", + "pn": -0.292509 + }, + { + "surface": "離散", + "readging": "りさん", + "pos": "名詞", + "pn": -0.292517 + }, + { + "surface": "朝臣", + "readging": "あそん", + "pos": "名詞", + "pn": -0.292518 + }, + { + "surface": "警乗", + "readging": "けいじょう", + "pos": "名詞", + "pn": -0.292542 + }, + { + "surface": "眠り込む", + "readging": "ねむりこむ", + "pos": "動詞", + "pn": -0.292547 + }, + { + "surface": "螟虫", + "readging": "ずいむし", + "pos": "名詞", + "pn": -0.292566 + }, + { + "surface": "制帽", + "readging": "せいぼう", + "pos": "名詞", + "pn": -0.292617 + }, + { + "surface": "へなへな", + "readging": "へなへな", + "pos": "副詞", + "pn": -0.292617 + }, + { + "surface": "筒切り", + "readging": "つつぎり", + "pos": "名詞", + "pn": -0.292633 + }, + { + "surface": "慰霊", + "readging": "いれい", + "pos": "名詞", + "pn": -0.292637 + }, + { + "surface": "定期預金", + "readging": "ていきよきん", + "pos": "名詞", + "pn": -0.292653 + }, + { + "surface": "優退", + "readging": "ゆうたい", + "pos": "名詞", + "pn": -0.292661 + }, + { + "surface": "比重", + "readging": "ひじゅう", + "pos": "名詞", + "pn": -0.292695 + }, + { + "surface": "トロリー バス", + "readging": "トロリー バス", + "pos": "名詞", + "pn": -0.292713 + }, + { + "surface": "触発", + "readging": "しょくはつ", + "pos": "名詞", + "pn": -0.292734 + }, + { + "surface": "中陰", + "readging": "ちゅういん", + "pos": "名詞", + "pn": -0.292739 + }, + { + "surface": "参する", + "readging": "さんする", + "pos": "動詞", + "pn": -0.292745 + }, + { + "surface": "試食", + "readging": "ししょく", + "pos": "名詞", + "pn": -0.292749 + }, + { + "surface": "Z旗", + "readging": "ゼットき", + "pos": "名詞", + "pn": -0.292753 + }, + { + "surface": "初期化", + "readging": "しょきか", + "pos": "名詞", + "pn": -0.292758 + }, + { + "surface": "箱馬車", + "readging": "はこばしゃ", + "pos": "名詞", + "pn": -0.292759 + }, + { + "surface": "ヘブライズム", + "readging": "ヘブライズム", + "pos": "名詞", + "pn": -0.292762 + }, + { + "surface": "皆殺し", + "readging": "みなごろし", + "pos": "名詞", + "pn": -0.292782 + }, + { + "surface": "儒学", + "readging": "じゅがく", + "pos": "名詞", + "pn": -0.292784 + }, + { + "surface": "逆心", + "readging": "ぎゃくしん", + "pos": "名詞", + "pn": -0.292804 + }, + { + "surface": "渇水", + "readging": "かっすい", + "pos": "名詞", + "pn": -0.292816 + }, + { + "surface": "血粉", + "readging": "けっぷん", + "pos": "名詞", + "pn": -0.292821 + }, + { + "surface": "連装", + "readging": "れんそう", + "pos": "名詞", + "pn": -0.292822 + }, + { + "surface": "ブック", + "readging": "ブックエンド", + "pos": "名詞", + "pn": -0.292822 + }, + { + "surface": "現", + "readging": "うつつ", + "pos": "名詞", + "pn": -0.292826 + }, + { + "surface": "レントゲン", + "readging": "レントゲン", + "pos": "名詞", + "pn": -0.292831 + }, + { + "surface": "玉串", + "readging": "たまぐし", + "pos": "名詞", + "pn": -0.292831 + }, + { + "surface": "登り詰める", + "readging": "のぼりつめる", + "pos": "動詞", + "pn": -0.292919 + }, + { + "surface": "腰高", + "readging": "こしだか", + "pos": "名詞", + "pn": -0.29295 + }, + { + "surface": "類縁", + "readging": "るいえん", + "pos": "名詞", + "pn": -0.292952 + }, + { + "surface": "ヘルツ", + "readging": "ヘルツ", + "pos": "名詞", + "pn": -0.292953 + }, + { + "surface": "電柱", + "readging": "でんちゅう", + "pos": "名詞", + "pn": -0.292963 + }, + { + "surface": "更始", + "readging": "こうし", + "pos": "名詞", + "pn": -0.292963 + }, + { + "surface": "首実検", + "readging": "くびじっけん", + "pos": "名詞", + "pn": -0.292968 + }, + { + "surface": "雌蕊", + "readging": "めしべ", + "pos": "名詞", + "pn": -0.29298 + }, + { + "surface": "継親", + "readging": "ままおや", + "pos": "名詞", + "pn": -0.292992 + }, + { + "surface": "主従", + "readging": "しゅじゅう", + "pos": "名詞", + "pn": -0.293011 + }, + { + "surface": "目明し", + "readging": "めあかし", + "pos": "名詞", + "pn": -0.293018 + }, + { + "surface": "指呼", + "readging": "しこ", + "pos": "名詞", + "pn": -0.293029 + }, + { + "surface": "野牛", + "readging": "やぎゅう", + "pos": "名詞", + "pn": -0.29303 + }, + { + "surface": "国振り", + "readging": "くにぶり", + "pos": "名詞", + "pn": -0.29304 + }, + { + "surface": "ひたと", + "readging": "ひたと", + "pos": "副詞", + "pn": -0.293052 + }, + { + "surface": "広場", + "readging": "ひろば", + "pos": "名詞", + "pn": -0.29307 + }, + { + "surface": "門地", + "readging": "もんち", + "pos": "名詞", + "pn": -0.293095 + }, + { + "surface": "試飲", + "readging": "しいん", + "pos": "名詞", + "pn": -0.29311 + }, + { + "surface": "ジャーナル", + "readging": "ジャーナル", + "pos": "名詞", + "pn": -0.293111 + }, + { + "surface": "トーキー", + "readging": "トーキー", + "pos": "名詞", + "pn": -0.293122 + }, + { + "surface": "洒落本", + "readging": "しゃれぼん", + "pos": "名詞", + "pn": -0.293132 + }, + { + "surface": "土塀", + "readging": "どべい", + "pos": "名詞", + "pn": -0.293146 + }, + { + "surface": "転機", + "readging": "てんき", + "pos": "名詞", + "pn": -0.293148 + }, + { + "surface": "ぶらつく", + "readging": "ぶらつく", + "pos": "動詞", + "pn": -0.293159 + }, + { + "surface": "略字", + "readging": "りゃくじ", + "pos": "名詞", + "pn": -0.293187 + }, + { + "surface": "クーロン", + "readging": "クーロン", + "pos": "名詞", + "pn": -0.293188 + }, + { + "surface": "典礼", + "readging": "てんれい", + "pos": "名詞", + "pn": -0.29319 + }, + { + "surface": "柞蚕", + "readging": "さくさん", + "pos": "名詞", + "pn": -0.293208 + }, + { + "surface": "週日", + "readging": "しゅうじつ", + "pos": "名詞", + "pn": -0.29321 + }, + { + "surface": "人民戦線", + "readging": "じんみんせんせん", + "pos": "名詞", + "pn": -0.293227 + }, + { + "surface": "印章", + "readging": "いんしょう", + "pos": "名詞", + "pn": -0.293231 + }, + { + "surface": "ブラシ", + "readging": "ブラシ", + "pos": "名詞", + "pn": -0.293255 + }, + { + "surface": "調髪", + "readging": "ちょうはつ", + "pos": "名詞", + "pn": -0.293266 + }, + { + "surface": "ドッキング", + "readging": "ドッキング", + "pos": "名詞", + "pn": -0.293286 + }, + { + "surface": "涵養", + "readging": "かんよう", + "pos": "名詞", + "pn": -0.293304 + }, + { + "surface": "滅菌", + "readging": "めっきん", + "pos": "名詞", + "pn": -0.293311 + }, + { + "surface": "生き物", + "readging": "いきもの", + "pos": "名詞", + "pn": -0.293319 + }, + { + "surface": "如何様師", + "readging": "いかさまし", + "pos": "名詞", + "pn": -0.293331 + }, + { + "surface": "以来", + "readging": "いらい", + "pos": "名詞", + "pn": -0.293352 + }, + { + "surface": "飲ます", + "readging": "のます", + "pos": "動詞", + "pn": -0.293352 + }, + { + "surface": "取引所", + "readging": "とりひきじょ", + "pos": "名詞", + "pn": -0.293356 + }, + { + "surface": "脳髄", + "readging": "のうずい", + "pos": "名詞", + "pn": -0.293362 + }, + { + "surface": "蒸気機関", + "readging": "じょうききかん", + "pos": "名詞", + "pn": -0.293363 + }, + { + "surface": "言伝え", + "readging": "いいつたえ", + "pos": "名詞", + "pn": -0.293379 + }, + { + "surface": "主筆", + "readging": "しゅひつ", + "pos": "名詞", + "pn": -0.29338 + }, + { + "surface": "プトマイン", + "readging": "プトマイン", + "pos": "名詞", + "pn": -0.293401 + }, + { + "surface": "金魚鉢", + "readging": "きんぎょばち", + "pos": "名詞", + "pn": -0.293412 + }, + { + "surface": "田植", + "readging": "たうえ", + "pos": "名詞", + "pn": -0.293413 + }, + { + "surface": "還暦", + "readging": "かんれき", + "pos": "名詞", + "pn": -0.293415 + }, + { + "surface": "集計", + "readging": "しゅうけい", + "pos": "名詞", + "pn": -0.293421 + }, + { + "surface": "柩車", + "readging": "きゅうしゃ", + "pos": "名詞", + "pn": -0.293424 + }, + { + "surface": "休らう", + "readging": "やすらう", + "pos": "動詞", + "pn": -0.293471 + }, + { + "surface": "浮氷", + "readging": "ふひょう", + "pos": "名詞", + "pn": -0.293473 + }, + { + "surface": "告", + "readging": "こく", + "pos": "名詞", + "pn": -0.293487 + }, + { + "surface": "受話器", + "readging": "じゅわき", + "pos": "名詞", + "pn": -0.293513 + }, + { + "surface": "実定法", + "readging": "じっていほう", + "pos": "名詞", + "pn": -0.293523 + }, + { + "surface": "締約", + "readging": "ていやく", + "pos": "名詞", + "pn": -0.29355 + }, + { + "surface": "一六銀行", + "readging": "いちろくぎんこう", + "pos": "名詞", + "pn": -0.293565 + }, + { + "surface": "ケース", + "readging": "ケーススタディー", + "pos": "名詞", + "pn": -0.293583 + }, + { + "surface": "小松菜", + "readging": "こまつな", + "pos": "名詞", + "pn": -0.293585 + }, + { + "surface": "鳶の者", + "readging": "とびのもの", + "pos": "名詞", + "pn": -0.29359 + }, + { + "surface": "五言", + "readging": "ごごん", + "pos": "名詞", + "pn": -0.293612 + }, + { + "surface": "余生", + "readging": "よせい", + "pos": "名詞", + "pn": -0.293651 + }, + { + "surface": "布陣", + "readging": "ふじん", + "pos": "名詞", + "pn": -0.293653 + }, + { + "surface": "母型", + "readging": "ぼけい", + "pos": "名詞", + "pn": -0.293667 + }, + { + "surface": "足掛け", + "readging": "あしかけ", + "pos": "名詞", + "pn": -0.293686 + }, + { + "surface": "振当てる", + "readging": "ふりあてる", + "pos": "動詞", + "pn": -0.29369 + }, + { + "surface": "幽門", + "readging": "ゆうもん", + "pos": "名詞", + "pn": -0.293708 + }, + { + "surface": "お出でお出で", + "readging": "おいでおいで", + "pos": "名詞", + "pn": -0.29372 + }, + { + "surface": "落人", + "readging": "おちうど", + "pos": "名詞", + "pn": -0.293742 + }, + { + "surface": "白刃", + "readging": "しらは", + "pos": "名詞", + "pn": -0.293774 + }, + { + "surface": "肝", + "readging": "きも", + "pos": "名詞", + "pn": -0.293793 + }, + { + "surface": "過熱", + "readging": "かねつ", + "pos": "名詞", + "pn": -0.293804 + }, + { + "surface": "砲手", + "readging": "ほうしゅ", + "pos": "名詞", + "pn": -0.293817 + }, + { + "surface": "柾", + "readging": "まさ", + "pos": "名詞", + "pn": -0.293821 + }, + { + "surface": "総捲り", + "readging": "そうまくり", + "pos": "名詞", + "pn": -0.293836 + }, + { + "surface": "管理職", + "readging": "かんりしょく", + "pos": "名詞", + "pn": -0.293847 + }, + { + "surface": "白描", + "readging": "はくびょう", + "pos": "名詞", + "pn": -0.293859 + }, + { + "surface": "浜木綿", + "readging": "はまゆう", + "pos": "名詞", + "pn": -0.293859 + }, + { + "surface": "単車", + "readging": "たんしゃ", + "pos": "名詞", + "pn": -0.293862 + }, + { + "surface": "公文書", + "readging": "こうぶんしょ", + "pos": "名詞", + "pn": -0.293879 + }, + { + "surface": "男気", + "readging": "おとこけ", + "pos": "名詞", + "pn": -0.293895 + }, + { + "surface": "終局", + "readging": "しゅうきょく", + "pos": "名詞", + "pn": -0.293899 + }, + { + "surface": "足手纏い", + "readging": "あしてまとい", + "pos": "名詞", + "pn": -0.293904 + }, + { + "surface": "強姦", + "readging": "ごうかん", + "pos": "名詞", + "pn": -0.293906 + }, + { + "surface": "酷吏", + "readging": "こくり", + "pos": "名詞", + "pn": -0.293918 + }, + { + "surface": "地均し", + "readging": "じならし", + "pos": "名詞", + "pn": -0.293918 + }, + { + "surface": "ラーメン", + "readging": "ラーメン", + "pos": "名詞", + "pn": -0.293937 + }, + { + "surface": "後姿", + "readging": "うしろすがた", + "pos": "名詞", + "pn": -0.293948 + }, + { + "surface": "ズーム", + "readging": "ズーム", + "pos": "名詞", + "pn": -0.293955 + }, + { + "surface": "平声", + "readging": "ひょうしょう", + "pos": "名詞", + "pn": -0.293959 + }, + { + "surface": "ペイ", + "readging": "ペイ", + "pos": "名詞", + "pn": -0.29397 + }, + { + "surface": "誇張", + "readging": "こちょう", + "pos": "名詞", + "pn": -0.293975 + }, + { + "surface": "演歌", + "readging": "えんか", + "pos": "名詞", + "pn": -0.294004 + }, + { + "surface": "オードブル", + "readging": "オードブル", + "pos": "名詞", + "pn": -0.294032 + }, + { + "surface": "将軍家", + "readging": "しょうぐんけ", + "pos": "名詞", + "pn": -0.294043 + }, + { + "surface": "馬術", + "readging": "ばじゅつ", + "pos": "名詞", + "pn": -0.294046 + }, + { + "surface": "説法", + "readging": "せっぽう", + "pos": "名詞", + "pn": -0.294073 + }, + { + "surface": "環礁", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.294074 + }, + { + "surface": "解析", + "readging": "かいせき", + "pos": "名詞", + "pn": -0.29408 + }, + { + "surface": "申込む", + "readging": "もうしこむ", + "pos": "動詞", + "pn": -0.294094 + }, + { + "surface": "公式主義", + "readging": "こうしきしゅぎ", + "pos": "名詞", + "pn": -0.294102 + }, + { + "surface": "財団", + "readging": "ざいだん", + "pos": "名詞", + "pn": -0.294109 + }, + { + "surface": "クローク", + "readging": "クローク", + "pos": "名詞", + "pn": -0.294128 + }, + { + "surface": "五十三次", + "readging": "ごじゅうさんつぎ", + "pos": "名詞", + "pn": -0.294133 + }, + { + "surface": "霊室", + "readging": "れいしつ", + "pos": "名詞", + "pn": -0.294138 + }, + { + "surface": "儼乎", + "readging": "げんこ", + "pos": "名詞", + "pn": -0.294162 + }, + { + "surface": "乱数", + "readging": "らんすう", + "pos": "名詞", + "pn": -0.294168 + }, + { + "surface": "泳者", + "readging": "えいしゃ", + "pos": "名詞", + "pn": -0.294186 + }, + { + "surface": "猿真似", + "readging": "さるまね", + "pos": "名詞", + "pn": -0.29422 + }, + { + "surface": "テラコッタ", + "readging": "テラコッタ", + "pos": "名詞", + "pn": -0.29428 + }, + { + "surface": "壁紙", + "readging": "かべがみ", + "pos": "名詞", + "pn": -0.294281 + }, + { + "surface": "権能", + "readging": "けんのう", + "pos": "名詞", + "pn": -0.294322 + }, + { + "surface": "濃紫", + "readging": "こむらさき", + "pos": "名詞", + "pn": -0.294325 + }, + { + "surface": "悪感情", + "readging": "あっかんじょう", + "pos": "名詞", + "pn": -0.29433 + }, + { + "surface": "サナトリウム", + "readging": "サナトリウム", + "pos": "名詞", + "pn": -0.294364 + }, + { + "surface": "飲み代", + "readging": "のみしろ", + "pos": "名詞", + "pn": -0.294364 + }, + { + "surface": "白魔", + "readging": "はくま", + "pos": "名詞", + "pn": -0.294374 + }, + { + "surface": "兵種", + "readging": "へいしゅ", + "pos": "名詞", + "pn": -0.294395 + }, + { + "surface": "月忌", + "readging": "がっき", + "pos": "名詞", + "pn": -0.294417 + }, + { + "surface": "諮問", + "readging": "しもん", + "pos": "名詞", + "pn": -0.294453 + }, + { + "surface": "寝棺", + "readging": "ねかん", + "pos": "名詞", + "pn": -0.294455 + }, + { + "surface": "ベルベット", + "readging": "ベルベット", + "pos": "名詞", + "pn": -0.294465 + }, + { + "surface": "博士", + "readging": "はくし", + "pos": "名詞", + "pn": -0.294476 + }, + { + "surface": "坪庭", + "readging": "つぼにわ", + "pos": "名詞", + "pn": -0.294492 + }, + { + "surface": "マーチ", + "readging": "マーチ", + "pos": "名詞", + "pn": -0.294501 + }, + { + "surface": "警戒色", + "readging": "けいかいしょく", + "pos": "名詞", + "pn": -0.294533 + }, + { + "surface": "刈上げ", + "readging": "かりあげ", + "pos": "名詞", + "pn": -0.294533 + }, + { + "surface": "珍聞", + "readging": "ちんぶん", + "pos": "名詞", + "pn": -0.294538 + }, + { + "surface": "アイデンティティー", + "readging": "アイデンティティー", + "pos": "名詞", + "pn": -0.294543 + }, + { + "surface": "木屑", + "readging": "きくず", + "pos": "名詞", + "pn": -0.294558 + }, + { + "surface": "一輪", + "readging": "いちりん", + "pos": "名詞", + "pn": -0.294559 + }, + { + "surface": "ディーラー", + "readging": "ディーラー", + "pos": "名詞", + "pn": -0.294561 + }, + { + "surface": "年中行事", + "readging": "ねんじゅうぎょうじ", + "pos": "名詞", + "pn": -0.29458 + }, + { + "surface": "泥流", + "readging": "でいりゅう", + "pos": "名詞", + "pn": -0.294606 + }, + { + "surface": "桂", + "readging": "かつら", + "pos": "名詞", + "pn": -0.294617 + }, + { + "surface": "蔵人所", + "readging": "くろうど", + "pos": "名詞", + "pn": -0.29462 + }, + { + "surface": "能力", + "readging": "のうりょく", + "pos": "名詞", + "pn": -0.294631 + }, + { + "surface": "思召", + "readging": "おぼしめし", + "pos": "名詞", + "pn": -0.294641 + }, + { + "surface": "花嵐", + "readging": "はなあらし", + "pos": "名詞", + "pn": -0.294664 + }, + { + "surface": "血痰", + "readging": "けったん", + "pos": "名詞", + "pn": -0.294689 + }, + { + "surface": "床畳", + "readging": "とこだたみ", + "pos": "名詞", + "pn": -0.294695 + }, + { + "surface": "ぶっ続け", + "readging": "ぶっつづけ", + "pos": "名詞", + "pn": -0.294704 + }, + { + "surface": "修験", + "readging": "しゅげん", + "pos": "名詞", + "pn": -0.294746 + }, + { + "surface": "語部", + "readging": "かたりべ", + "pos": "名詞", + "pn": -0.294753 + }, + { + "surface": "琅かん", + "readging": "ろうかん", + "pos": "名詞", + "pn": -0.294755 + }, + { + "surface": "辛くも", + "readging": "からくも", + "pos": "副詞", + "pn": -0.294765 + }, + { + "surface": "蓋世", + "readging": "がいせい", + "pos": "名詞", + "pn": -0.294768 + }, + { + "surface": "追腹", + "readging": "おいばら", + "pos": "名詞", + "pn": -0.29479 + }, + { + "surface": "土匪", + "readging": "どひ", + "pos": "名詞", + "pn": -0.29479 + }, + { + "surface": "ブック", + "readging": "ブックメーカー", + "pos": "名詞", + "pn": -0.294815 + }, + { + "surface": "立枯れ", + "readging": "たちがれ", + "pos": "名詞", + "pn": -0.294833 + }, + { + "surface": "雀焼", + "readging": "すずめやき", + "pos": "名詞", + "pn": -0.294842 + }, + { + "surface": "遠征", + "readging": "えんせい", + "pos": "名詞", + "pn": -0.29487 + }, + { + "surface": "屋形船", + "readging": "やかたぶね", + "pos": "名詞", + "pn": -0.294873 + }, + { + "surface": "仕立物", + "readging": "したてもの", + "pos": "名詞", + "pn": -0.294878 + }, + { + "surface": "冤枉", + "readging": "えんおう", + "pos": "名詞", + "pn": -0.294901 + }, + { + "surface": "詞書", + "readging": "ことばがき", + "pos": "名詞", + "pn": -0.294918 + }, + { + "surface": "直流", + "readging": "ちょくりゅう", + "pos": "名詞", + "pn": -0.294936 + }, + { + "surface": "セーフ", + "readging": "セーフ", + "pos": "名詞", + "pn": -0.294939 + }, + { + "surface": "構外", + "readging": "こうがい", + "pos": "名詞", + "pn": -0.294959 + }, + { + "surface": "法要", + "readging": "ほうよう", + "pos": "名詞", + "pn": -0.294976 + }, + { + "surface": "トロンボーン", + "readging": "トロンボーン", + "pos": "名詞", + "pn": -0.294989 + }, + { + "surface": "狂気", + "readging": "きょうき", + "pos": "名詞", + "pn": -0.295003 + }, + { + "surface": "品定め", + "readging": "しなさだめ", + "pos": "名詞", + "pn": -0.295027 + }, + { + "surface": "少納言", + "readging": "しょうなごん", + "pos": "名詞", + "pn": -0.295074 + }, + { + "surface": "減量", + "readging": "げんりょう", + "pos": "名詞", + "pn": -0.295097 + }, + { + "surface": "アルミ", + "readging": "アルミ", + "pos": "名詞", + "pn": -0.2951 + }, + { + "surface": "焚落し", + "readging": "たきおとし", + "pos": "名詞", + "pn": -0.295108 + }, + { + "surface": "シーツ", + "readging": "シーツ", + "pos": "名詞", + "pn": -0.295131 + }, + { + "surface": "姓", + "readging": "かばね", + "pos": "名詞", + "pn": -0.295139 + }, + { + "surface": "製紙", + "readging": "せいし", + "pos": "名詞", + "pn": -0.29516 + }, + { + "surface": "斥力", + "readging": "せきりょく", + "pos": "名詞", + "pn": -0.295191 + }, + { + "surface": "非鉄金属", + "readging": "ひてつきんぞく", + "pos": "名詞", + "pn": -0.295191 + }, + { + "surface": "白粥", + "readging": "しらかゆ", + "pos": "名詞", + "pn": -0.295202 + }, + { + "surface": "月の桂", + "readging": "つきのかつら", + "pos": "名詞", + "pn": -0.295203 + }, + { + "surface": "精虫", + "readging": "せいちゅう", + "pos": "名詞", + "pn": -0.295209 + }, + { + "surface": "かわたれ", + "readging": "かわたれ", + "pos": "名詞", + "pn": -0.295236 + }, + { + "surface": "直播き", + "readging": "じきまき", + "pos": "名詞", + "pn": -0.295237 + }, + { + "surface": "スライディング", + "readging": "スライディングスケール", + "pos": "名詞", + "pn": -0.29524 + }, + { + "surface": "洪水", + "readging": "こうずい", + "pos": "名詞", + "pn": -0.295241 + }, + { + "surface": "症候群", + "readging": "しょうこうぐん", + "pos": "名詞", + "pn": -0.295244 + }, + { + "surface": "カタルシス", + "readging": "カタルシス", + "pos": "名詞", + "pn": -0.295264 + }, + { + "surface": "本調子", + "readging": "ほんちょうし", + "pos": "名詞", + "pn": -0.295265 + }, + { + "surface": "顔役", + "readging": "かおやく", + "pos": "名詞", + "pn": -0.2953 + }, + { + "surface": "召上がる", + "readging": "めしあがる", + "pos": "動詞", + "pn": -0.295303 + }, + { + "surface": "霊安室", + "readging": "れいあんしつ", + "pos": "名詞", + "pn": -0.295327 + }, + { + "surface": "疑惑", + "readging": "ぎわく", + "pos": "名詞", + "pn": -0.295348 + }, + { + "surface": "つけつけ", + "readging": "つけつけ", + "pos": "副詞", + "pn": -0.29535 + }, + { + "surface": "事例", + "readging": "じれい", + "pos": "名詞", + "pn": -0.29536 + }, + { + "surface": "合符", + "readging": "あいふ", + "pos": "名詞", + "pn": -0.295362 + }, + { + "surface": "斤", + "readging": "きん", + "pos": "名詞", + "pn": -0.295368 + }, + { + "surface": "書取", + "readging": "かきとり", + "pos": "名詞", + "pn": -0.295372 + }, + { + "surface": "玉繭", + "readging": "たままゆ", + "pos": "名詞", + "pn": -0.295383 + }, + { + "surface": "舞上がる", + "readging": "まいあがる", + "pos": "動詞", + "pn": -0.295391 + }, + { + "surface": "里心", + "readging": "さとごころ", + "pos": "名詞", + "pn": -0.295397 + }, + { + "surface": "オラン ウータン", + "readging": "オラン ウータン", + "pos": "名詞", + "pn": -0.295408 + }, + { + "surface": "近在", + "readging": "きんざい", + "pos": "名詞", + "pn": -0.295432 + }, + { + "surface": "召集", + "readging": "しょうしゅう", + "pos": "名詞", + "pn": -0.295436 + }, + { + "surface": "裏作", + "readging": "うらさく", + "pos": "名詞", + "pn": -0.295443 + }, + { + "surface": "請負う", + "readging": "うけおう", + "pos": "動詞", + "pn": -0.295467 + }, + { + "surface": "可塑性", + "readging": "かそせい", + "pos": "名詞", + "pn": -0.295475 + }, + { + "surface": "袋耳", + "readging": "ふくろみみ", + "pos": "名詞", + "pn": -0.295485 + }, + { + "surface": "キネマ", + "readging": "キネマ", + "pos": "名詞", + "pn": -0.295495 + }, + { + "surface": "張裂ける", + "readging": "はりさける", + "pos": "動詞", + "pn": -0.295498 + }, + { + "surface": "変人", + "readging": "へんじん", + "pos": "名詞", + "pn": -0.295499 + }, + { + "surface": "席書", + "readging": "せきがき", + "pos": "名詞", + "pn": -0.295502 + }, + { + "surface": "浅紅", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.295503 + }, + { + "surface": "筆力", + "readging": "ひつりょく", + "pos": "名詞", + "pn": -0.295537 + }, + { + "surface": "養殖", + "readging": "ようしょく", + "pos": "名詞", + "pn": -0.295539 + }, + { + "surface": "売行き", + "readging": "うれゆき", + "pos": "名詞", + "pn": -0.295581 + }, + { + "surface": "電文", + "readging": "でんぶん", + "pos": "名詞", + "pn": -0.295586 + }, + { + "surface": "博学", + "readging": "はくがく", + "pos": "名詞", + "pn": -0.295606 + }, + { + "surface": "不寝番", + "readging": "ふしんばん", + "pos": "名詞", + "pn": -0.295607 + }, + { + "surface": "待避", + "readging": "たいひ", + "pos": "名詞", + "pn": -0.295622 + }, + { + "surface": "立坪", + "readging": "たてつぼ", + "pos": "名詞", + "pn": -0.295627 + }, + { + "surface": "植付け", + "readging": "うえつけ", + "pos": "名詞", + "pn": -0.295644 + }, + { + "surface": "弓張", + "readging": "ゆみはり", + "pos": "名詞", + "pn": -0.295653 + }, + { + "surface": "著作権", + "readging": "ちょさくけん", + "pos": "名詞", + "pn": -0.295656 + }, + { + "surface": "類句", + "readging": "るいく", + "pos": "名詞", + "pn": -0.295658 + }, + { + "surface": "楽劇", + "readging": "がくげき", + "pos": "名詞", + "pn": -0.295689 + }, + { + "surface": "非合法", + "readging": "ひごうほう", + "pos": "名詞", + "pn": -0.295698 + }, + { + "surface": "独房", + "readging": "どくぼう", + "pos": "名詞", + "pn": -0.295703 + }, + { + "surface": "フラッシュ", + "readging": "フラッシュ", + "pos": "名詞", + "pn": -0.295716 + }, + { + "surface": "商事会社", + "readging": "しょうじがいしゃ", + "pos": "名詞", + "pn": -0.295731 + }, + { + "surface": "野分", + "readging": "のわき", + "pos": "名詞", + "pn": -0.295765 + }, + { + "surface": "抱込む", + "readging": "だきこむ", + "pos": "動詞", + "pn": -0.295767 + }, + { + "surface": "銑鉄", + "readging": "ずくてつ", + "pos": "名詞", + "pn": -0.295784 + }, + { + "surface": "男尊女卑", + "readging": "だんそんじょひ", + "pos": "名詞", + "pn": -0.2958 + }, + { + "surface": "禁城", + "readging": "きんじょう", + "pos": "名詞", + "pn": -0.295819 + }, + { + "surface": "本番", + "readging": "ほんばん", + "pos": "名詞", + "pn": -0.295828 + }, + { + "surface": "細腰", + "readging": "さいよう", + "pos": "名詞", + "pn": -0.295838 + }, + { + "surface": "伏兵", + "readging": "ふくへい", + "pos": "名詞", + "pn": -0.29584 + }, + { + "surface": "待受ける", + "readging": "まちうける", + "pos": "動詞", + "pn": -0.295856 + }, + { + "surface": "苦力", + "readging": "クーリー", + "pos": "名詞", + "pn": -0.295861 + }, + { + "surface": "要する", + "readging": "ようする", + "pos": "動詞", + "pn": -0.295865 + }, + { + "surface": "外伝", + "readging": "がいでん", + "pos": "名詞", + "pn": -0.295884 + }, + { + "surface": "学修", + "readging": "がくしゅう", + "pos": "名詞", + "pn": -0.295891 + }, + { + "surface": "金太郎", + "readging": "きんたろう", + "pos": "名詞", + "pn": -0.295896 + }, + { + "surface": "彫物", + "readging": "ほりもの", + "pos": "名詞", + "pn": -0.295896 + }, + { + "surface": "申出る", + "readging": "もうしでる", + "pos": "動詞", + "pn": -0.295898 + }, + { + "surface": "屋上", + "readging": "おくじょう", + "pos": "名詞", + "pn": -0.295898 + }, + { + "surface": "人別", + "readging": "にんべつ", + "pos": "名詞", + "pn": -0.295922 + }, + { + "surface": "浸染", + "readging": "しんぜん", + "pos": "名詞", + "pn": -0.295934 + }, + { + "surface": "片", + "readging": "かた", + "pos": "名詞", + "pn": -0.295936 + }, + { + "surface": "無線電話", + "readging": "むせんでんわ", + "pos": "名詞", + "pn": -0.29595 + }, + { + "surface": "気化", + "readging": "きか", + "pos": "名詞", + "pn": -0.295968 + }, + { + "surface": "孫引き", + "readging": "まごびき", + "pos": "名詞", + "pn": -0.295972 + }, + { + "surface": "着陸", + "readging": "ちゃくりく", + "pos": "名詞", + "pn": -0.295986 + }, + { + "surface": "雨氷", + "readging": "うひょう", + "pos": "名詞", + "pn": -0.295986 + }, + { + "surface": "芒", + "readging": "のぎ", + "pos": "名詞", + "pn": -0.295987 + }, + { + "surface": "先夫", + "readging": "せんぷ", + "pos": "名詞", + "pn": -0.295996 + }, + { + "surface": "ファミリー", + "readging": "ファミリー", + "pos": "名詞", + "pn": -0.295996 + }, + { + "surface": "芽立つ", + "readging": "めだつ", + "pos": "動詞", + "pn": -0.296009 + }, + { + "surface": "浅春", + "readging": "せんしゅん", + "pos": "名詞", + "pn": -0.296011 + }, + { + "surface": "ダンプカー", + "readging": "ダンプカー", + "pos": "名詞", + "pn": -0.29602 + }, + { + "surface": "無下", + "readging": "むげ", + "pos": "名詞", + "pn": -0.296043 + }, + { + "surface": "飛込み台", + "readging": "とびこみだい", + "pos": "名詞", + "pn": -0.296063 + }, + { + "surface": "イタリック", + "readging": "イタリック", + "pos": "名詞", + "pn": -0.296064 + }, + { + "surface": "重さ", + "readging": "おもさ", + "pos": "名詞", + "pn": -0.29608 + }, + { + "surface": "踏絵", + "readging": "ふみえ", + "pos": "名詞", + "pn": -0.296087 + }, + { + "surface": "同級", + "readging": "どうきゅう", + "pos": "名詞", + "pn": -0.296093 + }, + { + "surface": "扱き", + "readging": "しごき", + "pos": "名詞", + "pn": -0.296093 + }, + { + "surface": "剣尺", + "readging": "けんじゃく", + "pos": "名詞", + "pn": -0.29612 + }, + { + "surface": "野鳥", + "readging": "やちょう", + "pos": "名詞", + "pn": -0.296128 + }, + { + "surface": "約音", + "readging": "やくおん", + "pos": "名詞", + "pn": -0.296139 + }, + { + "surface": "大理石", + "readging": "だいりせき", + "pos": "名詞", + "pn": -0.296143 + }, + { + "surface": "軟鉄", + "readging": "なんてつ", + "pos": "名詞", + "pn": -0.296152 + }, + { + "surface": "てんねん記念物", + "readging": "てんねんきねんぶつ", + "pos": "名詞", + "pn": -0.296167 + }, + { + "surface": "高利貸", + "readging": "こうりかし", + "pos": "名詞", + "pn": -0.296175 + }, + { + "surface": "赤帽", + "readging": "あかぼう", + "pos": "名詞", + "pn": -0.296176 + }, + { + "surface": "あおみどろ", + "readging": "あおみどろ", + "pos": "名詞", + "pn": -0.296201 + }, + { + "surface": "威", + "readging": "い", + "pos": "名詞", + "pn": -0.296237 + }, + { + "surface": "老醜", + "readging": "ろうしゅう", + "pos": "名詞", + "pn": -0.296274 + }, + { + "surface": "黒八丈", + "readging": "くろはちじょう", + "pos": "名詞", + "pn": -0.296281 + }, + { + "surface": "破魔矢", + "readging": "はまや", + "pos": "名詞", + "pn": -0.296299 + }, + { + "surface": "ハレーション", + "readging": "ハレーション", + "pos": "名詞", + "pn": -0.296339 + }, + { + "surface": "遺伝子", + "readging": "いでんし", + "pos": "名詞", + "pn": -0.296347 + }, + { + "surface": "補い", + "readging": "おぎない", + "pos": "名詞", + "pn": -0.296371 + }, + { + "surface": "白下", + "readging": "しろした", + "pos": "名詞", + "pn": -0.296373 + }, + { + "surface": "かしわ", + "readging": "かしわ", + "pos": "名詞", + "pn": -0.296376 + }, + { + "surface": "卓上", + "readging": "たくじょう", + "pos": "名詞", + "pn": -0.296383 + }, + { + "surface": "直轄", + "readging": "ちょっかつ", + "pos": "名詞", + "pn": -0.296387 + }, + { + "surface": "三徳", + "readging": "さんとく", + "pos": "名詞", + "pn": -0.296387 + }, + { + "surface": "開封", + "readging": "かいふう", + "pos": "名詞", + "pn": -0.296389 + }, + { + "surface": "浮草稼業", + "readging": "うきくさかぎょう", + "pos": "名詞", + "pn": -0.2964 + }, + { + "surface": "胸板", + "readging": "むないた", + "pos": "名詞", + "pn": -0.296413 + }, + { + "surface": "輻射熱", + "readging": "ふくしゃねつ", + "pos": "名詞", + "pn": -0.296426 + }, + { + "surface": "国旗", + "readging": "こっき", + "pos": "名詞", + "pn": -0.296426 + }, + { + "surface": "購う", + "readging": "あがなう", + "pos": "動詞", + "pn": -0.296433 + }, + { + "surface": "湾入", + "readging": "わんにゅう", + "pos": "名詞", + "pn": -0.296459 + }, + { + "surface": "進達", + "readging": "しんたつ", + "pos": "名詞", + "pn": -0.296474 + }, + { + "surface": "一字千金", + "readging": "いちじせんきん", + "pos": "名詞", + "pn": -0.296513 + }, + { + "surface": "トタン", + "readging": "トタン", + "pos": "名詞", + "pn": -0.296515 + }, + { + "surface": "両性", + "readging": "りょうせい", + "pos": "名詞", + "pn": -0.296516 + }, + { + "surface": "動体", + "readging": "どうたい", + "pos": "名詞", + "pn": -0.296519 + }, + { + "surface": "拍手", + "readging": "はくしゅ", + "pos": "名詞", + "pn": -0.296528 + }, + { + "surface": "発案", + "readging": "はつあん", + "pos": "名詞", + "pn": -0.29656 + }, + { + "surface": "醜類", + "readging": "しゅうるい", + "pos": "名詞", + "pn": -0.296563 + }, + { + "surface": "見越し", + "readging": "みこし", + "pos": "名詞", + "pn": -0.296565 + }, + { + "surface": "チケット", + "readging": "チケット", + "pos": "名詞", + "pn": -0.296568 + }, + { + "surface": "共生", + "readging": "きょうせい", + "pos": "名詞", + "pn": -0.296569 + }, + { + "surface": "可燃", + "readging": "かねん", + "pos": "名詞", + "pn": -0.296577 + }, + { + "surface": "鑑別", + "readging": "かんべつ", + "pos": "名詞", + "pn": -0.296599 + }, + { + "surface": "陶", + "readging": "とう", + "pos": "名詞", + "pn": -0.296607 + }, + { + "surface": "年貢", + "readging": "ねんぐ", + "pos": "名詞", + "pn": -0.296609 + }, + { + "surface": "鴛鴦", + "readging": "えんおう", + "pos": "名詞", + "pn": -0.296622 + }, + { + "surface": "呼出す", + "readging": "よびだす", + "pos": "動詞", + "pn": -0.296633 + }, + { + "surface": "偶数", + "readging": "ぐうすう", + "pos": "名詞", + "pn": -0.296643 + }, + { + "surface": "弓形", + "readging": "きゅうけい", + "pos": "名詞", + "pn": -0.296646 + }, + { + "surface": "革質", + "readging": "かくしつ", + "pos": "名詞", + "pn": -0.296651 + }, + { + "surface": "文体", + "readging": "ぶんたい", + "pos": "名詞", + "pn": -0.296671 + }, + { + "surface": "条理", + "readging": "じょうり", + "pos": "名詞", + "pn": -0.296679 + }, + { + "surface": "得物", + "readging": "えもの", + "pos": "名詞", + "pn": -0.296692 + }, + { + "surface": "外構え", + "readging": "そとがまえ", + "pos": "名詞", + "pn": -0.296776 + }, + { + "surface": "皆無", + "readging": "かいむ", + "pos": "名詞", + "pn": -0.296783 + }, + { + "surface": "不連続線", + "readging": "ふれんぞくせん", + "pos": "名詞", + "pn": -0.296801 + }, + { + "surface": "離婚", + "readging": "りこん", + "pos": "名詞", + "pn": -0.29683 + }, + { + "surface": "猶子", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.296831 + }, + { + "surface": "当て馬", + "readging": "あてうま", + "pos": "名詞", + "pn": -0.296835 + }, + { + "surface": "整髪", + "readging": "せいはつ", + "pos": "名詞", + "pn": -0.296841 + }, + { + "surface": "立毛", + "readging": "たちげ", + "pos": "名詞", + "pn": -0.296857 + }, + { + "surface": "老眼", + "readging": "ろうがん", + "pos": "名詞", + "pn": -0.296862 + }, + { + "surface": "海図", + "readging": "かいず", + "pos": "名詞", + "pn": -0.296862 + }, + { + "surface": "出資", + "readging": "しゅっし", + "pos": "名詞", + "pn": -0.296865 + }, + { + "surface": "出御", + "readging": "しゅつぎょ", + "pos": "名詞", + "pn": -0.296874 + }, + { + "surface": "禅機", + "readging": "ぜんき", + "pos": "名詞", + "pn": -0.296915 + }, + { + "surface": "聞分ける", + "readging": "ききわける", + "pos": "動詞", + "pn": -0.296935 + }, + { + "surface": "目切れ", + "readging": "めぎれ", + "pos": "名詞", + "pn": -0.296937 + }, + { + "surface": "歌唱", + "readging": "かしょう", + "pos": "名詞", + "pn": -0.296958 + }, + { + "surface": "御灯", + "readging": "みあかし", + "pos": "名詞", + "pn": -0.29696 + }, + { + "surface": "火祭", + "readging": "ひまつり", + "pos": "名詞", + "pn": -0.296962 + }, + { + "surface": "荒らげる", + "readging": "あららげる", + "pos": "動詞", + "pn": -0.296978 + }, + { + "surface": "要因", + "readging": "よういん", + "pos": "名詞", + "pn": -0.29698 + }, + { + "surface": "為", + "readging": "い", + "pos": "名詞", + "pn": -0.296982 + }, + { + "surface": "観衆", + "readging": "かんしゅう", + "pos": "名詞", + "pn": -0.296984 + }, + { + "surface": "シュート", + "readging": "シュート", + "pos": "名詞", + "pn": -0.296994 + }, + { + "surface": "成心", + "readging": "せいしん", + "pos": "名詞", + "pn": -0.297028 + }, + { + "surface": "スーツ", + "readging": "スーツ", + "pos": "名詞", + "pn": -0.297032 + }, + { + "surface": "王座", + "readging": "おうざ", + "pos": "名詞", + "pn": -0.297045 + }, + { + "surface": "全勝", + "readging": "ぜんしょう", + "pos": "名詞", + "pn": -0.297047 + }, + { + "surface": "防潮", + "readging": "ぼうちょう", + "pos": "名詞", + "pn": -0.297059 + }, + { + "surface": "旧都", + "readging": "きゅうと", + "pos": "名詞", + "pn": -0.297084 + }, + { + "surface": "流動体", + "readging": "りゅうどうたい", + "pos": "名詞", + "pn": -0.297091 + }, + { + "surface": "消耗戦", + "readging": "しょうもうせん", + "pos": "名詞", + "pn": -0.297101 + }, + { + "surface": "虱", + "readging": "しらみ", + "pos": "名詞", + "pn": -0.297131 + }, + { + "surface": "オフサイド", + "readging": "オフサイド", + "pos": "名詞", + "pn": -0.297137 + }, + { + "surface": "不倫", + "readging": "ふりん", + "pos": "名詞", + "pn": -0.297149 + }, + { + "surface": "貽貝", + "readging": "いがい", + "pos": "名詞", + "pn": -0.29715 + }, + { + "surface": "鼻祖", + "readging": "びそ", + "pos": "名詞", + "pn": -0.297164 + }, + { + "surface": "五輪", + "readging": "ごりん", + "pos": "名詞", + "pn": -0.297185 + }, + { + "surface": "仮設", + "readging": "かせつ", + "pos": "名詞", + "pn": -0.297192 + }, + { + "surface": "縮尺", + "readging": "しゅくしゃく", + "pos": "名詞", + "pn": -0.297197 + }, + { + "surface": "雛", + "readging": "ひよこ", + "pos": "名詞", + "pn": -0.297232 + }, + { + "surface": "観世音", + "readging": "かんぜおん", + "pos": "名詞", + "pn": -0.297248 + }, + { + "surface": "晩食", + "readging": "ばんしょく", + "pos": "名詞", + "pn": -0.297258 + }, + { + "surface": "能面", + "readging": "のうめん", + "pos": "名詞", + "pn": -0.297262 + }, + { + "surface": "小人", + "readging": "しょうじん", + "pos": "名詞", + "pn": -0.297273 + }, + { + "surface": "杓子菜", + "readging": "しゃくしな", + "pos": "名詞", + "pn": -0.297283 + }, + { + "surface": "立秋", + "readging": "りっしゅう", + "pos": "名詞", + "pn": -0.29729 + }, + { + "surface": "石庭", + "readging": "いしにわ", + "pos": "名詞", + "pn": -0.297313 + }, + { + "surface": "冤罪", + "readging": "えんざい", + "pos": "名詞", + "pn": -0.297335 + }, + { + "surface": "点呼", + "readging": "てんこ", + "pos": "名詞", + "pn": -0.297343 + }, + { + "surface": "飲口", + "readging": "のみくち", + "pos": "名詞", + "pn": -0.297352 + }, + { + "surface": "高圧", + "readging": "こうあつ", + "pos": "名詞", + "pn": -0.297354 + }, + { + "surface": "親展", + "readging": "しんてん", + "pos": "名詞", + "pn": -0.297395 + }, + { + "surface": "煉", + "readging": "れん", + "pos": "名詞", + "pn": -0.297402 + }, + { + "surface": "外傷", + "readging": "がいしょう", + "pos": "名詞", + "pn": -0.297403 + }, + { + "surface": "稜", + "readging": "りょう", + "pos": "名詞", + "pn": -0.29741 + }, + { + "surface": "草雲雀", + "readging": "くさひばり", + "pos": "名詞", + "pn": -0.29742 + }, + { + "surface": "ベーカリー", + "readging": "ベーカリー", + "pos": "名詞", + "pn": -0.297441 + }, + { + "surface": "微調整", + "readging": "びちょうせい", + "pos": "名詞", + "pn": -0.297459 + }, + { + "surface": "日本晴", + "readging": "にほんばれ", + "pos": "名詞", + "pn": -0.297463 + }, + { + "surface": "坪刈", + "readging": "つぼがり", + "pos": "名詞", + "pn": -0.297464 + }, + { + "surface": "移民", + "readging": "いみん", + "pos": "名詞", + "pn": -0.297472 + }, + { + "surface": "木捻子", + "readging": "もくねじ", + "pos": "名詞", + "pn": -0.297473 + }, + { + "surface": "前奏", + "readging": "ぜんそう", + "pos": "名詞", + "pn": -0.297484 + }, + { + "surface": "高吟", + "readging": "こうぎん", + "pos": "名詞", + "pn": -0.297495 + }, + { + "surface": "お零れ", + "readging": "おこぼれ", + "pos": "名詞", + "pn": -0.297511 + }, + { + "surface": "デッキ", + "readging": "デッキ", + "pos": "名詞", + "pn": -0.297527 + }, + { + "surface": "金融機関", + "readging": "きんゆうきかん", + "pos": "名詞", + "pn": -0.297537 + }, + { + "surface": "オリーブ油", + "readging": "オリーブゆ", + "pos": "名詞", + "pn": -0.297541 + }, + { + "surface": "クロノメーター", + "readging": "クロノメーター", + "pos": "名詞", + "pn": -0.297558 + }, + { + "surface": "モード", + "readging": "モード", + "pos": "名詞", + "pn": -0.297564 + }, + { + "surface": "張扇", + "readging": "はりおうぎ", + "pos": "名詞", + "pn": -0.297587 + }, + { + "surface": "零余子", + "readging": "ぬかご", + "pos": "名詞", + "pn": -0.297612 + }, + { + "surface": "果然", + "readging": "かぜん", + "pos": "副詞", + "pn": -0.297638 + }, + { + "surface": "ニクロム", + "readging": "ニクロム", + "pos": "名詞", + "pn": -0.297644 + }, + { + "surface": "精白", + "readging": "せいはく", + "pos": "名詞", + "pn": -0.297658 + }, + { + "surface": "拒否権", + "readging": "きょひけん", + "pos": "名詞", + "pn": -0.297662 + }, + { + "surface": "冷え", + "readging": "ひえ", + "pos": "名詞", + "pn": -0.297708 + }, + { + "surface": "抜荷", + "readging": "ぬけに", + "pos": "名詞", + "pn": -0.297714 + }, + { + "surface": "提灯屋", + "readging": "ちょうちんや", + "pos": "名詞", + "pn": -0.297716 + }, + { + "surface": "聞咎める", + "readging": "ききとがめる", + "pos": "動詞", + "pn": -0.297716 + }, + { + "surface": "旅回り", + "readging": "たびまわり", + "pos": "名詞", + "pn": -0.297729 + }, + { + "surface": "香煎", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.297729 + }, + { + "surface": "諸種", + "readging": "しょしゅ", + "pos": "名詞", + "pn": -0.297731 + }, + { + "surface": "寝間", + "readging": "ねま", + "pos": "名詞", + "pn": -0.297742 + }, + { + "surface": "ダイオード", + "readging": "ダイオード", + "pos": "名詞", + "pn": -0.297751 + }, + { + "surface": "引算", + "readging": "ひきざん", + "pos": "名詞", + "pn": -0.297757 + }, + { + "surface": "維持", + "readging": "いじ", + "pos": "名詞", + "pn": -0.29779 + }, + { + "surface": "申付ける", + "readging": "もうしつける", + "pos": "動詞", + "pn": -0.297814 + }, + { + "surface": "先駆", + "readging": "せんく", + "pos": "名詞", + "pn": -0.29784 + }, + { + "surface": "出火", + "readging": "しゅっか", + "pos": "名詞", + "pn": -0.297843 + }, + { + "surface": "岳", + "readging": "がく", + "pos": "名詞", + "pn": -0.297848 + }, + { + "surface": "生", + "readging": "なま", + "pos": "名詞", + "pn": -0.297883 + }, + { + "surface": "オーディション", + "readging": "オーディション", + "pos": "名詞", + "pn": -0.297917 + }, + { + "surface": "丑三つ", + "readging": "うしみつ", + "pos": "名詞", + "pn": -0.297923 + }, + { + "surface": "瓦石", + "readging": "がせき", + "pos": "名詞", + "pn": -0.297946 + }, + { + "surface": "言辞", + "readging": "げんじ", + "pos": "名詞", + "pn": -0.297946 + }, + { + "surface": "浮華", + "readging": "ふか", + "pos": "名詞", + "pn": -0.297949 + }, + { + "surface": "犬張子", + "readging": "いぬはりこ", + "pos": "名詞", + "pn": -0.297952 + }, + { + "surface": "害鳥", + "readging": "がいちょう", + "pos": "名詞", + "pn": -0.297955 + }, + { + "surface": "他見", + "readging": "たけん", + "pos": "名詞", + "pn": -0.297959 + }, + { + "surface": "カリフ", + "readging": "カリフ", + "pos": "名詞", + "pn": -0.297971 + }, + { + "surface": "星宿", + "readging": "せいしゅく", + "pos": "名詞", + "pn": -0.297985 + }, + { + "surface": "毛氈", + "readging": "もうせん", + "pos": "名詞", + "pn": -0.297989 + }, + { + "surface": "姫垣", + "readging": "ひめがき", + "pos": "名詞", + "pn": -0.297993 + }, + { + "surface": "仏法僧", + "readging": "ぶっぽうそう", + "pos": "名詞", + "pn": -0.297997 + }, + { + "surface": "取纏める", + "readging": "とりまとめる", + "pos": "動詞", + "pn": -0.298 + }, + { + "surface": "洗い浚い", + "readging": "あらいざらい", + "pos": "名詞", + "pn": -0.298028 + }, + { + "surface": "中押し", + "readging": "ちゅうおし", + "pos": "名詞", + "pn": -0.298035 + }, + { + "surface": "学籍", + "readging": "がくせき", + "pos": "名詞", + "pn": -0.298036 + }, + { + "surface": "送水", + "readging": "そうすい", + "pos": "名詞", + "pn": -0.298038 + }, + { + "surface": "グラインダー", + "readging": "グラインダー", + "pos": "名詞", + "pn": -0.29805 + }, + { + "surface": "コックピット", + "readging": "コックピット", + "pos": "名詞", + "pn": -0.298062 + }, + { + "surface": "シュー クリーム", + "readging": "シュー クリーム", + "pos": "名詞", + "pn": -0.298074 + }, + { + "surface": "脱字", + "readging": "だつじ", + "pos": "名詞", + "pn": -0.298086 + }, + { + "surface": "硬玉", + "readging": "こうぎょく", + "pos": "名詞", + "pn": -0.298105 + }, + { + "surface": "自由律", + "readging": "じゆうりつ", + "pos": "名詞", + "pn": -0.298108 + }, + { + "surface": "人事", + "readging": "じんじ", + "pos": "名詞", + "pn": -0.298129 + }, + { + "surface": "擬人", + "readging": "ぎじん", + "pos": "名詞", + "pn": -0.298134 + }, + { + "surface": "裏話", + "readging": "うらばなし", + "pos": "名詞", + "pn": -0.298139 + }, + { + "surface": "絵付", + "readging": "えつけ", + "pos": "名詞", + "pn": -0.298148 + }, + { + "surface": "エッセイ", + "readging": "エッセイ", + "pos": "名詞", + "pn": -0.298151 + }, + { + "surface": "鮟鱇", + "readging": "あんこう", + "pos": "名詞", + "pn": -0.298152 + }, + { + "surface": "野良", + "readging": "のら", + "pos": "名詞", + "pn": -0.298172 + }, + { + "surface": "オン ライン", + "readging": "オン ライン", + "pos": "名詞", + "pn": -0.298185 + }, + { + "surface": "サウンド", + "readging": "サウンドボックス", + "pos": "名詞", + "pn": -0.298185 + }, + { + "surface": "鏤める", + "readging": "ちりばめる", + "pos": "動詞", + "pn": -0.298188 + }, + { + "surface": "脱ぎ捨てる", + "readging": "ぬぎすてる", + "pos": "動詞", + "pn": -0.298217 + }, + { + "surface": "博覧会", + "readging": "はくらんかい", + "pos": "名詞", + "pn": -0.298231 + }, + { + "surface": "浜風", + "readging": "はまかぜ", + "pos": "名詞", + "pn": -0.298235 + }, + { + "surface": "乗捨てる", + "readging": "のりすてる", + "pos": "動詞", + "pn": -0.298239 + }, + { + "surface": "応急", + "readging": "おうきゅう", + "pos": "名詞", + "pn": -0.298253 + }, + { + "surface": "捕鯨船", + "readging": "ほげいせん", + "pos": "名詞", + "pn": -0.298291 + }, + { + "surface": "血走る", + "readging": "ちばしる", + "pos": "動詞", + "pn": -0.298309 + }, + { + "surface": "地下鉄", + "readging": "ちかてつ", + "pos": "名詞", + "pn": -0.298315 + }, + { + "surface": "精進", + "readging": "しょうじん", + "pos": "名詞", + "pn": -0.298318 + }, + { + "surface": "重合", + "readging": "じゅうごう", + "pos": "名詞", + "pn": -0.298343 + }, + { + "surface": "後衛", + "readging": "こうえい", + "pos": "名詞", + "pn": -0.29836 + }, + { + "surface": "製材", + "readging": "せいざい", + "pos": "名詞", + "pn": -0.29838 + }, + { + "surface": "近世", + "readging": "きんせい", + "pos": "名詞", + "pn": -0.298387 + }, + { + "surface": "煮込み", + "readging": "にこみ", + "pos": "名詞", + "pn": -0.298404 + }, + { + "surface": "総力戦", + "readging": "そうりょくせん", + "pos": "名詞", + "pn": -0.298413 + }, + { + "surface": "縫取り", + "readging": "ぬいとり", + "pos": "名詞", + "pn": -0.298418 + }, + { + "surface": "四六判", + "readging": "しろくばん", + "pos": "名詞", + "pn": -0.29842 + }, + { + "surface": "島国", + "readging": "しまぐに", + "pos": "名詞", + "pn": -0.298453 + }, + { + "surface": "占", + "readging": "うらない", + "pos": "名詞", + "pn": -0.298464 + }, + { + "surface": "出銭", + "readging": "でせん", + "pos": "名詞", + "pn": -0.298467 + }, + { + "surface": "抱っこ", + "readging": "だっこ", + "pos": "名詞", + "pn": -0.298481 + }, + { + "surface": "強調", + "readging": "きょうちょう", + "pos": "名詞", + "pn": -0.298504 + }, + { + "surface": "路用", + "readging": "ろよう", + "pos": "名詞", + "pn": -0.298517 + }, + { + "surface": "司令", + "readging": "しれい", + "pos": "名詞", + "pn": -0.298522 + }, + { + "surface": "宇宙船", + "readging": "うちゅうせん", + "pos": "名詞", + "pn": -0.298549 + }, + { + "surface": "守り立てる", + "readging": "もりたてる", + "pos": "動詞", + "pn": -0.298559 + }, + { + "surface": "蔵払い", + "readging": "くらばらい", + "pos": "名詞", + "pn": -0.298566 + }, + { + "surface": "ガッシュ", + "readging": "ガッシュ", + "pos": "名詞", + "pn": -0.298576 + }, + { + "surface": "ジャッジ", + "readging": "ジャッジ", + "pos": "名詞", + "pn": -0.298577 + }, + { + "surface": "藩屏", + "readging": "はんぺい", + "pos": "名詞", + "pn": -0.298579 + }, + { + "surface": "セコンド", + "readging": "セコンド", + "pos": "名詞", + "pn": -0.298605 + }, + { + "surface": "派生", + "readging": "はせい", + "pos": "名詞", + "pn": -0.298614 + }, + { + "surface": "接線", + "readging": "せっせん", + "pos": "名詞", + "pn": -0.298618 + }, + { + "surface": "損益計算書", + "readging": "そんえきけいさんしょ", + "pos": "名詞", + "pn": -0.29862 + }, + { + "surface": "顔立ち", + "readging": "かおだち", + "pos": "名詞", + "pn": -0.298631 + }, + { + "surface": "飛行場", + "readging": "ひこうじょう", + "pos": "名詞", + "pn": -0.298638 + }, + { + "surface": "マシン", + "readging": "マシン", + "pos": "名詞", + "pn": -0.298666 + }, + { + "surface": "船客", + "readging": "せんきゃく", + "pos": "名詞", + "pn": -0.298696 + }, + { + "surface": "ロール", + "readging": "ロール", + "pos": "名詞", + "pn": -0.2987 + }, + { + "surface": "分子生物学", + "readging": "ぶんしせいぶつがく", + "pos": "名詞", + "pn": -0.298707 + }, + { + "surface": "スフ", + "readging": "スフ", + "pos": "名詞", + "pn": -0.298713 + }, + { + "surface": "手長", + "readging": "てなが", + "pos": "名詞", + "pn": -0.298716 + }, + { + "surface": "敗残", + "readging": "はいざん", + "pos": "名詞", + "pn": -0.298738 + }, + { + "surface": "雲煙過眼", + "readging": "うんえんかがん", + "pos": "名詞", + "pn": -0.298749 + }, + { + "surface": "分野", + "readging": "ぶんや", + "pos": "名詞", + "pn": -0.298753 + }, + { + "surface": "休閑", + "readging": "きゅうかん", + "pos": "名詞", + "pn": -0.298769 + }, + { + "surface": "裸馬", + "readging": "はだかうま", + "pos": "名詞", + "pn": -0.298773 + }, + { + "surface": "朝貢", + "readging": "ちょうこう", + "pos": "名詞", + "pn": -0.298779 + }, + { + "surface": "立網", + "readging": "たてあみ", + "pos": "名詞", + "pn": -0.298787 + }, + { + "surface": "有限会社", + "readging": "ゆうげんがいしゃ", + "pos": "名詞", + "pn": -0.298799 + }, + { + "surface": "屋外", + "readging": "おくがい", + "pos": "名詞", + "pn": -0.298815 + }, + { + "surface": "像法", + "readging": "ぞうぼう", + "pos": "名詞", + "pn": -0.298828 + }, + { + "surface": "割戻す", + "readging": "わりもどす", + "pos": "動詞", + "pn": -0.298865 + }, + { + "surface": "銃火", + "readging": "じゅうか", + "pos": "名詞", + "pn": -0.298887 + }, + { + "surface": "無煙炭", + "readging": "むえんたん", + "pos": "名詞", + "pn": -0.298888 + }, + { + "surface": "初", + "readging": "うぶ", + "pos": "名詞", + "pn": -0.298904 + }, + { + "surface": "未来派", + "readging": "みらいは", + "pos": "名詞", + "pn": -0.298911 + }, + { + "surface": "渡廊下", + "readging": "わたりろうか", + "pos": "名詞", + "pn": -0.298914 + }, + { + "surface": "直筆", + "readging": "ちょくひつ", + "pos": "名詞", + "pn": -0.298925 + }, + { + "surface": "通わす", + "readging": "かよわす", + "pos": "動詞", + "pn": -0.298933 + }, + { + "surface": "収入役", + "readging": "しゅうにゅうやく", + "pos": "名詞", + "pn": -0.298965 + }, + { + "surface": "火難", + "readging": "かなん", + "pos": "名詞", + "pn": -0.298971 + }, + { + "surface": "呪い", + "readging": "まじない", + "pos": "名詞", + "pn": -0.298982 + }, + { + "surface": "参議", + "readging": "さんぎ", + "pos": "名詞", + "pn": -0.299018 + }, + { + "surface": "面子", + "readging": "めんこ", + "pos": "名詞", + "pn": -0.29902 + }, + { + "surface": "オーケストラ", + "readging": "オーケストラ", + "pos": "名詞", + "pn": -0.299022 + }, + { + "surface": "淡彩", + "readging": "たんさい", + "pos": "名詞", + "pn": -0.299037 + }, + { + "surface": "行違い", + "readging": "ゆきちがい", + "pos": "名詞", + "pn": -0.299043 + }, + { + "surface": "国際結婚", + "readging": "こくさいけっこん", + "pos": "名詞", + "pn": -0.299071 + }, + { + "surface": "こんりゅう", + "readging": "こんりゅうバクテリア", + "pos": "名詞", + "pn": -0.299072 + }, + { + "surface": "政", + "readging": "せい", + "pos": "名詞", + "pn": -0.299073 + }, + { + "surface": "月代り", + "readging": "つきがわり", + "pos": "名詞", + "pn": -0.299108 + }, + { + "surface": "初潮", + "readging": "しょちょう", + "pos": "名詞", + "pn": -0.299154 + }, + { + "surface": "頓", + "readging": "とみ", + "pos": "名詞", + "pn": -0.299166 + }, + { + "surface": "評論", + "readging": "ひょうろん", + "pos": "名詞", + "pn": -0.29918 + }, + { + "surface": "改訳", + "readging": "かいやく", + "pos": "名詞", + "pn": -0.29918 + }, + { + "surface": "節節", + "readging": "ふしぶし", + "pos": "名詞", + "pn": -0.299206 + }, + { + "surface": "ハロゲン", + "readging": "ハロゲン", + "pos": "名詞", + "pn": -0.299208 + }, + { + "surface": "好尚", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.299228 + }, + { + "surface": "化繊", + "readging": "かせん", + "pos": "名詞", + "pn": -0.299251 + }, + { + "surface": "工房", + "readging": "こうぼう", + "pos": "名詞", + "pn": -0.299264 + }, + { + "surface": "口達者", + "readging": "くちだっしゃ", + "pos": "名詞", + "pn": -0.299265 + }, + { + "surface": "佃", + "readging": "つくだ", + "pos": "名詞", + "pn": -0.299287 + }, + { + "surface": "ボイコット", + "readging": "ボイコット", + "pos": "名詞", + "pn": -0.299293 + }, + { + "surface": "落し子", + "readging": "おとしご", + "pos": "名詞", + "pn": -0.299305 + }, + { + "surface": "天眼鏡", + "readging": "てんがんきょう", + "pos": "名詞", + "pn": -0.299317 + }, + { + "surface": "原子爆弾", + "readging": "げんしばくだん", + "pos": "名詞", + "pn": -0.299325 + }, + { + "surface": "音色", + "readging": "ねいろ", + "pos": "名詞", + "pn": -0.299341 + }, + { + "surface": "散開", + "readging": "さんかい", + "pos": "名詞", + "pn": -0.299345 + }, + { + "surface": "総譜", + "readging": "そうふ", + "pos": "名詞", + "pn": -0.299392 + }, + { + "surface": "碍子", + "readging": "がいし", + "pos": "名詞", + "pn": -0.299402 + }, + { + "surface": "髷物", + "readging": "まげもの", + "pos": "名詞", + "pn": -0.29941 + }, + { + "surface": "実業家", + "readging": "じつぎょうか", + "pos": "名詞", + "pn": -0.29944 + }, + { + "surface": "盗伐", + "readging": "とうばつ", + "pos": "名詞", + "pn": -0.299476 + }, + { + "surface": "肯んずる", + "readging": "がえんずる", + "pos": "動詞", + "pn": -0.29951 + }, + { + "surface": "中断", + "readging": "ちゅうだん", + "pos": "名詞", + "pn": -0.299515 + }, + { + "surface": "血栓", + "readging": "けっせん", + "pos": "名詞", + "pn": -0.299531 + }, + { + "surface": "転回", + "readging": "てんかい", + "pos": "名詞", + "pn": -0.299535 + }, + { + "surface": "軽鬆土", + "readging": "けいそうど", + "pos": "名詞", + "pn": -0.299541 + }, + { + "surface": "信頼度", + "readging": "しんらいど", + "pos": "名詞", + "pn": -0.29955 + }, + { + "surface": "相聞", + "readging": "そうもん", + "pos": "名詞", + "pn": -0.299551 + }, + { + "surface": "立国", + "readging": "りっこく", + "pos": "名詞", + "pn": -0.299561 + }, + { + "surface": "再刊", + "readging": "さいかん", + "pos": "名詞", + "pn": -0.299561 + }, + { + "surface": "手鼻", + "readging": "てばな", + "pos": "名詞", + "pn": -0.299566 + }, + { + "surface": "駄本", + "readging": "だほん", + "pos": "名詞", + "pn": -0.299568 + }, + { + "surface": "根芹", + "readging": "ねぜり", + "pos": "名詞", + "pn": -0.299576 + }, + { + "surface": "壮挙", + "readging": "そうきょ", + "pos": "名詞", + "pn": -0.299592 + }, + { + "surface": "目見", + "readging": "まみ", + "pos": "名詞", + "pn": -0.2996 + }, + { + "surface": "判ずる", + "readging": "はんずる", + "pos": "動詞", + "pn": -0.299628 + }, + { + "surface": "末の世", + "readging": "すえのよ", + "pos": "名詞", + "pn": -0.299629 + }, + { + "surface": "濡衣", + "readging": "ぬれぎぬ", + "pos": "名詞", + "pn": -0.299676 + }, + { + "surface": "重版", + "readging": "じゅうはん", + "pos": "名詞", + "pn": -0.299681 + }, + { + "surface": "学友", + "readging": "がくゆう", + "pos": "名詞", + "pn": -0.299702 + }, + { + "surface": "独り歩き", + "readging": "ひとりあるき", + "pos": "名詞", + "pn": -0.299717 + }, + { + "surface": "生き餌", + "readging": "いきえ", + "pos": "名詞", + "pn": -0.299728 + }, + { + "surface": "黒死病", + "readging": "こくしびょう", + "pos": "名詞", + "pn": -0.299741 + }, + { + "surface": "吹奏楽", + "readging": "すいそうがく", + "pos": "名詞", + "pn": -0.299744 + }, + { + "surface": "番える", + "readging": "つがえる", + "pos": "動詞", + "pn": -0.299762 + }, + { + "surface": "スコール", + "readging": "スコール", + "pos": "名詞", + "pn": -0.299768 + }, + { + "surface": "買出し", + "readging": "かいだし", + "pos": "名詞", + "pn": -0.299768 + }, + { + "surface": "アングル", + "readging": "アングル", + "pos": "名詞", + "pn": -0.299778 + }, + { + "surface": "るまた", + "readging": "るまた", + "pos": "名詞", + "pn": -0.299804 + }, + { + "surface": "仏式", + "readging": "ぶっしき", + "pos": "名詞", + "pn": -0.299811 + }, + { + "surface": "禁廷", + "readging": "きんてい", + "pos": "名詞", + "pn": -0.299816 + }, + { + "surface": "羊羹色", + "readging": "ようかんいろ", + "pos": "名詞", + "pn": -0.299843 + }, + { + "surface": "検出", + "readging": "けんしゅつ", + "pos": "名詞", + "pn": -0.299843 + }, + { + "surface": "山家", + "readging": "やまが", + "pos": "名詞", + "pn": -0.299871 + }, + { + "surface": "オープン", + "readging": "オープンセット", + "pos": "名詞", + "pn": -0.299893 + }, + { + "surface": "パーカッション", + "readging": "パーカッション", + "pos": "名詞", + "pn": -0.299896 + }, + { + "surface": "神代", + "readging": "かみよ", + "pos": "名詞", + "pn": -0.299897 + }, + { + "surface": "ガソリン", + "readging": "ガソリンカー", + "pos": "名詞", + "pn": -0.299921 + }, + { + "surface": "異土", + "readging": "いど", + "pos": "名詞", + "pn": -0.299943 + }, + { + "surface": "放屁", + "readging": "ほうひ", + "pos": "名詞", + "pn": -0.299965 + }, + { + "surface": "条文", + "readging": "じょうぶん", + "pos": "名詞", + "pn": -0.299968 + }, + { + "surface": "闇相場", + "readging": "やみそうば", + "pos": "名詞", + "pn": -0.299992 + }, + { + "surface": "公用", + "readging": "こうよう", + "pos": "名詞", + "pn": -0.299997 + }, + { + "surface": "食パン", + "readging": "しょくパン", + "pos": "名詞", + "pn": -0.300002 + }, + { + "surface": "割算", + "readging": "わりざん", + "pos": "名詞", + "pn": -0.300009 + }, + { + "surface": "尚書", + "readging": "しょうしょ", + "pos": "名詞", + "pn": -0.300037 + }, + { + "surface": "奮戦", + "readging": "ふんせん", + "pos": "名詞", + "pn": -0.300041 + }, + { + "surface": "サーキット", + "readging": "サーキット", + "pos": "名詞", + "pn": -0.300097 + }, + { + "surface": "傍白", + "readging": "ぼうはく", + "pos": "名詞", + "pn": -0.30011 + }, + { + "surface": "盟友", + "readging": "めいゆう", + "pos": "名詞", + "pn": -0.300124 + }, + { + "surface": "寺子屋", + "readging": "てらこや", + "pos": "名詞", + "pn": -0.300149 + }, + { + "surface": "抜錨", + "readging": "ばつびょう", + "pos": "名詞", + "pn": -0.300155 + }, + { + "surface": "配色", + "readging": "はいしょく", + "pos": "名詞", + "pn": -0.300159 + }, + { + "surface": "偏衫", + "readging": "へんさん", + "pos": "名詞", + "pn": -0.300167 + }, + { + "surface": "インターナショナル", + "readging": "インターナショナル", + "pos": "名詞", + "pn": -0.300184 + }, + { + "surface": "アルマイト", + "readging": "アルマイト", + "pos": "名詞", + "pn": -0.300184 + }, + { + "surface": "親文字", + "readging": "おやもじ", + "pos": "名詞", + "pn": -0.300207 + }, + { + "surface": "グライダー", + "readging": "グライダー", + "pos": "名詞", + "pn": -0.300208 + }, + { + "surface": "人参", + "readging": "にんじん", + "pos": "名詞", + "pn": -0.300239 + }, + { + "surface": "棄却", + "readging": "ききゃく", + "pos": "名詞", + "pn": -0.300245 + }, + { + "surface": "泥む", + "readging": "なずむ", + "pos": "動詞", + "pn": -0.300261 + }, + { + "surface": "パイロット", + "readging": "パイロット", + "pos": "名詞", + "pn": -0.300262 + }, + { + "surface": "人外", + "readging": "じんがい", + "pos": "名詞", + "pn": -0.300278 + }, + { + "surface": "潜り", + "readging": "もぐり", + "pos": "名詞", + "pn": -0.300287 + }, + { + "surface": "天道", + "readging": "てんどう", + "pos": "名詞", + "pn": -0.300297 + }, + { + "surface": "確率", + "readging": "かくりつ", + "pos": "名詞", + "pn": -0.300313 + }, + { + "surface": "キャンプ", + "readging": "キャンプ", + "pos": "名詞", + "pn": -0.300325 + }, + { + "surface": "走らす", + "readging": "はしらす", + "pos": "動詞", + "pn": -0.300332 + }, + { + "surface": "石火矢", + "readging": "いしびや", + "pos": "名詞", + "pn": -0.300355 + }, + { + "surface": "所得", + "readging": "しょとく", + "pos": "名詞", + "pn": -0.300364 + }, + { + "surface": "武陵桃源", + "readging": "ぶりょうとうげん", + "pos": "名詞", + "pn": -0.30037 + }, + { + "surface": "焼", + "readging": "やき", + "pos": "名詞", + "pn": -0.300372 + }, + { + "surface": "涙する", + "readging": "なみだする", + "pos": "動詞", + "pn": -0.300376 + }, + { + "surface": "仕業", + "readging": "しぎょう", + "pos": "名詞", + "pn": -0.300376 + }, + { + "surface": "八丈", + "readging": "はちじょう", + "pos": "名詞", + "pn": -0.30039 + }, + { + "surface": "千歳", + "readging": "ちとせ", + "pos": "名詞", + "pn": -0.300414 + }, + { + "surface": "緑土", + "readging": "りょくど", + "pos": "名詞", + "pn": -0.300453 + }, + { + "surface": "本店", + "readging": "ほんてん", + "pos": "名詞", + "pn": -0.300465 + }, + { + "surface": "柳樽", + "readging": "やなぎだる", + "pos": "名詞", + "pn": -0.300478 + }, + { + "surface": "一文字", + "readging": "ひともじ", + "pos": "名詞", + "pn": -0.300484 + }, + { + "surface": "買上", + "readging": "かいあげ", + "pos": "名詞", + "pn": -0.300497 + }, + { + "surface": "鉄泉", + "readging": "てっせん", + "pos": "名詞", + "pn": -0.300525 + }, + { + "surface": "累積", + "readging": "るいせき", + "pos": "名詞", + "pn": -0.300528 + }, + { + "surface": "年鑑", + "readging": "ねんかん", + "pos": "名詞", + "pn": -0.300549 + }, + { + "surface": "主翼", + "readging": "しゅよく", + "pos": "名詞", + "pn": -0.300556 + }, + { + "surface": "宿便", + "readging": "しゅくべん", + "pos": "名詞", + "pn": -0.300572 + }, + { + "surface": "摩天楼", + "readging": "まてんろう", + "pos": "名詞", + "pn": -0.300588 + }, + { + "surface": "変ずる", + "readging": "へんずる", + "pos": "動詞", + "pn": -0.300599 + }, + { + "surface": "洗面", + "readging": "せんめん", + "pos": "名詞", + "pn": -0.300609 + }, + { + "surface": "覆審", + "readging": "ふくしん", + "pos": "名詞", + "pn": -0.300622 + }, + { + "surface": "感恩", + "readging": "かんおん", + "pos": "名詞", + "pn": -0.300625 + }, + { + "surface": "流線型", + "readging": "りゅうせんけい", + "pos": "名詞", + "pn": -0.300631 + }, + { + "surface": "彼岸", + "readging": "ひがん", + "pos": "名詞", + "pn": -0.300639 + }, + { + "surface": "引退", + "readging": "いんたい", + "pos": "名詞", + "pn": -0.300656 + }, + { + "surface": "牧場", + "readging": "まきば", + "pos": "名詞", + "pn": -0.300664 + }, + { + "surface": "承認", + "readging": "しょうにん", + "pos": "名詞", + "pn": -0.30067 + }, + { + "surface": "ネクタイ", + "readging": "ネクタイ", + "pos": "名詞", + "pn": -0.300688 + }, + { + "surface": "決勝線", + "readging": "けっしょうせん", + "pos": "名詞", + "pn": -0.30069 + }, + { + "surface": "バイパス", + "readging": "バイパス", + "pos": "名詞", + "pn": -0.300693 + }, + { + "surface": "帰臥", + "readging": "きが", + "pos": "名詞", + "pn": -0.300693 + }, + { + "surface": "分際", + "readging": "ぶんざい", + "pos": "名詞", + "pn": -0.300701 + }, + { + "surface": "鶴嘴", + "readging": "つるはし", + "pos": "名詞", + "pn": -0.300703 + }, + { + "surface": "放り出す", + "readging": "ほうりだす", + "pos": "動詞", + "pn": -0.300711 + }, + { + "surface": "座頭", + "readging": "ざがしら", + "pos": "名詞", + "pn": -0.300712 + }, + { + "surface": "横縞", + "readging": "よこじま", + "pos": "名詞", + "pn": -0.300717 + }, + { + "surface": "区区", + "readging": "くく", + "pos": "名詞", + "pn": -0.30073 + }, + { + "surface": "弟", + "readging": "おとうと", + "pos": "名詞", + "pn": -0.30073 + }, + { + "surface": "赤砂糖", + "readging": "あかざとう", + "pos": "名詞", + "pn": -0.300743 + }, + { + "surface": "寝入り端", + "readging": "ねいりばな", + "pos": "名詞", + "pn": -0.300762 + }, + { + "surface": "腹式呼吸", + "readging": "ふくしきこきゅう", + "pos": "名詞", + "pn": -0.300785 + }, + { + "surface": "生年", + "readging": "しょうねん", + "pos": "名詞", + "pn": -0.300791 + }, + { + "surface": "古生代", + "readging": "こせいだい", + "pos": "名詞", + "pn": -0.3008 + }, + { + "surface": "参与", + "readging": "さんよ", + "pos": "名詞", + "pn": -0.300802 + }, + { + "surface": "桃の節句", + "readging": "もものせっく", + "pos": "名詞", + "pn": -0.300821 + }, + { + "surface": "場違い", + "readging": "ばちがい", + "pos": "名詞", + "pn": -0.300828 + }, + { + "surface": "大字", + "readging": "だいじ", + "pos": "名詞", + "pn": -0.30083 + }, + { + "surface": "ビデオ", + "readging": "ビデオテープ", + "pos": "名詞", + "pn": -0.300832 + }, + { + "surface": "サブ", + "readging": "サブ", + "pos": "名詞", + "pn": -0.300839 + }, + { + "surface": "番う", + "readging": "つがう", + "pos": "動詞", + "pn": -0.300841 + }, + { + "surface": "宿主", + "readging": "やどぬし", + "pos": "名詞", + "pn": -0.300853 + }, + { + "surface": "価額", + "readging": "かがく", + "pos": "名詞", + "pn": -0.300854 + }, + { + "surface": "渋紙", + "readging": "しぶがみ", + "pos": "名詞", + "pn": -0.300878 + }, + { + "surface": "リサイクル", + "readging": "リサイクル", + "pos": "名詞", + "pn": -0.300916 + }, + { + "surface": "相姦", + "readging": "そうかん", + "pos": "名詞", + "pn": -0.300919 + }, + { + "surface": "肉界", + "readging": "にくかい", + "pos": "名詞", + "pn": -0.300924 + }, + { + "surface": "積雲", + "readging": "せきうん", + "pos": "名詞", + "pn": -0.300926 + }, + { + "surface": "蔵出し", + "readging": "くらだし", + "pos": "名詞", + "pn": -0.300935 + }, + { + "surface": "長脇差", + "readging": "ながわきざし", + "pos": "名詞", + "pn": -0.300941 + }, + { + "surface": "一身", + "readging": "いっしん", + "pos": "名詞", + "pn": -0.300956 + }, + { + "surface": "狂言回し", + "readging": "きょうげんまわし", + "pos": "名詞", + "pn": -0.300962 + }, + { + "surface": "十二指腸虫", + "readging": "じゅうにしちょうちゅう", + "pos": "名詞", + "pn": -0.300973 + }, + { + "surface": "カッター", + "readging": "カッターシャツ", + "pos": "名詞", + "pn": -0.301002 + }, + { + "surface": "ハミング", + "readging": "ハミング", + "pos": "名詞", + "pn": -0.301022 + }, + { + "surface": "反っ歯", + "readging": "そっぱ", + "pos": "名詞", + "pn": -0.30106 + }, + { + "surface": "就任", + "readging": "しゅうにん", + "pos": "名詞", + "pn": -0.3011 + }, + { + "surface": "棟割長屋", + "readging": "むねわりながや", + "pos": "名詞", + "pn": -0.301121 + }, + { + "surface": "飛立つ", + "readging": "とびたつ", + "pos": "動詞", + "pn": -0.301131 + }, + { + "surface": "仕舞い忘れる", + "readging": "しまいわすれる", + "pos": "動詞", + "pn": -0.301139 + }, + { + "surface": "三曲", + "readging": "さんきょく", + "pos": "名詞", + "pn": -0.301152 + }, + { + "surface": "教典", + "readging": "きょうてん", + "pos": "名詞", + "pn": -0.301152 + }, + { + "surface": "カスタネット", + "readging": "カスタネット", + "pos": "名詞", + "pn": -0.301152 + }, + { + "surface": "飲屋", + "readging": "のみや", + "pos": "名詞", + "pn": -0.301161 + }, + { + "surface": "余炎", + "readging": "よえん", + "pos": "名詞", + "pn": -0.301201 + }, + { + "surface": "抵触", + "readging": "ていしょく", + "pos": "名詞", + "pn": -0.301202 + }, + { + "surface": "段通", + "readging": "だんつう", + "pos": "名詞", + "pn": -0.301206 + }, + { + "surface": "生育", + "readging": "せいいく", + "pos": "名詞", + "pn": -0.301222 + }, + { + "surface": "会報", + "readging": "かいほう", + "pos": "名詞", + "pn": -0.301274 + }, + { + "surface": "千切り", + "readging": "せんぎり", + "pos": "名詞", + "pn": -0.301292 + }, + { + "surface": "這松", + "readging": "はいまつ", + "pos": "名詞", + "pn": -0.301298 + }, + { + "surface": "骨盤", + "readging": "こつばん", + "pos": "名詞", + "pn": -0.301308 + }, + { + "surface": "買入れる", + "readging": "かいいれる", + "pos": "動詞", + "pn": -0.301319 + }, + { + "surface": "尖兵", + "readging": "せんぺい", + "pos": "名詞", + "pn": -0.30132 + }, + { + "surface": "世帯", + "readging": "せたい", + "pos": "名詞", + "pn": -0.301324 + }, + { + "surface": "召寄せる", + "readging": "めしよせる", + "pos": "動詞", + "pn": -0.301325 + }, + { + "surface": "歳計", + "readging": "さいけい", + "pos": "名詞", + "pn": -0.301347 + }, + { + "surface": "リゾール", + "readging": "リゾール", + "pos": "名詞", + "pn": -0.30135 + }, + { + "surface": "チョンガー", + "readging": "チョンガー", + "pos": "名詞", + "pn": -0.301356 + }, + { + "surface": "花文字", + "readging": "はなもじ", + "pos": "名詞", + "pn": -0.301388 + }, + { + "surface": "上書き", + "readging": "うわがき", + "pos": "名詞", + "pn": -0.301423 + }, + { + "surface": "主軸", + "readging": "しゅじく", + "pos": "名詞", + "pn": -0.301471 + }, + { + "surface": "会見", + "readging": "かいけん", + "pos": "名詞", + "pn": -0.301489 + }, + { + "surface": "胆汁", + "readging": "たんじゅう", + "pos": "名詞", + "pn": -0.301522 + }, + { + "surface": "山桜", + "readging": "やまざくら", + "pos": "名詞", + "pn": -0.301529 + }, + { + "surface": "骨壺", + "readging": "こつつぼ", + "pos": "名詞", + "pn": -0.30153 + }, + { + "surface": "内裏雛", + "readging": "だいりびな", + "pos": "名詞", + "pn": -0.301553 + }, + { + "surface": "省線", + "readging": "しょうせん", + "pos": "名詞", + "pn": -0.301555 + }, + { + "surface": "弁済", + "readging": "べんさい", + "pos": "名詞", + "pn": -0.301572 + }, + { + "surface": "力付ける", + "readging": "ちからづける", + "pos": "動詞", + "pn": -0.301573 + }, + { + "surface": "目板", + "readging": "めいた", + "pos": "名詞", + "pn": -0.30158 + }, + { + "surface": "熱中", + "readging": "ねっちゅう", + "pos": "名詞", + "pn": -0.301599 + }, + { + "surface": "比較", + "readging": "ひかく", + "pos": "名詞", + "pn": -0.301607 + }, + { + "surface": "レジスター", + "readging": "レジスター", + "pos": "名詞", + "pn": -0.301608 + }, + { + "surface": "照る照る坊主", + "readging": "てるてるぼうず", + "pos": "名詞", + "pn": -0.301618 + }, + { + "surface": "謙虚", + "readging": "けんきょ", + "pos": "名詞", + "pn": -0.301626 + }, + { + "surface": "インデックス", + "readging": "インデックス", + "pos": "名詞", + "pn": -0.301647 + }, + { + "surface": "装う", + "readging": "よそおう", + "pos": "動詞", + "pn": -0.301682 + }, + { + "surface": "甘鯛", + "readging": "あまだい", + "pos": "名詞", + "pn": -0.301686 + }, + { + "surface": "下回る", + "readging": "したまわる", + "pos": "動詞", + "pn": -0.301698 + }, + { + "surface": "天日", + "readging": "てんぴ", + "pos": "名詞", + "pn": -0.301698 + }, + { + "surface": "テーブル", + "readging": "テーブル", + "pos": "名詞", + "pn": -0.301699 + }, + { + "surface": "寝ずの番", + "readging": "ねずのばん", + "pos": "名詞", + "pn": -0.301704 + }, + { + "surface": "公称", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.301721 + }, + { + "surface": "沖", + "readging": "おき", + "pos": "名詞", + "pn": -0.301723 + }, + { + "surface": "素粒子", + "readging": "そりゅうし", + "pos": "名詞", + "pn": -0.30173 + }, + { + "surface": "漏斗", + "readging": "じょうご", + "pos": "名詞", + "pn": -0.301742 + }, + { + "surface": "ピッチング", + "readging": "ピッチング", + "pos": "名詞", + "pn": -0.301743 + }, + { + "surface": "四捨五入", + "readging": "ししゃごにゅう", + "pos": "名詞", + "pn": -0.30175 + }, + { + "surface": "町年寄", + "readging": "まちどしより", + "pos": "名詞", + "pn": -0.301752 + }, + { + "surface": "合札", + "readging": "あいふだ", + "pos": "名詞", + "pn": -0.301762 + }, + { + "surface": "衛士", + "readging": "えじ", + "pos": "名詞", + "pn": -0.301805 + }, + { + "surface": "陽光", + "readging": "ようこう", + "pos": "名詞", + "pn": -0.301808 + }, + { + "surface": "パッキング", + "readging": "パッキング", + "pos": "名詞", + "pn": -0.301811 + }, + { + "surface": "再生産", + "readging": "さいせいさん", + "pos": "名詞", + "pn": -0.301816 + }, + { + "surface": "労銀", + "readging": "ろうぎん", + "pos": "名詞", + "pn": -0.30185 + }, + { + "surface": "風物詩", + "readging": "ふうぶつし", + "pos": "名詞", + "pn": -0.301874 + }, + { + "surface": "母方", + "readging": "ははかた", + "pos": "名詞", + "pn": -0.301894 + }, + { + "surface": "掛替え", + "readging": "かけがえ", + "pos": "名詞", + "pn": -0.301898 + }, + { + "surface": "レンジ", + "readging": "レンジ", + "pos": "名詞", + "pn": -0.301926 + }, + { + "surface": "初経", + "readging": "しょけい", + "pos": "名詞", + "pn": -0.301932 + }, + { + "surface": "本質", + "readging": "ほんしつ", + "pos": "名詞", + "pn": -0.301943 + }, + { + "surface": "麦踏み", + "readging": "むぎふみ", + "pos": "名詞", + "pn": -0.301982 + }, + { + "surface": "痛点", + "readging": "つうてん", + "pos": "名詞", + "pn": -0.302003 + }, + { + "surface": "十進法", + "readging": "じっしんほう", + "pos": "名詞", + "pn": -0.302006 + }, + { + "surface": "雑考", + "readging": "ざっこう", + "pos": "名詞", + "pn": -0.30202 + }, + { + "surface": "連珠", + "readging": "れんじゅ", + "pos": "名詞", + "pn": -0.302061 + }, + { + "surface": "三度飛脚", + "readging": "さんどびきゃく", + "pos": "名詞", + "pn": -0.302062 + }, + { + "surface": "転た", + "readging": "うたた", + "pos": "副詞", + "pn": -0.302063 + }, + { + "surface": "斥候", + "readging": "せっこう", + "pos": "名詞", + "pn": -0.302066 + }, + { + "surface": "高粱", + "readging": "コーリャン", + "pos": "名詞", + "pn": -0.302072 + }, + { + "surface": "ブーケ", + "readging": "ブーケ", + "pos": "名詞", + "pn": -0.302092 + }, + { + "surface": "領空", + "readging": "りょうくう", + "pos": "名詞", + "pn": -0.302094 + }, + { + "surface": "彩管", + "readging": "さいかん", + "pos": "名詞", + "pn": -0.302101 + }, + { + "surface": "渉猟", + "readging": "しょうりょう", + "pos": "名詞", + "pn": -0.302103 + }, + { + "surface": "垂木", + "readging": "たるき", + "pos": "名詞", + "pn": -0.302108 + }, + { + "surface": "金管", + "readging": "きんかん", + "pos": "名詞", + "pn": -0.30211 + }, + { + "surface": "一杯機嫌", + "readging": "いっぱいきげん", + "pos": "名詞", + "pn": -0.302119 + }, + { + "surface": "呼立てる", + "readging": "よびたてる", + "pos": "動詞", + "pn": -0.302151 + }, + { + "surface": "秘方", + "readging": "ひほう", + "pos": "名詞", + "pn": -0.302175 + }, + { + "surface": "複数", + "readging": "ふくすう", + "pos": "名詞", + "pn": -0.302179 + }, + { + "surface": "都鳥", + "readging": "みやこどり", + "pos": "名詞", + "pn": -0.302186 + }, + { + "surface": "SOS", + "readging": "エスオーエス", + "pos": "名詞", + "pn": -0.302188 + }, + { + "surface": "城下町", + "readging": "じょうかまち", + "pos": "名詞", + "pn": -0.302211 + }, + { + "surface": "ナンバリング", + "readging": "ナンバリング", + "pos": "名詞", + "pn": -0.302213 + }, + { + "surface": "張店", + "readging": "はりみせ", + "pos": "名詞", + "pn": -0.302254 + }, + { + "surface": "請戻し", + "readging": "うけもどし", + "pos": "名詞", + "pn": -0.302271 + }, + { + "surface": "一覧表", + "readging": "いちらんひょう", + "pos": "名詞", + "pn": -0.302272 + }, + { + "surface": "三献", + "readging": "さんこん", + "pos": "名詞", + "pn": -0.302294 + }, + { + "surface": "吶喊", + "readging": "とっかん", + "pos": "名詞", + "pn": -0.302312 + }, + { + "surface": "二次", + "readging": "にじ", + "pos": "名詞", + "pn": -0.302326 + }, + { + "surface": "長子", + "readging": "ちょうし", + "pos": "名詞", + "pn": -0.302408 + }, + { + "surface": "変格活用", + "readging": "へんかくかつよう", + "pos": "名詞", + "pn": -0.302415 + }, + { + "surface": "式典", + "readging": "しきてん", + "pos": "名詞", + "pn": -0.302418 + }, + { + "surface": "長雨", + "readging": "ながあめ", + "pos": "名詞", + "pn": -0.302435 + }, + { + "surface": "腹切", + "readging": "はらきり", + "pos": "名詞", + "pn": -0.302437 + }, + { + "surface": "聞入る", + "readging": "ききいる", + "pos": "動詞", + "pn": -0.302448 + }, + { + "surface": "取返す", + "readging": "とりかえす", + "pos": "動詞", + "pn": -0.302468 + }, + { + "surface": "置物", + "readging": "おきもの", + "pos": "名詞", + "pn": -0.302471 + }, + { + "surface": "タキシード", + "readging": "タキシード", + "pos": "名詞", + "pn": -0.302481 + }, + { + "surface": "並幅", + "readging": "なみはば", + "pos": "名詞", + "pn": -0.302491 + }, + { + "surface": "乳業", + "readging": "にゅうぎょう", + "pos": "名詞", + "pn": -0.302493 + }, + { + "surface": "ベルモット", + "readging": "ベルモット", + "pos": "名詞", + "pn": -0.302502 + }, + { + "surface": "パノラマ", + "readging": "パノラマ", + "pos": "名詞", + "pn": -0.302505 + }, + { + "surface": "泉下", + "readging": "せんか", + "pos": "名詞", + "pn": -0.302511 + }, + { + "surface": "沈静", + "readging": "ちんせい", + "pos": "名詞", + "pn": -0.302513 + }, + { + "surface": "間取り", + "readging": "まどり", + "pos": "名詞", + "pn": -0.302517 + }, + { + "surface": "訳す", + "readging": "やくす", + "pos": "動詞", + "pn": -0.30253 + }, + { + "surface": "約数", + "readging": "やくすう", + "pos": "名詞", + "pn": -0.302533 + }, + { + "surface": "引目鉤鼻", + "readging": "ひきめかぎはな", + "pos": "名詞", + "pn": -0.302546 + }, + { + "surface": "薄笑い", + "readging": "うすわらい", + "pos": "名詞", + "pn": -0.30256 + }, + { + "surface": "連隊", + "readging": "れんたい", + "pos": "名詞", + "pn": -0.302561 + }, + { + "surface": "売", + "readging": "ばい", + "pos": "名詞", + "pn": -0.302564 + }, + { + "surface": "取巻き", + "readging": "とりまき", + "pos": "名詞", + "pn": -0.302578 + }, + { + "surface": "即する", + "readging": "そくする", + "pos": "動詞", + "pn": -0.30258 + }, + { + "surface": "口跡", + "readging": "こうせき", + "pos": "名詞", + "pn": -0.302583 + }, + { + "surface": "ありあり", + "readging": "ありあり", + "pos": "副詞", + "pn": -0.302591 + }, + { + "surface": "瞬発力", + "readging": "しゅんぱつりょく", + "pos": "名詞", + "pn": -0.302593 + }, + { + "surface": "上がり湯", + "readging": "あがりゆ", + "pos": "名詞", + "pn": -0.302595 + }, + { + "surface": "所掌", + "readging": "しょしょう", + "pos": "名詞", + "pn": -0.302605 + }, + { + "surface": "私腹", + "readging": "しふく", + "pos": "名詞", + "pn": -0.302622 + }, + { + "surface": "仲人", + "readging": "なこうど", + "pos": "名詞", + "pn": -0.302627 + }, + { + "surface": "殺ぎ竹", + "readging": "そぎだけ", + "pos": "名詞", + "pn": -0.30263 + }, + { + "surface": "水防", + "readging": "すいぼう", + "pos": "名詞", + "pn": -0.302637 + }, + { + "surface": "ちゃんばら", + "readging": "ちゃんばら", + "pos": "名詞", + "pn": -0.302642 + }, + { + "surface": "ストッキング", + "readging": "ストッキング", + "pos": "名詞", + "pn": -0.302642 + }, + { + "surface": "タラップ", + "readging": "タラップ", + "pos": "名詞", + "pn": -0.302643 + }, + { + "surface": "効力", + "readging": "こうりょく", + "pos": "名詞", + "pn": -0.302645 + }, + { + "surface": "ブッシェル", + "readging": "ブッシェル", + "pos": "名詞", + "pn": -0.302646 + }, + { + "surface": "普遍", + "readging": "ふへん", + "pos": "名詞", + "pn": -0.302677 + }, + { + "surface": "ワルツ", + "readging": "ワルツ", + "pos": "名詞", + "pn": -0.302685 + }, + { + "surface": "スライディング", + "readging": "スライディングシステム", + "pos": "名詞", + "pn": -0.30269 + }, + { + "surface": "制限", + "readging": "せいげん", + "pos": "名詞", + "pn": -0.302702 + }, + { + "surface": "観察", + "readging": "かんさつ", + "pos": "名詞", + "pn": -0.302704 + }, + { + "surface": "核果", + "readging": "かっか", + "pos": "名詞", + "pn": -0.302714 + }, + { + "surface": "雁書", + "readging": "がんしょ", + "pos": "名詞", + "pn": -0.302719 + }, + { + "surface": "不定", + "readging": "ふじょう", + "pos": "名詞", + "pn": -0.302719 + }, + { + "surface": "飲み手", + "readging": "のみて", + "pos": "名詞", + "pn": -0.302725 + }, + { + "surface": "措定", + "readging": "そてい", + "pos": "名詞", + "pn": -0.302726 + }, + { + "surface": "蒸籠", + "readging": "せいろ", + "pos": "名詞", + "pn": -0.302733 + }, + { + "surface": "野太刀", + "readging": "のだち", + "pos": "名詞", + "pn": -0.302742 + }, + { + "surface": "磐", + "readging": "ばん", + "pos": "名詞", + "pn": -0.302744 + }, + { + "surface": "水禍", + "readging": "すいか", + "pos": "名詞", + "pn": -0.302754 + }, + { + "surface": "紀元", + "readging": "きげん", + "pos": "名詞", + "pn": -0.302757 + }, + { + "surface": "堆朱", + "readging": "ついしゅ", + "pos": "名詞", + "pn": -0.302772 + }, + { + "surface": "アルコール中毒", + "readging": "アルコールちゅうどく", + "pos": "名詞", + "pn": -0.302776 + }, + { + "surface": "見失う", + "readging": "みうしなう", + "pos": "動詞", + "pn": -0.302805 + }, + { + "surface": "兵燹", + "readging": "へいせん", + "pos": "名詞", + "pn": -0.302808 + }, + { + "surface": "死毒", + "readging": "しどく", + "pos": "名詞", + "pn": -0.302831 + }, + { + "surface": "パージ", + "readging": "パージ", + "pos": "名詞", + "pn": -0.302838 + }, + { + "surface": "口碑", + "readging": "こうひ", + "pos": "名詞", + "pn": -0.302848 + }, + { + "surface": "農芸", + "readging": "のうげい", + "pos": "名詞", + "pn": -0.302865 + }, + { + "surface": "金雀児", + "readging": "エニシダ", + "pos": "名詞", + "pn": -0.302875 + }, + { + "surface": "戦犯", + "readging": "せんぱん", + "pos": "名詞", + "pn": -0.302885 + }, + { + "surface": "五障", + "readging": "ごしょう", + "pos": "名詞", + "pn": -0.302913 + }, + { + "surface": "形声", + "readging": "けいせい", + "pos": "名詞", + "pn": -0.302923 + }, + { + "surface": "霊感", + "readging": "れいかん", + "pos": "名詞", + "pn": -0.302927 + }, + { + "surface": "寝そべる", + "readging": "ねそべる", + "pos": "動詞", + "pn": -0.302944 + }, + { + "surface": "不如帰", + "readging": "ふじょき", + "pos": "名詞", + "pn": -0.302964 + }, + { + "surface": "付す", + "readging": "ふす", + "pos": "動詞", + "pn": -0.302978 + }, + { + "surface": "添削", + "readging": "てんさく", + "pos": "名詞", + "pn": -0.302999 + }, + { + "surface": "面汚し", + "readging": "つらよごし", + "pos": "名詞", + "pn": -0.303 + }, + { + "surface": "柊", + "readging": "ひいらぎ", + "pos": "名詞", + "pn": -0.303016 + }, + { + "surface": "極限", + "readging": "きょくげん", + "pos": "名詞", + "pn": -0.303018 + }, + { + "surface": "御朱印", + "readging": "ごしゅいん", + "pos": "名詞", + "pn": -0.30304 + }, + { + "surface": "内分泌", + "readging": "ないぶんぴつ", + "pos": "名詞", + "pn": -0.303046 + }, + { + "surface": "採取", + "readging": "さいしゅ", + "pos": "名詞", + "pn": -0.303097 + }, + { + "surface": "宮参り", + "readging": "みやまいり", + "pos": "名詞", + "pn": -0.303109 + }, + { + "surface": "停学", + "readging": "ていがく", + "pos": "名詞", + "pn": -0.303111 + }, + { + "surface": "思索", + "readging": "しさく", + "pos": "名詞", + "pn": -0.303138 + }, + { + "surface": "節織", + "readging": "ふしおり", + "pos": "名詞", + "pn": -0.303147 + }, + { + "surface": "早める", + "readging": "はやめる", + "pos": "動詞", + "pn": -0.303153 + }, + { + "surface": "花笠", + "readging": "はながさ", + "pos": "名詞", + "pn": -0.303154 + }, + { + "surface": "乱舞", + "readging": "らっぷ", + "pos": "名詞", + "pn": -0.303165 + }, + { + "surface": "伝声管", + "readging": "でんせいかん", + "pos": "名詞", + "pn": -0.30317 + }, + { + "surface": "汎愛", + "readging": "はんあい", + "pos": "名詞", + "pn": -0.303172 + }, + { + "surface": "火事場", + "readging": "かじば", + "pos": "名詞", + "pn": -0.303205 + }, + { + "surface": "切身", + "readging": "きりみ", + "pos": "名詞", + "pn": -0.303219 + }, + { + "surface": "受付", + "readging": "うけつけ", + "pos": "名詞", + "pn": -0.303232 + }, + { + "surface": "八百万", + "readging": "やお", + "pos": "名詞", + "pn": -0.303235 + }, + { + "surface": "打上げる", + "readging": "うちあげる", + "pos": "動詞", + "pn": -0.303247 + }, + { + "surface": "総会", + "readging": "そうかい", + "pos": "名詞", + "pn": -0.303278 + }, + { + "surface": "鈴", + "readging": "すず", + "pos": "名詞", + "pn": -0.303288 + }, + { + "surface": "マーキュロ", + "readging": "マーキュロ", + "pos": "名詞", + "pn": -0.303309 + }, + { + "surface": "有価証券", + "readging": "ゆうかしょうけん", + "pos": "名詞", + "pn": -0.303329 + }, + { + "surface": "筆遣い", + "readging": "ふでづかい", + "pos": "名詞", + "pn": -0.303362 + }, + { + "surface": "叙情", + "readging": "じょじょう", + "pos": "名詞", + "pn": -0.303373 + }, + { + "surface": "キー", + "readging": "キーノート", + "pos": "名詞", + "pn": -0.303378 + }, + { + "surface": "一越", + "readging": "ひとこし", + "pos": "名詞", + "pn": -0.303392 + }, + { + "surface": "集光器", + "readging": "しゅうこうき", + "pos": "名詞", + "pn": -0.303399 + }, + { + "surface": "千代紙", + "readging": "ちよがみ", + "pos": "名詞", + "pn": -0.303422 + }, + { + "surface": "産着", + "readging": "うぶぎ", + "pos": "名詞", + "pn": -0.303449 + }, + { + "surface": "情夫", + "readging": "じょうふ", + "pos": "名詞", + "pn": -0.303455 + }, + { + "surface": "列氏寒暖計", + "readging": "れっしかんだんけい", + "pos": "名詞", + "pn": -0.303455 + }, + { + "surface": "空前絶後", + "readging": "くうぜんぜつご", + "pos": "名詞", + "pn": -0.303465 + }, + { + "surface": "新内", + "readging": "しんない", + "pos": "名詞", + "pn": -0.303477 + }, + { + "surface": "星図", + "readging": "せいず", + "pos": "名詞", + "pn": -0.30348 + }, + { + "surface": "行火", + "readging": "あんか", + "pos": "名詞", + "pn": -0.303493 + }, + { + "surface": "砲門", + "readging": "ほうもん", + "pos": "名詞", + "pn": -0.303504 + }, + { + "surface": "建水", + "readging": "けんすい", + "pos": "名詞", + "pn": -0.303517 + }, + { + "surface": "脱肛", + "readging": "だっこう", + "pos": "名詞", + "pn": -0.303525 + }, + { + "surface": "禁色", + "readging": "きんじき", + "pos": "名詞", + "pn": -0.303541 + }, + { + "surface": "ゴルフ", + "readging": "ゴルフ", + "pos": "名詞", + "pn": -0.303572 + }, + { + "surface": "無筆", + "readging": "むひつ", + "pos": "名詞", + "pn": -0.30359 + }, + { + "surface": "前歯", + "readging": "まえば", + "pos": "名詞", + "pn": -0.303613 + }, + { + "surface": "針仕事", + "readging": "はりしごと", + "pos": "名詞", + "pn": -0.303618 + }, + { + "surface": "上弦", + "readging": "じょうげん", + "pos": "名詞", + "pn": -0.303625 + }, + { + "surface": "インフォームド コンセント", + "readging": "インフォームド コンセント", + "pos": "名詞", + "pn": -0.303625 + }, + { + "surface": "日参", + "readging": "にっさん", + "pos": "名詞", + "pn": -0.303637 + }, + { + "surface": "算式", + "readging": "さんしき", + "pos": "名詞", + "pn": -0.303647 + }, + { + "surface": "希ガス類", + "readging": "きガスるい", + "pos": "名詞", + "pn": -0.303655 + }, + { + "surface": "緯", + "readging": "い", + "pos": "名詞", + "pn": -0.303656 + }, + { + "surface": "保持", + "readging": "ほじ", + "pos": "名詞", + "pn": -0.30367 + }, + { + "surface": "表音", + "readging": "ひょうおん", + "pos": "名詞", + "pn": -0.303671 + }, + { + "surface": "隣合せ", + "readging": "となりあわせ", + "pos": "名詞", + "pn": -0.303673 + }, + { + "surface": "標高", + "readging": "ひょうこう", + "pos": "名詞", + "pn": -0.303676 + }, + { + "surface": "風物", + "readging": "ふうぶつ", + "pos": "名詞", + "pn": -0.303681 + }, + { + "surface": "義絶", + "readging": "ぎぜつ", + "pos": "名詞", + "pn": -0.303697 + }, + { + "surface": "寒剤", + "readging": "かんざい", + "pos": "名詞", + "pn": -0.303709 + }, + { + "surface": "流砂", + "readging": "りゅうしゃ", + "pos": "名詞", + "pn": -0.30373 + }, + { + "surface": "盆栽", + "readging": "ぼんさい", + "pos": "名詞", + "pn": -0.303765 + }, + { + "surface": "蒟蒻版", + "readging": "こんにゃくばん", + "pos": "名詞", + "pn": -0.303766 + }, + { + "surface": "化学繊維", + "readging": "かがくせんい", + "pos": "名詞", + "pn": -0.3038 + }, + { + "surface": "一心不乱", + "readging": "いっしんふらん", + "pos": "名詞", + "pn": -0.303807 + }, + { + "surface": "木取り", + "readging": "きどり", + "pos": "名詞", + "pn": -0.303832 + }, + { + "surface": "トン数", + "readging": "トンすう", + "pos": "名詞", + "pn": -0.303842 + }, + { + "surface": "俳画", + "readging": "はいが", + "pos": "名詞", + "pn": -0.303844 + }, + { + "surface": "円貨", + "readging": "えんか", + "pos": "名詞", + "pn": -0.303864 + }, + { + "surface": "紀伝", + "readging": "きでん", + "pos": "名詞", + "pn": -0.303882 + }, + { + "surface": "引菓子", + "readging": "ひきがし", + "pos": "名詞", + "pn": -0.303886 + }, + { + "surface": "主治医", + "readging": "しゅじい", + "pos": "名詞", + "pn": -0.303892 + }, + { + "surface": "ドル買", + "readging": "ドルかい", + "pos": "名詞", + "pn": -0.303906 + }, + { + "surface": "ポーカー", + "readging": "ポーカーフェース", + "pos": "名詞", + "pn": -0.303918 + }, + { + "surface": "謫所", + "readging": "たくしょ", + "pos": "名詞", + "pn": -0.303956 + }, + { + "surface": "極秘", + "readging": "ごくひ", + "pos": "名詞", + "pn": -0.303988 + }, + { + "surface": "雲散", + "readging": "うんさん", + "pos": "名詞", + "pn": -0.304007 + }, + { + "surface": "決済", + "readging": "けっさい", + "pos": "名詞", + "pn": -0.304018 + }, + { + "surface": "屯", + "readging": "たむろ", + "pos": "名詞", + "pn": -0.304018 + }, + { + "surface": "不宣", + "readging": "ふせん", + "pos": "名詞", + "pn": -0.304023 + }, + { + "surface": "勤め先", + "readging": "つとめさき", + "pos": "名詞", + "pn": -0.304033 + }, + { + "surface": "ハンスト", + "readging": "ハンスト", + "pos": "名詞", + "pn": -0.304036 + }, + { + "surface": "千草", + "readging": "ちぐさ", + "pos": "名詞", + "pn": -0.304081 + }, + { + "surface": "声変り", + "readging": "こえがわり", + "pos": "名詞", + "pn": -0.304104 + }, + { + "surface": "反別", + "readging": "たんべつ", + "pos": "名詞", + "pn": -0.304119 + }, + { + "surface": "遺跡", + "readging": "いせき", + "pos": "名詞", + "pn": -0.304122 + }, + { + "surface": "生揚", + "readging": "なまあげ", + "pos": "名詞", + "pn": -0.304129 + }, + { + "surface": "ローリング", + "readging": "ローリング", + "pos": "名詞", + "pn": -0.304137 + }, + { + "surface": "草相撲", + "readging": "くさずもう", + "pos": "名詞", + "pn": -0.304146 + }, + { + "surface": "返上", + "readging": "へんじょう", + "pos": "名詞", + "pn": -0.304155 + }, + { + "surface": "差益", + "readging": "さえき", + "pos": "名詞", + "pn": -0.304163 + }, + { + "surface": "差料", + "readging": "さしりょう", + "pos": "名詞", + "pn": -0.304167 + }, + { + "surface": "焼跡", + "readging": "やけあと", + "pos": "名詞", + "pn": -0.304185 + }, + { + "surface": "仮装", + "readging": "かそう", + "pos": "名詞", + "pn": -0.304224 + }, + { + "surface": "恩義", + "readging": "おんぎ", + "pos": "名詞", + "pn": -0.304225 + }, + { + "surface": "自粛", + "readging": "じしゅく", + "pos": "名詞", + "pn": -0.304229 + }, + { + "surface": "筋金", + "readging": "すじがね", + "pos": "名詞", + "pn": -0.304231 + }, + { + "surface": "えんか", + "readging": "えんかビニール", + "pos": "名詞", + "pn": -0.304239 + }, + { + "surface": "スカイライン", + "readging": "スカイライン", + "pos": "名詞", + "pn": -0.304242 + }, + { + "surface": "里謡", + "readging": "りよう", + "pos": "名詞", + "pn": -0.304244 + }, + { + "surface": "愛別離苦", + "readging": "あいべつりく", + "pos": "名詞", + "pn": -0.304248 + }, + { + "surface": "恩賜", + "readging": "おんし", + "pos": "名詞", + "pn": -0.304252 + }, + { + "surface": "秋口", + "readging": "あきぐち", + "pos": "名詞", + "pn": -0.304269 + }, + { + "surface": "健啖", + "readging": "けんたん", + "pos": "名詞", + "pn": -0.304291 + }, + { + "surface": "パーティー", + "readging": "パーティー", + "pos": "名詞", + "pn": -0.304303 + }, + { + "surface": "気", + "readging": "き", + "pos": "名詞", + "pn": -0.304309 + }, + { + "surface": "要港", + "readging": "ようこう", + "pos": "名詞", + "pn": -0.304347 + }, + { + "surface": "討匪", + "readging": "とうひ", + "pos": "名詞", + "pn": -0.30438 + }, + { + "surface": "刷本", + "readging": "すりほん", + "pos": "名詞", + "pn": -0.304383 + }, + { + "surface": "閑静", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.304403 + }, + { + "surface": "ラリー", + "readging": "ラリー", + "pos": "名詞", + "pn": -0.304421 + }, + { + "surface": "緑地", + "readging": "りょくち", + "pos": "名詞", + "pn": -0.304462 + }, + { + "surface": "おかか", + "readging": "おかか", + "pos": "名詞", + "pn": -0.304468 + }, + { + "surface": "苦界", + "readging": "くがい", + "pos": "名詞", + "pn": -0.304481 + }, + { + "surface": "姫御前", + "readging": "ひめごぜ", + "pos": "名詞", + "pn": -0.304508 + }, + { + "surface": "下生え", + "readging": "したばえ", + "pos": "名詞", + "pn": -0.304511 + }, + { + "surface": "支隊", + "readging": "したい", + "pos": "名詞", + "pn": -0.30454 + }, + { + "surface": "マス", + "readging": "マスゲーム", + "pos": "名詞", + "pn": -0.304561 + }, + { + "surface": "内所", + "readging": "ないしょ", + "pos": "名詞", + "pn": -0.304564 + }, + { + "surface": "鶉", + "readging": "うずら", + "pos": "名詞", + "pn": -0.304566 + }, + { + "surface": "白樫", + "readging": "しらかし", + "pos": "名詞", + "pn": -0.304569 + }, + { + "surface": "孤塁", + "readging": "こるい", + "pos": "名詞", + "pn": -0.304577 + }, + { + "surface": "白衣", + "readging": "びゃくえ", + "pos": "名詞", + "pn": -0.30458 + }, + { + "surface": "振分け", + "readging": "ふりわけ", + "pos": "名詞", + "pn": -0.304583 + }, + { + "surface": "抵抗運動", + "readging": "ていこううんどう", + "pos": "名詞", + "pn": -0.304596 + }, + { + "surface": "複合語", + "readging": "ふくごうご", + "pos": "名詞", + "pn": -0.304598 + }, + { + "surface": "皇紀", + "readging": "こうき", + "pos": "名詞", + "pn": -0.304615 + }, + { + "surface": "延人員", + "readging": "のべじんいん", + "pos": "名詞", + "pn": -0.304634 + }, + { + "surface": "汀線", + "readging": "ていせん", + "pos": "名詞", + "pn": -0.304642 + }, + { + "surface": "内陸気候", + "readging": "ないりくきこう", + "pos": "名詞", + "pn": -0.304662 + }, + { + "surface": "あらあら", + "readging": "あらあらかしこ", + "pos": "名詞", + "pn": -0.304662 + }, + { + "surface": "影武者", + "readging": "かげむしゃ", + "pos": "名詞", + "pn": -0.304666 + }, + { + "surface": "常任", + "readging": "じょうにん", + "pos": "名詞", + "pn": -0.304668 + }, + { + "surface": "季冬", + "readging": "きとう", + "pos": "名詞", + "pn": -0.30467 + }, + { + "surface": "明", + "readging": "みょう", + "pos": "名詞", + "pn": -0.304688 + }, + { + "surface": "叱正", + "readging": "しっせい", + "pos": "名詞", + "pn": -0.304709 + }, + { + "surface": "三回忌", + "readging": "さんかいき", + "pos": "名詞", + "pn": -0.304719 + }, + { + "surface": "盛蕎麦", + "readging": "もりそば", + "pos": "名詞", + "pn": -0.304725 + }, + { + "surface": "差歯", + "readging": "さしば", + "pos": "名詞", + "pn": -0.304726 + }, + { + "surface": "トリウム", + "readging": "トリウム", + "pos": "名詞", + "pn": -0.304753 + }, + { + "surface": "クラフト", + "readging": "クラフト", + "pos": "名詞", + "pn": -0.304755 + }, + { + "surface": "エスカレーター", + "readging": "エスカレーター", + "pos": "名詞", + "pn": -0.304763 + }, + { + "surface": "余命", + "readging": "よめい", + "pos": "名詞", + "pn": -0.304786 + }, + { + "surface": "留置く", + "readging": "とめおく", + "pos": "動詞", + "pn": -0.304808 + }, + { + "surface": "暗闇", + "readging": "くらやみ", + "pos": "名詞", + "pn": -0.304817 + }, + { + "surface": "短銃", + "readging": "たんじゅう", + "pos": "名詞", + "pn": -0.304834 + }, + { + "surface": "己", + "readging": "つちのと", + "pos": "名詞", + "pn": -0.304863 + }, + { + "surface": "気違い", + "readging": "きちがい", + "pos": "名詞", + "pn": -0.304885 + }, + { + "surface": "獅子頭", + "readging": "ししがしら", + "pos": "名詞", + "pn": -0.304904 + }, + { + "surface": "一時", + "readging": "いちじ", + "pos": "名詞", + "pn": -0.304912 + }, + { + "surface": "洞が峠", + "readging": "ほらがとうげ", + "pos": "名詞", + "pn": -0.304935 + }, + { + "surface": "トレー", + "readging": "トレー", + "pos": "名詞", + "pn": -0.304962 + }, + { + "surface": "羽目板", + "readging": "はめいた", + "pos": "名詞", + "pn": -0.304978 + }, + { + "surface": "揉上げ", + "readging": "もみあげ", + "pos": "名詞", + "pn": -0.30498 + }, + { + "surface": "命婦", + "readging": "みょうぶ", + "pos": "名詞", + "pn": -0.305001 + }, + { + "surface": "薄肉", + "readging": "うすにく", + "pos": "名詞", + "pn": -0.305002 + }, + { + "surface": "写植", + "readging": "しゃしょく", + "pos": "名詞", + "pn": -0.305008 + }, + { + "surface": "低落", + "readging": "ていらく", + "pos": "名詞", + "pn": -0.305019 + }, + { + "surface": "征旅", + "readging": "せいりょ", + "pos": "名詞", + "pn": -0.305073 + }, + { + "surface": "再燃", + "readging": "さいねん", + "pos": "名詞", + "pn": -0.305079 + }, + { + "surface": "源氏車", + "readging": "げんじぐるま", + "pos": "名詞", + "pn": -0.305082 + }, + { + "surface": "女御", + "readging": "にょうご", + "pos": "名詞", + "pn": -0.305149 + }, + { + "surface": "世論", + "readging": "せろん", + "pos": "名詞", + "pn": -0.305165 + }, + { + "surface": "絵巻物", + "readging": "えまきもの", + "pos": "名詞", + "pn": -0.305167 + }, + { + "surface": "辰", + "readging": "しん", + "pos": "名詞", + "pn": -0.30519 + }, + { + "surface": "篆書", + "readging": "てんしょ", + "pos": "名詞", + "pn": -0.305219 + }, + { + "surface": "ぷすりと", + "readging": "ぷすりと", + "pos": "副詞", + "pn": -0.305237 + }, + { + "surface": "山巓", + "readging": "さんてん", + "pos": "名詞", + "pn": -0.305282 + }, + { + "surface": "ほんのり", + "readging": "ほんのり", + "pos": "副詞", + "pn": -0.305283 + }, + { + "surface": "不定称", + "readging": "ふていしょう", + "pos": "名詞", + "pn": -0.305284 + }, + { + "surface": "有段者", + "readging": "ゆうだんしゃ", + "pos": "名詞", + "pn": -0.305284 + }, + { + "surface": "アチドージス", + "readging": "アチドージス", + "pos": "名詞", + "pn": -0.305299 + }, + { + "surface": "朱", + "readging": "あけ", + "pos": "名詞", + "pn": -0.3053 + }, + { + "surface": "話柄", + "readging": "わへい", + "pos": "名詞", + "pn": -0.305303 + }, + { + "surface": "輸出入", + "readging": "ゆしゅつにゅう", + "pos": "名詞", + "pn": -0.30532 + }, + { + "surface": "入声", + "readging": "にっしょう", + "pos": "名詞", + "pn": -0.305323 + }, + { + "surface": "山越え", + "readging": "やまごえ", + "pos": "名詞", + "pn": -0.305325 + }, + { + "surface": "使節", + "readging": "しせつ", + "pos": "名詞", + "pn": -0.305348 + }, + { + "surface": "辞儀", + "readging": "じぎ", + "pos": "名詞", + "pn": -0.305389 + }, + { + "surface": "おじや", + "readging": "おじや", + "pos": "名詞", + "pn": -0.305446 + }, + { + "surface": "社債", + "readging": "しゃさい", + "pos": "名詞", + "pn": -0.305478 + }, + { + "surface": "後月", + "readging": "あとげつ", + "pos": "名詞", + "pn": -0.305482 + }, + { + "surface": "孟冬", + "readging": "もうとう", + "pos": "名詞", + "pn": -0.305499 + }, + { + "surface": "分母", + "readging": "ぶんぼ", + "pos": "名詞", + "pn": -0.305504 + }, + { + "surface": "七里結界", + "readging": "しちりけっかい", + "pos": "名詞", + "pn": -0.30551 + }, + { + "surface": "小揚", + "readging": "こあげ", + "pos": "名詞", + "pn": -0.30554 + }, + { + "surface": "護", + "readging": "ご", + "pos": "名詞", + "pn": -0.305555 + }, + { + "surface": "三角法", + "readging": "さんかくほう", + "pos": "名詞", + "pn": -0.305577 + }, + { + "surface": "ボーロ", + "readging": "ボーロ", + "pos": "名詞", + "pn": -0.305582 + }, + { + "surface": "際限", + "readging": "さいげん", + "pos": "名詞", + "pn": -0.305595 + }, + { + "surface": "名子", + "readging": "なご", + "pos": "名詞", + "pn": -0.305606 + }, + { + "surface": "古楽", + "readging": "こがく", + "pos": "名詞", + "pn": -0.305607 + }, + { + "surface": "ざわつく", + "readging": "ざわつく", + "pos": "動詞", + "pn": -0.305615 + }, + { + "surface": "鎌首", + "readging": "かまくび", + "pos": "名詞", + "pn": -0.305629 + }, + { + "surface": "共産党", + "readging": "きょうさんとう", + "pos": "名詞", + "pn": -0.305634 + }, + { + "surface": "芝刈", + "readging": "しばかり", + "pos": "名詞", + "pn": -0.305651 + }, + { + "surface": "基地", + "readging": "きち", + "pos": "名詞", + "pn": -0.305654 + }, + { + "surface": "不躾", + "readging": "ぶしつけ", + "pos": "名詞", + "pn": -0.305655 + }, + { + "surface": "ピーナッツ", + "readging": "ピーナッツ", + "pos": "名詞", + "pn": -0.305677 + }, + { + "surface": "直裁", + "readging": "ちょくさい", + "pos": "名詞", + "pn": -0.305708 + }, + { + "surface": "山水", + "readging": "さんすい", + "pos": "名詞", + "pn": -0.305708 + }, + { + "surface": "星霜", + "readging": "せいそう", + "pos": "名詞", + "pn": -0.305712 + }, + { + "surface": "シンバル", + "readging": "シンバル", + "pos": "名詞", + "pn": -0.305715 + }, + { + "surface": "光度", + "readging": "こうど", + "pos": "名詞", + "pn": -0.305749 + }, + { + "surface": "洗い髪", + "readging": "あらいがみ", + "pos": "名詞", + "pn": -0.305753 + }, + { + "surface": "御無沙汰", + "readging": "ごぶさた", + "pos": "名詞", + "pn": -0.305788 + }, + { + "surface": "侍童", + "readging": "じどう", + "pos": "名詞", + "pn": -0.305795 + }, + { + "surface": "開墾", + "readging": "かいこん", + "pos": "名詞", + "pn": -0.305816 + }, + { + "surface": "余類", + "readging": "よるい", + "pos": "名詞", + "pn": -0.305819 + }, + { + "surface": "伝道", + "readging": "でんどう", + "pos": "名詞", + "pn": -0.305829 + }, + { + "surface": "絵空事", + "readging": "えそらごと", + "pos": "名詞", + "pn": -0.305847 + }, + { + "surface": "橋杙", + "readging": "はしぐい", + "pos": "名詞", + "pn": -0.305866 + }, + { + "surface": "ふくらし粉", + "readging": "ふくらしこ", + "pos": "名詞", + "pn": -0.305868 + }, + { + "surface": "菌株", + "readging": "きんしゅ", + "pos": "名詞", + "pn": -0.305876 + }, + { + "surface": "座興", + "readging": "ざきょう", + "pos": "名詞", + "pn": -0.305888 + }, + { + "surface": "胆石", + "readging": "たんせき", + "pos": "名詞", + "pn": -0.305912 + }, + { + "surface": "搦手", + "readging": "からめて", + "pos": "名詞", + "pn": -0.305917 + }, + { + "surface": "唐音", + "readging": "とうおん", + "pos": "名詞", + "pn": -0.305933 + }, + { + "surface": "処方", + "readging": "しょほう", + "pos": "名詞", + "pn": -0.305944 + }, + { + "surface": "城代", + "readging": "じょうだい", + "pos": "名詞", + "pn": -0.305955 + }, + { + "surface": "プロローグ", + "readging": "プロローグ", + "pos": "名詞", + "pn": -0.305971 + }, + { + "surface": "ナイチンゲール", + "readging": "ナイチンゲール", + "pos": "名詞", + "pn": -0.305973 + }, + { + "surface": "紙型", + "readging": "しけい", + "pos": "名詞", + "pn": -0.306002 + }, + { + "surface": "外交辞令", + "readging": "がいこうじれい", + "pos": "名詞", + "pn": -0.306002 + }, + { + "surface": "タイム", + "readging": "タイムレコーダー", + "pos": "名詞", + "pn": -0.306031 + }, + { + "surface": "素養", + "readging": "そよう", + "pos": "名詞", + "pn": -0.306031 + }, + { + "surface": "水兵", + "readging": "すいへい", + "pos": "名詞", + "pn": -0.306061 + }, + { + "surface": "形式言語", + "readging": "けいしきげんご", + "pos": "名詞", + "pn": -0.306063 + }, + { + "surface": "法面", + "readging": "のりめん", + "pos": "名詞", + "pn": -0.306068 + }, + { + "surface": "微分", + "readging": "びぶん", + "pos": "名詞", + "pn": -0.306083 + }, + { + "surface": "法号", + "readging": "ほうごう", + "pos": "名詞", + "pn": -0.306114 + }, + { + "surface": "年金", + "readging": "ねんきん", + "pos": "名詞", + "pn": -0.306126 + }, + { + "surface": "質入れ", + "readging": "しちいれ", + "pos": "名詞", + "pn": -0.306134 + }, + { + "surface": "示威運動", + "readging": "じいうんどう", + "pos": "名詞", + "pn": -0.306161 + }, + { + "surface": "甑", + "readging": "こしき", + "pos": "名詞", + "pn": -0.306174 + }, + { + "surface": "哀歌", + "readging": "あいか", + "pos": "名詞", + "pn": -0.3062 + }, + { + "surface": "潜勢力", + "readging": "せんせいりょく", + "pos": "名詞", + "pn": -0.306201 + }, + { + "surface": "手管", + "readging": "てくだ", + "pos": "名詞", + "pn": -0.306203 + }, + { + "surface": "報道陣", + "readging": "ほうどうじん", + "pos": "名詞", + "pn": -0.306212 + }, + { + "surface": "数え歌", + "readging": "かぞえうた", + "pos": "名詞", + "pn": -0.306218 + }, + { + "surface": "茶道", + "readging": "さどう", + "pos": "名詞", + "pn": -0.306223 + }, + { + "surface": "有限責任", + "readging": "ゆうげんせきにん", + "pos": "名詞", + "pn": -0.306274 + }, + { + "surface": "肝試し", + "readging": "きもだめし", + "pos": "名詞", + "pn": -0.306276 + }, + { + "surface": "下略", + "readging": "げりゃく", + "pos": "名詞", + "pn": -0.306279 + }, + { + "surface": "諸氏", + "readging": "しょし", + "pos": "名詞", + "pn": -0.306287 + }, + { + "surface": "絵所", + "readging": "えどころ", + "pos": "名詞", + "pn": -0.306303 + }, + { + "surface": "陽子", + "readging": "ようし", + "pos": "名詞", + "pn": -0.306304 + }, + { + "surface": "バイク", + "readging": "バイク", + "pos": "名詞", + "pn": -0.306332 + }, + { + "surface": "夕焼け", + "readging": "ゆうやけ", + "pos": "名詞", + "pn": -0.306352 + }, + { + "surface": "副本", + "readging": "ふくほん", + "pos": "名詞", + "pn": -0.306352 + }, + { + "surface": "骨子", + "readging": "こっし", + "pos": "名詞", + "pn": -0.306375 + }, + { + "surface": "丁数", + "readging": "ちょうすう", + "pos": "名詞", + "pn": -0.306378 + }, + { + "surface": "晩婚", + "readging": "ばんこん", + "pos": "名詞", + "pn": -0.306386 + }, + { + "surface": "ペダル", + "readging": "ペダル", + "pos": "名詞", + "pn": -0.306404 + }, + { + "surface": "心術", + "readging": "しんじゅつ", + "pos": "名詞", + "pn": -0.306432 + }, + { + "surface": "戦前", + "readging": "せんぜん", + "pos": "名詞", + "pn": -0.306443 + }, + { + "surface": "近称", + "readging": "きんしょう", + "pos": "名詞", + "pn": -0.306446 + }, + { + "surface": "研削", + "readging": "けんさく", + "pos": "名詞", + "pn": -0.306458 + }, + { + "surface": "フットライト", + "readging": "フットライト", + "pos": "名詞", + "pn": -0.306459 + }, + { + "surface": "海水着", + "readging": "かいすいぎ", + "pos": "名詞", + "pn": -0.306469 + }, + { + "surface": "差遣", + "readging": "さけん", + "pos": "名詞", + "pn": -0.306496 + }, + { + "surface": "振り", + "readging": "ふり", + "pos": "名詞", + "pn": -0.306503 + }, + { + "surface": "黒土", + "readging": "くろつち", + "pos": "名詞", + "pn": -0.306512 + }, + { + "surface": "漁法", + "readging": "ぎょほう", + "pos": "名詞", + "pn": -0.306517 + }, + { + "surface": "未到", + "readging": "みとう", + "pos": "名詞", + "pn": -0.30652 + }, + { + "surface": "正本", + "readging": "せいほん", + "pos": "名詞", + "pn": -0.306525 + }, + { + "surface": "三色版", + "readging": "さんしょくばん", + "pos": "名詞", + "pn": -0.306533 + }, + { + "surface": "有無", + "readging": "うむ", + "pos": "名詞", + "pn": -0.306546 + }, + { + "surface": "否決", + "readging": "ひけつ", + "pos": "名詞", + "pn": -0.306547 + }, + { + "surface": "返却", + "readging": "へんきゃく", + "pos": "名詞", + "pn": -0.306551 + }, + { + "surface": "複眼", + "readging": "ふくがん", + "pos": "名詞", + "pn": -0.306565 + }, + { + "surface": "村", + "readging": "そん", + "pos": "名詞", + "pn": -0.306575 + }, + { + "surface": "ミセス", + "readging": "ミセス", + "pos": "名詞", + "pn": -0.306602 + }, + { + "surface": "中幅", + "readging": "ちゅうはば", + "pos": "名詞", + "pn": -0.306622 + }, + { + "surface": "臨海実験所", + "readging": "りんかいじっけんじょ", + "pos": "名詞", + "pn": -0.306638 + }, + { + "surface": "出合", + "readging": "であい", + "pos": "名詞", + "pn": -0.306649 + }, + { + "surface": "真症", + "readging": "しんしょう", + "pos": "名詞", + "pn": -0.306657 + }, + { + "surface": "ヒット", + "readging": "ヒット", + "pos": "名詞", + "pn": -0.306673 + }, + { + "surface": "立夏", + "readging": "りっか", + "pos": "名詞", + "pn": -0.306674 + }, + { + "surface": "里神楽", + "readging": "さとかぐら", + "pos": "名詞", + "pn": -0.306696 + }, + { + "surface": "理解", + "readging": "りかい", + "pos": "名詞", + "pn": -0.306709 + }, + { + "surface": "雑魚", + "readging": "ざこ", + "pos": "名詞", + "pn": -0.306721 + }, + { + "surface": "更ける", + "readging": "ふける", + "pos": "動詞", + "pn": -0.306723 + }, + { + "surface": "生長", + "readging": "せいちょう", + "pos": "名詞", + "pn": -0.306738 + }, + { + "surface": "入学", + "readging": "にゅうがく", + "pos": "名詞", + "pn": -0.306739 + }, + { + "surface": "ブック", + "readging": "ブック", + "pos": "名詞", + "pn": -0.306748 + }, + { + "surface": "ブランデー", + "readging": "ブランデー", + "pos": "名詞", + "pn": -0.306756 + }, + { + "surface": "寒垢離", + "readging": "かんごり", + "pos": "名詞", + "pn": -0.306757 + }, + { + "surface": "亡魂", + "readging": "ぼうこん", + "pos": "名詞", + "pn": -0.306762 + }, + { + "surface": "決込む", + "readging": "きめこむ", + "pos": "動詞", + "pn": -0.306774 + }, + { + "surface": "ストマイ", + "readging": "ストマイ", + "pos": "名詞", + "pn": -0.306786 + }, + { + "surface": "銃丸", + "readging": "じゅうがん", + "pos": "名詞", + "pn": -0.306818 + }, + { + "surface": "六指", + "readging": "むさし", + "pos": "名詞", + "pn": -0.306825 + }, + { + "surface": "硬筆", + "readging": "こうひつ", + "pos": "名詞", + "pn": -0.306842 + }, + { + "surface": "参内", + "readging": "さんだい", + "pos": "名詞", + "pn": -0.306847 + }, + { + "surface": "揃い", + "readging": "ぞろい", + "pos": "名詞", + "pn": -0.306871 + }, + { + "surface": "対局", + "readging": "たいきょく", + "pos": "名詞", + "pn": -0.306901 + }, + { + "surface": "働き蜂", + "readging": "はたらきばち", + "pos": "名詞", + "pn": -0.306908 + }, + { + "surface": "ダイヤル", + "readging": "ダイヤル", + "pos": "名詞", + "pn": -0.306971 + }, + { + "surface": "シネマ", + "readging": "シネマ", + "pos": "名詞", + "pn": -0.306978 + }, + { + "surface": "審判官", + "readging": "しんぱんかん", + "pos": "名詞", + "pn": -0.306982 + }, + { + "surface": "二重生活", + "readging": "にじゅうせいかつ", + "pos": "名詞", + "pn": -0.306993 + }, + { + "surface": "隠亡", + "readging": "おんぼう", + "pos": "名詞", + "pn": -0.307005 + }, + { + "surface": "グラウンド", + "readging": "グラウンド", + "pos": "名詞", + "pn": -0.307024 + }, + { + "surface": "ダンサー", + "readging": "ダンサー", + "pos": "名詞", + "pn": -0.307029 + }, + { + "surface": "皮膚呼吸", + "readging": "ひふこきゅう", + "pos": "名詞", + "pn": -0.307029 + }, + { + "surface": "腰羽目", + "readging": "こしばめ", + "pos": "名詞", + "pn": -0.307041 + }, + { + "surface": "解題", + "readging": "かいだい", + "pos": "名詞", + "pn": -0.307055 + }, + { + "surface": "実費", + "readging": "じっぴ", + "pos": "名詞", + "pn": -0.30706 + }, + { + "surface": "交通機関", + "readging": "こうつうきかん", + "pos": "名詞", + "pn": -0.307067 + }, + { + "surface": "一両", + "readging": "いちりょう", + "pos": "名詞", + "pn": -0.307067 + }, + { + "surface": "段違い", + "readging": "だんちがい", + "pos": "名詞", + "pn": -0.307115 + }, + { + "surface": "正反対", + "readging": "せいはんたい", + "pos": "名詞", + "pn": -0.307121 + }, + { + "surface": "後年", + "readging": "こうねん", + "pos": "名詞", + "pn": -0.307121 + }, + { + "surface": "添書", + "readging": "そえがき", + "pos": "名詞", + "pn": -0.307147 + }, + { + "surface": "癒合", + "readging": "ゆごう", + "pos": "名詞", + "pn": -0.307162 + }, + { + "surface": "回天", + "readging": "かいてん", + "pos": "名詞", + "pn": -0.307179 + }, + { + "surface": "破門", + "readging": "はもん", + "pos": "名詞", + "pn": -0.30721 + }, + { + "surface": "擬似", + "readging": "ぎじ", + "pos": "名詞", + "pn": -0.307223 + }, + { + "surface": "磁気機雷", + "readging": "じききらい", + "pos": "名詞", + "pn": -0.307232 + }, + { + "surface": "とど", + "readging": "とど", + "pos": "名詞", + "pn": -0.307238 + }, + { + "surface": "着衣", + "readging": "ちゃくい", + "pos": "名詞", + "pn": -0.307256 + }, + { + "surface": "ハレム", + "readging": "ハレム", + "pos": "名詞", + "pn": -0.307262 + }, + { + "surface": "出し入れ", + "readging": "だしいれ", + "pos": "名詞", + "pn": -0.307263 + }, + { + "surface": "九泉", + "readging": "きゅうせん", + "pos": "名詞", + "pn": -0.307263 + }, + { + "surface": "予鈴", + "readging": "よれい", + "pos": "名詞", + "pn": -0.307279 + }, + { + "surface": "抵当権", + "readging": "ていとうけん", + "pos": "名詞", + "pn": -0.307282 + }, + { + "surface": "首巻", + "readging": "くびまき", + "pos": "名詞", + "pn": -0.307308 + }, + { + "surface": "予習", + "readging": "よしゅう", + "pos": "名詞", + "pn": -0.307312 + }, + { + "surface": "土工", + "readging": "どこう", + "pos": "名詞", + "pn": -0.307321 + }, + { + "surface": "歩幅", + "readging": "ほはば", + "pos": "名詞", + "pn": -0.307336 + }, + { + "surface": "突破", + "readging": "とっぱ", + "pos": "名詞", + "pn": -0.307343 + }, + { + "surface": "工程", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.307343 + }, + { + "surface": "試薬", + "readging": "しやく", + "pos": "名詞", + "pn": -0.307346 + }, + { + "surface": "捨子", + "readging": "すてご", + "pos": "名詞", + "pn": -0.30735 + }, + { + "surface": "啓発", + "readging": "けいはつ", + "pos": "名詞", + "pn": -0.307351 + }, + { + "surface": "豪雨", + "readging": "ごうう", + "pos": "名詞", + "pn": -0.307376 + }, + { + "surface": "五官", + "readging": "ごかん", + "pos": "名詞", + "pn": -0.307383 + }, + { + "surface": "国定", + "readging": "こくてい", + "pos": "名詞", + "pn": -0.307383 + }, + { + "surface": "浜納豆", + "readging": "はまなっとう", + "pos": "名詞", + "pn": -0.307391 + }, + { + "surface": "禅尼", + "readging": "ぜんに", + "pos": "名詞", + "pn": -0.307404 + }, + { + "surface": "走査", + "readging": "そうさ", + "pos": "名詞", + "pn": -0.307406 + }, + { + "surface": "極めて", + "readging": "きわめて", + "pos": "副詞", + "pn": -0.307421 + }, + { + "surface": "否定", + "readging": "ひてい", + "pos": "名詞", + "pn": -0.307438 + }, + { + "surface": "生作り", + "readging": "いけづくり", + "pos": "名詞", + "pn": -0.307447 + }, + { + "surface": "判取帳", + "readging": "はんとりちょう", + "pos": "名詞", + "pn": -0.307452 + }, + { + "surface": "常食", + "readging": "じょうしょく", + "pos": "名詞", + "pn": -0.307483 + }, + { + "surface": "社会保険", + "readging": "しゃかいほけん", + "pos": "名詞", + "pn": -0.307499 + }, + { + "surface": "祠", + "readging": "し", + "pos": "名詞", + "pn": -0.307526 + }, + { + "surface": "学割", + "readging": "がくわり", + "pos": "名詞", + "pn": -0.307534 + }, + { + "surface": "寄付", + "readging": "きふ", + "pos": "名詞", + "pn": -0.307539 + }, + { + "surface": "お上りさん", + "readging": "おのぼりさん", + "pos": "名詞", + "pn": -0.307572 + }, + { + "surface": "廷吏", + "readging": "ていり", + "pos": "名詞", + "pn": -0.307606 + }, + { + "surface": "ゴング", + "readging": "ゴング", + "pos": "名詞", + "pn": -0.307643 + }, + { + "surface": "大任", + "readging": "たいにん", + "pos": "名詞", + "pn": -0.307645 + }, + { + "surface": "割付", + "readging": "わりつけ", + "pos": "名詞", + "pn": -0.307665 + }, + { + "surface": "常連", + "readging": "じょうれん", + "pos": "名詞", + "pn": -0.307665 + }, + { + "surface": "殺風景", + "readging": "さっぷうけい", + "pos": "名詞", + "pn": -0.307666 + }, + { + "surface": "ヨーデル", + "readging": "ヨーデル", + "pos": "名詞", + "pn": -0.307695 + }, + { + "surface": "全権委員", + "readging": "ぜんけんいいん", + "pos": "名詞", + "pn": -0.307729 + }, + { + "surface": "テーブル", + "readging": "テーブルスピーチ", + "pos": "名詞", + "pn": -0.307741 + }, + { + "surface": "千秋", + "readging": "せんしゅう", + "pos": "名詞", + "pn": -0.307745 + }, + { + "surface": "仕官", + "readging": "しかん", + "pos": "名詞", + "pn": -0.307749 + }, + { + "surface": "世話好き", + "readging": "せわずき", + "pos": "名詞", + "pn": -0.307755 + }, + { + "surface": "急坂", + "readging": "きゅうはん", + "pos": "名詞", + "pn": -0.307762 + }, + { + "surface": "早見", + "readging": "はやみ", + "pos": "名詞", + "pn": -0.307791 + }, + { + "surface": "タリウム", + "readging": "タリウム", + "pos": "名詞", + "pn": -0.307792 + }, + { + "surface": "著大", + "readging": "ちょだい", + "pos": "名詞", + "pn": -0.307793 + }, + { + "surface": "心理戦", + "readging": "しんりせん", + "pos": "名詞", + "pn": -0.307795 + }, + { + "surface": "黒船", + "readging": "くろふね", + "pos": "名詞", + "pn": -0.3078 + }, + { + "surface": "仏体", + "readging": "ぶったい", + "pos": "名詞", + "pn": -0.307811 + }, + { + "surface": "発明", + "readging": "はつめい", + "pos": "名詞", + "pn": -0.307829 + }, + { + "surface": "臨本", + "readging": "りんぽん", + "pos": "名詞", + "pn": -0.307855 + }, + { + "surface": "何やら", + "readging": "なにやら", + "pos": "副詞", + "pn": -0.307869 + }, + { + "surface": "我が世", + "readging": "わがよ", + "pos": "名詞", + "pn": -0.307877 + }, + { + "surface": "話せる", + "readging": "はなせる", + "pos": "動詞", + "pn": -0.307886 + }, + { + "surface": "発進", + "readging": "はっしん", + "pos": "名詞", + "pn": -0.307889 + }, + { + "surface": "限り無い", + "readging": "かぎりない", + "pos": "形容詞", + "pn": -0.307892 + }, + { + "surface": "中称", + "readging": "ちゅうしょう", + "pos": "名詞", + "pn": -0.307902 + }, + { + "surface": "立至る", + "readging": "たちいたる", + "pos": "動詞", + "pn": -0.307914 + }, + { + "surface": "導線", + "readging": "どうせん", + "pos": "名詞", + "pn": -0.307916 + }, + { + "surface": "マンボ", + "readging": "マンボ", + "pos": "名詞", + "pn": -0.307919 + }, + { + "surface": "スタンプ", + "readging": "スタンプ", + "pos": "名詞", + "pn": -0.307919 + }, + { + "surface": "起臥", + "readging": "きが", + "pos": "名詞", + "pn": -0.307924 + }, + { + "surface": "構文", + "readging": "こうぶん", + "pos": "名詞", + "pn": -0.30793 + }, + { + "surface": "元本", + "readging": "がんぽん", + "pos": "名詞", + "pn": -0.307933 + }, + { + "surface": "腰刀", + "readging": "こしがたな", + "pos": "名詞", + "pn": -0.307955 + }, + { + "surface": "自重", + "readging": "じじゅう", + "pos": "名詞", + "pn": -0.307961 + }, + { + "surface": "刻限", + "readging": "こくげん", + "pos": "名詞", + "pn": -0.307973 + }, + { + "surface": "姓氏", + "readging": "せいし", + "pos": "名詞", + "pn": -0.307981 + }, + { + "surface": "ミサイル", + "readging": "ミサイル", + "pos": "名詞", + "pn": -0.307983 + }, + { + "surface": "警衛", + "readging": "けいえい", + "pos": "名詞", + "pn": -0.307992 + }, + { + "surface": "疑点", + "readging": "ぎてん", + "pos": "名詞", + "pn": -0.308004 + }, + { + "surface": "赤旗", + "readging": "あかはた", + "pos": "名詞", + "pn": -0.308024 + }, + { + "surface": "鰉", + "readging": "ひがい", + "pos": "名詞", + "pn": -0.308039 + }, + { + "surface": "厳存", + "readging": "げんそん", + "pos": "名詞", + "pn": -0.308049 + }, + { + "surface": "スラローム", + "readging": "スラローム", + "pos": "名詞", + "pn": -0.308075 + }, + { + "surface": "無垢", + "readging": "むく", + "pos": "名詞", + "pn": -0.30809 + }, + { + "surface": "テレックス", + "readging": "テレックス", + "pos": "名詞", + "pn": -0.308092 + }, + { + "surface": "油", + "readging": "あぶら", + "pos": "名詞", + "pn": -0.308135 + }, + { + "surface": "プロペラ", + "readging": "プロペラ", + "pos": "名詞", + "pn": -0.308143 + }, + { + "surface": "ライト", + "readging": "ライト", + "pos": "名詞", + "pn": -0.308144 + }, + { + "surface": "財産家", + "readging": "ざいさんか", + "pos": "名詞", + "pn": -0.308148 + }, + { + "surface": "スピッツ", + "readging": "スピッツ", + "pos": "名詞", + "pn": -0.30817 + }, + { + "surface": "楽章", + "readging": "がくしょう", + "pos": "名詞", + "pn": -0.308185 + }, + { + "surface": "域", + "readging": "いき", + "pos": "名詞", + "pn": -0.308189 + }, + { + "surface": "バプテスマ", + "readging": "バプテスマ", + "pos": "名詞", + "pn": -0.308196 + }, + { + "surface": "決着", + "readging": "けっちゃく", + "pos": "名詞", + "pn": -0.308197 + }, + { + "surface": "勝つ", + "readging": "かつ", + "pos": "動詞", + "pn": -0.308207 + }, + { + "surface": "欧文", + "readging": "おうぶん", + "pos": "名詞", + "pn": -0.308231 + }, + { + "surface": "御墨付", + "readging": "おすみつき", + "pos": "名詞", + "pn": -0.30827 + }, + { + "surface": "サミット", + "readging": "サミット", + "pos": "名詞", + "pn": -0.308277 + }, + { + "surface": "銚子", + "readging": "ちょうし", + "pos": "名詞", + "pn": -0.308303 + }, + { + "surface": "茶袋", + "readging": "ちゃぶくろ", + "pos": "名詞", + "pn": -0.308313 + }, + { + "surface": "真艫", + "readging": "まとも", + "pos": "名詞", + "pn": -0.30832 + }, + { + "surface": "黒潮", + "readging": "くろしお", + "pos": "名詞", + "pn": -0.308321 + }, + { + "surface": "景", + "readging": "けい", + "pos": "名詞", + "pn": -0.308324 + }, + { + "surface": "浮び上がる", + "readging": "うかびあがる", + "pos": "動詞", + "pn": -0.308325 + }, + { + "surface": "床払い", + "readging": "とこばらい", + "pos": "名詞", + "pn": -0.308328 + }, + { + "surface": "仲人", + "readging": "ちゅうにん", + "pos": "名詞", + "pn": -0.308335 + }, + { + "surface": "沸かし湯", + "readging": "わかしゆ", + "pos": "名詞", + "pn": -0.308355 + }, + { + "surface": "有体物", + "readging": "ゆうたいぶつ", + "pos": "名詞", + "pn": -0.308372 + }, + { + "surface": "勇姿", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.308376 + }, + { + "surface": "クリスマス", + "readging": "クリスマスカード", + "pos": "名詞", + "pn": -0.308394 + }, + { + "surface": "憎げ", + "readging": "にくげ", + "pos": "名詞", + "pn": -0.308398 + }, + { + "surface": "選炭", + "readging": "せんたん", + "pos": "名詞", + "pn": -0.30841 + }, + { + "surface": "刈取る", + "readging": "かりとる", + "pos": "動詞", + "pn": -0.308441 + }, + { + "surface": "斗枡", + "readging": "とます", + "pos": "名詞", + "pn": -0.308451 + }, + { + "surface": "大相撲", + "readging": "おおずもう", + "pos": "名詞", + "pn": -0.308474 + }, + { + "surface": "閏年", + "readging": "うるうどし", + "pos": "名詞", + "pn": -0.30853 + }, + { + "surface": "登坂", + "readging": "とはん", + "pos": "名詞", + "pn": -0.308536 + }, + { + "surface": "満貫", + "readging": "まんがん", + "pos": "名詞", + "pn": -0.308538 + }, + { + "surface": "振絞る", + "readging": "ふりしぼる", + "pos": "動詞", + "pn": -0.308548 + }, + { + "surface": "セレモニー", + "readging": "セレモニー", + "pos": "名詞", + "pn": -0.308556 + }, + { + "surface": "宵", + "readging": "よい", + "pos": "名詞", + "pn": -0.30856 + }, + { + "surface": "小社", + "readging": "しょうしゃ", + "pos": "名詞", + "pn": -0.308565 + }, + { + "surface": "年年", + "readging": "としどし", + "pos": "副詞", + "pn": -0.30858 + }, + { + "surface": "法服", + "readging": "ほうふく", + "pos": "名詞", + "pn": -0.308597 + }, + { + "surface": "ブロンズ", + "readging": "ブロンズ", + "pos": "名詞", + "pn": -0.30862 + }, + { + "surface": "転借", + "readging": "てんしゃく", + "pos": "名詞", + "pn": -0.308638 + }, + { + "surface": "オンブズマン", + "readging": "オンブズマン", + "pos": "名詞", + "pn": -0.308644 + }, + { + "surface": "手帳", + "readging": "てちょう", + "pos": "名詞", + "pn": -0.308649 + }, + { + "surface": "朗朗", + "readging": "ろうろう", + "pos": "名詞", + "pn": -0.308673 + }, + { + "surface": "議", + "readging": "ぎ", + "pos": "名詞", + "pn": -0.308675 + }, + { + "surface": "浅手", + "readging": "あさで", + "pos": "名詞", + "pn": -0.308676 + }, + { + "surface": "立坑", + "readging": "たてこう", + "pos": "名詞", + "pn": -0.308687 + }, + { + "surface": "カドミウム", + "readging": "カドミウム", + "pos": "名詞", + "pn": -0.308729 + }, + { + "surface": "元金", + "readging": "がんきん", + "pos": "名詞", + "pn": -0.308754 + }, + { + "surface": "照る", + "readging": "てる", + "pos": "動詞", + "pn": -0.308772 + }, + { + "surface": "おべんちゃら", + "readging": "おべんちゃら", + "pos": "名詞", + "pn": -0.308773 + }, + { + "surface": "ボクサー", + "readging": "ボクサー", + "pos": "名詞", + "pn": -0.308807 + }, + { + "surface": "論策", + "readging": "ろんさく", + "pos": "名詞", + "pn": -0.308808 + }, + { + "surface": "オーダー", + "readging": "オーダーメード", + "pos": "名詞", + "pn": -0.308808 + }, + { + "surface": "威儀", + "readging": "いぎ", + "pos": "名詞", + "pn": -0.308815 + }, + { + "surface": "素より", + "readging": "もとより", + "pos": "副詞", + "pn": -0.308838 + }, + { + "surface": "評語", + "readging": "ひょうご", + "pos": "名詞", + "pn": -0.308841 + }, + { + "surface": "毛唐", + "readging": "けとう", + "pos": "名詞", + "pn": -0.308956 + }, + { + "surface": "センサー", + "readging": "センサー", + "pos": "名詞", + "pn": -0.308976 + }, + { + "surface": "古狐", + "readging": "ふるぎつね", + "pos": "名詞", + "pn": -0.30898 + }, + { + "surface": "早着", + "readging": "そうちゃく", + "pos": "名詞", + "pn": -0.30898 + }, + { + "surface": "帆布", + "readging": "ほぬの", + "pos": "名詞", + "pn": -0.308984 + }, + { + "surface": "全土", + "readging": "ぜんど", + "pos": "名詞", + "pn": -0.308987 + }, + { + "surface": "杉蘚", + "readging": "すぎごけ", + "pos": "名詞", + "pn": -0.308989 + }, + { + "surface": "乳酪", + "readging": "にゅうらく", + "pos": "名詞", + "pn": -0.308995 + }, + { + "surface": "冠木門", + "readging": "かぶきもん", + "pos": "名詞", + "pn": -0.309 + }, + { + "surface": "赤の飯", + "readging": "あかのまんま", + "pos": "名詞", + "pn": -0.30901 + }, + { + "surface": "円盤投げ", + "readging": "えんばんなげ", + "pos": "名詞", + "pn": -0.309022 + }, + { + "surface": "書割", + "readging": "かきわり", + "pos": "名詞", + "pn": -0.309098 + }, + { + "surface": "猫板", + "readging": "ねこいた", + "pos": "名詞", + "pn": -0.309116 + }, + { + "surface": "即断", + "readging": "そくだん", + "pos": "名詞", + "pn": -0.309116 + }, + { + "surface": "射場", + "readging": "しゃじょう", + "pos": "名詞", + "pn": -0.309118 + }, + { + "surface": "曲面", + "readging": "きょくめん", + "pos": "名詞", + "pn": -0.309133 + }, + { + "surface": "発見", + "readging": "はっけん", + "pos": "名詞", + "pn": -0.309154 + }, + { + "surface": "面前", + "readging": "めんぜん", + "pos": "名詞", + "pn": -0.309157 + }, + { + "surface": "カドリール", + "readging": "カドリール", + "pos": "名詞", + "pn": -0.309195 + }, + { + "surface": "普通選挙", + "readging": "ふつうせんきょ", + "pos": "名詞", + "pn": -0.3092 + }, + { + "surface": "娼家", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.309205 + }, + { + "surface": "鷽", + "readging": "うそ", + "pos": "名詞", + "pn": -0.309222 + }, + { + "surface": "周旋", + "readging": "しゅうせん", + "pos": "名詞", + "pn": -0.309236 + }, + { + "surface": "組踊", + "readging": "くみおどり", + "pos": "名詞", + "pn": -0.30924 + }, + { + "surface": "別して", + "readging": "べっして", + "pos": "副詞", + "pn": -0.30927 + }, + { + "surface": "退陣", + "readging": "たいじん", + "pos": "名詞", + "pn": -0.309293 + }, + { + "surface": "県", + "readging": "あがた", + "pos": "名詞", + "pn": -0.309317 + }, + { + "surface": "有蓋", + "readging": "ゆうがい", + "pos": "名詞", + "pn": -0.30933 + }, + { + "surface": "裏付け", + "readging": "うらづけ", + "pos": "名詞", + "pn": -0.309331 + }, + { + "surface": "深雪", + "readging": "しんせつ", + "pos": "名詞", + "pn": -0.309334 + }, + { + "surface": "レーヨン", + "readging": "レーヨン", + "pos": "名詞", + "pn": -0.309347 + }, + { + "surface": "酒石酸", + "readging": "しゅせきさん", + "pos": "名詞", + "pn": -0.309349 + }, + { + "surface": "五夜", + "readging": "ごや", + "pos": "名詞", + "pn": -0.309366 + }, + { + "surface": "焼増し", + "readging": "やきまし", + "pos": "名詞", + "pn": -0.309386 + }, + { + "surface": "石版", + "readging": "せきばん", + "pos": "名詞", + "pn": -0.309402 + }, + { + "surface": "座長", + "readging": "ざちょう", + "pos": "名詞", + "pn": -0.309407 + }, + { + "surface": "裏打", + "readging": "うらうち", + "pos": "名詞", + "pn": -0.309411 + }, + { + "surface": "大技", + "readging": "おおわざ", + "pos": "名詞", + "pn": -0.30942 + }, + { + "surface": "殿中", + "readging": "でんちゅう", + "pos": "名詞", + "pn": -0.309426 + }, + { + "surface": "御所車", + "readging": "ごしょぐるま", + "pos": "名詞", + "pn": -0.309428 + }, + { + "surface": "段物", + "readging": "だんもの", + "pos": "名詞", + "pn": -0.309462 + }, + { + "surface": "無精髭", + "readging": "ぶしょうひげ", + "pos": "名詞", + "pn": -0.309465 + }, + { + "surface": "サブ", + "readging": "サブタイトル", + "pos": "名詞", + "pn": -0.309465 + }, + { + "surface": "寄棟", + "readging": "よせむね", + "pos": "名詞", + "pn": -0.309485 + }, + { + "surface": "部外", + "readging": "ぶがい", + "pos": "名詞", + "pn": -0.309508 + }, + { + "surface": "銚釐", + "readging": "ちろり", + "pos": "名詞", + "pn": -0.30951 + }, + { + "surface": "小天地", + "readging": "しょうてんち", + "pos": "名詞", + "pn": -0.309516 + }, + { + "surface": "自今", + "readging": "じこん", + "pos": "名詞", + "pn": -0.309531 + }, + { + "surface": "同輩", + "readging": "どうはい", + "pos": "名詞", + "pn": -0.309544 + }, + { + "surface": "程", + "readging": "ほど", + "pos": "名詞", + "pn": -0.309551 + }, + { + "surface": "論告", + "readging": "ろんこく", + "pos": "名詞", + "pn": -0.309574 + }, + { + "surface": "客車", + "readging": "きゃくしゃ", + "pos": "名詞", + "pn": -0.309587 + }, + { + "surface": "なまじ", + "readging": "なまじ", + "pos": "副詞", + "pn": -0.309595 + }, + { + "surface": "待合", + "readging": "まちあい", + "pos": "名詞", + "pn": -0.309616 + }, + { + "surface": "木遣", + "readging": "きやり", + "pos": "名詞", + "pn": -0.30963 + }, + { + "surface": "空押し", + "readging": "からおし", + "pos": "名詞", + "pn": -0.309637 + }, + { + "surface": "オープン", + "readging": "オープンショップ", + "pos": "名詞", + "pn": -0.30964 + }, + { + "surface": "暗唱", + "readging": "あんしょう", + "pos": "名詞", + "pn": -0.30964 + }, + { + "surface": "食い下がる", + "readging": "くいさがる", + "pos": "動詞", + "pn": -0.309644 + }, + { + "surface": "禅問答", + "readging": "ぜんもんどう", + "pos": "名詞", + "pn": -0.309652 + }, + { + "surface": "温暖前線", + "readging": "おんだんぜんせん", + "pos": "名詞", + "pn": -0.309663 + }, + { + "surface": "冷厳", + "readging": "れいげん", + "pos": "名詞", + "pn": -0.30967 + }, + { + "surface": "家財", + "readging": "かざい", + "pos": "名詞", + "pn": -0.309691 + }, + { + "surface": "博労", + "readging": "ばくろう", + "pos": "名詞", + "pn": -0.309726 + }, + { + "surface": "子守", + "readging": "こもり", + "pos": "名詞", + "pn": -0.309734 + }, + { + "surface": "最小", + "readging": "さいしょう", + "pos": "名詞", + "pn": -0.309747 + }, + { + "surface": "長刀", + "readging": "ちょうとう", + "pos": "名詞", + "pn": -0.309787 + }, + { + "surface": "生面", + "readging": "せいめん", + "pos": "名詞", + "pn": -0.309798 + }, + { + "surface": "反駁", + "readging": "はんばく", + "pos": "名詞", + "pn": -0.309801 + }, + { + "surface": "居候", + "readging": "いそうろう", + "pos": "名詞", + "pn": -0.309804 + }, + { + "surface": "グリン ピース", + "readging": "グリン ピース", + "pos": "名詞", + "pn": -0.309808 + }, + { + "surface": "締", + "readging": "てい", + "pos": "名詞", + "pn": -0.30981 + }, + { + "surface": "通し狂言", + "readging": "とおしきょうげん", + "pos": "名詞", + "pn": -0.309811 + }, + { + "surface": "常磐木", + "readging": "ときわ", + "pos": "名詞", + "pn": -0.309816 + }, + { + "surface": "無蓋", + "readging": "むがい", + "pos": "名詞", + "pn": -0.309824 + }, + { + "surface": "学級", + "readging": "がっきゅう", + "pos": "名詞", + "pn": -0.30984 + }, + { + "surface": "ヘンルーダ", + "readging": "ヘンルーダ", + "pos": "名詞", + "pn": -0.309847 + }, + { + "surface": "臨御", + "readging": "りんぎょ", + "pos": "名詞", + "pn": -0.309848 + }, + { + "surface": "ありのみ", + "readging": "ありのみ", + "pos": "名詞", + "pn": -0.309849 + }, + { + "surface": "借受ける", + "readging": "かりうける", + "pos": "動詞", + "pn": -0.309896 + }, + { + "surface": "寝所", + "readging": "しんじょ", + "pos": "名詞", + "pn": -0.309919 + }, + { + "surface": "本籍", + "readging": "ほんせき", + "pos": "名詞", + "pn": -0.309924 + }, + { + "surface": "雨下", + "readging": "うか", + "pos": "名詞", + "pn": -0.309925 + }, + { + "surface": "コークス", + "readging": "コークス", + "pos": "名詞", + "pn": -0.309926 + }, + { + "surface": "不文律", + "readging": "ふぶんりつ", + "pos": "名詞", + "pn": -0.309944 + }, + { + "surface": "有意義", + "readging": "ゆういぎ", + "pos": "名詞", + "pn": -0.309953 + }, + { + "surface": "スクロール", + "readging": "スクロール", + "pos": "名詞", + "pn": -0.309973 + }, + { + "surface": "興奮剤", + "readging": "こうふんざい", + "pos": "名詞", + "pn": -0.309977 + }, + { + "surface": "呼び値", + "readging": "よびね", + "pos": "名詞", + "pn": -0.309992 + }, + { + "surface": "八重", + "readging": "やえ", + "pos": "名詞", + "pn": -0.310012 + }, + { + "surface": "遺影", + "readging": "いえい", + "pos": "名詞", + "pn": -0.310015 + }, + { + "surface": "切首", + "readging": "きりくび", + "pos": "名詞", + "pn": -0.31002 + }, + { + "surface": "海兵隊", + "readging": "かいへいたい", + "pos": "名詞", + "pn": -0.310038 + }, + { + "surface": "パート", + "readging": "パートタイム", + "pos": "名詞", + "pn": -0.310086 + }, + { + "surface": "風向き", + "readging": "かぜむき", + "pos": "名詞", + "pn": -0.310105 + }, + { + "surface": "休日", + "readging": "きゅうじつ", + "pos": "名詞", + "pn": -0.310111 + }, + { + "surface": "名付ける", + "readging": "なづける", + "pos": "動詞", + "pn": -0.310111 + }, + { + "surface": "梵刹", + "readging": "ぼんせつ", + "pos": "名詞", + "pn": -0.310115 + }, + { + "surface": "猪突", + "readging": "ちょとつ", + "pos": "名詞", + "pn": -0.310136 + }, + { + "surface": "礼返し", + "readging": "れいがえし", + "pos": "名詞", + "pn": -0.310142 + }, + { + "surface": "走書き", + "readging": "はしりがき", + "pos": "名詞", + "pn": -0.310175 + }, + { + "surface": "脱する", + "readging": "だっする", + "pos": "動詞", + "pn": -0.310176 + }, + { + "surface": "防潜網", + "readging": "ぼうせんもう", + "pos": "名詞", + "pn": -0.31019 + }, + { + "surface": "次ぐ", + "readging": "つぐ", + "pos": "動詞", + "pn": -0.310192 + }, + { + "surface": "菜っ葉", + "readging": "なっぱ", + "pos": "名詞", + "pn": -0.310206 + }, + { + "surface": "短波", + "readging": "たんぱ", + "pos": "名詞", + "pn": -0.310209 + }, + { + "surface": "軍帽", + "readging": "ぐんぼう", + "pos": "名詞", + "pn": -0.310253 + }, + { + "surface": "水先案内", + "readging": "みずさき", + "pos": "名詞", + "pn": -0.310258 + }, + { + "surface": "話術", + "readging": "わじゅつ", + "pos": "名詞", + "pn": -0.310327 + }, + { + "surface": "フラウ", + "readging": "フラウ", + "pos": "名詞", + "pn": -0.310329 + }, + { + "surface": "管掌", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.310351 + }, + { + "surface": "紋縮緬", + "readging": "もんちりめん", + "pos": "名詞", + "pn": -0.310395 + }, + { + "surface": "一席", + "readging": "いっせき", + "pos": "名詞", + "pn": -0.310397 + }, + { + "surface": "生繭", + "readging": "せいけん", + "pos": "名詞", + "pn": -0.310398 + }, + { + "surface": "ちぎる", + "readging": "ちぎる", + "pos": "動詞", + "pn": -0.310404 + }, + { + "surface": "指定", + "readging": "してい", + "pos": "名詞", + "pn": -0.310407 + }, + { + "surface": "金子", + "readging": "きんす", + "pos": "名詞", + "pn": -0.310439 + }, + { + "surface": "予算返上", + "readging": "よさんへんじょう", + "pos": "名詞", + "pn": -0.310469 + }, + { + "surface": "作り替える", + "readging": "つくりかえる", + "pos": "動詞", + "pn": -0.310486 + }, + { + "surface": "塗板", + "readging": "とばん", + "pos": "名詞", + "pn": -0.310514 + }, + { + "surface": "ジェット", + "readging": "ジェット", + "pos": "名詞", + "pn": -0.310517 + }, + { + "surface": "ドーピング", + "readging": "ドーピング", + "pos": "名詞", + "pn": -0.310525 + }, + { + "surface": "道歌", + "readging": "どうか", + "pos": "名詞", + "pn": -0.310537 + }, + { + "surface": "寺", + "readging": "じ", + "pos": "名詞", + "pn": -0.310538 + }, + { + "surface": "二十八宿", + "readging": "にじゅうはっしゅく", + "pos": "名詞", + "pn": -0.310547 + }, + { + "surface": "生え際", + "readging": "はえぎわ", + "pos": "名詞", + "pn": -0.31055 + }, + { + "surface": "たんさん水", + "readging": "たんさんすい", + "pos": "名詞", + "pn": -0.310577 + }, + { + "surface": "中宮", + "readging": "ちゅうぐう", + "pos": "名詞", + "pn": -0.310599 + }, + { + "surface": "読み癖", + "readging": "よみくせ", + "pos": "名詞", + "pn": -0.310612 + }, + { + "surface": "蛍", + "readging": "けい", + "pos": "名詞", + "pn": -0.310629 + }, + { + "surface": "なり形", + "readging": "なりかたち", + "pos": "名詞", + "pn": -0.310638 + }, + { + "surface": "浮寝", + "readging": "うきね", + "pos": "名詞", + "pn": -0.310647 + }, + { + "surface": "定職", + "readging": "ていしょく", + "pos": "名詞", + "pn": -0.310653 + }, + { + "surface": "でろれん", + "readging": "でろれん", + "pos": "名詞", + "pn": -0.310656 + }, + { + "surface": "菜箸", + "readging": "さいばし", + "pos": "名詞", + "pn": -0.310661 + }, + { + "surface": "内陸国", + "readging": "ないりくこく", + "pos": "名詞", + "pn": -0.310667 + }, + { + "surface": "抗告", + "readging": "こうこく", + "pos": "名詞", + "pn": -0.31067 + }, + { + "surface": "レーザー", + "readging": "レーザー", + "pos": "名詞", + "pn": -0.310672 + }, + { + "surface": "堂堂巡り", + "readging": "どうどうめぐり", + "pos": "名詞", + "pn": -0.310673 + }, + { + "surface": "六分儀", + "readging": "ろくぶんぎ", + "pos": "名詞", + "pn": -0.310679 + }, + { + "surface": "肩", + "readging": "かた", + "pos": "名詞", + "pn": -0.310682 + }, + { + "surface": "ベッド", + "readging": "ベッド", + "pos": "名詞", + "pn": -0.310704 + }, + { + "surface": "庚申塚", + "readging": "こうしんづか", + "pos": "名詞", + "pn": -0.31071 + }, + { + "surface": "糸繰り車", + "readging": "いとくりぐるま", + "pos": "名詞", + "pn": -0.310715 + }, + { + "surface": "ウインター スポーツ", + "readging": "ウインター スポーツ", + "pos": "名詞", + "pn": -0.31073 + }, + { + "surface": "司法", + "readging": "しほう", + "pos": "名詞", + "pn": -0.310731 + }, + { + "surface": "却下", + "readging": "きゃっか", + "pos": "名詞", + "pn": -0.310748 + }, + { + "surface": "躍進", + "readging": "やくしん", + "pos": "名詞", + "pn": -0.310769 + }, + { + "surface": "日和下駄", + "readging": "ひよりげた", + "pos": "名詞", + "pn": -0.310783 + }, + { + "surface": "有性生殖", + "readging": "ゆうせいせいしょく", + "pos": "名詞", + "pn": -0.310792 + }, + { + "surface": "譜", + "readging": "ふ", + "pos": "名詞", + "pn": -0.310822 + }, + { + "surface": "大文字", + "readging": "おおもじ", + "pos": "名詞", + "pn": -0.310822 + }, + { + "surface": "今月", + "readging": "こんげつ", + "pos": "名詞", + "pn": -0.310828 + }, + { + "surface": "管弦", + "readging": "かんげん", + "pos": "名詞", + "pn": -0.310834 + }, + { + "surface": "補血", + "readging": "ほけつ", + "pos": "名詞", + "pn": -0.310846 + }, + { + "surface": "満杯", + "readging": "まんぱい", + "pos": "名詞", + "pn": -0.31085 + }, + { + "surface": "貴", + "readging": "き", + "pos": "名詞", + "pn": -0.310859 + }, + { + "surface": "国電", + "readging": "こくでん", + "pos": "名詞", + "pn": -0.310871 + }, + { + "surface": "履歴", + "readging": "りれき", + "pos": "名詞", + "pn": -0.310872 + }, + { + "surface": "追給", + "readging": "ついきゅう", + "pos": "名詞", + "pn": -0.310891 + }, + { + "surface": "短", + "readging": "たん", + "pos": "名詞", + "pn": -0.310892 + }, + { + "surface": "凹版", + "readging": "おうはん", + "pos": "名詞", + "pn": -0.310897 + }, + { + "surface": "袋綴", + "readging": "ふくろとじ", + "pos": "名詞", + "pn": -0.3109 + }, + { + "surface": "枯死", + "readging": "こし", + "pos": "名詞", + "pn": -0.3109 + }, + { + "surface": "盗癖", + "readging": "とうへき", + "pos": "名詞", + "pn": -0.310912 + }, + { + "surface": "ドット", + "readging": "ドットプリンター", + "pos": "名詞", + "pn": -0.310927 + }, + { + "surface": "手工業", + "readging": "しゅこうぎょう", + "pos": "名詞", + "pn": -0.310935 + }, + { + "surface": "物象", + "readging": "ぶっしょう", + "pos": "名詞", + "pn": -0.310946 + }, + { + "surface": "円弧", + "readging": "えんこ", + "pos": "名詞", + "pn": -0.310965 + }, + { + "surface": "側杖", + "readging": "そばづえ", + "pos": "名詞", + "pn": -0.310973 + }, + { + "surface": "死別", + "readging": "しべつ", + "pos": "名詞", + "pn": -0.311014 + }, + { + "surface": "朝餐", + "readging": "ちょうさん", + "pos": "名詞", + "pn": -0.311015 + }, + { + "surface": "背負い込む", + "readging": "しょいこむ", + "pos": "動詞", + "pn": -0.311023 + }, + { + "surface": "どてら", + "readging": "どてら", + "pos": "名詞", + "pn": -0.311051 + }, + { + "surface": "原材料", + "readging": "げんざいりょう", + "pos": "名詞", + "pn": -0.311064 + }, + { + "surface": "濁声", + "readging": "にごりごえ", + "pos": "名詞", + "pn": -0.31107 + }, + { + "surface": "タイム", + "readging": "タイムスリップ", + "pos": "名詞", + "pn": -0.311083 + }, + { + "surface": "一回忌", + "readging": "いっかいき", + "pos": "名詞", + "pn": -0.311111 + }, + { + "surface": "赤腹", + "readging": "あかはら", + "pos": "名詞", + "pn": -0.311111 + }, + { + "surface": "逆波", + "readging": "さかなみ", + "pos": "名詞", + "pn": -0.311119 + }, + { + "surface": "石油化学工業", + "readging": "せきゆかがくこうぎょう", + "pos": "名詞", + "pn": -0.311124 + }, + { + "surface": "のっそり", + "readging": "のっそり", + "pos": "副詞", + "pn": -0.311146 + }, + { + "surface": "家学", + "readging": "かがく", + "pos": "名詞", + "pn": -0.311147 + }, + { + "surface": "雪兎", + "readging": "ゆきうさぎ", + "pos": "名詞", + "pn": -0.311177 + }, + { + "surface": "忘れる", + "readging": "わすれる", + "pos": "動詞", + "pn": -0.311204 + }, + { + "surface": "銀粉", + "readging": "ぎんぷん", + "pos": "名詞", + "pn": -0.311209 + }, + { + "surface": "初夜", + "readging": "しょや", + "pos": "名詞", + "pn": -0.31121 + }, + { + "surface": "白髪染", + "readging": "しらがぞめ", + "pos": "名詞", + "pn": -0.311257 + }, + { + "surface": "畝", + "readging": "せ", + "pos": "名詞", + "pn": -0.311261 + }, + { + "surface": "薬指", + "readging": "くすりゆび", + "pos": "名詞", + "pn": -0.311264 + }, + { + "surface": "クランク", + "readging": "クランク", + "pos": "名詞", + "pn": -0.31128 + }, + { + "surface": "雹害", + "readging": "ひょうがい", + "pos": "名詞", + "pn": -0.311286 + }, + { + "surface": "他日", + "readging": "たじつ", + "pos": "名詞", + "pn": -0.311295 + }, + { + "surface": "藩侯", + "readging": "はんこう", + "pos": "名詞", + "pn": -0.311311 + }, + { + "surface": "棒先", + "readging": "ぼうさき", + "pos": "名詞", + "pn": -0.311323 + }, + { + "surface": "鉄鋼", + "readging": "てっこう", + "pos": "名詞", + "pn": -0.311332 + }, + { + "surface": "主席", + "readging": "しゅせき", + "pos": "名詞", + "pn": -0.311353 + }, + { + "surface": "石灰窒素", + "readging": "せっかいちっそ", + "pos": "名詞", + "pn": -0.311361 + }, + { + "surface": "蝦蟇", + "readging": "がま", + "pos": "名詞", + "pn": -0.311403 + }, + { + "surface": "スポンサー", + "readging": "スポンサー", + "pos": "名詞", + "pn": -0.311419 + }, + { + "surface": "非常口", + "readging": "ひじょうぐち", + "pos": "名詞", + "pn": -0.311429 + }, + { + "surface": "首都", + "readging": "しゅと", + "pos": "名詞", + "pn": -0.311458 + }, + { + "surface": "辻斬", + "readging": "つじぎり", + "pos": "名詞", + "pn": -0.311481 + }, + { + "surface": "目釘", + "readging": "めくぎ", + "pos": "名詞", + "pn": -0.311511 + }, + { + "surface": "紙礫", + "readging": "かみつぶて", + "pos": "名詞", + "pn": -0.311518 + }, + { + "surface": "羨道", + "readging": "えんどう", + "pos": "名詞", + "pn": -0.311548 + }, + { + "surface": "鉄材", + "readging": "てつざい", + "pos": "名詞", + "pn": -0.311587 + }, + { + "surface": "身口意", + "readging": "しんくい", + "pos": "名詞", + "pn": -0.311591 + }, + { + "surface": "兼合い", + "readging": "かねあい", + "pos": "名詞", + "pn": -0.311598 + }, + { + "surface": "衝撃波", + "readging": "しょうげきは", + "pos": "名詞", + "pn": -0.311601 + }, + { + "surface": "片隅", + "readging": "かたすみ", + "pos": "名詞", + "pn": -0.31162 + }, + { + "surface": "外輪船", + "readging": "がいりんせん", + "pos": "名詞", + "pn": -0.311651 + }, + { + "surface": "練れる", + "readging": "ねれる", + "pos": "動詞", + "pn": -0.311655 + }, + { + "surface": "ハンドボール", + "readging": "ハンドボール", + "pos": "名詞", + "pn": -0.311706 + }, + { + "surface": "方丈", + "readging": "ほうじょう", + "pos": "名詞", + "pn": -0.311706 + }, + { + "surface": "陣太鼓", + "readging": "じんだいこ", + "pos": "名詞", + "pn": -0.311718 + }, + { + "surface": "ふんだくる", + "readging": "ふんだくる", + "pos": "動詞", + "pn": -0.311727 + }, + { + "surface": "小冊子", + "readging": "しょうさっし", + "pos": "名詞", + "pn": -0.31173 + }, + { + "surface": "ハトロン紙", + "readging": "ハトロンし", + "pos": "名詞", + "pn": -0.311737 + }, + { + "surface": "郷", + "readging": "ごう", + "pos": "名詞", + "pn": -0.311745 + }, + { + "surface": "ボヘミアン", + "readging": "ボヘミアン", + "pos": "名詞", + "pn": -0.311747 + }, + { + "surface": "費目", + "readging": "ひもく", + "pos": "名詞", + "pn": -0.311755 + }, + { + "surface": "無芸", + "readging": "むげい", + "pos": "名詞", + "pn": -0.311773 + }, + { + "surface": "聴診", + "readging": "ちょうしん", + "pos": "名詞", + "pn": -0.31178 + }, + { + "surface": "凸レンズ", + "readging": "とつレンズ", + "pos": "名詞", + "pn": -0.311787 + }, + { + "surface": "カラー", + "readging": "カラー", + "pos": "名詞", + "pn": -0.311788 + }, + { + "surface": "揃い", + "readging": "そろい", + "pos": "名詞", + "pn": -0.31179 + }, + { + "surface": "虫害", + "readging": "ちゅうがい", + "pos": "名詞", + "pn": -0.311807 + }, + { + "surface": "荒れ肌", + "readging": "あれはだ", + "pos": "名詞", + "pn": -0.311812 + }, + { + "surface": "ソフト", + "readging": "ソフトウェア", + "pos": "名詞", + "pn": -0.311844 + }, + { + "surface": "急転直下", + "readging": "きゅうてんちょっか", + "pos": "名詞", + "pn": -0.311844 + }, + { + "surface": "機械文明", + "readging": "きかいぶんめい", + "pos": "名詞", + "pn": -0.311851 + }, + { + "surface": "お門違い", + "readging": "おかどちがい", + "pos": "名詞", + "pn": -0.311853 + }, + { + "surface": "関する", + "readging": "かんする", + "pos": "動詞", + "pn": -0.311855 + }, + { + "surface": "地象", + "readging": "ちしょう", + "pos": "名詞", + "pn": -0.311919 + }, + { + "surface": "試行", + "readging": "しこう", + "pos": "名詞", + "pn": -0.311922 + }, + { + "surface": "国事犯", + "readging": "こくじはん", + "pos": "名詞", + "pn": -0.311943 + }, + { + "surface": "正殿", + "readging": "せいでん", + "pos": "名詞", + "pn": -0.311947 + }, + { + "surface": "吃る", + "readging": "どもる", + "pos": "動詞", + "pn": -0.311952 + }, + { + "surface": "気圧される", + "readging": "けおされる", + "pos": "動詞", + "pn": -0.311953 + }, + { + "surface": "昇華", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.311972 + }, + { + "surface": "刺継ぎ", + "readging": "さしつぎ", + "pos": "名詞", + "pn": -0.311978 + }, + { + "surface": "神殿", + "readging": "しんでん", + "pos": "名詞", + "pn": -0.311999 + }, + { + "surface": "奏上", + "readging": "そうじょう", + "pos": "名詞", + "pn": -0.312002 + }, + { + "surface": "字幕", + "readging": "じまく", + "pos": "名詞", + "pn": -0.312017 + }, + { + "surface": "ノート", + "readging": "ノート", + "pos": "名詞", + "pn": -0.312025 + }, + { + "surface": "析出", + "readging": "せきしゅつ", + "pos": "名詞", + "pn": -0.31203 + }, + { + "surface": "糸柾目", + "readging": "いとまさめ", + "pos": "名詞", + "pn": -0.312044 + }, + { + "surface": "新茶", + "readging": "しんちゃ", + "pos": "名詞", + "pn": -0.312046 + }, + { + "surface": "黙黙", + "readging": "もくもく", + "pos": "名詞", + "pn": -0.312067 + }, + { + "surface": "宿割", + "readging": "しゅくわり", + "pos": "名詞", + "pn": -0.312091 + }, + { + "surface": "雨露", + "readging": "うろ", + "pos": "名詞", + "pn": -0.312091 + }, + { + "surface": "ゆきあたり", + "readging": "ゆきあたりばったり", + "pos": "名詞", + "pn": -0.312094 + }, + { + "surface": "呉絽服連", + "readging": "ゴロフクレン", + "pos": "名詞", + "pn": -0.312111 + }, + { + "surface": "気受け", + "readging": "きうけ", + "pos": "名詞", + "pn": -0.312117 + }, + { + "surface": "急速", + "readging": "きゅうそく", + "pos": "名詞", + "pn": -0.312135 + }, + { + "surface": "黒鼠", + "readging": "くろねずみ", + "pos": "名詞", + "pn": -0.312137 + }, + { + "surface": "ビデオ", + "readging": "ビデオテープ レコーダー", + "pos": "名詞", + "pn": -0.312145 + }, + { + "surface": "調帯", + "readging": "しらべおび", + "pos": "名詞", + "pn": -0.312146 + }, + { + "surface": "先んずる", + "readging": "さきんずる", + "pos": "動詞", + "pn": -0.312155 + }, + { + "surface": "視差", + "readging": "しさ", + "pos": "名詞", + "pn": -0.312161 + }, + { + "surface": "口合", + "readging": "くちあい", + "pos": "名詞", + "pn": -0.312163 + }, + { + "surface": "韻事", + "readging": "いんじ", + "pos": "名詞", + "pn": -0.312177 + }, + { + "surface": "板挟み", + "readging": "いたばさみ", + "pos": "名詞", + "pn": -0.31219 + }, + { + "surface": "伯父", + "readging": "はくふ", + "pos": "名詞", + "pn": -0.312214 + }, + { + "surface": "車中", + "readging": "しゃちゅう", + "pos": "名詞", + "pn": -0.312227 + }, + { + "surface": "道俗", + "readging": "どうぞく", + "pos": "名詞", + "pn": -0.312259 + }, + { + "surface": "浜防風", + "readging": "はまぼうふう", + "pos": "名詞", + "pn": -0.312283 + }, + { + "surface": "雑収入", + "readging": "ざつしゅうにゅう", + "pos": "名詞", + "pn": -0.312299 + }, + { + "surface": "鉛管", + "readging": "えんかん", + "pos": "名詞", + "pn": -0.312315 + }, + { + "surface": "追抜く", + "readging": "おいぬく", + "pos": "動詞", + "pn": -0.312341 + }, + { + "surface": "万人", + "readging": "ばんじん", + "pos": "名詞", + "pn": -0.312363 + }, + { + "surface": "しょうさん銀", + "readging": "しょうさんぎん", + "pos": "名詞", + "pn": -0.312384 + }, + { + "surface": "帳付", + "readging": "ちょうつけ", + "pos": "名詞", + "pn": -0.312403 + }, + { + "surface": "資材", + "readging": "しざい", + "pos": "名詞", + "pn": -0.312409 + }, + { + "surface": "宥和", + "readging": "ゆうわ", + "pos": "名詞", + "pn": -0.312418 + }, + { + "surface": "油性", + "readging": "ゆせい", + "pos": "名詞", + "pn": -0.312419 + }, + { + "surface": "宵", + "readging": "しょう", + "pos": "名詞", + "pn": -0.312423 + }, + { + "surface": "正書法", + "readging": "せいしょほう", + "pos": "名詞", + "pn": -0.312436 + }, + { + "surface": "電場", + "readging": "でんば", + "pos": "名詞", + "pn": -0.312442 + }, + { + "surface": "タイマー", + "readging": "タイマー", + "pos": "名詞", + "pn": -0.312442 + }, + { + "surface": "ケット", + "readging": "ケット", + "pos": "名詞", + "pn": -0.312467 + }, + { + "surface": "鼎", + "readging": "てい", + "pos": "名詞", + "pn": -0.312501 + }, + { + "surface": "略綬", + "readging": "りゃくじゅ", + "pos": "名詞", + "pn": -0.31251 + }, + { + "surface": "三役", + "readging": "さんやく", + "pos": "名詞", + "pn": -0.312515 + }, + { + "surface": "家老", + "readging": "かろう", + "pos": "名詞", + "pn": -0.312539 + }, + { + "surface": "大宗", + "readging": "たいそう", + "pos": "名詞", + "pn": -0.312546 + }, + { + "surface": "島隠れ", + "readging": "しまがくれ", + "pos": "名詞", + "pn": -0.312557 + }, + { + "surface": "簀巻", + "readging": "すまき", + "pos": "名詞", + "pn": -0.312569 + }, + { + "surface": "寄宿舎", + "readging": "きしゅくしゃ", + "pos": "名詞", + "pn": -0.312585 + }, + { + "surface": "クロゼット", + "readging": "クロゼット", + "pos": "名詞", + "pn": -0.312606 + }, + { + "surface": "筋張る", + "readging": "すじばる", + "pos": "動詞", + "pn": -0.312619 + }, + { + "surface": "演習", + "readging": "えんしゅう", + "pos": "名詞", + "pn": -0.312623 + }, + { + "surface": "季語", + "readging": "きご", + "pos": "名詞", + "pn": -0.312625 + }, + { + "surface": "居留", + "readging": "きょりゅう", + "pos": "名詞", + "pn": -0.312627 + }, + { + "surface": "密漁", + "readging": "みつりょう", + "pos": "名詞", + "pn": -0.312634 + }, + { + "surface": "竄する", + "readging": "ざんする", + "pos": "動詞", + "pn": -0.312644 + }, + { + "surface": "着払い", + "readging": "ちゃくばらい", + "pos": "名詞", + "pn": -0.312654 + }, + { + "surface": "小麦色", + "readging": "こむぎいろ", + "pos": "名詞", + "pn": -0.31266 + }, + { + "surface": "欠員", + "readging": "けついん", + "pos": "名詞", + "pn": -0.312663 + }, + { + "surface": "屁理屈", + "readging": "へりくつ", + "pos": "名詞", + "pn": -0.312679 + }, + { + "surface": "上役", + "readging": "うわやく", + "pos": "名詞", + "pn": -0.312695 + }, + { + "surface": "カレー", + "readging": "カレー", + "pos": "名詞", + "pn": -0.312705 + }, + { + "surface": "去歳", + "readging": "きょさい", + "pos": "名詞", + "pn": -0.312756 + }, + { + "surface": "ちょん", + "readging": "ちょん", + "pos": "名詞", + "pn": -0.312756 + }, + { + "surface": "玄黄", + "readging": "げんこう", + "pos": "名詞", + "pn": -0.312782 + }, + { + "surface": "待合室", + "readging": "まちあい", + "pos": "名詞", + "pn": -0.312796 + }, + { + "surface": "無我", + "readging": "むが", + "pos": "名詞", + "pn": -0.312813 + }, + { + "surface": "呉服", + "readging": "ごふく", + "pos": "名詞", + "pn": -0.312819 + }, + { + "surface": "未婚", + "readging": "みこん", + "pos": "名詞", + "pn": -0.312826 + }, + { + "surface": "草仮名", + "readging": "そうがな", + "pos": "名詞", + "pn": -0.31284 + }, + { + "surface": "針供養", + "readging": "はりくよう", + "pos": "名詞", + "pn": -0.312845 + }, + { + "surface": "微震", + "readging": "びしん", + "pos": "名詞", + "pn": -0.31286 + }, + { + "surface": "ファン", + "readging": "ファン", + "pos": "名詞", + "pn": -0.312861 + }, + { + "surface": "干拓", + "readging": "かんたく", + "pos": "名詞", + "pn": -0.312931 + }, + { + "surface": "物理学", + "readging": "ぶつりがく", + "pos": "名詞", + "pn": -0.312934 + }, + { + "surface": "美容院", + "readging": "びよういん", + "pos": "名詞", + "pn": -0.312937 + }, + { + "surface": "領する", + "readging": "りょうする", + "pos": "動詞", + "pn": -0.312942 + }, + { + "surface": "少なくとも", + "readging": "すくなくとも", + "pos": "副詞", + "pn": -0.312943 + }, + { + "surface": "人格化", + "readging": "じんかくか", + "pos": "名詞", + "pn": -0.312975 + }, + { + "surface": "昨暁", + "readging": "さくぎょう", + "pos": "名詞", + "pn": -0.312977 + }, + { + "surface": "渓谷", + "readging": "けいこく", + "pos": "名詞", + "pn": -0.312986 + }, + { + "surface": "ゴシック", + "readging": "ゴシック", + "pos": "名詞", + "pn": -0.313011 + }, + { + "surface": "やがる", + "readging": "やがる", + "pos": "動詞", + "pn": -0.313023 + }, + { + "surface": "夏物", + "readging": "なつもの", + "pos": "名詞", + "pn": -0.313026 + }, + { + "surface": "アルファ", + "readging": "アルファ", + "pos": "名詞", + "pn": -0.313035 + }, + { + "surface": "マッハ", + "readging": "マッハ", + "pos": "名詞", + "pn": -0.313062 + }, + { + "surface": "百科辞典", + "readging": "ひゃっかじてん", + "pos": "名詞", + "pn": -0.313065 + }, + { + "surface": "千鳥足", + "readging": "ちどりあし", + "pos": "名詞", + "pn": -0.313077 + }, + { + "surface": "古", + "readging": "ふる", + "pos": "名詞", + "pn": -0.31309 + }, + { + "surface": "歌舞伎芝居", + "readging": "かぶきしばい", + "pos": "名詞", + "pn": -0.313094 + }, + { + "surface": "優先", + "readging": "ゆうせん", + "pos": "名詞", + "pn": -0.313098 + }, + { + "surface": "火花", + "readging": "ひばな", + "pos": "名詞", + "pn": -0.313126 + }, + { + "surface": "上体", + "readging": "じょうたい", + "pos": "名詞", + "pn": -0.313139 + }, + { + "surface": "絵合せ", + "readging": "えあわせ", + "pos": "名詞", + "pn": -0.313148 + }, + { + "surface": "新字", + "readging": "しんじ", + "pos": "名詞", + "pn": -0.313161 + }, + { + "surface": "頭骨", + "readging": "とうこつ", + "pos": "名詞", + "pn": -0.313161 + }, + { + "surface": "助平根性", + "readging": "すけべえこんじょう", + "pos": "名詞", + "pn": -0.313166 + }, + { + "surface": "臨席", + "readging": "りんせき", + "pos": "名詞", + "pn": -0.313175 + }, + { + "surface": "パステル", + "readging": "パステル", + "pos": "名詞", + "pn": -0.313179 + }, + { + "surface": "十分", + "readging": "じゅうぶん", + "pos": "副詞", + "pn": -0.313183 + }, + { + "surface": "気動車", + "readging": "きどうしゃ", + "pos": "名詞", + "pn": -0.313185 + }, + { + "surface": "期待値", + "readging": "きたいち", + "pos": "名詞", + "pn": -0.313196 + }, + { + "surface": "唯今", + "readging": "ただいま", + "pos": "名詞", + "pn": -0.313232 + }, + { + "surface": "予科練", + "readging": "よかれん", + "pos": "名詞", + "pn": -0.313242 + }, + { + "surface": "高度", + "readging": "こうど", + "pos": "名詞", + "pn": -0.313264 + }, + { + "surface": "近回り", + "readging": "ちかまわり", + "pos": "名詞", + "pn": -0.313293 + }, + { + "surface": "捌き髪", + "readging": "さばきがみ", + "pos": "名詞", + "pn": -0.313293 + }, + { + "surface": "旧名", + "readging": "きゅうめい", + "pos": "名詞", + "pn": -0.313301 + }, + { + "surface": "査読", + "readging": "さどく", + "pos": "名詞", + "pn": -0.313304 + }, + { + "surface": "重任", + "readging": "じゅうにん", + "pos": "名詞", + "pn": -0.313309 + }, + { + "surface": "三五", + "readging": "さんご", + "pos": "名詞", + "pn": -0.313314 + }, + { + "surface": "後備", + "readging": "こうび", + "pos": "名詞", + "pn": -0.313321 + }, + { + "surface": "略言", + "readging": "りゃくげん", + "pos": "名詞", + "pn": -0.313322 + }, + { + "surface": "楽屋裏", + "readging": "がくやうら", + "pos": "名詞", + "pn": -0.313334 + }, + { + "surface": "金波", + "readging": "きんぱ", + "pos": "名詞", + "pn": -0.31334 + }, + { + "surface": "ペット ボトル", + "readging": "ペット ボトル", + "pos": "名詞", + "pn": -0.313356 + }, + { + "surface": "軍用犬", + "readging": "ぐんようけん", + "pos": "名詞", + "pn": -0.31336 + }, + { + "surface": "クインテット", + "readging": "クインテット", + "pos": "名詞", + "pn": -0.313362 + }, + { + "surface": "弟切草", + "readging": "おとぎりそう", + "pos": "名詞", + "pn": -0.313364 + }, + { + "surface": "熨斗袋", + "readging": "のしぶくろ", + "pos": "名詞", + "pn": -0.313367 + }, + { + "surface": "雪催い", + "readging": "ゆきもよい", + "pos": "名詞", + "pn": -0.313392 + }, + { + "surface": "小路", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.313408 + }, + { + "surface": "黒める", + "readging": "くろめる", + "pos": "動詞", + "pn": -0.313417 + }, + { + "surface": "フォーカス", + "readging": "フォーカス", + "pos": "名詞", + "pn": -0.313455 + }, + { + "surface": "軍兵", + "readging": "ぐんびょう", + "pos": "名詞", + "pn": -0.313463 + }, + { + "surface": "代役", + "readging": "だいやく", + "pos": "名詞", + "pn": -0.313473 + }, + { + "surface": "家賃", + "readging": "やちん", + "pos": "名詞", + "pn": -0.313476 + }, + { + "surface": "畑作", + "readging": "はたさく", + "pos": "名詞", + "pn": -0.313484 + }, + { + "surface": "宇内", + "readging": "うだい", + "pos": "名詞", + "pn": -0.313487 + }, + { + "surface": "刺子", + "readging": "さしこ", + "pos": "名詞", + "pn": -0.313488 + }, + { + "surface": "手代", + "readging": "てだい", + "pos": "名詞", + "pn": -0.313531 + }, + { + "surface": "積雪", + "readging": "せきせつ", + "pos": "名詞", + "pn": -0.313535 + }, + { + "surface": "江", + "readging": "え", + "pos": "名詞", + "pn": -0.313548 + }, + { + "surface": "対審", + "readging": "たいしん", + "pos": "名詞", + "pn": -0.313555 + }, + { + "surface": "禁中", + "readging": "きんちゅう", + "pos": "名詞", + "pn": -0.313577 + }, + { + "surface": "日程", + "readging": "にってい", + "pos": "名詞", + "pn": -0.313599 + }, + { + "surface": "屎尿", + "readging": "しにょう", + "pos": "名詞", + "pn": -0.313607 + }, + { + "surface": "夜会服", + "readging": "やかいふく", + "pos": "名詞", + "pn": -0.313685 + }, + { + "surface": "打首", + "readging": "うちくび", + "pos": "名詞", + "pn": -0.31369 + }, + { + "surface": "旅烏", + "readging": "たびがらす", + "pos": "名詞", + "pn": -0.313696 + }, + { + "surface": "水煙", + "readging": "みずけむり", + "pos": "名詞", + "pn": -0.313724 + }, + { + "surface": "静止", + "readging": "せいし", + "pos": "名詞", + "pn": -0.313727 + }, + { + "surface": "清涼", + "readging": "せいりょう", + "pos": "名詞", + "pn": -0.313762 + }, + { + "surface": "生り木", + "readging": "なりき", + "pos": "名詞", + "pn": -0.313793 + }, + { + "surface": "逆理", + "readging": "ぎゃくり", + "pos": "名詞", + "pn": -0.313798 + }, + { + "surface": "所管庁", + "readging": "しょかんちょう", + "pos": "名詞", + "pn": -0.313813 + }, + { + "surface": "色絵", + "readging": "いろえ", + "pos": "名詞", + "pn": -0.31385 + }, + { + "surface": "雲級", + "readging": "うんきゅう", + "pos": "名詞", + "pn": -0.313876 + }, + { + "surface": "命ずる", + "readging": "めいずる", + "pos": "動詞", + "pn": -0.31391 + }, + { + "surface": "板目", + "readging": "いため", + "pos": "名詞", + "pn": -0.313911 + }, + { + "surface": "オール", + "readging": "オールウエーブ", + "pos": "名詞", + "pn": -0.313913 + }, + { + "surface": "近郷", + "readging": "きんごう", + "pos": "名詞", + "pn": -0.313918 + }, + { + "surface": "孤雁", + "readging": "こがん", + "pos": "名詞", + "pn": -0.313931 + }, + { + "surface": "プロセス", + "readging": "プロセス", + "pos": "名詞", + "pn": -0.313949 + }, + { + "surface": "免除", + "readging": "めんじょ", + "pos": "名詞", + "pn": -0.313956 + }, + { + "surface": "夜更し", + "readging": "よふかし", + "pos": "名詞", + "pn": -0.313968 + }, + { + "surface": "払い戻す", + "readging": "はらいもどす", + "pos": "動詞", + "pn": -0.313973 + }, + { + "surface": "銀糸", + "readging": "ぎんし", + "pos": "名詞", + "pn": -0.31398 + }, + { + "surface": "サボ", + "readging": "サボ", + "pos": "名詞", + "pn": -0.313992 + }, + { + "surface": "謝絶", + "readging": "しゃぜつ", + "pos": "名詞", + "pn": -0.314002 + }, + { + "surface": "巻舌", + "readging": "まきじた", + "pos": "名詞", + "pn": -0.314005 + }, + { + "surface": "心添え", + "readging": "こころぞえ", + "pos": "名詞", + "pn": -0.314015 + }, + { + "surface": "望月", + "readging": "もちづき", + "pos": "名詞", + "pn": -0.314024 + }, + { + "surface": "旗鼓", + "readging": "きこ", + "pos": "名詞", + "pn": -0.314029 + }, + { + "surface": "節糸", + "readging": "ふしいと", + "pos": "名詞", + "pn": -0.314033 + }, + { + "surface": "気兼ね", + "readging": "きがね", + "pos": "名詞", + "pn": -0.314038 + }, + { + "surface": "糞便", + "readging": "ふんべん", + "pos": "名詞", + "pn": -0.31408 + }, + { + "surface": "砲金", + "readging": "ほうきん", + "pos": "名詞", + "pn": -0.314101 + }, + { + "surface": "射殺", + "readging": "しゃさつ", + "pos": "名詞", + "pn": -0.314146 + }, + { + "surface": "小作料", + "readging": "こさくりょう", + "pos": "名詞", + "pn": -0.314149 + }, + { + "surface": "俗吏", + "readging": "ぞくり", + "pos": "名詞", + "pn": -0.314151 + }, + { + "surface": "涅槃", + "readging": "ねはん", + "pos": "名詞", + "pn": -0.314156 + }, + { + "surface": "内証", + "readging": "ないしょう", + "pos": "名詞", + "pn": -0.314175 + }, + { + "surface": "ティンパニー", + "readging": "ティンパニー", + "pos": "名詞", + "pn": -0.314175 + }, + { + "surface": "兎馬", + "readging": "うさぎうま", + "pos": "名詞", + "pn": -0.314182 + }, + { + "surface": "スポット", + "readging": "スポット", + "pos": "名詞", + "pn": -0.314184 + }, + { + "surface": "高等", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.314206 + }, + { + "surface": "椰子油", + "readging": "やしゆ", + "pos": "名詞", + "pn": -0.314218 + }, + { + "surface": "安全", + "readging": "あんぜん", + "pos": "名詞", + "pn": -0.314252 + }, + { + "surface": "角行", + "readging": "かっこう", + "pos": "名詞", + "pn": -0.314255 + }, + { + "surface": "予告編", + "readging": "よこくへん", + "pos": "名詞", + "pn": -0.314255 + }, + { + "surface": "白昼夢", + "readging": "はくちゅうむ", + "pos": "名詞", + "pn": -0.314259 + }, + { + "surface": "眠り薬", + "readging": "ねむりぐすり", + "pos": "名詞", + "pn": -0.314265 + }, + { + "surface": "薄塩", + "readging": "うすじお", + "pos": "名詞", + "pn": -0.314268 + }, + { + "surface": "翌檜", + "readging": "あすなろ", + "pos": "名詞", + "pn": -0.314276 + }, + { + "surface": "知行", + "readging": "ちぎょう", + "pos": "名詞", + "pn": -0.314295 + }, + { + "surface": "存意", + "readging": "ぞんい", + "pos": "名詞", + "pn": -0.314303 + }, + { + "surface": "八卦見", + "readging": "はっけみ", + "pos": "名詞", + "pn": -0.314309 + }, + { + "surface": "食性", + "readging": "しょくせい", + "pos": "名詞", + "pn": -0.314314 + }, + { + "surface": "根株", + "readging": "ねかぶ", + "pos": "名詞", + "pn": -0.314349 + }, + { + "surface": "豚カツ", + "readging": "とんカツ", + "pos": "名詞", + "pn": -0.314376 + }, + { + "surface": "形見", + "readging": "かたみ", + "pos": "名詞", + "pn": -0.314377 + }, + { + "surface": "甲高い", + "readging": "かんだかい", + "pos": "形容詞", + "pn": -0.31439 + }, + { + "surface": "輪留", + "readging": "わどめ", + "pos": "名詞", + "pn": -0.314395 + }, + { + "surface": "細民", + "readging": "さいみん", + "pos": "名詞", + "pn": -0.314409 + }, + { + "surface": "ホット", + "readging": "ホットライン", + "pos": "名詞", + "pn": -0.31442 + }, + { + "surface": "視程", + "readging": "してい", + "pos": "名詞", + "pn": -0.314445 + }, + { + "surface": "真人", + "readging": "しんじん", + "pos": "名詞", + "pn": -0.314449 + }, + { + "surface": "プラス", + "readging": "プラスアルファ", + "pos": "名詞", + "pn": -0.314461 + }, + { + "surface": "清聴", + "readging": "せいちょう", + "pos": "名詞", + "pn": -0.314476 + }, + { + "surface": "声紋", + "readging": "せいもん", + "pos": "名詞", + "pn": -0.314494 + }, + { + "surface": "秋気", + "readging": "しゅうき", + "pos": "名詞", + "pn": -0.314509 + }, + { + "surface": "萌える", + "readging": "もえる", + "pos": "動詞", + "pn": -0.314518 + }, + { + "surface": "荒ごなし", + "readging": "あらごなし", + "pos": "名詞", + "pn": -0.31455 + }, + { + "surface": "注疏", + "readging": "ちゅうそ", + "pos": "名詞", + "pn": -0.314551 + }, + { + "surface": "隠忍", + "readging": "いんにん", + "pos": "名詞", + "pn": -0.314553 + }, + { + "surface": "お安い", + "readging": "おやすい", + "pos": "形容詞", + "pn": -0.314582 + }, + { + "surface": "梯子乗り", + "readging": "はしごのり", + "pos": "名詞", + "pn": -0.314649 + }, + { + "surface": "片脳油", + "readging": "へんのうゆ", + "pos": "名詞", + "pn": -0.314653 + }, + { + "surface": "ごまのはい", + "readging": "ごまのはい", + "pos": "名詞", + "pn": -0.314657 + }, + { + "surface": "叡覧", + "readging": "えいらん", + "pos": "名詞", + "pn": -0.314659 + }, + { + "surface": "言繕う", + "readging": "いいつくろう", + "pos": "動詞", + "pn": -0.314674 + }, + { + "surface": "スタッフ", + "readging": "スタッフ", + "pos": "名詞", + "pn": -0.314685 + }, + { + "surface": "神体", + "readging": "しんたい", + "pos": "名詞", + "pn": -0.31469 + }, + { + "surface": "樹氷", + "readging": "じゅひょう", + "pos": "名詞", + "pn": -0.314694 + }, + { + "surface": "ソフト", + "readging": "ソフトボール", + "pos": "名詞", + "pn": -0.314708 + }, + { + "surface": "苔", + "readging": "たい", + "pos": "名詞", + "pn": -0.314714 + }, + { + "surface": "印字", + "readging": "いんじ", + "pos": "名詞", + "pn": -0.314715 + }, + { + "surface": "木の芽", + "readging": "このめ", + "pos": "名詞", + "pn": -0.314735 + }, + { + "surface": "リアクション", + "readging": "リアクション", + "pos": "名詞", + "pn": -0.314766 + }, + { + "surface": "売急ぐ", + "readging": "うりいそぐ", + "pos": "動詞", + "pn": -0.314787 + }, + { + "surface": "入隊", + "readging": "にゅうたい", + "pos": "名詞", + "pn": -0.31479 + }, + { + "surface": "のめす", + "readging": "のめす", + "pos": "動詞", + "pn": -0.314811 + }, + { + "surface": "苦労性", + "readging": "くろうしょう", + "pos": "名詞", + "pn": -0.314817 + }, + { + "surface": "ライン", + "readging": "ライン", + "pos": "名詞", + "pn": -0.314823 + }, + { + "surface": "ゲートル", + "readging": "ゲートル", + "pos": "名詞", + "pn": -0.314848 + }, + { + "surface": "前売", + "readging": "まえうり", + "pos": "名詞", + "pn": -0.31485 + }, + { + "surface": "別辞", + "readging": "べつじ", + "pos": "名詞", + "pn": -0.314851 + }, + { + "surface": "自治", + "readging": "じち", + "pos": "名詞", + "pn": -0.3149 + }, + { + "surface": "果せる", + "readging": "おおせる", + "pos": "動詞", + "pn": -0.314909 + }, + { + "surface": "派出所", + "readging": "はしゅつじょ", + "pos": "名詞", + "pn": -0.314915 + }, + { + "surface": "台湾坊主", + "readging": "たいわんぼうず", + "pos": "名詞", + "pn": -0.314926 + }, + { + "surface": "アウトサイダー", + "readging": "アウトサイダー", + "pos": "名詞", + "pn": -0.314961 + }, + { + "surface": "屈伏", + "readging": "くっぷく", + "pos": "名詞", + "pn": -0.314961 + }, + { + "surface": "統御", + "readging": "とうぎょ", + "pos": "名詞", + "pn": -0.314966 + }, + { + "surface": "学名", + "readging": "がくめい", + "pos": "名詞", + "pn": -0.314981 + }, + { + "surface": "風防", + "readging": "ふうぼう", + "pos": "名詞", + "pn": -0.314993 + }, + { + "surface": "繰綿", + "readging": "くりわた", + "pos": "名詞", + "pn": -0.314998 + }, + { + "surface": "警防", + "readging": "けいぼう", + "pos": "名詞", + "pn": -0.315006 + }, + { + "surface": "密林", + "readging": "みつりん", + "pos": "名詞", + "pn": -0.315017 + }, + { + "surface": "上女中", + "readging": "かみじょちゅう", + "pos": "名詞", + "pn": -0.315022 + }, + { + "surface": "出土", + "readging": "しゅつど", + "pos": "名詞", + "pn": -0.315042 + }, + { + "surface": "会式", + "readging": "えしき", + "pos": "名詞", + "pn": -0.315045 + }, + { + "surface": "憎まれっ子", + "readging": "にくまれっこ", + "pos": "名詞", + "pn": -0.315059 + }, + { + "surface": "因循", + "readging": "いんじゅん", + "pos": "名詞", + "pn": -0.315087 + }, + { + "surface": "尉", + "readging": "じょう", + "pos": "名詞", + "pn": -0.315091 + }, + { + "surface": "不変資本", + "readging": "ふへんしほん", + "pos": "名詞", + "pn": -0.315093 + }, + { + "surface": "中生代", + "readging": "ちゅうせいだい", + "pos": "名詞", + "pn": -0.315111 + }, + { + "surface": "野手", + "readging": "やしゅ", + "pos": "名詞", + "pn": -0.315134 + }, + { + "surface": "チューニング", + "readging": "チューニング", + "pos": "名詞", + "pn": -0.315141 + }, + { + "surface": "哨戒", + "readging": "しょうかい", + "pos": "名詞", + "pn": -0.315147 + }, + { + "surface": "時代物", + "readging": "じだいもの", + "pos": "名詞", + "pn": -0.31515 + }, + { + "surface": "敵塁", + "readging": "てきるい", + "pos": "名詞", + "pn": -0.315187 + }, + { + "surface": "衣装方", + "readging": "いしょうかた", + "pos": "名詞", + "pn": -0.315205 + }, + { + "surface": "ローン", + "readging": "ローン", + "pos": "名詞", + "pn": -0.315235 + }, + { + "surface": "敢行", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.315265 + }, + { + "surface": "いちび", + "readging": "いちび", + "pos": "名詞", + "pn": -0.315279 + }, + { + "surface": "滔滔", + "readging": "とうとう", + "pos": "名詞", + "pn": -0.315302 + }, + { + "surface": "片口", + "readging": "かたくち", + "pos": "名詞", + "pn": -0.315324 + }, + { + "surface": "笈", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.315329 + }, + { + "surface": "享有", + "readging": "きょうゆう", + "pos": "名詞", + "pn": -0.315334 + }, + { + "surface": "竣功", + "readging": "しゅんこう", + "pos": "名詞", + "pn": -0.315363 + }, + { + "surface": "多情", + "readging": "たじょう", + "pos": "名詞", + "pn": -0.31537 + }, + { + "surface": "テキスト", + "readging": "テキスト", + "pos": "名詞", + "pn": -0.31542 + }, + { + "surface": "乱売", + "readging": "らんばい", + "pos": "名詞", + "pn": -0.315421 + }, + { + "surface": "矢飛白", + "readging": "やがすり", + "pos": "名詞", + "pn": -0.315436 + }, + { + "surface": "チャンネル", + "readging": "チャンネル", + "pos": "名詞", + "pn": -0.315451 + }, + { + "surface": "北", + "readging": "きた", + "pos": "名詞", + "pn": -0.315468 + }, + { + "surface": "メートル法", + "readging": "メートルほう", + "pos": "名詞", + "pn": -0.31548 + }, + { + "surface": "峰", + "readging": "みね", + "pos": "名詞", + "pn": -0.315518 + }, + { + "surface": "撓める", + "readging": "いためる", + "pos": "動詞", + "pn": -0.315521 + }, + { + "surface": "吐出す", + "readging": "はきだす", + "pos": "動詞", + "pn": -0.315522 + }, + { + "surface": "壮士", + "readging": "そうし", + "pos": "名詞", + "pn": -0.315526 + }, + { + "surface": "吊床", + "readging": "つりどこ", + "pos": "名詞", + "pn": -0.315527 + }, + { + "surface": "虱潰し", + "readging": "しらみつぶし", + "pos": "名詞", + "pn": -0.315543 + }, + { + "surface": "差し足", + "readging": "さしあし", + "pos": "名詞", + "pn": -0.315546 + }, + { + "surface": "キャンバス", + "readging": "キャンバス", + "pos": "名詞", + "pn": -0.315582 + }, + { + "surface": "三日天下", + "readging": "みっかてんか", + "pos": "名詞", + "pn": -0.315592 + }, + { + "surface": "幽霊船", + "readging": "ゆうれいせん", + "pos": "名詞", + "pn": -0.31564 + }, + { + "surface": "コンコース", + "readging": "コンコース", + "pos": "名詞", + "pn": -0.315645 + }, + { + "surface": "落武者", + "readging": "おちむしゃ", + "pos": "名詞", + "pn": -0.315647 + }, + { + "surface": "小惑星", + "readging": "しょうわくせい", + "pos": "名詞", + "pn": -0.315665 + }, + { + "surface": "別涙", + "readging": "べつるい", + "pos": "名詞", + "pn": -0.315678 + }, + { + "surface": "放り出す", + "readging": "ひりだす", + "pos": "動詞", + "pn": -0.315716 + }, + { + "surface": "御迎え", + "readging": "おむかえ", + "pos": "名詞", + "pn": -0.315731 + }, + { + "surface": "弁務官", + "readging": "べんむかん", + "pos": "名詞", + "pn": -0.315751 + }, + { + "surface": "名彙", + "readging": "めいい", + "pos": "名詞", + "pn": -0.315764 + }, + { + "surface": "宣告", + "readging": "せんこく", + "pos": "名詞", + "pn": -0.315773 + }, + { + "surface": "在郷", + "readging": "ざいきょう", + "pos": "名詞", + "pn": -0.315778 + }, + { + "surface": "銀波", + "readging": "ぎんぱ", + "pos": "名詞", + "pn": -0.315781 + }, + { + "surface": "原子力", + "readging": "げんしりょく", + "pos": "名詞", + "pn": -0.315786 + }, + { + "surface": "源氏蛍", + "readging": "げんじぼたる", + "pos": "名詞", + "pn": -0.315807 + }, + { + "surface": "妄執", + "readging": "もうしゅう", + "pos": "名詞", + "pn": -0.315859 + }, + { + "surface": "謙語", + "readging": "けんご", + "pos": "名詞", + "pn": -0.315869 + }, + { + "surface": "法敵", + "readging": "ほうてき", + "pos": "名詞", + "pn": -0.315887 + }, + { + "surface": "焜炉", + "readging": "こんろ", + "pos": "名詞", + "pn": -0.315903 + }, + { + "surface": "ホイッスル", + "readging": "ホイッスル", + "pos": "名詞", + "pn": -0.315942 + }, + { + "surface": "掏摸", + "readging": "すり", + "pos": "名詞", + "pn": -0.315948 + }, + { + "surface": "花柳", + "readging": "かりゅう", + "pos": "名詞", + "pn": -0.31597 + }, + { + "surface": "どっかり", + "readging": "どっかり", + "pos": "副詞", + "pn": -0.31597 + }, + { + "surface": "神通力", + "readging": "じんずうりき", + "pos": "名詞", + "pn": -0.315991 + }, + { + "surface": "躯", + "readging": "く", + "pos": "名詞", + "pn": -0.315993 + }, + { + "surface": "ワットマン紙", + "readging": "ワットマンし", + "pos": "名詞", + "pn": -0.316013 + }, + { + "surface": "管制", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.316019 + }, + { + "surface": "摂家", + "readging": "せっけ", + "pos": "名詞", + "pn": -0.316048 + }, + { + "surface": "反感", + "readging": "はんかん", + "pos": "名詞", + "pn": -0.316054 + }, + { + "surface": "錦木", + "readging": "にしきぎ", + "pos": "名詞", + "pn": -0.316064 + }, + { + "surface": "三角関係", + "readging": "さんかくかんけい", + "pos": "名詞", + "pn": -0.316083 + }, + { + "surface": "油母頁岩", + "readging": "ゆぼけつがん", + "pos": "名詞", + "pn": -0.316096 + }, + { + "surface": "大向う", + "readging": "おおむこう", + "pos": "名詞", + "pn": -0.316097 + }, + { + "surface": "送信", + "readging": "そうしん", + "pos": "名詞", + "pn": -0.316119 + }, + { + "surface": "食わず嫌い", + "readging": "くわずぎらい", + "pos": "名詞", + "pn": -0.316137 + }, + { + "surface": "静養", + "readging": "せいよう", + "pos": "名詞", + "pn": -0.316146 + }, + { + "surface": "歴歴", + "readging": "れきれき", + "pos": "名詞", + "pn": -0.31616 + }, + { + "surface": "御汁", + "readging": "おつゆ", + "pos": "名詞", + "pn": -0.316173 + }, + { + "surface": "長男", + "readging": "ちょうなん", + "pos": "名詞", + "pn": -0.316199 + }, + { + "surface": "支店", + "readging": "してん", + "pos": "名詞", + "pn": -0.316208 + }, + { + "surface": "太陽暦", + "readging": "たいようれき", + "pos": "名詞", + "pn": -0.316218 + }, + { + "surface": "祭文読み", + "readging": "さいもんよみ", + "pos": "名詞", + "pn": -0.316236 + }, + { + "surface": "親骨", + "readging": "おやぼね", + "pos": "名詞", + "pn": -0.316252 + }, + { + "surface": "猟虎", + "readging": "ラッコ", + "pos": "名詞", + "pn": -0.316258 + }, + { + "surface": "和習", + "readging": "わしゅう", + "pos": "名詞", + "pn": -0.316278 + }, + { + "surface": "コンペ", + "readging": "コンペ", + "pos": "名詞", + "pn": -0.316284 + }, + { + "surface": "世人", + "readging": "せじん", + "pos": "名詞", + "pn": -0.316296 + }, + { + "surface": "杯洗", + "readging": "はいせん", + "pos": "名詞", + "pn": -0.316323 + }, + { + "surface": "山百合", + "readging": "やまゆり", + "pos": "名詞", + "pn": -0.316326 + }, + { + "surface": "教科書", + "readging": "きょうかしょ", + "pos": "名詞", + "pn": -0.316334 + }, + { + "surface": "息吹", + "readging": "いぶき", + "pos": "名詞", + "pn": -0.316408 + }, + { + "surface": "弓術", + "readging": "きゅうじゅつ", + "pos": "名詞", + "pn": -0.316431 + }, + { + "surface": "察し", + "readging": "さっし", + "pos": "名詞", + "pn": -0.316442 + }, + { + "surface": "球審", + "readging": "きゅうしん", + "pos": "名詞", + "pn": -0.316465 + }, + { + "surface": "上映", + "readging": "じょうえい", + "pos": "名詞", + "pn": -0.316473 + }, + { + "surface": "口伝", + "readging": "くでん", + "pos": "名詞", + "pn": -0.316505 + }, + { + "surface": "競輪", + "readging": "けいりん", + "pos": "名詞", + "pn": -0.316517 + }, + { + "surface": "止む", + "readging": "やむ", + "pos": "動詞", + "pn": -0.316525 + }, + { + "surface": "付け木", + "readging": "つけぎ", + "pos": "名詞", + "pn": -0.316531 + }, + { + "surface": "空車", + "readging": "からぐるま", + "pos": "名詞", + "pn": -0.316581 + }, + { + "surface": "夏蚕", + "readging": "なつご", + "pos": "名詞", + "pn": -0.316586 + }, + { + "surface": "薩摩琵琶", + "readging": "さつまびわ", + "pos": "名詞", + "pn": -0.316587 + }, + { + "surface": "降車", + "readging": "こうしゃ", + "pos": "名詞", + "pn": -0.316587 + }, + { + "surface": "薦骨", + "readging": "せんこつ", + "pos": "名詞", + "pn": -0.316637 + }, + { + "surface": "経木", + "readging": "きょうぎ", + "pos": "名詞", + "pn": -0.316643 + }, + { + "surface": "領有", + "readging": "りょうゆう", + "pos": "名詞", + "pn": -0.316655 + }, + { + "surface": "言放つ", + "readging": "いいはなつ", + "pos": "動詞", + "pn": -0.316659 + }, + { + "surface": "星祭", + "readging": "ほしまつり", + "pos": "名詞", + "pn": -0.316687 + }, + { + "surface": "寄木", + "readging": "よせぎ", + "pos": "名詞", + "pn": -0.316699 + }, + { + "surface": "振出す", + "readging": "ふりだす", + "pos": "動詞", + "pn": -0.316702 + }, + { + "surface": "想念", + "readging": "そうねん", + "pos": "名詞", + "pn": -0.316709 + }, + { + "surface": "富家", + "readging": "ふか", + "pos": "名詞", + "pn": -0.316732 + }, + { + "surface": "富家", + "readging": "ふうか", + "pos": "名詞", + "pn": -0.316732 + }, + { + "surface": "走行", + "readging": "そうこう", + "pos": "名詞", + "pn": -0.316732 + }, + { + "surface": "口言葉", + "readging": "くちことば", + "pos": "名詞", + "pn": -0.316736 + }, + { + "surface": "検非違使", + "readging": "けびいし", + "pos": "名詞", + "pn": -0.316757 + }, + { + "surface": "注する", + "readging": "ちゅうする", + "pos": "動詞", + "pn": -0.316761 + }, + { + "surface": "帳合", + "readging": "ちょうあい", + "pos": "名詞", + "pn": -0.316773 + }, + { + "surface": "さら", + "readging": "さら", + "pos": "名詞", + "pn": -0.316818 + }, + { + "surface": "貸金", + "readging": "かしきん", + "pos": "名詞", + "pn": -0.316822 + }, + { + "surface": "渡世人", + "readging": "とせいにん", + "pos": "名詞", + "pn": -0.316841 + }, + { + "surface": "塵芥", + "readging": "ちりあくた", + "pos": "名詞", + "pn": -0.316861 + }, + { + "surface": "奇襲", + "readging": "きしゅう", + "pos": "名詞", + "pn": -0.316862 + }, + { + "surface": "ああ", + "readging": "ああ", + "pos": "副詞", + "pn": -0.31688 + }, + { + "surface": "左証", + "readging": "さしょう", + "pos": "名詞", + "pn": -0.316889 + }, + { + "surface": "入漁", + "readging": "にゅうぎょ", + "pos": "名詞", + "pn": -0.316892 + }, + { + "surface": "求刑", + "readging": "きゅうけい", + "pos": "名詞", + "pn": -0.316896 + }, + { + "surface": "薄荷", + "readging": "はっか", + "pos": "名詞", + "pn": -0.316914 + }, + { + "surface": "サジェストする", + "readging": "サジェストする", + "pos": "動詞", + "pn": -0.316916 + }, + { + "surface": "幇助", + "readging": "ほうじょ", + "pos": "名詞", + "pn": -0.316918 + }, + { + "surface": "三寸", + "readging": "さんずん", + "pos": "名詞", + "pn": -0.316923 + }, + { + "surface": "平滑", + "readging": "へいかつ", + "pos": "名詞", + "pn": -0.31697 + }, + { + "surface": "淫奔", + "readging": "いんぽん", + "pos": "名詞", + "pn": -0.316974 + }, + { + "surface": "チキン", + "readging": "チキン", + "pos": "名詞", + "pn": -0.316977 + }, + { + "surface": "勧化", + "readging": "かんげ", + "pos": "名詞", + "pn": -0.31699 + }, + { + "surface": "ファクシミリ", + "readging": "ファクシミリ", + "pos": "名詞", + "pn": -0.316991 + }, + { + "surface": "コスチューム", + "readging": "コスチューム", + "pos": "名詞", + "pn": -0.317001 + }, + { + "surface": "若隠居", + "readging": "わかいんきょ", + "pos": "名詞", + "pn": -0.317011 + }, + { + "surface": "舌鮃", + "readging": "したびらめ", + "pos": "名詞", + "pn": -0.317015 + }, + { + "surface": "拘置所", + "readging": "こうちしょ", + "pos": "名詞", + "pn": -0.317016 + }, + { + "surface": "おてしょ", + "readging": "おてしょ", + "pos": "名詞", + "pn": -0.317021 + }, + { + "surface": "太陰暦", + "readging": "たいいんれき", + "pos": "名詞", + "pn": -0.317025 + }, + { + "surface": "押印", + "readging": "おういん", + "pos": "名詞", + "pn": -0.317042 + }, + { + "surface": "検分", + "readging": "けんぶん", + "pos": "名詞", + "pn": -0.317067 + }, + { + "surface": "柱掛け", + "readging": "はしらかけ", + "pos": "名詞", + "pn": -0.317112 + }, + { + "surface": "貰い乳", + "readging": "もらいちち", + "pos": "名詞", + "pn": -0.317127 + }, + { + "surface": "寄り目", + "readging": "よりめ", + "pos": "名詞", + "pn": -0.317168 + }, + { + "surface": "貝独楽", + "readging": "べいごま", + "pos": "名詞", + "pn": -0.317182 + }, + { + "surface": "有限", + "readging": "ゆうげん", + "pos": "名詞", + "pn": -0.317187 + }, + { + "surface": "製革", + "readging": "せいかく", + "pos": "名詞", + "pn": -0.317207 + }, + { + "surface": "切返す", + "readging": "きりかえす", + "pos": "動詞", + "pn": -0.317207 + }, + { + "surface": "櫓太鼓", + "readging": "やぐらだいこ", + "pos": "名詞", + "pn": -0.317239 + }, + { + "surface": "枝葉", + "readging": "えだは", + "pos": "名詞", + "pn": -0.317262 + }, + { + "surface": "八", + "readging": "はち", + "pos": "名詞", + "pn": -0.317273 + }, + { + "surface": "冬山", + "readging": "ふゆやま", + "pos": "名詞", + "pn": -0.31728 + }, + { + "surface": "ふらりと", + "readging": "ふらりと", + "pos": "副詞", + "pn": -0.31729 + }, + { + "surface": "朝寝坊", + "readging": "あさねぼう", + "pos": "名詞", + "pn": -0.317296 + }, + { + "surface": "パブ", + "readging": "パブ", + "pos": "名詞", + "pn": -0.317301 + }, + { + "surface": "落縁", + "readging": "おちえん", + "pos": "名詞", + "pn": -0.31732 + }, + { + "surface": "蜆", + "readging": "しじみ", + "pos": "名詞", + "pn": -0.317338 + }, + { + "surface": "馬手", + "readging": "めて", + "pos": "名詞", + "pn": -0.317342 + }, + { + "surface": "国際収支", + "readging": "こくさいしゅうし", + "pos": "名詞", + "pn": -0.31735 + }, + { + "surface": "光化学スモッグ", + "readging": "こうかがくスモッグ", + "pos": "名詞", + "pn": -0.317372 + }, + { + "surface": "ペプシン", + "readging": "ペプシン", + "pos": "名詞", + "pn": -0.317375 + }, + { + "surface": "遊学", + "readging": "ゆうがく", + "pos": "名詞", + "pn": -0.317385 + }, + { + "surface": "霊場", + "readging": "れいじょう", + "pos": "名詞", + "pn": -0.317393 + }, + { + "surface": "中華", + "readging": "ちゅうか", + "pos": "名詞", + "pn": -0.317396 + }, + { + "surface": "スプン", + "readging": "スプン", + "pos": "名詞", + "pn": -0.317397 + }, + { + "surface": "繰広げる", + "readging": "くりひろげる", + "pos": "動詞", + "pn": -0.317413 + }, + { + "surface": "狩込み", + "readging": "かりこみ", + "pos": "名詞", + "pn": -0.317421 + }, + { + "surface": "落し差し", + "readging": "おとしざし", + "pos": "名詞", + "pn": -0.317447 + }, + { + "surface": "婢僕", + "readging": "ひぼく", + "pos": "名詞", + "pn": -0.31746 + }, + { + "surface": "芸能", + "readging": "げいのう", + "pos": "名詞", + "pn": -0.317467 + }, + { + "surface": "共進会", + "readging": "きょうしんかい", + "pos": "名詞", + "pn": -0.317479 + }, + { + "surface": "別棟", + "readging": "べつむね", + "pos": "名詞", + "pn": -0.317484 + }, + { + "surface": "新入り", + "readging": "しんいり", + "pos": "名詞", + "pn": -0.317486 + }, + { + "surface": "冬木", + "readging": "ふゆき", + "pos": "名詞", + "pn": -0.317492 + }, + { + "surface": "空気銃", + "readging": "くうきじゅう", + "pos": "名詞", + "pn": -0.317504 + }, + { + "surface": "面する", + "readging": "めんする", + "pos": "動詞", + "pn": -0.31751 + }, + { + "surface": "レシート", + "readging": "レシート", + "pos": "名詞", + "pn": -0.317538 + }, + { + "surface": "相思", + "readging": "そうし", + "pos": "名詞", + "pn": -0.317552 + }, + { + "surface": "借り家", + "readging": "かりいえ", + "pos": "名詞", + "pn": -0.317561 + }, + { + "surface": "部局", + "readging": "ぶきょく", + "pos": "名詞", + "pn": -0.317569 + }, + { + "surface": "完全", + "readging": "かんぜん", + "pos": "名詞", + "pn": -0.317574 + }, + { + "surface": "お節介", + "readging": "おせっかい", + "pos": "名詞", + "pn": -0.31758 + }, + { + "surface": "レパートリー", + "readging": "レパートリー", + "pos": "名詞", + "pn": -0.317582 + }, + { + "surface": "枝折戸", + "readging": "しおり", + "pos": "名詞", + "pn": -0.317607 + }, + { + "surface": "鉱床", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.31761 + }, + { + "surface": "手筋", + "readging": "てすじ", + "pos": "名詞", + "pn": -0.31761 + }, + { + "surface": "分捕る", + "readging": "ぶんどる", + "pos": "動詞", + "pn": -0.31764 + }, + { + "surface": "下さる", + "readging": "くださる", + "pos": "動詞", + "pn": -0.31765 + }, + { + "surface": "地所", + "readging": "じしょ", + "pos": "名詞", + "pn": -0.317659 + }, + { + "surface": "万が一", + "readging": "まんがいち", + "pos": "名詞", + "pn": -0.31767 + }, + { + "surface": "栗名月", + "readging": "くりめいげつ", + "pos": "名詞", + "pn": -0.317713 + }, + { + "surface": "弁明", + "readging": "べんめい", + "pos": "名詞", + "pn": -0.317719 + }, + { + "surface": "鋳金", + "readging": "ちゅうきん", + "pos": "名詞", + "pn": -0.317723 + }, + { + "surface": "高野聖", + "readging": "こうやひじり", + "pos": "名詞", + "pn": -0.317724 + }, + { + "surface": "配点", + "readging": "はいてん", + "pos": "名詞", + "pn": -0.317749 + }, + { + "surface": "悪遊び", + "readging": "わるあそび", + "pos": "名詞", + "pn": -0.31776 + }, + { + "surface": "生活難", + "readging": "せいかつなん", + "pos": "名詞", + "pn": -0.317793 + }, + { + "surface": "猫車", + "readging": "ねこぐるま", + "pos": "名詞", + "pn": -0.317795 + }, + { + "surface": "気胞", + "readging": "きほう", + "pos": "名詞", + "pn": -0.317797 + }, + { + "surface": "迷い", + "readging": "まよい", + "pos": "名詞", + "pn": -0.3178 + }, + { + "surface": "吏読", + "readging": "りと", + "pos": "名詞", + "pn": -0.317801 + }, + { + "surface": "蓐瘡", + "readging": "じょくそう", + "pos": "名詞", + "pn": -0.317804 + }, + { + "surface": "ファインダー", + "readging": "ファインダー", + "pos": "名詞", + "pn": -0.317814 + }, + { + "surface": "神道", + "readging": "しんとう", + "pos": "名詞", + "pn": -0.317818 + }, + { + "surface": "総量", + "readging": "そうりょう", + "pos": "名詞", + "pn": -0.317847 + }, + { + "surface": "表向き", + "readging": "おもてむき", + "pos": "名詞", + "pn": -0.317855 + }, + { + "surface": "渋み", + "readging": "しぶみ", + "pos": "名詞", + "pn": -0.317857 + }, + { + "surface": "水論", + "readging": "みずろん", + "pos": "名詞", + "pn": -0.317858 + }, + { + "surface": "士", + "readging": "し", + "pos": "名詞", + "pn": -0.317903 + }, + { + "surface": "低温", + "readging": "ていおん", + "pos": "名詞", + "pn": -0.317912 + }, + { + "surface": "ヴィールス", + "readging": "ヴィールス", + "pos": "名詞", + "pn": -0.317919 + }, + { + "surface": "乙", + "readging": "きのと", + "pos": "名詞", + "pn": -0.317942 + }, + { + "surface": "歴訪", + "readging": "れきほう", + "pos": "名詞", + "pn": -0.317944 + }, + { + "surface": "苦学", + "readging": "くがく", + "pos": "名詞", + "pn": -0.317951 + }, + { + "surface": "専属", + "readging": "せんぞく", + "pos": "名詞", + "pn": -0.31797 + }, + { + "surface": "サントニン", + "readging": "サントニン", + "pos": "名詞", + "pn": -0.317987 + }, + { + "surface": "ガンマ線", + "readging": "ガンマせん", + "pos": "名詞", + "pn": -0.317988 + }, + { + "surface": "モニター", + "readging": "モニター", + "pos": "名詞", + "pn": -0.31801 + }, + { + "surface": "数珠玉", + "readging": "ずずだま", + "pos": "名詞", + "pn": -0.318016 + }, + { + "surface": "妖精", + "readging": "ようせい", + "pos": "名詞", + "pn": -0.318025 + }, + { + "surface": "野道", + "readging": "のみち", + "pos": "名詞", + "pn": -0.318042 + }, + { + "surface": "斜線", + "readging": "しゃせん", + "pos": "名詞", + "pn": -0.318058 + }, + { + "surface": "球体", + "readging": "きゅうたい", + "pos": "名詞", + "pn": -0.31806 + }, + { + "surface": "砲塔", + "readging": "ほうとう", + "pos": "名詞", + "pn": -0.318068 + }, + { + "surface": "風土", + "readging": "ふうど", + "pos": "名詞", + "pn": -0.318085 + }, + { + "surface": "地下道", + "readging": "ちかどう", + "pos": "名詞", + "pn": -0.3181 + }, + { + "surface": "累計", + "readging": "るいけい", + "pos": "名詞", + "pn": -0.318116 + }, + { + "surface": "退団", + "readging": "たいだん", + "pos": "名詞", + "pn": -0.318133 + }, + { + "surface": "拘置", + "readging": "こうち", + "pos": "名詞", + "pn": -0.318139 + }, + { + "surface": "戒厳令", + "readging": "かいげんれい", + "pos": "名詞", + "pn": -0.318139 + }, + { + "surface": "器械", + "readging": "きかい", + "pos": "名詞", + "pn": -0.318157 + }, + { + "surface": "出棺", + "readging": "しゅっかん", + "pos": "名詞", + "pn": -0.318178 + }, + { + "surface": "明明後日", + "readging": "しあさって", + "pos": "名詞", + "pn": -0.31818 + }, + { + "surface": "重油", + "readging": "じゅうゆ", + "pos": "名詞", + "pn": -0.318195 + }, + { + "surface": "アンモニウム", + "readging": "アンモニウム", + "pos": "名詞", + "pn": -0.318208 + }, + { + "surface": "平日", + "readging": "へいじつ", + "pos": "名詞", + "pn": -0.318209 + }, + { + "surface": "焼明礬", + "readging": "やきみょうばん", + "pos": "名詞", + "pn": -0.31823 + }, + { + "surface": "栴檀", + "readging": "せんだん", + "pos": "名詞", + "pn": -0.318237 + }, + { + "surface": "数奇屋", + "readging": "すきや", + "pos": "名詞", + "pn": -0.318248 + }, + { + "surface": "伊呂波", + "readging": "いろは", + "pos": "名詞", + "pn": -0.318248 + }, + { + "surface": "零れ話", + "readging": "こぼればなし", + "pos": "名詞", + "pn": -0.318258 + }, + { + "surface": "斉", + "readging": "せい", + "pos": "名詞", + "pn": -0.318274 + }, + { + "surface": "安居", + "readging": "あんご", + "pos": "名詞", + "pn": -0.318285 + }, + { + "surface": "本決り", + "readging": "ほんぎまり", + "pos": "名詞", + "pn": -0.318292 + }, + { + "surface": "魔性", + "readging": "ましょう", + "pos": "名詞", + "pn": -0.318325 + }, + { + "surface": "単", + "readging": "たん", + "pos": "名詞", + "pn": -0.318336 + }, + { + "surface": "体得", + "readging": "たいとく", + "pos": "名詞", + "pn": -0.318347 + }, + { + "surface": "虎猫", + "readging": "とらねこ", + "pos": "名詞", + "pn": -0.31836 + }, + { + "surface": "姫糊", + "readging": "ひめのり", + "pos": "名詞", + "pn": -0.31836 + }, + { + "surface": "さしあたり", + "readging": "さしあたり", + "pos": "副詞", + "pn": -0.318362 + }, + { + "surface": "お祭騒ぎ", + "readging": "おまつりさわぎ", + "pos": "名詞", + "pn": -0.318389 + }, + { + "surface": "オパール", + "readging": "オパール", + "pos": "名詞", + "pn": -0.318399 + }, + { + "surface": "誓言", + "readging": "せいごん", + "pos": "名詞", + "pn": -0.318411 + }, + { + "surface": "密談", + "readging": "みつだん", + "pos": "名詞", + "pn": -0.318413 + }, + { + "surface": "筆陣", + "readging": "ひつじん", + "pos": "名詞", + "pn": -0.318426 + }, + { + "surface": "殯宮", + "readging": "ひんきゅう", + "pos": "名詞", + "pn": -0.318427 + }, + { + "surface": "点前", + "readging": "たてまえ", + "pos": "名詞", + "pn": -0.318437 + }, + { + "surface": "毒味", + "readging": "どくみ", + "pos": "名詞", + "pn": -0.318438 + }, + { + "surface": "防虫", + "readging": "ぼうちゅう", + "pos": "名詞", + "pn": -0.318452 + }, + { + "surface": "去就", + "readging": "きょしゅう", + "pos": "名詞", + "pn": -0.318457 + }, + { + "surface": "石槨", + "readging": "せっかく", + "pos": "名詞", + "pn": -0.318481 + }, + { + "surface": "哀願", + "readging": "あいがん", + "pos": "名詞", + "pn": -0.318491 + }, + { + "surface": "裸像", + "readging": "らぞう", + "pos": "名詞", + "pn": -0.318531 + }, + { + "surface": "婦", + "readging": "ふ", + "pos": "名詞", + "pn": -0.318558 + }, + { + "surface": "式部", + "readging": "しきぶ", + "pos": "名詞", + "pn": -0.318559 + }, + { + "surface": "泥濘", + "readging": "でいねい", + "pos": "名詞", + "pn": -0.318571 + }, + { + "surface": "熱血", + "readging": "ねっけつ", + "pos": "名詞", + "pn": -0.318577 + }, + { + "surface": "勘弁", + "readging": "かんべん", + "pos": "名詞", + "pn": -0.318586 + }, + { + "surface": "書残す", + "readging": "かきのこす", + "pos": "動詞", + "pn": -0.31859 + }, + { + "surface": "痴れる", + "readging": "しれる", + "pos": "動詞", + "pn": -0.318626 + }, + { + "surface": "ざらつく", + "readging": "ざらつく", + "pos": "動詞", + "pn": -0.318639 + }, + { + "surface": "三重奏", + "readging": "さんじゅうそう", + "pos": "名詞", + "pn": -0.318656 + }, + { + "surface": "一重", + "readging": "ひとえ", + "pos": "名詞", + "pn": -0.31866 + }, + { + "surface": "模本", + "readging": "もほん", + "pos": "名詞", + "pn": -0.318669 + }, + { + "surface": "朱珍", + "readging": "シチン", + "pos": "名詞", + "pn": -0.318678 + }, + { + "surface": "こんばん", + "readging": "こんばんは", + "pos": "名詞", + "pn": -0.318687 + }, + { + "surface": "決定論", + "readging": "けっていろん", + "pos": "名詞", + "pn": -0.318717 + }, + { + "surface": "やなぐい", + "readging": "やなぐい", + "pos": "名詞", + "pn": -0.318732 + }, + { + "surface": "衣冠", + "readging": "いかん", + "pos": "名詞", + "pn": -0.318734 + }, + { + "surface": "小屋", + "readging": "こや", + "pos": "名詞", + "pn": -0.31874 + }, + { + "surface": "村役", + "readging": "むらやく", + "pos": "名詞", + "pn": -0.318742 + }, + { + "surface": "連銭葦毛", + "readging": "れんぜんあしげ", + "pos": "名詞", + "pn": -0.318759 + }, + { + "surface": "陶冶", + "readging": "とうや", + "pos": "名詞", + "pn": -0.318839 + }, + { + "surface": "デリカシー", + "readging": "デリカシー", + "pos": "名詞", + "pn": -0.318844 + }, + { + "surface": "下働き", + "readging": "したばたらき", + "pos": "名詞", + "pn": -0.318847 + }, + { + "surface": "酔生夢死", + "readging": "すいせいむし", + "pos": "名詞", + "pn": -0.31888 + }, + { + "surface": "鰹木", + "readging": "かつおぎ", + "pos": "名詞", + "pn": -0.318891 + }, + { + "surface": "宋", + "readging": "そう", + "pos": "名詞", + "pn": -0.318915 + }, + { + "surface": "鼻炎", + "readging": "びえん", + "pos": "名詞", + "pn": -0.318939 + }, + { + "surface": "大部分", + "readging": "だいぶぶん", + "pos": "名詞", + "pn": -0.318943 + }, + { + "surface": "奥付", + "readging": "おくづけ", + "pos": "名詞", + "pn": -0.318953 + }, + { + "surface": "申出で", + "readging": "もうしいで", + "pos": "名詞", + "pn": -0.318965 + }, + { + "surface": "在り来り", + "readging": "ありきたり", + "pos": "名詞", + "pn": -0.318974 + }, + { + "surface": "清元", + "readging": "きよもと", + "pos": "名詞", + "pn": -0.318985 + }, + { + "surface": "自体", + "readging": "じたい", + "pos": "名詞", + "pn": -0.319008 + }, + { + "surface": "付け合せ", + "readging": "つけあわせ", + "pos": "名詞", + "pn": -0.31901 + }, + { + "surface": "餡ころ餅", + "readging": "あんころもち", + "pos": "名詞", + "pn": -0.31904 + }, + { + "surface": "脇付", + "readging": "わきづけ", + "pos": "名詞", + "pn": -0.319041 + }, + { + "surface": "グラニュー糖", + "readging": "グラニューとう", + "pos": "名詞", + "pn": -0.319049 + }, + { + "surface": "棹立ち", + "readging": "さおだち", + "pos": "名詞", + "pn": -0.319111 + }, + { + "surface": "年輪", + "readging": "ねんりん", + "pos": "名詞", + "pn": -0.319119 + }, + { + "surface": "体つき", + "readging": "からだつき", + "pos": "名詞", + "pn": -0.319122 + }, + { + "surface": "モデル", + "readging": "モデルチェンジ", + "pos": "名詞", + "pn": -0.319148 + }, + { + "surface": "シャフト", + "readging": "シャフト", + "pos": "名詞", + "pn": -0.319154 + }, + { + "surface": "賜餐", + "readging": "しさん", + "pos": "名詞", + "pn": -0.319158 + }, + { + "surface": "手拭地", + "readging": "てぬぐい", + "pos": "名詞", + "pn": -0.319171 + }, + { + "surface": "土産", + "readging": "みやげばなし", + "pos": "名詞", + "pn": -0.319189 + }, + { + "surface": "師道", + "readging": "しどう", + "pos": "名詞", + "pn": -0.319264 + }, + { + "surface": "金剛杖", + "readging": "こんごうづえ", + "pos": "名詞", + "pn": -0.319277 + }, + { + "surface": "血小板", + "readging": "けっしょうばん", + "pos": "名詞", + "pn": -0.319291 + }, + { + "surface": "若水", + "readging": "わかみず", + "pos": "名詞", + "pn": -0.319301 + }, + { + "surface": "句題", + "readging": "くだい", + "pos": "名詞", + "pn": -0.319309 + }, + { + "surface": "焼け焦げ", + "readging": "やけこげ", + "pos": "名詞", + "pn": -0.319314 + }, + { + "surface": "モノタイプ", + "readging": "モノタイプ", + "pos": "名詞", + "pn": -0.319315 + }, + { + "surface": "無駄花", + "readging": "むだばな", + "pos": "名詞", + "pn": -0.319319 + }, + { + "surface": "アバン ギャルド", + "readging": "アバン ギャルド", + "pos": "名詞", + "pn": -0.319324 + }, + { + "surface": "際物", + "readging": "きわもの", + "pos": "名詞", + "pn": -0.319327 + }, + { + "surface": "洞窟", + "readging": "どうくつ", + "pos": "名詞", + "pn": -0.319328 + }, + { + "surface": "禁忌", + "readging": "きんき", + "pos": "名詞", + "pn": -0.319336 + }, + { + "surface": "塗布", + "readging": "とふ", + "pos": "名詞", + "pn": -0.319339 + }, + { + "surface": "瑪瑙", + "readging": "めのう", + "pos": "名詞", + "pn": -0.319342 + }, + { + "surface": "追孝", + "readging": "ついこう", + "pos": "名詞", + "pn": -0.319345 + }, + { + "surface": "季", + "readging": "き", + "pos": "名詞", + "pn": -0.319363 + }, + { + "surface": "軽輩", + "readging": "けいはい", + "pos": "名詞", + "pn": -0.319367 + }, + { + "surface": "時差", + "readging": "じさ", + "pos": "名詞", + "pn": -0.319368 + }, + { + "surface": "ニア ミス", + "readging": "ニア ミス", + "pos": "名詞", + "pn": -0.319371 + }, + { + "surface": "大脳皮質", + "readging": "だいのうひしつ", + "pos": "名詞", + "pn": -0.319397 + }, + { + "surface": "朝な夕な", + "readging": "あさなゆうな", + "pos": "副詞", + "pn": -0.319419 + }, + { + "surface": "提起", + "readging": "ていき", + "pos": "名詞", + "pn": -0.319429 + }, + { + "surface": "官員", + "readging": "かんいん", + "pos": "名詞", + "pn": -0.31946 + }, + { + "surface": "ワイヤ", + "readging": "ワイヤ", + "pos": "名詞", + "pn": -0.319466 + }, + { + "surface": "統制経済", + "readging": "とうせいけいざい", + "pos": "名詞", + "pn": -0.319494 + }, + { + "surface": "惹起", + "readging": "じゃっき", + "pos": "名詞", + "pn": -0.319503 + }, + { + "surface": "よぼよぼ", + "readging": "よぼよぼ", + "pos": "副詞", + "pn": -0.319505 + }, + { + "surface": "無名氏", + "readging": "むめいし", + "pos": "名詞", + "pn": -0.319532 + }, + { + "surface": "蛇口", + "readging": "じゃぐち", + "pos": "名詞", + "pn": -0.319539 + }, + { + "surface": "ストロボ", + "readging": "ストロボ", + "pos": "名詞", + "pn": -0.319549 + }, + { + "surface": "雨", + "readging": "あめ", + "pos": "名詞", + "pn": -0.319582 + }, + { + "surface": "アジト", + "readging": "アジト", + "pos": "名詞", + "pn": -0.319592 + }, + { + "surface": "ダイヤル", + "readging": "ダイヤルイン", + "pos": "名詞", + "pn": -0.319613 + }, + { + "surface": "泣別れ", + "readging": "なきわかれ", + "pos": "名詞", + "pn": -0.31962 + }, + { + "surface": "摺抜ける", + "readging": "すりぬける", + "pos": "動詞", + "pn": -0.319621 + }, + { + "surface": "ギャラリー", + "readging": "ギャラリー", + "pos": "名詞", + "pn": -0.319654 + }, + { + "surface": "年賦", + "readging": "ねんぷ", + "pos": "名詞", + "pn": -0.319666 + }, + { + "surface": "無雑", + "readging": "むざつ", + "pos": "名詞", + "pn": -0.319667 + }, + { + "surface": "年年", + "readging": "ねんねん", + "pos": "副詞", + "pn": -0.319678 + }, + { + "surface": "手加減", + "readging": "てかげん", + "pos": "名詞", + "pn": -0.319678 + }, + { + "surface": "金砂", + "readging": "きんしゃ", + "pos": "名詞", + "pn": -0.31972 + }, + { + "surface": "遇", + "readging": "ぐう", + "pos": "名詞", + "pn": -0.319741 + }, + { + "surface": "白鷺", + "readging": "しらさぎ", + "pos": "名詞", + "pn": -0.319772 + }, + { + "surface": "小水", + "readging": "しょうすい", + "pos": "名詞", + "pn": -0.319782 + }, + { + "surface": "裏方", + "readging": "うらかた", + "pos": "名詞", + "pn": -0.319805 + }, + { + "surface": "渡鳥", + "readging": "わたりどり", + "pos": "名詞", + "pn": -0.319815 + }, + { + "surface": "油彩", + "readging": "ゆさい", + "pos": "名詞", + "pn": -0.31982 + }, + { + "surface": "身幅", + "readging": "みはば", + "pos": "名詞", + "pn": -0.319828 + }, + { + "surface": "ギア", + "readging": "ギア", + "pos": "名詞", + "pn": -0.31984 + }, + { + "surface": "盂蘭盆会", + "readging": "うらぼんえ", + "pos": "名詞", + "pn": -0.319847 + }, + { + "surface": "小半", + "readging": "こなから", + "pos": "名詞", + "pn": -0.319853 + }, + { + "surface": "体当り", + "readging": "たいあたり", + "pos": "名詞", + "pn": -0.319863 + }, + { + "surface": "抜駆け", + "readging": "ぬけがけ", + "pos": "名詞", + "pn": -0.319898 + }, + { + "surface": "力試し", + "readging": "ちからだめし", + "pos": "名詞", + "pn": -0.319928 + }, + { + "surface": "枢密院", + "readging": "すうみついん", + "pos": "名詞", + "pn": -0.319942 + }, + { + "surface": "説伏せる", + "readging": "ときふせる", + "pos": "動詞", + "pn": -0.319969 + }, + { + "surface": "急がす", + "readging": "いそがす", + "pos": "動詞", + "pn": -0.319976 + }, + { + "surface": "バーバリズム", + "readging": "バーバリズム", + "pos": "名詞", + "pn": -0.319997 + }, + { + "surface": "てんこ盛り", + "readging": "てんこもり", + "pos": "名詞", + "pn": -0.320001 + }, + { + "surface": "切張", + "readging": "きりばり", + "pos": "名詞", + "pn": -0.320015 + }, + { + "surface": "加水分解", + "readging": "かすいぶんかい", + "pos": "名詞", + "pn": -0.320019 + }, + { + "surface": "谷間", + "readging": "たにあい", + "pos": "名詞", + "pn": -0.320045 + }, + { + "surface": "支配人", + "readging": "しはいにん", + "pos": "名詞", + "pn": -0.32005 + }, + { + "surface": "奉書", + "readging": "ほうしょ", + "pos": "名詞", + "pn": -0.320056 + }, + { + "surface": "扠置く", + "readging": "さておく", + "pos": "動詞", + "pn": -0.320061 + }, + { + "surface": "片身", + "readging": "かたみ", + "pos": "名詞", + "pn": -0.320061 + }, + { + "surface": "棒杙", + "readging": "ぼうぐい", + "pos": "名詞", + "pn": -0.320096 + }, + { + "surface": "手札型", + "readging": "てふだがた", + "pos": "名詞", + "pn": -0.3201 + }, + { + "surface": "心食虫", + "readging": "しんくいむし", + "pos": "名詞", + "pn": -0.320102 + }, + { + "surface": "ルーメン", + "readging": "ルーメン", + "pos": "名詞", + "pn": -0.320125 + }, + { + "surface": "虫鰈", + "readging": "むしがれい", + "pos": "名詞", + "pn": -0.320182 + }, + { + "surface": "夫婦", + "readging": "めおと", + "pos": "名詞", + "pn": -0.320189 + }, + { + "surface": "早速", + "readging": "さっそく", + "pos": "副詞", + "pn": -0.320195 + }, + { + "surface": "湯気", + "readging": "ゆげ", + "pos": "名詞", + "pn": -0.32021 + }, + { + "surface": "招き猫", + "readging": "まねきねこ", + "pos": "名詞", + "pn": -0.320214 + }, + { + "surface": "羽翼", + "readging": "うよく", + "pos": "名詞", + "pn": -0.320216 + }, + { + "surface": "赤沈", + "readging": "せきちん", + "pos": "名詞", + "pn": -0.320241 + }, + { + "surface": "カーキ", + "readging": "カーキ", + "pos": "名詞", + "pn": -0.320267 + }, + { + "surface": "余勢", + "readging": "よせい", + "pos": "名詞", + "pn": -0.320284 + }, + { + "surface": "底堅い", + "readging": "そこがたい", + "pos": "形容詞", + "pn": -0.320285 + }, + { + "surface": "三幅", + "readging": "みの", + "pos": "名詞", + "pn": -0.320307 + }, + { + "surface": "植民地", + "readging": "しょくみんち", + "pos": "名詞", + "pn": -0.320343 + }, + { + "surface": "天元", + "readging": "てんげん", + "pos": "名詞", + "pn": -0.320356 + }, + { + "surface": "消息", + "readging": "しょうそく", + "pos": "名詞", + "pn": -0.320368 + }, + { + "surface": "古訓", + "readging": "こくん", + "pos": "名詞", + "pn": -0.320392 + }, + { + "surface": "切取る", + "readging": "きりとる", + "pos": "動詞", + "pn": -0.320395 + }, + { + "surface": "朱肉", + "readging": "しゅにく", + "pos": "名詞", + "pn": -0.320418 + }, + { + "surface": "呼ばわる", + "readging": "よばわる", + "pos": "動詞", + "pn": -0.320424 + }, + { + "surface": "下旬", + "readging": "げじゅん", + "pos": "名詞", + "pn": -0.320452 + }, + { + "surface": "徒然", + "readging": "つれづれ", + "pos": "副詞", + "pn": -0.320453 + }, + { + "surface": "一途", + "readging": "いっと", + "pos": "名詞", + "pn": -0.320457 + }, + { + "surface": "小童", + "readging": "こわっぱ", + "pos": "名詞", + "pn": -0.320478 + }, + { + "surface": "極", + "readging": "きょく", + "pos": "名詞", + "pn": -0.320483 + }, + { + "surface": "奇怪", + "readging": "きかい", + "pos": "名詞", + "pn": -0.320513 + }, + { + "surface": "値", + "readging": "ち", + "pos": "名詞", + "pn": -0.320528 + }, + { + "surface": "葉状", + "readging": "ようじょう", + "pos": "名詞", + "pn": -0.320535 + }, + { + "surface": "先潜り", + "readging": "さきくぐり", + "pos": "名詞", + "pn": -0.320545 + }, + { + "surface": "開祖", + "readging": "かいそ", + "pos": "名詞", + "pn": -0.320549 + }, + { + "surface": "能率", + "readging": "のうりつ", + "pos": "名詞", + "pn": -0.320551 + }, + { + "surface": "はまなす", + "readging": "はまなす", + "pos": "名詞", + "pn": -0.320557 + }, + { + "surface": "見向く", + "readging": "みむく", + "pos": "動詞", + "pn": -0.320565 + }, + { + "surface": "塩断ち", + "readging": "しおだち", + "pos": "名詞", + "pn": -0.320608 + }, + { + "surface": "枳殻", + "readging": "からたち", + "pos": "名詞", + "pn": -0.320623 + }, + { + "surface": "露台", + "readging": "ろだい", + "pos": "名詞", + "pn": -0.320628 + }, + { + "surface": "岐路", + "readging": "きろ", + "pos": "名詞", + "pn": -0.320636 + }, + { + "surface": "工賃", + "readging": "こうちん", + "pos": "名詞", + "pn": -0.320672 + }, + { + "surface": "寒竹", + "readging": "かんちく", + "pos": "名詞", + "pn": -0.32068 + }, + { + "surface": "唐衣", + "readging": "からぎぬ", + "pos": "名詞", + "pn": -0.320683 + }, + { + "surface": "畏き辺り", + "readging": "かしこきあたり", + "pos": "名詞", + "pn": -0.320695 + }, + { + "surface": "引接", + "readging": "いんせつ", + "pos": "名詞", + "pn": -0.320698 + }, + { + "surface": "無文", + "readging": "むもん", + "pos": "名詞", + "pn": -0.320715 + }, + { + "surface": "園", + "readging": "その", + "pos": "名詞", + "pn": -0.320721 + }, + { + "surface": "近", + "readging": "きん", + "pos": "名詞", + "pn": -0.320729 + }, + { + "surface": "フリー", + "readging": "フリーランサー", + "pos": "名詞", + "pn": -0.320753 + }, + { + "surface": "詮議", + "readging": "せんぎ", + "pos": "名詞", + "pn": -0.320759 + }, + { + "surface": "技巧", + "readging": "ぎこう", + "pos": "名詞", + "pn": -0.320766 + }, + { + "surface": "潜り込む", + "readging": "もぐりこむ", + "pos": "動詞", + "pn": -0.320785 + }, + { + "surface": "飛脚", + "readging": "ひきゃく", + "pos": "名詞", + "pn": -0.320806 + }, + { + "surface": "朔日", + "readging": "さくじつ", + "pos": "名詞", + "pn": -0.32081 + }, + { + "surface": "礼遇", + "readging": "れいぐう", + "pos": "名詞", + "pn": -0.320811 + }, + { + "surface": "通信販売", + "readging": "つうしんはんばい", + "pos": "名詞", + "pn": -0.320822 + }, + { + "surface": "乞巧奠", + "readging": "きこうでん", + "pos": "名詞", + "pn": -0.320825 + }, + { + "surface": "手簡", + "readging": "しゅかん", + "pos": "名詞", + "pn": -0.320839 + }, + { + "surface": "薄墨", + "readging": "うすずみ", + "pos": "名詞", + "pn": -0.320874 + }, + { + "surface": "地色", + "readging": "じいろ", + "pos": "名詞", + "pn": -0.320882 + }, + { + "surface": "予見", + "readging": "よけん", + "pos": "名詞", + "pn": -0.320891 + }, + { + "surface": "散残る", + "readging": "ちりのこる", + "pos": "動詞", + "pn": -0.3209 + }, + { + "surface": "常客", + "readging": "じょうきゃく", + "pos": "名詞", + "pn": -0.320903 + }, + { + "surface": "狂い", + "readging": "くるい", + "pos": "名詞", + "pn": -0.320907 + }, + { + "surface": "ぼんやり", + "readging": "ぼんやり", + "pos": "副詞", + "pn": -0.320916 + }, + { + "surface": "ラドン", + "readging": "ラドン", + "pos": "名詞", + "pn": -0.320938 + }, + { + "surface": "木管", + "readging": "もっかん", + "pos": "名詞", + "pn": -0.320979 + }, + { + "surface": "下士", + "readging": "かし", + "pos": "名詞", + "pn": -0.320982 + }, + { + "surface": "ジュラルミン", + "readging": "ジュラルミン", + "pos": "名詞", + "pn": -0.32099 + }, + { + "surface": "調印", + "readging": "ちょういん", + "pos": "名詞", + "pn": -0.320994 + }, + { + "surface": "手癖", + "readging": "てくせ", + "pos": "名詞", + "pn": -0.321008 + }, + { + "surface": "在留", + "readging": "ざいりゅう", + "pos": "名詞", + "pn": -0.321009 + }, + { + "surface": "法務", + "readging": "ほうむ", + "pos": "名詞", + "pn": -0.321014 + }, + { + "surface": "煮炊き", + "readging": "にたき", + "pos": "名詞", + "pn": -0.321015 + }, + { + "surface": "三揃い", + "readging": "みつぞろい", + "pos": "名詞", + "pn": -0.321016 + }, + { + "surface": "ボルテージ", + "readging": "ボルテージ", + "pos": "名詞", + "pn": -0.321054 + }, + { + "surface": "盆景", + "readging": "ぼんけい", + "pos": "名詞", + "pn": -0.321081 + }, + { + "surface": "書法", + "readging": "しょほう", + "pos": "名詞", + "pn": -0.321095 + }, + { + "surface": "持分", + "readging": "もちぶん", + "pos": "名詞", + "pn": -0.321104 + }, + { + "surface": "七日正月", + "readging": "なのかしょうがつ", + "pos": "名詞", + "pn": -0.32111 + }, + { + "surface": "女房役", + "readging": "にょうぼうやく", + "pos": "名詞", + "pn": -0.321113 + }, + { + "surface": "徒手", + "readging": "としゅ", + "pos": "名詞", + "pn": -0.321113 + }, + { + "surface": "蹴躓く", + "readging": "けつまずく", + "pos": "動詞", + "pn": -0.321143 + }, + { + "surface": "釘付け", + "readging": "くぎづけ", + "pos": "名詞", + "pn": -0.321154 + }, + { + "surface": "父祖", + "readging": "ふそ", + "pos": "名詞", + "pn": -0.321191 + }, + { + "surface": "槍投げ", + "readging": "やりなげ", + "pos": "名詞", + "pn": -0.321195 + }, + { + "surface": "白身", + "readging": "しろみ", + "pos": "名詞", + "pn": -0.321203 + }, + { + "surface": "漫遊", + "readging": "まんゆう", + "pos": "名詞", + "pn": -0.321214 + }, + { + "surface": "完了", + "readging": "かんりょう", + "pos": "名詞", + "pn": -0.32126 + }, + { + "surface": "士卒", + "readging": "しそつ", + "pos": "名詞", + "pn": -0.321277 + }, + { + "surface": "言付ける", + "readging": "いいつける", + "pos": "動詞", + "pn": -0.321283 + }, + { + "surface": "叙事", + "readging": "じょじ", + "pos": "名詞", + "pn": -0.321303 + }, + { + "surface": "有意", + "readging": "ゆうい", + "pos": "名詞", + "pn": -0.321304 + }, + { + "surface": "横領", + "readging": "おうりょう", + "pos": "名詞", + "pn": -0.321311 + }, + { + "surface": "陣取る", + "readging": "じんどる", + "pos": "動詞", + "pn": -0.321323 + }, + { + "surface": "臑噛り", + "readging": "すねかじり", + "pos": "名詞", + "pn": -0.321335 + }, + { + "surface": "贔屓", + "readging": "ひいき", + "pos": "名詞", + "pn": -0.321344 + }, + { + "surface": "ゆさゆさ", + "readging": "ゆさゆさ", + "pos": "副詞", + "pn": -0.321345 + }, + { + "surface": "残塁", + "readging": "ざんるい", + "pos": "名詞", + "pn": -0.321345 + }, + { + "surface": "主文", + "readging": "しゅぶん", + "pos": "名詞", + "pn": -0.321358 + }, + { + "surface": "貝合せ", + "readging": "かいあわせ", + "pos": "名詞", + "pn": -0.321397 + }, + { + "surface": "銃撃", + "readging": "じゅうげき", + "pos": "名詞", + "pn": -0.321422 + }, + { + "surface": "チョッキ", + "readging": "チョッキ", + "pos": "名詞", + "pn": -0.321424 + }, + { + "surface": "総括", + "readging": "そうかつ", + "pos": "名詞", + "pn": -0.321433 + }, + { + "surface": "鋳鉄", + "readging": "ちゅうてつ", + "pos": "名詞", + "pn": -0.321435 + }, + { + "surface": "散じる", + "readging": "さんじる", + "pos": "動詞", + "pn": -0.32144 + }, + { + "surface": "大入袋", + "readging": "おおいり", + "pos": "名詞", + "pn": -0.321448 + }, + { + "surface": "無機", + "readging": "むき", + "pos": "名詞", + "pn": -0.321454 + }, + { + "surface": "月次", + "readging": "げつじ", + "pos": "名詞", + "pn": -0.321475 + }, + { + "surface": "コイン", + "readging": "コイン", + "pos": "名詞", + "pn": -0.321492 + }, + { + "surface": "楠", + "readging": "くすのき", + "pos": "名詞", + "pn": -0.321517 + }, + { + "surface": "いさよう", + "readging": "いさよう", + "pos": "動詞", + "pn": -0.321544 + }, + { + "surface": "墓碑銘", + "readging": "ぼひめい", + "pos": "名詞", + "pn": -0.321585 + }, + { + "surface": "時代錯誤", + "readging": "じだいさくご", + "pos": "名詞", + "pn": -0.321606 + }, + { + "surface": "ばた足", + "readging": "ばたあし", + "pos": "名詞", + "pn": -0.321618 + }, + { + "surface": "聞耳", + "readging": "ききみみ", + "pos": "名詞", + "pn": -0.321634 + }, + { + "surface": "生花", + "readging": "いけばな", + "pos": "名詞", + "pn": -0.32164 + }, + { + "surface": "徹夜", + "readging": "てつや", + "pos": "名詞", + "pn": -0.321668 + }, + { + "surface": "披講", + "readging": "ひこう", + "pos": "名詞", + "pn": -0.321691 + }, + { + "surface": "メリー ゴー ラウンド", + "readging": "メリー ゴー ラウンド", + "pos": "名詞", + "pn": -0.321714 + }, + { + "surface": "二股", + "readging": "ふたまた", + "pos": "名詞", + "pn": -0.32172 + }, + { + "surface": "投稿", + "readging": "とうこう", + "pos": "名詞", + "pn": -0.321737 + }, + { + "surface": "人力", + "readging": "じんりょく", + "pos": "名詞", + "pn": -0.321748 + }, + { + "surface": "救難", + "readging": "きゅうなん", + "pos": "名詞", + "pn": -0.321751 + }, + { + "surface": "クランケ", + "readging": "クランケ", + "pos": "名詞", + "pn": -0.321787 + }, + { + "surface": "大日如来", + "readging": "だいにちにょらい", + "pos": "名詞", + "pn": -0.321799 + }, + { + "surface": "土煙", + "readging": "つちけむり", + "pos": "名詞", + "pn": -0.32181 + }, + { + "surface": "融点", + "readging": "ゆうてん", + "pos": "名詞", + "pn": -0.321821 + }, + { + "surface": "可鍛鋳鉄", + "readging": "かたんちゅうてつ", + "pos": "名詞", + "pn": -0.321832 + }, + { + "surface": "自腹", + "readging": "じばら", + "pos": "名詞", + "pn": -0.321838 + }, + { + "surface": "四目", + "readging": "よつめ", + "pos": "名詞", + "pn": -0.321864 + }, + { + "surface": "楽節", + "readging": "がくせつ", + "pos": "名詞", + "pn": -0.32188 + }, + { + "surface": "狂人", + "readging": "きょうじん", + "pos": "名詞", + "pn": -0.321882 + }, + { + "surface": "ムービー", + "readging": "ムービー", + "pos": "名詞", + "pn": -0.321886 + }, + { + "surface": "変電所", + "readging": "へんでんしょ", + "pos": "名詞", + "pn": -0.32192 + }, + { + "surface": "閑職", + "readging": "かんしょく", + "pos": "名詞", + "pn": -0.32193 + }, + { + "surface": "争覇", + "readging": "そうは", + "pos": "名詞", + "pn": -0.321955 + }, + { + "surface": "隠遁", + "readging": "いんとん", + "pos": "名詞", + "pn": -0.321955 + }, + { + "surface": "セラミックス", + "readging": "セラミックス", + "pos": "名詞", + "pn": -0.321975 + }, + { + "surface": "ビフテキ", + "readging": "ビフテキ", + "pos": "名詞", + "pn": -0.321979 + }, + { + "surface": "新米", + "readging": "しんまい", + "pos": "名詞", + "pn": -0.321992 + }, + { + "surface": "スチーム", + "readging": "スチーム", + "pos": "名詞", + "pn": -0.322004 + }, + { + "surface": "大名行列", + "readging": "だいみょうぎょうれつ", + "pos": "名詞", + "pn": -0.322011 + }, + { + "surface": "他殺", + "readging": "たさつ", + "pos": "名詞", + "pn": -0.322014 + }, + { + "surface": "掘抜き", + "readging": "ほりぬき", + "pos": "名詞", + "pn": -0.322056 + }, + { + "surface": "訛", + "readging": "なまり", + "pos": "名詞", + "pn": -0.322084 + }, + { + "surface": "コースター", + "readging": "コースター", + "pos": "名詞", + "pn": -0.322086 + }, + { + "surface": "詠じる", + "readging": "えいじる", + "pos": "動詞", + "pn": -0.322102 + }, + { + "surface": "追付く", + "readging": "おいつく", + "pos": "動詞", + "pn": -0.322122 + }, + { + "surface": "集", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.322128 + }, + { + "surface": "竜眼肉", + "readging": "りゅうがんにく", + "pos": "名詞", + "pn": -0.32213 + }, + { + "surface": "将領", + "readging": "しょうりょう", + "pos": "名詞", + "pn": -0.322132 + }, + { + "surface": "身仕舞", + "readging": "みじまい", + "pos": "名詞", + "pn": -0.322139 + }, + { + "surface": "素手", + "readging": "すで", + "pos": "名詞", + "pn": -0.322147 + }, + { + "surface": "白夜", + "readging": "はくや", + "pos": "名詞", + "pn": -0.322156 + }, + { + "surface": "配管", + "readging": "はいかん", + "pos": "名詞", + "pn": -0.322161 + }, + { + "surface": "延日数", + "readging": "のべにっすう", + "pos": "名詞", + "pn": -0.322164 + }, + { + "surface": "蜜語", + "readging": "みつご", + "pos": "名詞", + "pn": -0.322194 + }, + { + "surface": "神子", + "readging": "みこ", + "pos": "名詞", + "pn": -0.322198 + }, + { + "surface": "供回り", + "readging": "ともまわり", + "pos": "名詞", + "pn": -0.322213 + }, + { + "surface": "商法", + "readging": "しょうほう", + "pos": "名詞", + "pn": -0.322217 + }, + { + "surface": "田螺", + "readging": "たにし", + "pos": "名詞", + "pn": -0.322218 + }, + { + "surface": "補筆", + "readging": "ほひつ", + "pos": "名詞", + "pn": -0.322225 + }, + { + "surface": "木石", + "readging": "ぼくせき", + "pos": "名詞", + "pn": -0.322258 + }, + { + "surface": "瀬戸焼", + "readging": "せとやき", + "pos": "名詞", + "pn": -0.322258 + }, + { + "surface": "知行", + "readging": "ちこう", + "pos": "名詞", + "pn": -0.322264 + }, + { + "surface": "釣船", + "readging": "つりぶね", + "pos": "名詞", + "pn": -0.322273 + }, + { + "surface": "シンクロナイズ", + "readging": "シンクロナイズ", + "pos": "名詞", + "pn": -0.322281 + }, + { + "surface": "半裂", + "readging": "はんざき", + "pos": "名詞", + "pn": -0.322288 + }, + { + "surface": "世渡り", + "readging": "よわたり", + "pos": "名詞", + "pn": -0.322303 + }, + { + "surface": "目の子", + "readging": "めのこ", + "pos": "名詞", + "pn": -0.322317 + }, + { + "surface": "クラフト紙", + "readging": "クラフトし", + "pos": "名詞", + "pn": -0.322351 + }, + { + "surface": "乱射", + "readging": "らんしゃ", + "pos": "名詞", + "pn": -0.322356 + }, + { + "surface": "翁", + "readging": "おう", + "pos": "名詞", + "pn": -0.322396 + }, + { + "surface": "アグレマン", + "readging": "アグレマン", + "pos": "名詞", + "pn": -0.322397 + }, + { + "surface": "発議", + "readging": "はつぎ", + "pos": "名詞", + "pn": -0.322412 + }, + { + "surface": "商品券", + "readging": "しょうひんけん", + "pos": "名詞", + "pn": -0.322433 + }, + { + "surface": "連尺商い", + "readging": "れんじゃくあきない", + "pos": "名詞", + "pn": -0.322442 + }, + { + "surface": "唐萵苣", + "readging": "とうぢさ", + "pos": "名詞", + "pn": -0.322467 + }, + { + "surface": "高地", + "readging": "こうち", + "pos": "名詞", + "pn": -0.322476 + }, + { + "surface": "盛り場", + "readging": "さかりば", + "pos": "名詞", + "pn": -0.322484 + }, + { + "surface": "中立", + "readging": "ちゅうりつ", + "pos": "名詞", + "pn": -0.322485 + }, + { + "surface": "お茶子", + "readging": "おちゃこ", + "pos": "名詞", + "pn": -0.322514 + }, + { + "surface": "法名", + "readging": "ほうみょう", + "pos": "名詞", + "pn": -0.322536 + }, + { + "surface": "好み", + "readging": "このみ", + "pos": "名詞", + "pn": -0.322538 + }, + { + "surface": "守札", + "readging": "まもりふだ", + "pos": "名詞", + "pn": -0.322539 + }, + { + "surface": "嚢中", + "readging": "のうちゅう", + "pos": "名詞", + "pn": -0.322542 + }, + { + "surface": "朝鮮人参", + "readging": "ちょうせんにんじん", + "pos": "名詞", + "pn": -0.322558 + }, + { + "surface": "抱締める", + "readging": "だきしめる", + "pos": "動詞", + "pn": -0.322564 + }, + { + "surface": "切抜", + "readging": "きりぬき", + "pos": "名詞", + "pn": -0.322572 + }, + { + "surface": "陽明学", + "readging": "ようめいがく", + "pos": "名詞", + "pn": -0.322579 + }, + { + "surface": "くすねる", + "readging": "くすねる", + "pos": "動詞", + "pn": -0.322592 + }, + { + "surface": "現職", + "readging": "げんしょく", + "pos": "名詞", + "pn": -0.322598 + }, + { + "surface": "ポリス", + "readging": "ポリス", + "pos": "名詞", + "pn": -0.322625 + }, + { + "surface": "化粧廻し", + "readging": "けしょうまわし", + "pos": "名詞", + "pn": -0.322637 + }, + { + "surface": "コールド クリーム", + "readging": "コールド クリーム", + "pos": "名詞", + "pn": -0.322643 + }, + { + "surface": "生殖器", + "readging": "せいしょくき", + "pos": "名詞", + "pn": -0.322653 + }, + { + "surface": "梵語", + "readging": "ぼんご", + "pos": "名詞", + "pn": -0.322662 + }, + { + "surface": "擲弾筒", + "readging": "てきだんとう", + "pos": "名詞", + "pn": -0.322669 + }, + { + "surface": "補充", + "readging": "ほじゅう", + "pos": "名詞", + "pn": -0.322675 + }, + { + "surface": "了", + "readging": "りょう", + "pos": "名詞", + "pn": -0.322712 + }, + { + "surface": "一寸逃れ", + "readging": "いっすんのがれ", + "pos": "名詞", + "pn": -0.322721 + }, + { + "surface": "戦没", + "readging": "せんぼつ", + "pos": "名詞", + "pn": -0.322727 + }, + { + "surface": "露出", + "readging": "ろしゅつ", + "pos": "名詞", + "pn": -0.322734 + }, + { + "surface": "珊瑚礁", + "readging": "さんごしょう", + "pos": "名詞", + "pn": -0.322744 + }, + { + "surface": "粛清", + "readging": "しゅくせい", + "pos": "名詞", + "pn": -0.32275 + }, + { + "surface": "響", + "readging": "きょう", + "pos": "名詞", + "pn": -0.322782 + }, + { + "surface": "橋桁", + "readging": "はしげた", + "pos": "名詞", + "pn": -0.3228 + }, + { + "surface": "ドル建て", + "readging": "ドルだて", + "pos": "名詞", + "pn": -0.322809 + }, + { + "surface": "指事", + "readging": "しじ", + "pos": "名詞", + "pn": -0.322813 + }, + { + "surface": "政所", + "readging": "まんどころ", + "pos": "名詞", + "pn": -0.322819 + }, + { + "surface": "道普請", + "readging": "みちぶしん", + "pos": "名詞", + "pn": -0.322825 + }, + { + "surface": "局部", + "readging": "きょくぶ", + "pos": "名詞", + "pn": -0.322837 + }, + { + "surface": "御物", + "readging": "ごもつ", + "pos": "名詞", + "pn": -0.322848 + }, + { + "surface": "跋文", + "readging": "ばつぶん", + "pos": "名詞", + "pn": -0.322874 + }, + { + "surface": "長上下", + "readging": "なががみしも", + "pos": "名詞", + "pn": -0.322893 + }, + { + "surface": "結腸", + "readging": "けっちょう", + "pos": "名詞", + "pn": -0.322894 + }, + { + "surface": "玄室", + "readging": "げんしつ", + "pos": "名詞", + "pn": -0.322904 + }, + { + "surface": "仮親", + "readging": "かりおや", + "pos": "名詞", + "pn": -0.32292 + }, + { + "surface": "明王", + "readging": "みょうおう", + "pos": "名詞", + "pn": -0.32292 + }, + { + "surface": "商賈", + "readging": "しょうこ", + "pos": "名詞", + "pn": -0.322946 + }, + { + "surface": "奔騰", + "readging": "ほんとう", + "pos": "名詞", + "pn": -0.322952 + }, + { + "surface": "窮理", + "readging": "きゅうり", + "pos": "名詞", + "pn": -0.322965 + }, + { + "surface": "台尻", + "readging": "だいじり", + "pos": "名詞", + "pn": -0.322985 + }, + { + "surface": "たった", + "readging": "たった", + "pos": "副詞", + "pn": -0.322991 + }, + { + "surface": "豆粕", + "readging": "まめかす", + "pos": "名詞", + "pn": -0.323067 + }, + { + "surface": "触れ回る", + "readging": "ふれまわる", + "pos": "動詞", + "pn": -0.323079 + }, + { + "surface": "焙じ茶", + "readging": "ほうじちゃ", + "pos": "名詞", + "pn": -0.323087 + }, + { + "surface": "何某", + "readging": "なにぼう", + "pos": "名詞", + "pn": -0.323093 + }, + { + "surface": "向う傷", + "readging": "むこうきず", + "pos": "名詞", + "pn": -0.323098 + }, + { + "surface": "三味", + "readging": "しゃみ", + "pos": "名詞", + "pn": -0.323098 + }, + { + "surface": "一葦", + "readging": "いちい", + "pos": "名詞", + "pn": -0.323099 + }, + { + "surface": "弁", + "readging": "べん", + "pos": "名詞", + "pn": -0.323118 + }, + { + "surface": "ディナー", + "readging": "ディナー", + "pos": "名詞", + "pn": -0.323118 + }, + { + "surface": "返咲き", + "readging": "かえりざき", + "pos": "名詞", + "pn": -0.323123 + }, + { + "surface": "芥子菜", + "readging": "からしな", + "pos": "名詞", + "pn": -0.323128 + }, + { + "surface": "藁紙", + "readging": "わらがみ", + "pos": "名詞", + "pn": -0.323136 + }, + { + "surface": "兵器廠", + "readging": "へいきしょう", + "pos": "名詞", + "pn": -0.323151 + }, + { + "surface": "葛粉", + "readging": "くずこ", + "pos": "名詞", + "pn": -0.323174 + }, + { + "surface": "格差", + "readging": "かくさ", + "pos": "名詞", + "pn": -0.32318 + }, + { + "surface": "尾翼", + "readging": "びよく", + "pos": "名詞", + "pn": -0.323238 + }, + { + "surface": "深", + "readging": "しん", + "pos": "名詞", + "pn": -0.323251 + }, + { + "surface": "音響効果", + "readging": "おんきょうこうか", + "pos": "名詞", + "pn": -0.323252 + }, + { + "surface": "増長", + "readging": "ぞうちょう", + "pos": "名詞", + "pn": -0.323268 + }, + { + "surface": "突出し", + "readging": "つきだし", + "pos": "名詞", + "pn": -0.323282 + }, + { + "surface": "アート紙", + "readging": "アートし", + "pos": "名詞", + "pn": -0.323317 + }, + { + "surface": "御苦労", + "readging": "ごくろう", + "pos": "名詞", + "pn": -0.323323 + }, + { + "surface": "地方裁判所", + "readging": "ちほうさいばんしょ", + "pos": "名詞", + "pn": -0.323339 + }, + { + "surface": "カーテン", + "readging": "カーテン", + "pos": "名詞", + "pn": -0.323366 + }, + { + "surface": "手口", + "readging": "てぐち", + "pos": "名詞", + "pn": -0.323391 + }, + { + "surface": "くぐもる", + "readging": "くぐもる", + "pos": "動詞", + "pn": -0.323399 + }, + { + "surface": "釈放", + "readging": "しゃくほう", + "pos": "名詞", + "pn": -0.323404 + }, + { + "surface": "本尊", + "readging": "ほんぞん", + "pos": "名詞", + "pn": -0.323408 + }, + { + "surface": "時好", + "readging": "じこう", + "pos": "名詞", + "pn": -0.323426 + }, + { + "surface": "逆風", + "readging": "ぎゃくふう", + "pos": "名詞", + "pn": -0.323436 + }, + { + "surface": "没する", + "readging": "ぼっする", + "pos": "動詞", + "pn": -0.323451 + }, + { + "surface": "刻一刻", + "readging": "こくいっこく", + "pos": "名詞", + "pn": -0.323459 + }, + { + "surface": "ぶっ違い", + "readging": "ぶっちがい", + "pos": "名詞", + "pn": -0.32346 + }, + { + "surface": "牧草", + "readging": "ぼくそう", + "pos": "名詞", + "pn": -0.323471 + }, + { + "surface": "運針縫い", + "readging": "うんしんぬい", + "pos": "名詞", + "pn": -0.323474 + }, + { + "surface": "皮革", + "readging": "ひかく", + "pos": "名詞", + "pn": -0.323493 + }, + { + "surface": "一枚", + "readging": "いちまい", + "pos": "名詞", + "pn": -0.323508 + }, + { + "surface": "粥腹", + "readging": "かゆばら", + "pos": "名詞", + "pn": -0.323511 + }, + { + "surface": "用金", + "readging": "ようきん", + "pos": "名詞", + "pn": -0.323515 + }, + { + "surface": "女郎", + "readging": "じょろう", + "pos": "名詞", + "pn": -0.323543 + }, + { + "surface": "大局", + "readging": "たいきょく", + "pos": "名詞", + "pn": -0.32356 + }, + { + "surface": "巡錫", + "readging": "じゅんしゃく", + "pos": "名詞", + "pn": -0.323567 + }, + { + "surface": "無線電信", + "readging": "むせんでんしん", + "pos": "名詞", + "pn": -0.323589 + }, + { + "surface": "土星", + "readging": "どせい", + "pos": "名詞", + "pn": -0.32361 + }, + { + "surface": "要件", + "readging": "ようけん", + "pos": "名詞", + "pn": -0.323647 + }, + { + "surface": "任期", + "readging": "にんき", + "pos": "名詞", + "pn": -0.323662 + }, + { + "surface": "味解", + "readging": "みかい", + "pos": "名詞", + "pn": -0.323687 + }, + { + "surface": "減免", + "readging": "げんめん", + "pos": "名詞", + "pn": -0.323719 + }, + { + "surface": "舌頭", + "readging": "ぜっとう", + "pos": "名詞", + "pn": -0.323737 + }, + { + "surface": "先約", + "readging": "せんやく", + "pos": "名詞", + "pn": -0.323739 + }, + { + "surface": "末子", + "readging": "ばっし", + "pos": "名詞", + "pn": -0.323747 + }, + { + "surface": "缶子", + "readging": "かんす", + "pos": "名詞", + "pn": -0.323757 + }, + { + "surface": "文字面", + "readging": "もじづら", + "pos": "名詞", + "pn": -0.323765 + }, + { + "surface": "評", + "readging": "ひょう", + "pos": "名詞", + "pn": -0.32377 + }, + { + "surface": "脱文", + "readging": "だつぶん", + "pos": "名詞", + "pn": -0.323788 + }, + { + "surface": "力ずく", + "readging": "ちからずく", + "pos": "名詞", + "pn": -0.323792 + }, + { + "surface": "秋高", + "readging": "あきだか", + "pos": "名詞", + "pn": -0.323795 + }, + { + "surface": "監理", + "readging": "かんり", + "pos": "名詞", + "pn": -0.323796 + }, + { + "surface": "寄宿", + "readging": "きしゅく", + "pos": "名詞", + "pn": -0.323801 + }, + { + "surface": "単細胞植物", + "readging": "たんさいぼうしょくぶつ", + "pos": "名詞", + "pn": -0.323836 + }, + { + "surface": "高笑い", + "readging": "たかわらい", + "pos": "名詞", + "pn": -0.323856 + }, + { + "surface": "毛織", + "readging": "けおり", + "pos": "名詞", + "pn": -0.323862 + }, + { + "surface": "丘陵", + "readging": "きゅうりょう", + "pos": "名詞", + "pn": -0.323874 + }, + { + "surface": "経済成長", + "readging": "けいざいせいちょう", + "pos": "名詞", + "pn": -0.323939 + }, + { + "surface": "観音開き", + "readging": "かんのんびらき", + "pos": "名詞", + "pn": -0.323945 + }, + { + "surface": "零下", + "readging": "れいか", + "pos": "名詞", + "pn": -0.324021 + }, + { + "surface": "帰趨", + "readging": "きすう", + "pos": "名詞", + "pn": -0.324022 + }, + { + "surface": "熨斗紙", + "readging": "のしがみ", + "pos": "名詞", + "pn": -0.32403 + }, + { + "surface": "処刑", + "readging": "しょけい", + "pos": "名詞", + "pn": -0.324047 + }, + { + "surface": "木蝋", + "readging": "もくろう", + "pos": "名詞", + "pn": -0.324118 + }, + { + "surface": "旗", + "readging": "き", + "pos": "名詞", + "pn": -0.324124 + }, + { + "surface": "オートジャイロ", + "readging": "オートジャイロ", + "pos": "名詞", + "pn": -0.324144 + }, + { + "surface": "戦", + "readging": "いくさ", + "pos": "名詞", + "pn": -0.324148 + }, + { + "surface": "サリチル酸", + "readging": "サリチルさん", + "pos": "名詞", + "pn": -0.324153 + }, + { + "surface": "溶暗", + "readging": "ようあん", + "pos": "名詞", + "pn": -0.324166 + }, + { + "surface": "つんつるてん", + "readging": "つんつるてん", + "pos": "名詞", + "pn": -0.32418 + }, + { + "surface": "段差", + "readging": "だんさ", + "pos": "名詞", + "pn": -0.324243 + }, + { + "surface": "未着", + "readging": "みちゃく", + "pos": "名詞", + "pn": -0.324252 + }, + { + "surface": "切口", + "readging": "きりくち", + "pos": "名詞", + "pn": -0.324255 + }, + { + "surface": "木酢", + "readging": "もくさく", + "pos": "名詞", + "pn": -0.324264 + }, + { + "surface": "散乱", + "readging": "さんらん", + "pos": "名詞", + "pn": -0.324273 + }, + { + "surface": "室鰺", + "readging": "むろあじ", + "pos": "名詞", + "pn": -0.324282 + }, + { + "surface": "山津波", + "readging": "やまつなみ", + "pos": "名詞", + "pn": -0.324294 + }, + { + "surface": "内大臣", + "readging": "ないだいじん", + "pos": "名詞", + "pn": -0.324295 + }, + { + "surface": "略図", + "readging": "りゃくず", + "pos": "名詞", + "pn": -0.324304 + }, + { + "surface": "輪読", + "readging": "りんどく", + "pos": "名詞", + "pn": -0.324304 + }, + { + "surface": "目次", + "readging": "もくじ", + "pos": "名詞", + "pn": -0.324308 + }, + { + "surface": "蓑毛", + "readging": "みのげ", + "pos": "名詞", + "pn": -0.324312 + }, + { + "surface": "聞出す", + "readging": "ききだす", + "pos": "動詞", + "pn": -0.324316 + }, + { + "surface": "アラベスク", + "readging": "アラベスク", + "pos": "名詞", + "pn": -0.324323 + }, + { + "surface": "願", + "readging": "がん", + "pos": "名詞", + "pn": -0.324325 + }, + { + "surface": "弁ずる", + "readging": "べんずる", + "pos": "動詞", + "pn": -0.324346 + }, + { + "surface": "覇道", + "readging": "はどう", + "pos": "名詞", + "pn": -0.32437 + }, + { + "surface": "手風琴", + "readging": "てふうきん", + "pos": "名詞", + "pn": -0.324381 + }, + { + "surface": "榴弾", + "readging": "りゅうだん", + "pos": "名詞", + "pn": -0.324382 + }, + { + "surface": "遡及", + "readging": "そきゅう", + "pos": "名詞", + "pn": -0.324392 + }, + { + "surface": "本論", + "readging": "ほんろん", + "pos": "名詞", + "pn": -0.324401 + }, + { + "surface": "綿繰り", + "readging": "わたくり", + "pos": "名詞", + "pn": -0.324419 + }, + { + "surface": "サンプル", + "readging": "サンプル", + "pos": "名詞", + "pn": -0.324436 + }, + { + "surface": "手向かう", + "readging": "てむかう", + "pos": "動詞", + "pn": -0.324447 + }, + { + "surface": "教訓", + "readging": "きょうくん", + "pos": "名詞", + "pn": -0.324462 + }, + { + "surface": "視座", + "readging": "しざ", + "pos": "名詞", + "pn": -0.324488 + }, + { + "surface": "綱領", + "readging": "こうりょう", + "pos": "名詞", + "pn": -0.324506 + }, + { + "surface": "利率", + "readging": "りりつ", + "pos": "名詞", + "pn": -0.324513 + }, + { + "surface": "放水", + "readging": "ほうすい", + "pos": "名詞", + "pn": -0.324526 + }, + { + "surface": "急騰", + "readging": "きゅうとう", + "pos": "名詞", + "pn": -0.32453 + }, + { + "surface": "添わる", + "readging": "そわる", + "pos": "動詞", + "pn": -0.32454 + }, + { + "surface": "大宰府", + "readging": "だざいふ", + "pos": "名詞", + "pn": -0.324546 + }, + { + "surface": "水の手", + "readging": "みずのて", + "pos": "名詞", + "pn": -0.324556 + }, + { + "surface": "情感", + "readging": "じょうかん", + "pos": "名詞", + "pn": -0.324567 + }, + { + "surface": "規矩", + "readging": "きく", + "pos": "名詞", + "pn": -0.324567 + }, + { + "surface": "幕藩時代", + "readging": "ばくはんじだい", + "pos": "名詞", + "pn": -0.324582 + }, + { + "surface": "オール", + "readging": "オールオア ナッシング", + "pos": "名詞", + "pn": -0.324633 + }, + { + "surface": "佩刀", + "readging": "はかせ", + "pos": "名詞", + "pn": -0.324637 + }, + { + "surface": "無量", + "readging": "むりょう", + "pos": "名詞", + "pn": -0.324655 + }, + { + "surface": "どんと", + "readging": "どんと", + "pos": "副詞", + "pn": -0.32467 + }, + { + "surface": "垢光", + "readging": "あかびかり", + "pos": "名詞", + "pn": -0.324673 + }, + { + "surface": "タンク", + "readging": "タンクローリー", + "pos": "名詞", + "pn": -0.324681 + }, + { + "surface": "炎", + "readging": "ほのお", + "pos": "名詞", + "pn": -0.324684 + }, + { + "surface": "へし合う", + "readging": "へしあう", + "pos": "動詞", + "pn": -0.324691 + }, + { + "surface": "祭壇", + "readging": "さいだん", + "pos": "名詞", + "pn": -0.324696 + }, + { + "surface": "馬槽", + "readging": "うまぶね", + "pos": "名詞", + "pn": -0.324716 + }, + { + "surface": "経過利子", + "readging": "けいかりし", + "pos": "名詞", + "pn": -0.324725 + }, + { + "surface": "公債", + "readging": "こうさい", + "pos": "名詞", + "pn": -0.324749 + }, + { + "surface": "幕内", + "readging": "まくうち", + "pos": "名詞", + "pn": -0.324771 + }, + { + "surface": "予審", + "readging": "よしん", + "pos": "名詞", + "pn": -0.324786 + }, + { + "surface": "丹後", + "readging": "たんご", + "pos": "名詞", + "pn": -0.324791 + }, + { + "surface": "交点", + "readging": "こうてん", + "pos": "名詞", + "pn": -0.324805 + }, + { + "surface": "大陸", + "readging": "たいりく", + "pos": "名詞", + "pn": -0.324808 + }, + { + "surface": "陣没", + "readging": "じんぼつ", + "pos": "名詞", + "pn": -0.324811 + }, + { + "surface": "積上げる", + "readging": "つみあげる", + "pos": "動詞", + "pn": -0.324812 + }, + { + "surface": "昼夜", + "readging": "ちゅうや", + "pos": "名詞", + "pn": -0.324815 + }, + { + "surface": "救世主", + "readging": "きゅうせいしゅ", + "pos": "名詞", + "pn": -0.324822 + }, + { + "surface": "便利屋", + "readging": "べんりや", + "pos": "名詞", + "pn": -0.32483 + }, + { + "surface": "どんじり", + "readging": "どんじり", + "pos": "名詞", + "pn": -0.324836 + }, + { + "surface": "選挙", + "readging": "せんきょ", + "pos": "名詞", + "pn": -0.324843 + }, + { + "surface": "防護", + "readging": "ぼうご", + "pos": "名詞", + "pn": -0.324843 + }, + { + "surface": "収監", + "readging": "しゅうかん", + "pos": "名詞", + "pn": -0.324866 + }, + { + "surface": "生き別れ", + "readging": "いきわかれ", + "pos": "名詞", + "pn": -0.324887 + }, + { + "surface": "ラジエーター", + "readging": "ラジエーター", + "pos": "名詞", + "pn": -0.3249 + }, + { + "surface": "御来迎", + "readging": "ごらいごう", + "pos": "名詞", + "pn": -0.324977 + }, + { + "surface": "鑑査", + "readging": "かんさ", + "pos": "名詞", + "pn": -0.324977 + }, + { + "surface": "蓑", + "readging": "みの", + "pos": "名詞", + "pn": -0.324979 + }, + { + "surface": "私生活", + "readging": "しせいかつ", + "pos": "名詞", + "pn": -0.324982 + }, + { + "surface": "露盤", + "readging": "ろばん", + "pos": "名詞", + "pn": -0.325029 + }, + { + "surface": "首領", + "readging": "しゅりょう", + "pos": "名詞", + "pn": -0.325032 + }, + { + "surface": "試射", + "readging": "ししゃ", + "pos": "名詞", + "pn": -0.32507 + }, + { + "surface": "音感", + "readging": "おんかん", + "pos": "名詞", + "pn": -0.325084 + }, + { + "surface": "振作", + "readging": "しんさく", + "pos": "名詞", + "pn": -0.32509 + }, + { + "surface": "省察", + "readging": "せいさつ", + "pos": "名詞", + "pn": -0.325095 + }, + { + "surface": "ビールス", + "readging": "ビールス", + "pos": "名詞", + "pn": -0.325097 + }, + { + "surface": "宮殿", + "readging": "きゅうでん", + "pos": "名詞", + "pn": -0.325102 + }, + { + "surface": "輸卵管", + "readging": "ゆらんかん", + "pos": "名詞", + "pn": -0.325106 + }, + { + "surface": "寝転ぶ", + "readging": "ねころぶ", + "pos": "動詞", + "pn": -0.32511 + }, + { + "surface": "幾分", + "readging": "いくぶん", + "pos": "副詞", + "pn": -0.325132 + }, + { + "surface": "競市", + "readging": "せりいち", + "pos": "名詞", + "pn": -0.325153 + }, + { + "surface": "黄ばむ", + "readging": "きばむ", + "pos": "動詞", + "pn": -0.325163 + }, + { + "surface": "フェロモン", + "readging": "フェロモン", + "pos": "名詞", + "pn": -0.325179 + }, + { + "surface": "生還", + "readging": "せいかん", + "pos": "名詞", + "pn": -0.325179 + }, + { + "surface": "川立ち", + "readging": "かわだち", + "pos": "名詞", + "pn": -0.325182 + }, + { + "surface": "虫眼鏡", + "readging": "むしめがね", + "pos": "名詞", + "pn": -0.325184 + }, + { + "surface": "反故", + "readging": "ほご", + "pos": "名詞", + "pn": -0.325185 + }, + { + "surface": "去年", + "readging": "きょねん", + "pos": "名詞", + "pn": -0.325198 + }, + { + "surface": "絆", + "readging": "ほだし", + "pos": "名詞", + "pn": -0.3252 + }, + { + "surface": "山山", + "readging": "やまやま", + "pos": "名詞", + "pn": -0.325201 + }, + { + "surface": "不可測", + "readging": "ふかそく", + "pos": "名詞", + "pn": -0.325216 + }, + { + "surface": "ブタン", + "readging": "ブタン", + "pos": "名詞", + "pn": -0.32526 + }, + { + "surface": "一里塚", + "readging": "いちりづか", + "pos": "名詞", + "pn": -0.325263 + }, + { + "surface": "杯盤狼藉", + "readging": "はいばんろうぜき", + "pos": "名詞", + "pn": -0.325271 + }, + { + "surface": "馘首", + "readging": "かくしゅ", + "pos": "名詞", + "pn": -0.325328 + }, + { + "surface": "ジャック", + "readging": "ジャック", + "pos": "名詞", + "pn": -0.325332 + }, + { + "surface": "禅定", + "readging": "ぜんじょう", + "pos": "名詞", + "pn": -0.325335 + }, + { + "surface": "同位", + "readging": "どうい", + "pos": "名詞", + "pn": -0.325345 + }, + { + "surface": "焼印", + "readging": "やきいん", + "pos": "名詞", + "pn": -0.325346 + }, + { + "surface": "小脳", + "readging": "しょうのう", + "pos": "名詞", + "pn": -0.32535 + }, + { + "surface": "前菜", + "readging": "ぜんさい", + "pos": "名詞", + "pn": -0.325375 + }, + { + "surface": "私欲", + "readging": "しよく", + "pos": "名詞", + "pn": -0.325386 + }, + { + "surface": "頭分", + "readging": "かしらぶん", + "pos": "名詞", + "pn": -0.325397 + }, + { + "surface": "訓読", + "readging": "くんどく", + "pos": "名詞", + "pn": -0.325413 + }, + { + "surface": "ジョッキー", + "readging": "ジョッキー", + "pos": "名詞", + "pn": -0.325429 + }, + { + "surface": "ばら炭", + "readging": "ばらずみ", + "pos": "名詞", + "pn": -0.325435 + }, + { + "surface": "問合せる", + "readging": "といあわせる", + "pos": "動詞", + "pn": -0.325458 + }, + { + "surface": "通信衛星", + "readging": "つうしんえいせい", + "pos": "名詞", + "pn": -0.325464 + }, + { + "surface": "水様液", + "readging": "すいようえき", + "pos": "名詞", + "pn": -0.325477 + }, + { + "surface": "尿", + "readging": "にょう", + "pos": "名詞", + "pn": -0.325483 + }, + { + "surface": "老鶯", + "readging": "ろうおう", + "pos": "名詞", + "pn": -0.325516 + }, + { + "surface": "導火", + "readging": "どうか", + "pos": "名詞", + "pn": -0.32552 + }, + { + "surface": "水着", + "readging": "みずぎ", + "pos": "名詞", + "pn": -0.325522 + }, + { + "surface": "逆効果", + "readging": "ぎゃっこうか", + "pos": "名詞", + "pn": -0.325525 + }, + { + "surface": "バッター", + "readging": "バッター", + "pos": "名詞", + "pn": -0.32555 + }, + { + "surface": "巻帙", + "readging": "かんちつ", + "pos": "名詞", + "pn": -0.325566 + }, + { + "surface": "死物", + "readging": "しぶつ", + "pos": "名詞", + "pn": -0.325594 + }, + { + "surface": "インターフェース", + "readging": "インターフェース", + "pos": "名詞", + "pn": -0.325636 + }, + { + "surface": "チューバ", + "readging": "チューバ", + "pos": "名詞", + "pn": -0.32565 + }, + { + "surface": "繙読", + "readging": "はんどく", + "pos": "名詞", + "pn": -0.325655 + }, + { + "surface": "フライング", + "readging": "フライング", + "pos": "名詞", + "pn": -0.325657 + }, + { + "surface": "鬼女", + "readging": "きじょ", + "pos": "名詞", + "pn": -0.325661 + }, + { + "surface": "お鍋", + "readging": "おなべ", + "pos": "名詞", + "pn": -0.325662 + }, + { + "surface": "至嘱", + "readging": "ししょく", + "pos": "名詞", + "pn": -0.325671 + }, + { + "surface": "未決囚", + "readging": "みけつしゅう", + "pos": "名詞", + "pn": -0.325708 + }, + { + "surface": "封じ手", + "readging": "ふうじて", + "pos": "名詞", + "pn": -0.325763 + }, + { + "surface": "節減", + "readging": "せつげん", + "pos": "名詞", + "pn": -0.325813 + }, + { + "surface": "ゴブラン織", + "readging": "ゴブランおり", + "pos": "名詞", + "pn": -0.325829 + }, + { + "surface": "アイス", + "readging": "アイスボックス", + "pos": "名詞", + "pn": -0.325849 + }, + { + "surface": "酒代", + "readging": "さかだい", + "pos": "名詞", + "pn": -0.325881 + }, + { + "surface": "桜狩", + "readging": "さくらがり", + "pos": "名詞", + "pn": -0.325927 + }, + { + "surface": "新人", + "readging": "しんじん", + "pos": "名詞", + "pn": -0.325927 + }, + { + "surface": "比する", + "readging": "ひする", + "pos": "動詞", + "pn": -0.325943 + }, + { + "surface": "匙", + "readging": "しゃじ", + "pos": "名詞", + "pn": -0.325957 + }, + { + "surface": "手続", + "readging": "てつづき", + "pos": "名詞", + "pn": -0.325973 + }, + { + "surface": "乗入れる", + "readging": "のりいれる", + "pos": "動詞", + "pn": -0.325982 + }, + { + "surface": "手洗", + "readging": "てあらい", + "pos": "名詞", + "pn": -0.325994 + }, + { + "surface": "明笛", + "readging": "みんてき", + "pos": "名詞", + "pn": -0.326 + }, + { + "surface": "総裁", + "readging": "そうさい", + "pos": "名詞", + "pn": -0.326005 + }, + { + "surface": "宿営", + "readging": "しゅくえい", + "pos": "名詞", + "pn": -0.32601 + }, + { + "surface": "影印", + "readging": "えいいん", + "pos": "名詞", + "pn": -0.326014 + }, + { + "surface": "抽選", + "readging": "ちゅうせん", + "pos": "名詞", + "pn": -0.326028 + }, + { + "surface": "綱紀", + "readging": "こうき", + "pos": "名詞", + "pn": -0.326083 + }, + { + "surface": "易", + "readging": "えき", + "pos": "名詞", + "pn": -0.326112 + }, + { + "surface": "クロス", + "readging": "クロス", + "pos": "名詞", + "pn": -0.326113 + }, + { + "surface": "三三九度", + "readging": "さんさんくど", + "pos": "名詞", + "pn": -0.326165 + }, + { + "surface": "アイリス", + "readging": "アイリス", + "pos": "名詞", + "pn": -0.326177 + }, + { + "surface": "散在", + "readging": "さんざい", + "pos": "名詞", + "pn": -0.326181 + }, + { + "surface": "夕晴", + "readging": "ゆうばれ", + "pos": "名詞", + "pn": -0.326209 + }, + { + "surface": "内訳", + "readging": "うちわけ", + "pos": "名詞", + "pn": -0.326262 + }, + { + "surface": "家並", + "readging": "いえなみ", + "pos": "名詞", + "pn": -0.326278 + }, + { + "surface": "乳香", + "readging": "にゅうこう", + "pos": "名詞", + "pn": -0.326287 + }, + { + "surface": "見込", + "readging": "みこみ", + "pos": "名詞", + "pn": -0.326289 + }, + { + "surface": "石油乳剤", + "readging": "せきゆにゅうざい", + "pos": "名詞", + "pn": -0.326289 + }, + { + "surface": "導師", + "readging": "どうし", + "pos": "名詞", + "pn": -0.326296 + }, + { + "surface": "潮焼け", + "readging": "しおやけ", + "pos": "名詞", + "pn": -0.326298 + }, + { + "surface": "狆", + "readging": "ちん", + "pos": "名詞", + "pn": -0.326311 + }, + { + "surface": "大学院", + "readging": "だいがくいん", + "pos": "名詞", + "pn": -0.326347 + }, + { + "surface": "配布", + "readging": "はいふ", + "pos": "名詞", + "pn": -0.326351 + }, + { + "surface": "炭水車", + "readging": "たんすいしゃ", + "pos": "名詞", + "pn": -0.326356 + }, + { + "surface": "用足し", + "readging": "ようたし", + "pos": "名詞", + "pn": -0.326356 + }, + { + "surface": "ポーク", + "readging": "ポーク", + "pos": "名詞", + "pn": -0.326359 + }, + { + "surface": "スタジオ", + "readging": "スタジオ", + "pos": "名詞", + "pn": -0.326384 + }, + { + "surface": "焼け木杭", + "readging": "やけぼっくい", + "pos": "名詞", + "pn": -0.326389 + }, + { + "surface": "縁家", + "readging": "えんか", + "pos": "名詞", + "pn": -0.326406 + }, + { + "surface": "新生代", + "readging": "しんせいだい", + "pos": "名詞", + "pn": -0.326409 + }, + { + "surface": "五音", + "readging": "ごいん", + "pos": "名詞", + "pn": -0.32641 + }, + { + "surface": "国務大臣", + "readging": "こくむだいじん", + "pos": "名詞", + "pn": -0.326441 + }, + { + "surface": "絹", + "readging": "きぬ", + "pos": "名詞", + "pn": -0.326447 + }, + { + "surface": "総仕舞", + "readging": "そうじまい", + "pos": "名詞", + "pn": -0.326448 + }, + { + "surface": "目玉商品", + "readging": "めだましょうひん", + "pos": "名詞", + "pn": -0.326468 + }, + { + "surface": "黄玉", + "readging": "おうぎょく", + "pos": "名詞", + "pn": -0.326468 + }, + { + "surface": "雪持", + "readging": "ゆきもち", + "pos": "名詞", + "pn": -0.326471 + }, + { + "surface": "鸚哥", + "readging": "いんこ", + "pos": "名詞", + "pn": -0.326471 + }, + { + "surface": "輻", + "readging": "や", + "pos": "名詞", + "pn": -0.326503 + }, + { + "surface": "火器", + "readging": "かき", + "pos": "名詞", + "pn": -0.326511 + }, + { + "surface": "仕分", + "readging": "しわけ", + "pos": "名詞", + "pn": -0.326514 + }, + { + "surface": "回状", + "readging": "かいじょう", + "pos": "名詞", + "pn": -0.326521 + }, + { + "surface": "丸損", + "readging": "まるぞん", + "pos": "名詞", + "pn": -0.326534 + }, + { + "surface": "思いきや", + "readging": "おもいきや", + "pos": "名詞", + "pn": -0.326541 + }, + { + "surface": "血判", + "readging": "けっぱん", + "pos": "名詞", + "pn": -0.326559 + }, + { + "surface": "リーグ", + "readging": "リーグ", + "pos": "名詞", + "pn": -0.326566 + }, + { + "surface": "空中楼閣", + "readging": "くうちゅうろうかく", + "pos": "名詞", + "pn": -0.326567 + }, + { + "surface": "濡事師", + "readging": "ぬれごとし", + "pos": "名詞", + "pn": -0.326572 + }, + { + "surface": "雪投げ", + "readging": "ゆきなげ", + "pos": "名詞", + "pn": -0.326573 + }, + { + "surface": "識別", + "readging": "しきべつ", + "pos": "名詞", + "pn": -0.326575 + }, + { + "surface": "漉す", + "readging": "こす", + "pos": "動詞", + "pn": -0.326589 + }, + { + "surface": "お声掛り", + "readging": "おこえがかり", + "pos": "名詞", + "pn": -0.326595 + }, + { + "surface": "コンチェルト", + "readging": "コンチェルト", + "pos": "名詞", + "pn": -0.326596 + }, + { + "surface": "インク", + "readging": "インク", + "pos": "名詞", + "pn": -0.32662 + }, + { + "surface": "治山", + "readging": "ちさん", + "pos": "名詞", + "pn": -0.326656 + }, + { + "surface": "原生動物", + "readging": "げんせいどうぶつ", + "pos": "名詞", + "pn": -0.32666 + }, + { + "surface": "掛衿", + "readging": "かけえり", + "pos": "名詞", + "pn": -0.326663 + }, + { + "surface": "血祭", + "readging": "ちまつり", + "pos": "名詞", + "pn": -0.326674 + }, + { + "surface": "計算尺", + "readging": "けいさんじゃく", + "pos": "名詞", + "pn": -0.326697 + }, + { + "surface": "導", + "readging": "どう", + "pos": "名詞", + "pn": -0.326723 + }, + { + "surface": "弓懸", + "readging": "ゆがけ", + "pos": "名詞", + "pn": -0.326734 + }, + { + "surface": "分裂", + "readging": "ぶんれつ", + "pos": "名詞", + "pn": -0.326751 + }, + { + "surface": "ガム テープ", + "readging": "ガム テープ", + "pos": "名詞", + "pn": -0.326811 + }, + { + "surface": "切地", + "readging": "きれじ", + "pos": "名詞", + "pn": -0.326828 + }, + { + "surface": "初歩", + "readging": "しょほ", + "pos": "名詞", + "pn": -0.326845 + }, + { + "surface": "余波", + "readging": "よは", + "pos": "名詞", + "pn": -0.326849 + }, + { + "surface": "細瑕", + "readging": "さいか", + "pos": "名詞", + "pn": -0.326897 + }, + { + "surface": "横這い", + "readging": "よこばい", + "pos": "名詞", + "pn": -0.326914 + }, + { + "surface": "全判", + "readging": "ぜんばん", + "pos": "名詞", + "pn": -0.326929 + }, + { + "surface": "黒衣", + "readging": "くろご", + "pos": "名詞", + "pn": -0.326932 + }, + { + "surface": "お荷物", + "readging": "おにもつ", + "pos": "名詞", + "pn": -0.326941 + }, + { + "surface": "家族合せ", + "readging": "かぞくあわせ", + "pos": "名詞", + "pn": -0.32698 + }, + { + "surface": "しゃっくり", + "readging": "しゃっくり", + "pos": "名詞", + "pn": -0.326986 + }, + { + "surface": "国元", + "readging": "くにもと", + "pos": "名詞", + "pn": -0.326995 + }, + { + "surface": "為替手形", + "readging": "かわせ", + "pos": "名詞", + "pn": -0.326997 + }, + { + "surface": "俗筆", + "readging": "ぞくひつ", + "pos": "名詞", + "pn": -0.327011 + }, + { + "surface": "売色", + "readging": "ばいしょく", + "pos": "名詞", + "pn": -0.327027 + }, + { + "surface": "列伝", + "readging": "れつでん", + "pos": "名詞", + "pn": -0.327043 + }, + { + "surface": "執行官", + "readging": "しっこうかん", + "pos": "名詞", + "pn": -0.327058 + }, + { + "surface": "埋れ木", + "readging": "うもれぎ", + "pos": "名詞", + "pn": -0.327062 + }, + { + "surface": "選挙権", + "readging": "せんきょけん", + "pos": "名詞", + "pn": -0.32707 + }, + { + "surface": "胸壁", + "readging": "きょうへき", + "pos": "名詞", + "pn": -0.327089 + }, + { + "surface": "淫売", + "readging": "いんばい", + "pos": "名詞", + "pn": -0.327105 + }, + { + "surface": "行渡る", + "readging": "ゆきわたる", + "pos": "動詞", + "pn": -0.327112 + }, + { + "surface": "東海", + "readging": "とうかい", + "pos": "名詞", + "pn": -0.327166 + }, + { + "surface": "グラビア", + "readging": "グラビア", + "pos": "名詞", + "pn": -0.327174 + }, + { + "surface": "学童", + "readging": "がくどう", + "pos": "名詞", + "pn": -0.327194 + }, + { + "surface": "門前払", + "readging": "もんぜんばらい", + "pos": "名詞", + "pn": -0.327233 + }, + { + "surface": "トレーナー", + "readging": "トレーナー", + "pos": "名詞", + "pn": -0.327239 + }, + { + "surface": "松の内", + "readging": "まつのうち", + "pos": "名詞", + "pn": -0.327245 + }, + { + "surface": "考試", + "readging": "こうし", + "pos": "名詞", + "pn": -0.327246 + }, + { + "surface": "雑", + "readging": "ぞう", + "pos": "名詞", + "pn": -0.327256 + }, + { + "surface": "不始末", + "readging": "ふしまつ", + "pos": "名詞", + "pn": -0.327257 + }, + { + "surface": "敷板", + "readging": "しきいた", + "pos": "名詞", + "pn": -0.32727 + }, + { + "surface": "ペンチ", + "readging": "ペンチ", + "pos": "名詞", + "pn": -0.327275 + }, + { + "surface": "焼畑", + "readging": "やきばた", + "pos": "名詞", + "pn": -0.3273 + }, + { + "surface": "合成繊維", + "readging": "ごうせいせんい", + "pos": "名詞", + "pn": -0.327303 + }, + { + "surface": "バスケット", + "readging": "バスケットボール", + "pos": "名詞", + "pn": -0.327311 + }, + { + "surface": "瞑る", + "readging": "つむる", + "pos": "動詞", + "pn": -0.327321 + }, + { + "surface": "合名", + "readging": "ごうめい", + "pos": "名詞", + "pn": -0.327323 + }, + { + "surface": "簡勁", + "readging": "かんけい", + "pos": "名詞", + "pn": -0.32733 + }, + { + "surface": "社", + "readging": "しゃ", + "pos": "名詞", + "pn": -0.327341 + }, + { + "surface": "おだ", + "readging": "おだ", + "pos": "名詞", + "pn": -0.327372 + }, + { + "surface": "オール", + "readging": "オール", + "pos": "名詞", + "pn": -0.327395 + }, + { + "surface": "花束", + "readging": "はなたば", + "pos": "名詞", + "pn": -0.327408 + }, + { + "surface": "身売り", + "readging": "みうり", + "pos": "名詞", + "pn": -0.327419 + }, + { + "surface": "空襲", + "readging": "くうしゅう", + "pos": "名詞", + "pn": -0.327435 + }, + { + "surface": "かいくれ", + "readging": "かいくれ", + "pos": "副詞", + "pn": -0.327448 + }, + { + "surface": "冷然", + "readging": "れいぜん", + "pos": "名詞", + "pn": -0.327481 + }, + { + "surface": "水産業", + "readging": "すいさんぎょう", + "pos": "名詞", + "pn": -0.327485 + }, + { + "surface": "乱丁", + "readging": "らんちょう", + "pos": "名詞", + "pn": -0.327492 + }, + { + "surface": "だてら", + "readging": "だてら", + "pos": "名詞", + "pn": -0.327502 + }, + { + "surface": "男色", + "readging": "なんしょく", + "pos": "名詞", + "pn": -0.32752 + }, + { + "surface": "一二", + "readging": "いちに", + "pos": "名詞", + "pn": -0.327538 + }, + { + "surface": "本体", + "readging": "ほんたい", + "pos": "名詞", + "pn": -0.327545 + }, + { + "surface": "出方", + "readging": "でかた", + "pos": "名詞", + "pn": -0.327551 + }, + { + "surface": "未開拓", + "readging": "みかいたく", + "pos": "名詞", + "pn": -0.327565 + }, + { + "surface": "旅役者", + "readging": "たびやくしゃ", + "pos": "名詞", + "pn": -0.327566 + }, + { + "surface": "公判", + "readging": "こうはん", + "pos": "名詞", + "pn": -0.327575 + }, + { + "surface": "花冠", + "readging": "かかん", + "pos": "名詞", + "pn": -0.327585 + }, + { + "surface": "がばがば", + "readging": "がばがば", + "pos": "名詞", + "pn": -0.327589 + }, + { + "surface": "郵袋", + "readging": "ゆうたい", + "pos": "名詞", + "pn": -0.327603 + }, + { + "surface": "引籠る", + "readging": "ひきこもる", + "pos": "動詞", + "pn": -0.327615 + }, + { + "surface": "弾劾", + "readging": "だんがい", + "pos": "名詞", + "pn": -0.327616 + }, + { + "surface": "四辻", + "readging": "よつつじ", + "pos": "名詞", + "pn": -0.32762 + }, + { + "surface": "野獣", + "readging": "やじゅう", + "pos": "名詞", + "pn": -0.327629 + }, + { + "surface": "セックス", + "readging": "セックス", + "pos": "名詞", + "pn": -0.32763 + }, + { + "surface": "齢", + "readging": "れい", + "pos": "名詞", + "pn": -0.327646 + }, + { + "surface": "御前", + "readging": "おまえ", + "pos": "名詞", + "pn": -0.327656 + }, + { + "surface": "鞣皮", + "readging": "なめしがわ", + "pos": "名詞", + "pn": -0.327659 + }, + { + "surface": "里帰り", + "readging": "さとがえり", + "pos": "名詞", + "pn": -0.32767 + }, + { + "surface": "辞書", + "readging": "じしょ", + "pos": "名詞", + "pn": -0.32772 + }, + { + "surface": "鐘楼", + "readging": "しょうろう", + "pos": "名詞", + "pn": -0.327721 + }, + { + "surface": "鍔元", + "readging": "つばもと", + "pos": "名詞", + "pn": -0.327724 + }, + { + "surface": "サーブ", + "readging": "サーブ", + "pos": "名詞", + "pn": -0.32773 + }, + { + "surface": "アセトン", + "readging": "アセトン", + "pos": "名詞", + "pn": -0.327731 + }, + { + "surface": "雀鮨", + "readging": "すずめずし", + "pos": "名詞", + "pn": -0.327757 + }, + { + "surface": "己", + "readging": "おのれ", + "pos": "名詞", + "pn": -0.327757 + }, + { + "surface": "ホーム", + "readging": "ホームグラウンド", + "pos": "名詞", + "pn": -0.327826 + }, + { + "surface": "遷延", + "readging": "せんえん", + "pos": "名詞", + "pn": -0.327852 + }, + { + "surface": "騎銃", + "readging": "きじゅう", + "pos": "名詞", + "pn": -0.327873 + }, + { + "surface": "定期乗車券", + "readging": "ていきじょうしゃけん", + "pos": "名詞", + "pn": -0.32789 + }, + { + "surface": "官記", + "readging": "かんき", + "pos": "名詞", + "pn": -0.327897 + }, + { + "surface": "上張り", + "readging": "うわばり", + "pos": "名詞", + "pn": -0.327937 + }, + { + "surface": "密教", + "readging": "みっきょう", + "pos": "名詞", + "pn": -0.327953 + }, + { + "surface": "オルゴール", + "readging": "オルゴール", + "pos": "名詞", + "pn": -0.327959 + }, + { + "surface": "四諦", + "readging": "したい", + "pos": "名詞", + "pn": -0.32796 + }, + { + "surface": "月給", + "readging": "げっきゅう", + "pos": "名詞", + "pn": -0.327978 + }, + { + "surface": "直観", + "readging": "ちょっかん", + "pos": "名詞", + "pn": -0.32802 + }, + { + "surface": "書斎", + "readging": "しょさい", + "pos": "名詞", + "pn": -0.328024 + }, + { + "surface": "満ちる", + "readging": "みちる", + "pos": "動詞", + "pn": -0.328032 + }, + { + "surface": "石灰乳", + "readging": "せっかいにゅう", + "pos": "名詞", + "pn": -0.328039 + }, + { + "surface": "戒律", + "readging": "かいりつ", + "pos": "名詞", + "pn": -0.328055 + }, + { + "surface": "食い繋ぐ", + "readging": "くいつなぐ", + "pos": "動詞", + "pn": -0.328058 + }, + { + "surface": "上皇", + "readging": "じょうこう", + "pos": "名詞", + "pn": -0.328087 + }, + { + "surface": "兵舎", + "readging": "へいしゃ", + "pos": "名詞", + "pn": -0.328095 + }, + { + "surface": "祖語", + "readging": "そご", + "pos": "名詞", + "pn": -0.328103 + }, + { + "surface": "一次", + "readging": "いちじ", + "pos": "名詞", + "pn": -0.328131 + }, + { + "surface": "三太夫", + "readging": "さんだゆう", + "pos": "名詞", + "pn": -0.328135 + }, + { + "surface": "湯中り", + "readging": "ゆあたり", + "pos": "名詞", + "pn": -0.328136 + }, + { + "surface": "緊急", + "readging": "きんきゅう", + "pos": "名詞", + "pn": -0.328147 + }, + { + "surface": "医局", + "readging": "いきょく", + "pos": "名詞", + "pn": -0.328148 + }, + { + "surface": "灘", + "readging": "なだ", + "pos": "名詞", + "pn": -0.328154 + }, + { + "surface": "輪作", + "readging": "りんさく", + "pos": "名詞", + "pn": -0.328155 + }, + { + "surface": "アスピリン", + "readging": "アスピリン", + "pos": "名詞", + "pn": -0.328172 + }, + { + "surface": "未定", + "readging": "みてい", + "pos": "名詞", + "pn": -0.328175 + }, + { + "surface": "名字", + "readging": "みょうじ", + "pos": "名詞", + "pn": -0.328183 + }, + { + "surface": "考え物", + "readging": "かんがえもの", + "pos": "名詞", + "pn": -0.328183 + }, + { + "surface": "叔父", + "readging": "しゅくふ", + "pos": "名詞", + "pn": -0.328183 + }, + { + "surface": "地合", + "readging": "じあい", + "pos": "名詞", + "pn": -0.328198 + }, + { + "surface": "八百", + "readging": "やお", + "pos": "名詞", + "pn": -0.328202 + }, + { + "surface": "北端", + "readging": "ほくたん", + "pos": "名詞", + "pn": -0.328221 + }, + { + "surface": "穴子", + "readging": "あなご", + "pos": "名詞", + "pn": -0.328226 + }, + { + "surface": "年中", + "readging": "ねんじゅう", + "pos": "副詞", + "pn": -0.328228 + }, + { + "surface": "隊列", + "readging": "たいれつ", + "pos": "名詞", + "pn": -0.328228 + }, + { + "surface": "乗具", + "readging": "じょうぐ", + "pos": "名詞", + "pn": -0.328234 + }, + { + "surface": "舞踏", + "readging": "ぶとう", + "pos": "名詞", + "pn": -0.328256 + }, + { + "surface": "スーベニア", + "readging": "スーベニア", + "pos": "名詞", + "pn": -0.328263 + }, + { + "surface": "九曜", + "readging": "くよう", + "pos": "名詞", + "pn": -0.328263 + }, + { + "surface": "寒流", + "readging": "かんりゅう", + "pos": "名詞", + "pn": -0.328264 + }, + { + "surface": "前句付", + "readging": "まえくづけ", + "pos": "名詞", + "pn": -0.328271 + }, + { + "surface": "検討", + "readging": "けんとう", + "pos": "名詞", + "pn": -0.328283 + }, + { + "surface": "西表山猫", + "readging": "いりおもてやまねこ", + "pos": "名詞", + "pn": -0.328286 + }, + { + "surface": "南京米", + "readging": "なんきんまい", + "pos": "名詞", + "pn": -0.328304 + }, + { + "surface": "図式", + "readging": "ずしき", + "pos": "名詞", + "pn": -0.328313 + }, + { + "surface": "冬日", + "readging": "ふゆび", + "pos": "名詞", + "pn": -0.328314 + }, + { + "surface": "糸繰り", + "readging": "いとくり", + "pos": "名詞", + "pn": -0.328365 + }, + { + "surface": "片流れ", + "readging": "かたながれ", + "pos": "名詞", + "pn": -0.328379 + }, + { + "surface": "車掌", + "readging": "しゃしょう", + "pos": "名詞", + "pn": -0.328386 + }, + { + "surface": "漢土", + "readging": "かんど", + "pos": "名詞", + "pn": -0.328409 + }, + { + "surface": "半径", + "readging": "はんけい", + "pos": "名詞", + "pn": -0.328411 + }, + { + "surface": "史官", + "readging": "しかん", + "pos": "名詞", + "pn": -0.32842 + }, + { + "surface": "再送", + "readging": "さいそう", + "pos": "名詞", + "pn": -0.328421 + }, + { + "surface": "肝油", + "readging": "かんゆ", + "pos": "名詞", + "pn": -0.328426 + }, + { + "surface": "バキューム カー", + "readging": "バキューム カー", + "pos": "名詞", + "pn": -0.328438 + }, + { + "surface": "ペイント", + "readging": "ペイント", + "pos": "名詞", + "pn": -0.328449 + }, + { + "surface": "ロマンチシズム", + "readging": "ロマンチシズム", + "pos": "名詞", + "pn": -0.328451 + }, + { + "surface": "冬季", + "readging": "とうき", + "pos": "名詞", + "pn": -0.328486 + }, + { + "surface": "立食", + "readging": "りっしょく", + "pos": "名詞", + "pn": -0.328488 + }, + { + "surface": "ゴシック式", + "readging": "ゴシックしき", + "pos": "名詞", + "pn": -0.328503 + }, + { + "surface": "咲残る", + "readging": "さきのこる", + "pos": "動詞", + "pn": -0.328508 + }, + { + "surface": "覚書", + "readging": "おぼえがき", + "pos": "名詞", + "pn": -0.328525 + }, + { + "surface": "舞扇", + "readging": "まいおうぎ", + "pos": "名詞", + "pn": -0.328528 + }, + { + "surface": "法灯", + "readging": "ほうとう", + "pos": "名詞", + "pn": -0.328541 + }, + { + "surface": "下縫い", + "readging": "したぬい", + "pos": "名詞", + "pn": -0.328559 + }, + { + "surface": "状袋", + "readging": "じょうぶくろ", + "pos": "名詞", + "pn": -0.328567 + }, + { + "surface": "断り", + "readging": "ことわり", + "pos": "名詞", + "pn": -0.328573 + }, + { + "surface": "ちやほや", + "readging": "ちやほや", + "pos": "副詞", + "pn": -0.328589 + }, + { + "surface": "耽美", + "readging": "たんび", + "pos": "名詞", + "pn": -0.32861 + }, + { + "surface": "発現", + "readging": "はつげん", + "pos": "名詞", + "pn": -0.328622 + }, + { + "surface": "麻苧", + "readging": "あさお", + "pos": "名詞", + "pn": -0.328629 + }, + { + "surface": "先鋒", + "readging": "せんぽう", + "pos": "名詞", + "pn": -0.328631 + }, + { + "surface": "民話", + "readging": "みんわ", + "pos": "名詞", + "pn": -0.328656 + }, + { + "surface": "諸肌", + "readging": "もろはだ", + "pos": "名詞", + "pn": -0.328681 + }, + { + "surface": "キャビネット", + "readging": "キャビネット", + "pos": "名詞", + "pn": -0.328685 + }, + { + "surface": "冴返る", + "readging": "さえかえる", + "pos": "動詞", + "pn": -0.328694 + }, + { + "surface": "相対度数", + "readging": "そうたいどすう", + "pos": "名詞", + "pn": -0.328708 + }, + { + "surface": "すらり", + "readging": "すらり", + "pos": "副詞", + "pn": -0.328734 + }, + { + "surface": "序破急", + "readging": "じょはきゅう", + "pos": "名詞", + "pn": -0.328737 + }, + { + "surface": "皿回し", + "readging": "さらまわし", + "pos": "名詞", + "pn": -0.328741 + }, + { + "surface": "類義語", + "readging": "るいぎご", + "pos": "名詞", + "pn": -0.328766 + }, + { + "surface": "げじげじ", + "readging": "げじげじ", + "pos": "名詞", + "pn": -0.328771 + }, + { + "surface": "深憂", + "readging": "しんゆう", + "pos": "名詞", + "pn": -0.328775 + }, + { + "surface": "土筆", + "readging": "つくし", + "pos": "名詞", + "pn": -0.328779 + }, + { + "surface": "かもしか", + "readging": "かもしか", + "pos": "名詞", + "pn": -0.328817 + }, + { + "surface": "粉", + "readging": "こ", + "pos": "名詞", + "pn": -0.32885 + }, + { + "surface": "模作", + "readging": "もさく", + "pos": "名詞", + "pn": -0.328864 + }, + { + "surface": "内野", + "readging": "ないや", + "pos": "名詞", + "pn": -0.328882 + }, + { + "surface": "将校", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.328896 + }, + { + "surface": "内裏", + "readging": "だいり", + "pos": "名詞", + "pn": -0.328954 + }, + { + "surface": "レガッタ", + "readging": "レガッタ", + "pos": "名詞", + "pn": -0.328956 + }, + { + "surface": "食害", + "readging": "しょくがい", + "pos": "名詞", + "pn": -0.328964 + }, + { + "surface": "発車", + "readging": "はっしゃ", + "pos": "名詞", + "pn": -0.328971 + }, + { + "surface": "升", + "readging": "しょう", + "pos": "名詞", + "pn": -0.329012 + }, + { + "surface": "裏曲", + "readging": "うらがね", + "pos": "名詞", + "pn": -0.329014 + }, + { + "surface": "プロダクション", + "readging": "プロダクション", + "pos": "名詞", + "pn": -0.329015 + }, + { + "surface": "躊躇", + "readging": "ちゅうちょ", + "pos": "名詞", + "pn": -0.329037 + }, + { + "surface": "血漿", + "readging": "けっしょう", + "pos": "名詞", + "pn": -0.329042 + }, + { + "surface": "離れ屋", + "readging": "はなれや", + "pos": "名詞", + "pn": -0.329048 + }, + { + "surface": "漏れ聞く", + "readging": "もれきく", + "pos": "動詞", + "pn": -0.329051 + }, + { + "surface": "近未来", + "readging": "きんみらい", + "pos": "名詞", + "pn": -0.329065 + }, + { + "surface": "ストーリー", + "readging": "ストーリー", + "pos": "名詞", + "pn": -0.329067 + }, + { + "surface": "置ける", + "readging": "おける", + "pos": "動詞", + "pn": -0.329078 + }, + { + "surface": "急降下", + "readging": "きゅうこうか", + "pos": "名詞", + "pn": -0.329081 + }, + { + "surface": "残害", + "readging": "ざんがい", + "pos": "名詞", + "pn": -0.329082 + }, + { + "surface": "露払", + "readging": "つゆはらい", + "pos": "名詞", + "pn": -0.329116 + }, + { + "surface": "チェロ", + "readging": "チェロ", + "pos": "名詞", + "pn": -0.329119 + }, + { + "surface": "列席", + "readging": "れっせき", + "pos": "名詞", + "pn": -0.329155 + }, + { + "surface": "国璽", + "readging": "こくじ", + "pos": "名詞", + "pn": -0.32917 + }, + { + "surface": "譲り", + "readging": "ゆずり", + "pos": "名詞", + "pn": -0.329176 + }, + { + "surface": "憩", + "readging": "けい", + "pos": "名詞", + "pn": -0.329179 + }, + { + "surface": "呼寄せる", + "readging": "よびよせる", + "pos": "動詞", + "pn": -0.329209 + }, + { + "surface": "同僚", + "readging": "どうりょう", + "pos": "名詞", + "pn": -0.329279 + }, + { + "surface": "秘結", + "readging": "ひけつ", + "pos": "名詞", + "pn": -0.329281 + }, + { + "surface": "手札", + "readging": "てふだ", + "pos": "名詞", + "pn": -0.329283 + }, + { + "surface": "念念", + "readging": "ねんねん", + "pos": "名詞", + "pn": -0.329285 + }, + { + "surface": "苗", + "readging": "なえ", + "pos": "名詞", + "pn": -0.329306 + }, + { + "surface": "対質", + "readging": "たいしつ", + "pos": "名詞", + "pn": -0.329306 + }, + { + "surface": "孟春", + "readging": "もうしゅん", + "pos": "名詞", + "pn": -0.329306 + }, + { + "surface": "運航", + "readging": "うんこう", + "pos": "名詞", + "pn": -0.329308 + }, + { + "surface": "系図", + "readging": "けいず", + "pos": "名詞", + "pn": -0.329317 + }, + { + "surface": "芥子粒", + "readging": "けしつぶ", + "pos": "名詞", + "pn": -0.329325 + }, + { + "surface": "植木", + "readging": "うえき", + "pos": "名詞", + "pn": -0.329338 + }, + { + "surface": "女人結界", + "readging": "にょにんけっかい", + "pos": "名詞", + "pn": -0.329355 + }, + { + "surface": "理学", + "readging": "りがく", + "pos": "名詞", + "pn": -0.329373 + }, + { + "surface": "声明", + "readging": "せいめい", + "pos": "名詞", + "pn": -0.329378 + }, + { + "surface": "サバンナ", + "readging": "サバンナ", + "pos": "名詞", + "pn": -0.329384 + }, + { + "surface": "閑文字", + "readging": "かんもじ", + "pos": "名詞", + "pn": -0.329398 + }, + { + "surface": "改易", + "readging": "かいえき", + "pos": "名詞", + "pn": -0.329399 + }, + { + "surface": "花車", + "readging": "かしゃ", + "pos": "名詞", + "pn": -0.329402 + }, + { + "surface": "其の実", + "readging": "そのじつ", + "pos": "名詞", + "pn": -0.329478 + }, + { + "surface": "藩邸", + "readging": "はんてい", + "pos": "名詞", + "pn": -0.329494 + }, + { + "surface": "品書", + "readging": "しながき", + "pos": "名詞", + "pn": -0.329495 + }, + { + "surface": "告発", + "readging": "こくはつ", + "pos": "名詞", + "pn": -0.329497 + }, + { + "surface": "二言目", + "readging": "ふたことめ", + "pos": "名詞", + "pn": -0.329529 + }, + { + "surface": "弾頭", + "readging": "だんとう", + "pos": "名詞", + "pn": -0.329535 + }, + { + "surface": "当年", + "readging": "とうねん", + "pos": "名詞", + "pn": -0.32954 + }, + { + "surface": "プラットホーム", + "readging": "プラットホーム", + "pos": "名詞", + "pn": -0.329558 + }, + { + "surface": "下敷", + "readging": "したじき", + "pos": "名詞", + "pn": -0.329568 + }, + { + "surface": "瓶", + "readging": "かめ", + "pos": "名詞", + "pn": -0.329574 + }, + { + "surface": "刺通す", + "readging": "さしとおす", + "pos": "動詞", + "pn": -0.329594 + }, + { + "surface": "スペル", + "readging": "スペル", + "pos": "名詞", + "pn": -0.329611 + }, + { + "surface": "不案内", + "readging": "ふあんない", + "pos": "名詞", + "pn": -0.329613 + }, + { + "surface": "客室", + "readging": "きゃくしつ", + "pos": "名詞", + "pn": -0.32963 + }, + { + "surface": "毛根", + "readging": "もうこん", + "pos": "名詞", + "pn": -0.329641 + }, + { + "surface": "お忍び", + "readging": "おしのび", + "pos": "名詞", + "pn": -0.329648 + }, + { + "surface": "ラジオ", + "readging": "ラジオ", + "pos": "名詞", + "pn": -0.329649 + }, + { + "surface": "負かる", + "readging": "まかる", + "pos": "動詞", + "pn": -0.329656 + }, + { + "surface": "腰の物", + "readging": "こしのもの", + "pos": "名詞", + "pn": -0.329664 + }, + { + "surface": "パルス", + "readging": "パルス", + "pos": "名詞", + "pn": -0.32968 + }, + { + "surface": "何だか", + "readging": "なんだか", + "pos": "副詞", + "pn": -0.329697 + }, + { + "surface": "夕明り", + "readging": "ゆうあかり", + "pos": "名詞", + "pn": -0.329698 + }, + { + "surface": "ジャズ", + "readging": "ジャズ", + "pos": "名詞", + "pn": -0.329714 + }, + { + "surface": "出", + "readging": "で", + "pos": "名詞", + "pn": -0.329754 + }, + { + "surface": "舎利", + "readging": "しゃり", + "pos": "名詞", + "pn": -0.329776 + }, + { + "surface": "送電", + "readging": "そうでん", + "pos": "名詞", + "pn": -0.329778 + }, + { + "surface": "韻文", + "readging": "いんぶん", + "pos": "名詞", + "pn": -0.329788 + }, + { + "surface": "樟脳", + "readging": "しょうのう", + "pos": "名詞", + "pn": -0.32982 + }, + { + "surface": "掛金", + "readging": "かけきん", + "pos": "名詞", + "pn": -0.329821 + }, + { + "surface": "日報", + "readging": "にっぽう", + "pos": "名詞", + "pn": -0.329825 + }, + { + "surface": "地上げ", + "readging": "じあげ", + "pos": "名詞", + "pn": -0.329836 + }, + { + "surface": "呉", + "readging": "ご", + "pos": "名詞", + "pn": -0.329869 + }, + { + "surface": "新派", + "readging": "しんぱ", + "pos": "名詞", + "pn": -0.329875 + }, + { + "surface": "華族", + "readging": "かぞく", + "pos": "名詞", + "pn": -0.329894 + }, + { + "surface": "万国", + "readging": "ばんこく", + "pos": "名詞", + "pn": -0.329913 + }, + { + "surface": "山毛欅", + "readging": "ぶな", + "pos": "名詞", + "pn": -0.329934 + }, + { + "surface": "時宗", + "readging": "じしゅう", + "pos": "名詞", + "pn": -0.32995 + }, + { + "surface": "射程", + "readging": "しゃてい", + "pos": "名詞", + "pn": -0.329953 + }, + { + "surface": "船長", + "readging": "せんちょう", + "pos": "名詞", + "pn": -0.329967 + }, + { + "surface": "黒柿", + "readging": "くろがき", + "pos": "名詞", + "pn": -0.329969 + }, + { + "surface": "文語体", + "readging": "ぶんごたい", + "pos": "名詞", + "pn": -0.329989 + }, + { + "surface": "子方", + "readging": "こかた", + "pos": "名詞", + "pn": -0.329997 + }, + { + "surface": "春蚕", + "readging": "しゅんさん", + "pos": "名詞", + "pn": -0.330024 + }, + { + "surface": "汽艇", + "readging": "きてい", + "pos": "名詞", + "pn": -0.330041 + }, + { + "surface": "梵論", + "readging": "ぼろ", + "pos": "名詞", + "pn": -0.330051 + }, + { + "surface": "内地", + "readging": "ないち", + "pos": "名詞", + "pn": -0.330056 + }, + { + "surface": "埒外", + "readging": "らちがい", + "pos": "名詞", + "pn": -0.330057 + }, + { + "surface": "脱脂綿", + "readging": "だっしめん", + "pos": "名詞", + "pn": -0.330073 + }, + { + "surface": "一合目", + "readging": "いちごうめ", + "pos": "名詞", + "pn": -0.330095 + }, + { + "surface": "倍数", + "readging": "ばいすう", + "pos": "名詞", + "pn": -0.330109 + }, + { + "surface": "算する", + "readging": "さんする", + "pos": "動詞", + "pn": -0.33011 + }, + { + "surface": "含み声", + "readging": "ふくみごえ", + "pos": "名詞", + "pn": -0.330114 + }, + { + "surface": "レンジャー", + "readging": "レンジャー", + "pos": "名詞", + "pn": -0.330127 + }, + { + "surface": "職権濫用", + "readging": "しょっけんらんよう", + "pos": "名詞", + "pn": -0.330129 + }, + { + "surface": "マゾヒズム", + "readging": "マゾヒズム", + "pos": "名詞", + "pn": -0.330149 + }, + { + "surface": "中学校", + "readging": "ちゅうがっこう", + "pos": "名詞", + "pn": -0.330158 + }, + { + "surface": "借料", + "readging": "しゃくりょう", + "pos": "名詞", + "pn": -0.330167 + }, + { + "surface": "見届ける", + "readging": "みとどける", + "pos": "動詞", + "pn": -0.330176 + }, + { + "surface": "流し板", + "readging": "ながしいた", + "pos": "名詞", + "pn": -0.330286 + }, + { + "surface": "ケア", + "readging": "ケア", + "pos": "名詞", + "pn": -0.330296 + }, + { + "surface": "描き出す", + "readging": "えがきだす", + "pos": "動詞", + "pn": -0.330306 + }, + { + "surface": "ダイ カスト", + "readging": "ダイ カスト", + "pos": "名詞", + "pn": -0.33032 + }, + { + "surface": "御数寄屋坊主", + "readging": "おすきやぼうず", + "pos": "名詞", + "pn": -0.330321 + }, + { + "surface": "湯たんぽ", + "readging": "ゆたんぽ", + "pos": "名詞", + "pn": -0.330322 + }, + { + "surface": "東歌", + "readging": "あずまうた", + "pos": "名詞", + "pn": -0.330331 + }, + { + "surface": "亀", + "readging": "き", + "pos": "名詞", + "pn": -0.330357 + }, + { + "surface": "雷管", + "readging": "らいかん", + "pos": "名詞", + "pn": -0.330387 + }, + { + "surface": "下下", + "readging": "しもじも", + "pos": "名詞", + "pn": -0.330388 + }, + { + "surface": "占星術", + "readging": "せんせいじゅつ", + "pos": "名詞", + "pn": -0.330392 + }, + { + "surface": "勝星", + "readging": "かちぼし", + "pos": "名詞", + "pn": -0.330403 + }, + { + "surface": "手心", + "readging": "てごころ", + "pos": "名詞", + "pn": -0.330416 + }, + { + "surface": "砂嵐", + "readging": "すなあらし", + "pos": "名詞", + "pn": -0.33042 + }, + { + "surface": "しょうさん塩", + "readging": "しょうさんえん", + "pos": "名詞", + "pn": -0.330433 + }, + { + "surface": "銘", + "readging": "めい", + "pos": "名詞", + "pn": -0.330436 + }, + { + "surface": "居ながら", + "readging": "いながら", + "pos": "副詞", + "pn": -0.330452 + }, + { + "surface": "上り坂", + "readging": "のぼりざか", + "pos": "名詞", + "pn": -0.330499 + }, + { + "surface": "胚珠", + "readging": "はいしゅ", + "pos": "名詞", + "pn": -0.330503 + }, + { + "surface": "原意", + "readging": "げんい", + "pos": "名詞", + "pn": -0.330503 + }, + { + "surface": "平仮名", + "readging": "ひらがな", + "pos": "名詞", + "pn": -0.330514 + }, + { + "surface": "霜柱", + "readging": "しもばしら", + "pos": "名詞", + "pn": -0.330515 + }, + { + "surface": "狭長", + "readging": "きょうちょう", + "pos": "名詞", + "pn": -0.330522 + }, + { + "surface": "身の程", + "readging": "みのほど", + "pos": "名詞", + "pn": -0.330539 + }, + { + "surface": "相称", + "readging": "そうしょう", + "pos": "名詞", + "pn": -0.330541 + }, + { + "surface": "本殿", + "readging": "ほんでん", + "pos": "名詞", + "pn": -0.33055 + }, + { + "surface": "歌姫", + "readging": "うたひめ", + "pos": "名詞", + "pn": -0.330564 + }, + { + "surface": "午砲", + "readging": "ごほう", + "pos": "名詞", + "pn": -0.33057 + }, + { + "surface": "情景", + "readging": "じょうけい", + "pos": "名詞", + "pn": -0.330578 + }, + { + "surface": "灌漑", + "readging": "かんがい", + "pos": "名詞", + "pn": -0.330585 + }, + { + "surface": "生薬", + "readging": "きぐすり", + "pos": "名詞", + "pn": -0.330587 + }, + { + "surface": "自由刑", + "readging": "じゆうけい", + "pos": "名詞", + "pn": -0.330601 + }, + { + "surface": "御仁", + "readging": "ごじん", + "pos": "名詞", + "pn": -0.330601 + }, + { + "surface": "胆嚢", + "readging": "たんのう", + "pos": "名詞", + "pn": -0.330675 + }, + { + "surface": "浄火", + "readging": "じょうか", + "pos": "名詞", + "pn": -0.330689 + }, + { + "surface": "聞伝え", + "readging": "ききづたえ", + "pos": "名詞", + "pn": -0.330689 + }, + { + "surface": "マドモアゼル", + "readging": "マドモアゼル", + "pos": "名詞", + "pn": -0.330697 + }, + { + "surface": "半切", + "readging": "はんせつ", + "pos": "名詞", + "pn": -0.330722 + }, + { + "surface": "ベニヤ板", + "readging": "ベニヤいた", + "pos": "名詞", + "pn": -0.330727 + }, + { + "surface": "保護鳥", + "readging": "ほごちょう", + "pos": "名詞", + "pn": -0.330744 + }, + { + "surface": "加療", + "readging": "かりょう", + "pos": "名詞", + "pn": -0.330757 + }, + { + "surface": "枡組", + "readging": "ますぐみ", + "pos": "名詞", + "pn": -0.330813 + }, + { + "surface": "卵黄", + "readging": "らんおう", + "pos": "名詞", + "pn": -0.330851 + }, + { + "surface": "軌条", + "readging": "きじょう", + "pos": "名詞", + "pn": -0.330859 + }, + { + "surface": "合議", + "readging": "ごうぎ", + "pos": "名詞", + "pn": -0.330875 + }, + { + "surface": "肌脱ぎ", + "readging": "はだぬぎ", + "pos": "名詞", + "pn": -0.330878 + }, + { + "surface": "小酌", + "readging": "しょうしゃく", + "pos": "名詞", + "pn": -0.330894 + }, + { + "surface": "季節風", + "readging": "きせつふう", + "pos": "名詞", + "pn": -0.330911 + }, + { + "surface": "査閲", + "readging": "さえつ", + "pos": "名詞", + "pn": -0.330915 + }, + { + "surface": "絶滅", + "readging": "ぜつめつ", + "pos": "名詞", + "pn": -0.330927 + }, + { + "surface": "遠道", + "readging": "とおみち", + "pos": "名詞", + "pn": -0.330942 + }, + { + "surface": "中潜り", + "readging": "なかくぐり", + "pos": "名詞", + "pn": -0.330951 + }, + { + "surface": "握り締める", + "readging": "にぎりしめる", + "pos": "動詞", + "pn": -0.330965 + }, + { + "surface": "唐様", + "readging": "からよう", + "pos": "名詞", + "pn": -0.330982 + }, + { + "surface": "二の次", + "readging": "にのつぎ", + "pos": "名詞", + "pn": -0.330995 + }, + { + "surface": "本隊", + "readging": "ほんたい", + "pos": "名詞", + "pn": -0.330996 + }, + { + "surface": "ピーク", + "readging": "ピーク", + "pos": "名詞", + "pn": -0.331015 + }, + { + "surface": "砲艦", + "readging": "ほうかん", + "pos": "名詞", + "pn": -0.331026 + }, + { + "surface": "黄道", + "readging": "こうどう", + "pos": "名詞", + "pn": -0.331032 + }, + { + "surface": "炭取", + "readging": "すみとり", + "pos": "名詞", + "pn": -0.331041 + }, + { + "surface": "草蜉蝣", + "readging": "くさかげろう", + "pos": "名詞", + "pn": -0.331043 + }, + { + "surface": "嗅当てる", + "readging": "かぎあてる", + "pos": "動詞", + "pn": -0.331059 + }, + { + "surface": "キャンプ", + "readging": "キャンプファイア", + "pos": "名詞", + "pn": -0.331073 + }, + { + "surface": "蛋白質", + "readging": "たんぱくしつ", + "pos": "名詞", + "pn": -0.331084 + }, + { + "surface": "分り", + "readging": "わかり", + "pos": "名詞", + "pn": -0.331107 + }, + { + "surface": "御手洗", + "readging": "みたらし", + "pos": "名詞", + "pn": -0.331121 + }, + { + "surface": "鞭撻", + "readging": "べんたつ", + "pos": "名詞", + "pn": -0.331128 + }, + { + "surface": "身の丈", + "readging": "みのたけ", + "pos": "名詞", + "pn": -0.331138 + }, + { + "surface": "上訴", + "readging": "じょうそ", + "pos": "名詞", + "pn": -0.331163 + }, + { + "surface": "放下僧", + "readging": "ほうかぞう", + "pos": "名詞", + "pn": -0.331178 + }, + { + "surface": "輪唱", + "readging": "りんしょう", + "pos": "名詞", + "pn": -0.331202 + }, + { + "surface": "魔縁", + "readging": "まえん", + "pos": "名詞", + "pn": -0.331202 + }, + { + "surface": "カメレオン", + "readging": "カメレオン", + "pos": "名詞", + "pn": -0.331213 + }, + { + "surface": "鼓", + "readging": "こ", + "pos": "名詞", + "pn": -0.331219 + }, + { + "surface": "有価", + "readging": "ゆうか", + "pos": "名詞", + "pn": -0.33122 + }, + { + "surface": "規約", + "readging": "きやく", + "pos": "名詞", + "pn": -0.331225 + }, + { + "surface": "ストライク", + "readging": "ストライク", + "pos": "名詞", + "pn": -0.33125 + }, + { + "surface": "石塊", + "readging": "いしくれ", + "pos": "名詞", + "pn": -0.331272 + }, + { + "surface": "太政官", + "readging": "だじょうかん", + "pos": "名詞", + "pn": -0.331302 + }, + { + "surface": "罷る", + "readging": "まかる", + "pos": "動詞", + "pn": -0.331344 + }, + { + "surface": "猟師", + "readging": "りょうし", + "pos": "名詞", + "pn": -0.331352 + }, + { + "surface": "把握", + "readging": "はあく", + "pos": "名詞", + "pn": -0.331358 + }, + { + "surface": "比丘", + "readging": "びく", + "pos": "名詞", + "pn": -0.331379 + }, + { + "surface": "措置", + "readging": "そち", + "pos": "名詞", + "pn": -0.331389 + }, + { + "surface": "南", + "readging": "みなみ", + "pos": "名詞", + "pn": -0.331445 + }, + { + "surface": "目下", + "readging": "もっか", + "pos": "名詞", + "pn": -0.331447 + }, + { + "surface": "通し", + "readging": "どおし", + "pos": "名詞", + "pn": -0.331462 + }, + { + "surface": "決して", + "readging": "けっして", + "pos": "副詞", + "pn": -0.331464 + }, + { + "surface": "刑場", + "readging": "けいじょう", + "pos": "名詞", + "pn": -0.331491 + }, + { + "surface": "現今", + "readging": "げんこん", + "pos": "名詞", + "pn": -0.331496 + }, + { + "surface": "鎌倉彫", + "readging": "かまくらぼり", + "pos": "名詞", + "pn": -0.331517 + }, + { + "surface": "盲暦", + "readging": "めくらごよみ", + "pos": "名詞", + "pn": -0.331541 + }, + { + "surface": "見出す", + "readging": "みいだす", + "pos": "動詞", + "pn": -0.331561 + }, + { + "surface": "ストーブ", + "readging": "ストーブ", + "pos": "名詞", + "pn": -0.33157 + }, + { + "surface": "ターボジェット", + "readging": "ターボジェット", + "pos": "名詞", + "pn": -0.331574 + }, + { + "surface": "フォワード", + "readging": "フォワード", + "pos": "名詞", + "pn": -0.331585 + }, + { + "surface": "先様", + "readging": "さきさま", + "pos": "名詞", + "pn": -0.331592 + }, + { + "surface": "世間話", + "readging": "せけんばなし", + "pos": "名詞", + "pn": -0.331605 + }, + { + "surface": "入り小作", + "readging": "いりこさく", + "pos": "名詞", + "pn": -0.331622 + }, + { + "surface": "切捨てる", + "readging": "きりすてる", + "pos": "動詞", + "pn": -0.331624 + }, + { + "surface": "総長", + "readging": "そうちょう", + "pos": "名詞", + "pn": -0.331642 + }, + { + "surface": "自業自得", + "readging": "じごうじとく", + "pos": "名詞", + "pn": -0.331664 + }, + { + "surface": "岡引", + "readging": "おかっぴき", + "pos": "名詞", + "pn": -0.331666 + }, + { + "surface": "おませ", + "readging": "おませ", + "pos": "名詞", + "pn": -0.33169 + }, + { + "surface": "魚群", + "readging": "ぎょぐん", + "pos": "名詞", + "pn": -0.331703 + }, + { + "surface": "秋季", + "readging": "しゅうき", + "pos": "名詞", + "pn": -0.331739 + }, + { + "surface": "馬", + "readging": "ば", + "pos": "名詞", + "pn": -0.331765 + }, + { + "surface": "ノート", + "readging": "ノートブック", + "pos": "名詞", + "pn": -0.331779 + }, + { + "surface": "引火", + "readging": "いんか", + "pos": "名詞", + "pn": -0.331791 + }, + { + "surface": "脊椎", + "readging": "せきつい", + "pos": "名詞", + "pn": -0.331796 + }, + { + "surface": "老体", + "readging": "ろうたい", + "pos": "名詞", + "pn": -0.331816 + }, + { + "surface": "率爾", + "readging": "そつじ", + "pos": "名詞", + "pn": -0.331826 + }, + { + "surface": "金銀", + "readging": "きんぎん", + "pos": "名詞", + "pn": -0.331833 + }, + { + "surface": "中和", + "readging": "ちゅうわ", + "pos": "名詞", + "pn": -0.331836 + }, + { + "surface": "同人", + "readging": "どうにん", + "pos": "名詞", + "pn": -0.331839 + }, + { + "surface": "同人", + "readging": "どうじん", + "pos": "名詞", + "pn": -0.331839 + }, + { + "surface": "旧記", + "readging": "きゅうき", + "pos": "名詞", + "pn": -0.331848 + }, + { + "surface": "床柱", + "readging": "とこばしら", + "pos": "名詞", + "pn": -0.331867 + }, + { + "surface": "読書", + "readging": "どくしょ", + "pos": "名詞", + "pn": -0.33188 + }, + { + "surface": "留置き", + "readging": "とめおき", + "pos": "名詞", + "pn": -0.331882 + }, + { + "surface": "矢文", + "readging": "やぶみ", + "pos": "名詞", + "pn": -0.331883 + }, + { + "surface": "瞑る", + "readging": "つぶる", + "pos": "動詞", + "pn": -0.331889 + }, + { + "surface": "乳製品", + "readging": "にゅうせいひん", + "pos": "名詞", + "pn": -0.3319 + }, + { + "surface": "九年母", + "readging": "くねんぼ", + "pos": "名詞", + "pn": -0.3319 + }, + { + "surface": "縦縞", + "readging": "たてじま", + "pos": "名詞", + "pn": -0.331925 + }, + { + "surface": "ブロード", + "readging": "ブロード", + "pos": "名詞", + "pn": -0.331947 + }, + { + "surface": "土居", + "readging": "どい", + "pos": "名詞", + "pn": -0.331969 + }, + { + "surface": "常打", + "readging": "じょううち", + "pos": "名詞", + "pn": -0.331969 + }, + { + "surface": "太箸", + "readging": "ふとばし", + "pos": "名詞", + "pn": -0.331978 + }, + { + "surface": "瑜伽", + "readging": "ゆが", + "pos": "名詞", + "pn": -0.331985 + }, + { + "surface": "貨車", + "readging": "かしゃ", + "pos": "名詞", + "pn": -0.331988 + }, + { + "surface": "月明り", + "readging": "つきあかり", + "pos": "名詞", + "pn": -0.331993 + }, + { + "surface": "皆既食", + "readging": "かいきしょく", + "pos": "名詞", + "pn": -0.332019 + }, + { + "surface": "附子", + "readging": "ぶし", + "pos": "名詞", + "pn": -0.332033 + }, + { + "surface": "一旗", + "readging": "ひとはた", + "pos": "名詞", + "pn": -0.332044 + }, + { + "surface": "下馬評", + "readging": "げばひょう", + "pos": "名詞", + "pn": -0.33205 + }, + { + "surface": "笹色", + "readging": "ささいろ", + "pos": "名詞", + "pn": -0.332077 + }, + { + "surface": "白真弓", + "readging": "しらまゆみ", + "pos": "名詞", + "pn": -0.332128 + }, + { + "surface": "売品", + "readging": "ばいひん", + "pos": "名詞", + "pn": -0.332141 + }, + { + "surface": "三盆", + "readging": "さんぼん", + "pos": "名詞", + "pn": -0.332156 + }, + { + "surface": "為所", + "readging": "しどころ", + "pos": "名詞", + "pn": -0.332163 + }, + { + "surface": "二の句", + "readging": "にのく", + "pos": "名詞", + "pn": -0.332197 + }, + { + "surface": "打毀し", + "readging": "うちこわし", + "pos": "名詞", + "pn": -0.33222 + }, + { + "surface": "出穂", + "readging": "でほ", + "pos": "名詞", + "pn": -0.332244 + }, + { + "surface": "ホワイト", + "readging": "ホワイトカラー", + "pos": "名詞", + "pn": -0.332253 + }, + { + "surface": "罪人", + "readging": "ざいにん", + "pos": "名詞", + "pn": -0.332264 + }, + { + "surface": "暗示", + "readging": "あんじ", + "pos": "名詞", + "pn": -0.332282 + }, + { + "surface": "アトラクション", + "readging": "アトラクション", + "pos": "名詞", + "pn": -0.332299 + }, + { + "surface": "吹管", + "readging": "すいかん", + "pos": "名詞", + "pn": -0.332301 + }, + { + "surface": "中高", + "readging": "なかだか", + "pos": "名詞", + "pn": -0.332314 + }, + { + "surface": "唐土", + "readging": "もろこし", + "pos": "名詞", + "pn": -0.332315 + }, + { + "surface": "徴募", + "readging": "ちょうぼ", + "pos": "名詞", + "pn": -0.332317 + }, + { + "surface": "裏表", + "readging": "うらおもて", + "pos": "名詞", + "pn": -0.332326 + }, + { + "surface": "蓄音器", + "readging": "ちくおんき", + "pos": "名詞", + "pn": -0.33233 + }, + { + "surface": "手分け", + "readging": "てわけ", + "pos": "名詞", + "pn": -0.332335 + }, + { + "surface": "客月", + "readging": "かくげつ", + "pos": "名詞", + "pn": -0.332377 + }, + { + "surface": "ポリエチレン", + "readging": "ポリエチレン", + "pos": "名詞", + "pn": -0.33239 + }, + { + "surface": "深呼吸", + "readging": "しんこきゅう", + "pos": "名詞", + "pn": -0.332392 + }, + { + "surface": "隕石", + "readging": "いんせき", + "pos": "名詞", + "pn": -0.332398 + }, + { + "surface": "立方", + "readging": "たちかた", + "pos": "名詞", + "pn": -0.332404 + }, + { + "surface": "かっちり", + "readging": "かっちり", + "pos": "副詞", + "pn": -0.332418 + }, + { + "surface": "手一杯", + "readging": "ていっぱい", + "pos": "名詞", + "pn": -0.332419 + }, + { + "surface": "手厳しい", + "readging": "てきびしい", + "pos": "形容詞", + "pn": -0.332446 + }, + { + "surface": "歩み合い", + "readging": "あゆみあい", + "pos": "名詞", + "pn": -0.332455 + }, + { + "surface": "組", + "readging": "くみ", + "pos": "名詞", + "pn": -0.332504 + }, + { + "surface": "丸木", + "readging": "まるき", + "pos": "名詞", + "pn": -0.332533 + }, + { + "surface": "浮図", + "readging": "ふと", + "pos": "名詞", + "pn": -0.332535 + }, + { + "surface": "荷為替", + "readging": "にがわせ", + "pos": "名詞", + "pn": -0.332535 + }, + { + "surface": "埴土", + "readging": "しょくど", + "pos": "名詞", + "pn": -0.332546 + }, + { + "surface": "公金", + "readging": "こうきん", + "pos": "名詞", + "pn": -0.332553 + }, + { + "surface": "溜塗", + "readging": "ためぬり", + "pos": "名詞", + "pn": -0.332587 + }, + { + "surface": "在庫", + "readging": "ざいこ", + "pos": "名詞", + "pn": -0.33259 + }, + { + "surface": "質疑", + "readging": "しつぎ", + "pos": "名詞", + "pn": -0.33261 + }, + { + "surface": "富籤", + "readging": "とみくじ", + "pos": "名詞", + "pn": -0.332631 + }, + { + "surface": "アプローチ", + "readging": "アプローチ", + "pos": "名詞", + "pn": -0.332632 + }, + { + "surface": "猛禽", + "readging": "もうきん", + "pos": "名詞", + "pn": -0.332661 + }, + { + "surface": "早打ち", + "readging": "はやうち", + "pos": "名詞", + "pn": -0.332676 + }, + { + "surface": "仮宮", + "readging": "かりみや", + "pos": "名詞", + "pn": -0.332688 + }, + { + "surface": "乙女", + "readging": "おとめご", + "pos": "名詞", + "pn": -0.332732 + }, + { + "surface": "花嫁御寮", + "readging": "はなよめごりょう", + "pos": "名詞", + "pn": -0.332752 + }, + { + "surface": "白水", + "readging": "しろみず", + "pos": "名詞", + "pn": -0.332763 + }, + { + "surface": "可能性", + "readging": "かのうせい", + "pos": "名詞", + "pn": -0.332779 + }, + { + "surface": "画", + "readging": "が", + "pos": "名詞", + "pn": -0.332802 + }, + { + "surface": "雲脚", + "readging": "くもあし", + "pos": "名詞", + "pn": -0.332811 + }, + { + "surface": "僭称", + "readging": "せんしょう", + "pos": "名詞", + "pn": -0.332832 + }, + { + "surface": "略本暦", + "readging": "りゃくほんれき", + "pos": "名詞", + "pn": -0.332835 + }, + { + "surface": "縋る", + "readging": "すがる", + "pos": "動詞", + "pn": -0.332838 + }, + { + "surface": "弾圧", + "readging": "だんあつ", + "pos": "名詞", + "pn": -0.332852 + }, + { + "surface": "運輸", + "readging": "うんゆ", + "pos": "名詞", + "pn": -0.332888 + }, + { + "surface": "土色", + "readging": "つちいろ", + "pos": "名詞", + "pn": -0.332891 + }, + { + "surface": "宿根草", + "readging": "しゅっこんそう", + "pos": "名詞", + "pn": -0.332897 + }, + { + "surface": "ジャスミン", + "readging": "ジャスミン", + "pos": "名詞", + "pn": -0.332914 + }, + { + "surface": "常習", + "readging": "じょうしゅう", + "pos": "名詞", + "pn": -0.33292 + }, + { + "surface": "不承", + "readging": "ふしょう", + "pos": "名詞", + "pn": -0.332921 + }, + { + "surface": "放言", + "readging": "ほうげん", + "pos": "名詞", + "pn": -0.332925 + }, + { + "surface": "無政府主義", + "readging": "むせいふしゅぎ", + "pos": "名詞", + "pn": -0.332928 + }, + { + "surface": "書店", + "readging": "しょてん", + "pos": "名詞", + "pn": -0.332951 + }, + { + "surface": "半円", + "readging": "はんえん", + "pos": "名詞", + "pn": -0.332959 + }, + { + "surface": "流動物", + "readging": "りゅうどうぶつ", + "pos": "名詞", + "pn": -0.332986 + }, + { + "surface": "紅", + "readging": "べに", + "pos": "名詞", + "pn": -0.333002 + }, + { + "surface": "おどけ", + "readging": "おどけ", + "pos": "名詞", + "pn": -0.333013 + }, + { + "surface": "申越す", + "readging": "もうしこす", + "pos": "動詞", + "pn": -0.333034 + }, + { + "surface": "決勝点", + "readging": "けっしょうてん", + "pos": "名詞", + "pn": -0.333039 + }, + { + "surface": "印", + "readging": "いん", + "pos": "名詞", + "pn": -0.333053 + }, + { + "surface": "棟上げ", + "readging": "むねあげ", + "pos": "名詞", + "pn": -0.333117 + }, + { + "surface": "地袋", + "readging": "じぶくろ", + "pos": "名詞", + "pn": -0.333126 + }, + { + "surface": "宿り木", + "readging": "やどりぎ", + "pos": "名詞", + "pn": -0.333127 + }, + { + "surface": "派する", + "readging": "はする", + "pos": "動詞", + "pn": -0.333138 + }, + { + "surface": "コンテ", + "readging": "コンテ", + "pos": "名詞", + "pn": -0.333162 + }, + { + "surface": "後半", + "readging": "こうはん", + "pos": "名詞", + "pn": -0.333165 + }, + { + "surface": "立番", + "readging": "たちばん", + "pos": "名詞", + "pn": -0.33317 + }, + { + "surface": "菱形", + "readging": "りょうけい", + "pos": "名詞", + "pn": -0.333172 + }, + { + "surface": "車止", + "readging": "くるまどめ", + "pos": "名詞", + "pn": -0.333173 + }, + { + "surface": "転身", + "readging": "てんしん", + "pos": "名詞", + "pn": -0.333224 + }, + { + "surface": "蟹工船", + "readging": "かにこうせん", + "pos": "名詞", + "pn": -0.333271 + }, + { + "surface": "叉焼", + "readging": "チャーシュー", + "pos": "名詞", + "pn": -0.333275 + }, + { + "surface": "ブランケット", + "readging": "ブランケット", + "pos": "名詞", + "pn": -0.333283 + }, + { + "surface": "ホン", + "readging": "ホン", + "pos": "名詞", + "pn": -0.3333 + }, + { + "surface": "大半", + "readging": "たいはん", + "pos": "名詞", + "pn": -0.333318 + }, + { + "surface": "エンゲル係数", + "readging": "エンゲルけいすう", + "pos": "名詞", + "pn": -0.333328 + }, + { + "surface": "使", + "readging": "し", + "pos": "名詞", + "pn": -0.333355 + }, + { + "surface": "事", + "readging": "こと", + "pos": "名詞", + "pn": -0.333362 + }, + { + "surface": "帆前船", + "readging": "ほまえせん", + "pos": "名詞", + "pn": -0.33337 + }, + { + "surface": "コッヘル", + "readging": "コッヘル", + "pos": "名詞", + "pn": -0.333372 + }, + { + "surface": "作文", + "readging": "さくぶん", + "pos": "名詞", + "pn": -0.33338 + }, + { + "surface": "タオル", + "readging": "タオル", + "pos": "名詞", + "pn": -0.33338 + }, + { + "surface": "ハング グライダー", + "readging": "ハング グライダー", + "pos": "名詞", + "pn": -0.333433 + }, + { + "surface": "雑話", + "readging": "ざつわ", + "pos": "名詞", + "pn": -0.333438 + }, + { + "surface": "復権", + "readging": "ふっけん", + "pos": "名詞", + "pn": -0.333443 + }, + { + "surface": "定まる", + "readging": "さだまる", + "pos": "動詞", + "pn": -0.333453 + }, + { + "surface": "円陣", + "readging": "えんじん", + "pos": "名詞", + "pn": -0.333456 + }, + { + "surface": "擦切れる", + "readging": "すりきれる", + "pos": "動詞", + "pn": -0.333466 + }, + { + "surface": "力紙", + "readging": "ちからがみ", + "pos": "名詞", + "pn": -0.333473 + }, + { + "surface": "希くは", + "readging": "こいねがわくは", + "pos": "副詞", + "pn": -0.33349 + }, + { + "surface": "松脂", + "readging": "まつやに", + "pos": "名詞", + "pn": -0.333493 + }, + { + "surface": "廃れ物", + "readging": "すたれもの", + "pos": "名詞", + "pn": -0.333503 + }, + { + "surface": "叙事詩", + "readging": "じょじし", + "pos": "名詞", + "pn": -0.333545 + }, + { + "surface": "舌尖", + "readging": "ぜっせん", + "pos": "名詞", + "pn": -0.333558 + }, + { + "surface": "装甲", + "readging": "そうこう", + "pos": "名詞", + "pn": -0.33356 + }, + { + "surface": "天地", + "readging": "てんち", + "pos": "名詞", + "pn": -0.333576 + }, + { + "surface": "張出し", + "readging": "はりだし", + "pos": "名詞", + "pn": -0.333587 + }, + { + "surface": "舌戦", + "readging": "ぜっせん", + "pos": "名詞", + "pn": -0.333598 + }, + { + "surface": "噛砕く", + "readging": "かみくだく", + "pos": "動詞", + "pn": -0.333607 + }, + { + "surface": "寅", + "readging": "とら", + "pos": "名詞", + "pn": -0.333614 + }, + { + "surface": "野垂死", + "readging": "のたれじに", + "pos": "名詞", + "pn": -0.33362 + }, + { + "surface": "乗用", + "readging": "じょうよう", + "pos": "名詞", + "pn": -0.333656 + }, + { + "surface": "垂線", + "readging": "すいせん", + "pos": "名詞", + "pn": -0.333667 + }, + { + "surface": "生死", + "readging": "せいし", + "pos": "名詞", + "pn": -0.333669 + }, + { + "surface": "霞目", + "readging": "かすみめ", + "pos": "名詞", + "pn": -0.333686 + }, + { + "surface": "牧舎", + "readging": "ぼくしゃ", + "pos": "名詞", + "pn": -0.333687 + }, + { + "surface": "猯", + "readging": "まみ", + "pos": "名詞", + "pn": -0.333688 + }, + { + "surface": "電動", + "readging": "でんどう", + "pos": "名詞", + "pn": -0.33369 + }, + { + "surface": "英トン", + "readging": "えいトン", + "pos": "名詞", + "pn": -0.3337 + }, + { + "surface": "寝起き", + "readging": "ねおき", + "pos": "名詞", + "pn": -0.33371 + }, + { + "surface": "廃嫡", + "readging": "はいちゃく", + "pos": "名詞", + "pn": -0.333711 + }, + { + "surface": "随従", + "readging": "ずいじゅう", + "pos": "名詞", + "pn": -0.333729 + }, + { + "surface": "書院", + "readging": "しょいん", + "pos": "名詞", + "pn": -0.333745 + }, + { + "surface": "四十八手", + "readging": "しじゅうはって", + "pos": "名詞", + "pn": -0.333755 + }, + { + "surface": "手内職", + "readging": "てないしょく", + "pos": "名詞", + "pn": -0.333806 + }, + { + "surface": "本土", + "readging": "ほんど", + "pos": "名詞", + "pn": -0.333815 + }, + { + "surface": "手習い", + "readging": "てならい", + "pos": "名詞", + "pn": -0.333827 + }, + { + "surface": "フリージア", + "readging": "フリージア", + "pos": "名詞", + "pn": -0.333844 + }, + { + "surface": "公算", + "readging": "こうさん", + "pos": "名詞", + "pn": -0.333857 + }, + { + "surface": "暴民", + "readging": "ぼうみん", + "pos": "名詞", + "pn": -0.333861 + }, + { + "surface": "尾頭付", + "readging": "おかしらつき", + "pos": "名詞", + "pn": -0.333865 + }, + { + "surface": "畜産", + "readging": "ちくさん", + "pos": "名詞", + "pn": -0.333869 + }, + { + "surface": "一子相伝", + "readging": "いっしそうでん", + "pos": "名詞", + "pn": -0.333889 + }, + { + "surface": "ひょう疽", + "readging": "ひょうそ", + "pos": "名詞", + "pn": -0.333893 + }, + { + "surface": "蒼然", + "readging": "そうぜん", + "pos": "名詞", + "pn": -0.333899 + }, + { + "surface": "噴出", + "readging": "ふんしゅつ", + "pos": "名詞", + "pn": -0.333928 + }, + { + "surface": "めばる", + "readging": "めばる", + "pos": "動詞", + "pn": -0.333928 + }, + { + "surface": "裘褐", + "readging": "きゅうかつ", + "pos": "名詞", + "pn": -0.333931 + }, + { + "surface": "帯封", + "readging": "おびふう", + "pos": "名詞", + "pn": -0.333938 + }, + { + "surface": "ロイヤル ゼリー", + "readging": "ロイヤル ゼリー", + "pos": "名詞", + "pn": -0.333978 + }, + { + "surface": "既刊", + "readging": "きかん", + "pos": "名詞", + "pn": -0.333994 + }, + { + "surface": "立て続け", + "readging": "たてつづけ", + "pos": "名詞", + "pn": -0.333995 + }, + { + "surface": "脂肪油", + "readging": "しぼうゆ", + "pos": "名詞", + "pn": -0.334 + }, + { + "surface": "逆艪", + "readging": "さかろ", + "pos": "名詞", + "pn": -0.334007 + }, + { + "surface": "碧眼", + "readging": "へきがん", + "pos": "名詞", + "pn": -0.334008 + }, + { + "surface": "近近", + "readging": "きんきん", + "pos": "副詞", + "pn": -0.334019 + }, + { + "surface": "謡", + "readging": "うたい", + "pos": "名詞", + "pn": -0.334034 + }, + { + "surface": "荒れ地", + "readging": "あれち", + "pos": "名詞", + "pn": -0.334056 + }, + { + "surface": "折詰", + "readging": "おりづめ", + "pos": "名詞", + "pn": -0.334057 + }, + { + "surface": "毳", + "readging": "けば", + "pos": "名詞", + "pn": -0.334109 + }, + { + "surface": "海賊", + "readging": "かいぞく", + "pos": "名詞", + "pn": -0.334124 + }, + { + "surface": "どや", + "readging": "どや", + "pos": "名詞", + "pn": -0.33413 + }, + { + "surface": "ミスキャスト", + "readging": "ミスキャスト", + "pos": "名詞", + "pn": -0.334139 + }, + { + "surface": "白蜜", + "readging": "しろみつ", + "pos": "名詞", + "pn": -0.334139 + }, + { + "surface": "濃霧", + "readging": "のうむ", + "pos": "名詞", + "pn": -0.334194 + }, + { + "surface": "討論", + "readging": "とうろん", + "pos": "名詞", + "pn": -0.334269 + }, + { + "surface": "空夢", + "readging": "そらゆめ", + "pos": "名詞", + "pn": -0.334271 + }, + { + "surface": "踊らす", + "readging": "おどらす", + "pos": "動詞", + "pn": -0.334279 + }, + { + "surface": "神霊", + "readging": "しんれい", + "pos": "名詞", + "pn": -0.334302 + }, + { + "surface": "書き方", + "readging": "かきかた", + "pos": "名詞", + "pn": -0.334338 + }, + { + "surface": "救世", + "readging": "くせ", + "pos": "名詞", + "pn": -0.33434 + }, + { + "surface": "ピケ", + "readging": "ピケ", + "pos": "名詞", + "pn": -0.334349 + }, + { + "surface": "葉音", + "readging": "はおと", + "pos": "名詞", + "pn": -0.334356 + }, + { + "surface": "経世", + "readging": "けいせい", + "pos": "名詞", + "pn": -0.33436 + }, + { + "surface": "ソネット", + "readging": "ソネット", + "pos": "名詞", + "pn": -0.33437 + }, + { + "surface": "半面", + "readging": "はんめん", + "pos": "名詞", + "pn": -0.334372 + }, + { + "surface": "終油礼", + "readging": "しゅうゆれい", + "pos": "名詞", + "pn": -0.334377 + }, + { + "surface": "サテライト", + "readging": "サテライト", + "pos": "名詞", + "pn": -0.334378 + }, + { + "surface": "山狩", + "readging": "やまがり", + "pos": "名詞", + "pn": -0.334402 + }, + { + "surface": "大行天皇", + "readging": "たいこうてんのう", + "pos": "名詞", + "pn": -0.334415 + }, + { + "surface": "野戦", + "readging": "やせん", + "pos": "名詞", + "pn": -0.33442 + }, + { + "surface": "野荒し", + "readging": "のあらし", + "pos": "名詞", + "pn": -0.334428 + }, + { + "surface": "前兆", + "readging": "ぜんちょう", + "pos": "名詞", + "pn": -0.33445 + }, + { + "surface": "翡翠", + "readging": "ひすい", + "pos": "名詞", + "pn": -0.334459 + }, + { + "surface": "小鼓", + "readging": "しょうこ", + "pos": "名詞", + "pn": -0.33446 + }, + { + "surface": "権勢", + "readging": "けんせい", + "pos": "名詞", + "pn": -0.334479 + }, + { + "surface": "爆傷", + "readging": "ばくしょう", + "pos": "名詞", + "pn": -0.334487 + }, + { + "surface": "下段", + "readging": "げだん", + "pos": "名詞", + "pn": -0.334489 + }, + { + "surface": "高速度映画", + "readging": "こうそくどえいが", + "pos": "名詞", + "pn": -0.334494 + }, + { + "surface": "田夫", + "readging": "でんぷ", + "pos": "名詞", + "pn": -0.334501 + }, + { + "surface": "警察署", + "readging": "けいさつしょ", + "pos": "名詞", + "pn": -0.334505 + }, + { + "surface": "艙口", + "readging": "そうこう", + "pos": "名詞", + "pn": -0.334523 + }, + { + "surface": "新聞紙", + "readging": "しんぶんし", + "pos": "名詞", + "pn": -0.334539 + }, + { + "surface": "法例", + "readging": "ほうれい", + "pos": "名詞", + "pn": -0.334561 + }, + { + "surface": "局", + "readging": "つぼね", + "pos": "名詞", + "pn": -0.334562 + }, + { + "surface": "司直", + "readging": "しちょく", + "pos": "名詞", + "pn": -0.334579 + }, + { + "surface": "出来", + "readging": "しゅったい", + "pos": "名詞", + "pn": -0.334606 + }, + { + "surface": "師範", + "readging": "しはん", + "pos": "名詞", + "pn": -0.33461 + }, + { + "surface": "本科", + "readging": "ほんか", + "pos": "名詞", + "pn": -0.334634 + }, + { + "surface": "折手本", + "readging": "おりてほん", + "pos": "名詞", + "pn": -0.334647 + }, + { + "surface": "スポット", + "readging": "スポットライト", + "pos": "名詞", + "pn": -0.334648 + }, + { + "surface": "俗体", + "readging": "ぞくたい", + "pos": "名詞", + "pn": -0.334655 + }, + { + "surface": "文金", + "readging": "ぶんきん", + "pos": "名詞", + "pn": -0.33468 + }, + { + "surface": "トランキライザー", + "readging": "トランキライザー", + "pos": "名詞", + "pn": -0.334689 + }, + { + "surface": "婆抜き", + "readging": "ばばぬき", + "pos": "名詞", + "pn": -0.334721 + }, + { + "surface": "位階", + "readging": "いかい", + "pos": "名詞", + "pn": -0.334731 + }, + { + "surface": "バリコン", + "readging": "バリコン", + "pos": "名詞", + "pn": -0.334746 + }, + { + "surface": "デッド ボール", + "readging": "デッド ボール", + "pos": "名詞", + "pn": -0.33476 + }, + { + "surface": "勾欄", + "readging": "こうらん", + "pos": "名詞", + "pn": -0.334776 + }, + { + "surface": "泰山木", + "readging": "たいさんぼく", + "pos": "名詞", + "pn": -0.334799 + }, + { + "surface": "近衛", + "readging": "このえ", + "pos": "名詞", + "pn": -0.3348 + }, + { + "surface": "団平船", + "readging": "だんべいぶね", + "pos": "名詞", + "pn": -0.334807 + }, + { + "surface": "盛者", + "readging": "じょうしゃ", + "pos": "名詞", + "pn": -0.334807 + }, + { + "surface": "偽名", + "readging": "ぎめい", + "pos": "名詞", + "pn": -0.334807 + }, + { + "surface": "地学", + "readging": "ちがく", + "pos": "名詞", + "pn": -0.334813 + }, + { + "surface": "金貨", + "readging": "きんか", + "pos": "名詞", + "pn": -0.334828 + }, + { + "surface": "令書", + "readging": "れいしょ", + "pos": "名詞", + "pn": -0.334854 + }, + { + "surface": "飛跡", + "readging": "ひせき", + "pos": "名詞", + "pn": -0.334858 + }, + { + "surface": "焼付ける", + "readging": "やきつける", + "pos": "動詞", + "pn": -0.334872 + }, + { + "surface": "液体空気", + "readging": "えきたいくうき", + "pos": "名詞", + "pn": -0.334874 + }, + { + "surface": "何とぞ", + "readging": "なにとぞ", + "pos": "副詞", + "pn": -0.334912 + }, + { + "surface": "故山", + "readging": "こざん", + "pos": "名詞", + "pn": -0.334913 + }, + { + "surface": "まぐれ", + "readging": "まぐれ", + "pos": "名詞", + "pn": -0.334921 + }, + { + "surface": "軟禁", + "readging": "なんきん", + "pos": "名詞", + "pn": -0.33493 + }, + { + "surface": "行使", + "readging": "こうし", + "pos": "名詞", + "pn": -0.334941 + }, + { + "surface": "要塞", + "readging": "ようさい", + "pos": "名詞", + "pn": -0.334969 + }, + { + "surface": "マーガレット", + "readging": "マーガレット", + "pos": "名詞", + "pn": -0.334985 + }, + { + "surface": "邪見", + "readging": "じゃけん", + "pos": "名詞", + "pn": -0.335053 + }, + { + "surface": "昆", + "readging": "こん", + "pos": "名詞", + "pn": -0.335062 + }, + { + "surface": "工銭", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.335065 + }, + { + "surface": "頭打", + "readging": "あたまうち", + "pos": "名詞", + "pn": -0.335079 + }, + { + "surface": "騒然", + "readging": "そうぜん", + "pos": "名詞", + "pn": -0.335089 + }, + { + "surface": "発売", + "readging": "はつばい", + "pos": "名詞", + "pn": -0.335092 + }, + { + "surface": "具象", + "readging": "ぐしょう", + "pos": "名詞", + "pn": -0.335092 + }, + { + "surface": "銅像", + "readging": "どうぞう", + "pos": "名詞", + "pn": -0.335098 + }, + { + "surface": "床板", + "readging": "ゆかいた", + "pos": "名詞", + "pn": -0.335105 + }, + { + "surface": "アカシア", + "readging": "アカシア", + "pos": "名詞", + "pn": -0.335111 + }, + { + "surface": "一帯", + "readging": "いったい", + "pos": "名詞", + "pn": -0.33512 + }, + { + "surface": "手形割引", + "readging": "てがたわりびき", + "pos": "名詞", + "pn": -0.335155 + }, + { + "surface": "製表", + "readging": "せいひょう", + "pos": "名詞", + "pn": -0.335158 + }, + { + "surface": "刈入れる", + "readging": "かりいれる", + "pos": "動詞", + "pn": -0.335193 + }, + { + "surface": "アブストラクト", + "readging": "アブストラクト", + "pos": "名詞", + "pn": -0.335217 + }, + { + "surface": "苗圃", + "readging": "びょうほ", + "pos": "名詞", + "pn": -0.335225 + }, + { + "surface": "数珠", + "readging": "ずず", + "pos": "名詞", + "pn": -0.335226 + }, + { + "surface": "辞典", + "readging": "じてん", + "pos": "名詞", + "pn": -0.335247 + }, + { + "surface": "水葬", + "readging": "すいそう", + "pos": "名詞", + "pn": -0.335258 + }, + { + "surface": "猛る", + "readging": "たける", + "pos": "動詞", + "pn": -0.335258 + }, + { + "surface": "通勤", + "readging": "つうきん", + "pos": "名詞", + "pn": -0.335288 + }, + { + "surface": "広まる", + "readging": "ひろまる", + "pos": "動詞", + "pn": -0.335326 + }, + { + "surface": "揚幕", + "readging": "あげまく", + "pos": "名詞", + "pn": -0.335338 + }, + { + "surface": "内蔵", + "readging": "ないぞう", + "pos": "名詞", + "pn": -0.335346 + }, + { + "surface": "じゃらす", + "readging": "じゃらす", + "pos": "動詞", + "pn": -0.335351 + }, + { + "surface": "燐灰土", + "readging": "りんかいど", + "pos": "名詞", + "pn": -0.335384 + }, + { + "surface": "坊ちゃん", + "readging": "ぼっちゃん", + "pos": "名詞", + "pn": -0.335398 + }, + { + "surface": "点心", + "readging": "てんしん", + "pos": "名詞", + "pn": -0.335413 + }, + { + "surface": "初段", + "readging": "しょだん", + "pos": "名詞", + "pn": -0.33544 + }, + { + "surface": "銘ずる", + "readging": "めいずる", + "pos": "動詞", + "pn": -0.335449 + }, + { + "surface": "広口", + "readging": "ひろくち", + "pos": "名詞", + "pn": -0.335491 + }, + { + "surface": "悲愴", + "readging": "ひそう", + "pos": "名詞", + "pn": -0.335496 + }, + { + "surface": "小篆", + "readging": "しょうてん", + "pos": "名詞", + "pn": -0.335502 + }, + { + "surface": "缶", + "readging": "かん", + "pos": "名詞", + "pn": -0.335531 + }, + { + "surface": "フラストレーション", + "readging": "フラストレーション", + "pos": "名詞", + "pn": -0.335532 + }, + { + "surface": "生活苦", + "readging": "せいかつく", + "pos": "名詞", + "pn": -0.335536 + }, + { + "surface": "働き蟻", + "readging": "はたらきあり", + "pos": "名詞", + "pn": -0.335559 + }, + { + "surface": "月色", + "readging": "げっしょく", + "pos": "名詞", + "pn": -0.335568 + }, + { + "surface": "紋白蝶", + "readging": "もんしろちょう", + "pos": "名詞", + "pn": -0.335613 + }, + { + "surface": "縮らす", + "readging": "ちぢらす", + "pos": "動詞", + "pn": -0.335614 + }, + { + "surface": "宋音", + "readging": "そうおん", + "pos": "名詞", + "pn": -0.335634 + }, + { + "surface": "蝋色", + "readging": "ろいろ", + "pos": "名詞", + "pn": -0.335669 + }, + { + "surface": "戒杖", + "readging": "かいじょう", + "pos": "名詞", + "pn": -0.335675 + }, + { + "surface": "対校", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.335684 + }, + { + "surface": "コマーシャル", + "readging": "コマーシャル", + "pos": "名詞", + "pn": -0.335684 + }, + { + "surface": "スクリプト", + "readging": "スクリプト", + "pos": "名詞", + "pn": -0.335685 + }, + { + "surface": "太政官", + "readging": "だいじょうかん", + "pos": "名詞", + "pn": -0.335717 + }, + { + "surface": "二硫化炭素", + "readging": "にりゅうかたんそ", + "pos": "名詞", + "pn": -0.33574 + }, + { + "surface": "胡麻和え", + "readging": "ごまあえ", + "pos": "名詞", + "pn": -0.335753 + }, + { + "surface": "品質管理", + "readging": "ひんしつかんり", + "pos": "名詞", + "pn": -0.335762 + }, + { + "surface": "可逆", + "readging": "かぎゃく", + "pos": "名詞", + "pn": -0.335772 + }, + { + "surface": "推理小説", + "readging": "すいりしょうせつ", + "pos": "名詞", + "pn": -0.335784 + }, + { + "surface": "余す", + "readging": "あます", + "pos": "動詞", + "pn": -0.335794 + }, + { + "surface": "万歳", + "readging": "まんざい", + "pos": "名詞", + "pn": -0.335806 + }, + { + "surface": "文目", + "readging": "あやめ", + "pos": "名詞", + "pn": -0.335827 + }, + { + "surface": "タングステン", + "readging": "タングステン", + "pos": "名詞", + "pn": -0.335829 + }, + { + "surface": "中流", + "readging": "ちゅうりゅう", + "pos": "名詞", + "pn": -0.335838 + }, + { + "surface": "振鈴", + "readging": "しんれい", + "pos": "名詞", + "pn": -0.335838 + }, + { + "surface": "心材", + "readging": "しんざい", + "pos": "名詞", + "pn": -0.335843 + }, + { + "surface": "俗画", + "readging": "ぞくが", + "pos": "名詞", + "pn": -0.335846 + }, + { + "surface": "恐らく", + "readging": "おそらく", + "pos": "副詞", + "pn": -0.335858 + }, + { + "surface": "切詰める", + "readging": "きりつめる", + "pos": "動詞", + "pn": -0.335889 + }, + { + "surface": "地平", + "readging": "ちへい", + "pos": "名詞", + "pn": -0.3359 + }, + { + "surface": "ぺいぺい", + "readging": "ぺいぺい", + "pos": "名詞", + "pn": -0.335934 + }, + { + "surface": "汗", + "readging": "あせ", + "pos": "名詞", + "pn": -0.335947 + }, + { + "surface": "学僕", + "readging": "がくぼく", + "pos": "名詞", + "pn": -0.335974 + }, + { + "surface": "極み", + "readging": "きわみ", + "pos": "名詞", + "pn": -0.335987 + }, + { + "surface": "代品", + "readging": "だいひん", + "pos": "名詞", + "pn": -0.33599 + }, + { + "surface": "探り当てる", + "readging": "さぐりあてる", + "pos": "動詞", + "pn": -0.336011 + }, + { + "surface": "追追", + "readging": "おいおい", + "pos": "副詞", + "pn": -0.336028 + }, + { + "surface": "人情本", + "readging": "にんじょうぼん", + "pos": "名詞", + "pn": -0.336054 + }, + { + "surface": "だらり", + "readging": "だらり", + "pos": "副詞", + "pn": -0.33606 + }, + { + "surface": "シーソー", + "readging": "シーソー", + "pos": "名詞", + "pn": -0.336078 + }, + { + "surface": "留守", + "readging": "るす", + "pos": "名詞", + "pn": -0.336135 + }, + { + "surface": "停留所", + "readging": "ていりゅうじょ", + "pos": "名詞", + "pn": -0.336143 + }, + { + "surface": "定置網", + "readging": "ていちあみ", + "pos": "名詞", + "pn": -0.33615 + }, + { + "surface": "半額", + "readging": "はんがく", + "pos": "名詞", + "pn": -0.336185 + }, + { + "surface": "教主", + "readging": "きょうしゅ", + "pos": "名詞", + "pn": -0.336192 + }, + { + "surface": "二兎", + "readging": "にと", + "pos": "名詞", + "pn": -0.336193 + }, + { + "surface": "柳腰", + "readging": "りゅうよう", + "pos": "名詞", + "pn": -0.336203 + }, + { + "surface": "潮曇", + "readging": "しおぐもり", + "pos": "名詞", + "pn": -0.336226 + }, + { + "surface": "浮かす", + "readging": "うかす", + "pos": "動詞", + "pn": -0.33623 + }, + { + "surface": "言立てる", + "readging": "いいたてる", + "pos": "動詞", + "pn": -0.336233 + }, + { + "surface": "茴香", + "readging": "ういきょう", + "pos": "名詞", + "pn": -0.336244 + }, + { + "surface": "どよめく", + "readging": "どよめく", + "pos": "動詞", + "pn": -0.336257 + }, + { + "surface": "本島", + "readging": "ほんとう", + "pos": "名詞", + "pn": -0.336263 + }, + { + "surface": "アミノ酸", + "readging": "アミノさん", + "pos": "名詞", + "pn": -0.336284 + }, + { + "surface": "人頼み", + "readging": "ひとだのみ", + "pos": "名詞", + "pn": -0.336299 + }, + { + "surface": "閨門", + "readging": "けいもん", + "pos": "名詞", + "pn": -0.33632 + }, + { + "surface": "染替え", + "readging": "そめかえ", + "pos": "名詞", + "pn": -0.336333 + }, + { + "surface": "覚え", + "readging": "おぼえ", + "pos": "名詞", + "pn": -0.336346 + }, + { + "surface": "思い差し", + "readging": "おもいざし", + "pos": "名詞", + "pn": -0.336356 + }, + { + "surface": "病棟", + "readging": "びょうとう", + "pos": "名詞", + "pn": -0.336371 + }, + { + "surface": "弔合戦", + "readging": "とむらいがっせん", + "pos": "名詞", + "pn": -0.336386 + }, + { + "surface": "噴射", + "readging": "ふんしゃ", + "pos": "名詞", + "pn": -0.33639 + }, + { + "surface": "野禽", + "readging": "やきん", + "pos": "名詞", + "pn": -0.336409 + }, + { + "surface": "感応", + "readging": "かんのう", + "pos": "名詞", + "pn": -0.336409 + }, + { + "surface": "傍線", + "readging": "ぼうせん", + "pos": "名詞", + "pn": -0.336412 + }, + { + "surface": "砲兵", + "readging": "ほうへい", + "pos": "名詞", + "pn": -0.336427 + }, + { + "surface": "公転", + "readging": "こうてん", + "pos": "名詞", + "pn": -0.336434 + }, + { + "surface": "黒地", + "readging": "くろじ", + "pos": "名詞", + "pn": -0.33644 + }, + { + "surface": "断罪", + "readging": "だんざい", + "pos": "名詞", + "pn": -0.336451 + }, + { + "surface": "典座", + "readging": "てんぞ", + "pos": "名詞", + "pn": -0.336457 + }, + { + "surface": "プリムラ", + "readging": "プリムラ", + "pos": "名詞", + "pn": -0.33647 + }, + { + "surface": "内情", + "readging": "ないじょう", + "pos": "名詞", + "pn": -0.336613 + }, + { + "surface": "紅髯", + "readging": "こうぜん", + "pos": "名詞", + "pn": -0.336621 + }, + { + "surface": "前月", + "readging": "ぜんげつ", + "pos": "名詞", + "pn": -0.336654 + }, + { + "surface": "宿借り", + "readging": "やどかり", + "pos": "名詞", + "pn": -0.336654 + }, + { + "surface": "ぴたりと", + "readging": "ぴたりと", + "pos": "副詞", + "pn": -0.336674 + }, + { + "surface": "都塵", + "readging": "とじん", + "pos": "名詞", + "pn": -0.336723 + }, + { + "surface": "フィナーレ", + "readging": "フィナーレ", + "pos": "名詞", + "pn": -0.336738 + }, + { + "surface": "真章魚", + "readging": "まだこ", + "pos": "名詞", + "pn": -0.336739 + }, + { + "surface": "参謀", + "readging": "さんぼう", + "pos": "名詞", + "pn": -0.336744 + }, + { + "surface": "返り初日", + "readging": "かえりしょにち", + "pos": "名詞", + "pn": -0.336749 + }, + { + "surface": "胡粉", + "readging": "ごふん", + "pos": "名詞", + "pn": -0.336756 + }, + { + "surface": "すっと", + "readging": "すっと", + "pos": "副詞", + "pn": -0.336759 + }, + { + "surface": "都都逸", + "readging": "どどいつ", + "pos": "名詞", + "pn": -0.336779 + }, + { + "surface": "石摺", + "readging": "いしずり", + "pos": "名詞", + "pn": -0.336789 + }, + { + "surface": "遺言", + "readging": "ゆいごん", + "pos": "名詞", + "pn": -0.336817 + }, + { + "surface": "被服", + "readging": "ひふく", + "pos": "名詞", + "pn": -0.336842 + }, + { + "surface": "蕪", + "readging": "かぶ", + "pos": "名詞", + "pn": -0.336854 + }, + { + "surface": "金団", + "readging": "きんとん", + "pos": "名詞", + "pn": -0.336861 + }, + { + "surface": "差越える", + "readging": "さしこえる", + "pos": "動詞", + "pn": -0.336872 + }, + { + "surface": "債権", + "readging": "さいけん", + "pos": "名詞", + "pn": -0.336875 + }, + { + "surface": "夏安居", + "readging": "げあんご", + "pos": "名詞", + "pn": -0.336884 + }, + { + "surface": "佩刀", + "readging": "はいとう", + "pos": "名詞", + "pn": -0.336902 + }, + { + "surface": "磁鉄鉱", + "readging": "じてっこう", + "pos": "名詞", + "pn": -0.336913 + }, + { + "surface": "同房", + "readging": "どうぼう", + "pos": "名詞", + "pn": -0.336916 + }, + { + "surface": "椀飯振舞", + "readging": "おうばんぶるまい", + "pos": "名詞", + "pn": -0.336917 + }, + { + "surface": "原価", + "readging": "げんか", + "pos": "名詞", + "pn": -0.336918 + }, + { + "surface": "アンゴラ山羊", + "readging": "アンゴラやぎ", + "pos": "名詞", + "pn": -0.336937 + }, + { + "surface": "重工業", + "readging": "じゅうこうぎょう", + "pos": "名詞", + "pn": -0.33697 + }, + { + "surface": "後記", + "readging": "こうき", + "pos": "名詞", + "pn": -0.336973 + }, + { + "surface": "見顕す", + "readging": "みあらわす", + "pos": "動詞", + "pn": -0.33699 + }, + { + "surface": "教室", + "readging": "きょうしつ", + "pos": "名詞", + "pn": -0.336999 + }, + { + "surface": "上告", + "readging": "じょうこく", + "pos": "名詞", + "pn": -0.337017 + }, + { + "surface": "世代交代", + "readging": "せだいこうたい", + "pos": "名詞", + "pn": -0.337018 + }, + { + "surface": "せきたん酸", + "readging": "せきたんさん", + "pos": "名詞", + "pn": -0.337019 + }, + { + "surface": "図柄", + "readging": "ずがら", + "pos": "名詞", + "pn": -0.337025 + }, + { + "surface": "人為", + "readging": "じんい", + "pos": "名詞", + "pn": -0.337035 + }, + { + "surface": "水産", + "readging": "すいさん", + "pos": "名詞", + "pn": -0.337049 + }, + { + "surface": "ブーツ", + "readging": "ブーツ", + "pos": "名詞", + "pn": -0.337066 + }, + { + "surface": "未墾", + "readging": "みこん", + "pos": "名詞", + "pn": -0.337078 + }, + { + "surface": "言渡す", + "readging": "いいわたす", + "pos": "動詞", + "pn": -0.337087 + }, + { + "surface": "木口", + "readging": "こぐち", + "pos": "名詞", + "pn": -0.337093 + }, + { + "surface": "解熱", + "readging": "げねつ", + "pos": "名詞", + "pn": -0.337097 + }, + { + "surface": "吹流し", + "readging": "ふきながし", + "pos": "名詞", + "pn": -0.337102 + }, + { + "surface": "ワット", + "readging": "ワット", + "pos": "名詞", + "pn": -0.337106 + }, + { + "surface": "遭難", + "readging": "そうなん", + "pos": "名詞", + "pn": -0.337111 + }, + { + "surface": "潜行", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.337136 + }, + { + "surface": "やわい", + "readging": "やわい", + "pos": "形容詞", + "pn": -0.337149 + }, + { + "surface": "饂飩粉", + "readging": "うどんこ", + "pos": "名詞", + "pn": -0.337157 + }, + { + "surface": "蔵元", + "readging": "くらもと", + "pos": "名詞", + "pn": -0.337199 + }, + { + "surface": "集積", + "readging": "しゅうせき", + "pos": "名詞", + "pn": -0.337201 + }, + { + "surface": "ミルク", + "readging": "ミルクホール", + "pos": "名詞", + "pn": -0.337244 + }, + { + "surface": "西明り", + "readging": "にしあかり", + "pos": "名詞", + "pn": -0.337251 + }, + { + "surface": "内心", + "readging": "ないしん", + "pos": "名詞", + "pn": -0.337266 + }, + { + "surface": "ソフト帽", + "readging": "ソフトぼう", + "pos": "名詞", + "pn": -0.337292 + }, + { + "surface": "おなら", + "readging": "おなら", + "pos": "名詞", + "pn": -0.337315 + }, + { + "surface": "海風", + "readging": "かいふう", + "pos": "名詞", + "pn": -0.337327 + }, + { + "surface": "イーゼル", + "readging": "イーゼル", + "pos": "名詞", + "pn": -0.337331 + }, + { + "surface": "兵糧攻め", + "readging": "ひょうろうぜめ", + "pos": "名詞", + "pn": -0.337362 + }, + { + "surface": "塩鮭", + "readging": "しおざけ", + "pos": "名詞", + "pn": -0.337366 + }, + { + "surface": "公使", + "readging": "こうし", + "pos": "名詞", + "pn": -0.337373 + }, + { + "surface": "毛見", + "readging": "けみ", + "pos": "名詞", + "pn": -0.337421 + }, + { + "surface": "なみなみ", + "readging": "なみなみ", + "pos": "副詞", + "pn": -0.337425 + }, + { + "surface": "同格", + "readging": "どうかく", + "pos": "名詞", + "pn": -0.337441 + }, + { + "surface": "クレゾール", + "readging": "クレゾール", + "pos": "名詞", + "pn": -0.337448 + }, + { + "surface": "肉欲", + "readging": "にくよく", + "pos": "名詞", + "pn": -0.337454 + }, + { + "surface": "愁色", + "readging": "しゅうしょく", + "pos": "名詞", + "pn": -0.337473 + }, + { + "surface": "突出す", + "readging": "つきだす", + "pos": "動詞", + "pn": -0.337481 + }, + { + "surface": "通じ", + "readging": "つうじ", + "pos": "名詞", + "pn": -0.337501 + }, + { + "surface": "縄張", + "readging": "なわばり", + "pos": "名詞", + "pn": -0.337507 + }, + { + "surface": "メンバー", + "readging": "メンバー", + "pos": "名詞", + "pn": -0.337508 + }, + { + "surface": "クイーン", + "readging": "クイーン", + "pos": "名詞", + "pn": -0.337593 + }, + { + "surface": "執刀", + "readging": "しっとう", + "pos": "名詞", + "pn": -0.337615 + }, + { + "surface": "愛顧", + "readging": "あいこ", + "pos": "名詞", + "pn": -0.337629 + }, + { + "surface": "狢", + "readging": "むじな", + "pos": "名詞", + "pn": -0.337655 + }, + { + "surface": "木", + "readging": "き", + "pos": "名詞", + "pn": -0.337678 + }, + { + "surface": "裸参り", + "readging": "はだかまいり", + "pos": "名詞", + "pn": -0.337682 + }, + { + "surface": "法王", + "readging": "ほうおう", + "pos": "名詞", + "pn": -0.337698 + }, + { + "surface": "等分", + "readging": "とうぶん", + "pos": "名詞", + "pn": -0.337732 + }, + { + "surface": "堵", + "readging": "と", + "pos": "名詞", + "pn": -0.337741 + }, + { + "surface": "糠袋", + "readging": "ぬかぶくろ", + "pos": "名詞", + "pn": -0.337747 + }, + { + "surface": "ホープ", + "readging": "ホープ", + "pos": "名詞", + "pn": -0.337764 + }, + { + "surface": "高座", + "readging": "こうざ", + "pos": "名詞", + "pn": -0.337781 + }, + { + "surface": "食する", + "readging": "しょくする", + "pos": "動詞", + "pn": -0.337792 + }, + { + "surface": "真行草", + "readging": "しんぎょうそう", + "pos": "名詞", + "pn": -0.337802 + }, + { + "surface": "海", + "readging": "うみ", + "pos": "名詞", + "pn": -0.337843 + }, + { + "surface": "省議", + "readging": "しょうぎ", + "pos": "名詞", + "pn": -0.337865 + }, + { + "surface": "捧げる", + "readging": "ささげる", + "pos": "動詞", + "pn": -0.337869 + }, + { + "surface": "門葉", + "readging": "もんよう", + "pos": "名詞", + "pn": -0.337872 + }, + { + "surface": "酔狂", + "readging": "すいきょう", + "pos": "名詞", + "pn": -0.337879 + }, + { + "surface": "反映", + "readging": "はんえい", + "pos": "名詞", + "pn": -0.337884 + }, + { + "surface": "新穀", + "readging": "しんこく", + "pos": "名詞", + "pn": -0.337895 + }, + { + "surface": "要諦", + "readging": "ようてい", + "pos": "名詞", + "pn": -0.337926 + }, + { + "surface": "空閨", + "readging": "くうけい", + "pos": "名詞", + "pn": -0.337928 + }, + { + "surface": "実用新案", + "readging": "じつようしんあん", + "pos": "名詞", + "pn": -0.337948 + }, + { + "surface": "牛後", + "readging": "ぎゅうご", + "pos": "名詞", + "pn": -0.33795 + }, + { + "surface": "至", + "readging": "し", + "pos": "名詞", + "pn": -0.337953 + }, + { + "surface": "調音", + "readging": "ちょうおん", + "pos": "名詞", + "pn": -0.337956 + }, + { + "surface": "航空", + "readging": "こうくう", + "pos": "名詞", + "pn": -0.33796 + }, + { + "surface": "忘れ物", + "readging": "わすれもの", + "pos": "名詞", + "pn": -0.337968 + }, + { + "surface": "力泳", + "readging": "りきえい", + "pos": "名詞", + "pn": -0.338032 + }, + { + "surface": "昨朝", + "readging": "さくちょう", + "pos": "名詞", + "pn": -0.338035 + }, + { + "surface": "白銅", + "readging": "はくどう", + "pos": "名詞", + "pn": -0.338059 + }, + { + "surface": "問答", + "readging": "もんどう", + "pos": "名詞", + "pn": -0.338094 + }, + { + "surface": "盛況", + "readging": "せいきょう", + "pos": "名詞", + "pn": -0.338095 + }, + { + "surface": "視覚", + "readging": "しかく", + "pos": "名詞", + "pn": -0.338107 + }, + { + "surface": "出世魚", + "readging": "しゅっせうお", + "pos": "名詞", + "pn": -0.338123 + }, + { + "surface": "現地", + "readging": "げんち", + "pos": "名詞", + "pn": -0.338141 + }, + { + "surface": "似通う", + "readging": "にかよう", + "pos": "動詞", + "pn": -0.338156 + }, + { + "surface": "防御", + "readging": "ぼうぎょ", + "pos": "名詞", + "pn": -0.338165 + }, + { + "surface": "テスト", + "readging": "テストパタン", + "pos": "名詞", + "pn": -0.338168 + }, + { + "surface": "参籠", + "readging": "さんろう", + "pos": "名詞", + "pn": -0.338168 + }, + { + "surface": "押し割り", + "readging": "おしわり", + "pos": "名詞", + "pn": -0.33817 + }, + { + "surface": "界線", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.338178 + }, + { + "surface": "鈍行", + "readging": "どんこう", + "pos": "名詞", + "pn": -0.33818 + }, + { + "surface": "塩害", + "readging": "えんがい", + "pos": "名詞", + "pn": -0.33819 + }, + { + "surface": "根締", + "readging": "ねじめ", + "pos": "名詞", + "pn": -0.338196 + }, + { + "surface": "回数券", + "readging": "かいすうけん", + "pos": "名詞", + "pn": -0.338211 + }, + { + "surface": "贅", + "readging": "ぜい", + "pos": "名詞", + "pn": -0.338254 + }, + { + "surface": "徴用", + "readging": "ちょうよう", + "pos": "名詞", + "pn": -0.338284 + }, + { + "surface": "仏壇", + "readging": "ぶつだん", + "pos": "名詞", + "pn": -0.338289 + }, + { + "surface": "失速", + "readging": "しっそく", + "pos": "名詞", + "pn": -0.338295 + }, + { + "surface": "手鞠花", + "readging": "てまりばな", + "pos": "名詞", + "pn": -0.338298 + }, + { + "surface": "花魁草", + "readging": "おいらんそう", + "pos": "名詞", + "pn": -0.338316 + }, + { + "surface": "巡礼", + "readging": "じゅんれい", + "pos": "名詞", + "pn": -0.338361 + }, + { + "surface": "色相", + "readging": "しきそう", + "pos": "名詞", + "pn": -0.338376 + }, + { + "surface": "殿上", + "readging": "てんじょう", + "pos": "名詞", + "pn": -0.338387 + }, + { + "surface": "機嫌買い", + "readging": "きげんかい", + "pos": "名詞", + "pn": -0.338392 + }, + { + "surface": "番", + "readging": "つがい", + "pos": "名詞", + "pn": -0.338417 + }, + { + "surface": "所帯染みる", + "readging": "しょたいじみる", + "pos": "動詞", + "pn": -0.338452 + }, + { + "surface": "代理店", + "readging": "だいりてん", + "pos": "名詞", + "pn": -0.338501 + }, + { + "surface": "生後", + "readging": "せいご", + "pos": "名詞", + "pn": -0.33851 + }, + { + "surface": "重複", + "readging": "ちょうふく", + "pos": "名詞", + "pn": -0.338566 + }, + { + "surface": "水蘚", + "readging": "みずごけ", + "pos": "名詞", + "pn": -0.33858 + }, + { + "surface": "代赭", + "readging": "たいしゃ", + "pos": "名詞", + "pn": -0.338593 + }, + { + "surface": "小百姓", + "readging": "こびゃくしょう", + "pos": "名詞", + "pn": -0.338599 + }, + { + "surface": "嘘八百", + "readging": "うそはっぴゃく", + "pos": "名詞", + "pn": -0.338619 + }, + { + "surface": "南風", + "readging": "はえ", + "pos": "名詞", + "pn": -0.338638 + }, + { + "surface": "語法", + "readging": "ごほう", + "pos": "名詞", + "pn": -0.338652 + }, + { + "surface": "屠所", + "readging": "としょ", + "pos": "名詞", + "pn": -0.338681 + }, + { + "surface": "同勢", + "readging": "どうぜい", + "pos": "名詞", + "pn": -0.338706 + }, + { + "surface": "庚申薔薇", + "readging": "こうしんばら", + "pos": "名詞", + "pn": -0.338728 + }, + { + "surface": "戌", + "readging": "いぬ", + "pos": "名詞", + "pn": -0.33873 + }, + { + "surface": "凸面鏡", + "readging": "とつめんきょう", + "pos": "名詞", + "pn": -0.338757 + }, + { + "surface": "出開帳", + "readging": "でがいちょう", + "pos": "名詞", + "pn": -0.338757 + }, + { + "surface": "務", + "readging": "む", + "pos": "名詞", + "pn": -0.338762 + }, + { + "surface": "領事", + "readging": "りょうじ", + "pos": "名詞", + "pn": -0.338767 + }, + { + "surface": "漢音", + "readging": "かんおん", + "pos": "名詞", + "pn": -0.338769 + }, + { + "surface": "引受ける", + "readging": "ひきうける", + "pos": "動詞", + "pn": -0.33877 + }, + { + "surface": "覚悟", + "readging": "かくご", + "pos": "名詞", + "pn": -0.338802 + }, + { + "surface": "締り", + "readging": "しまり", + "pos": "名詞", + "pn": -0.338805 + }, + { + "surface": "釈明", + "readging": "しゃくめい", + "pos": "名詞", + "pn": -0.338807 + }, + { + "surface": "堂舎", + "readging": "どうしゃ", + "pos": "名詞", + "pn": -0.338811 + }, + { + "surface": "木端", + "readging": "こっぱ", + "pos": "名詞", + "pn": -0.33882 + }, + { + "surface": "直方体", + "readging": "ちょくほうたい", + "pos": "名詞", + "pn": -0.338856 + }, + { + "surface": "識語", + "readging": "しきご", + "pos": "名詞", + "pn": -0.338867 + }, + { + "surface": "燕", + "readging": "えん", + "pos": "名詞", + "pn": -0.338875 + }, + { + "surface": "応戦", + "readging": "おうせん", + "pos": "名詞", + "pn": -0.338876 + }, + { + "surface": "テニス", + "readging": "テニス", + "pos": "名詞", + "pn": -0.338891 + }, + { + "surface": "核分裂", + "readging": "かくぶんれつ", + "pos": "名詞", + "pn": -0.338949 + }, + { + "surface": "映ずる", + "readging": "えいずる", + "pos": "動詞", + "pn": -0.338988 + }, + { + "surface": "数", + "readging": "かず", + "pos": "名詞", + "pn": -0.339002 + }, + { + "surface": "本草", + "readging": "ほんぞう", + "pos": "名詞", + "pn": -0.339028 + }, + { + "surface": "立礼", + "readging": "りつれい", + "pos": "名詞", + "pn": -0.339037 + }, + { + "surface": "実情", + "readging": "じつじょう", + "pos": "名詞", + "pn": -0.339042 + }, + { + "surface": "偏差値", + "readging": "へんさち", + "pos": "名詞", + "pn": -0.339046 + }, + { + "surface": "弾道", + "readging": "だんどう", + "pos": "名詞", + "pn": -0.339047 + }, + { + "surface": "羅漢", + "readging": "らかん", + "pos": "名詞", + "pn": -0.339058 + }, + { + "surface": "漫語", + "readging": "まんご", + "pos": "名詞", + "pn": -0.339066 + }, + { + "surface": "備え付ける", + "readging": "そなえつける", + "pos": "動詞", + "pn": -0.339066 + }, + { + "surface": "巡洋艦", + "readging": "じゅんようかん", + "pos": "名詞", + "pn": -0.339067 + }, + { + "surface": "気流", + "readging": "きりゅう", + "pos": "名詞", + "pn": -0.339079 + }, + { + "surface": "フィニッシュ", + "readging": "フィニッシュ", + "pos": "名詞", + "pn": -0.339094 + }, + { + "surface": "数奇屋坊主", + "readging": "すきやぼうず", + "pos": "名詞", + "pn": -0.339099 + }, + { + "surface": "研修", + "readging": "けんしゅう", + "pos": "名詞", + "pn": -0.339099 + }, + { + "surface": "嗅ぎ煙草", + "readging": "かぎタバコ", + "pos": "名詞", + "pn": -0.339184 + }, + { + "surface": "力感", + "readging": "りきかん", + "pos": "名詞", + "pn": -0.339186 + }, + { + "surface": "皮質", + "readging": "ひしつ", + "pos": "名詞", + "pn": -0.33919 + }, + { + "surface": "月桂樹", + "readging": "げっけいじゅ", + "pos": "名詞", + "pn": -0.339204 + }, + { + "surface": "外堀", + "readging": "そとぼり", + "pos": "名詞", + "pn": -0.339206 + }, + { + "surface": "直書", + "readging": "じきしょ", + "pos": "名詞", + "pn": -0.339217 + }, + { + "surface": "壁土", + "readging": "かべつち", + "pos": "名詞", + "pn": -0.339275 + }, + { + "surface": "揚代", + "readging": "あげだい", + "pos": "名詞", + "pn": -0.339284 + }, + { + "surface": "透過", + "readging": "とうか", + "pos": "名詞", + "pn": -0.339289 + }, + { + "surface": "北半球", + "readging": "きたはんきゅう", + "pos": "名詞", + "pn": -0.339304 + }, + { + "surface": "中空", + "readging": "ちゅうくう", + "pos": "名詞", + "pn": -0.339317 + }, + { + "surface": "ランドリー", + "readging": "ランドリー", + "pos": "名詞", + "pn": -0.339328 + }, + { + "surface": "繁劇", + "readging": "はんげき", + "pos": "名詞", + "pn": -0.339329 + }, + { + "surface": "魚介", + "readging": "ぎょかい", + "pos": "名詞", + "pn": -0.33933 + }, + { + "surface": "井筒", + "readging": "いづつ", + "pos": "名詞", + "pn": -0.339331 + }, + { + "surface": "党議", + "readging": "とうぎ", + "pos": "名詞", + "pn": -0.339355 + }, + { + "surface": "つうかあ", + "readging": "つうかあ", + "pos": "名詞", + "pn": -0.339363 + }, + { + "surface": "薬食い", + "readging": "くすりぐい", + "pos": "名詞", + "pn": -0.339365 + }, + { + "surface": "余寒", + "readging": "よかん", + "pos": "名詞", + "pn": -0.339367 + }, + { + "surface": "類別", + "readging": "るいべつ", + "pos": "名詞", + "pn": -0.339375 + }, + { + "surface": "ナップザック", + "readging": "ナップザック", + "pos": "名詞", + "pn": -0.339405 + }, + { + "surface": "仲居", + "readging": "なかい", + "pos": "名詞", + "pn": -0.339448 + }, + { + "surface": "飼い桶", + "readging": "かいおけ", + "pos": "名詞", + "pn": -0.339476 + }, + { + "surface": "シュミーズ", + "readging": "シュミーズ", + "pos": "名詞", + "pn": -0.339482 + }, + { + "surface": "部民", + "readging": "べみん", + "pos": "名詞", + "pn": -0.339484 + }, + { + "surface": "方陣", + "readging": "ほうじん", + "pos": "名詞", + "pn": -0.339488 + }, + { + "surface": "駟", + "readging": "し", + "pos": "名詞", + "pn": -0.339556 + }, + { + "surface": "籠城", + "readging": "ろうじょう", + "pos": "名詞", + "pn": -0.339558 + }, + { + "surface": "観ずる", + "readging": "かんずる", + "pos": "動詞", + "pn": -0.339585 + }, + { + "surface": "掛算", + "readging": "かけざん", + "pos": "名詞", + "pn": -0.339594 + }, + { + "surface": "続物", + "readging": "つづきもの", + "pos": "名詞", + "pn": -0.339612 + }, + { + "surface": "籤引", + "readging": "くじびき", + "pos": "名詞", + "pn": -0.339616 + }, + { + "surface": "回議", + "readging": "かいぎ", + "pos": "名詞", + "pn": -0.339621 + }, + { + "surface": "闇汁", + "readging": "やみじる", + "pos": "名詞", + "pn": -0.339623 + }, + { + "surface": "河太郎", + "readging": "かわたろう", + "pos": "名詞", + "pn": -0.33963 + }, + { + "surface": "爵位", + "readging": "しゃくい", + "pos": "名詞", + "pn": -0.33963 + }, + { + "surface": "マイクロ", + "readging": "マイクロウエーブ", + "pos": "名詞", + "pn": -0.339641 + }, + { + "surface": "古里", + "readging": "ふるさと", + "pos": "名詞", + "pn": -0.339671 + }, + { + "surface": "苦吟", + "readging": "くぎん", + "pos": "名詞", + "pn": -0.339692 + }, + { + "surface": "谷地", + "readging": "やち", + "pos": "名詞", + "pn": -0.339702 + }, + { + "surface": "芸人", + "readging": "げいにん", + "pos": "名詞", + "pn": -0.339703 + }, + { + "surface": "啓培", + "readging": "けいばい", + "pos": "名詞", + "pn": -0.339704 + }, + { + "surface": "ぐし縫", + "readging": "ぐしぬい", + "pos": "名詞", + "pn": -0.339704 + }, + { + "surface": "分割", + "readging": "ぶんかつ", + "pos": "名詞", + "pn": -0.339716 + }, + { + "surface": "カセット", + "readging": "カセット", + "pos": "名詞", + "pn": -0.339723 + }, + { + "surface": "目減り", + "readging": "めべり", + "pos": "名詞", + "pn": -0.339734 + }, + { + "surface": "五彩", + "readging": "ごさい", + "pos": "名詞", + "pn": -0.339738 + }, + { + "surface": "びしびし", + "readging": "びしびし", + "pos": "副詞", + "pn": -0.339739 + }, + { + "surface": "やまねこ", + "readging": "やまねこスト", + "pos": "名詞", + "pn": -0.339742 + }, + { + "surface": "一時凌ぎ", + "readging": "いちじしのぎ", + "pos": "名詞", + "pn": -0.339764 + }, + { + "surface": "身投げ", + "readging": "みなげ", + "pos": "名詞", + "pn": -0.339785 + }, + { + "surface": "コンバイン", + "readging": "コンバイン", + "pos": "名詞", + "pn": -0.339802 + }, + { + "surface": "旗亭", + "readging": "きてい", + "pos": "名詞", + "pn": -0.339811 + }, + { + "surface": "大謀網", + "readging": "だいぼうあみ", + "pos": "名詞", + "pn": -0.339829 + }, + { + "surface": "碁客", + "readging": "ごかく", + "pos": "名詞", + "pn": -0.33983 + }, + { + "surface": "蟄居", + "readging": "ちっきょ", + "pos": "名詞", + "pn": -0.339846 + }, + { + "surface": "切離れ", + "readging": "きりはなれ", + "pos": "名詞", + "pn": -0.339851 + }, + { + "surface": "サッカリン", + "readging": "サッカリン", + "pos": "名詞", + "pn": -0.339855 + }, + { + "surface": "赤ゲット", + "readging": "あかゲット", + "pos": "名詞", + "pn": -0.33988 + }, + { + "surface": "霧雲", + "readging": "きりぐも", + "pos": "名詞", + "pn": -0.339888 + }, + { + "surface": "ゴール", + "readging": "ゴール", + "pos": "名詞", + "pn": -0.339895 + }, + { + "surface": "語学", + "readging": "ごがく", + "pos": "名詞", + "pn": -0.339908 + }, + { + "surface": "絶交", + "readging": "ぜっこう", + "pos": "名詞", + "pn": -0.339909 + }, + { + "surface": "在廷", + "readging": "ざいてい", + "pos": "名詞", + "pn": -0.339912 + }, + { + "surface": "Tシャツ", + "readging": "ティーシャツ", + "pos": "名詞", + "pn": -0.339917 + }, + { + "surface": "枝炭", + "readging": "えだずみ", + "pos": "名詞", + "pn": -0.339918 + }, + { + "surface": "紅葉", + "readging": "こうよう", + "pos": "名詞", + "pn": -0.339941 + }, + { + "surface": "真似事", + "readging": "まねごと", + "pos": "名詞", + "pn": -0.339964 + }, + { + "surface": "近目", + "readging": "ちかめ", + "pos": "名詞", + "pn": -0.339965 + }, + { + "surface": "獣欲", + "readging": "じゅうよく", + "pos": "名詞", + "pn": -0.339969 + }, + { + "surface": "アリア", + "readging": "アリア", + "pos": "名詞", + "pn": -0.339982 + }, + { + "surface": "本歌", + "readging": "ほんか", + "pos": "名詞", + "pn": -0.339984 + }, + { + "surface": "合理主義", + "readging": "ごうりしゅぎ", + "pos": "名詞", + "pn": -0.339991 + }, + { + "surface": "奔放", + "readging": "ほんぽう", + "pos": "名詞", + "pn": -0.340016 + }, + { + "surface": "開設", + "readging": "かいせつ", + "pos": "名詞", + "pn": -0.340023 + }, + { + "surface": "座高", + "readging": "ざこう", + "pos": "名詞", + "pn": -0.340063 + }, + { + "surface": "双翼", + "readging": "そうよく", + "pos": "名詞", + "pn": -0.340107 + }, + { + "surface": "進める", + "readging": "すすめる", + "pos": "動詞", + "pn": -0.34012 + }, + { + "surface": "豪奢", + "readging": "ごうしゃ", + "pos": "名詞", + "pn": -0.340123 + }, + { + "surface": "冷害", + "readging": "れいがい", + "pos": "名詞", + "pn": -0.340128 + }, + { + "surface": "可溶性", + "readging": "かようせい", + "pos": "名詞", + "pn": -0.340134 + }, + { + "surface": "媒体", + "readging": "ばいたい", + "pos": "名詞", + "pn": -0.340138 + }, + { + "surface": "反落", + "readging": "はんらく", + "pos": "名詞", + "pn": -0.340142 + }, + { + "surface": "契機", + "readging": "けいき", + "pos": "名詞", + "pn": -0.340148 + }, + { + "surface": "着席", + "readging": "ちゃくせき", + "pos": "名詞", + "pn": -0.340162 + }, + { + "surface": "竹馬", + "readging": "たけうま", + "pos": "名詞", + "pn": -0.340183 + }, + { + "surface": "新参", + "readging": "しんざん", + "pos": "名詞", + "pn": -0.340183 + }, + { + "surface": "天物", + "readging": "てんぶつ", + "pos": "名詞", + "pn": -0.340189 + }, + { + "surface": "一時に", + "readging": "いちどきに", + "pos": "副詞", + "pn": -0.340194 + }, + { + "surface": "大方", + "readging": "おおかた", + "pos": "副詞", + "pn": -0.340204 + }, + { + "surface": "鳩舎", + "readging": "きゅうしゃ", + "pos": "名詞", + "pn": -0.340206 + }, + { + "surface": "証左", + "readging": "しょうさ", + "pos": "名詞", + "pn": -0.340232 + }, + { + "surface": "ボックス", + "readging": "ボックス", + "pos": "名詞", + "pn": -0.34024 + }, + { + "surface": "路", + "readging": "じ", + "pos": "名詞", + "pn": -0.340254 + }, + { + "surface": "莢", + "readging": "さや", + "pos": "名詞", + "pn": -0.340261 + }, + { + "surface": "突付ける", + "readging": "つきつける", + "pos": "動詞", + "pn": -0.340262 + }, + { + "surface": "通則", + "readging": "つうそく", + "pos": "名詞", + "pn": -0.340266 + }, + { + "surface": "日延べ", + "readging": "ひのべ", + "pos": "名詞", + "pn": -0.340268 + }, + { + "surface": "退嬰", + "readging": "たいえい", + "pos": "名詞", + "pn": -0.340288 + }, + { + "surface": "月例", + "readging": "げつれい", + "pos": "名詞", + "pn": -0.340288 + }, + { + "surface": "本金", + "readging": "ほんきん", + "pos": "名詞", + "pn": -0.340299 + }, + { + "surface": "アルカリ性", + "readging": "アルカリせい", + "pos": "名詞", + "pn": -0.340311 + }, + { + "surface": "倒叙", + "readging": "とうじょ", + "pos": "名詞", + "pn": -0.340314 + }, + { + "surface": "スリル", + "readging": "スリル", + "pos": "名詞", + "pn": -0.340319 + }, + { + "surface": "大路", + "readging": "おおじ", + "pos": "名詞", + "pn": -0.340342 + }, + { + "surface": "裸眼", + "readging": "らがん", + "pos": "名詞", + "pn": -0.340357 + }, + { + "surface": "六時", + "readging": "ろくじ", + "pos": "名詞", + "pn": -0.340361 + }, + { + "surface": "荷担", + "readging": "かたん", + "pos": "名詞", + "pn": -0.340375 + }, + { + "surface": "光陰", + "readging": "こういん", + "pos": "名詞", + "pn": -0.340414 + }, + { + "surface": "通話", + "readging": "つうわ", + "pos": "名詞", + "pn": -0.340441 + }, + { + "surface": "実質賃金", + "readging": "じっしつちんぎん", + "pos": "名詞", + "pn": -0.340458 + }, + { + "surface": "裸一貫", + "readging": "はだかいっかん", + "pos": "名詞", + "pn": -0.34047 + }, + { + "surface": "温帯", + "readging": "おんたい", + "pos": "名詞", + "pn": -0.340477 + }, + { + "surface": "行旅", + "readging": "こうりょ", + "pos": "名詞", + "pn": -0.340482 + }, + { + "surface": "武鑑", + "readging": "ぶかん", + "pos": "名詞", + "pn": -0.340483 + }, + { + "surface": "噴気", + "readging": "ふんき", + "pos": "名詞", + "pn": -0.340492 + }, + { + "surface": "硼砂", + "readging": "ほうしゃ", + "pos": "名詞", + "pn": -0.340542 + }, + { + "surface": "紳士録", + "readging": "しんしろく", + "pos": "名詞", + "pn": -0.340561 + }, + { + "surface": "丘", + "readging": "おか", + "pos": "名詞", + "pn": -0.340562 + }, + { + "surface": "鳧", + "readging": "けり", + "pos": "名詞", + "pn": -0.340565 + }, + { + "surface": "彫り", + "readging": "ほり", + "pos": "名詞", + "pn": -0.340572 + }, + { + "surface": "尼", + "readging": "あま", + "pos": "名詞", + "pn": -0.340574 + }, + { + "surface": "男娼", + "readging": "だんしょう", + "pos": "名詞", + "pn": -0.340607 + }, + { + "surface": "虫媒花", + "readging": "ちゅうばいか", + "pos": "名詞", + "pn": -0.340614 + }, + { + "surface": "娑婆", + "readging": "しゃば", + "pos": "名詞", + "pn": -0.340622 + }, + { + "surface": "禁止法", + "readging": "きんしほう", + "pos": "名詞", + "pn": -0.340623 + }, + { + "surface": "国会", + "readging": "こっかい", + "pos": "名詞", + "pn": -0.340642 + }, + { + "surface": "逃げ足", + "readging": "にげあし", + "pos": "名詞", + "pn": -0.340642 + }, + { + "surface": "絃", + "readging": "げん", + "pos": "名詞", + "pn": -0.340657 + }, + { + "surface": "直参", + "readging": "じきさん", + "pos": "名詞", + "pn": -0.340659 + }, + { + "surface": "常用漢字", + "readging": "じょうようかんじ", + "pos": "名詞", + "pn": -0.340663 + }, + { + "surface": "本草学", + "readging": "ほんぞうがく", + "pos": "名詞", + "pn": -0.340669 + }, + { + "surface": "意味合い", + "readging": "いみあい", + "pos": "名詞", + "pn": -0.34067 + }, + { + "surface": "数式", + "readging": "すうしき", + "pos": "名詞", + "pn": -0.340671 + }, + { + "surface": "黒白", + "readging": "こくびゃく", + "pos": "名詞", + "pn": -0.340694 + }, + { + "surface": "カヌー", + "readging": "カヌー", + "pos": "名詞", + "pn": -0.340707 + }, + { + "surface": "大学", + "readging": "だいがく", + "pos": "名詞", + "pn": -0.340721 + }, + { + "surface": "バック", + "readging": "バックアップ", + "pos": "名詞", + "pn": -0.340723 + }, + { + "surface": "次数", + "readging": "じすう", + "pos": "名詞", + "pn": -0.34076 + }, + { + "surface": "近代五種競技", + "readging": "きんだいごしゅきょうぎ", + "pos": "名詞", + "pn": -0.340769 + }, + { + "surface": "半壊", + "readging": "はんかい", + "pos": "名詞", + "pn": -0.340808 + }, + { + "surface": "飛掛る", + "readging": "とびかかる", + "pos": "動詞", + "pn": -0.340834 + }, + { + "surface": "原板", + "readging": "げんぱん", + "pos": "名詞", + "pn": -0.34084 + }, + { + "surface": "痛心", + "readging": "つうしん", + "pos": "名詞", + "pn": -0.340857 + }, + { + "surface": "甲高", + "readging": "こうだか", + "pos": "名詞", + "pn": -0.34086 + }, + { + "surface": "操短", + "readging": "そうたん", + "pos": "名詞", + "pn": -0.340874 + }, + { + "surface": "舌端", + "readging": "ぜったん", + "pos": "名詞", + "pn": -0.340896 + }, + { + "surface": "立", + "readging": "だて", + "pos": "名詞", + "pn": -0.340911 + }, + { + "surface": "博物館", + "readging": "はくぶつかん", + "pos": "名詞", + "pn": -0.340922 + }, + { + "surface": "熨斗鮑", + "readging": "のしあわび", + "pos": "名詞", + "pn": -0.340925 + }, + { + "surface": "吹奏", + "readging": "すいそう", + "pos": "名詞", + "pn": -0.340926 + }, + { + "surface": "とっくり", + "readging": "とっくり", + "pos": "副詞", + "pn": -0.340974 + }, + { + "surface": "マルセル石鹸", + "readging": "マルセルせっけん", + "pos": "名詞", + "pn": -0.340983 + }, + { + "surface": "ピストン", + "readging": "ピストンリング", + "pos": "名詞", + "pn": -0.340984 + }, + { + "surface": "財形", + "readging": "ざいけい", + "pos": "名詞", + "pn": -0.340984 + }, + { + "surface": "僧籍", + "readging": "そうせき", + "pos": "名詞", + "pn": -0.341 + }, + { + "surface": "入園", + "readging": "にゅうえん", + "pos": "名詞", + "pn": -0.341009 + }, + { + "surface": "鋤", + "readging": "すき", + "pos": "名詞", + "pn": -0.341034 + }, + { + "surface": "巫祝", + "readging": "ふしゅく", + "pos": "名詞", + "pn": -0.341057 + }, + { + "surface": "鉱水", + "readging": "こうすい", + "pos": "名詞", + "pn": -0.341071 + }, + { + "surface": "蓋然性", + "readging": "がいぜんせい", + "pos": "名詞", + "pn": -0.341071 + }, + { + "surface": "単眼", + "readging": "たんがん", + "pos": "名詞", + "pn": -0.341094 + }, + { + "surface": "粉食", + "readging": "ふんしょく", + "pos": "名詞", + "pn": -0.341095 + }, + { + "surface": "元込め", + "readging": "もとごめ", + "pos": "名詞", + "pn": -0.341102 + }, + { + "surface": "地獄変", + "readging": "じごくへん", + "pos": "名詞", + "pn": -0.341102 + }, + { + "surface": "宇宙線", + "readging": "うちゅうせん", + "pos": "名詞", + "pn": -0.341119 + }, + { + "surface": "硫化", + "readging": "りゅうか", + "pos": "名詞", + "pn": -0.341138 + }, + { + "surface": "所", + "readging": "とこ", + "pos": "名詞", + "pn": -0.341147 + }, + { + "surface": "血便", + "readging": "けつべん", + "pos": "名詞", + "pn": -0.341174 + }, + { + "surface": "敬遠", + "readging": "けいえん", + "pos": "名詞", + "pn": -0.341178 + }, + { + "surface": "金柑", + "readging": "きんかん", + "pos": "名詞", + "pn": -0.341207 + }, + { + "surface": "弁論", + "readging": "べんろん", + "pos": "名詞", + "pn": -0.341219 + }, + { + "surface": "継母", + "readging": "ままはは", + "pos": "名詞", + "pn": -0.341229 + }, + { + "surface": "ディーゼル エンジン", + "readging": "ディーゼル エンジン", + "pos": "名詞", + "pn": -0.341233 + }, + { + "surface": "五七日", + "readging": "ごしちにち", + "pos": "名詞", + "pn": -0.341243 + }, + { + "surface": "宙吊り", + "readging": "ちゅうづり", + "pos": "名詞", + "pn": -0.341273 + }, + { + "surface": "果菜", + "readging": "かさい", + "pos": "名詞", + "pn": -0.341281 + }, + { + "surface": "直進", + "readging": "ちょくしん", + "pos": "名詞", + "pn": -0.341303 + }, + { + "surface": "在俗", + "readging": "ざいぞく", + "pos": "名詞", + "pn": -0.341357 + }, + { + "surface": "片す", + "readging": "かたす", + "pos": "動詞", + "pn": -0.341367 + }, + { + "surface": "牢固", + "readging": "ろうこ", + "pos": "名詞", + "pn": -0.341371 + }, + { + "surface": "テレビン油", + "readging": "テレビンゆ", + "pos": "名詞", + "pn": -0.341373 + }, + { + "surface": "一刀両断", + "readging": "いっとうりょうだん", + "pos": "名詞", + "pn": -0.341373 + }, + { + "surface": "薬効", + "readging": "やっこう", + "pos": "名詞", + "pn": -0.341381 + }, + { + "surface": "麾下", + "readging": "きか", + "pos": "名詞", + "pn": -0.341397 + }, + { + "surface": "フライ", + "readging": "フライ", + "pos": "名詞", + "pn": -0.341398 + }, + { + "surface": "実存", + "readging": "じつぞん", + "pos": "名詞", + "pn": -0.341413 + }, + { + "surface": "貸方", + "readging": "かしかた", + "pos": "名詞", + "pn": -0.341427 + }, + { + "surface": "上番", + "readging": "じょうばん", + "pos": "名詞", + "pn": -0.341438 + }, + { + "surface": "日本画", + "readging": "にほんが", + "pos": "名詞", + "pn": -0.341458 + }, + { + "surface": "柳暗花明", + "readging": "りゅうあんかめい", + "pos": "名詞", + "pn": -0.341474 + }, + { + "surface": "短冊", + "readging": "たんざく", + "pos": "名詞", + "pn": -0.341476 + }, + { + "surface": "彫像", + "readging": "ちょうぞう", + "pos": "名詞", + "pn": -0.34148 + }, + { + "surface": "横揺れ", + "readging": "よこゆれ", + "pos": "名詞", + "pn": -0.341495 + }, + { + "surface": "大風呂敷", + "readging": "おおぶろしき", + "pos": "名詞", + "pn": -0.34154 + }, + { + "surface": "ざあます言葉", + "readging": "ざあますことば", + "pos": "名詞", + "pn": -0.341559 + }, + { + "surface": "六法全書", + "readging": "ろっぽうぜんしょ", + "pos": "名詞", + "pn": -0.341561 + }, + { + "surface": "タンブリング", + "readging": "タンブリング", + "pos": "名詞", + "pn": -0.34157 + }, + { + "surface": "手札", + "readging": "しゅさつ", + "pos": "名詞", + "pn": -0.341587 + }, + { + "surface": "早道", + "readging": "はやみち", + "pos": "名詞", + "pn": -0.341593 + }, + { + "surface": "帰館", + "readging": "きかん", + "pos": "名詞", + "pn": -0.341601 + }, + { + "surface": "対する", + "readging": "たいする", + "pos": "動詞", + "pn": -0.341608 + }, + { + "surface": "弟弟子", + "readging": "おとうとでし", + "pos": "名詞", + "pn": -0.341613 + }, + { + "surface": "日日", + "readging": "にちにち", + "pos": "名詞", + "pn": -0.341618 + }, + { + "surface": "竜灯", + "readging": "りゅうとう", + "pos": "名詞", + "pn": -0.341624 + }, + { + "surface": "内ゲバ", + "readging": "うちゲバ", + "pos": "名詞", + "pn": -0.341676 + }, + { + "surface": "梵論字", + "readging": "ぼろんじ", + "pos": "名詞", + "pn": -0.341686 + }, + { + "surface": "親船", + "readging": "おやぶね", + "pos": "名詞", + "pn": -0.341688 + }, + { + "surface": "むかっ腹", + "readging": "むかっぱら", + "pos": "名詞", + "pn": -0.341735 + }, + { + "surface": "薄利多売", + "readging": "はくりたばい", + "pos": "名詞", + "pn": -0.341753 + }, + { + "surface": "圭角", + "readging": "けいかく", + "pos": "名詞", + "pn": -0.341765 + }, + { + "surface": "御所", + "readging": "ごしょ", + "pos": "名詞", + "pn": -0.341769 + }, + { + "surface": "耐火煉瓦", + "readging": "たいかれんが", + "pos": "名詞", + "pn": -0.341805 + }, + { + "surface": "買弁", + "readging": "ばいべん", + "pos": "名詞", + "pn": -0.341814 + }, + { + "surface": "貧血性", + "readging": "ひんけつしょう", + "pos": "名詞", + "pn": -0.341814 + }, + { + "surface": "待構える", + "readging": "まちかまえる", + "pos": "動詞", + "pn": -0.341816 + }, + { + "surface": "手答え", + "readging": "てごたえ", + "pos": "名詞", + "pn": -0.341831 + }, + { + "surface": "約定", + "readging": "やくじょう", + "pos": "名詞", + "pn": -0.341859 + }, + { + "surface": "両開き", + "readging": "りょうびらき", + "pos": "名詞", + "pn": -0.341867 + }, + { + "surface": "発頭人", + "readging": "ほっとうにん", + "pos": "名詞", + "pn": -0.341883 + }, + { + "surface": "民間伝承", + "readging": "みんかんでんしょう", + "pos": "名詞", + "pn": -0.341888 + }, + { + "surface": "強弱", + "readging": "きょうじゃく", + "pos": "名詞", + "pn": -0.341888 + }, + { + "surface": "流人", + "readging": "るにん", + "pos": "名詞", + "pn": -0.3419 + }, + { + "surface": "退出", + "readging": "たいしゅつ", + "pos": "名詞", + "pn": -0.341909 + }, + { + "surface": "貫流", + "readging": "かんりゅう", + "pos": "名詞", + "pn": -0.34191 + }, + { + "surface": "傾聴", + "readging": "けいちょう", + "pos": "名詞", + "pn": -0.34192 + }, + { + "surface": "押し並べて", + "readging": "おしなべて", + "pos": "副詞", + "pn": -0.341933 + }, + { + "surface": "家政", + "readging": "かせい", + "pos": "名詞", + "pn": -0.341947 + }, + { + "surface": "近日", + "readging": "きんじつ", + "pos": "名詞", + "pn": -0.341959 + }, + { + "surface": "五重塔", + "readging": "ごじゅうのとう", + "pos": "名詞", + "pn": -0.341973 + }, + { + "surface": "包み隠す", + "readging": "つつみかくす", + "pos": "動詞", + "pn": -0.341976 + }, + { + "surface": "連句", + "readging": "れんく", + "pos": "名詞", + "pn": -0.341983 + }, + { + "surface": "小昼", + "readging": "こひる", + "pos": "名詞", + "pn": -0.341984 + }, + { + "surface": "利権", + "readging": "りけん", + "pos": "名詞", + "pn": -0.342015 + }, + { + "surface": "池", + "readging": "いけ", + "pos": "名詞", + "pn": -0.342024 + }, + { + "surface": "大動脈", + "readging": "だいどうみゃく", + "pos": "名詞", + "pn": -0.342029 + }, + { + "surface": "律令", + "readging": "りつりょう", + "pos": "名詞", + "pn": -0.342034 + }, + { + "surface": "杣山", + "readging": "そまやま", + "pos": "名詞", + "pn": -0.342041 + }, + { + "surface": "双曲線", + "readging": "そうきょくせん", + "pos": "名詞", + "pn": -0.342046 + }, + { + "surface": "あこう鯛", + "readging": "あこうだい", + "pos": "名詞", + "pn": -0.342047 + }, + { + "surface": "応用", + "readging": "おうよう", + "pos": "名詞", + "pn": -0.342048 + }, + { + "surface": "有り勝ち", + "readging": "ありがち", + "pos": "名詞", + "pn": -0.342059 + }, + { + "surface": "スローガン", + "readging": "スローガン", + "pos": "名詞", + "pn": -0.342061 + }, + { + "surface": "上手物", + "readging": "じょうてもの", + "pos": "名詞", + "pn": -0.342067 + }, + { + "surface": "掛倒れ", + "readging": "かけだおれ", + "pos": "名詞", + "pn": -0.342109 + }, + { + "surface": "駐屯", + "readging": "ちゅうとん", + "pos": "名詞", + "pn": -0.342112 + }, + { + "surface": "講座", + "readging": "こうざ", + "pos": "名詞", + "pn": -0.342116 + }, + { + "surface": "古", + "readging": "いにしえ", + "pos": "名詞", + "pn": -0.342161 + }, + { + "surface": "断頭", + "readging": "だんとう", + "pos": "名詞", + "pn": -0.342179 + }, + { + "surface": "紫陽花", + "readging": "あじさい", + "pos": "名詞", + "pn": -0.342181 + }, + { + "surface": "艶種", + "readging": "つやだね", + "pos": "名詞", + "pn": -0.342202 + }, + { + "surface": "麦雨", + "readging": "ばくう", + "pos": "名詞", + "pn": -0.342222 + }, + { + "surface": "船旅", + "readging": "ふなたび", + "pos": "名詞", + "pn": -0.342232 + }, + { + "surface": "対句", + "readging": "ついく", + "pos": "名詞", + "pn": -0.342237 + }, + { + "surface": "出合う", + "readging": "であう", + "pos": "動詞", + "pn": -0.34224 + }, + { + "surface": "下っ端", + "readging": "したっぱ", + "pos": "名詞", + "pn": -0.342243 + }, + { + "surface": "アナナス", + "readging": "アナナス", + "pos": "名詞", + "pn": -0.342247 + }, + { + "surface": "凄み", + "readging": "すごみ", + "pos": "名詞", + "pn": -0.342249 + }, + { + "surface": "着帯", + "readging": "ちゃくたい", + "pos": "名詞", + "pn": -0.342262 + }, + { + "surface": "手薄", + "readging": "てうす", + "pos": "名詞", + "pn": -0.342278 + }, + { + "surface": "リタイア", + "readging": "リタイア", + "pos": "名詞", + "pn": -0.342299 + }, + { + "surface": "氷解", + "readging": "ひょうかい", + "pos": "名詞", + "pn": -0.342303 + }, + { + "surface": "暖流", + "readging": "だんりゅう", + "pos": "名詞", + "pn": -0.342309 + }, + { + "surface": "磁土", + "readging": "じど", + "pos": "名詞", + "pn": -0.342347 + }, + { + "surface": "肉豆く", + "readging": "にくずく", + "pos": "動詞", + "pn": -0.342349 + }, + { + "surface": "変り者", + "readging": "かわりもの", + "pos": "名詞", + "pn": -0.342355 + }, + { + "surface": "夜盲", + "readging": "やもう", + "pos": "名詞", + "pn": -0.342385 + }, + { + "surface": "札所", + "readging": "ふだしょ", + "pos": "名詞", + "pn": -0.342407 + }, + { + "surface": "マドロス", + "readging": "マドロスパイプ", + "pos": "名詞", + "pn": -0.342433 + }, + { + "surface": "文語", + "readging": "ぶんご", + "pos": "名詞", + "pn": -0.342434 + }, + { + "surface": "アドレナリン", + "readging": "アドレナリン", + "pos": "名詞", + "pn": -0.342447 + }, + { + "surface": "立件", + "readging": "りっけん", + "pos": "名詞", + "pn": -0.342452 + }, + { + "surface": "枠組", + "readging": "わくぐみ", + "pos": "名詞", + "pn": -0.342454 + }, + { + "surface": "奇術", + "readging": "きじゅつ", + "pos": "名詞", + "pn": -0.34247 + }, + { + "surface": "亀虫", + "readging": "かめむし", + "pos": "名詞", + "pn": -0.342476 + }, + { + "surface": "草亀", + "readging": "くさがめ", + "pos": "名詞", + "pn": -0.342476 + }, + { + "surface": "同素体", + "readging": "どうそたい", + "pos": "名詞", + "pn": -0.342487 + }, + { + "surface": "細胞組織", + "readging": "さいぼうそしき", + "pos": "名詞", + "pn": -0.342504 + }, + { + "surface": "籤逃れ", + "readging": "くじのがれ", + "pos": "名詞", + "pn": -0.342507 + }, + { + "surface": "拘禁", + "readging": "こうきん", + "pos": "名詞", + "pn": -0.342508 + }, + { + "surface": "満員", + "readging": "まんいん", + "pos": "名詞", + "pn": -0.342511 + }, + { + "surface": "内苑", + "readging": "ないえん", + "pos": "名詞", + "pn": -0.342514 + }, + { + "surface": "省", + "readging": "しょう", + "pos": "名詞", + "pn": -0.342514 + }, + { + "surface": "スタンド", + "readging": "スタンドプレー", + "pos": "名詞", + "pn": -0.342523 + }, + { + "surface": "プランクトン", + "readging": "プランクトン", + "pos": "名詞", + "pn": -0.342536 + }, + { + "surface": "類", + "readging": "たぐい", + "pos": "名詞", + "pn": -0.34254 + }, + { + "surface": "湯女", + "readging": "ゆな", + "pos": "名詞", + "pn": -0.342544 + }, + { + "surface": "手塩", + "readging": "てしお", + "pos": "名詞", + "pn": -0.342575 + }, + { + "surface": "新酒", + "readging": "しんしゅ", + "pos": "名詞", + "pn": -0.342595 + }, + { + "surface": "急用", + "readging": "きゅうよう", + "pos": "名詞", + "pn": -0.342597 + }, + { + "surface": "投ずる", + "readging": "とうずる", + "pos": "動詞", + "pn": -0.342607 + }, + { + "surface": "縁戚", + "readging": "えんせき", + "pos": "名詞", + "pn": -0.342614 + }, + { + "surface": "昼過ぎ", + "readging": "ひるすぎ", + "pos": "名詞", + "pn": -0.342617 + }, + { + "surface": "しおおせる", + "readging": "しおおせる", + "pos": "動詞", + "pn": -0.342624 + }, + { + "surface": "その代り", + "readging": "そのかわり", + "pos": "名詞", + "pn": -0.342629 + }, + { + "surface": "行届く", + "readging": "ゆきとどく", + "pos": "動詞", + "pn": -0.342643 + }, + { + "surface": "変色", + "readging": "へんしょく", + "pos": "名詞", + "pn": -0.342649 + }, + { + "surface": "なまり節", + "readging": "なまりぶし", + "pos": "名詞", + "pn": -0.34266 + }, + { + "surface": "渡し守", + "readging": "わたしもり", + "pos": "名詞", + "pn": -0.342665 + }, + { + "surface": "取籠める", + "readging": "とりこめる", + "pos": "動詞", + "pn": -0.34268 + }, + { + "surface": "早寝", + "readging": "はやね", + "pos": "名詞", + "pn": -0.342707 + }, + { + "surface": "本棚", + "readging": "ほんだな", + "pos": "名詞", + "pn": -0.342708 + }, + { + "surface": "口紅", + "readging": "くちべに", + "pos": "名詞", + "pn": -0.342718 + }, + { + "surface": "おかき", + "readging": "おかき", + "pos": "名詞", + "pn": -0.342745 + }, + { + "surface": "山号", + "readging": "さんごう", + "pos": "名詞", + "pn": -0.342771 + }, + { + "surface": "苗代", + "readging": "なわしろ", + "pos": "名詞", + "pn": -0.342807 + }, + { + "surface": "狭小", + "readging": "きょうしょう", + "pos": "名詞", + "pn": -0.34281 + }, + { + "surface": "先達て", + "readging": "せんだって", + "pos": "名詞", + "pn": -0.342834 + }, + { + "surface": "負け越す", + "readging": "まけこす", + "pos": "動詞", + "pn": -0.342854 + }, + { + "surface": "カリカチュア", + "readging": "カリカチュア", + "pos": "名詞", + "pn": -0.34289 + }, + { + "surface": "ばっさり", + "readging": "ばっさり", + "pos": "副詞", + "pn": -0.342909 + }, + { + "surface": "寄付行為", + "readging": "きふこうい", + "pos": "名詞", + "pn": -0.342914 + }, + { + "surface": "恋路", + "readging": "こいじ", + "pos": "名詞", + "pn": -0.342916 + }, + { + "surface": "薬師如来", + "readging": "やくしにょらい", + "pos": "名詞", + "pn": -0.34292 + }, + { + "surface": "底力", + "readging": "そこぢから", + "pos": "名詞", + "pn": -0.342952 + }, + { + "surface": "通例", + "readging": "つうれい", + "pos": "名詞", + "pn": -0.342974 + }, + { + "surface": "モーニング", + "readging": "モーニングコール", + "pos": "名詞", + "pn": -0.342987 + }, + { + "surface": "皮脂", + "readging": "ひし", + "pos": "名詞", + "pn": -0.342993 + }, + { + "surface": "タートルネック", + "readging": "タートルネック", + "pos": "名詞", + "pn": -0.343012 + }, + { + "surface": "触れ込む", + "readging": "ふれこむ", + "pos": "動詞", + "pn": -0.343024 + }, + { + "surface": "痘苗", + "readging": "とうびょう", + "pos": "名詞", + "pn": -0.343067 + }, + { + "surface": "道床", + "readging": "どうしょう", + "pos": "名詞", + "pn": -0.343074 + }, + { + "surface": "薄志弱行", + "readging": "はくしじゃっこう", + "pos": "名詞", + "pn": -0.343138 + }, + { + "surface": "国幣社", + "readging": "こくへいしゃ", + "pos": "名詞", + "pn": -0.343152 + }, + { + "surface": "一擲", + "readging": "いってき", + "pos": "名詞", + "pn": -0.343184 + }, + { + "surface": "コード", + "readging": "コードレス", + "pos": "名詞", + "pn": -0.343189 + }, + { + "surface": "梢", + "readging": "こずえ", + "pos": "名詞", + "pn": -0.343198 + }, + { + "surface": "南蛮", + "readging": "なんばん", + "pos": "名詞", + "pn": -0.343227 + }, + { + "surface": "円舞", + "readging": "えんぶ", + "pos": "名詞", + "pn": -0.34326 + }, + { + "surface": "ワイヤ", + "readging": "ワイヤレス", + "pos": "名詞", + "pn": -0.343265 + }, + { + "surface": "全廃", + "readging": "ぜんぱい", + "pos": "名詞", + "pn": -0.343269 + }, + { + "surface": "船主", + "readging": "せんしゅ", + "pos": "名詞", + "pn": -0.343275 + }, + { + "surface": "りゅうさん", + "readging": "りゅうさんアンモニウム", + "pos": "名詞", + "pn": -0.343276 + }, + { + "surface": "岩", + "readging": "いわ", + "pos": "名詞", + "pn": -0.343291 + }, + { + "surface": "家尻切り", + "readging": "やじりきり", + "pos": "名詞", + "pn": -0.343327 + }, + { + "surface": "勢", + "readging": "せい", + "pos": "名詞", + "pn": -0.343327 + }, + { + "surface": "直球", + "readging": "ちょっきゅう", + "pos": "名詞", + "pn": -0.343335 + }, + { + "surface": "窮まる", + "readging": "きわまる", + "pos": "動詞", + "pn": -0.343338 + }, + { + "surface": "男系", + "readging": "だんけい", + "pos": "名詞", + "pn": -0.343347 + }, + { + "surface": "殺陣", + "readging": "さつじん", + "pos": "名詞", + "pn": -0.34335 + }, + { + "surface": "官房", + "readging": "かんぼう", + "pos": "名詞", + "pn": -0.343362 + }, + { + "surface": "異義", + "readging": "いぎ", + "pos": "名詞", + "pn": -0.343364 + }, + { + "surface": "三下", + "readging": "さんした", + "pos": "名詞", + "pn": -0.343408 + }, + { + "surface": "八百長", + "readging": "やお", + "pos": "名詞", + "pn": -0.343416 + }, + { + "surface": "鳩胸", + "readging": "はとむね", + "pos": "名詞", + "pn": -0.343419 + }, + { + "surface": "息", + "readging": "いき", + "pos": "名詞", + "pn": -0.343434 + }, + { + "surface": "独りっ子", + "readging": "ひとりっこ", + "pos": "名詞", + "pn": -0.343458 + }, + { + "surface": "メルトン", + "readging": "メルトン", + "pos": "名詞", + "pn": -0.343484 + }, + { + "surface": "東", + "readging": "あずま", + "pos": "名詞", + "pn": -0.34353 + }, + { + "surface": "集約農業", + "readging": "しゅうやくのうぎょう", + "pos": "名詞", + "pn": -0.343575 + }, + { + "surface": "肉桂", + "readging": "にっけい", + "pos": "名詞", + "pn": -0.343591 + }, + { + "surface": "洗い物", + "readging": "あらいもの", + "pos": "名詞", + "pn": -0.343601 + }, + { + "surface": "鳥目", + "readging": "とりめ", + "pos": "名詞", + "pn": -0.343623 + }, + { + "surface": "草魚", + "readging": "そうぎょ", + "pos": "名詞", + "pn": -0.343624 + }, + { + "surface": "講釈", + "readging": "こうしゃく", + "pos": "名詞", + "pn": -0.343635 + }, + { + "surface": "書上げる", + "readging": "かきあげる", + "pos": "動詞", + "pn": -0.343654 + }, + { + "surface": "一対", + "readging": "いっつい", + "pos": "名詞", + "pn": -0.343655 + }, + { + "surface": "枉駕", + "readging": "おうが", + "pos": "名詞", + "pn": -0.343671 + }, + { + "surface": "介護", + "readging": "かいご", + "pos": "名詞", + "pn": -0.343681 + }, + { + "surface": "リポート", + "readging": "リポート", + "pos": "名詞", + "pn": -0.343688 + }, + { + "surface": "草双紙", + "readging": "くさぞうし", + "pos": "名詞", + "pn": -0.3437 + }, + { + "surface": "くらくら", + "readging": "くらくら", + "pos": "副詞", + "pn": -0.3437 + }, + { + "surface": "裏", + "readging": "うら", + "pos": "名詞", + "pn": -0.343719 + }, + { + "surface": "扇状地", + "readging": "せんじょうち", + "pos": "名詞", + "pn": -0.343728 + }, + { + "surface": "仮死", + "readging": "かし", + "pos": "名詞", + "pn": -0.34373 + }, + { + "surface": "融合", + "readging": "ゆうごう", + "pos": "名詞", + "pn": -0.343732 + }, + { + "surface": "雲隠れ", + "readging": "くもがくれ", + "pos": "名詞", + "pn": -0.343761 + }, + { + "surface": "一つ家", + "readging": "ひとつや", + "pos": "名詞", + "pn": -0.343788 + }, + { + "surface": "手淫", + "readging": "しゅいん", + "pos": "名詞", + "pn": -0.343803 + }, + { + "surface": "紅葉", + "readging": "もみじ", + "pos": "名詞", + "pn": -0.343809 + }, + { + "surface": "オイル", + "readging": "オイル", + "pos": "名詞", + "pn": -0.343815 + }, + { + "surface": "小官", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.343821 + }, + { + "surface": "来信", + "readging": "らいしん", + "pos": "名詞", + "pn": -0.34385 + }, + { + "surface": "離陸", + "readging": "りりく", + "pos": "名詞", + "pn": -0.343892 + }, + { + "surface": "才取", + "readging": "さいとり", + "pos": "名詞", + "pn": -0.343902 + }, + { + "surface": "金縁", + "readging": "きんぶち", + "pos": "名詞", + "pn": -0.343953 + }, + { + "surface": "ブース", + "readging": "ブース", + "pos": "名詞", + "pn": -0.343972 + }, + { + "surface": "労働者", + "readging": "ろうどうしゃ", + "pos": "名詞", + "pn": -0.34398 + }, + { + "surface": "線引小切手", + "readging": "せんびきこぎって", + "pos": "名詞", + "pn": -0.343982 + }, + { + "surface": "検索", + "readging": "けんさく", + "pos": "名詞", + "pn": -0.343985 + }, + { + "surface": "伝書鳩", + "readging": "でんしょばと", + "pos": "名詞", + "pn": -0.343991 + }, + { + "surface": "磁針", + "readging": "じしん", + "pos": "名詞", + "pn": -0.343999 + }, + { + "surface": "IDカード", + "readging": "アイディー カード", + "pos": "名詞", + "pn": -0.344 + }, + { + "surface": "側", + "readging": "かわ", + "pos": "名詞", + "pn": -0.344003 + }, + { + "surface": "破廉恥罪", + "readging": "はれんちざい", + "pos": "名詞", + "pn": -0.344014 + }, + { + "surface": "反別割", + "readging": "たんべつわり", + "pos": "名詞", + "pn": -0.344022 + }, + { + "surface": "天竺木綿", + "readging": "てんじくもめん", + "pos": "名詞", + "pn": -0.344024 + }, + { + "surface": "村方", + "readging": "むらかた", + "pos": "名詞", + "pn": -0.344036 + }, + { + "surface": "日没", + "readging": "にちぼつ", + "pos": "名詞", + "pn": -0.344061 + }, + { + "surface": "物の具", + "readging": "もののぐ", + "pos": "名詞", + "pn": -0.344065 + }, + { + "surface": "始期", + "readging": "しき", + "pos": "名詞", + "pn": -0.344075 + }, + { + "surface": "翌年", + "readging": "よくねん", + "pos": "名詞", + "pn": -0.344084 + }, + { + "surface": "ヘル", + "readging": "ヘル", + "pos": "名詞", + "pn": -0.344101 + }, + { + "surface": "斜坑", + "readging": "しゃこう", + "pos": "名詞", + "pn": -0.344117 + }, + { + "surface": "糸桜", + "readging": "いとざくら", + "pos": "名詞", + "pn": -0.344128 + }, + { + "surface": "三部作", + "readging": "さんぶさく", + "pos": "名詞", + "pn": -0.344132 + }, + { + "surface": "面取り", + "readging": "めんとり", + "pos": "名詞", + "pn": -0.344137 + }, + { + "surface": "蛟", + "readging": "みずち", + "pos": "名詞", + "pn": -0.344146 + }, + { + "surface": "亜成層圏", + "readging": "あせいそうけん", + "pos": "名詞", + "pn": -0.344146 + }, + { + "surface": "痒疹", + "readging": "ようしん", + "pos": "名詞", + "pn": -0.344158 + }, + { + "surface": "四半", + "readging": "しはん", + "pos": "名詞", + "pn": -0.344167 + }, + { + "surface": "番頭", + "readging": "ばんがしら", + "pos": "名詞", + "pn": -0.344176 + }, + { + "surface": "写真機", + "readging": "しゃしんき", + "pos": "名詞", + "pn": -0.344176 + }, + { + "surface": "諸費", + "readging": "しょひ", + "pos": "名詞", + "pn": -0.34418 + }, + { + "surface": "得失", + "readging": "とくしつ", + "pos": "名詞", + "pn": -0.344183 + }, + { + "surface": "病原体", + "readging": "びょうげんたい", + "pos": "名詞", + "pn": -0.344185 + }, + { + "surface": "羊水", + "readging": "ようすい", + "pos": "名詞", + "pn": -0.3442 + }, + { + "surface": "黒", + "readging": "くろ", + "pos": "名詞", + "pn": -0.34422 + }, + { + "surface": "富む", + "readging": "とむ", + "pos": "動詞", + "pn": -0.344226 + }, + { + "surface": "泣込む", + "readging": "なきこむ", + "pos": "動詞", + "pn": -0.344243 + }, + { + "surface": "蓮台", + "readging": "れんだい", + "pos": "名詞", + "pn": -0.344253 + }, + { + "surface": "モル", + "readging": "モル", + "pos": "名詞", + "pn": -0.344255 + }, + { + "surface": "白太", + "readging": "しらた", + "pos": "名詞", + "pn": -0.344257 + }, + { + "surface": "詳伝", + "readging": "しょうでん", + "pos": "名詞", + "pn": -0.34427 + }, + { + "surface": "障壁", + "readging": "しょうへき", + "pos": "名詞", + "pn": -0.344273 + }, + { + "surface": "孤閨", + "readging": "こけい", + "pos": "名詞", + "pn": -0.344276 + }, + { + "surface": "前陳", + "readging": "ぜんちん", + "pos": "名詞", + "pn": -0.344292 + }, + { + "surface": "茶飲み話", + "readging": "ちゃのみばなし", + "pos": "名詞", + "pn": -0.344359 + }, + { + "surface": "オペレーション", + "readging": "オペレーション", + "pos": "名詞", + "pn": -0.344389 + }, + { + "surface": "薬酒", + "readging": "やくしゅ", + "pos": "名詞", + "pn": -0.344395 + }, + { + "surface": "同心", + "readging": "どうしん", + "pos": "名詞", + "pn": -0.34443 + }, + { + "surface": "階級闘争", + "readging": "かいきゅうとうそう", + "pos": "名詞", + "pn": -0.34453 + }, + { + "surface": "歯石", + "readging": "しせき", + "pos": "名詞", + "pn": -0.344568 + }, + { + "surface": "好き者", + "readging": "すきもの", + "pos": "名詞", + "pn": -0.344595 + }, + { + "surface": "バニシング クリーム", + "readging": "バニシング クリーム", + "pos": "名詞", + "pn": -0.344601 + }, + { + "surface": "産気", + "readging": "さんけ", + "pos": "名詞", + "pn": -0.344607 + }, + { + "surface": "フェルト", + "readging": "フェルト", + "pos": "名詞", + "pn": -0.344618 + }, + { + "surface": "電力", + "readging": "でんりょく", + "pos": "名詞", + "pn": -0.344642 + }, + { + "surface": "祖父母", + "readging": "そふぼ", + "pos": "名詞", + "pn": -0.344644 + }, + { + "surface": "銅銭", + "readging": "どうせん", + "pos": "名詞", + "pn": -0.344649 + }, + { + "surface": "種別", + "readging": "しゅべつ", + "pos": "名詞", + "pn": -0.344656 + }, + { + "surface": "奉納仕合", + "readging": "ほうのうじあい", + "pos": "名詞", + "pn": -0.344678 + }, + { + "surface": "薄曇", + "readging": "うすぐもり", + "pos": "名詞", + "pn": -0.344705 + }, + { + "surface": "兼補", + "readging": "けんぽ", + "pos": "名詞", + "pn": -0.344708 + }, + { + "surface": "誓詞", + "readging": "せいし", + "pos": "名詞", + "pn": -0.344724 + }, + { + "surface": "地雷", + "readging": "じらい", + "pos": "名詞", + "pn": -0.344735 + }, + { + "surface": "需要", + "readging": "じゅよう", + "pos": "名詞", + "pn": -0.344742 + }, + { + "surface": "突当る", + "readging": "つきあたる", + "pos": "動詞", + "pn": -0.344742 + }, + { + "surface": "戦野", + "readging": "せんや", + "pos": "名詞", + "pn": -0.344757 + }, + { + "surface": "擦半", + "readging": "すりばん", + "pos": "名詞", + "pn": -0.344762 + }, + { + "surface": "不快指数", + "readging": "ふかいしすう", + "pos": "名詞", + "pn": -0.344767 + }, + { + "surface": "取合せる", + "readging": "とりあわせる", + "pos": "動詞", + "pn": -0.344778 + }, + { + "surface": "カミツレ", + "readging": "カミツレ", + "pos": "名詞", + "pn": -0.344778 + }, + { + "surface": "かんばせ", + "readging": "かんばせ", + "pos": "名詞", + "pn": -0.344801 + }, + { + "surface": "紋柄", + "readging": "もんがら", + "pos": "名詞", + "pn": -0.344809 + }, + { + "surface": "午", + "readging": "うま", + "pos": "名詞", + "pn": -0.344824 + }, + { + "surface": "御当地", + "readging": "ごとうち", + "pos": "名詞", + "pn": -0.344832 + }, + { + "surface": "常習犯", + "readging": "じょうしゅうはん", + "pos": "名詞", + "pn": -0.344873 + }, + { + "surface": "板畳", + "readging": "いただたみ", + "pos": "名詞", + "pn": -0.344879 + }, + { + "surface": "介在", + "readging": "かいざい", + "pos": "名詞", + "pn": -0.344885 + }, + { + "surface": "若葉", + "readging": "わかば", + "pos": "名詞", + "pn": -0.3449 + }, + { + "surface": "奴隷", + "readging": "どれい", + "pos": "名詞", + "pn": -0.344934 + }, + { + "surface": "どくだみ", + "readging": "どくだみ", + "pos": "名詞", + "pn": -0.34494 + }, + { + "surface": "三世", + "readging": "さんぜ", + "pos": "名詞", + "pn": -0.344986 + }, + { + "surface": "日給", + "readging": "にっきゅう", + "pos": "名詞", + "pn": -0.344997 + }, + { + "surface": "庭木", + "readging": "にわき", + "pos": "名詞", + "pn": -0.344999 + }, + { + "surface": "存する", + "readging": "そんする", + "pos": "動詞", + "pn": -0.345029 + }, + { + "surface": "顧問", + "readging": "こもん", + "pos": "名詞", + "pn": -0.345065 + }, + { + "surface": "土人", + "readging": "どじん", + "pos": "名詞", + "pn": -0.345083 + }, + { + "surface": "アンモニア", + "readging": "アンモニア", + "pos": "名詞", + "pn": -0.345083 + }, + { + "surface": "蔑する", + "readging": "なみする", + "pos": "動詞", + "pn": -0.345097 + }, + { + "surface": "ヌードル", + "readging": "ヌードル", + "pos": "名詞", + "pn": -0.345154 + }, + { + "surface": "招集権", + "readging": "しょうしゅうけん", + "pos": "名詞", + "pn": -0.345173 + }, + { + "surface": "営為", + "readging": "えいい", + "pos": "名詞", + "pn": -0.345181 + }, + { + "surface": "申受ける", + "readging": "もうしうける", + "pos": "動詞", + "pn": -0.345222 + }, + { + "surface": "浮かされる", + "readging": "うかされる", + "pos": "動詞", + "pn": -0.345234 + }, + { + "surface": "亥", + "readging": "い", + "pos": "名詞", + "pn": -0.345236 + }, + { + "surface": "帝国", + "readging": "ていこく", + "pos": "名詞", + "pn": -0.345249 + }, + { + "surface": "旅券", + "readging": "りょけん", + "pos": "名詞", + "pn": -0.345253 + }, + { + "surface": "耳隠し", + "readging": "みみかくし", + "pos": "名詞", + "pn": -0.345261 + }, + { + "surface": "卯", + "readging": "う", + "pos": "名詞", + "pn": -0.345261 + }, + { + "surface": "偵察", + "readging": "ていさつ", + "pos": "名詞", + "pn": -0.345265 + }, + { + "surface": "練貫", + "readging": "ねりぬき", + "pos": "名詞", + "pn": -0.345276 + }, + { + "surface": "カーボン", + "readging": "カーボン", + "pos": "名詞", + "pn": -0.3453 + }, + { + "surface": "せきたん", + "readging": "せきたんガス", + "pos": "名詞", + "pn": -0.345314 + }, + { + "surface": "末木", + "readging": "うらき", + "pos": "名詞", + "pn": -0.345319 + }, + { + "surface": "献物", + "readging": "けんもつ", + "pos": "名詞", + "pn": -0.34534 + }, + { + "surface": "一概に", + "readging": "いちがいに", + "pos": "副詞", + "pn": -0.345347 + }, + { + "surface": "ピクルス", + "readging": "ピクルス", + "pos": "名詞", + "pn": -0.345348 + }, + { + "surface": "飲下す", + "readging": "のみくだす", + "pos": "動詞", + "pn": -0.345351 + }, + { + "surface": "論難", + "readging": "ろんなん", + "pos": "名詞", + "pn": -0.345358 + }, + { + "surface": "甘えん坊", + "readging": "あまえんぼう", + "pos": "名詞", + "pn": -0.345359 + }, + { + "surface": "魂", + "readging": "こん", + "pos": "名詞", + "pn": -0.345385 + }, + { + "surface": "ラッシュ", + "readging": "ラッシュ", + "pos": "名詞", + "pn": -0.34539 + }, + { + "surface": "優男", + "readging": "やさおとこ", + "pos": "名詞", + "pn": -0.345409 + }, + { + "surface": "土寄せ", + "readging": "つちよせ", + "pos": "名詞", + "pn": -0.345427 + }, + { + "surface": "気働き", + "readging": "きばたらき", + "pos": "名詞", + "pn": -0.345454 + }, + { + "surface": "小姑", + "readging": "こじゅうとめ", + "pos": "名詞", + "pn": -0.345477 + }, + { + "surface": "ドキュメンテーション", + "readging": "ドキュメンテーション", + "pos": "名詞", + "pn": -0.345489 + }, + { + "surface": "創世", + "readging": "そうせい", + "pos": "名詞", + "pn": -0.345494 + }, + { + "surface": "復学", + "readging": "ふくがく", + "pos": "名詞", + "pn": -0.345511 + }, + { + "surface": "専ら", + "readging": "もっぱら", + "pos": "副詞", + "pn": -0.345528 + }, + { + "surface": "首府", + "readging": "しゅふ", + "pos": "名詞", + "pn": -0.345533 + }, + { + "surface": "掻い掘り", + "readging": "かいぼり", + "pos": "名詞", + "pn": -0.345575 + }, + { + "surface": "奴さん", + "readging": "やっこさん", + "pos": "名詞", + "pn": -0.34559 + }, + { + "surface": "雑兵", + "readging": "ぞうひょう", + "pos": "名詞", + "pn": -0.345623 + }, + { + "surface": "大統領", + "readging": "だいとうりょう", + "pos": "名詞", + "pn": -0.345626 + }, + { + "surface": "寒明け", + "readging": "かんあけ", + "pos": "名詞", + "pn": -0.34567 + }, + { + "surface": "県", + "readging": "けん", + "pos": "名詞", + "pn": -0.345684 + }, + { + "surface": "当世風", + "readging": "とうせいふう", + "pos": "名詞", + "pn": -0.345718 + }, + { + "surface": "店", + "readging": "たな", + "pos": "名詞", + "pn": -0.345719 + }, + { + "surface": "レイアウト", + "readging": "レイアウト", + "pos": "名詞", + "pn": -0.345748 + }, + { + "surface": "ござる", + "readging": "ござる", + "pos": "動詞", + "pn": -0.345767 + }, + { + "surface": "私情", + "readging": "しじょう", + "pos": "名詞", + "pn": -0.345768 + }, + { + "surface": "謹賀", + "readging": "きんが", + "pos": "名詞", + "pn": -0.34577 + }, + { + "surface": "脱会", + "readging": "だっかい", + "pos": "名詞", + "pn": -0.345775 + }, + { + "surface": "レコード", + "readging": "レコードコンサート", + "pos": "名詞", + "pn": -0.345784 + }, + { + "surface": "全敗", + "readging": "ぜんぱい", + "pos": "名詞", + "pn": -0.3458 + }, + { + "surface": "フィールド", + "readging": "フィールドワーク", + "pos": "名詞", + "pn": -0.345804 + }, + { + "surface": "膳立て", + "readging": "ぜんだて", + "pos": "名詞", + "pn": -0.345824 + }, + { + "surface": "他人事", + "readging": "ひとごと", + "pos": "名詞", + "pn": -0.34583 + }, + { + "surface": "透徹", + "readging": "とうてつ", + "pos": "名詞", + "pn": -0.345839 + }, + { + "surface": "円転", + "readging": "えんてん", + "pos": "名詞", + "pn": -0.345864 + }, + { + "surface": "タガヤサン", + "readging": "タガヤサン", + "pos": "名詞", + "pn": -0.345867 + }, + { + "surface": "窮屈", + "readging": "きゅうくつ", + "pos": "名詞", + "pn": -0.345868 + }, + { + "surface": "逆行", + "readging": "ぎゃっこう", + "pos": "名詞", + "pn": -0.345877 + }, + { + "surface": "転換", + "readging": "てんかん", + "pos": "名詞", + "pn": -0.345904 + }, + { + "surface": "郎", + "readging": "ろう", + "pos": "名詞", + "pn": -0.345907 + }, + { + "surface": "硬球", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.345907 + }, + { + "surface": "やっつけ仕事", + "readging": "やっつけしごと", + "pos": "名詞", + "pn": -0.345964 + }, + { + "surface": "詠史", + "readging": "えいし", + "pos": "名詞", + "pn": -0.345964 + }, + { + "surface": "尚早", + "readging": "しょうそう", + "pos": "名詞", + "pn": -0.345978 + }, + { + "surface": "ドキュメント", + "readging": "ドキュメント", + "pos": "名詞", + "pn": -0.345993 + }, + { + "surface": "出し物", + "readging": "だしもの", + "pos": "名詞", + "pn": -0.346001 + }, + { + "surface": "清書", + "readging": "せいしょ", + "pos": "名詞", + "pn": -0.34602 + }, + { + "surface": "薩摩", + "readging": "さつま", + "pos": "名詞", + "pn": -0.34603 + }, + { + "surface": "強制処分", + "readging": "きょうせいしょぶん", + "pos": "名詞", + "pn": -0.34603 + }, + { + "surface": "弓張月", + "readging": "ゆみはりづき", + "pos": "名詞", + "pn": -0.346032 + }, + { + "surface": "二の替り", + "readging": "にのかわり", + "pos": "名詞", + "pn": -0.346033 + }, + { + "surface": "終了", + "readging": "しゅうりょう", + "pos": "名詞", + "pn": -0.346038 + }, + { + "surface": "手玉", + "readging": "てだま", + "pos": "名詞", + "pn": -0.346041 + }, + { + "surface": "川竹", + "readging": "かわたけ", + "pos": "名詞", + "pn": -0.346084 + }, + { + "surface": "横転", + "readging": "おうてん", + "pos": "名詞", + "pn": -0.346085 + }, + { + "surface": "細目", + "readging": "さいもく", + "pos": "名詞", + "pn": -0.346091 + }, + { + "surface": "御託", + "readging": "ごたく", + "pos": "名詞", + "pn": -0.346111 + }, + { + "surface": "腰張り", + "readging": "こしばり", + "pos": "名詞", + "pn": -0.346113 + }, + { + "surface": "座像", + "readging": "ざぞう", + "pos": "名詞", + "pn": -0.346116 + }, + { + "surface": "湯沸し", + "readging": "ゆわかし", + "pos": "名詞", + "pn": -0.346129 + }, + { + "surface": "耐水", + "readging": "たいすい", + "pos": "名詞", + "pn": -0.34613 + }, + { + "surface": "独活", + "readging": "うど", + "pos": "名詞", + "pn": -0.346163 + }, + { + "surface": "アンニュイ", + "readging": "アンニュイ", + "pos": "名詞", + "pn": -0.346168 + }, + { + "surface": "聞合せる", + "readging": "ききあわせる", + "pos": "動詞", + "pn": -0.346182 + }, + { + "surface": "叢林", + "readging": "そうりん", + "pos": "名詞", + "pn": -0.346191 + }, + { + "surface": "掃墨", + "readging": "はいずみ", + "pos": "名詞", + "pn": -0.346197 + }, + { + "surface": "取付け", + "readging": "とりつけ", + "pos": "名詞", + "pn": -0.346206 + }, + { + "surface": "焼野", + "readging": "やけの", + "pos": "名詞", + "pn": -0.346208 + }, + { + "surface": "公布", + "readging": "こうふ", + "pos": "名詞", + "pn": -0.346216 + }, + { + "surface": "募金", + "readging": "ぼきん", + "pos": "名詞", + "pn": -0.346225 + }, + { + "surface": "許", + "readging": "きょ", + "pos": "名詞", + "pn": -0.346229 + }, + { + "surface": "地乗り", + "readging": "じのり", + "pos": "名詞", + "pn": -0.34623 + }, + { + "surface": "広間", + "readging": "ひろま", + "pos": "名詞", + "pn": -0.34626 + }, + { + "surface": "四角", + "readging": "しかく", + "pos": "名詞", + "pn": -0.346304 + }, + { + "surface": "湿性", + "readging": "しっせい", + "pos": "名詞", + "pn": -0.346305 + }, + { + "surface": "情合", + "readging": "じょうあい", + "pos": "名詞", + "pn": -0.346316 + }, + { + "surface": "坑夫", + "readging": "こうふ", + "pos": "名詞", + "pn": -0.346325 + }, + { + "surface": "生国", + "readging": "しょうごく", + "pos": "名詞", + "pn": -0.346372 + }, + { + "surface": "明暗", + "readging": "めいあん", + "pos": "名詞", + "pn": -0.346373 + }, + { + "surface": "取分け", + "readging": "とりわけ", + "pos": "名詞", + "pn": -0.346383 + }, + { + "surface": "兼職", + "readging": "けんしょく", + "pos": "名詞", + "pn": -0.346406 + }, + { + "surface": "犬追物", + "readging": "いぬおうもの", + "pos": "名詞", + "pn": -0.346406 + }, + { + "surface": "枚挙", + "readging": "まいきょ", + "pos": "名詞", + "pn": -0.346411 + }, + { + "surface": "物真似", + "readging": "ものまね", + "pos": "名詞", + "pn": -0.346436 + }, + { + "surface": "夜分", + "readging": "やぶん", + "pos": "名詞", + "pn": -0.346437 + }, + { + "surface": "所領", + "readging": "しょりょう", + "pos": "名詞", + "pn": -0.346439 + }, + { + "surface": "観相", + "readging": "かんそう", + "pos": "名詞", + "pn": -0.346464 + }, + { + "surface": "泣き", + "readging": "なき", + "pos": "名詞", + "pn": -0.34647 + }, + { + "surface": "祖師", + "readging": "そし", + "pos": "名詞", + "pn": -0.346474 + }, + { + "surface": "藤袴", + "readging": "ふじばかま", + "pos": "名詞", + "pn": -0.346502 + }, + { + "surface": "黒板", + "readging": "こくばん", + "pos": "名詞", + "pn": -0.346506 + }, + { + "surface": "ぷんと", + "readging": "ぷんと", + "pos": "副詞", + "pn": -0.346515 + }, + { + "surface": "品", + "readging": "しな", + "pos": "名詞", + "pn": -0.346557 + }, + { + "surface": "寒肥", + "readging": "かんごえ", + "pos": "名詞", + "pn": -0.346569 + }, + { + "surface": "立案", + "readging": "りつあん", + "pos": "名詞", + "pn": -0.346587 + }, + { + "surface": "鉄砲百合", + "readging": "てっぽうゆり", + "pos": "名詞", + "pn": -0.346595 + }, + { + "surface": "古文書", + "readging": "こもんじょ", + "pos": "名詞", + "pn": -0.346614 + }, + { + "surface": "訪う", + "readging": "おとなう", + "pos": "動詞", + "pn": -0.346616 + }, + { + "surface": "窃盗", + "readging": "せっとう", + "pos": "名詞", + "pn": -0.346631 + }, + { + "surface": "禁令", + "readging": "きんれい", + "pos": "名詞", + "pn": -0.346641 + }, + { + "surface": "砲撃", + "readging": "ほうげき", + "pos": "名詞", + "pn": -0.346646 + }, + { + "surface": "お下", + "readging": "おしも", + "pos": "名詞", + "pn": -0.346648 + }, + { + "surface": "不二", + "readging": "ふじ", + "pos": "名詞", + "pn": -0.346666 + }, + { + "surface": "やんわり", + "readging": "やんわり", + "pos": "副詞", + "pn": -0.346666 + }, + { + "surface": "天象", + "readging": "てんしょう", + "pos": "名詞", + "pn": -0.346684 + }, + { + "surface": "半生", + "readging": "はんせい", + "pos": "名詞", + "pn": -0.346703 + }, + { + "surface": "節用", + "readging": "せつよう", + "pos": "名詞", + "pn": -0.346726 + }, + { + "surface": "関数", + "readging": "かんすう", + "pos": "名詞", + "pn": -0.346759 + }, + { + "surface": "フィクション", + "readging": "フィクション", + "pos": "名詞", + "pn": -0.346765 + }, + { + "surface": "黄土", + "readging": "こうど", + "pos": "名詞", + "pn": -0.34678 + }, + { + "surface": "鶯張り", + "readging": "うぐいすばり", + "pos": "名詞", + "pn": -0.346808 + }, + { + "surface": "罫紙", + "readging": "けいし", + "pos": "名詞", + "pn": -0.346824 + }, + { + "surface": "土佐犬", + "readging": "とさいぬ", + "pos": "名詞", + "pn": -0.346847 + }, + { + "surface": "難解", + "readging": "なんかい", + "pos": "名詞", + "pn": -0.346865 + }, + { + "surface": "導水", + "readging": "どうすい", + "pos": "名詞", + "pn": -0.346865 + }, + { + "surface": "一念", + "readging": "いちねん", + "pos": "名詞", + "pn": -0.34691 + }, + { + "surface": "帳場", + "readging": "ちょうば", + "pos": "名詞", + "pn": -0.346916 + }, + { + "surface": "パタン", + "readging": "パタン", + "pos": "名詞", + "pn": -0.346924 + }, + { + "surface": "読本", + "readging": "とくほん", + "pos": "名詞", + "pn": -0.346932 + }, + { + "surface": "烈女", + "readging": "れつじょ", + "pos": "名詞", + "pn": -0.346954 + }, + { + "surface": "海棠", + "readging": "かいどう", + "pos": "名詞", + "pn": -0.34696 + }, + { + "surface": "福禄寿", + "readging": "ふくろくじゅ", + "pos": "名詞", + "pn": -0.346979 + }, + { + "surface": "捨身", + "readging": "しゃしん", + "pos": "名詞", + "pn": -0.346984 + }, + { + "surface": "融", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.347001 + }, + { + "surface": "潜熱", + "readging": "せんねつ", + "pos": "名詞", + "pn": -0.347003 + }, + { + "surface": "重箱読", + "readging": "じゅうばこよみ", + "pos": "名詞", + "pn": -0.347004 + }, + { + "surface": "オーロラ", + "readging": "オーロラ", + "pos": "名詞", + "pn": -0.347008 + }, + { + "surface": "廠舎", + "readging": "しょうしゃ", + "pos": "名詞", + "pn": -0.347012 + }, + { + "surface": "事象", + "readging": "じしょう", + "pos": "名詞", + "pn": -0.34706 + }, + { + "surface": "揮発油", + "readging": "きはつゆ", + "pos": "名詞", + "pn": -0.347066 + }, + { + "surface": "糞詰り", + "readging": "ふんづまり", + "pos": "名詞", + "pn": -0.347073 + }, + { + "surface": "冬", + "readging": "とう", + "pos": "名詞", + "pn": -0.347078 + }, + { + "surface": "電磁石", + "readging": "でんじしゃく", + "pos": "名詞", + "pn": -0.347083 + }, + { + "surface": "母音", + "readging": "ぼいん", + "pos": "名詞", + "pn": -0.347095 + }, + { + "surface": "分家", + "readging": "ぶんけ", + "pos": "名詞", + "pn": -0.347115 + }, + { + "surface": "手放し", + "readging": "てばなし", + "pos": "名詞", + "pn": -0.347119 + }, + { + "surface": "規那", + "readging": "キナ", + "pos": "名詞", + "pn": -0.347137 + }, + { + "surface": "内向", + "readging": "ないこう", + "pos": "名詞", + "pn": -0.347162 + }, + { + "surface": "開拓", + "readging": "かいたく", + "pos": "名詞", + "pn": -0.347165 + }, + { + "surface": "未遂", + "readging": "みすい", + "pos": "名詞", + "pn": -0.347174 + }, + { + "surface": "偽足", + "readging": "ぎそく", + "pos": "名詞", + "pn": -0.347197 + }, + { + "surface": "文机", + "readging": "ふづくえ", + "pos": "名詞", + "pn": -0.347202 + }, + { + "surface": "リュックサック", + "readging": "リュックサック", + "pos": "名詞", + "pn": -0.347215 + }, + { + "surface": "熟", + "readging": "じゅく", + "pos": "名詞", + "pn": -0.347259 + }, + { + "surface": "メス", + "readging": "メス", + "pos": "名詞", + "pn": -0.347264 + }, + { + "surface": "茶店", + "readging": "ちゃみせ", + "pos": "名詞", + "pn": -0.347287 + }, + { + "surface": "居る", + "readging": "おる", + "pos": "動詞", + "pn": -0.347296 + }, + { + "surface": "多感", + "readging": "たかん", + "pos": "名詞", + "pn": -0.347305 + }, + { + "surface": "内回り", + "readging": "うちまわり", + "pos": "名詞", + "pn": -0.347326 + }, + { + "surface": "書棚", + "readging": "しょだな", + "pos": "名詞", + "pn": -0.347337 + }, + { + "surface": "夜襲", + "readging": "やしゅう", + "pos": "名詞", + "pn": -0.347386 + }, + { + "surface": "文献", + "readging": "ぶんけん", + "pos": "名詞", + "pn": -0.34739 + }, + { + "surface": "伺候", + "readging": "しこう", + "pos": "名詞", + "pn": -0.347395 + }, + { + "surface": "被告人", + "readging": "ひこくにん", + "pos": "名詞", + "pn": -0.34743 + }, + { + "surface": "玄武岩", + "readging": "げんぶがん", + "pos": "名詞", + "pn": -0.347433 + }, + { + "surface": "試行錯誤", + "readging": "しこうさくご", + "pos": "名詞", + "pn": -0.347435 + }, + { + "surface": "発想", + "readging": "はっそう", + "pos": "名詞", + "pn": -0.347438 + }, + { + "surface": "流体", + "readging": "りゅうたい", + "pos": "名詞", + "pn": -0.347456 + }, + { + "surface": "売立", + "readging": "うりたて", + "pos": "名詞", + "pn": -0.347461 + }, + { + "surface": "主客", + "readging": "しゅかく", + "pos": "名詞", + "pn": -0.347465 + }, + { + "surface": "気配", + "readging": "きはい", + "pos": "名詞", + "pn": -0.347468 + }, + { + "surface": "即刻", + "readging": "そっこく", + "pos": "名詞", + "pn": -0.347476 + }, + { + "surface": "律詩", + "readging": "りっし", + "pos": "名詞", + "pn": -0.347497 + }, + { + "surface": "学齢", + "readging": "がくれい", + "pos": "名詞", + "pn": -0.347526 + }, + { + "surface": "芝居茶屋", + "readging": "しばい", + "pos": "名詞", + "pn": -0.347552 + }, + { + "surface": "直", + "readging": "ちょく", + "pos": "名詞", + "pn": -0.347565 + }, + { + "surface": "血の気", + "readging": "ちのけ", + "pos": "名詞", + "pn": -0.347575 + }, + { + "surface": "収納", + "readging": "しゅうのう", + "pos": "名詞", + "pn": -0.347577 + }, + { + "surface": "繁用", + "readging": "はんよう", + "pos": "名詞", + "pn": -0.347587 + }, + { + "surface": "エイト", + "readging": "エイト", + "pos": "名詞", + "pn": -0.347598 + }, + { + "surface": "饗", + "readging": "きょう", + "pos": "名詞", + "pn": -0.347602 + }, + { + "surface": "時代劇", + "readging": "じだいげき", + "pos": "名詞", + "pn": -0.347613 + }, + { + "surface": "丸坊主", + "readging": "まるぼうず", + "pos": "名詞", + "pn": -0.34764 + }, + { + "surface": "地金", + "readging": "じがね", + "pos": "名詞", + "pn": -0.34765 + }, + { + "surface": "カシミヤ", + "readging": "カシミヤ", + "pos": "名詞", + "pn": -0.34765 + }, + { + "surface": "建議", + "readging": "けんぎ", + "pos": "名詞", + "pn": -0.347653 + }, + { + "surface": "砲身", + "readging": "ほうしん", + "pos": "名詞", + "pn": -0.347667 + }, + { + "surface": "本卦帰り", + "readging": "ほんけがえり", + "pos": "名詞", + "pn": -0.347691 + }, + { + "surface": "ホーム", + "readging": "ホームルーム", + "pos": "名詞", + "pn": -0.347714 + }, + { + "surface": "人情", + "readging": "にんじょう", + "pos": "名詞", + "pn": -0.34772 + }, + { + "surface": "先込め", + "readging": "さきごめ", + "pos": "名詞", + "pn": -0.347735 + }, + { + "surface": "精根", + "readging": "せいこん", + "pos": "名詞", + "pn": -0.347753 + }, + { + "surface": "女将", + "readging": "じょしょう", + "pos": "名詞", + "pn": -0.347782 + }, + { + "surface": "公理論", + "readging": "こうりろん", + "pos": "名詞", + "pn": -0.347823 + }, + { + "surface": "共鳴", + "readging": "きょうめい", + "pos": "名詞", + "pn": -0.347852 + }, + { + "surface": "烏兎", + "readging": "うと", + "pos": "名詞", + "pn": -0.347863 + }, + { + "surface": "故殺", + "readging": "こさつ", + "pos": "名詞", + "pn": -0.347882 + }, + { + "surface": "野蒜", + "readging": "のびる", + "pos": "名詞", + "pn": -0.347884 + }, + { + "surface": "鳥", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.347889 + }, + { + "surface": "場席", + "readging": "ばせき", + "pos": "名詞", + "pn": -0.347911 + }, + { + "surface": "うるか", + "readging": "うるか", + "pos": "名詞", + "pn": -0.347915 + }, + { + "surface": "胡麻", + "readging": "ごま", + "pos": "名詞", + "pn": -0.347934 + }, + { + "surface": "ポーラー", + "readging": "ポーラー", + "pos": "名詞", + "pn": -0.347938 + }, + { + "surface": "下宿", + "readging": "げしゅく", + "pos": "名詞", + "pn": -0.34794 + }, + { + "surface": "小綬鶏", + "readging": "こじゅけい", + "pos": "名詞", + "pn": -0.347971 + }, + { + "surface": "私行", + "readging": "しこう", + "pos": "名詞", + "pn": -0.347989 + }, + { + "surface": "麻布", + "readging": "まふ", + "pos": "名詞", + "pn": -0.34799 + }, + { + "surface": "閉廷", + "readging": "へいてい", + "pos": "名詞", + "pn": -0.348001 + }, + { + "surface": "浪士", + "readging": "ろうし", + "pos": "名詞", + "pn": -0.348003 + }, + { + "surface": "社員", + "readging": "しゃいん", + "pos": "名詞", + "pn": -0.348014 + }, + { + "surface": "段段", + "readging": "だんだん", + "pos": "名詞", + "pn": -0.348016 + }, + { + "surface": "麗筆", + "readging": "れいひつ", + "pos": "名詞", + "pn": -0.348061 + }, + { + "surface": "吹き竹", + "readging": "ふきだけ", + "pos": "名詞", + "pn": -0.348096 + }, + { + "surface": "願望", + "readging": "がんぼう", + "pos": "名詞", + "pn": -0.348131 + }, + { + "surface": "返報", + "readging": "へんぽう", + "pos": "名詞", + "pn": -0.348133 + }, + { + "surface": "水垢離", + "readging": "みずごり", + "pos": "名詞", + "pn": -0.348136 + }, + { + "surface": "穂", + "readging": "すい", + "pos": "名詞", + "pn": -0.348151 + }, + { + "surface": "ポプリン", + "readging": "ポプリン", + "pos": "名詞", + "pn": -0.348194 + }, + { + "surface": "パート", + "readging": "パート", + "pos": "名詞", + "pn": -0.348208 + }, + { + "surface": "層雲", + "readging": "そううん", + "pos": "名詞", + "pn": -0.34821 + }, + { + "surface": "印画", + "readging": "いんが", + "pos": "名詞", + "pn": -0.348232 + }, + { + "surface": "詩書", + "readging": "ししょ", + "pos": "名詞", + "pn": -0.348235 + }, + { + "surface": "小切る", + "readging": "こぎる", + "pos": "動詞", + "pn": -0.348246 + }, + { + "surface": "総則", + "readging": "そうそく", + "pos": "名詞", + "pn": -0.348266 + }, + { + "surface": "管弦楽", + "readging": "かんげんがく", + "pos": "名詞", + "pn": -0.348267 + }, + { + "surface": "市上", + "readging": "しじょう", + "pos": "名詞", + "pn": -0.348279 + }, + { + "surface": "シース", + "readging": "シース", + "pos": "名詞", + "pn": -0.348281 + }, + { + "surface": "出入り先", + "readging": "でいりさき", + "pos": "名詞", + "pn": -0.348296 + }, + { + "surface": "盛装", + "readging": "せいそう", + "pos": "名詞", + "pn": -0.348313 + }, + { + "surface": "厚化粧", + "readging": "あつげしょう", + "pos": "名詞", + "pn": -0.348363 + }, + { + "surface": "木彫", + "readging": "もくちょう", + "pos": "名詞", + "pn": -0.348367 + }, + { + "surface": "幹線", + "readging": "かんせん", + "pos": "名詞", + "pn": -0.348391 + }, + { + "surface": "念仏", + "readging": "ねんぶつ", + "pos": "名詞", + "pn": -0.348415 + }, + { + "surface": "替歌", + "readging": "かえうた", + "pos": "名詞", + "pn": -0.348448 + }, + { + "surface": "床屋", + "readging": "とこや", + "pos": "名詞", + "pn": -0.34846 + }, + { + "surface": "榾", + "readging": "ほた", + "pos": "名詞", + "pn": -0.348464 + }, + { + "surface": "分娩", + "readging": "ぶんべん", + "pos": "名詞", + "pn": -0.348474 + }, + { + "surface": "日誌", + "readging": "にっし", + "pos": "名詞", + "pn": -0.348492 + }, + { + "surface": "絵師", + "readging": "えし", + "pos": "名詞", + "pn": -0.348495 + }, + { + "surface": "着任", + "readging": "ちゃくにん", + "pos": "名詞", + "pn": -0.348506 + }, + { + "surface": "タービン", + "readging": "タービン", + "pos": "名詞", + "pn": -0.34852 + }, + { + "surface": "協和", + "readging": "きょうわ", + "pos": "名詞", + "pn": -0.348522 + }, + { + "surface": "浮巣", + "readging": "うきす", + "pos": "名詞", + "pn": -0.348532 + }, + { + "surface": "民宿", + "readging": "みんしゅく", + "pos": "名詞", + "pn": -0.348584 + }, + { + "surface": "同等", + "readging": "どうとう", + "pos": "名詞", + "pn": -0.348591 + }, + { + "surface": "テール", + "readging": "テール", + "pos": "名詞", + "pn": -0.348604 + }, + { + "surface": "舗装", + "readging": "ほそう", + "pos": "名詞", + "pn": -0.348619 + }, + { + "surface": "広幅", + "readging": "ひろはば", + "pos": "名詞", + "pn": -0.348622 + }, + { + "surface": "題簽", + "readging": "だいせん", + "pos": "名詞", + "pn": -0.348628 + }, + { + "surface": "架空", + "readging": "かくう", + "pos": "名詞", + "pn": -0.348637 + }, + { + "surface": "前任", + "readging": "ぜんにん", + "pos": "名詞", + "pn": -0.348644 + }, + { + "surface": "説教", + "readging": "せっきょう", + "pos": "名詞", + "pn": -0.348648 + }, + { + "surface": "縁類", + "readging": "えんるい", + "pos": "名詞", + "pn": -0.348659 + }, + { + "surface": "違い目", + "readging": "ちがいめ", + "pos": "名詞", + "pn": -0.348668 + }, + { + "surface": "合作", + "readging": "がっさく", + "pos": "名詞", + "pn": -0.348677 + }, + { + "surface": "つっかい", + "readging": "つっかい", + "pos": "名詞", + "pn": -0.348688 + }, + { + "surface": "駢儷", + "readging": "べんれい", + "pos": "名詞", + "pn": -0.348696 + }, + { + "surface": "コロニー", + "readging": "コロニー", + "pos": "名詞", + "pn": -0.348698 + }, + { + "surface": "一線", + "readging": "いっせん", + "pos": "名詞", + "pn": -0.348743 + }, + { + "surface": "一人", + "readging": "ひとり", + "pos": "名詞", + "pn": -0.348753 + }, + { + "surface": "レスキュー隊", + "readging": "レスキューたい", + "pos": "名詞", + "pn": -0.348774 + }, + { + "surface": "執柄", + "readging": "しっぺい", + "pos": "名詞", + "pn": -0.348774 + }, + { + "surface": "次位", + "readging": "じい", + "pos": "名詞", + "pn": -0.3488 + }, + { + "surface": "振放す", + "readging": "ふりはなす", + "pos": "動詞", + "pn": -0.348805 + }, + { + "surface": "凸版", + "readging": "とっぱん", + "pos": "名詞", + "pn": -0.348808 + }, + { + "surface": "易", + "readging": "えき", + "pos": "名詞", + "pn": -0.348809 + }, + { + "surface": "金口", + "readging": "きんぐち", + "pos": "名詞", + "pn": -0.348825 + }, + { + "surface": "仮泊", + "readging": "かはく", + "pos": "名詞", + "pn": -0.348849 + }, + { + "surface": "総和", + "readging": "そうわ", + "pos": "名詞", + "pn": -0.348854 + }, + { + "surface": "輪袈裟", + "readging": "わげさ", + "pos": "名詞", + "pn": -0.348872 + }, + { + "surface": "置傘", + "readging": "おきがさ", + "pos": "名詞", + "pn": -0.34888 + }, + { + "surface": "代官", + "readging": "だいかん", + "pos": "名詞", + "pn": -0.348919 + }, + { + "surface": "上", + "readging": "うわ", + "pos": "名詞", + "pn": -0.348927 + }, + { + "surface": "托鉢", + "readging": "たくはつ", + "pos": "名詞", + "pn": -0.348932 + }, + { + "surface": "客観", + "readging": "きゃっかん", + "pos": "名詞", + "pn": -0.348939 + }, + { + "surface": "御礼参り", + "readging": "おれいまいり", + "pos": "名詞", + "pn": -0.34897 + }, + { + "surface": "差入れ", + "readging": "さしいれ", + "pos": "名詞", + "pn": -0.348972 + }, + { + "surface": "寄せ付ける", + "readging": "よせつける", + "pos": "動詞", + "pn": -0.348974 + }, + { + "surface": "元帳", + "readging": "もとちょう", + "pos": "名詞", + "pn": -0.349011 + }, + { + "surface": "調革", + "readging": "しらべがわ", + "pos": "名詞", + "pn": -0.349014 + }, + { + "surface": "太", + "readging": "たい", + "pos": "名詞", + "pn": -0.349042 + }, + { + "surface": "家鴨", + "readging": "あひる", + "pos": "名詞", + "pn": -0.349045 + }, + { + "surface": "痛恨", + "readging": "つうこん", + "pos": "名詞", + "pn": -0.349065 + }, + { + "surface": "瓜田", + "readging": "かでん", + "pos": "名詞", + "pn": -0.349092 + }, + { + "surface": "出身", + "readging": "しゅっしん", + "pos": "名詞", + "pn": -0.349095 + }, + { + "surface": "俗曲", + "readging": "ぞっきょく", + "pos": "名詞", + "pn": -0.349098 + }, + { + "surface": "浮世草子離れ", + "readging": "うきよばなれ", + "pos": "名詞", + "pn": -0.349112 + }, + { + "surface": "布告", + "readging": "ふこく", + "pos": "名詞", + "pn": -0.349124 + }, + { + "surface": "深意", + "readging": "しんい", + "pos": "名詞", + "pn": -0.349126 + }, + { + "surface": "黐の木", + "readging": "もちのき", + "pos": "名詞", + "pn": -0.349133 + }, + { + "surface": "食い分", + "readging": "くいぶん", + "pos": "名詞", + "pn": -0.349135 + }, + { + "surface": "言継ぎ", + "readging": "いいつぎ", + "pos": "名詞", + "pn": -0.349186 + }, + { + "surface": "儀表", + "readging": "ぎひょう", + "pos": "名詞", + "pn": -0.349228 + }, + { + "surface": "客舎", + "readging": "かくしゃ", + "pos": "名詞", + "pn": -0.349235 + }, + { + "surface": "高速度", + "readging": "こうそくど", + "pos": "名詞", + "pn": -0.349247 + }, + { + "surface": "偏執病", + "readging": "へんしゅうびょう", + "pos": "名詞", + "pn": -0.349251 + }, + { + "surface": "季寄せ", + "readging": "きよせ", + "pos": "名詞", + "pn": -0.349258 + }, + { + "surface": "偏見", + "readging": "へんけん", + "pos": "名詞", + "pn": -0.349274 + }, + { + "surface": "炸薬", + "readging": "さくやく", + "pos": "名詞", + "pn": -0.349289 + }, + { + "surface": "黒ん坊", + "readging": "くろんぼう", + "pos": "名詞", + "pn": -0.349291 + }, + { + "surface": "燕", + "readging": "つばめ", + "pos": "名詞", + "pn": -0.349301 + }, + { + "surface": "仕入れる", + "readging": "しいれる", + "pos": "動詞", + "pn": -0.349351 + }, + { + "surface": "日月", + "readging": "じつげつ", + "pos": "名詞", + "pn": -0.349355 + }, + { + "surface": "俗楽", + "readging": "ぞくがく", + "pos": "名詞", + "pn": -0.34938 + }, + { + "surface": "辞意", + "readging": "じい", + "pos": "名詞", + "pn": -0.349405 + }, + { + "surface": "窮める", + "readging": "きわめる", + "pos": "動詞", + "pn": -0.349413 + }, + { + "surface": "白斑", + "readging": "はくはん", + "pos": "名詞", + "pn": -0.349438 + }, + { + "surface": "居敷", + "readging": "いしき", + "pos": "名詞", + "pn": -0.34944 + }, + { + "surface": "地織", + "readging": "じおり", + "pos": "名詞", + "pn": -0.349441 + }, + { + "surface": "彦星", + "readging": "ひこぼし", + "pos": "名詞", + "pn": -0.349453 + }, + { + "surface": "読替える", + "readging": "よみかえる", + "pos": "動詞", + "pn": -0.349455 + }, + { + "surface": "アパレル", + "readging": "アパレル", + "pos": "名詞", + "pn": -0.349457 + }, + { + "surface": "推論", + "readging": "すいろん", + "pos": "名詞", + "pn": -0.349463 + }, + { + "surface": "宣言", + "readging": "せんげん", + "pos": "名詞", + "pn": -0.349476 + }, + { + "surface": "チアノーゼ", + "readging": "チアノーゼ", + "pos": "名詞", + "pn": -0.349485 + }, + { + "surface": "煙害", + "readging": "えんがい", + "pos": "名詞", + "pn": -0.349492 + }, + { + "surface": "能事", + "readging": "のうじ", + "pos": "名詞", + "pn": -0.349505 + }, + { + "surface": "はま", + "readging": "はま", + "pos": "名詞", + "pn": -0.349506 + }, + { + "surface": "冪", + "readging": "べき", + "pos": "名詞", + "pn": -0.349507 + }, + { + "surface": "口舌", + "readging": "こうぜつ", + "pos": "名詞", + "pn": -0.349514 + }, + { + "surface": "パラシュート", + "readging": "パラシュート", + "pos": "名詞", + "pn": -0.349534 + }, + { + "surface": "吃音", + "readging": "きつおん", + "pos": "名詞", + "pn": -0.349536 + }, + { + "surface": "発送", + "readging": "はっそう", + "pos": "名詞", + "pn": -0.349537 + }, + { + "surface": "附家老", + "readging": "つけがろう", + "pos": "名詞", + "pn": -0.34956 + }, + { + "surface": "合点", + "readging": "がてん", + "pos": "名詞", + "pn": -0.34958 + }, + { + "surface": "徒然", + "readging": "とぜん", + "pos": "副詞", + "pn": -0.349586 + }, + { + "surface": "入国", + "readging": "にゅうこく", + "pos": "名詞", + "pn": -0.349612 + }, + { + "surface": "からすみ", + "readging": "からすみ", + "pos": "名詞", + "pn": -0.349619 + }, + { + "surface": "スタンダード", + "readging": "スタンダード", + "pos": "名詞", + "pn": -0.349626 + }, + { + "surface": "石器", + "readging": "せっき", + "pos": "名詞", + "pn": -0.349636 + }, + { + "surface": "唐変木", + "readging": "とうへんぼく", + "pos": "名詞", + "pn": -0.349665 + }, + { + "surface": "降伏", + "readging": "こうふく", + "pos": "名詞", + "pn": -0.349709 + }, + { + "surface": "帰着", + "readging": "きちゃく", + "pos": "名詞", + "pn": -0.349719 + }, + { + "surface": "コラム", + "readging": "コラム", + "pos": "名詞", + "pn": -0.349745 + }, + { + "surface": "尋問", + "readging": "じんもん", + "pos": "名詞", + "pn": -0.349764 + }, + { + "surface": "根深い", + "readging": "ねぶかい", + "pos": "形容詞", + "pn": -0.349769 + }, + { + "surface": "総覧", + "readging": "そうらん", + "pos": "名詞", + "pn": -0.349791 + }, + { + "surface": "回り道", + "readging": "まわりみち", + "pos": "名詞", + "pn": -0.349806 + }, + { + "surface": "伝馬", + "readging": "てんま", + "pos": "名詞", + "pn": -0.349809 + }, + { + "surface": "サスペンス", + "readging": "サスペンス", + "pos": "名詞", + "pn": -0.349811 + }, + { + "surface": "失業", + "readging": "しつぎょう", + "pos": "名詞", + "pn": -0.34982 + }, + { + "surface": "しかく", + "readging": "しかく", + "pos": "副詞", + "pn": -0.349834 + }, + { + "surface": "勤労", + "readging": "きんろう", + "pos": "名詞", + "pn": -0.349837 + }, + { + "surface": "電荷", + "readging": "でんか", + "pos": "名詞", + "pn": -0.349897 + }, + { + "surface": "香水", + "readging": "こうすい", + "pos": "名詞", + "pn": -0.349908 + }, + { + "surface": "略体", + "readging": "りゃくたい", + "pos": "名詞", + "pn": -0.349917 + }, + { + "surface": "食いっぱぐれ", + "readging": "くいっぱぐれ", + "pos": "名詞", + "pn": -0.349957 + }, + { + "surface": "寵臣", + "readging": "ちょうしん", + "pos": "名詞", + "pn": -0.349963 + }, + { + "surface": "計測", + "readging": "けいそく", + "pos": "名詞", + "pn": -0.349968 + }, + { + "surface": "掻消える", + "readging": "かききえる", + "pos": "動詞", + "pn": -0.349972 + }, + { + "surface": "押し分ける", + "readging": "おしわける", + "pos": "動詞", + "pn": -0.349988 + }, + { + "surface": "家付", + "readging": "いえつき", + "pos": "名詞", + "pn": -0.349992 + }, + { + "surface": "園", + "readging": "えん", + "pos": "名詞", + "pn": -0.349994 + }, + { + "surface": "朧月", + "readging": "おぼろづき", + "pos": "名詞", + "pn": -0.350043 + }, + { + "surface": "締上げる", + "readging": "しめあげる", + "pos": "動詞", + "pn": -0.350048 + }, + { + "surface": "卯の花", + "readging": "うのはな", + "pos": "名詞", + "pn": -0.350049 + }, + { + "surface": "雨粒", + "readging": "あまつぶ", + "pos": "名詞", + "pn": -0.350053 + }, + { + "surface": "毒素", + "readging": "どくそ", + "pos": "名詞", + "pn": -0.350053 + }, + { + "surface": "告祭", + "readging": "こくさい", + "pos": "名詞", + "pn": -0.350062 + }, + { + "surface": "裏長屋", + "readging": "うらながや", + "pos": "名詞", + "pn": -0.350103 + }, + { + "surface": "対", + "readging": "たい", + "pos": "名詞", + "pn": -0.350128 + }, + { + "surface": "眼前", + "readging": "がんぜん", + "pos": "名詞", + "pn": -0.350134 + }, + { + "surface": "子子孫孫", + "readging": "ししそんそん", + "pos": "名詞", + "pn": -0.350155 + }, + { + "surface": "移送", + "readging": "いそう", + "pos": "名詞", + "pn": -0.350159 + }, + { + "surface": "農地改革", + "readging": "のうちかいかく", + "pos": "名詞", + "pn": -0.35017 + }, + { + "surface": "郷土", + "readging": "きょうど", + "pos": "名詞", + "pn": -0.35018 + }, + { + "surface": "板の間", + "readging": "いたのま", + "pos": "名詞", + "pn": -0.350187 + }, + { + "surface": "交尾", + "readging": "こうび", + "pos": "名詞", + "pn": -0.350187 + }, + { + "surface": "魚鱗", + "readging": "ぎょりん", + "pos": "名詞", + "pn": -0.350205 + }, + { + "surface": "毛彫", + "readging": "けぼり", + "pos": "名詞", + "pn": -0.350207 + }, + { + "surface": "魚板", + "readging": "ぎょばん", + "pos": "名詞", + "pn": -0.350224 + }, + { + "surface": "琴の緒", + "readging": "ことのお", + "pos": "名詞", + "pn": -0.350243 + }, + { + "surface": "品質", + "readging": "ひんしつ", + "pos": "名詞", + "pn": -0.350269 + }, + { + "surface": "時給", + "readging": "じきゅう", + "pos": "名詞", + "pn": -0.350273 + }, + { + "surface": "アマチュア", + "readging": "アマチュア", + "pos": "名詞", + "pn": -0.35028 + }, + { + "surface": "看病", + "readging": "かんびょう", + "pos": "名詞", + "pn": -0.350283 + }, + { + "surface": "簡易裁判所", + "readging": "かんいさいばんしょ", + "pos": "名詞", + "pn": -0.350303 + }, + { + "surface": "八重桜", + "readging": "やえ", + "pos": "名詞", + "pn": -0.350313 + }, + { + "surface": "特許", + "readging": "とっきょ", + "pos": "名詞", + "pn": -0.350341 + }, + { + "surface": "産みの親", + "readging": "うみのおや", + "pos": "名詞", + "pn": -0.350354 + }, + { + "surface": "銃弾", + "readging": "じゅうだん", + "pos": "名詞", + "pn": -0.350355 + }, + { + "surface": "旗印", + "readging": "はたじるし", + "pos": "名詞", + "pn": -0.350369 + }, + { + "surface": "手車", + "readging": "てぐるま", + "pos": "名詞", + "pn": -0.350375 + }, + { + "surface": "融解", + "readging": "ゆうかい", + "pos": "名詞", + "pn": -0.350399 + }, + { + "surface": "無想", + "readging": "むそう", + "pos": "名詞", + "pn": -0.3504 + }, + { + "surface": "燃す", + "readging": "もす", + "pos": "動詞", + "pn": -0.350415 + }, + { + "surface": "色紙", + "readging": "しきし", + "pos": "名詞", + "pn": -0.350417 + }, + { + "surface": "カトレア", + "readging": "カトレア", + "pos": "名詞", + "pn": -0.350424 + }, + { + "surface": "赤外線", + "readging": "せきがいせん", + "pos": "名詞", + "pn": -0.350425 + }, + { + "surface": "漿果", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.350455 + }, + { + "surface": "片割れ", + "readging": "かたわれ", + "pos": "名詞", + "pn": -0.350471 + }, + { + "surface": "烟", + "readging": "えん", + "pos": "名詞", + "pn": -0.350482 + }, + { + "surface": "ちえの輪", + "readging": "ちえのわ", + "pos": "名詞", + "pn": -0.350488 + }, + { + "surface": "洋銀", + "readging": "ようぎん", + "pos": "名詞", + "pn": -0.350491 + }, + { + "surface": "総意", + "readging": "そうい", + "pos": "名詞", + "pn": -0.350493 + }, + { + "surface": "連想", + "readging": "れんそう", + "pos": "名詞", + "pn": -0.350512 + }, + { + "surface": "流鏑馬", + "readging": "やぶさめ", + "pos": "名詞", + "pn": -0.350531 + }, + { + "surface": "足拵え", + "readging": "あしごしらえ", + "pos": "名詞", + "pn": -0.35055 + }, + { + "surface": "国籍", + "readging": "こくせき", + "pos": "名詞", + "pn": -0.35055 + }, + { + "surface": "後退り", + "readging": "あとじさり", + "pos": "名詞", + "pn": -0.350561 + }, + { + "surface": "休養", + "readging": "きゅうよう", + "pos": "名詞", + "pn": -0.350565 + }, + { + "surface": "航跡", + "readging": "こうせき", + "pos": "名詞", + "pn": -0.350589 + }, + { + "surface": "鰹節", + "readging": "かつおぶし", + "pos": "名詞", + "pn": -0.350625 + }, + { + "surface": "償却", + "readging": "しょうきゃく", + "pos": "名詞", + "pn": -0.350626 + }, + { + "surface": "准", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.35063 + }, + { + "surface": "巴旦杏", + "readging": "はたんきょう", + "pos": "名詞", + "pn": -0.350639 + }, + { + "surface": "証紙", + "readging": "しょうし", + "pos": "名詞", + "pn": -0.350644 + }, + { + "surface": "大差", + "readging": "たいさ", + "pos": "名詞", + "pn": -0.350655 + }, + { + "surface": "浮織", + "readging": "うきおり", + "pos": "名詞", + "pn": -0.350659 + }, + { + "surface": "消極", + "readging": "しょうきょく", + "pos": "名詞", + "pn": -0.350668 + }, + { + "surface": "生き肝", + "readging": "いきぎも", + "pos": "名詞", + "pn": -0.350688 + }, + { + "surface": "カット", + "readging": "カット", + "pos": "名詞", + "pn": -0.350703 + }, + { + "surface": "グラジオラス", + "readging": "グラジオラス", + "pos": "名詞", + "pn": -0.350711 + }, + { + "surface": "一節切", + "readging": "ひとよぎり", + "pos": "名詞", + "pn": -0.350719 + }, + { + "surface": "使番", + "readging": "つかいばん", + "pos": "名詞", + "pn": -0.350721 + }, + { + "surface": "ロマネスク", + "readging": "ロマネスク", + "pos": "名詞", + "pn": -0.350724 + }, + { + "surface": "糖分", + "readging": "とうぶん", + "pos": "名詞", + "pn": -0.350737 + }, + { + "surface": "割引く", + "readging": "わりびく", + "pos": "動詞", + "pn": -0.350742 + }, + { + "surface": "百発百中", + "readging": "ひゃっぱつひゃくちゅう", + "pos": "名詞", + "pn": -0.350758 + }, + { + "surface": "金緑玉", + "readging": "きんりょくぎょく", + "pos": "名詞", + "pn": -0.350779 + }, + { + "surface": "職業意識", + "readging": "しょくぎょういしき", + "pos": "名詞", + "pn": -0.350783 + }, + { + "surface": "アダプター", + "readging": "アダプター", + "pos": "名詞", + "pn": -0.350798 + }, + { + "surface": "アンチック", + "readging": "アンチック", + "pos": "名詞", + "pn": -0.350829 + }, + { + "surface": "コロナ", + "readging": "コロナ", + "pos": "名詞", + "pn": -0.35084 + }, + { + "surface": "擬制", + "readging": "ぎせい", + "pos": "名詞", + "pn": -0.350847 + }, + { + "surface": "歯茎", + "readging": "はぐき", + "pos": "名詞", + "pn": -0.350855 + }, + { + "surface": "丹", + "readging": "に", + "pos": "名詞", + "pn": -0.350858 + }, + { + "surface": "縁語", + "readging": "えんご", + "pos": "名詞", + "pn": -0.350859 + }, + { + "surface": "襲名", + "readging": "しゅうめい", + "pos": "名詞", + "pn": -0.350868 + }, + { + "surface": "白鹿毛", + "readging": "しろかげ", + "pos": "名詞", + "pn": -0.350873 + }, + { + "surface": "牡丹雪", + "readging": "ぼたんゆき", + "pos": "名詞", + "pn": -0.350873 + }, + { + "surface": "三種", + "readging": "さんしゅ", + "pos": "名詞", + "pn": -0.35088 + }, + { + "surface": "乱杭", + "readging": "らんぐい", + "pos": "名詞", + "pn": -0.350922 + }, + { + "surface": "蒸留水", + "readging": "じょうりゅうすい", + "pos": "名詞", + "pn": -0.350967 + }, + { + "surface": "草いきれ", + "readging": "くさいきれ", + "pos": "名詞", + "pn": -0.350972 + }, + { + "surface": "財務諸表", + "readging": "ざいむしょひょう", + "pos": "名詞", + "pn": -0.350973 + }, + { + "surface": "歩廊", + "readging": "ほろう", + "pos": "名詞", + "pn": -0.350978 + }, + { + "surface": "刑する", + "readging": "けいする", + "pos": "動詞", + "pn": -0.350983 + }, + { + "surface": "耳打ち", + "readging": "みみうち", + "pos": "名詞", + "pn": -0.351006 + }, + { + "surface": "後裔", + "readging": "こうえい", + "pos": "名詞", + "pn": -0.35101 + }, + { + "surface": "リターン マッチ", + "readging": "リターン マッチ", + "pos": "名詞", + "pn": -0.351015 + }, + { + "surface": "霊前", + "readging": "れいぜん", + "pos": "名詞", + "pn": -0.351039 + }, + { + "surface": "恋愛", + "readging": "れんあい", + "pos": "名詞", + "pn": -0.351051 + }, + { + "surface": "棹さす", + "readging": "さおさす", + "pos": "動詞", + "pn": -0.351058 + }, + { + "surface": "蔵", + "readging": "くら", + "pos": "名詞", + "pn": -0.351078 + }, + { + "surface": "メーキャップ", + "readging": "メーキャップ", + "pos": "名詞", + "pn": -0.351107 + }, + { + "surface": "増減", + "readging": "ぞうげん", + "pos": "名詞", + "pn": -0.351119 + }, + { + "surface": "常", + "readging": "じょう", + "pos": "名詞", + "pn": -0.351166 + }, + { + "surface": "スケート", + "readging": "スケートリンク", + "pos": "名詞", + "pn": -0.351174 + }, + { + "surface": "原油", + "readging": "げんゆ", + "pos": "名詞", + "pn": -0.351174 + }, + { + "surface": "宿舎", + "readging": "しゅくしゃ", + "pos": "名詞", + "pn": -0.351187 + }, + { + "surface": "ギロチン", + "readging": "ギロチン", + "pos": "名詞", + "pn": -0.351188 + }, + { + "surface": "外れ", + "readging": "はずれ", + "pos": "名詞", + "pn": -0.351201 + }, + { + "surface": "スタイル", + "readging": "スタイルブック", + "pos": "名詞", + "pn": -0.351215 + }, + { + "surface": "社格", + "readging": "しゃかく", + "pos": "名詞", + "pn": -0.351245 + }, + { + "surface": "ぶったくる", + "readging": "ぶったくる", + "pos": "動詞", + "pn": -0.351247 + }, + { + "surface": "舌先", + "readging": "したさき", + "pos": "名詞", + "pn": -0.351253 + }, + { + "surface": "先輩", + "readging": "せんぱい", + "pos": "名詞", + "pn": -0.351288 + }, + { + "surface": "身内", + "readging": "みうち", + "pos": "名詞", + "pn": -0.351369 + }, + { + "surface": "取計らう", + "readging": "とりはからう", + "pos": "動詞", + "pn": -0.351376 + }, + { + "surface": "吹曝し", + "readging": "ふきさらし", + "pos": "名詞", + "pn": -0.351393 + }, + { + "surface": "終", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.351404 + }, + { + "surface": "甘味", + "readging": "かんみ", + "pos": "名詞", + "pn": -0.351418 + }, + { + "surface": "休止符", + "readging": "きゅうしふ", + "pos": "名詞", + "pn": -0.351437 + }, + { + "surface": "奥秘", + "readging": "おうひ", + "pos": "名詞", + "pn": -0.35144 + }, + { + "surface": "防腐", + "readging": "ぼうふ", + "pos": "名詞", + "pn": -0.35145 + }, + { + "surface": "布巾", + "readging": "ふきん", + "pos": "名詞", + "pn": -0.351476 + }, + { + "surface": "ウエーブ", + "readging": "ウエーブ", + "pos": "名詞", + "pn": -0.351488 + }, + { + "surface": "掻出す", + "readging": "かきだす", + "pos": "動詞", + "pn": -0.351503 + }, + { + "surface": "経線", + "readging": "けいせん", + "pos": "名詞", + "pn": -0.351517 + }, + { + "surface": "半期", + "readging": "はんき", + "pos": "名詞", + "pn": -0.351519 + }, + { + "surface": "闇取引", + "readging": "やみとりひき", + "pos": "名詞", + "pn": -0.351527 + }, + { + "surface": "故国", + "readging": "ここく", + "pos": "名詞", + "pn": -0.351538 + }, + { + "surface": "睨み付ける", + "readging": "にらみつける", + "pos": "動詞", + "pn": -0.351543 + }, + { + "surface": "へいこら", + "readging": "へいこら", + "pos": "副詞", + "pn": -0.351545 + }, + { + "surface": "軟性", + "readging": "なんせい", + "pos": "名詞", + "pn": -0.351565 + }, + { + "surface": "女房詞", + "readging": "にょうぼうことば", + "pos": "名詞", + "pn": -0.35158 + }, + { + "surface": "王城", + "readging": "おうじょう", + "pos": "名詞", + "pn": -0.35159 + }, + { + "surface": "漁期", + "readging": "ぎょき", + "pos": "名詞", + "pn": -0.351604 + }, + { + "surface": "立消え", + "readging": "たちぎえ", + "pos": "名詞", + "pn": -0.351623 + }, + { + "surface": "尻抜け", + "readging": "しりぬけ", + "pos": "名詞", + "pn": -0.351641 + }, + { + "surface": "流れ解散", + "readging": "ながれかいさん", + "pos": "名詞", + "pn": -0.351642 + }, + { + "surface": "跛", + "readging": "びっこ", + "pos": "名詞", + "pn": -0.351649 + }, + { + "surface": "古物", + "readging": "ふるもの", + "pos": "名詞", + "pn": -0.35167 + }, + { + "surface": "飼料", + "readging": "かいりょう", + "pos": "名詞", + "pn": -0.351671 + }, + { + "surface": "菊芋", + "readging": "きくいも", + "pos": "名詞", + "pn": -0.351682 + }, + { + "surface": "歩", + "readging": "ぶ", + "pos": "名詞", + "pn": -0.351698 + }, + { + "surface": "ファッション", + "readging": "ファッション", + "pos": "名詞", + "pn": -0.351729 + }, + { + "surface": "抄本", + "readging": "しょうほん", + "pos": "名詞", + "pn": -0.35173 + }, + { + "surface": "粗塗", + "readging": "あらぬり", + "pos": "名詞", + "pn": -0.351732 + }, + { + "surface": "肉芽組織", + "readging": "にくがそしき", + "pos": "名詞", + "pn": -0.351735 + }, + { + "surface": "捨仮名", + "readging": "すてがな", + "pos": "名詞", + "pn": -0.351743 + }, + { + "surface": "先触", + "readging": "さきぶれ", + "pos": "名詞", + "pn": -0.351744 + }, + { + "surface": "隻句", + "readging": "せっく", + "pos": "名詞", + "pn": -0.351777 + }, + { + "surface": "カナッペ", + "readging": "カナッペ", + "pos": "名詞", + "pn": -0.351796 + }, + { + "surface": "思春期", + "readging": "ししゅんき", + "pos": "名詞", + "pn": -0.351797 + }, + { + "surface": "スケジュール", + "readging": "スケジュール", + "pos": "名詞", + "pn": -0.351818 + }, + { + "surface": "宅扱", + "readging": "たくあつかい", + "pos": "名詞", + "pn": -0.351844 + }, + { + "surface": "揚陸", + "readging": "ようりく", + "pos": "名詞", + "pn": -0.351851 + }, + { + "surface": "自白", + "readging": "じはく", + "pos": "名詞", + "pn": -0.351863 + }, + { + "surface": "血圧", + "readging": "けつあつ", + "pos": "名詞", + "pn": -0.351865 + }, + { + "surface": "フェリーボート", + "readging": "フェリーボート", + "pos": "名詞", + "pn": -0.351883 + }, + { + "surface": "胚芽", + "readging": "はいが", + "pos": "名詞", + "pn": -0.351889 + }, + { + "surface": "印籠", + "readging": "いんろう", + "pos": "名詞", + "pn": -0.351898 + }, + { + "surface": "ジアスターゼ", + "readging": "ジアスターゼ", + "pos": "名詞", + "pn": -0.351911 + }, + { + "surface": "唐風", + "readging": "とうふう", + "pos": "名詞", + "pn": -0.351918 + }, + { + "surface": "過去帳", + "readging": "かこちょう", + "pos": "名詞", + "pn": -0.351934 + }, + { + "surface": "呼出", + "readging": "よびだし", + "pos": "名詞", + "pn": -0.351938 + }, + { + "surface": "読物", + "readging": "よみもの", + "pos": "名詞", + "pn": -0.351958 + }, + { + "surface": "六体", + "readging": "りくたい", + "pos": "名詞", + "pn": -0.351969 + }, + { + "surface": "編曲", + "readging": "へんきょく", + "pos": "名詞", + "pn": -0.351983 + }, + { + "surface": "税制", + "readging": "ぜいせい", + "pos": "名詞", + "pn": -0.352005 + }, + { + "surface": "義務教育", + "readging": "ぎむきょういく", + "pos": "名詞", + "pn": -0.352008 + }, + { + "surface": "忘恩", + "readging": "ぼうおん", + "pos": "名詞", + "pn": -0.352011 + }, + { + "surface": "有罪", + "readging": "ゆうざい", + "pos": "名詞", + "pn": -0.352029 + }, + { + "surface": "貧土", + "readging": "ひんど", + "pos": "名詞", + "pn": -0.35204 + }, + { + "surface": "請訓", + "readging": "せいくん", + "pos": "名詞", + "pn": -0.352041 + }, + { + "surface": "福引", + "readging": "ふくびき", + "pos": "名詞", + "pn": -0.352044 + }, + { + "surface": "返点", + "readging": "かえりてん", + "pos": "名詞", + "pn": -0.352049 + }, + { + "surface": "非役", + "readging": "ひやく", + "pos": "名詞", + "pn": -0.352053 + }, + { + "surface": "僻み根性", + "readging": "ひがみこんじょう", + "pos": "名詞", + "pn": -0.352067 + }, + { + "surface": "穂先", + "readging": "ほさき", + "pos": "名詞", + "pn": -0.352076 + }, + { + "surface": "台閣", + "readging": "たいかく", + "pos": "名詞", + "pn": -0.352106 + }, + { + "surface": "塩加減", + "readging": "しおかげん", + "pos": "名詞", + "pn": -0.352107 + }, + { + "surface": "ペーパー", + "readging": "ペーパーバック", + "pos": "名詞", + "pn": -0.352144 + }, + { + "surface": "折線", + "readging": "せっせん", + "pos": "名詞", + "pn": -0.352157 + }, + { + "surface": "歯する", + "readging": "よわいする", + "pos": "動詞", + "pn": -0.352183 + }, + { + "surface": "変哲", + "readging": "へんてつ", + "pos": "名詞", + "pn": -0.352191 + }, + { + "surface": "書牘", + "readging": "しょとく", + "pos": "名詞", + "pn": -0.352192 + }, + { + "surface": "相移転", + "readging": "そういてん", + "pos": "名詞", + "pn": -0.352203 + }, + { + "surface": "振分け髪", + "readging": "ふりわけがみ", + "pos": "名詞", + "pn": -0.352217 + }, + { + "surface": "生木", + "readging": "なまき", + "pos": "名詞", + "pn": -0.352224 + }, + { + "surface": "お座付", + "readging": "おざつき", + "pos": "名詞", + "pn": -0.352231 + }, + { + "surface": "蒸す", + "readging": "ふかす", + "pos": "動詞", + "pn": -0.352234 + }, + { + "surface": "乗算", + "readging": "じょうざん", + "pos": "名詞", + "pn": -0.352242 + }, + { + "surface": "玄孫", + "readging": "げんそん", + "pos": "名詞", + "pn": -0.352263 + }, + { + "surface": "盟主", + "readging": "めいしゅ", + "pos": "名詞", + "pn": -0.352265 + }, + { + "surface": "陰日向", + "readging": "かげひなた", + "pos": "名詞", + "pn": -0.352281 + }, + { + "surface": "蓮華", + "readging": "れんげ", + "pos": "名詞", + "pn": -0.352294 + }, + { + "surface": "業師", + "readging": "わざし", + "pos": "名詞", + "pn": -0.352337 + }, + { + "surface": "牛車", + "readging": "うしぐるま", + "pos": "名詞", + "pn": -0.352356 + }, + { + "surface": "贈答", + "readging": "ぞうとう", + "pos": "名詞", + "pn": -0.35236 + }, + { + "surface": "機略", + "readging": "きりゃく", + "pos": "名詞", + "pn": -0.352364 + }, + { + "surface": "宿引き", + "readging": "やどひき", + "pos": "名詞", + "pn": -0.352376 + }, + { + "surface": "追試", + "readging": "ついし", + "pos": "名詞", + "pn": -0.352379 + }, + { + "surface": "プロジェクト", + "readging": "プロジェクト", + "pos": "名詞", + "pn": -0.352382 + }, + { + "surface": "家庭裁判所", + "readging": "かていさいばんしょ", + "pos": "名詞", + "pn": -0.352384 + }, + { + "surface": "開業", + "readging": "かいぎょう", + "pos": "名詞", + "pn": -0.352384 + }, + { + "surface": "立方体", + "readging": "りっぽうたい", + "pos": "名詞", + "pn": -0.35242 + }, + { + "surface": "風土病", + "readging": "ふうどびょう", + "pos": "名詞", + "pn": -0.352425 + }, + { + "surface": "水源", + "readging": "すいげん", + "pos": "名詞", + "pn": -0.352426 + }, + { + "surface": "中腹", + "readging": "ちゅうふく", + "pos": "名詞", + "pn": -0.352427 + }, + { + "surface": "寮歌", + "readging": "りょうか", + "pos": "名詞", + "pn": -0.352429 + }, + { + "surface": "金鵄", + "readging": "きんし", + "pos": "名詞", + "pn": -0.352434 + }, + { + "surface": "略語", + "readging": "りゃくご", + "pos": "名詞", + "pn": -0.352458 + }, + { + "surface": "益体", + "readging": "やくたい", + "pos": "名詞", + "pn": -0.352459 + }, + { + "surface": "動物界", + "readging": "どうぶつかい", + "pos": "名詞", + "pn": -0.352468 + }, + { + "surface": "信天翁", + "readging": "あほうどり", + "pos": "名詞", + "pn": -0.352494 + }, + { + "surface": "一弦琴", + "readging": "いちげんきん", + "pos": "名詞", + "pn": -0.3525 + }, + { + "surface": "有機体", + "readging": "ゆうきたい", + "pos": "名詞", + "pn": -0.352529 + }, + { + "surface": "旅人", + "readging": "たびびと", + "pos": "名詞", + "pn": -0.352531 + }, + { + "surface": "ト書", + "readging": "とがき", + "pos": "名詞", + "pn": -0.352538 + }, + { + "surface": "キャプション", + "readging": "キャプション", + "pos": "名詞", + "pn": -0.352543 + }, + { + "surface": "内儀", + "readging": "ないぎ", + "pos": "名詞", + "pn": -0.352563 + }, + { + "surface": "柄頭", + "readging": "つかがしら", + "pos": "名詞", + "pn": -0.352579 + }, + { + "surface": "辞去", + "readging": "じきょ", + "pos": "名詞", + "pn": -0.352636 + }, + { + "surface": "足下", + "readging": "そっか", + "pos": "名詞", + "pn": -0.352673 + }, + { + "surface": "梗塞", + "readging": "こうそく", + "pos": "名詞", + "pn": -0.352697 + }, + { + "surface": "極月", + "readging": "ごくげつ", + "pos": "名詞", + "pn": -0.352805 + }, + { + "surface": "デシン", + "readging": "デシン", + "pos": "名詞", + "pn": -0.352846 + }, + { + "surface": "製鋼", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.352851 + }, + { + "surface": "棟梁", + "readging": "とうりょう", + "pos": "名詞", + "pn": -0.35286 + }, + { + "surface": "呼掛ける", + "readging": "よびかける", + "pos": "動詞", + "pn": -0.352872 + }, + { + "surface": "外囲い", + "readging": "そとがこい", + "pos": "名詞", + "pn": -0.35288 + }, + { + "surface": "迷夢", + "readging": "めいむ", + "pos": "名詞", + "pn": -0.352897 + }, + { + "surface": "通読", + "readging": "つうどく", + "pos": "名詞", + "pn": -0.352927 + }, + { + "surface": "卜", + "readging": "ぼく", + "pos": "名詞", + "pn": -0.352938 + }, + { + "surface": "拝領", + "readging": "はいりょう", + "pos": "名詞", + "pn": -0.352944 + }, + { + "surface": "流れ図", + "readging": "ながれず", + "pos": "名詞", + "pn": -0.352949 + }, + { + "surface": "トレンド", + "readging": "トレンド", + "pos": "名詞", + "pn": -0.352969 + }, + { + "surface": "実", + "readging": "じつ", + "pos": "名詞", + "pn": -0.352971 + }, + { + "surface": "後胤", + "readging": "こういん", + "pos": "名詞", + "pn": -0.352983 + }, + { + "surface": "レーサー", + "readging": "レーサー", + "pos": "名詞", + "pn": -0.352992 + }, + { + "surface": "黴菌", + "readging": "ばいきん", + "pos": "名詞", + "pn": -0.352995 + }, + { + "surface": "女院", + "readging": "にょういん", + "pos": "名詞", + "pn": -0.352998 + }, + { + "surface": "互換", + "readging": "ごかん", + "pos": "名詞", + "pn": -0.353 + }, + { + "surface": "誘い掛ける", + "readging": "さそいかける", + "pos": "動詞", + "pn": -0.353027 + }, + { + "surface": "昇汞水", + "readging": "しょうこうすい", + "pos": "名詞", + "pn": -0.353028 + }, + { + "surface": "天袋", + "readging": "てんぶくろ", + "pos": "名詞", + "pn": -0.353028 + }, + { + "surface": "路銀", + "readging": "ろぎん", + "pos": "名詞", + "pn": -0.353037 + }, + { + "surface": "パーセンテージ", + "readging": "パーセンテージ", + "pos": "名詞", + "pn": -0.353049 + }, + { + "surface": "篠笛", + "readging": "しのぶえ", + "pos": "名詞", + "pn": -0.353055 + }, + { + "surface": "手桎", + "readging": "てかせ", + "pos": "名詞", + "pn": -0.353084 + }, + { + "surface": "印材", + "readging": "いんざい", + "pos": "名詞", + "pn": -0.353093 + }, + { + "surface": "切捨て", + "readging": "きりすて", + "pos": "名詞", + "pn": -0.353115 + }, + { + "surface": "大我", + "readging": "だいが", + "pos": "名詞", + "pn": -0.353116 + }, + { + "surface": "すごすご", + "readging": "すごすご", + "pos": "副詞", + "pn": -0.353129 + }, + { + "surface": "茣蓙", + "readging": "ござ", + "pos": "名詞", + "pn": -0.353165 + }, + { + "surface": "袖手傍観", + "readging": "しゅうしゅぼうかん", + "pos": "名詞", + "pn": -0.353173 + }, + { + "surface": "指示薬", + "readging": "しじやく", + "pos": "名詞", + "pn": -0.353189 + }, + { + "surface": "易者", + "readging": "えきしゃ", + "pos": "名詞", + "pn": -0.353195 + }, + { + "surface": "記入", + "readging": "きにゅう", + "pos": "名詞", + "pn": -0.353211 + }, + { + "surface": "トライ", + "readging": "トライ", + "pos": "名詞", + "pn": -0.353227 + }, + { + "surface": "冠木", + "readging": "かぶき", + "pos": "名詞", + "pn": -0.35323 + }, + { + "surface": "多湿", + "readging": "たしつ", + "pos": "名詞", + "pn": -0.353243 + }, + { + "surface": "珪藻土", + "readging": "けいそうど", + "pos": "名詞", + "pn": -0.353259 + }, + { + "surface": "返し縫い", + "readging": "かえしぬい", + "pos": "名詞", + "pn": -0.35328 + }, + { + "surface": "食む", + "readging": "はむ", + "pos": "動詞", + "pn": -0.353293 + }, + { + "surface": "黄鉄鉱", + "readging": "おうてっこう", + "pos": "名詞", + "pn": -0.353301 + }, + { + "surface": "酋長", + "readging": "しゅうちょう", + "pos": "名詞", + "pn": -0.353314 + }, + { + "surface": "末広", + "readging": "すえひろ", + "pos": "名詞", + "pn": -0.353328 + }, + { + "surface": "五根", + "readging": "ごこん", + "pos": "名詞", + "pn": -0.353331 + }, + { + "surface": "バーナー", + "readging": "バーナー", + "pos": "名詞", + "pn": -0.353331 + }, + { + "surface": "トーチカ", + "readging": "トーチカ", + "pos": "名詞", + "pn": -0.353339 + }, + { + "surface": "金策", + "readging": "きんさく", + "pos": "名詞", + "pn": -0.353341 + }, + { + "surface": "錘", + "readging": "つむ", + "pos": "名詞", + "pn": -0.353367 + }, + { + "surface": "独奏", + "readging": "どくそう", + "pos": "名詞", + "pn": -0.353381 + }, + { + "surface": "農閑期", + "readging": "のうかんき", + "pos": "名詞", + "pn": -0.353393 + }, + { + "surface": "チーム", + "readging": "チームメート", + "pos": "名詞", + "pn": -0.353416 + }, + { + "surface": "船尾", + "readging": "せんび", + "pos": "名詞", + "pn": -0.353435 + }, + { + "surface": "盛物", + "readging": "もりもの", + "pos": "名詞", + "pn": -0.353438 + }, + { + "surface": "滅法", + "readging": "めっぽう", + "pos": "副詞", + "pn": -0.353446 + }, + { + "surface": "潮風", + "readging": "しおかぜ", + "pos": "名詞", + "pn": -0.353447 + }, + { + "surface": "南京錠", + "readging": "なんきんじょう", + "pos": "名詞", + "pn": -0.353467 + }, + { + "surface": "ブルジョア", + "readging": "ブルジョア", + "pos": "名詞", + "pn": -0.353472 + }, + { + "surface": "引詰め", + "readging": "ひっつめ", + "pos": "名詞", + "pn": -0.353473 + }, + { + "surface": "千振", + "readging": "せんぶり", + "pos": "名詞", + "pn": -0.353477 + }, + { + "surface": "寄縋る", + "readging": "よりすがる", + "pos": "動詞", + "pn": -0.353479 + }, + { + "surface": "首席", + "readging": "しゅせき", + "pos": "名詞", + "pn": -0.353484 + }, + { + "surface": "率", + "readging": "りつ", + "pos": "名詞", + "pn": -0.353538 + }, + { + "surface": "遊吟", + "readging": "ゆうぎん", + "pos": "名詞", + "pn": -0.353562 + }, + { + "surface": "初冬", + "readging": "しょとう", + "pos": "名詞", + "pn": -0.353568 + }, + { + "surface": "針路", + "readging": "しんろ", + "pos": "名詞", + "pn": -0.353569 + }, + { + "surface": "国力", + "readging": "こくりょく", + "pos": "名詞", + "pn": -0.353575 + }, + { + "surface": "空", + "readging": "から", + "pos": "名詞", + "pn": -0.353581 + }, + { + "surface": "上司", + "readging": "じょうし", + "pos": "名詞", + "pn": -0.353588 + }, + { + "surface": "へぎ", + "readging": "へぎ", + "pos": "名詞", + "pn": -0.3536 + }, + { + "surface": "猿轡", + "readging": "さるぐつわ", + "pos": "名詞", + "pn": -0.353605 + }, + { + "surface": "鬢長", + "readging": "びんなが", + "pos": "名詞", + "pn": -0.35361 + }, + { + "surface": "指向", + "readging": "しこう", + "pos": "名詞", + "pn": -0.353678 + }, + { + "surface": "防備", + "readging": "ぼうび", + "pos": "名詞", + "pn": -0.353684 + }, + { + "surface": "やす", + "readging": "やす", + "pos": "名詞", + "pn": -0.353694 + }, + { + "surface": "あらせいとう", + "readging": "あらせいとう", + "pos": "名詞", + "pn": -0.353696 + }, + { + "surface": "何事", + "readging": "なにごと", + "pos": "名詞", + "pn": -0.353705 + }, + { + "surface": "求", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.353709 + }, + { + "surface": "服す", + "readging": "ふくす", + "pos": "動詞", + "pn": -0.353731 + }, + { + "surface": "輸血", + "readging": "ゆけつ", + "pos": "名詞", + "pn": -0.353734 + }, + { + "surface": "割れ物", + "readging": "われもの", + "pos": "名詞", + "pn": -0.353758 + }, + { + "surface": "耳", + "readging": "じ", + "pos": "名詞", + "pn": -0.35376 + }, + { + "surface": "公務", + "readging": "こうむ", + "pos": "名詞", + "pn": -0.353795 + }, + { + "surface": "捲し立てる", + "readging": "まくしたてる", + "pos": "動詞", + "pn": -0.353803 + }, + { + "surface": "燃盛る", + "readging": "もえさかる", + "pos": "動詞", + "pn": -0.353813 + }, + { + "surface": "新聞種", + "readging": "しんぶんだね", + "pos": "名詞", + "pn": -0.353818 + }, + { + "surface": "水黽", + "readging": "あめんぼ", + "pos": "名詞", + "pn": -0.353852 + }, + { + "surface": "期す", + "readging": "きす", + "pos": "動詞", + "pn": -0.353865 + }, + { + "surface": "血統", + "readging": "けっとう", + "pos": "名詞", + "pn": -0.35392 + }, + { + "surface": "向う側", + "readging": "むこうがわ", + "pos": "名詞", + "pn": -0.353926 + }, + { + "surface": "蓮根", + "readging": "れんこん", + "pos": "名詞", + "pn": -0.353929 + }, + { + "surface": "お化け", + "readging": "おばけ", + "pos": "名詞", + "pn": -0.353949 + }, + { + "surface": "衛星通信", + "readging": "えいせいつうしん", + "pos": "名詞", + "pn": -0.353957 + }, + { + "surface": "代替り", + "readging": "だいがわり", + "pos": "名詞", + "pn": -0.353977 + }, + { + "surface": "広葉樹", + "readging": "こうようじゅ", + "pos": "名詞", + "pn": -0.353993 + }, + { + "surface": "ピペット", + "readging": "ピペット", + "pos": "名詞", + "pn": -0.353995 + }, + { + "surface": "湯茶", + "readging": "ゆちゃ", + "pos": "名詞", + "pn": -0.354003 + }, + { + "surface": "皇太后", + "readging": "こうたいごう", + "pos": "名詞", + "pn": -0.354023 + }, + { + "surface": "損する", + "readging": "そんする", + "pos": "動詞", + "pn": -0.354039 + }, + { + "surface": "歌劇", + "readging": "かげき", + "pos": "名詞", + "pn": -0.354042 + }, + { + "surface": "列挙", + "readging": "れっきょ", + "pos": "名詞", + "pn": -0.354054 + }, + { + "surface": "共稼ぎ", + "readging": "ともかせぎ", + "pos": "名詞", + "pn": -0.354054 + }, + { + "surface": "幅", + "readging": "はば", + "pos": "名詞", + "pn": -0.35408 + }, + { + "surface": "正す", + "readging": "ただす", + "pos": "動詞", + "pn": -0.354091 + }, + { + "surface": "残金", + "readging": "ざんきん", + "pos": "名詞", + "pn": -0.354092 + }, + { + "surface": "玳瑁", + "readging": "たいまい", + "pos": "名詞", + "pn": -0.354108 + }, + { + "surface": "翻案", + "readging": "ほんあん", + "pos": "名詞", + "pn": -0.354113 + }, + { + "surface": "鱈子", + "readging": "たらこ", + "pos": "名詞", + "pn": -0.354134 + }, + { + "surface": "魑魅", + "readging": "すだま", + "pos": "名詞", + "pn": -0.354144 + }, + { + "surface": "すっからかん", + "readging": "すっからかん", + "pos": "名詞", + "pn": -0.35415 + }, + { + "surface": "得分", + "readging": "とくぶん", + "pos": "名詞", + "pn": -0.354152 + }, + { + "surface": "婿", + "readging": "むこ", + "pos": "名詞", + "pn": -0.354159 + }, + { + "surface": "撫子", + "readging": "なでしこ", + "pos": "名詞", + "pn": -0.35417 + }, + { + "surface": "正常", + "readging": "せいじょう", + "pos": "名詞", + "pn": -0.354173 + }, + { + "surface": "転貸", + "readging": "てんたい", + "pos": "名詞", + "pn": -0.354205 + }, + { + "surface": "飛板", + "readging": "とびいた", + "pos": "名詞", + "pn": -0.35422 + }, + { + "surface": "語順", + "readging": "ごじゅん", + "pos": "名詞", + "pn": -0.354236 + }, + { + "surface": "旅芸人", + "readging": "たびげいにん", + "pos": "名詞", + "pn": -0.35425 + }, + { + "surface": "花道", + "readging": "かどう", + "pos": "名詞", + "pn": -0.354258 + }, + { + "surface": "繰込む", + "readging": "くりこむ", + "pos": "動詞", + "pn": -0.354264 + }, + { + "surface": "景物詩", + "readging": "けいぶつし", + "pos": "名詞", + "pn": -0.354267 + }, + { + "surface": "強心剤", + "readging": "きょうしんざい", + "pos": "名詞", + "pn": -0.354287 + }, + { + "surface": "大木", + "readging": "たいぼく", + "pos": "名詞", + "pn": -0.354289 + }, + { + "surface": "報道機関", + "readging": "ほうどうきかん", + "pos": "名詞", + "pn": -0.354324 + }, + { + "surface": "閲歴", + "readging": "えつれき", + "pos": "名詞", + "pn": -0.354337 + }, + { + "surface": "分派", + "readging": "ぶんぱ", + "pos": "名詞", + "pn": -0.354356 + }, + { + "surface": "徒", + "readging": "かち", + "pos": "名詞", + "pn": -0.35439 + }, + { + "surface": "極量", + "readging": "きょくりょう", + "pos": "名詞", + "pn": -0.35442 + }, + { + "surface": "アイス", + "readging": "アイス", + "pos": "名詞", + "pn": -0.354428 + }, + { + "surface": "落盤", + "readging": "らくばん", + "pos": "名詞", + "pn": -0.354434 + }, + { + "surface": "小菊", + "readging": "こぎく", + "pos": "名詞", + "pn": -0.354455 + }, + { + "surface": "重", + "readging": "え", + "pos": "名詞", + "pn": -0.354492 + }, + { + "surface": "有体", + "readging": "ありてい", + "pos": "名詞", + "pn": -0.354506 + }, + { + "surface": "新芽", + "readging": "しんめ", + "pos": "名詞", + "pn": -0.354518 + }, + { + "surface": "妻", + "readging": "さい", + "pos": "名詞", + "pn": -0.354539 + }, + { + "surface": "最短", + "readging": "さいたん", + "pos": "名詞", + "pn": -0.35455 + }, + { + "surface": "多多", + "readging": "たた", + "pos": "副詞", + "pn": -0.354553 + }, + { + "surface": "濁声", + "readging": "だくせい", + "pos": "名詞", + "pn": -0.354564 + }, + { + "surface": "へどもど", + "readging": "へどもど", + "pos": "副詞", + "pn": -0.354576 + }, + { + "surface": "死の灰", + "readging": "しのはい", + "pos": "名詞", + "pn": -0.354584 + }, + { + "surface": "見切る", + "readging": "みきる", + "pos": "動詞", + "pn": -0.35459 + }, + { + "surface": "食扶持", + "readging": "くいぶち", + "pos": "名詞", + "pn": -0.35459 + }, + { + "surface": "予算", + "readging": "よさん", + "pos": "名詞", + "pn": -0.354602 + }, + { + "surface": "番狂わせ", + "readging": "ばんくるわせ", + "pos": "名詞", + "pn": -0.354615 + }, + { + "surface": "浪浪", + "readging": "ろうろう", + "pos": "名詞", + "pn": -0.354624 + }, + { + "surface": "左舷", + "readging": "さげん", + "pos": "名詞", + "pn": -0.354635 + }, + { + "surface": "白米", + "readging": "はくまい", + "pos": "名詞", + "pn": -0.354645 + }, + { + "surface": "服膺", + "readging": "ふくよう", + "pos": "名詞", + "pn": -0.35467 + }, + { + "surface": "風通織", + "readging": "ふうつうおり", + "pos": "名詞", + "pn": -0.354675 + }, + { + "surface": "心積り", + "readging": "こころづもり", + "pos": "名詞", + "pn": -0.354682 + }, + { + "surface": "連れ", + "readging": "づれ", + "pos": "名詞", + "pn": -0.354684 + }, + { + "surface": "旅程", + "readging": "りょてい", + "pos": "名詞", + "pn": -0.354717 + }, + { + "surface": "考査", + "readging": "こうさ", + "pos": "名詞", + "pn": -0.354725 + }, + { + "surface": "肝胆", + "readging": "かんたん", + "pos": "名詞", + "pn": -0.354734 + }, + { + "surface": "衝撃", + "readging": "しょうげき", + "pos": "名詞", + "pn": -0.354743 + }, + { + "surface": "一親等", + "readging": "いっしんとう", + "pos": "名詞", + "pn": -0.354765 + }, + { + "surface": "蓄電器", + "readging": "ちくでんき", + "pos": "名詞", + "pn": -0.354777 + }, + { + "surface": "急ぎ", + "readging": "いそぎ", + "pos": "名詞", + "pn": -0.354781 + }, + { + "surface": "ハッチ", + "readging": "ハッチ", + "pos": "名詞", + "pn": -0.354786 + }, + { + "surface": "湯治", + "readging": "とうじ", + "pos": "名詞", + "pn": -0.354793 + }, + { + "surface": "花鶏", + "readging": "あとり", + "pos": "名詞", + "pn": -0.354807 + }, + { + "surface": "ばら肉", + "readging": "ばらにく", + "pos": "名詞", + "pn": -0.354811 + }, + { + "surface": "習い事", + "readging": "ならいごと", + "pos": "名詞", + "pn": -0.354813 + }, + { + "surface": "武断", + "readging": "ぶだん", + "pos": "名詞", + "pn": -0.354815 + }, + { + "surface": "連盟", + "readging": "れんめい", + "pos": "名詞", + "pn": -0.354829 + }, + { + "surface": "ホーム", + "readging": "ホームストレッチ", + "pos": "名詞", + "pn": -0.354835 + }, + { + "surface": "登攀", + "readging": "とうはん", + "pos": "名詞", + "pn": -0.35485 + }, + { + "surface": "桜餅", + "readging": "さくらもち", + "pos": "名詞", + "pn": -0.354853 + }, + { + "surface": "外港", + "readging": "がいこう", + "pos": "名詞", + "pn": -0.354863 + }, + { + "surface": "カーニバル", + "readging": "カーニバル", + "pos": "名詞", + "pn": -0.354878 + }, + { + "surface": "位する", + "readging": "くらいする", + "pos": "動詞", + "pn": -0.354878 + }, + { + "surface": "競落す", + "readging": "せりおとす", + "pos": "動詞", + "pn": -0.354883 + }, + { + "surface": "随感", + "readging": "ずいかん", + "pos": "名詞", + "pn": -0.354886 + }, + { + "surface": "血球", + "readging": "けっきゅう", + "pos": "名詞", + "pn": -0.35489 + }, + { + "surface": "近火", + "readging": "きんか", + "pos": "名詞", + "pn": -0.354896 + }, + { + "surface": "婆", + "readging": "ばば", + "pos": "名詞", + "pn": -0.35492 + }, + { + "surface": "軍旗", + "readging": "ぐんき", + "pos": "名詞", + "pn": -0.35493 + }, + { + "surface": "書家", + "readging": "しょか", + "pos": "名詞", + "pn": -0.354932 + }, + { + "surface": "四手", + "readging": "よつで", + "pos": "名詞", + "pn": -0.354945 + }, + { + "surface": "総体", + "readging": "そうたい", + "pos": "名詞", + "pn": -0.35495 + }, + { + "surface": "彫琢", + "readging": "ちょうたく", + "pos": "名詞", + "pn": -0.354984 + }, + { + "surface": "手踊", + "readging": "ておどり", + "pos": "名詞", + "pn": -0.355002 + }, + { + "surface": "太皇太后", + "readging": "たいこうたいこう", + "pos": "名詞", + "pn": -0.355004 + }, + { + "surface": "下賜", + "readging": "かし", + "pos": "名詞", + "pn": -0.355023 + }, + { + "surface": "即位", + "readging": "そくい", + "pos": "名詞", + "pn": -0.355028 + }, + { + "surface": "食虫植物", + "readging": "しょくちゅうしょくぶつ", + "pos": "名詞", + "pn": -0.355029 + }, + { + "surface": "ルネッサンス", + "readging": "ルネッサンス", + "pos": "名詞", + "pn": -0.355049 + }, + { + "surface": "韻字", + "readging": "いんじ", + "pos": "名詞", + "pn": -0.355055 + }, + { + "surface": "学", + "readging": "がく", + "pos": "名詞", + "pn": -0.355066 + }, + { + "surface": "無尽", + "readging": "むじん", + "pos": "名詞", + "pn": -0.355081 + }, + { + "surface": "見せ付ける", + "readging": "みせつける", + "pos": "動詞", + "pn": -0.355084 + }, + { + "surface": "体側", + "readging": "たいそく", + "pos": "名詞", + "pn": -0.355105 + }, + { + "surface": "長押", + "readging": "なげし", + "pos": "名詞", + "pn": -0.355106 + }, + { + "surface": "修羅", + "readging": "しゅら", + "pos": "名詞", + "pn": -0.35512 + }, + { + "surface": "ヤード", + "readging": "ヤード", + "pos": "名詞", + "pn": -0.35516 + }, + { + "surface": "甘汞", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.355187 + }, + { + "surface": "浮木", + "readging": "うきぎ", + "pos": "名詞", + "pn": -0.355228 + }, + { + "surface": "マス", + "readging": "マスコミュニケーション", + "pos": "名詞", + "pn": -0.355256 + }, + { + "surface": "浪花節", + "readging": "なにわぶし", + "pos": "名詞", + "pn": -0.355285 + }, + { + "surface": "シンジケート", + "readging": "シンジケート", + "pos": "名詞", + "pn": -0.355323 + }, + { + "surface": "助字", + "readging": "じょじ", + "pos": "名詞", + "pn": -0.355329 + }, + { + "surface": "尾長", + "readging": "おなが", + "pos": "名詞", + "pn": -0.35533 + }, + { + "surface": "髪結床", + "readging": "かみゆい", + "pos": "名詞", + "pn": -0.355346 + }, + { + "surface": "女童", + "readging": "おんなわらべ", + "pos": "名詞", + "pn": -0.355348 + }, + { + "surface": "流れ作業", + "readging": "ながれさぎょう", + "pos": "名詞", + "pn": -0.355359 + }, + { + "surface": "連合う", + "readging": "つれあう", + "pos": "動詞", + "pn": -0.355378 + }, + { + "surface": "募兵", + "readging": "ぼへい", + "pos": "名詞", + "pn": -0.355379 + }, + { + "surface": "スパイ", + "readging": "スパイ", + "pos": "名詞", + "pn": -0.355393 + }, + { + "surface": "空挺", + "readging": "くうてい", + "pos": "名詞", + "pn": -0.355395 + }, + { + "surface": "行幸", + "readging": "ぎょうこう", + "pos": "名詞", + "pn": -0.355419 + }, + { + "surface": "紳", + "readging": "しん", + "pos": "名詞", + "pn": -0.355421 + }, + { + "surface": "分社", + "readging": "ぶんしゃ", + "pos": "名詞", + "pn": -0.355422 + }, + { + "surface": "アネモネ", + "readging": "アネモネ", + "pos": "名詞", + "pn": -0.355448 + }, + { + "surface": "色物", + "readging": "いろもの", + "pos": "名詞", + "pn": -0.35545 + }, + { + "surface": "人文字", + "readging": "ひともじ", + "pos": "名詞", + "pn": -0.355455 + }, + { + "surface": "胃カメラ", + "readging": "いカメラ", + "pos": "名詞", + "pn": -0.35548 + }, + { + "surface": "藪蝨", + "readging": "やぶじらみ", + "pos": "名詞", + "pn": -0.355487 + }, + { + "surface": "火口丘", + "readging": "かこうきゅう", + "pos": "名詞", + "pn": -0.355493 + }, + { + "surface": "即興", + "readging": "そっきょう", + "pos": "名詞", + "pn": -0.355495 + }, + { + "surface": "没食子", + "readging": "もっしょくし", + "pos": "名詞", + "pn": -0.355499 + }, + { + "surface": "真書", + "readging": "しんかき", + "pos": "名詞", + "pn": -0.355516 + }, + { + "surface": "ドスキン", + "readging": "ドスキン", + "pos": "名詞", + "pn": -0.355539 + }, + { + "surface": "渺", + "readging": "びょう", + "pos": "名詞", + "pn": -0.35555 + }, + { + "surface": "鼻柱", + "readging": "はなばしら", + "pos": "名詞", + "pn": -0.355554 + }, + { + "surface": "凡そ", + "readging": "およそ", + "pos": "名詞", + "pn": -0.355568 + }, + { + "surface": "草笛", + "readging": "くさぶえ", + "pos": "名詞", + "pn": -0.355579 + }, + { + "surface": "天衣無縫", + "readging": "てんいむほう", + "pos": "名詞", + "pn": -0.355582 + }, + { + "surface": "大和", + "readging": "やまとうた", + "pos": "名詞", + "pn": -0.355588 + }, + { + "surface": "兼官", + "readging": "けんかん", + "pos": "名詞", + "pn": -0.355637 + }, + { + "surface": "全期", + "readging": "ぜんき", + "pos": "名詞", + "pn": -0.355644 + }, + { + "surface": "黄疸", + "readging": "おうだん", + "pos": "名詞", + "pn": -0.355659 + }, + { + "surface": "乳酸菌", + "readging": "にゅうさんきん", + "pos": "名詞", + "pn": -0.35568 + }, + { + "surface": "三門", + "readging": "さんもん", + "pos": "名詞", + "pn": -0.355683 + }, + { + "surface": "麻", + "readging": "あさ", + "pos": "名詞", + "pn": -0.355709 + }, + { + "surface": "白張", + "readging": "しらはり", + "pos": "名詞", + "pn": -0.355751 + }, + { + "surface": "ジャーナリズム", + "readging": "ジャーナリズム", + "pos": "名詞", + "pn": -0.355758 + }, + { + "surface": "物権", + "readging": "ぶっけん", + "pos": "名詞", + "pn": -0.355794 + }, + { + "surface": "うかと", + "readging": "うかと", + "pos": "副詞", + "pn": -0.355806 + }, + { + "surface": "地酒", + "readging": "じざけ", + "pos": "名詞", + "pn": -0.355818 + }, + { + "surface": "パッチワーク", + "readging": "パッチワーク", + "pos": "名詞", + "pn": -0.355821 + }, + { + "surface": "三猿", + "readging": "さんえん", + "pos": "名詞", + "pn": -0.355838 + }, + { + "surface": "着痩せ", + "readging": "きやせ", + "pos": "名詞", + "pn": -0.355838 + }, + { + "surface": "七宝", + "readging": "しっぽう", + "pos": "名詞", + "pn": -0.355841 + }, + { + "surface": "若しか", + "readging": "もしか", + "pos": "名詞", + "pn": -0.355857 + }, + { + "surface": "句読点", + "readging": "くとうてん", + "pos": "名詞", + "pn": -0.35587 + }, + { + "surface": "介入", + "readging": "かいにゅう", + "pos": "名詞", + "pn": -0.355872 + }, + { + "surface": "腹癒せ", + "readging": "はらいせ", + "pos": "名詞", + "pn": -0.355879 + }, + { + "surface": "戒名", + "readging": "かいみょう", + "pos": "名詞", + "pn": -0.355888 + }, + { + "surface": "来し方", + "readging": "きしかた", + "pos": "名詞", + "pn": -0.355892 + }, + { + "surface": "霊迎え", + "readging": "たまむかえ", + "pos": "名詞", + "pn": -0.355917 + }, + { + "surface": "卓袱屋", + "readging": "ちゃぶや", + "pos": "名詞", + "pn": -0.355925 + }, + { + "surface": "のっしのっし", + "readging": "のっしのっし", + "pos": "副詞", + "pn": -0.355934 + }, + { + "surface": "糧米", + "readging": "りょうまい", + "pos": "名詞", + "pn": -0.35594 + }, + { + "surface": "鼻持ち", + "readging": "はなもち", + "pos": "名詞", + "pn": -0.355945 + }, + { + "surface": "全線", + "readging": "ぜんせん", + "pos": "名詞", + "pn": -0.355968 + }, + { + "surface": "藪蚊", + "readging": "やぶか", + "pos": "名詞", + "pn": -0.355996 + }, + { + "surface": "丸麦", + "readging": "まるむぎ", + "pos": "名詞", + "pn": -0.355997 + }, + { + "surface": "約束手形", + "readging": "やくそくてがた", + "pos": "名詞", + "pn": -0.356 + }, + { + "surface": "小雀", + "readging": "こがら", + "pos": "名詞", + "pn": -0.356012 + }, + { + "surface": "読合せ", + "readging": "よみあわせ", + "pos": "名詞", + "pn": -0.356017 + }, + { + "surface": "貸付", + "readging": "かしつけ", + "pos": "名詞", + "pn": -0.356089 + }, + { + "surface": "債", + "readging": "さい", + "pos": "名詞", + "pn": -0.356092 + }, + { + "surface": "連作", + "readging": "れんさく", + "pos": "名詞", + "pn": -0.356094 + }, + { + "surface": "スタイル", + "readging": "スタイル", + "pos": "名詞", + "pn": -0.356105 + }, + { + "surface": "とろんと", + "readging": "とろんと", + "pos": "副詞", + "pn": -0.356139 + }, + { + "surface": "動悸", + "readging": "どうき", + "pos": "名詞", + "pn": -0.356156 + }, + { + "surface": "出仕", + "readging": "しゅっし", + "pos": "名詞", + "pn": -0.356165 + }, + { + "surface": "フェイント", + "readging": "フェイント", + "pos": "名詞", + "pn": -0.35618 + }, + { + "surface": "島台", + "readging": "しまだい", + "pos": "名詞", + "pn": -0.356191 + }, + { + "surface": "ナイフ", + "readging": "ナイフ", + "pos": "名詞", + "pn": -0.356197 + }, + { + "surface": "脳波", + "readging": "のうは", + "pos": "名詞", + "pn": -0.356209 + }, + { + "surface": "万有引力", + "readging": "ばんゆういんりょく", + "pos": "名詞", + "pn": -0.356212 + }, + { + "surface": "ラップ", + "readging": "ラップタイム", + "pos": "名詞", + "pn": -0.356235 + }, + { + "surface": "郷関", + "readging": "きょうかん", + "pos": "名詞", + "pn": -0.356246 + }, + { + "surface": "言の葉", + "readging": "ことのは", + "pos": "名詞", + "pn": -0.356253 + }, + { + "surface": "採訪", + "readging": "さいほう", + "pos": "名詞", + "pn": -0.356263 + }, + { + "surface": "マルメロ", + "readging": "マルメロ", + "pos": "名詞", + "pn": -0.356266 + }, + { + "surface": "人造絹糸", + "readging": "じんぞうけんし", + "pos": "名詞", + "pn": -0.356272 + }, + { + "surface": "減少", + "readging": "げんしょう", + "pos": "名詞", + "pn": -0.356283 + }, + { + "surface": "インフォメーション", + "readging": "インフォメーション", + "pos": "名詞", + "pn": -0.356292 + }, + { + "surface": "鮮紅", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.356296 + }, + { + "surface": "ニトロセルロース", + "readging": "ニトロセルロース", + "pos": "名詞", + "pn": -0.356302 + }, + { + "surface": "踊り子", + "readging": "おどりこ", + "pos": "名詞", + "pn": -0.356309 + }, + { + "surface": "ベアリング", + "readging": "ベアリング", + "pos": "名詞", + "pn": -0.356311 + }, + { + "surface": "汽船", + "readging": "きせん", + "pos": "名詞", + "pn": -0.356326 + }, + { + "surface": "二十日正月", + "readging": "はつかしょうがつ", + "pos": "名詞", + "pn": -0.356327 + }, + { + "surface": "太刀", + "readging": "たちとり", + "pos": "名詞", + "pn": -0.356338 + }, + { + "surface": "テラス", + "readging": "テラス", + "pos": "名詞", + "pn": -0.356377 + }, + { + "surface": "ポンド", + "readging": "ポンド", + "pos": "名詞", + "pn": -0.356393 + }, + { + "surface": "二化螟蛾", + "readging": "にかめいが", + "pos": "名詞", + "pn": -0.356414 + }, + { + "surface": "閉山", + "readging": "へいざん", + "pos": "名詞", + "pn": -0.356458 + }, + { + "surface": "失名氏", + "readging": "しつめいし", + "pos": "名詞", + "pn": -0.356487 + }, + { + "surface": "潮", + "readging": "しお", + "pos": "名詞", + "pn": -0.356507 + }, + { + "surface": "軽便鉄道", + "readging": "けいべんてつどう", + "pos": "名詞", + "pn": -0.356561 + }, + { + "surface": "ppm", + "readging": "ピーピーエム", + "pos": "名詞", + "pn": -0.356563 + }, + { + "surface": "いなか回り", + "readging": "いなか", + "pos": "名詞", + "pn": -0.35661 + }, + { + "surface": "拡張", + "readging": "かくちょう", + "pos": "名詞", + "pn": -0.356623 + }, + { + "surface": "旋回", + "readging": "せんかい", + "pos": "名詞", + "pn": -0.356641 + }, + { + "surface": "赤木", + "readging": "あかぎ", + "pos": "名詞", + "pn": -0.356645 + }, + { + "surface": "転げ込む", + "readging": "ころげこむ", + "pos": "動詞", + "pn": -0.356647 + }, + { + "surface": "松茸", + "readging": "まつたけ", + "pos": "名詞", + "pn": -0.356647 + }, + { + "surface": "点眼水", + "readging": "てんがんすい", + "pos": "名詞", + "pn": -0.356652 + }, + { + "surface": "吉祥天", + "readging": "きちじょうてん", + "pos": "名詞", + "pn": -0.356657 + }, + { + "surface": "情報処理", + "readging": "じょうほうしょり", + "pos": "名詞", + "pn": -0.356673 + }, + { + "surface": "草昧", + "readging": "そうまい", + "pos": "名詞", + "pn": -0.356679 + }, + { + "surface": "敗勢", + "readging": "はいせい", + "pos": "名詞", + "pn": -0.35671 + }, + { + "surface": "シート", + "readging": "シート", + "pos": "名詞", + "pn": -0.35671 + }, + { + "surface": "摘発", + "readging": "てきはつ", + "pos": "名詞", + "pn": -0.356787 + }, + { + "surface": "シングルス", + "readging": "シングルス", + "pos": "名詞", + "pn": -0.356796 + }, + { + "surface": "運動神経", + "readging": "うんどうしんけい", + "pos": "名詞", + "pn": -0.356799 + }, + { + "surface": "教祖", + "readging": "きょうそ", + "pos": "名詞", + "pn": -0.356829 + }, + { + "surface": "棒組", + "readging": "ぼうぐみ", + "pos": "名詞", + "pn": -0.356841 + }, + { + "surface": "茸狩", + "readging": "たけがり", + "pos": "名詞", + "pn": -0.356851 + }, + { + "surface": "浜焼", + "readging": "はまやき", + "pos": "名詞", + "pn": -0.356858 + }, + { + "surface": "ドア", + "readging": "ドア", + "pos": "名詞", + "pn": -0.356863 + }, + { + "surface": "乳切", + "readging": "ちぎり", + "pos": "名詞", + "pn": -0.35687 + }, + { + "surface": "向い", + "readging": "むかい", + "pos": "名詞", + "pn": -0.356877 + }, + { + "surface": "翰墨", + "readging": "かんぼく", + "pos": "名詞", + "pn": -0.356878 + }, + { + "surface": "味", + "readging": "あじ", + "pos": "名詞", + "pn": -0.3569 + }, + { + "surface": "本籤", + "readging": "ほんくじ", + "pos": "名詞", + "pn": -0.356901 + }, + { + "surface": "スチール", + "readging": "スチール", + "pos": "名詞", + "pn": -0.35692 + }, + { + "surface": "誓約", + "readging": "せいやく", + "pos": "名詞", + "pn": -0.356921 + }, + { + "surface": "冗談口", + "readging": "じょうだんぐち", + "pos": "名詞", + "pn": -0.356936 + }, + { + "surface": "頬被り", + "readging": "ほおかぶり", + "pos": "名詞", + "pn": -0.35697 + }, + { + "surface": "小納戸", + "readging": "こなんど", + "pos": "名詞", + "pn": -0.356984 + }, + { + "surface": "日に日に", + "readging": "ひにひに", + "pos": "副詞", + "pn": -0.356987 + }, + { + "surface": "切支丹", + "readging": "キリシタン", + "pos": "名詞", + "pn": -0.357016 + }, + { + "surface": "耐火", + "readging": "たいか", + "pos": "名詞", + "pn": -0.357019 + }, + { + "surface": "遷座", + "readging": "せんざ", + "pos": "名詞", + "pn": -0.35703 + }, + { + "surface": "差水", + "readging": "さしみず", + "pos": "名詞", + "pn": -0.35704 + }, + { + "surface": "錫杖", + "readging": "しゃくじょう", + "pos": "名詞", + "pn": -0.357059 + }, + { + "surface": "瓢箪鯰", + "readging": "ひょうたんなまず", + "pos": "名詞", + "pn": -0.3571 + }, + { + "surface": "結締", + "readging": "けってい", + "pos": "名詞", + "pn": -0.357137 + }, + { + "surface": "回帰線", + "readging": "かいきせん", + "pos": "名詞", + "pn": -0.357148 + }, + { + "surface": "零点", + "readging": "れいてん", + "pos": "名詞", + "pn": -0.357152 + }, + { + "surface": "尋ね物", + "readging": "たずねもの", + "pos": "名詞", + "pn": -0.357163 + }, + { + "surface": "給仕", + "readging": "きゅうじ", + "pos": "名詞", + "pn": -0.357191 + }, + { + "surface": "片割れ月", + "readging": "かたわれづき", + "pos": "名詞", + "pn": -0.357194 + }, + { + "surface": "公会", + "readging": "こうかい", + "pos": "名詞", + "pn": -0.357209 + }, + { + "surface": "等式", + "readging": "とうしき", + "pos": "名詞", + "pn": -0.357226 + }, + { + "surface": "敵本主義", + "readging": "てきほんしゅぎ", + "pos": "名詞", + "pn": -0.357228 + }, + { + "surface": "全面", + "readging": "ぜんめん", + "pos": "名詞", + "pn": -0.357233 + }, + { + "surface": "応召", + "readging": "おうしょう", + "pos": "名詞", + "pn": -0.357251 + }, + { + "surface": "土着", + "readging": "どちゃく", + "pos": "名詞", + "pn": -0.357283 + }, + { + "surface": "背水の陣", + "readging": "はいすいのじん", + "pos": "名詞", + "pn": -0.357313 + }, + { + "surface": "付句", + "readging": "つけく", + "pos": "名詞", + "pn": -0.357326 + }, + { + "surface": "にこぽん", + "readging": "にこぽん", + "pos": "名詞", + "pn": -0.357335 + }, + { + "surface": "引金", + "readging": "ひきがね", + "pos": "名詞", + "pn": -0.357367 + }, + { + "surface": "愁然", + "readging": "しゅうぜん", + "pos": "名詞", + "pn": -0.357437 + }, + { + "surface": "現下", + "readging": "げんか", + "pos": "名詞", + "pn": -0.357487 + }, + { + "surface": "蔟", + "readging": "まぶし", + "pos": "名詞", + "pn": -0.357502 + }, + { + "surface": "モスリン", + "readging": "モスリン", + "pos": "名詞", + "pn": -0.357528 + }, + { + "surface": "行詰る", + "readging": "ゆきづまる", + "pos": "動詞", + "pn": -0.35753 + }, + { + "surface": "跡始末", + "readging": "あとしまつ", + "pos": "名詞", + "pn": -0.357589 + }, + { + "surface": "とぎれる", + "readging": "とぎれる", + "pos": "動詞", + "pn": -0.357615 + }, + { + "surface": "受領", + "readging": "ずりょう", + "pos": "名詞", + "pn": -0.357618 + }, + { + "surface": "決", + "readging": "けつ", + "pos": "名詞", + "pn": -0.357621 + }, + { + "surface": "童貞", + "readging": "どうてい", + "pos": "名詞", + "pn": -0.357631 + }, + { + "surface": "長襦袢", + "readging": "ながジバン", + "pos": "名詞", + "pn": -0.35765 + }, + { + "surface": "後れ毛", + "readging": "おくれげ", + "pos": "名詞", + "pn": -0.357657 + }, + { + "surface": "厩舎", + "readging": "きゅうしゃ", + "pos": "名詞", + "pn": -0.357657 + }, + { + "surface": "順応", + "readging": "じゅんのう", + "pos": "名詞", + "pn": -0.357671 + }, + { + "surface": "アパート", + "readging": "アパート", + "pos": "名詞", + "pn": -0.3577 + }, + { + "surface": "何しろ", + "readging": "なにしろ", + "pos": "副詞", + "pn": -0.3577 + }, + { + "surface": "学際", + "readging": "がくさい", + "pos": "名詞", + "pn": -0.357701 + }, + { + "surface": "実", + "readging": "さね", + "pos": "名詞", + "pn": -0.357706 + }, + { + "surface": "六法", + "readging": "ろっぽう", + "pos": "名詞", + "pn": -0.357717 + }, + { + "surface": "仲間割れ", + "readging": "なかまわれ", + "pos": "名詞", + "pn": -0.35772 + }, + { + "surface": "好き嫌い", + "readging": "すききらい", + "pos": "名詞", + "pn": -0.357736 + }, + { + "surface": "消化腺", + "readging": "しょうかせん", + "pos": "名詞", + "pn": -0.357759 + }, + { + "surface": "工作物", + "readging": "こうさくぶつ", + "pos": "名詞", + "pn": -0.357783 + }, + { + "surface": "箱庭", + "readging": "はこにわ", + "pos": "名詞", + "pn": -0.357783 + }, + { + "surface": "リンネル", + "readging": "リンネル", + "pos": "名詞", + "pn": -0.357785 + }, + { + "surface": "持", + "readging": "じ", + "pos": "名詞", + "pn": -0.357792 + }, + { + "surface": "美濃紙", + "readging": "みのがみ", + "pos": "名詞", + "pn": -0.357825 + }, + { + "surface": "財政", + "readging": "ざいせい", + "pos": "名詞", + "pn": -0.357838 + }, + { + "surface": "片帆", + "readging": "かたほ", + "pos": "名詞", + "pn": -0.357854 + }, + { + "surface": "激湍", + "readging": "げきたん", + "pos": "名詞", + "pn": -0.357857 + }, + { + "surface": "司法官", + "readging": "しほうかん", + "pos": "名詞", + "pn": -0.357862 + }, + { + "surface": "階", + "readging": "きざはし", + "pos": "名詞", + "pn": -0.357865 + }, + { + "surface": "俗談", + "readging": "ぞくだん", + "pos": "名詞", + "pn": -0.3579 + }, + { + "surface": "同工異曲", + "readging": "どうこういきょく", + "pos": "名詞", + "pn": -0.357924 + }, + { + "surface": "たま", + "readging": "たま", + "pos": "副詞", + "pn": -0.357927 + }, + { + "surface": "関白", + "readging": "かんぱく", + "pos": "名詞", + "pn": -0.35793 + }, + { + "surface": "五蘊", + "readging": "ごうん", + "pos": "名詞", + "pn": -0.357947 + }, + { + "surface": "錦", + "readging": "にしき", + "pos": "名詞", + "pn": -0.357956 + }, + { + "surface": "武士", + "readging": "ぶし", + "pos": "名詞", + "pn": -0.357961 + }, + { + "surface": "無分別", + "readging": "むふんべつ", + "pos": "名詞", + "pn": -0.357973 + }, + { + "surface": "訳語", + "readging": "やくご", + "pos": "名詞", + "pn": -0.357985 + }, + { + "surface": "通有", + "readging": "つうゆう", + "pos": "名詞", + "pn": -0.357985 + }, + { + "surface": "ヘモグロビン", + "readging": "ヘモグロビン", + "pos": "名詞", + "pn": -0.357994 + }, + { + "surface": "地主", + "readging": "じぬし", + "pos": "名詞", + "pn": -0.358002 + }, + { + "surface": "尻軽", + "readging": "しりがる", + "pos": "名詞", + "pn": -0.358011 + }, + { + "surface": "空理", + "readging": "くうり", + "pos": "名詞", + "pn": -0.358011 + }, + { + "surface": "点頭", + "readging": "てんとう", + "pos": "名詞", + "pn": -0.358022 + }, + { + "surface": "デスク", + "readging": "デスクトップ", + "pos": "名詞", + "pn": -0.358027 + }, + { + "surface": "東琴", + "readging": "あずまごと", + "pos": "名詞", + "pn": -0.358035 + }, + { + "surface": "急所", + "readging": "きゅうしょ", + "pos": "名詞", + "pn": -0.358049 + }, + { + "surface": "単一", + "readging": "たんいつ", + "pos": "名詞", + "pn": -0.358053 + }, + { + "surface": "目隠し", + "readging": "めかくし", + "pos": "名詞", + "pn": -0.358069 + }, + { + "surface": "任じる", + "readging": "にんじる", + "pos": "動詞", + "pn": -0.358075 + }, + { + "surface": "剽窃", + "readging": "ひょうせつ", + "pos": "名詞", + "pn": -0.358083 + }, + { + "surface": "荒行", + "readging": "あらぎょう", + "pos": "名詞", + "pn": -0.358093 + }, + { + "surface": "船檣", + "readging": "せんしょう", + "pos": "名詞", + "pn": -0.358104 + }, + { + "surface": "熱処理", + "readging": "ねつしょり", + "pos": "名詞", + "pn": -0.358107 + }, + { + "surface": "合理化", + "readging": "ごうりか", + "pos": "名詞", + "pn": -0.358124 + }, + { + "surface": "九輪", + "readging": "くりん", + "pos": "名詞", + "pn": -0.358128 + }, + { + "surface": "封筒", + "readging": "ふうとう", + "pos": "名詞", + "pn": -0.358129 + }, + { + "surface": "録画", + "readging": "ろくが", + "pos": "名詞", + "pn": -0.358182 + }, + { + "surface": "進駐", + "readging": "しんちゅう", + "pos": "名詞", + "pn": -0.358188 + }, + { + "surface": "角帽", + "readging": "かくぼう", + "pos": "名詞", + "pn": -0.358189 + }, + { + "surface": "マージン", + "readging": "マージン", + "pos": "名詞", + "pn": -0.358194 + }, + { + "surface": "笑い上戸", + "readging": "わらいじょうご", + "pos": "名詞", + "pn": -0.358244 + }, + { + "surface": "吹抜き", + "readging": "ふきぬき", + "pos": "名詞", + "pn": -0.358268 + }, + { + "surface": "ヨード", + "readging": "ヨードチンキ", + "pos": "名詞", + "pn": -0.358274 + }, + { + "surface": "自治団体", + "readging": "じちだんたい", + "pos": "名詞", + "pn": -0.358296 + }, + { + "surface": "アクセス", + "readging": "アクセス", + "pos": "名詞", + "pn": -0.3583 + }, + { + "surface": "ターゲット", + "readging": "ターゲット", + "pos": "名詞", + "pn": -0.358303 + }, + { + "surface": "寝返り", + "readging": "ねがえり", + "pos": "名詞", + "pn": -0.358304 + }, + { + "surface": "三筋の糸", + "readging": "みすじのいと", + "pos": "名詞", + "pn": -0.358319 + }, + { + "surface": "総轄", + "readging": "そうかつ", + "pos": "名詞", + "pn": -0.358342 + }, + { + "surface": "角樽", + "readging": "つのだる", + "pos": "名詞", + "pn": -0.358354 + }, + { + "surface": "世代", + "readging": "せだい", + "pos": "名詞", + "pn": -0.358391 + }, + { + "surface": "申", + "readging": "しん", + "pos": "名詞", + "pn": -0.358401 + }, + { + "surface": "恩師", + "readging": "おんし", + "pos": "名詞", + "pn": -0.358421 + }, + { + "surface": "定刻", + "readging": "ていこく", + "pos": "名詞", + "pn": -0.358461 + }, + { + "surface": "本業", + "readging": "ほんぎょう", + "pos": "名詞", + "pn": -0.35847 + }, + { + "surface": "ぽい", + "readging": "ぽい", + "pos": "形容詞", + "pn": -0.358481 + }, + { + "surface": "官女", + "readging": "かんじょ", + "pos": "名詞", + "pn": -0.358498 + }, + { + "surface": "セクション", + "readging": "セクション", + "pos": "名詞", + "pn": -0.358506 + }, + { + "surface": "刮目", + "readging": "かつもく", + "pos": "名詞", + "pn": -0.35851 + }, + { + "surface": "二葉", + "readging": "ふたば", + "pos": "名詞", + "pn": -0.358553 + }, + { + "surface": "吸入", + "readging": "きゅうにゅう", + "pos": "名詞", + "pn": -0.358563 + }, + { + "surface": "見計らう", + "readging": "みはからう", + "pos": "動詞", + "pn": -0.358577 + }, + { + "surface": "年", + "readging": "とし", + "pos": "名詞", + "pn": -0.35861 + }, + { + "surface": "烏貝", + "readging": "からすがい", + "pos": "名詞", + "pn": -0.358634 + }, + { + "surface": "礼", + "readging": "らい", + "pos": "名詞", + "pn": -0.358644 + }, + { + "surface": "選科", + "readging": "せんか", + "pos": "名詞", + "pn": -0.358672 + }, + { + "surface": "ローラー", + "readging": "ローラーカナリヤ", + "pos": "名詞", + "pn": -0.358683 + }, + { + "surface": "コンテキスト", + "readging": "コンテキスト", + "pos": "名詞", + "pn": -0.358684 + }, + { + "surface": "木目", + "readging": "きめ", + "pos": "名詞", + "pn": -0.358701 + }, + { + "surface": "水牛", + "readging": "すいぎゅう", + "pos": "名詞", + "pn": -0.358736 + }, + { + "surface": "アーク灯", + "readging": "アークとう", + "pos": "名詞", + "pn": -0.358763 + }, + { + "surface": "差押え", + "readging": "さしおさえ", + "pos": "名詞", + "pn": -0.358778 + }, + { + "surface": "見台", + "readging": "けんだい", + "pos": "名詞", + "pn": -0.35878 + }, + { + "surface": "営造", + "readging": "えいぞう", + "pos": "名詞", + "pn": -0.358823 + }, + { + "surface": "ゲマインシャフト", + "readging": "ゲマインシャフト", + "pos": "名詞", + "pn": -0.358825 + }, + { + "surface": "御座所", + "readging": "ござしょ", + "pos": "名詞", + "pn": -0.358868 + }, + { + "surface": "総代", + "readging": "そうだい", + "pos": "名詞", + "pn": -0.358876 + }, + { + "surface": "限定", + "readging": "げんてい", + "pos": "名詞", + "pn": -0.358892 + }, + { + "surface": "夕凪", + "readging": "ゆうなぎ", + "pos": "名詞", + "pn": -0.358895 + }, + { + "surface": "ボンベ", + "readging": "ボンベ", + "pos": "名詞", + "pn": -0.3589 + }, + { + "surface": "表明", + "readging": "ひょうめい", + "pos": "名詞", + "pn": -0.358903 + }, + { + "surface": "超音波", + "readging": "ちょうおんぱ", + "pos": "名詞", + "pn": -0.358909 + }, + { + "surface": "移出", + "readging": "いしゅつ", + "pos": "名詞", + "pn": -0.358942 + }, + { + "surface": "野山", + "readging": "のやま", + "pos": "名詞", + "pn": -0.358943 + }, + { + "surface": "しゃぎり", + "readging": "しゃぎり", + "pos": "名詞", + "pn": -0.358955 + }, + { + "surface": "茶腹", + "readging": "ちゃばら", + "pos": "名詞", + "pn": -0.358968 + }, + { + "surface": "仏具", + "readging": "ぶつぐ", + "pos": "名詞", + "pn": -0.359005 + }, + { + "surface": "よなげる", + "readging": "よなげる", + "pos": "動詞", + "pn": -0.359017 + }, + { + "surface": "代数", + "readging": "だいすう", + "pos": "名詞", + "pn": -0.359038 + }, + { + "surface": "建国", + "readging": "けんこく", + "pos": "名詞", + "pn": -0.359078 + }, + { + "surface": "日陰者", + "readging": "ひかげもの", + "pos": "名詞", + "pn": -0.359082 + }, + { + "surface": "撓める", + "readging": "たわめる", + "pos": "動詞", + "pn": -0.359082 + }, + { + "surface": "隣る", + "readging": "となる", + "pos": "動詞", + "pn": -0.359109 + }, + { + "surface": "きささげ", + "readging": "きささげ", + "pos": "名詞", + "pn": -0.359125 + }, + { + "surface": "国法", + "readging": "こくほう", + "pos": "名詞", + "pn": -0.359127 + }, + { + "surface": "沢蟹", + "readging": "さわがに", + "pos": "名詞", + "pn": -0.359137 + }, + { + "surface": "相容れない", + "readging": "あいいれない", + "pos": "形容詞", + "pn": -0.359157 + }, + { + "surface": "おなか", + "readging": "おなか", + "pos": "名詞", + "pn": -0.359175 + }, + { + "surface": "勘所", + "readging": "かんどころ", + "pos": "名詞", + "pn": -0.359178 + }, + { + "surface": "末法", + "readging": "まっぽう", + "pos": "名詞", + "pn": -0.359191 + }, + { + "surface": "屠殺", + "readging": "とさつ", + "pos": "名詞", + "pn": -0.359201 + }, + { + "surface": "囃す", + "readging": "はやす", + "pos": "動詞", + "pn": -0.359208 + }, + { + "surface": "毬", + "readging": "かさ", + "pos": "名詞", + "pn": -0.359211 + }, + { + "surface": "売溜め", + "readging": "うりだめ", + "pos": "名詞", + "pn": -0.359236 + }, + { + "surface": "記述", + "readging": "きじゅつ", + "pos": "名詞", + "pn": -0.359242 + }, + { + "surface": "口銭", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.359248 + }, + { + "surface": "使役", + "readging": "しえき", + "pos": "名詞", + "pn": -0.359278 + }, + { + "surface": "話頭", + "readging": "わとう", + "pos": "名詞", + "pn": -0.359288 + }, + { + "surface": "喫驚", + "readging": "きっきょう", + "pos": "名詞", + "pn": -0.359317 + }, + { + "surface": "水晶体", + "readging": "すいしょうたい", + "pos": "名詞", + "pn": -0.359321 + }, + { + "surface": "検便", + "readging": "けんべん", + "pos": "名詞", + "pn": -0.359339 + }, + { + "surface": "南面", + "readging": "なんめん", + "pos": "名詞", + "pn": -0.359345 + }, + { + "surface": "鼎", + "readging": "かなえ", + "pos": "名詞", + "pn": -0.359354 + }, + { + "surface": "金襴", + "readging": "きんらん", + "pos": "名詞", + "pn": -0.359367 + }, + { + "surface": "両翼", + "readging": "りょうよく", + "pos": "名詞", + "pn": -0.359383 + }, + { + "surface": "水松", + "readging": "みる", + "pos": "名詞", + "pn": -0.359412 + }, + { + "surface": "蒸留酒", + "readging": "じょうりゅうしゅ", + "pos": "名詞", + "pn": -0.359471 + }, + { + "surface": "シソーラス", + "readging": "シソーラス", + "pos": "名詞", + "pn": -0.359476 + }, + { + "surface": "箱書", + "readging": "はこがき", + "pos": "名詞", + "pn": -0.35948 + }, + { + "surface": "網元", + "readging": "あみもと", + "pos": "名詞", + "pn": -0.359481 + }, + { + "surface": "嗜好", + "readging": "しこう", + "pos": "名詞", + "pn": -0.359484 + }, + { + "surface": "占有", + "readging": "せんゆう", + "pos": "名詞", + "pn": -0.359497 + }, + { + "surface": "身寄り", + "readging": "みより", + "pos": "名詞", + "pn": -0.359501 + }, + { + "surface": "注記", + "readging": "ちゅうき", + "pos": "名詞", + "pn": -0.359534 + }, + { + "surface": "祖廟", + "readging": "そびょう", + "pos": "名詞", + "pn": -0.359558 + }, + { + "surface": "牧夫", + "readging": "ぼくふ", + "pos": "名詞", + "pn": -0.359579 + }, + { + "surface": "乳離れ", + "readging": "ちばなれ", + "pos": "名詞", + "pn": -0.359584 + }, + { + "surface": "静まる", + "readging": "しずまる", + "pos": "動詞", + "pn": -0.359593 + }, + { + "surface": "敷金", + "readging": "しききん", + "pos": "名詞", + "pn": -0.359602 + }, + { + "surface": "埋み火", + "readging": "うずみび", + "pos": "名詞", + "pn": -0.359602 + }, + { + "surface": "山査子", + "readging": "さんざし", + "pos": "名詞", + "pn": -0.359604 + }, + { + "surface": "ジャケツ", + "readging": "ジャケツ", + "pos": "名詞", + "pn": -0.359604 + }, + { + "surface": "OL", + "readging": "オーエル", + "pos": "名詞", + "pn": -0.359631 + }, + { + "surface": "兵站", + "readging": "へいたん", + "pos": "名詞", + "pn": -0.359632 + }, + { + "surface": "平語", + "readging": "へいご", + "pos": "名詞", + "pn": -0.359644 + }, + { + "surface": "ちゃらちゃら", + "readging": "ちゃらちゃら", + "pos": "副詞", + "pn": -0.359644 + }, + { + "surface": "御子", + "readging": "みこ", + "pos": "名詞", + "pn": -0.359645 + }, + { + "surface": "監房", + "readging": "かんぼう", + "pos": "名詞", + "pn": -0.359648 + }, + { + "surface": "峡江", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.359654 + }, + { + "surface": "蘊蓄", + "readging": "うんちく", + "pos": "名詞", + "pn": -0.359672 + }, + { + "surface": "尋", + "readging": "ひろ", + "pos": "名詞", + "pn": -0.359682 + }, + { + "surface": "四畳半", + "readging": "よじょうはん", + "pos": "名詞", + "pn": -0.35969 + }, + { + "surface": "先例", + "readging": "せんれい", + "pos": "名詞", + "pn": -0.359692 + }, + { + "surface": "ハーフ", + "readging": "ハーフ", + "pos": "名詞", + "pn": -0.359692 + }, + { + "surface": "秋水", + "readging": "しゅうすい", + "pos": "名詞", + "pn": -0.359715 + }, + { + "surface": "骨法", + "readging": "こっぽう", + "pos": "名詞", + "pn": -0.359725 + }, + { + "surface": "一齣", + "readging": "ひとこま", + "pos": "名詞", + "pn": -0.359753 + }, + { + "surface": "掛構い", + "readging": "かけかまい", + "pos": "名詞", + "pn": -0.359765 + }, + { + "surface": "椎", + "readging": "しい", + "pos": "名詞", + "pn": -0.35977 + }, + { + "surface": "協会", + "readging": "きょうかい", + "pos": "名詞", + "pn": -0.359801 + }, + { + "surface": "正木", + "readging": "まさき", + "pos": "名詞", + "pn": -0.359832 + }, + { + "surface": "縦糸", + "readging": "たていと", + "pos": "名詞", + "pn": -0.359848 + }, + { + "surface": "大尾", + "readging": "たいび", + "pos": "名詞", + "pn": -0.35985 + }, + { + "surface": "セル", + "readging": "セル", + "pos": "名詞", + "pn": -0.359856 + }, + { + "surface": "穴埋め", + "readging": "あなうめ", + "pos": "名詞", + "pn": -0.359863 + }, + { + "surface": "入廷", + "readging": "にゅうてい", + "pos": "名詞", + "pn": -0.359864 + }, + { + "surface": "幻想", + "readging": "げんそう", + "pos": "名詞", + "pn": -0.359876 + }, + { + "surface": "逆寄せ", + "readging": "さかよせ", + "pos": "名詞", + "pn": -0.3599 + }, + { + "surface": "ニッパ椰子", + "readging": "ニッパやし", + "pos": "名詞", + "pn": -0.359914 + }, + { + "surface": "人殺し", + "readging": "ひとごろし", + "pos": "名詞", + "pn": -0.359918 + }, + { + "surface": "白味噌", + "readging": "しろみそ", + "pos": "名詞", + "pn": -0.359923 + }, + { + "surface": "魚河岸", + "readging": "うおがし", + "pos": "名詞", + "pn": -0.359936 + }, + { + "surface": "東西東西", + "readging": "とうざいとうざい", + "pos": "名詞", + "pn": -0.359951 + }, + { + "surface": "亭", + "readging": "ちん", + "pos": "名詞", + "pn": -0.359976 + }, + { + "surface": "稼ぎ", + "readging": "かせぎ", + "pos": "名詞", + "pn": -0.35999 + }, + { + "surface": "夕食", + "readging": "ゆうげ", + "pos": "名詞", + "pn": -0.360031 + }, + { + "surface": "掻い込む", + "readging": "かいこむ", + "pos": "動詞", + "pn": -0.360042 + }, + { + "surface": "オシログラフ", + "readging": "オシログラフ", + "pos": "名詞", + "pn": -0.360049 + }, + { + "surface": "暫定", + "readging": "ざんてい", + "pos": "名詞", + "pn": -0.360063 + }, + { + "surface": "剃刀", + "readging": "かみそり", + "pos": "名詞", + "pn": -0.360084 + }, + { + "surface": "長短", + "readging": "ちょうたん", + "pos": "名詞", + "pn": -0.360089 + }, + { + "surface": "渉", + "readging": "しょう", + "pos": "名詞", + "pn": -0.360132 + }, + { + "surface": "鞭打ち症", + "readging": "むちうちしょう", + "pos": "名詞", + "pn": -0.360133 + }, + { + "surface": "利子", + "readging": "りし", + "pos": "名詞", + "pn": -0.360135 + }, + { + "surface": "前提", + "readging": "ぜんてい", + "pos": "名詞", + "pn": -0.360137 + }, + { + "surface": "破産", + "readging": "はさん", + "pos": "名詞", + "pn": -0.360137 + }, + { + "surface": "死因", + "readging": "しいん", + "pos": "名詞", + "pn": -0.360168 + }, + { + "surface": "雑犬", + "readging": "ざっけん", + "pos": "名詞", + "pn": -0.36019 + }, + { + "surface": "牛蒡", + "readging": "ごぼう", + "pos": "名詞", + "pn": -0.360206 + }, + { + "surface": "兼業", + "readging": "けんぎょう", + "pos": "名詞", + "pn": -0.360215 + }, + { + "surface": "でんこう", + "readging": "でんこうニュース", + "pos": "副詞", + "pn": -0.36024 + }, + { + "surface": "平臥", + "readging": "へいが", + "pos": "名詞", + "pn": -0.360255 + }, + { + "surface": "填補", + "readging": "てんぽ", + "pos": "名詞", + "pn": -0.360271 + }, + { + "surface": "下郎", + "readging": "げろう", + "pos": "名詞", + "pn": -0.360289 + }, + { + "surface": "獣道", + "readging": "けものみち", + "pos": "名詞", + "pn": -0.36029 + }, + { + "surface": "レトロ", + "readging": "レトロ", + "pos": "名詞", + "pn": -0.360296 + }, + { + "surface": "一石", + "readging": "いっせき", + "pos": "名詞", + "pn": -0.360302 + }, + { + "surface": "かんかん帽", + "readging": "かんかんぼう", + "pos": "名詞", + "pn": -0.360306 + }, + { + "surface": "行雲流水", + "readging": "こううんりゅうすい", + "pos": "名詞", + "pn": -0.360321 + }, + { + "surface": "寸胴切", + "readging": "ずんどぎり", + "pos": "名詞", + "pn": -0.360363 + }, + { + "surface": "ジンクス", + "readging": "ジンクス", + "pos": "名詞", + "pn": -0.360372 + }, + { + "surface": "山開き", + "readging": "やまびらき", + "pos": "名詞", + "pn": -0.360372 + }, + { + "surface": "フロン", + "readging": "フロン", + "pos": "名詞", + "pn": -0.360418 + }, + { + "surface": "洗髪", + "readging": "せんぱつ", + "pos": "名詞", + "pn": -0.360444 + }, + { + "surface": "権現造", + "readging": "ごんげんづくり", + "pos": "名詞", + "pn": -0.360464 + }, + { + "surface": "シュプレヒコール", + "readging": "シュプレヒコール", + "pos": "名詞", + "pn": -0.360465 + }, + { + "surface": "金木犀", + "readging": "きんもくせい", + "pos": "名詞", + "pn": -0.36047 + }, + { + "surface": "ぴょこぴょこ", + "readging": "ぴょこぴょこ", + "pos": "副詞", + "pn": -0.360481 + }, + { + "surface": "高分子化合物", + "readging": "こうぶんしかごうぶつ", + "pos": "名詞", + "pn": -0.3605 + }, + { + "surface": "示唆", + "readging": "しさ", + "pos": "名詞", + "pn": -0.360542 + }, + { + "surface": "立会う", + "readging": "たちあう", + "pos": "動詞", + "pn": -0.360544 + }, + { + "surface": "断ち物", + "readging": "たちもの", + "pos": "名詞", + "pn": -0.360547 + }, + { + "surface": "攻め口", + "readging": "せめぐち", + "pos": "名詞", + "pn": -0.36055 + }, + { + "surface": "白熊", + "readging": "はぐま", + "pos": "名詞", + "pn": -0.360562 + }, + { + "surface": "ギプス", + "readging": "ギプス", + "pos": "名詞", + "pn": -0.360583 + }, + { + "surface": "起電", + "readging": "きでん", + "pos": "名詞", + "pn": -0.360595 + }, + { + "surface": "徒事", + "readging": "ただごと", + "pos": "名詞", + "pn": -0.360597 + }, + { + "surface": "ペーパー", + "readging": "ペーパークラフト", + "pos": "名詞", + "pn": -0.360611 + }, + { + "surface": "請負人", + "readging": "うけおい", + "pos": "名詞", + "pn": -0.360674 + }, + { + "surface": "白地", + "readging": "しらじ", + "pos": "名詞", + "pn": -0.360679 + }, + { + "surface": "もぐもぐ", + "readging": "もぐもぐ", + "pos": "副詞", + "pn": -0.36068 + }, + { + "surface": "村夫子", + "readging": "そんぷうし", + "pos": "名詞", + "pn": -0.36069 + }, + { + "surface": "序曲", + "readging": "じょきょく", + "pos": "名詞", + "pn": -0.36069 + }, + { + "surface": "腰っ骨", + "readging": "こしっぽね", + "pos": "名詞", + "pn": -0.36073 + }, + { + "surface": "緋鯉", + "readging": "ひごい", + "pos": "名詞", + "pn": -0.360748 + }, + { + "surface": "日柄", + "readging": "ひがら", + "pos": "名詞", + "pn": -0.360753 + }, + { + "surface": "もののあわれ", + "readging": "もののあわれ", + "pos": "名詞", + "pn": -0.360763 + }, + { + "surface": "体重", + "readging": "たいじゅう", + "pos": "名詞", + "pn": -0.360784 + }, + { + "surface": "行儀", + "readging": "ぎょうぎ", + "pos": "名詞", + "pn": -0.36085 + }, + { + "surface": "髄", + "readging": "ずい", + "pos": "名詞", + "pn": -0.360856 + }, + { + "surface": "工学", + "readging": "こうがく", + "pos": "名詞", + "pn": -0.360859 + }, + { + "surface": "閑吟", + "readging": "かんぎん", + "pos": "名詞", + "pn": -0.360862 + }, + { + "surface": "石斛", + "readging": "せっこく", + "pos": "名詞", + "pn": -0.360863 + }, + { + "surface": "植込み", + "readging": "うえこみ", + "pos": "名詞", + "pn": -0.360866 + }, + { + "surface": "上包み", + "readging": "うわづつみ", + "pos": "名詞", + "pn": -0.360885 + }, + { + "surface": "制空権", + "readging": "せいくうけん", + "pos": "名詞", + "pn": -0.360887 + }, + { + "surface": "自性", + "readging": "じしょう", + "pos": "名詞", + "pn": -0.360892 + }, + { + "surface": "荏胡麻", + "readging": "えごま", + "pos": "名詞", + "pn": -0.360899 + }, + { + "surface": "夜行", + "readging": "やこう", + "pos": "名詞", + "pn": -0.360901 + }, + { + "surface": "策士", + "readging": "さくし", + "pos": "名詞", + "pn": -0.360914 + }, + { + "surface": "為替", + "readging": "かわせ", + "pos": "名詞", + "pn": -0.360916 + }, + { + "surface": "自縄自縛", + "readging": "じじょうじばく", + "pos": "名詞", + "pn": -0.360931 + }, + { + "surface": "駅手", + "readging": "えきしゅ", + "pos": "名詞", + "pn": -0.360933 + }, + { + "surface": "マキアベリズム", + "readging": "マキアベリズム", + "pos": "名詞", + "pn": -0.360953 + }, + { + "surface": "益鳥", + "readging": "えきちょう", + "pos": "名詞", + "pn": -0.360957 + }, + { + "surface": "操り", + "readging": "あやつり", + "pos": "名詞", + "pn": -0.360967 + }, + { + "surface": "政界", + "readging": "せいかい", + "pos": "名詞", + "pn": -0.360993 + }, + { + "surface": "素子", + "readging": "そし", + "pos": "名詞", + "pn": -0.361001 + }, + { + "surface": "日雇", + "readging": "ひやとい", + "pos": "名詞", + "pn": -0.361006 + }, + { + "surface": "具有", + "readging": "ぐゆう", + "pos": "名詞", + "pn": -0.361026 + }, + { + "surface": "暗黒面", + "readging": "あんこくめん", + "pos": "名詞", + "pn": -0.361028 + }, + { + "surface": "構築", + "readging": "こうちく", + "pos": "名詞", + "pn": -0.361035 + }, + { + "surface": "片栗", + "readging": "かたくり", + "pos": "名詞", + "pn": -0.361049 + }, + { + "surface": "外洋", + "readging": "がいよう", + "pos": "名詞", + "pn": -0.361052 + }, + { + "surface": "公表", + "readging": "こうひょう", + "pos": "名詞", + "pn": -0.36108 + }, + { + "surface": "ふ節", + "readging": "ふせつ", + "pos": "名詞", + "pn": -0.361102 + }, + { + "surface": "常世の国", + "readging": "とこよのくに", + "pos": "名詞", + "pn": -0.361121 + }, + { + "surface": "本場所", + "readging": "ほんばしょ", + "pos": "名詞", + "pn": -0.361131 + }, + { + "surface": "巻紙", + "readging": "まきがみ", + "pos": "名詞", + "pn": -0.361149 + }, + { + "surface": "鉄壁", + "readging": "てっぺき", + "pos": "名詞", + "pn": -0.361152 + }, + { + "surface": "製剤", + "readging": "せいざい", + "pos": "名詞", + "pn": -0.361176 + }, + { + "surface": "読下す", + "readging": "よみくだす", + "pos": "動詞", + "pn": -0.361194 + }, + { + "surface": "親分", + "readging": "おやぶん", + "pos": "名詞", + "pn": -0.361195 + }, + { + "surface": "午前様", + "readging": "ごぜんさま", + "pos": "名詞", + "pn": -0.361208 + }, + { + "surface": "ヌガー", + "readging": "ヌガー", + "pos": "名詞", + "pn": -0.361209 + }, + { + "surface": "石南花", + "readging": "しゃくなげ", + "pos": "名詞", + "pn": -0.361214 + }, + { + "surface": "運び", + "readging": "はこび", + "pos": "名詞", + "pn": -0.361215 + }, + { + "surface": "カリ肥料", + "readging": "カリひりょう", + "pos": "名詞", + "pn": -0.361225 + }, + { + "surface": "ナッツ", + "readging": "ナッツ", + "pos": "名詞", + "pn": -0.361247 + }, + { + "surface": "潤い", + "readging": "うるおい", + "pos": "名詞", + "pn": -0.361259 + }, + { + "surface": "スプリング", + "readging": "スプリングコート", + "pos": "名詞", + "pn": -0.361293 + }, + { + "surface": "うそうそ", + "readging": "うそうそ", + "pos": "副詞", + "pn": -0.361298 + }, + { + "surface": "ライナー", + "readging": "ライナー", + "pos": "名詞", + "pn": -0.361336 + }, + { + "surface": "象形", + "readging": "しょうけい", + "pos": "名詞", + "pn": -0.361361 + }, + { + "surface": "等質", + "readging": "とうしつ", + "pos": "名詞", + "pn": -0.361366 + }, + { + "surface": "共学", + "readging": "きょうがく", + "pos": "名詞", + "pn": -0.361368 + }, + { + "surface": "謡物", + "readging": "うたいもの", + "pos": "名詞", + "pn": -0.361374 + }, + { + "surface": "捲土重来", + "readging": "けんどちょうらい", + "pos": "名詞", + "pn": -0.361388 + }, + { + "surface": "隠喩", + "readging": "いんゆ", + "pos": "名詞", + "pn": -0.361406 + }, + { + "surface": "肌触り", + "readging": "はだざわり", + "pos": "名詞", + "pn": -0.361415 + }, + { + "surface": "廃盤", + "readging": "はいばん", + "pos": "名詞", + "pn": -0.361427 + }, + { + "surface": "五月雨", + "readging": "さつきあめ", + "pos": "名詞", + "pn": -0.361451 + }, + { + "surface": "相対", + "readging": "あいたい", + "pos": "名詞", + "pn": -0.36146 + }, + { + "surface": "引け目", + "readging": "ひけめ", + "pos": "名詞", + "pn": -0.361498 + }, + { + "surface": "布達", + "readging": "ふたつ", + "pos": "名詞", + "pn": -0.36151 + }, + { + "surface": "号俸", + "readging": "ごうほう", + "pos": "名詞", + "pn": -0.36152 + }, + { + "surface": "手暗がり", + "readging": "てくらがり", + "pos": "名詞", + "pn": -0.361531 + }, + { + "surface": "アンテナ", + "readging": "アンテナ", + "pos": "名詞", + "pn": -0.361531 + }, + { + "surface": "えい", + "readging": "えい", + "pos": "名詞", + "pn": -0.36155 + }, + { + "surface": "半風子", + "readging": "はんぷうし", + "pos": "名詞", + "pn": -0.361572 + }, + { + "surface": "比べ", + "readging": "くらべ", + "pos": "名詞", + "pn": -0.361577 + }, + { + "surface": "破戒無慙", + "readging": "はかいむざん", + "pos": "名詞", + "pn": -0.361579 + }, + { + "surface": "濡事", + "readging": "ぬれごと", + "pos": "名詞", + "pn": -0.361585 + }, + { + "surface": "背割り", + "readging": "せわり", + "pos": "名詞", + "pn": -0.361613 + }, + { + "surface": "風諭", + "readging": "ふうゆ", + "pos": "名詞", + "pn": -0.361621 + }, + { + "surface": "普段着", + "readging": "ふだんぎ", + "pos": "名詞", + "pn": -0.361623 + }, + { + "surface": "無地", + "readging": "むじ", + "pos": "名詞", + "pn": -0.361632 + }, + { + "surface": "実印", + "readging": "じついん", + "pos": "名詞", + "pn": -0.361644 + }, + { + "surface": "誓い言", + "readging": "ちかいごと", + "pos": "名詞", + "pn": -0.361669 + }, + { + "surface": "争闘", + "readging": "そうとう", + "pos": "名詞", + "pn": -0.361688 + }, + { + "surface": "詰腹", + "readging": "つめばら", + "pos": "名詞", + "pn": -0.36169 + }, + { + "surface": "葉腋", + "readging": "ようえき", + "pos": "名詞", + "pn": -0.36172 + }, + { + "surface": "日照り", + "readging": "ひでり", + "pos": "名詞", + "pn": -0.361733 + }, + { + "surface": "照らし合せる", + "readging": "てらしあわせる", + "pos": "動詞", + "pn": -0.361746 + }, + { + "surface": "公定", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.361753 + }, + { + "surface": "俗姓", + "readging": "ぞくせい", + "pos": "名詞", + "pn": -0.361763 + }, + { + "surface": "離れ島", + "readging": "はなれじま", + "pos": "名詞", + "pn": -0.361765 + }, + { + "surface": "ネッカチーフ", + "readging": "ネッカチーフ", + "pos": "名詞", + "pn": -0.361775 + }, + { + "surface": "祝言", + "readging": "しゅうげん", + "pos": "名詞", + "pn": -0.361801 + }, + { + "surface": "草体", + "readging": "そうたい", + "pos": "名詞", + "pn": -0.361812 + }, + { + "surface": "海洋", + "readging": "かいよう", + "pos": "名詞", + "pn": -0.361815 + }, + { + "surface": "悚然", + "readging": "しょうぜん", + "pos": "名詞", + "pn": -0.361858 + }, + { + "surface": "貝塚", + "readging": "かいづか", + "pos": "名詞", + "pn": -0.361861 + }, + { + "surface": "取肴", + "readging": "とりざかな", + "pos": "名詞", + "pn": -0.361864 + }, + { + "surface": "二世", + "readging": "にせい", + "pos": "名詞", + "pn": -0.361885 + }, + { + "surface": "戴冠", + "readging": "たいかん", + "pos": "名詞", + "pn": -0.361887 + }, + { + "surface": "示教", + "readging": "しきょう", + "pos": "名詞", + "pn": -0.361895 + }, + { + "surface": "間尺", + "readging": "ましゃく", + "pos": "名詞", + "pn": -0.361951 + }, + { + "surface": "十寸", + "readging": "とき", + "pos": "名詞", + "pn": -0.361964 + }, + { + "surface": "地質時代", + "readging": "ちしつじだい", + "pos": "名詞", + "pn": -0.361973 + }, + { + "surface": "へいへい", + "readging": "へいへい", + "pos": "副詞", + "pn": -0.361981 + }, + { + "surface": "臣子", + "readging": "しんし", + "pos": "名詞", + "pn": -0.36199 + }, + { + "surface": "統覚", + "readging": "とうかく", + "pos": "名詞", + "pn": -0.36202 + }, + { + "surface": "連鎖反応", + "readging": "れんさはんのう", + "pos": "名詞", + "pn": -0.362054 + }, + { + "surface": "和装", + "readging": "わそう", + "pos": "名詞", + "pn": -0.362055 + }, + { + "surface": "幣帛", + "readging": "へいはく", + "pos": "名詞", + "pn": -0.362067 + }, + { + "surface": "没収", + "readging": "ぼっしゅう", + "pos": "名詞", + "pn": -0.362126 + }, + { + "surface": "リビング", + "readging": "リビング", + "pos": "名詞", + "pn": -0.362147 + }, + { + "surface": "麗麗と", + "readging": "れいれいと", + "pos": "副詞", + "pn": -0.362176 + }, + { + "surface": "螺", + "readging": "にし", + "pos": "名詞", + "pn": -0.362182 + }, + { + "surface": "深部", + "readging": "しんぶ", + "pos": "名詞", + "pn": -0.362182 + }, + { + "surface": "甲骨文", + "readging": "こうこつぶん", + "pos": "名詞", + "pn": -0.362185 + }, + { + "surface": "異", + "readging": "い", + "pos": "名詞", + "pn": -0.362206 + }, + { + "surface": "指貫", + "readging": "ゆびぬき", + "pos": "名詞", + "pn": -0.362215 + }, + { + "surface": "偶詠", + "readging": "ぐうえい", + "pos": "名詞", + "pn": -0.362233 + }, + { + "surface": "青蠅", + "readging": "あおばえ", + "pos": "名詞", + "pn": -0.362247 + }, + { + "surface": "還流", + "readging": "かんりゅう", + "pos": "名詞", + "pn": -0.362263 + }, + { + "surface": "募集", + "readging": "ぼしゅう", + "pos": "名詞", + "pn": -0.362263 + }, + { + "surface": "朝食", + "readging": "あさげ", + "pos": "名詞", + "pn": -0.362276 + }, + { + "surface": "鞭", + "readging": "むち", + "pos": "名詞", + "pn": -0.36229 + }, + { + "surface": "金庫", + "readging": "きんこ", + "pos": "名詞", + "pn": -0.362301 + }, + { + "surface": "脂手", + "readging": "あぶらで", + "pos": "名詞", + "pn": -0.362305 + }, + { + "surface": "入信", + "readging": "にゅうしん", + "pos": "名詞", + "pn": -0.362348 + }, + { + "surface": "騰落", + "readging": "とうらく", + "pos": "名詞", + "pn": -0.36235 + }, + { + "surface": "フランネル", + "readging": "フランネル", + "pos": "名詞", + "pn": -0.362383 + }, + { + "surface": "粽", + "readging": "ちまき", + "pos": "名詞", + "pn": -0.362396 + }, + { + "surface": "アンダーライン", + "readging": "アンダーライン", + "pos": "名詞", + "pn": -0.362412 + }, + { + "surface": "天文学", + "readging": "てんもんがく", + "pos": "名詞", + "pn": -0.362428 + }, + { + "surface": "入", + "readging": "にゅう", + "pos": "名詞", + "pn": -0.362444 + }, + { + "surface": "紹介", + "readging": "しょうかい", + "pos": "名詞", + "pn": -0.362444 + }, + { + "surface": "坤", + "readging": "ひつじさる", + "pos": "名詞", + "pn": -0.362458 + }, + { + "surface": "黄金虫", + "readging": "こがねむし", + "pos": "名詞", + "pn": -0.362465 + }, + { + "surface": "昼夜銀行", + "readging": "ちゅうやぎんこう", + "pos": "名詞", + "pn": -0.362476 + }, + { + "surface": "冬作", + "readging": "ふゆさく", + "pos": "名詞", + "pn": -0.362479 + }, + { + "surface": "方法論", + "readging": "ほうほうろん", + "pos": "名詞", + "pn": -0.362499 + }, + { + "surface": "長袖", + "readging": "ちょうしゅう", + "pos": "名詞", + "pn": -0.362514 + }, + { + "surface": "捕縛", + "readging": "ほばく", + "pos": "名詞", + "pn": -0.362522 + }, + { + "surface": "踏ん切り", + "readging": "ふんぎり", + "pos": "名詞", + "pn": -0.362588 + }, + { + "surface": "遅らす", + "readging": "おくらす", + "pos": "動詞", + "pn": -0.362604 + }, + { + "surface": "バイオレット", + "readging": "バイオレット", + "pos": "名詞", + "pn": -0.362612 + }, + { + "surface": "百足", + "readging": "むかで", + "pos": "名詞", + "pn": -0.362619 + }, + { + "surface": "旧例", + "readging": "きゅうれい", + "pos": "名詞", + "pn": -0.362637 + }, + { + "surface": "再版", + "readging": "さいはん", + "pos": "名詞", + "pn": -0.362669 + }, + { + "surface": "営舎", + "readging": "えいしゃ", + "pos": "名詞", + "pn": -0.362682 + }, + { + "surface": "圧制", + "readging": "あっせい", + "pos": "名詞", + "pn": -0.3627 + }, + { + "surface": "当て所", + "readging": "あてど", + "pos": "名詞", + "pn": -0.362707 + }, + { + "surface": "ロビー", + "readging": "ロビー", + "pos": "名詞", + "pn": -0.362721 + }, + { + "surface": "エレベーター", + "readging": "エレベーター", + "pos": "名詞", + "pn": -0.362723 + }, + { + "surface": "卵色", + "readging": "たまごいろ", + "pos": "名詞", + "pn": -0.362741 + }, + { + "surface": "遠国", + "readging": "おんごく", + "pos": "名詞", + "pn": -0.362751 + }, + { + "surface": "入庫", + "readging": "にゅうこ", + "pos": "名詞", + "pn": -0.362752 + }, + { + "surface": "棒読み", + "readging": "ぼうよみ", + "pos": "名詞", + "pn": -0.362753 + }, + { + "surface": "栗毛", + "readging": "くりげ", + "pos": "名詞", + "pn": -0.362769 + }, + { + "surface": "議員", + "readging": "ぎいん", + "pos": "名詞", + "pn": -0.362782 + }, + { + "surface": "くりくり坊主", + "readging": "くりくりぼうず", + "pos": "名詞", + "pn": -0.362784 + }, + { + "surface": "思い切る", + "readging": "おもいきる", + "pos": "動詞", + "pn": -0.362784 + }, + { + "surface": "船底", + "readging": "ふなぞこ", + "pos": "名詞", + "pn": -0.362794 + }, + { + "surface": "対決", + "readging": "たいけつ", + "pos": "名詞", + "pn": -0.362819 + }, + { + "surface": "察", + "readging": "さつ", + "pos": "名詞", + "pn": -0.362855 + }, + { + "surface": "旧慣", + "readging": "きゅうかん", + "pos": "名詞", + "pn": -0.362869 + }, + { + "surface": "シネラマ", + "readging": "シネラマ", + "pos": "名詞", + "pn": -0.362875 + }, + { + "surface": "アバンチュール", + "readging": "アバンチュール", + "pos": "名詞", + "pn": -0.362876 + }, + { + "surface": "山梔子", + "readging": "くちなし", + "pos": "名詞", + "pn": -0.362885 + }, + { + "surface": "明滅", + "readging": "めいめつ", + "pos": "名詞", + "pn": -0.362895 + }, + { + "surface": "氷山", + "readging": "ひょうざん", + "pos": "名詞", + "pn": -0.362896 + }, + { + "surface": "泣付く", + "readging": "なきつく", + "pos": "動詞", + "pn": -0.362935 + }, + { + "surface": "古格", + "readging": "こかく", + "pos": "名詞", + "pn": -0.362941 + }, + { + "surface": "牛蒡抜き", + "readging": "ごぼうぬき", + "pos": "名詞", + "pn": -0.362957 + }, + { + "surface": "初老", + "readging": "しょろう", + "pos": "名詞", + "pn": -0.362984 + }, + { + "surface": "掃海", + "readging": "そうかい", + "pos": "名詞", + "pn": -0.362985 + }, + { + "surface": "寄せ", + "readging": "よせ", + "pos": "名詞", + "pn": -0.363012 + }, + { + "surface": "功過", + "readging": "こうか", + "pos": "名詞", + "pn": -0.363013 + }, + { + "surface": "元禄模様", + "readging": "げんろくもよう", + "pos": "名詞", + "pn": -0.363029 + }, + { + "surface": "北面", + "readging": "ほくめん", + "pos": "名詞", + "pn": -0.363044 + }, + { + "surface": "縁辺", + "readging": "えんぺん", + "pos": "名詞", + "pn": -0.363081 + }, + { + "surface": "別当", + "readging": "べっとう", + "pos": "名詞", + "pn": -0.363092 + }, + { + "surface": "板子", + "readging": "いたご", + "pos": "名詞", + "pn": -0.363109 + }, + { + "surface": "好事", + "readging": "こうず", + "pos": "名詞", + "pn": -0.363117 + }, + { + "surface": "典範", + "readging": "てんぱん", + "pos": "名詞", + "pn": -0.363129 + }, + { + "surface": "召喚", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.363133 + }, + { + "surface": "織込む", + "readging": "おりこむ", + "pos": "動詞", + "pn": -0.363135 + }, + { + "surface": "被疑者", + "readging": "ひぎしゃ", + "pos": "名詞", + "pn": -0.363136 + }, + { + "surface": "潔癖", + "readging": "けっぺき", + "pos": "名詞", + "pn": -0.363141 + }, + { + "surface": "験", + "readging": "けん", + "pos": "名詞", + "pn": -0.363147 + }, + { + "surface": "社説", + "readging": "しゃせつ", + "pos": "名詞", + "pn": -0.363154 + }, + { + "surface": "典型", + "readging": "てんけい", + "pos": "名詞", + "pn": -0.363158 + }, + { + "surface": "採決", + "readging": "さいけつ", + "pos": "名詞", + "pn": -0.363166 + }, + { + "surface": "正札", + "readging": "しょうふだ", + "pos": "名詞", + "pn": -0.363177 + }, + { + "surface": "女郎", + "readging": "じょろ", + "pos": "名詞", + "pn": -0.36318 + }, + { + "surface": "板床", + "readging": "いたどこ", + "pos": "名詞", + "pn": -0.363189 + }, + { + "surface": "相乗り", + "readging": "あいのり", + "pos": "名詞", + "pn": -0.363212 + }, + { + "surface": "砒石", + "readging": "ひせき", + "pos": "名詞", + "pn": -0.363222 + }, + { + "surface": "光学", + "readging": "こうがく", + "pos": "名詞", + "pn": -0.363223 + }, + { + "surface": "単色", + "readging": "たんしょく", + "pos": "名詞", + "pn": -0.363229 + }, + { + "surface": "申合せる", + "readging": "もうしあわせる", + "pos": "動詞", + "pn": -0.363292 + }, + { + "surface": "落口", + "readging": "おちぐち", + "pos": "名詞", + "pn": -0.363303 + }, + { + "surface": "ブラウン運動", + "readging": "ブラウンうんどう", + "pos": "名詞", + "pn": -0.363315 + }, + { + "surface": "オープン", + "readging": "オープンシャツ", + "pos": "名詞", + "pn": -0.363327 + }, + { + "surface": "五山", + "readging": "ごさん", + "pos": "名詞", + "pn": -0.363329 + }, + { + "surface": "不能", + "readging": "ふのう", + "pos": "名詞", + "pn": -0.363361 + }, + { + "surface": "追風", + "readging": "おいかぜ", + "pos": "名詞", + "pn": -0.363363 + }, + { + "surface": "閲覧", + "readging": "えつらん", + "pos": "名詞", + "pn": -0.36337 + }, + { + "surface": "鉄筆", + "readging": "てっぴつ", + "pos": "名詞", + "pn": -0.363412 + }, + { + "surface": "朝夕", + "readging": "あさゆう", + "pos": "名詞", + "pn": -0.363414 + }, + { + "surface": "層一層", + "readging": "そういっそう", + "pos": "副詞", + "pn": -0.363422 + }, + { + "surface": "一級", + "readging": "いっきゅう", + "pos": "名詞", + "pn": -0.363428 + }, + { + "surface": "ストリップ", + "readging": "ストリップ", + "pos": "名詞", + "pn": -0.363443 + }, + { + "surface": "尺牘", + "readging": "せきとく", + "pos": "名詞", + "pn": -0.363481 + }, + { + "surface": "至る所", + "readging": "いたるところ", + "pos": "名詞", + "pn": -0.363502 + }, + { + "surface": "寸楮", + "readging": "すんちょ", + "pos": "名詞", + "pn": -0.363532 + }, + { + "surface": "十字路", + "readging": "じゅうじろ", + "pos": "名詞", + "pn": -0.363617 + }, + { + "surface": "憲章", + "readging": "けんしょう", + "pos": "名詞", + "pn": -0.363618 + }, + { + "surface": "狭義", + "readging": "きょうぎ", + "pos": "名詞", + "pn": -0.363628 + }, + { + "surface": "渡板", + "readging": "わたりいた", + "pos": "名詞", + "pn": -0.363631 + }, + { + "surface": "催眠", + "readging": "さいみん", + "pos": "名詞", + "pn": -0.363644 + }, + { + "surface": "おくら", + "readging": "おくら", + "pos": "名詞", + "pn": -0.363645 + }, + { + "surface": "オキシダント", + "readging": "オキシダント", + "pos": "名詞", + "pn": -0.363648 + }, + { + "surface": "圧縮空気", + "readging": "あっしゅくくうき", + "pos": "名詞", + "pn": -0.363652 + }, + { + "surface": "ルーチン", + "readging": "ルーチン", + "pos": "名詞", + "pn": -0.363677 + }, + { + "surface": "神位", + "readging": "しんい", + "pos": "名詞", + "pn": -0.363685 + }, + { + "surface": "断面", + "readging": "だんめん", + "pos": "名詞", + "pn": -0.363691 + }, + { + "surface": "ソート", + "readging": "ソート", + "pos": "名詞", + "pn": -0.3637 + }, + { + "surface": "ハッカー", + "readging": "ハッカー", + "pos": "名詞", + "pn": -0.363707 + }, + { + "surface": "檜垣", + "readging": "ひがき", + "pos": "名詞", + "pn": -0.36372 + }, + { + "surface": "加重", + "readging": "かじゅう", + "pos": "名詞", + "pn": -0.36373 + }, + { + "surface": "幣", + "readging": "ぬさ", + "pos": "名詞", + "pn": -0.363753 + }, + { + "surface": "言違い", + "readging": "いいちがい", + "pos": "名詞", + "pn": -0.363755 + }, + { + "surface": "徒長", + "readging": "とちょう", + "pos": "名詞", + "pn": -0.36376 + }, + { + "surface": "類する", + "readging": "るいする", + "pos": "動詞", + "pn": -0.363774 + }, + { + "surface": "伝送", + "readging": "でんそう", + "pos": "名詞", + "pn": -0.363787 + }, + { + "surface": "草屋", + "readging": "くさや", + "pos": "名詞", + "pn": -0.363822 + }, + { + "surface": "前哨", + "readging": "ぜんしょう", + "pos": "名詞", + "pn": -0.363834 + }, + { + "surface": "身代", + "readging": "しんだい", + "pos": "名詞", + "pn": -0.363842 + }, + { + "surface": "木叢", + "readging": "こむら", + "pos": "名詞", + "pn": -0.363842 + }, + { + "surface": "テナント", + "readging": "テナント", + "pos": "名詞", + "pn": -0.363889 + }, + { + "surface": "炭山", + "readging": "たんざん", + "pos": "名詞", + "pn": -0.363889 + }, + { + "surface": "酒気", + "readging": "さかけ", + "pos": "名詞", + "pn": -0.363899 + }, + { + "surface": "展示", + "readging": "てんじ", + "pos": "名詞", + "pn": -0.363903 + }, + { + "surface": "直射", + "readging": "ちょくしゃ", + "pos": "名詞", + "pn": -0.363909 + }, + { + "surface": "列島", + "readging": "れっとう", + "pos": "名詞", + "pn": -0.363913 + }, + { + "surface": "採集", + "readging": "さいしゅう", + "pos": "名詞", + "pn": -0.363931 + }, + { + "surface": "廃仏毀釈", + "readging": "はいぶつきしゃく", + "pos": "名詞", + "pn": -0.363952 + }, + { + "surface": "食膳", + "readging": "しょくぜん", + "pos": "名詞", + "pn": -0.363953 + }, + { + "surface": "朋", + "readging": "ほう", + "pos": "名詞", + "pn": -0.363958 + }, + { + "surface": "巡拝", + "readging": "じゅんぱい", + "pos": "名詞", + "pn": -0.363966 + }, + { + "surface": "歯噛み", + "readging": "はがみ", + "pos": "名詞", + "pn": -0.36397 + }, + { + "surface": "幕僚", + "readging": "ばくりょう", + "pos": "名詞", + "pn": -0.363974 + }, + { + "surface": "爆音", + "readging": "ばくおん", + "pos": "名詞", + "pn": -0.363977 + }, + { + "surface": "自給自足", + "readging": "じきゅうじそく", + "pos": "名詞", + "pn": -0.363977 + }, + { + "surface": "月賦", + "readging": "げっぷ", + "pos": "名詞", + "pn": -0.364003 + }, + { + "surface": "懐", + "readging": "かい", + "pos": "名詞", + "pn": -0.364052 + }, + { + "surface": "星座", + "readging": "せいざ", + "pos": "名詞", + "pn": -0.364058 + }, + { + "surface": "ちょぼちょぼ", + "readging": "ちょぼちょぼ", + "pos": "副詞", + "pn": -0.364081 + }, + { + "surface": "いせる", + "readging": "いせる", + "pos": "動詞", + "pn": -0.364082 + }, + { + "surface": "水禽", + "readging": "すいきん", + "pos": "名詞", + "pn": -0.364086 + }, + { + "surface": "蒼", + "readging": "そう", + "pos": "名詞", + "pn": -0.364092 + }, + { + "surface": "講師", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.364108 + }, + { + "surface": "横笛", + "readging": "よこぶえ", + "pos": "名詞", + "pn": -0.364109 + }, + { + "surface": "大穴", + "readging": "おおあな", + "pos": "名詞", + "pn": -0.364127 + }, + { + "surface": "機体", + "readging": "きたい", + "pos": "名詞", + "pn": -0.364149 + }, + { + "surface": "再出発", + "readging": "さいしゅっぱつ", + "pos": "名詞", + "pn": -0.364152 + }, + { + "surface": "一日", + "readging": "いちにち", + "pos": "名詞", + "pn": -0.364177 + }, + { + "surface": "ひっつれ", + "readging": "ひっつれ", + "pos": "名詞", + "pn": -0.364202 + }, + { + "surface": "見える", + "readging": "まみえる", + "pos": "動詞", + "pn": -0.364211 + }, + { + "surface": "上段", + "readging": "じょうだん", + "pos": "名詞", + "pn": -0.364213 + }, + { + "surface": "菘", + "readging": "すずな", + "pos": "名詞", + "pn": -0.36423 + }, + { + "surface": "現像", + "readging": "げんぞう", + "pos": "名詞", + "pn": -0.364232 + }, + { + "surface": "天界", + "readging": "てんかい", + "pos": "名詞", + "pn": -0.364243 + }, + { + "surface": "力作", + "readging": "りきさく", + "pos": "名詞", + "pn": -0.364249 + }, + { + "surface": "汁粉", + "readging": "しるこ", + "pos": "名詞", + "pn": -0.364258 + }, + { + "surface": "きゅっと", + "readging": "きゅっと", + "pos": "副詞", + "pn": -0.364276 + }, + { + "surface": "三枚", + "readging": "さんまい", + "pos": "名詞", + "pn": -0.364278 + }, + { + "surface": "秘計", + "readging": "ひけい", + "pos": "名詞", + "pn": -0.364291 + }, + { + "surface": "枚数", + "readging": "まいすう", + "pos": "名詞", + "pn": -0.364295 + }, + { + "surface": "言交す", + "readging": "いいかわす", + "pos": "動詞", + "pn": -0.364311 + }, + { + "surface": "懸紙", + "readging": "かけがみ", + "pos": "名詞", + "pn": -0.364333 + }, + { + "surface": "解明かす", + "readging": "ときあかす", + "pos": "動詞", + "pn": -0.364373 + }, + { + "surface": "青桐", + "readging": "あおぎり", + "pos": "名詞", + "pn": -0.364384 + }, + { + "surface": "公理", + "readging": "こうり", + "pos": "名詞", + "pn": -0.36439 + }, + { + "surface": "母体", + "readging": "ぼたい", + "pos": "名詞", + "pn": -0.364394 + }, + { + "surface": "ひょろ長い", + "readging": "ひょろながい", + "pos": "形容詞", + "pn": -0.364397 + }, + { + "surface": "大脳", + "readging": "だいのう", + "pos": "名詞", + "pn": -0.364406 + }, + { + "surface": "後来", + "readging": "こうらい", + "pos": "名詞", + "pn": -0.364406 + }, + { + "surface": "接木", + "readging": "つぎき", + "pos": "名詞", + "pn": -0.364415 + }, + { + "surface": "作意", + "readging": "さくい", + "pos": "名詞", + "pn": -0.364426 + }, + { + "surface": "ブースター", + "readging": "ブースター", + "pos": "名詞", + "pn": -0.364446 + }, + { + "surface": "百代", + "readging": "ひゃくだい", + "pos": "名詞", + "pn": -0.364446 + }, + { + "surface": "店員", + "readging": "てんいん", + "pos": "名詞", + "pn": -0.364453 + }, + { + "surface": "辞", + "readging": "じ", + "pos": "名詞", + "pn": -0.364469 + }, + { + "surface": "釈迦", + "readging": "しゃか", + "pos": "名詞", + "pn": -0.364487 + }, + { + "surface": "抜糸", + "readging": "ばっし", + "pos": "名詞", + "pn": -0.364511 + }, + { + "surface": "字母", + "readging": "じぼ", + "pos": "名詞", + "pn": -0.364569 + }, + { + "surface": "賜暇", + "readging": "しか", + "pos": "名詞", + "pn": -0.364573 + }, + { + "surface": "口外", + "readging": "こうがい", + "pos": "名詞", + "pn": -0.364587 + }, + { + "surface": "境内", + "readging": "けいだい", + "pos": "名詞", + "pn": -0.364587 + }, + { + "surface": "勝ち負け", + "readging": "かちまけ", + "pos": "名詞", + "pn": -0.364604 + }, + { + "surface": "的外れ", + "readging": "まとはずれ", + "pos": "名詞", + "pn": -0.36463 + }, + { + "surface": "正札付", + "readging": "しょうふだつき", + "pos": "名詞", + "pn": -0.364649 + }, + { + "surface": "水食", + "readging": "すいしょく", + "pos": "名詞", + "pn": -0.364664 + }, + { + "surface": "見繕う", + "readging": "みつくろう", + "pos": "動詞", + "pn": -0.364668 + }, + { + "surface": "デッドライン", + "readging": "デッドライン", + "pos": "名詞", + "pn": -0.364689 + }, + { + "surface": "刺縫い", + "readging": "さしぬい", + "pos": "名詞", + "pn": -0.364695 + }, + { + "surface": "甲子", + "readging": "きのえね", + "pos": "名詞", + "pn": -0.364703 + }, + { + "surface": "一派", + "readging": "いっぱ", + "pos": "名詞", + "pn": -0.364742 + }, + { + "surface": "嘘っぱち", + "readging": "うそっぱち", + "pos": "名詞", + "pn": -0.364748 + }, + { + "surface": "歌声", + "readging": "うたごえ", + "pos": "名詞", + "pn": -0.36479 + }, + { + "surface": "万有", + "readging": "ばんゆう", + "pos": "名詞", + "pn": -0.36479 + }, + { + "surface": "甲", + "readging": "かぶと", + "pos": "名詞", + "pn": -0.364799 + }, + { + "surface": "鯉こく", + "readging": "こいこく", + "pos": "名詞", + "pn": -0.364813 + }, + { + "surface": "運上", + "readging": "うんじょう", + "pos": "名詞", + "pn": -0.364815 + }, + { + "surface": "丹田", + "readging": "たんでん", + "pos": "名詞", + "pn": -0.36483 + }, + { + "surface": "解け込む", + "readging": "とけこむ", + "pos": "動詞", + "pn": -0.364833 + }, + { + "surface": "早朝", + "readging": "そうちょう", + "pos": "名詞", + "pn": -0.364835 + }, + { + "surface": "男", + "readging": "だん", + "pos": "名詞", + "pn": -0.364843 + }, + { + "surface": "七五三", + "readging": "しちごさん", + "pos": "名詞", + "pn": -0.364845 + }, + { + "surface": "宰", + "readging": "さい", + "pos": "名詞", + "pn": -0.364848 + }, + { + "surface": "人身", + "readging": "じんしん", + "pos": "名詞", + "pn": -0.364867 + }, + { + "surface": "中部", + "readging": "ちゅうぶ", + "pos": "名詞", + "pn": -0.36489 + }, + { + "surface": "ジグザグ", + "readging": "ジグザグ", + "pos": "名詞", + "pn": -0.364891 + }, + { + "surface": "ヌートリア", + "readging": "ヌートリア", + "pos": "名詞", + "pn": -0.364946 + }, + { + "surface": "引き際", + "readging": "ひきぎわ", + "pos": "名詞", + "pn": -0.364961 + }, + { + "surface": "鮨飯", + "readging": "すしめし", + "pos": "名詞", + "pn": -0.364964 + }, + { + "surface": "出納", + "readging": "すいとう", + "pos": "名詞", + "pn": -0.364972 + }, + { + "surface": "血脈", + "readging": "けつみゃく", + "pos": "名詞", + "pn": -0.364976 + }, + { + "surface": "バンク", + "readging": "バンク", + "pos": "名詞", + "pn": -0.364976 + }, + { + "surface": "ピチカート", + "readging": "ピチカート", + "pos": "名詞", + "pn": -0.365003 + }, + { + "surface": "泥火山", + "readging": "でいかざん", + "pos": "名詞", + "pn": -0.365013 + }, + { + "surface": "地紙", + "readging": "じがみ", + "pos": "名詞", + "pn": -0.365014 + }, + { + "surface": "庭梅", + "readging": "にわうめ", + "pos": "名詞", + "pn": -0.365018 + }, + { + "surface": "マンゴスチン", + "readging": "マンゴスチン", + "pos": "名詞", + "pn": -0.365038 + }, + { + "surface": "充血", + "readging": "じゅうけつ", + "pos": "名詞", + "pn": -0.365055 + }, + { + "surface": "左向き", + "readging": "ひだりむき", + "pos": "名詞", + "pn": -0.365066 + }, + { + "surface": "社中", + "readging": "しゃちゅう", + "pos": "名詞", + "pn": -0.365069 + }, + { + "surface": "乾繭", + "readging": "かんけん", + "pos": "名詞", + "pn": -0.365089 + }, + { + "surface": "零時", + "readging": "れいじ", + "pos": "名詞", + "pn": -0.365116 + }, + { + "surface": "湿舌", + "readging": "しつぜつ", + "pos": "名詞", + "pn": -0.365139 + }, + { + "surface": "平らげる", + "readging": "たいらげる", + "pos": "動詞", + "pn": -0.365155 + }, + { + "surface": "切石", + "readging": "きりいし", + "pos": "名詞", + "pn": -0.365159 + }, + { + "surface": "切手", + "readging": "きって", + "pos": "名詞", + "pn": -0.36516 + }, + { + "surface": "藻塩草", + "readging": "もしお", + "pos": "名詞", + "pn": -0.365163 + }, + { + "surface": "返り咲く", + "readging": "かえりざく", + "pos": "動詞", + "pn": -0.365166 + }, + { + "surface": "波", + "readging": "なみ", + "pos": "名詞", + "pn": -0.365167 + }, + { + "surface": "治下", + "readging": "ちか", + "pos": "名詞", + "pn": -0.365178 + }, + { + "surface": "無気力", + "readging": "むきりょく", + "pos": "名詞", + "pn": -0.365181 + }, + { + "surface": "中期", + "readging": "ちゅうき", + "pos": "名詞", + "pn": -0.365206 + }, + { + "surface": "石灰", + "readging": "いしばい", + "pos": "名詞", + "pn": -0.365207 + }, + { + "surface": "瓦煎餅", + "readging": "かわらせんべい", + "pos": "名詞", + "pn": -0.365225 + }, + { + "surface": "名詮自性", + "readging": "みょうせんじしょう", + "pos": "名詞", + "pn": -0.365251 + }, + { + "surface": "雲間", + "readging": "くもま", + "pos": "名詞", + "pn": -0.365268 + }, + { + "surface": "機屋", + "readging": "はたや", + "pos": "名詞", + "pn": -0.365273 + }, + { + "surface": "私事", + "readging": "しじ", + "pos": "名詞", + "pn": -0.365284 + }, + { + "surface": "別物", + "readging": "べつもの", + "pos": "名詞", + "pn": -0.365318 + }, + { + "surface": "帰参", + "readging": "きさん", + "pos": "名詞", + "pn": -0.365332 + }, + { + "surface": "減らず口", + "readging": "へらずぐち", + "pos": "名詞", + "pn": -0.365349 + }, + { + "surface": "弾み車", + "readging": "はずみぐるま", + "pos": "名詞", + "pn": -0.365357 + }, + { + "surface": "主語", + "readging": "しゅご", + "pos": "名詞", + "pn": -0.365399 + }, + { + "surface": "ジュー", + "readging": "ジュー", + "pos": "名詞", + "pn": -0.36541 + }, + { + "surface": "終", + "readging": "つい", + "pos": "名詞", + "pn": -0.365418 + }, + { + "surface": "事触れ", + "readging": "ことぶれ", + "pos": "名詞", + "pn": -0.365433 + }, + { + "surface": "倒錯", + "readging": "とうさく", + "pos": "名詞", + "pn": -0.365442 + }, + { + "surface": "嗅付ける", + "readging": "かぎつける", + "pos": "動詞", + "pn": -0.365447 + }, + { + "surface": "斬罪", + "readging": "ざんざい", + "pos": "名詞", + "pn": -0.365475 + }, + { + "surface": "入る", + "readging": "いる", + "pos": "動詞", + "pn": -0.365478 + }, + { + "surface": "斑", + "readging": "ぶち", + "pos": "名詞", + "pn": -0.36548 + }, + { + "surface": "布施", + "readging": "ふせ", + "pos": "名詞", + "pn": -0.36549 + }, + { + "surface": "屋台骨", + "readging": "やたいぼね", + "pos": "名詞", + "pn": -0.36549 + }, + { + "surface": "骨董", + "readging": "こっとう", + "pos": "名詞", + "pn": -0.36549 + }, + { + "surface": "声", + "readging": "こえ", + "pos": "名詞", + "pn": -0.365501 + }, + { + "surface": "堅炭", + "readging": "かたずみ", + "pos": "名詞", + "pn": -0.365519 + }, + { + "surface": "落首", + "readging": "らくしゅ", + "pos": "名詞", + "pn": -0.365522 + }, + { + "surface": "喨喨", + "readging": "りょうりょう", + "pos": "名詞", + "pn": -0.365523 + }, + { + "surface": "試着", + "readging": "しちゃく", + "pos": "名詞", + "pn": -0.365532 + }, + { + "surface": "しょぼしょぼ", + "readging": "しょぼしょぼ", + "pos": "名詞", + "pn": -0.365535 + }, + { + "surface": "猟期", + "readging": "りょうき", + "pos": "名詞", + "pn": -0.365584 + }, + { + "surface": "ローム", + "readging": "ローム", + "pos": "名詞", + "pn": -0.365588 + }, + { + "surface": "つかつか", + "readging": "つかつか", + "pos": "副詞", + "pn": -0.365592 + }, + { + "surface": "関税", + "readging": "かんぜい", + "pos": "名詞", + "pn": -0.365678 + }, + { + "surface": "チョップ", + "readging": "チョップ", + "pos": "名詞", + "pn": -0.365686 + }, + { + "surface": "席貸し", + "readging": "せきがし", + "pos": "名詞", + "pn": -0.365687 + }, + { + "surface": "勘", + "readging": "かん", + "pos": "名詞", + "pn": -0.365702 + }, + { + "surface": "骨膜", + "readging": "こつまく", + "pos": "名詞", + "pn": -0.365763 + }, + { + "surface": "硬直", + "readging": "こうちょく", + "pos": "名詞", + "pn": -0.365772 + }, + { + "surface": "駆引き", + "readging": "かけひき", + "pos": "名詞", + "pn": -0.365772 + }, + { + "surface": "石仏", + "readging": "せきぶつ", + "pos": "名詞", + "pn": -0.365787 + }, + { + "surface": "鳩尾", + "readging": "みぞおち", + "pos": "名詞", + "pn": -0.365792 + }, + { + "surface": "神無月", + "readging": "かんなづき", + "pos": "名詞", + "pn": -0.365795 + }, + { + "surface": "征伐", + "readging": "せいばつ", + "pos": "名詞", + "pn": -0.365812 + }, + { + "surface": "軽便", + "readging": "けいべん", + "pos": "名詞", + "pn": -0.36582 + }, + { + "surface": "和語", + "readging": "わご", + "pos": "名詞", + "pn": -0.365822 + }, + { + "surface": "織姫", + "readging": "おりひめ", + "pos": "名詞", + "pn": -0.365843 + }, + { + "surface": "城塞", + "readging": "じょうさい", + "pos": "名詞", + "pn": -0.365848 + }, + { + "surface": "人員", + "readging": "じんいん", + "pos": "名詞", + "pn": -0.365849 + }, + { + "surface": "語格", + "readging": "ごかく", + "pos": "名詞", + "pn": -0.36586 + }, + { + "surface": "荷送り", + "readging": "におくり", + "pos": "名詞", + "pn": -0.365865 + }, + { + "surface": "灯心蜻蛉", + "readging": "とうすみとんぼ", + "pos": "名詞", + "pn": -0.36588 + }, + { + "surface": "電纜", + "readging": "でんらん", + "pos": "名詞", + "pn": -0.365883 + }, + { + "surface": "膵臓", + "readging": "すいぞう", + "pos": "名詞", + "pn": -0.365886 + }, + { + "surface": "売越し", + "readging": "うりこし", + "pos": "名詞", + "pn": -0.365899 + }, + { + "surface": "凝灰岩", + "readging": "ぎょうかいがん", + "pos": "名詞", + "pn": -0.365914 + }, + { + "surface": "行司", + "readging": "ぎょうじ", + "pos": "名詞", + "pn": -0.365921 + }, + { + "surface": "受精", + "readging": "じゅせい", + "pos": "名詞", + "pn": -0.365921 + }, + { + "surface": "フィールド", + "readging": "フィールド", + "pos": "名詞", + "pn": -0.36594 + }, + { + "surface": "暖簾", + "readging": "のれん", + "pos": "名詞", + "pn": -0.36595 + }, + { + "surface": "一札", + "readging": "いっさつ", + "pos": "名詞", + "pn": -0.365973 + }, + { + "surface": "子取り", + "readging": "ことり", + "pos": "名詞", + "pn": -0.366018 + }, + { + "surface": "仮定", + "readging": "かてい", + "pos": "名詞", + "pn": -0.366022 + }, + { + "surface": "二の腕", + "readging": "にのうで", + "pos": "名詞", + "pn": -0.366028 + }, + { + "surface": "タイム", + "readging": "タイムマシン", + "pos": "名詞", + "pn": -0.366037 + }, + { + "surface": "根付く", + "readging": "ねづく", + "pos": "動詞", + "pn": -0.366042 + }, + { + "surface": "小母さん", + "readging": "おばさん", + "pos": "名詞", + "pn": -0.366054 + }, + { + "surface": "賃貸借", + "readging": "ちんたいしゃく", + "pos": "名詞", + "pn": -0.366061 + }, + { + "surface": "神灯", + "readging": "しんとう", + "pos": "名詞", + "pn": -0.36607 + }, + { + "surface": "執行猶予", + "readging": "しっこうゆうよ", + "pos": "名詞", + "pn": -0.366074 + }, + { + "surface": "単弁", + "readging": "たんべん", + "pos": "名詞", + "pn": -0.366089 + }, + { + "surface": "レモン", + "readging": "レモン", + "pos": "名詞", + "pn": -0.366108 + }, + { + "surface": "万民", + "readging": "ばんみん", + "pos": "名詞", + "pn": -0.366116 + }, + { + "surface": "淵", + "readging": "ふち", + "pos": "名詞", + "pn": -0.36614 + }, + { + "surface": "板木", + "readging": "ばんぎ", + "pos": "名詞", + "pn": -0.366147 + }, + { + "surface": "のっぺい", + "readging": "のっぺい", + "pos": "名詞", + "pn": -0.366155 + }, + { + "surface": "櫓臍", + "readging": "ろべそ", + "pos": "名詞", + "pn": -0.366175 + }, + { + "surface": "局", + "readging": "きょく", + "pos": "名詞", + "pn": -0.366178 + }, + { + "surface": "モダニズム", + "readging": "モダニズム", + "pos": "名詞", + "pn": -0.366223 + }, + { + "surface": "軽躁", + "readging": "けいそう", + "pos": "名詞", + "pn": -0.366228 + }, + { + "surface": "対頂角", + "readging": "たいちょうかく", + "pos": "名詞", + "pn": -0.366268 + }, + { + "surface": "人形浄瑠璃", + "readging": "にんぎょうじょうるり", + "pos": "名詞", + "pn": -0.366271 + }, + { + "surface": "知らせる", + "readging": "しらせる", + "pos": "動詞", + "pn": -0.366271 + }, + { + "surface": "メッチェン", + "readging": "メッチェン", + "pos": "名詞", + "pn": -0.366314 + }, + { + "surface": "都邑", + "readging": "とゆう", + "pos": "名詞", + "pn": -0.366356 + }, + { + "surface": "浮橋", + "readging": "うきはし", + "pos": "名詞", + "pn": -0.366385 + }, + { + "surface": "レフェリー", + "readging": "レフェリー", + "pos": "名詞", + "pn": -0.366443 + }, + { + "surface": "寄寓", + "readging": "きぐう", + "pos": "名詞", + "pn": -0.366447 + }, + { + "surface": "牧者", + "readging": "ぼくしゃ", + "pos": "名詞", + "pn": -0.366448 + }, + { + "surface": "小売", + "readging": "こうり", + "pos": "名詞", + "pn": -0.366458 + }, + { + "surface": "硬骨", + "readging": "こうこつ", + "pos": "名詞", + "pn": -0.366464 + }, + { + "surface": "地米", + "readging": "じまい", + "pos": "名詞", + "pn": -0.366494 + }, + { + "surface": "後書", + "readging": "あとがき", + "pos": "名詞", + "pn": -0.366503 + }, + { + "surface": "外角", + "readging": "がいかく", + "pos": "名詞", + "pn": -0.366506 + }, + { + "surface": "版図", + "readging": "はんと", + "pos": "名詞", + "pn": -0.366526 + }, + { + "surface": "寄贈", + "readging": "きぞう", + "pos": "名詞", + "pn": -0.366527 + }, + { + "surface": "初切", + "readging": "しょっきり", + "pos": "名詞", + "pn": -0.366529 + }, + { + "surface": "利潤", + "readging": "りじゅん", + "pos": "名詞", + "pn": -0.366531 + }, + { + "surface": "無何有の郷", + "readging": "むかうのさと", + "pos": "名詞", + "pn": -0.366539 + }, + { + "surface": "川淀", + "readging": "かわよど", + "pos": "名詞", + "pn": -0.366541 + }, + { + "surface": "奉公", + "readging": "ほうこう", + "pos": "名詞", + "pn": -0.366565 + }, + { + "surface": "墨絵", + "readging": "すみえ", + "pos": "名詞", + "pn": -0.366568 + }, + { + "surface": "内定", + "readging": "ないてい", + "pos": "名詞", + "pn": -0.366589 + }, + { + "surface": "文面", + "readging": "ぶんめん", + "pos": "名詞", + "pn": -0.366591 + }, + { + "surface": "歯並", + "readging": "はなみ", + "pos": "名詞", + "pn": -0.366599 + }, + { + "surface": "遠洋", + "readging": "えんよう", + "pos": "名詞", + "pn": -0.366624 + }, + { + "surface": "押し込み", + "readging": "おしこみ", + "pos": "名詞", + "pn": -0.366664 + }, + { + "surface": "啓蒙主義", + "readging": "けいもうしゅぎ", + "pos": "名詞", + "pn": -0.36667 + }, + { + "surface": "軽工業", + "readging": "けいこうぎょう", + "pos": "名詞", + "pn": -0.366673 + }, + { + "surface": "棚上げ", + "readging": "たなあげ", + "pos": "名詞", + "pn": -0.366673 + }, + { + "surface": "刺違える", + "readging": "さしちがえる", + "pos": "動詞", + "pn": -0.366682 + }, + { + "surface": "踊", + "readging": "おどり", + "pos": "名詞", + "pn": -0.366687 + }, + { + "surface": "安んぞ", + "readging": "いずくんぞ", + "pos": "副詞", + "pn": -0.366688 + }, + { + "surface": "恥曝し", + "readging": "はじさらし", + "pos": "名詞", + "pn": -0.366696 + }, + { + "surface": "義眼", + "readging": "ぎがん", + "pos": "名詞", + "pn": -0.3667 + }, + { + "surface": "専門", + "readging": "せんもん", + "pos": "名詞", + "pn": -0.366703 + }, + { + "surface": "相撲取", + "readging": "すもう", + "pos": "名詞", + "pn": -0.366712 + }, + { + "surface": "ヒストグラム", + "readging": "ヒストグラム", + "pos": "名詞", + "pn": -0.366722 + }, + { + "surface": "良導体", + "readging": "りょうどうたい", + "pos": "名詞", + "pn": -0.366723 + }, + { + "surface": "スタン バイ", + "readging": "スタン バイ", + "pos": "名詞", + "pn": -0.366726 + }, + { + "surface": "緞子", + "readging": "どんす", + "pos": "名詞", + "pn": -0.366735 + }, + { + "surface": "総督", + "readging": "そうとく", + "pos": "名詞", + "pn": -0.366739 + }, + { + "surface": "炸裂", + "readging": "さくれつ", + "pos": "名詞", + "pn": -0.366759 + }, + { + "surface": "完封", + "readging": "かんぷう", + "pos": "名詞", + "pn": -0.36679 + }, + { + "surface": "電光", + "readging": "でんこう", + "pos": "名詞", + "pn": -0.366824 + }, + { + "surface": "アトモスフェア", + "readging": "アトモスフェア", + "pos": "名詞", + "pn": -0.366849 + }, + { + "surface": "忍び返し", + "readging": "しのびがえし", + "pos": "名詞", + "pn": -0.366862 + }, + { + "surface": "木造", + "readging": "もくぞう", + "pos": "名詞", + "pn": -0.366863 + }, + { + "surface": "プレー", + "readging": "プレー", + "pos": "名詞", + "pn": -0.366873 + }, + { + "surface": "突っ立つ", + "readging": "つったつ", + "pos": "動詞", + "pn": -0.366877 + }, + { + "surface": "図書館", + "readging": "としょかん", + "pos": "名詞", + "pn": -0.366915 + }, + { + "surface": "当て外れ", + "readging": "あてはずれ", + "pos": "名詞", + "pn": -0.366928 + }, + { + "surface": "歌語", + "readging": "かご", + "pos": "名詞", + "pn": -0.366932 + }, + { + "surface": "飛越す", + "readging": "とびこす", + "pos": "動詞", + "pn": -0.366975 + }, + { + "surface": "デザイン", + "readging": "デザイン", + "pos": "名詞", + "pn": -0.366984 + }, + { + "surface": "虫様突起", + "readging": "ちゅうようとっき", + "pos": "名詞", + "pn": -0.367031 + }, + { + "surface": "先代", + "readging": "せんだい", + "pos": "名詞", + "pn": -0.367069 + }, + { + "surface": "株式", + "readging": "かぶしき", + "pos": "名詞", + "pn": -0.367073 + }, + { + "surface": "チェック", + "readging": "チェックイン", + "pos": "名詞", + "pn": -0.367083 + }, + { + "surface": "正本", + "readging": "しょうほん", + "pos": "名詞", + "pn": -0.367127 + }, + { + "surface": "勘考", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.367141 + }, + { + "surface": "低頭", + "readging": "ていとう", + "pos": "名詞", + "pn": -0.367142 + }, + { + "surface": "諸味", + "readging": "もろみ", + "pos": "名詞", + "pn": -0.36715 + }, + { + "surface": "ワックス", + "readging": "ワックス", + "pos": "名詞", + "pn": -0.367172 + }, + { + "surface": "不渡", + "readging": "ふわたり", + "pos": "名詞", + "pn": -0.367183 + }, + { + "surface": "満艦飾", + "readging": "まんかんしょく", + "pos": "名詞", + "pn": -0.367189 + }, + { + "surface": "突発", + "readging": "とっぱつ", + "pos": "名詞", + "pn": -0.367194 + }, + { + "surface": "がり勉", + "readging": "がりべん", + "pos": "名詞", + "pn": -0.367199 + }, + { + "surface": "下り腹", + "readging": "くだりばら", + "pos": "名詞", + "pn": -0.367201 + }, + { + "surface": "スカンク", + "readging": "スカンク", + "pos": "名詞", + "pn": -0.36721 + }, + { + "surface": "子", + "readging": "こ", + "pos": "名詞", + "pn": -0.367248 + }, + { + "surface": "浅草紙", + "readging": "あさくさがみ", + "pos": "名詞", + "pn": -0.367277 + }, + { + "surface": "損益", + "readging": "そんえき", + "pos": "名詞", + "pn": -0.367283 + }, + { + "surface": "水計", + "readging": "みずばかり", + "pos": "名詞", + "pn": -0.367292 + }, + { + "surface": "トレーラー", + "readging": "トレーラー", + "pos": "名詞", + "pn": -0.367314 + }, + { + "surface": "一直線", + "readging": "いっちょくせん", + "pos": "名詞", + "pn": -0.367328 + }, + { + "surface": "冊子", + "readging": "さっし", + "pos": "名詞", + "pn": -0.367331 + }, + { + "surface": "農", + "readging": "のう", + "pos": "名詞", + "pn": -0.367347 + }, + { + "surface": "秩父", + "readging": "ちちぶ", + "pos": "名詞", + "pn": -0.367349 + }, + { + "surface": "合併", + "readging": "がっぺい", + "pos": "名詞", + "pn": -0.367372 + }, + { + "surface": "発電", + "readging": "はつでん", + "pos": "名詞", + "pn": -0.367373 + }, + { + "surface": "梅酢", + "readging": "うめず", + "pos": "名詞", + "pn": -0.367381 + }, + { + "surface": "貴札", + "readging": "きさつ", + "pos": "名詞", + "pn": -0.367401 + }, + { + "surface": "極東", + "readging": "きょくとう", + "pos": "名詞", + "pn": -0.367457 + }, + { + "surface": "春蝉", + "readging": "はるぜみ", + "pos": "名詞", + "pn": -0.367458 + }, + { + "surface": "神秘", + "readging": "しんぴ", + "pos": "名詞", + "pn": -0.367459 + }, + { + "surface": "玉乗り", + "readging": "たまのり", + "pos": "名詞", + "pn": -0.367478 + }, + { + "surface": "交付", + "readging": "こうふ", + "pos": "名詞", + "pn": -0.367501 + }, + { + "surface": "紺", + "readging": "こん", + "pos": "名詞", + "pn": -0.367519 + }, + { + "surface": "座標軸", + "readging": "ざひょうじく", + "pos": "名詞", + "pn": -0.36753 + }, + { + "surface": "足慣し", + "readging": "あしならし", + "pos": "名詞", + "pn": -0.367534 + }, + { + "surface": "備品", + "readging": "びひん", + "pos": "名詞", + "pn": -0.367549 + }, + { + "surface": "本成り", + "readging": "もとなり", + "pos": "名詞", + "pn": -0.367551 + }, + { + "surface": "旭", + "readging": "きょく", + "pos": "名詞", + "pn": -0.367553 + }, + { + "surface": "遠謀", + "readging": "えんぼう", + "pos": "名詞", + "pn": -0.367553 + }, + { + "surface": "踊歩", + "readging": "おどりぶ", + "pos": "名詞", + "pn": -0.367563 + }, + { + "surface": "扱く", + "readging": "しごく", + "pos": "動詞", + "pn": -0.367565 + }, + { + "surface": "最高裁判所", + "readging": "さいこうさいばんしょ", + "pos": "名詞", + "pn": -0.367566 + }, + { + "surface": "徹する", + "readging": "てっする", + "pos": "動詞", + "pn": -0.36757 + }, + { + "surface": "薹", + "readging": "とう", + "pos": "名詞", + "pn": -0.367578 + }, + { + "surface": "宗門", + "readging": "しゅうもん", + "pos": "名詞", + "pn": -0.367588 + }, + { + "surface": "風車", + "readging": "かざぐるま", + "pos": "名詞", + "pn": -0.367594 + }, + { + "surface": "鬼門除け", + "readging": "きもんよけ", + "pos": "名詞", + "pn": -0.367611 + }, + { + "surface": "夷", + "readging": "い", + "pos": "名詞", + "pn": -0.367611 + }, + { + "surface": "緑陰", + "readging": "りょくいん", + "pos": "名詞", + "pn": -0.367613 + }, + { + "surface": "機雷", + "readging": "きらい", + "pos": "名詞", + "pn": -0.367618 + }, + { + "surface": "木鋏", + "readging": "きばさみ", + "pos": "名詞", + "pn": -0.367632 + }, + { + "surface": "公卿", + "readging": "こうけい", + "pos": "名詞", + "pn": -0.367635 + }, + { + "surface": "半信半疑", + "readging": "はんしんはんぎ", + "pos": "名詞", + "pn": -0.367646 + }, + { + "surface": "至急", + "readging": "しきゅう", + "pos": "副詞", + "pn": -0.367669 + }, + { + "surface": "あいこ", + "readging": "あいこ", + "pos": "名詞", + "pn": -0.367684 + }, + { + "surface": "薄荷油", + "readging": "はっかゆ", + "pos": "名詞", + "pn": -0.367684 + }, + { + "surface": "お父さん", + "readging": "おとうさん", + "pos": "名詞", + "pn": -0.367711 + }, + { + "surface": "北極星", + "readging": "ほっきょくせい", + "pos": "名詞", + "pn": -0.367726 + }, + { + "surface": "当事者", + "readging": "とうじしゃ", + "pos": "名詞", + "pn": -0.367726 + }, + { + "surface": "ツイン", + "readging": "ツイン", + "pos": "名詞", + "pn": -0.367739 + }, + { + "surface": "冷え冷え", + "readging": "ひえびえ", + "pos": "名詞", + "pn": -0.367767 + }, + { + "surface": "節奏", + "readging": "せっそう", + "pos": "名詞", + "pn": -0.367768 + }, + { + "surface": "引込み線", + "readging": "ひっこみせん", + "pos": "名詞", + "pn": -0.367773 + }, + { + "surface": "勿忘草", + "readging": "わすれなぐさ", + "pos": "名詞", + "pn": -0.3678 + }, + { + "surface": "西方", + "readging": "にしがた", + "pos": "名詞", + "pn": -0.367823 + }, + { + "surface": "管区", + "readging": "かんく", + "pos": "名詞", + "pn": -0.367835 + }, + { + "surface": "裁落し", + "readging": "たちおとし", + "pos": "名詞", + "pn": -0.367837 + }, + { + "surface": "うろちょろ", + "readging": "うろちょろ", + "pos": "副詞", + "pn": -0.367837 + }, + { + "surface": "メトロポリス", + "readging": "メトロポリス", + "pos": "名詞", + "pn": -0.367854 + }, + { + "surface": "待伏せ", + "readging": "まちぶせ", + "pos": "名詞", + "pn": -0.367856 + }, + { + "surface": "天変", + "readging": "てんぺん", + "pos": "名詞", + "pn": -0.367901 + }, + { + "surface": "十能", + "readging": "じゅうのう", + "pos": "名詞", + "pn": -0.367919 + }, + { + "surface": "供物", + "readging": "そなえもの", + "pos": "名詞", + "pn": -0.367933 + }, + { + "surface": "オペレーター", + "readging": "オペレーター", + "pos": "名詞", + "pn": -0.367934 + }, + { + "surface": "もぎれる", + "readging": "もぎれる", + "pos": "動詞", + "pn": -0.367948 + }, + { + "surface": "運気", + "readging": "うんき", + "pos": "名詞", + "pn": -0.367977 + }, + { + "surface": "伊達", + "readging": "だて", + "pos": "名詞", + "pn": -0.367985 + }, + { + "surface": "山路", + "readging": "やまじ", + "pos": "名詞", + "pn": -0.367988 + }, + { + "surface": "ワイフ", + "readging": "ワイフ", + "pos": "名詞", + "pn": -0.367996 + }, + { + "surface": "債券", + "readging": "さいけん", + "pos": "名詞", + "pn": -0.368002 + }, + { + "surface": "丁字定規", + "readging": "ていじじょうぎ", + "pos": "名詞", + "pn": -0.368004 + }, + { + "surface": "すぐさま", + "readging": "すぐさま", + "pos": "副詞", + "pn": -0.368014 + }, + { + "surface": "傾ぐ", + "readging": "かしぐ", + "pos": "動詞", + "pn": -0.368029 + }, + { + "surface": "花籤", + "readging": "はなくじ", + "pos": "名詞", + "pn": -0.368035 + }, + { + "surface": "大概", + "readging": "たいがい", + "pos": "名詞", + "pn": -0.368048 + }, + { + "surface": "酌量", + "readging": "しゃくりょう", + "pos": "名詞", + "pn": -0.368072 + }, + { + "surface": "拘束", + "readging": "こうそく", + "pos": "名詞", + "pn": -0.368076 + }, + { + "surface": "はったり", + "readging": "はったり", + "pos": "名詞", + "pn": -0.368094 + }, + { + "surface": "アイス", + "readging": "アイスキャンデー", + "pos": "名詞", + "pn": -0.368104 + }, + { + "surface": "財産目録", + "readging": "ざいさんもくろく", + "pos": "名詞", + "pn": -0.368108 + }, + { + "surface": "レトルト", + "readging": "レトルト", + "pos": "名詞", + "pn": -0.36813 + }, + { + "surface": "あんぜん弁", + "readging": "あんぜんべん", + "pos": "名詞", + "pn": -0.368163 + }, + { + "surface": "狂する", + "readging": "きょうする", + "pos": "動詞", + "pn": -0.368179 + }, + { + "surface": "制定", + "readging": "せいてい", + "pos": "名詞", + "pn": -0.368182 + }, + { + "surface": "アタッシェ ケース", + "readging": "アタッシェ ケース", + "pos": "名詞", + "pn": -0.36819 + }, + { + "surface": "遺臣", + "readging": "いしん", + "pos": "名詞", + "pn": -0.36821 + }, + { + "surface": "講演", + "readging": "こうえん", + "pos": "名詞", + "pn": -0.36822 + }, + { + "surface": "精華", + "readging": "せいか", + "pos": "名詞", + "pn": -0.368225 + }, + { + "surface": "乗切る", + "readging": "のりきる", + "pos": "動詞", + "pn": -0.368227 + }, + { + "surface": "ヘリウム", + "readging": "ヘリウム", + "pos": "名詞", + "pn": -0.368246 + }, + { + "surface": "区分け", + "readging": "くわけ", + "pos": "名詞", + "pn": -0.368247 + }, + { + "surface": "曲学", + "readging": "きょくがく", + "pos": "名詞", + "pn": -0.368248 + }, + { + "surface": "ヒヤシンス", + "readging": "ヒヤシンス", + "pos": "名詞", + "pn": -0.368259 + }, + { + "surface": "暮し", + "readging": "くらし", + "pos": "名詞", + "pn": -0.36829 + }, + { + "surface": "待肥", + "readging": "まちごえ", + "pos": "名詞", + "pn": -0.368332 + }, + { + "surface": "温室", + "readging": "おんしつ", + "pos": "名詞", + "pn": -0.368348 + }, + { + "surface": "ぺてん師", + "readging": "ぺてんし", + "pos": "名詞", + "pn": -0.36836 + }, + { + "surface": "拐帯", + "readging": "かいたい", + "pos": "名詞", + "pn": -0.368367 + }, + { + "surface": "原子炉", + "readging": "げんしろ", + "pos": "名詞", + "pn": -0.368391 + }, + { + "surface": "お膝下", + "readging": "おひざもと", + "pos": "名詞", + "pn": -0.368394 + }, + { + "surface": "錦", + "readging": "きん", + "pos": "名詞", + "pn": -0.368407 + }, + { + "surface": "ブルドーザー", + "readging": "ブルドーザー", + "pos": "名詞", + "pn": -0.368416 + }, + { + "surface": "昨日", + "readging": "さくじつ", + "pos": "名詞", + "pn": -0.368417 + }, + { + "surface": "才六", + "readging": "さいろく", + "pos": "名詞", + "pn": -0.368419 + }, + { + "surface": "傷痕", + "readging": "しょうこん", + "pos": "名詞", + "pn": -0.36842 + }, + { + "surface": "どぎまぎ", + "readging": "どぎまぎ", + "pos": "名詞", + "pn": -0.368455 + }, + { + "surface": "シナリオ", + "readging": "シナリオ", + "pos": "名詞", + "pn": -0.368464 + }, + { + "surface": "燭台", + "readging": "しょくだい", + "pos": "名詞", + "pn": -0.368488 + }, + { + "surface": "ナイロン", + "readging": "ナイロン", + "pos": "名詞", + "pn": -0.368492 + }, + { + "surface": "立入る", + "readging": "たちいる", + "pos": "動詞", + "pn": -0.368497 + }, + { + "surface": "簗", + "readging": "やな", + "pos": "名詞", + "pn": -0.368515 + }, + { + "surface": "明六つ", + "readging": "あけむつ", + "pos": "名詞", + "pn": -0.368543 + }, + { + "surface": "身構え", + "readging": "みがまえ", + "pos": "名詞", + "pn": -0.368555 + }, + { + "surface": "公家", + "readging": "くげ", + "pos": "名詞", + "pn": -0.368555 + }, + { + "surface": "ソップ形", + "readging": "ソップがた", + "pos": "名詞", + "pn": -0.36856 + }, + { + "surface": "控屋敷", + "readging": "ひかえやしき", + "pos": "名詞", + "pn": -0.36858 + }, + { + "surface": "摂理", + "readging": "せつり", + "pos": "名詞", + "pn": -0.368612 + }, + { + "surface": "慈姑", + "readging": "くわい", + "pos": "名詞", + "pn": -0.368639 + }, + { + "surface": "袿", + "readging": "うちぎ", + "pos": "名詞", + "pn": -0.368649 + }, + { + "surface": "地謡", + "readging": "じうたい", + "pos": "名詞", + "pn": -0.36865 + }, + { + "surface": "魔羅", + "readging": "まら", + "pos": "名詞", + "pn": -0.368651 + }, + { + "surface": "衝立", + "readging": "ついたて", + "pos": "名詞", + "pn": -0.368652 + }, + { + "surface": "コンツェルン", + "readging": "コンツェルン", + "pos": "名詞", + "pn": -0.368657 + }, + { + "surface": "張番", + "readging": "はりばん", + "pos": "名詞", + "pn": -0.368661 + }, + { + "surface": "息詰る", + "readging": "いきづまる", + "pos": "動詞", + "pn": -0.368669 + }, + { + "surface": "尖らす", + "readging": "とがらす", + "pos": "動詞", + "pn": -0.368676 + }, + { + "surface": "覇", + "readging": "は", + "pos": "名詞", + "pn": -0.368686 + }, + { + "surface": "紋織", + "readging": "もんおり", + "pos": "名詞", + "pn": -0.368695 + }, + { + "surface": "一路", + "readging": "いちろ", + "pos": "名詞", + "pn": -0.368725 + }, + { + "surface": "結ぼれる", + "readging": "むすぼれる", + "pos": "動詞", + "pn": -0.368735 + }, + { + "surface": "客寓", + "readging": "かくぐう", + "pos": "名詞", + "pn": -0.368742 + }, + { + "surface": "因子", + "readging": "いんし", + "pos": "名詞", + "pn": -0.368775 + }, + { + "surface": "烏犀角", + "readging": "うさいかく", + "pos": "名詞", + "pn": -0.368777 + }, + { + "surface": "空論", + "readging": "くうろん", + "pos": "名詞", + "pn": -0.368799 + }, + { + "surface": "鳩麦", + "readging": "はとむぎ", + "pos": "名詞", + "pn": -0.368827 + }, + { + "surface": "全波", + "readging": "ぜんぱ", + "pos": "名詞", + "pn": -0.368835 + }, + { + "surface": "平侍", + "readging": "ひらざむらい", + "pos": "名詞", + "pn": -0.36884 + }, + { + "surface": "当番", + "readging": "とうばん", + "pos": "名詞", + "pn": -0.368856 + }, + { + "surface": "拱手", + "readging": "きょうしゅ", + "pos": "名詞", + "pn": -0.368865 + }, + { + "surface": "千社札", + "readging": "せんじゃふだ", + "pos": "名詞", + "pn": -0.368897 + }, + { + "surface": "政治家", + "readging": "せいじか", + "pos": "名詞", + "pn": -0.368901 + }, + { + "surface": "宿運", + "readging": "しゅくうん", + "pos": "名詞", + "pn": -0.368912 + }, + { + "surface": "病葉", + "readging": "わくらば", + "pos": "名詞", + "pn": -0.368921 + }, + { + "surface": "球根", + "readging": "きゅうこん", + "pos": "名詞", + "pn": -0.368922 + }, + { + "surface": "再生", + "readging": "さいせい", + "pos": "名詞", + "pn": -0.36893 + }, + { + "surface": "気味", + "readging": "きみ", + "pos": "名詞", + "pn": -0.368931 + }, + { + "surface": "蓚酸", + "readging": "しゅうさん", + "pos": "名詞", + "pn": -0.368935 + }, + { + "surface": "伸子", + "readging": "しんし", + "pos": "名詞", + "pn": -0.368945 + }, + { + "surface": "他山の石", + "readging": "たざんのいし", + "pos": "名詞", + "pn": -0.368968 + }, + { + "surface": "文字", + "readging": "もじ", + "pos": "名詞", + "pn": -0.368997 + }, + { + "surface": "検束", + "readging": "けんそく", + "pos": "名詞", + "pn": -0.368999 + }, + { + "surface": "新興", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.369049 + }, + { + "surface": "雷", + "readging": "かみなり", + "pos": "名詞", + "pn": -0.369083 + }, + { + "surface": "所要", + "readging": "しょよう", + "pos": "名詞", + "pn": -0.369097 + }, + { + "surface": "軽重", + "readging": "けいちょう", + "pos": "名詞", + "pn": -0.369099 + }, + { + "surface": "センチ", + "readging": "センチ", + "pos": "名詞", + "pn": -0.369111 + }, + { + "surface": "大変", + "readging": "たいへん", + "pos": "副詞", + "pn": -0.369115 + }, + { + "surface": "吏道", + "readging": "りどう", + "pos": "名詞", + "pn": -0.369148 + }, + { + "surface": "星条旗", + "readging": "せいじょうき", + "pos": "名詞", + "pn": -0.369211 + }, + { + "surface": "総計", + "readging": "そうけい", + "pos": "名詞", + "pn": -0.369213 + }, + { + "surface": "小", + "readging": "お", + "pos": "名詞", + "pn": -0.369215 + }, + { + "surface": "方解石", + "readging": "ほうかいせき", + "pos": "名詞", + "pn": -0.369232 + }, + { + "surface": "標語", + "readging": "ひょうご", + "pos": "名詞", + "pn": -0.369244 + }, + { + "surface": "葉脈", + "readging": "ようみゃく", + "pos": "名詞", + "pn": -0.369247 + }, + { + "surface": "湿原", + "readging": "しつげん", + "pos": "名詞", + "pn": -0.369308 + }, + { + "surface": "鉛直線", + "readging": "えんちょくせん", + "pos": "名詞", + "pn": -0.369308 + }, + { + "surface": "すがる", + "readging": "すがる", + "pos": "名詞", + "pn": -0.369354 + }, + { + "surface": "並木", + "readging": "なみき", + "pos": "名詞", + "pn": -0.369354 + }, + { + "surface": "実物取引", + "readging": "じつぶつとりひき", + "pos": "名詞", + "pn": -0.369358 + }, + { + "surface": "鳴り", + "readging": "なり", + "pos": "名詞", + "pn": -0.369381 + }, + { + "surface": "損料", + "readging": "そんりょう", + "pos": "名詞", + "pn": -0.369473 + }, + { + "surface": "モデル", + "readging": "モデル", + "pos": "名詞", + "pn": -0.369479 + }, + { + "surface": "表皮", + "readging": "ひょうひ", + "pos": "名詞", + "pn": -0.369479 + }, + { + "surface": "工場", + "readging": "こうじょう", + "pos": "名詞", + "pn": -0.369483 + }, + { + "surface": "門番", + "readging": "もんばん", + "pos": "名詞", + "pn": -0.369494 + }, + { + "surface": "盆踊り", + "readging": "ぼんおどり", + "pos": "名詞", + "pn": -0.369501 + }, + { + "surface": "落ち着ける", + "readging": "おちつける", + "pos": "動詞", + "pn": -0.369507 + }, + { + "surface": "反乱", + "readging": "はんらん", + "pos": "名詞", + "pn": -0.369537 + }, + { + "surface": "公国", + "readging": "こうこく", + "pos": "名詞", + "pn": -0.369555 + }, + { + "surface": "手付", + "readging": "てつけ", + "pos": "名詞", + "pn": -0.36957 + }, + { + "surface": "舟", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.369595 + }, + { + "surface": "寄書", + "readging": "きしょ", + "pos": "名詞", + "pn": -0.369597 + }, + { + "surface": "大将", + "readging": "たいしょう", + "pos": "名詞", + "pn": -0.369629 + }, + { + "surface": "正銘", + "readging": "しょうめい", + "pos": "名詞", + "pn": -0.369642 + }, + { + "surface": "海燕", + "readging": "うみつばめ", + "pos": "名詞", + "pn": -0.369642 + }, + { + "surface": "繊維素", + "readging": "せんいそ", + "pos": "名詞", + "pn": -0.369645 + }, + { + "surface": "取計い", + "readging": "とりはからい", + "pos": "名詞", + "pn": -0.369662 + }, + { + "surface": "五更", + "readging": "ごこう", + "pos": "名詞", + "pn": -0.369674 + }, + { + "surface": "兼行", + "readging": "けんこう", + "pos": "名詞", + "pn": -0.369688 + }, + { + "surface": "駅逓", + "readging": "えきてい", + "pos": "名詞", + "pn": -0.3697 + }, + { + "surface": "所得顔", + "readging": "ところえがお", + "pos": "名詞", + "pn": -0.3697 + }, + { + "surface": "飽くまで", + "readging": "あくまで", + "pos": "副詞", + "pn": -0.369705 + }, + { + "surface": "極座標", + "readging": "きょくざひょう", + "pos": "名詞", + "pn": -0.369714 + }, + { + "surface": "僭主", + "readging": "せんしゅ", + "pos": "名詞", + "pn": -0.369718 + }, + { + "surface": "たゆたう", + "readging": "たゆたう", + "pos": "動詞", + "pn": -0.36972 + }, + { + "surface": "嚊", + "readging": "かかあ", + "pos": "名詞", + "pn": -0.369724 + }, + { + "surface": "験する", + "readging": "けんする", + "pos": "動詞", + "pn": -0.369754 + }, + { + "surface": "内壁", + "readging": "ないへき", + "pos": "名詞", + "pn": -0.369791 + }, + { + "surface": "滑翔", + "readging": "かっしょう", + "pos": "名詞", + "pn": -0.369793 + }, + { + "surface": "ずるずる", + "readging": "ずるずる", + "pos": "副詞", + "pn": -0.369802 + }, + { + "surface": "音", + "readging": "おん", + "pos": "名詞", + "pn": -0.369835 + }, + { + "surface": "フーズ フー", + "readging": "フーズ フー", + "pos": "名詞", + "pn": -0.369947 + }, + { + "surface": "複式簿記", + "readging": "ふくしきぼき", + "pos": "名詞", + "pn": -0.369949 + }, + { + "surface": "給水", + "readging": "きゅうすい", + "pos": "名詞", + "pn": -0.369967 + }, + { + "surface": "公園", + "readging": "こうえん", + "pos": "名詞", + "pn": -0.369996 + }, + { + "surface": "タイ", + "readging": "タイ", + "pos": "名詞", + "pn": -0.370018 + }, + { + "surface": "張力", + "readging": "ちょうりょく", + "pos": "名詞", + "pn": -0.370045 + }, + { + "surface": "押絵", + "readging": "おしえ", + "pos": "名詞", + "pn": -0.370065 + }, + { + "surface": "直列", + "readging": "ちょくれつ", + "pos": "名詞", + "pn": -0.370068 + }, + { + "surface": "中老", + "readging": "ちゅうろう", + "pos": "名詞", + "pn": -0.370071 + }, + { + "surface": "引網", + "readging": "ひきあみ", + "pos": "名詞", + "pn": -0.370079 + }, + { + "surface": "平家蟹", + "readging": "へいけがに", + "pos": "名詞", + "pn": -0.370085 + }, + { + "surface": "散らし書き", + "readging": "ちらしがき", + "pos": "名詞", + "pn": -0.370086 + }, + { + "surface": "竣成", + "readging": "しゅんせい", + "pos": "名詞", + "pn": -0.370093 + }, + { + "surface": "商業", + "readging": "しょうぎょう", + "pos": "名詞", + "pn": -0.370099 + }, + { + "surface": "副業", + "readging": "ふくぎょう", + "pos": "名詞", + "pn": -0.370108 + }, + { + "surface": "二形", + "readging": "ふたなり", + "pos": "名詞", + "pn": -0.370116 + }, + { + "surface": "若湯", + "readging": "わかゆ", + "pos": "名詞", + "pn": -0.370132 + }, + { + "surface": "特記", + "readging": "とっき", + "pos": "名詞", + "pn": -0.370134 + }, + { + "surface": "客土", + "readging": "かくど", + "pos": "名詞", + "pn": -0.370152 + }, + { + "surface": "汁", + "readging": "しる", + "pos": "名詞", + "pn": -0.370158 + }, + { + "surface": "汚俗", + "readging": "おぞく", + "pos": "名詞", + "pn": -0.370176 + }, + { + "surface": "三面六臂", + "readging": "さんめんろっぴ", + "pos": "名詞", + "pn": -0.370224 + }, + { + "surface": "所伝", + "readging": "しょでん", + "pos": "名詞", + "pn": -0.370246 + }, + { + "surface": "五輪塔", + "readging": "ごりんとう", + "pos": "名詞", + "pn": -0.370263 + }, + { + "surface": "顕微鏡", + "readging": "けんびきょう", + "pos": "名詞", + "pn": -0.370275 + }, + { + "surface": "嘘の皮", + "readging": "うそのかわ", + "pos": "名詞", + "pn": -0.370279 + }, + { + "surface": "籤運", + "readging": "くじうん", + "pos": "名詞", + "pn": -0.370281 + }, + { + "surface": "重力", + "readging": "じゅうりょく", + "pos": "名詞", + "pn": -0.370286 + }, + { + "surface": "受持つ", + "readging": "うけもつ", + "pos": "動詞", + "pn": -0.370291 + }, + { + "surface": "日一日", + "readging": "ひいちにち", + "pos": "名詞", + "pn": -0.370295 + }, + { + "surface": "文責在記者", + "readging": "ぶんせきざいきしゃ", + "pos": "名詞", + "pn": -0.370335 + }, + { + "surface": "毎戸", + "readging": "まいこ", + "pos": "名詞", + "pn": -0.370338 + }, + { + "surface": "殿上人", + "readging": "てんじょうびと", + "pos": "名詞", + "pn": -0.370357 + }, + { + "surface": "ブーゲンビリア", + "readging": "ブーゲンビリア", + "pos": "名詞", + "pn": -0.370363 + }, + { + "surface": "ポンプ", + "readging": "ポンプ", + "pos": "名詞", + "pn": -0.370381 + }, + { + "surface": "休載", + "readging": "きゅうさい", + "pos": "名詞", + "pn": -0.370401 + }, + { + "surface": "通用", + "readging": "つうよう", + "pos": "名詞", + "pn": -0.370404 + }, + { + "surface": "リニア カー", + "readging": "リニア カー", + "pos": "名詞", + "pn": -0.37041 + }, + { + "surface": "吸付く", + "readging": "すいつく", + "pos": "動詞", + "pn": -0.370414 + }, + { + "surface": "おまる", + "readging": "おまる", + "pos": "名詞", + "pn": -0.370421 + }, + { + "surface": "護岸", + "readging": "ごがん", + "pos": "名詞", + "pn": -0.370463 + }, + { + "surface": "一口", + "readging": "ひとくち", + "pos": "名詞", + "pn": -0.370463 + }, + { + "surface": "省力", + "readging": "しょうりょく", + "pos": "名詞", + "pn": -0.370465 + }, + { + "surface": "累犯", + "readging": "るいはん", + "pos": "名詞", + "pn": -0.370468 + }, + { + "surface": "藪の中", + "readging": "やぶのなか", + "pos": "名詞", + "pn": -0.370494 + }, + { + "surface": "代物", + "readging": "だいぶつ", + "pos": "名詞", + "pn": -0.370501 + }, + { + "surface": "印象", + "readging": "いんしょう", + "pos": "名詞", + "pn": -0.370506 + }, + { + "surface": "油煙", + "readging": "ゆえん", + "pos": "名詞", + "pn": -0.370511 + }, + { + "surface": "家蔵", + "readging": "かぞう", + "pos": "名詞", + "pn": -0.370528 + }, + { + "surface": "小耳", + "readging": "こみみ", + "pos": "名詞", + "pn": -0.370529 + }, + { + "surface": "花椰菜", + "readging": "はなやさい", + "pos": "名詞", + "pn": -0.370532 + }, + { + "surface": "助炭", + "readging": "じょたん", + "pos": "名詞", + "pn": -0.370544 + }, + { + "surface": "首罪", + "readging": "しゅざい", + "pos": "名詞", + "pn": -0.370556 + }, + { + "surface": "白目", + "readging": "しろめ", + "pos": "名詞", + "pn": -0.370594 + }, + { + "surface": "論壇", + "readging": "ろんだん", + "pos": "名詞", + "pn": -0.37061 + }, + { + "surface": "壁新聞", + "readging": "かべしんぶん", + "pos": "名詞", + "pn": -0.370623 + }, + { + "surface": "決算", + "readging": "けっさん", + "pos": "名詞", + "pn": -0.370633 + }, + { + "surface": "採光", + "readging": "さいこう", + "pos": "名詞", + "pn": -0.370649 + }, + { + "surface": "鵞毛", + "readging": "がもう", + "pos": "名詞", + "pn": -0.370654 + }, + { + "surface": "泥棒回り", + "readging": "どろぼうまわり", + "pos": "名詞", + "pn": -0.370663 + }, + { + "surface": "腕相撲", + "readging": "うでずもう", + "pos": "名詞", + "pn": -0.370667 + }, + { + "surface": "時事", + "readging": "じじ", + "pos": "名詞", + "pn": -0.370692 + }, + { + "surface": "対置", + "readging": "たいち", + "pos": "名詞", + "pn": -0.370694 + }, + { + "surface": "農耕", + "readging": "のうこう", + "pos": "名詞", + "pn": -0.370696 + }, + { + "surface": "傍題", + "readging": "ぼうだい", + "pos": "名詞", + "pn": -0.370711 + }, + { + "surface": "春本", + "readging": "しゅんぽん", + "pos": "名詞", + "pn": -0.370763 + }, + { + "surface": "竜の落し子", + "readging": "たつのおとしご", + "pos": "名詞", + "pn": -0.370777 + }, + { + "surface": "石墨", + "readging": "せきぼく", + "pos": "名詞", + "pn": -0.370792 + }, + { + "surface": "四時", + "readging": "しじ", + "pos": "名詞", + "pn": -0.370803 + }, + { + "surface": "あさって", + "readging": "あさって", + "pos": "名詞", + "pn": -0.370808 + }, + { + "surface": "慰問", + "readging": "いもん", + "pos": "名詞", + "pn": -0.370827 + }, + { + "surface": "英文", + "readging": "えいぶん", + "pos": "名詞", + "pn": -0.37084 + }, + { + "surface": "巡航速度", + "readging": "じゅんこうそくど", + "pos": "名詞", + "pn": -0.370868 + }, + { + "surface": "全紙", + "readging": "ぜんし", + "pos": "名詞", + "pn": -0.370873 + }, + { + "surface": "締切り", + "readging": "しめきり", + "pos": "名詞", + "pn": -0.370895 + }, + { + "surface": "漫ろ歩き", + "readging": "そぞろあるき", + "pos": "名詞", + "pn": -0.370896 + }, + { + "surface": "兌換券", + "readging": "だかんけん", + "pos": "名詞", + "pn": -0.370897 + }, + { + "surface": "菠薐草", + "readging": "ほうれんそう", + "pos": "名詞", + "pn": -0.370913 + }, + { + "surface": "秋", + "readging": "あき", + "pos": "名詞", + "pn": -0.370921 + }, + { + "surface": "葉牡丹", + "readging": "はぼたん", + "pos": "名詞", + "pn": -0.370936 + }, + { + "surface": "冷菓", + "readging": "れいか", + "pos": "名詞", + "pn": -0.370938 + }, + { + "surface": "ビット", + "readging": "ビット", + "pos": "名詞", + "pn": -0.370947 + }, + { + "surface": "証文", + "readging": "しょうもん", + "pos": "名詞", + "pn": -0.370951 + }, + { + "surface": "微温湯", + "readging": "ぬるまゆ", + "pos": "名詞", + "pn": -0.370967 + }, + { + "surface": "聞かす", + "readging": "きかす", + "pos": "動詞", + "pn": -0.370995 + }, + { + "surface": "衽", + "readging": "おくみ", + "pos": "名詞", + "pn": -0.370996 + }, + { + "surface": "扁平足", + "readging": "へんぺいそく", + "pos": "名詞", + "pn": -0.371005 + }, + { + "surface": "盲腸炎", + "readging": "もうちょうえん", + "pos": "名詞", + "pn": -0.371033 + }, + { + "surface": "揺り返し", + "readging": "ゆりかえし", + "pos": "名詞", + "pn": -0.371038 + }, + { + "surface": "魚灯油", + "readging": "ぎょとうゆ", + "pos": "名詞", + "pn": -0.371054 + }, + { + "surface": "レモネード", + "readging": "レモネード", + "pos": "名詞", + "pn": -0.371073 + }, + { + "surface": "芽差す", + "readging": "めざす", + "pos": "動詞", + "pn": -0.371101 + }, + { + "surface": "益荒男", + "readging": "ますらお", + "pos": "名詞", + "pn": -0.371136 + }, + { + "surface": "出水", + "readging": "でみず", + "pos": "名詞", + "pn": -0.371142 + }, + { + "surface": "遺児", + "readging": "いじ", + "pos": "名詞", + "pn": -0.371143 + }, + { + "surface": "復辟", + "readging": "ふくへき", + "pos": "名詞", + "pn": -0.371155 + }, + { + "surface": "導因", + "readging": "どういん", + "pos": "名詞", + "pn": -0.371159 + }, + { + "surface": "大詔", + "readging": "たいしょう", + "pos": "名詞", + "pn": -0.371171 + }, + { + "surface": "多辺形", + "readging": "たへんけい", + "pos": "名詞", + "pn": -0.371183 + }, + { + "surface": "碁石", + "readging": "ごいし", + "pos": "名詞", + "pn": -0.371185 + }, + { + "surface": "礼金", + "readging": "れいきん", + "pos": "名詞", + "pn": -0.371195 + }, + { + "surface": "指南車", + "readging": "しなんしゃ", + "pos": "名詞", + "pn": -0.371198 + }, + { + "surface": "勝名乗り", + "readging": "かちなのり", + "pos": "名詞", + "pn": -0.371203 + }, + { + "surface": "探り足", + "readging": "さぐりあし", + "pos": "名詞", + "pn": -0.371205 + }, + { + "surface": "一貫", + "readging": "いっかん", + "pos": "名詞", + "pn": -0.371215 + }, + { + "surface": "列座", + "readging": "れつざ", + "pos": "名詞", + "pn": -0.37124 + }, + { + "surface": "とことん", + "readging": "とことん", + "pos": "副詞", + "pn": -0.37125 + }, + { + "surface": "カーソル", + "readging": "カーソル", + "pos": "名詞", + "pn": -0.371251 + }, + { + "surface": "遮断", + "readging": "しゃだん", + "pos": "名詞", + "pn": -0.371254 + }, + { + "surface": "側近", + "readging": "そっきん", + "pos": "名詞", + "pn": -0.371268 + }, + { + "surface": "遺憾無く", + "readging": "いかんなく", + "pos": "副詞", + "pn": -0.371276 + }, + { + "surface": "戦国", + "readging": "せんごく", + "pos": "名詞", + "pn": -0.371282 + }, + { + "surface": "紡織", + "readging": "ぼうしょく", + "pos": "名詞", + "pn": -0.371321 + }, + { + "surface": "憚りながら", + "readging": "はばかりながら", + "pos": "副詞", + "pn": -0.371344 + }, + { + "surface": "太神楽", + "readging": "だいかぐら", + "pos": "名詞", + "pn": -0.371363 + }, + { + "surface": "宝珠", + "readging": "ほうじゅ", + "pos": "名詞", + "pn": -0.371395 + }, + { + "surface": "海外", + "readging": "かいがい", + "pos": "名詞", + "pn": -0.371398 + }, + { + "surface": "市勢", + "readging": "しせい", + "pos": "名詞", + "pn": -0.371411 + }, + { + "surface": "鵬翼", + "readging": "ほうよく", + "pos": "名詞", + "pn": -0.371416 + }, + { + "surface": "和算", + "readging": "わさん", + "pos": "名詞", + "pn": -0.371426 + }, + { + "surface": "巫術", + "readging": "ふじゅつ", + "pos": "名詞", + "pn": -0.371443 + }, + { + "surface": "内通", + "readging": "ないつう", + "pos": "名詞", + "pn": -0.371474 + }, + { + "surface": "ベンゾール", + "readging": "ベンゾール", + "pos": "名詞", + "pn": -0.37149 + }, + { + "surface": "帳面", + "readging": "ちょうづら", + "pos": "名詞", + "pn": -0.371506 + }, + { + "surface": "内輪", + "readging": "うちわ", + "pos": "名詞", + "pn": -0.371508 + }, + { + "surface": "一刻", + "readging": "いっこく", + "pos": "名詞", + "pn": -0.371523 + }, + { + "surface": "不審火", + "readging": "ふしんび", + "pos": "名詞", + "pn": -0.371528 + }, + { + "surface": "堆肥", + "readging": "たいひ", + "pos": "名詞", + "pn": -0.371555 + }, + { + "surface": "皇居", + "readging": "こうきょ", + "pos": "名詞", + "pn": -0.37158 + }, + { + "surface": "珠", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.371592 + }, + { + "surface": "雪盲", + "readging": "せつもう", + "pos": "名詞", + "pn": -0.371606 + }, + { + "surface": "衷心", + "readging": "ちゅうしん", + "pos": "名詞", + "pn": -0.37164 + }, + { + "surface": "殉難", + "readging": "じゅんなん", + "pos": "名詞", + "pn": -0.371646 + }, + { + "surface": "将棋倒し", + "readging": "しょうぎだおし", + "pos": "名詞", + "pn": -0.371654 + }, + { + "surface": "級", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.371664 + }, + { + "surface": "修羅場", + "readging": "しゅらじょう", + "pos": "名詞", + "pn": -0.371672 + }, + { + "surface": "斧正", + "readging": "ふせい", + "pos": "名詞", + "pn": -0.371685 + }, + { + "surface": "重湯", + "readging": "おもゆ", + "pos": "名詞", + "pn": -0.371694 + }, + { + "surface": "里雪", + "readging": "さとゆき", + "pos": "名詞", + "pn": -0.371704 + }, + { + "surface": "木肌", + "readging": "きはだ", + "pos": "名詞", + "pn": -0.37173 + }, + { + "surface": "碾臼", + "readging": "ひきうす", + "pos": "名詞", + "pn": -0.37177 + }, + { + "surface": "閻魔帳", + "readging": "えんまちょう", + "pos": "名詞", + "pn": -0.371816 + }, + { + "surface": "集り", + "readging": "あつまり", + "pos": "名詞", + "pn": -0.371819 + }, + { + "surface": "ガーター", + "readging": "ガーター", + "pos": "名詞", + "pn": -0.371836 + }, + { + "surface": "誤信", + "readging": "ごしん", + "pos": "名詞", + "pn": -0.371837 + }, + { + "surface": "町火消", + "readging": "まちびけし", + "pos": "名詞", + "pn": -0.371846 + }, + { + "surface": "掛合う", + "readging": "かけあう", + "pos": "動詞", + "pn": -0.371858 + }, + { + "surface": "デニム", + "readging": "デニム", + "pos": "名詞", + "pn": -0.371864 + }, + { + "surface": "練乳", + "readging": "れんにゅう", + "pos": "名詞", + "pn": -0.371866 + }, + { + "surface": "西陣", + "readging": "にしじん", + "pos": "名詞", + "pn": -0.371931 + }, + { + "surface": "ホルスタイン", + "readging": "ホルスタイン", + "pos": "名詞", + "pn": -0.371932 + }, + { + "surface": "差出人", + "readging": "さしだしにん", + "pos": "名詞", + "pn": -0.371943 + }, + { + "surface": "陪審", + "readging": "ばいしん", + "pos": "名詞", + "pn": -0.371957 + }, + { + "surface": "往事", + "readging": "おうじ", + "pos": "名詞", + "pn": -0.371967 + }, + { + "surface": "ピンク", + "readging": "ピンク", + "pos": "名詞", + "pn": -0.371987 + }, + { + "surface": "にんげん", + "readging": "にんげんドック", + "pos": "名詞", + "pn": -0.371999 + }, + { + "surface": "管領", + "readging": "かんりょう", + "pos": "名詞", + "pn": -0.372008 + }, + { + "surface": "自由貿易", + "readging": "じゆうぼうえき", + "pos": "名詞", + "pn": -0.372023 + }, + { + "surface": "年取り", + "readging": "としとり", + "pos": "名詞", + "pn": -0.372027 + }, + { + "surface": "後日", + "readging": "ごじつ", + "pos": "名詞", + "pn": -0.372047 + }, + { + "surface": "未経験", + "readging": "みけいけん", + "pos": "名詞", + "pn": -0.372056 + }, + { + "surface": "鬼面", + "readging": "きめん", + "pos": "名詞", + "pn": -0.372066 + }, + { + "surface": "何とか", + "readging": "なんとか", + "pos": "副詞", + "pn": -0.372072 + }, + { + "surface": "偏差", + "readging": "へんさ", + "pos": "名詞", + "pn": -0.372083 + }, + { + "surface": "関取", + "readging": "せきとり", + "pos": "名詞", + "pn": -0.372091 + }, + { + "surface": "光学器械", + "readging": "こうがくきかい", + "pos": "名詞", + "pn": -0.372101 + }, + { + "surface": "幻想曲", + "readging": "げんそうきょく", + "pos": "名詞", + "pn": -0.37211 + }, + { + "surface": "侵害", + "readging": "しんがい", + "pos": "名詞", + "pn": -0.372119 + }, + { + "surface": "左義長", + "readging": "さぎちょう", + "pos": "名詞", + "pn": -0.372126 + }, + { + "surface": "師表", + "readging": "しひょう", + "pos": "名詞", + "pn": -0.372127 + }, + { + "surface": "難航", + "readging": "なんこう", + "pos": "名詞", + "pn": -0.372127 + }, + { + "surface": "日並", + "readging": "ひなみ", + "pos": "名詞", + "pn": -0.37213 + }, + { + "surface": "念仏三昧", + "readging": "ねんぶつざんまい", + "pos": "名詞", + "pn": -0.372236 + }, + { + "surface": "関知", + "readging": "かんち", + "pos": "名詞", + "pn": -0.372251 + }, + { + "surface": "コップ", + "readging": "コップ", + "pos": "名詞", + "pn": -0.372253 + }, + { + "surface": "ころ", + "readging": "ころ", + "pos": "名詞", + "pn": -0.37227 + }, + { + "surface": "ネット", + "readging": "ネットワーク", + "pos": "名詞", + "pn": -0.372277 + }, + { + "surface": "小市民", + "readging": "しょうしみん", + "pos": "名詞", + "pn": -0.372299 + }, + { + "surface": "目高", + "readging": "めだか", + "pos": "名詞", + "pn": -0.372305 + }, + { + "surface": "失費", + "readging": "しっぴ", + "pos": "名詞", + "pn": -0.372318 + }, + { + "surface": "色直し", + "readging": "いろなおし", + "pos": "名詞", + "pn": -0.372326 + }, + { + "surface": "胴体", + "readging": "どうたい", + "pos": "名詞", + "pn": -0.37235 + }, + { + "surface": "軍記", + "readging": "ぐんき", + "pos": "名詞", + "pn": -0.372368 + }, + { + "surface": "ベロア", + "readging": "ベロア", + "pos": "名詞", + "pn": -0.37238 + }, + { + "surface": "市民", + "readging": "しみん", + "pos": "名詞", + "pn": -0.372384 + }, + { + "surface": "幕屋", + "readging": "まくや", + "pos": "名詞", + "pn": -0.372387 + }, + { + "surface": "票読み", + "readging": "ひょうよみ", + "pos": "名詞", + "pn": -0.372407 + }, + { + "surface": "初会", + "readging": "しょかい", + "pos": "名詞", + "pn": -0.372409 + }, + { + "surface": "蜜柑", + "readging": "みかん", + "pos": "名詞", + "pn": -0.372413 + }, + { + "surface": "托卵", + "readging": "たくらん", + "pos": "名詞", + "pn": -0.372442 + }, + { + "surface": "置換える", + "readging": "おきかえる", + "pos": "動詞", + "pn": -0.372458 + }, + { + "surface": "コロイド", + "readging": "コロイド", + "pos": "名詞", + "pn": -0.37248 + }, + { + "surface": "片付く", + "readging": "かたづく", + "pos": "動詞", + "pn": -0.372511 + }, + { + "surface": "水酸基", + "readging": "すいさんき", + "pos": "名詞", + "pn": -0.372535 + }, + { + "surface": "茶会", + "readging": "ちゃかい", + "pos": "名詞", + "pn": -0.372587 + }, + { + "surface": "掛茶屋", + "readging": "かけぢゃや", + "pos": "名詞", + "pn": -0.372593 + }, + { + "surface": "ストップ", + "readging": "ストップウォッチ", + "pos": "名詞", + "pn": -0.372595 + }, + { + "surface": "産み付ける", + "readging": "うみつける", + "pos": "動詞", + "pn": -0.372599 + }, + { + "surface": "整調", + "readging": "せいちょう", + "pos": "名詞", + "pn": -0.372602 + }, + { + "surface": "心根", + "readging": "こころね", + "pos": "名詞", + "pn": -0.372625 + }, + { + "surface": "扶桑", + "readging": "ふそう", + "pos": "名詞", + "pn": -0.372642 + }, + { + "surface": "登録", + "readging": "とうろく", + "pos": "名詞", + "pn": -0.372643 + }, + { + "surface": "ふやかす", + "readging": "ふやかす", + "pos": "動詞", + "pn": -0.372657 + }, + { + "surface": "慣例", + "readging": "かんれい", + "pos": "名詞", + "pn": -0.372692 + }, + { + "surface": "蝶結び", + "readging": "ちょうむすび", + "pos": "名詞", + "pn": -0.372694 + }, + { + "surface": "人権侵害", + "readging": "じんけんしんがい", + "pos": "名詞", + "pn": -0.372695 + }, + { + "surface": "御面相", + "readging": "ごめんそう", + "pos": "名詞", + "pn": -0.372696 + }, + { + "surface": "余白", + "readging": "よはく", + "pos": "名詞", + "pn": -0.372709 + }, + { + "surface": "廃帝", + "readging": "はいてい", + "pos": "名詞", + "pn": -0.372749 + }, + { + "surface": "陸", + "readging": "おか", + "pos": "名詞", + "pn": -0.372761 + }, + { + "surface": "探求", + "readging": "たんきゅう", + "pos": "名詞", + "pn": -0.372788 + }, + { + "surface": "匁", + "readging": "もんめ", + "pos": "名詞", + "pn": -0.372807 + }, + { + "surface": "七七日", + "readging": "なななのか", + "pos": "名詞", + "pn": -0.372814 + }, + { + "surface": "市松", + "readging": "いちまつ", + "pos": "名詞", + "pn": -0.372816 + }, + { + "surface": "営み", + "readging": "いとなみ", + "pos": "名詞", + "pn": -0.372821 + }, + { + "surface": "鍛造", + "readging": "たんぞう", + "pos": "名詞", + "pn": -0.372827 + }, + { + "surface": "サービス", + "readging": "サービスステーション", + "pos": "名詞", + "pn": -0.372835 + }, + { + "surface": "早秋", + "readging": "そうしゅう", + "pos": "名詞", + "pn": -0.372836 + }, + { + "surface": "ライフ", + "readging": "ライフワーク", + "pos": "名詞", + "pn": -0.372844 + }, + { + "surface": "必ずしも", + "readging": "かならずしも", + "pos": "副詞", + "pn": -0.372851 + }, + { + "surface": "青蛙", + "readging": "あおがえる", + "pos": "名詞", + "pn": -0.372869 + }, + { + "surface": "麝香猫", + "readging": "じゃこうねこ", + "pos": "名詞", + "pn": -0.37287 + }, + { + "surface": "ごわごわ", + "readging": "ごわごわ", + "pos": "名詞", + "pn": -0.372874 + }, + { + "surface": "即座", + "readging": "そくざ", + "pos": "名詞", + "pn": -0.372877 + }, + { + "surface": "裸", + "readging": "はだか", + "pos": "名詞", + "pn": -0.372912 + }, + { + "surface": "カオリン", + "readging": "カオリン", + "pos": "名詞", + "pn": -0.372915 + }, + { + "surface": "司祭", + "readging": "しさい", + "pos": "名詞", + "pn": -0.372925 + }, + { + "surface": "硼酸", + "readging": "ほうさん", + "pos": "名詞", + "pn": -0.372928 + }, + { + "surface": "主計", + "readging": "しゅけい", + "pos": "名詞", + "pn": -0.372933 + }, + { + "surface": "音訳", + "readging": "おんやく", + "pos": "名詞", + "pn": -0.372936 + }, + { + "surface": "送り火", + "readging": "おくりび", + "pos": "名詞", + "pn": -0.372949 + }, + { + "surface": "幹", + "readging": "から", + "pos": "名詞", + "pn": -0.372949 + }, + { + "surface": "異国", + "readging": "いこく", + "pos": "名詞", + "pn": -0.37295 + }, + { + "surface": "切換える", + "readging": "きりかえる", + "pos": "動詞", + "pn": -0.372967 + }, + { + "surface": "喧伝", + "readging": "けんでん", + "pos": "名詞", + "pn": -0.372968 + }, + { + "surface": "悲境", + "readging": "ひきょう", + "pos": "名詞", + "pn": -0.37297 + }, + { + "surface": "蛞蝓", + "readging": "なめくじ", + "pos": "名詞", + "pn": -0.373002 + }, + { + "surface": "充電", + "readging": "じゅうでん", + "pos": "名詞", + "pn": -0.373006 + }, + { + "surface": "軍団", + "readging": "ぐんだん", + "pos": "名詞", + "pn": -0.373017 + }, + { + "surface": "一晩", + "readging": "ひとばん", + "pos": "名詞", + "pn": -0.373021 + }, + { + "surface": "詮", + "readging": "せん", + "pos": "名詞", + "pn": -0.373033 + }, + { + "surface": "海猫", + "readging": "うみねこ", + "pos": "名詞", + "pn": -0.373073 + }, + { + "surface": "尾鰭", + "readging": "おひれ", + "pos": "名詞", + "pn": -0.373074 + }, + { + "surface": "無念", + "readging": "ぶねん", + "pos": "名詞", + "pn": -0.373085 + }, + { + "surface": "抹香鯨", + "readging": "まっこうくじら", + "pos": "名詞", + "pn": -0.373085 + }, + { + "surface": "腕", + "readging": "うで", + "pos": "名詞", + "pn": -0.373086 + }, + { + "surface": "泣かす", + "readging": "なかす", + "pos": "動詞", + "pn": -0.373132 + }, + { + "surface": "硬化油", + "readging": "こうかゆ", + "pos": "名詞", + "pn": -0.373136 + }, + { + "surface": "形象", + "readging": "けいしょう", + "pos": "名詞", + "pn": -0.373155 + }, + { + "surface": "カースト", + "readging": "カースト", + "pos": "名詞", + "pn": -0.373175 + }, + { + "surface": "利害", + "readging": "りがい", + "pos": "名詞", + "pn": -0.3732 + }, + { + "surface": "取交す", + "readging": "とりかわす", + "pos": "動詞", + "pn": -0.373244 + }, + { + "surface": "ぞろぞろ", + "readging": "ぞろぞろ", + "pos": "副詞", + "pn": -0.373258 + }, + { + "surface": "メチルアルコール", + "readging": "メチルアルコール", + "pos": "名詞", + "pn": -0.373259 + }, + { + "surface": "ぐりはま", + "readging": "ぐりはま", + "pos": "名詞", + "pn": -0.373274 + }, + { + "surface": "三重唱", + "readging": "さんじゅうしょう", + "pos": "名詞", + "pn": -0.373285 + }, + { + "surface": "化学肥料", + "readging": "かがくひりょう", + "pos": "名詞", + "pn": -0.3733 + }, + { + "surface": "陸蒸気", + "readging": "おかじょうき", + "pos": "名詞", + "pn": -0.373304 + }, + { + "surface": "動因", + "readging": "どういん", + "pos": "名詞", + "pn": -0.373343 + }, + { + "surface": "魔術", + "readging": "まじゅつ", + "pos": "名詞", + "pn": -0.373384 + }, + { + "surface": "出芽", + "readging": "しゅつが", + "pos": "名詞", + "pn": -0.373435 + }, + { + "surface": "畝", + "readging": "うね", + "pos": "名詞", + "pn": -0.373441 + }, + { + "surface": "逆子", + "readging": "さかご", + "pos": "名詞", + "pn": -0.373459 + }, + { + "surface": "無人", + "readging": "むじん", + "pos": "名詞", + "pn": -0.373463 + }, + { + "surface": "漂泊", + "readging": "ひょうはく", + "pos": "名詞", + "pn": -0.373477 + }, + { + "surface": "繁茂", + "readging": "はんも", + "pos": "名詞", + "pn": -0.373483 + }, + { + "surface": "診療", + "readging": "しんりょう", + "pos": "名詞", + "pn": -0.373502 + }, + { + "surface": "苛性", + "readging": "かせい", + "pos": "名詞", + "pn": -0.373507 + }, + { + "surface": "ほいと", + "readging": "ほいと", + "pos": "名詞", + "pn": -0.373517 + }, + { + "surface": "発着", + "readging": "はっちゃく", + "pos": "名詞", + "pn": -0.373519 + }, + { + "surface": "喚声", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.373522 + }, + { + "surface": "医", + "readging": "い", + "pos": "名詞", + "pn": -0.373525 + }, + { + "surface": "屈曲", + "readging": "くっきょく", + "pos": "名詞", + "pn": -0.373556 + }, + { + "surface": "膿汁", + "readging": "のうじゅう", + "pos": "名詞", + "pn": -0.373574 + }, + { + "surface": "寄留", + "readging": "きりゅう", + "pos": "名詞", + "pn": -0.373579 + }, + { + "surface": "ウクレレ", + "readging": "ウクレレ", + "pos": "名詞", + "pn": -0.373596 + }, + { + "surface": "鋒鋩", + "readging": "ほうぼう", + "pos": "名詞", + "pn": -0.37363 + }, + { + "surface": "地突き", + "readging": "じつき", + "pos": "名詞", + "pn": -0.373662 + }, + { + "surface": "硬式", + "readging": "こうしき", + "pos": "名詞", + "pn": -0.373663 + }, + { + "surface": "刳舟", + "readging": "くりふね", + "pos": "名詞", + "pn": -0.373663 + }, + { + "surface": "合評", + "readging": "がっぴょう", + "pos": "名詞", + "pn": -0.373663 + }, + { + "surface": "追号", + "readging": "ついごう", + "pos": "名詞", + "pn": -0.373675 + }, + { + "surface": "分つ", + "readging": "わかつ", + "pos": "動詞", + "pn": -0.373681 + }, + { + "surface": "赤蜻蛉", + "readging": "あかとんぼ", + "pos": "名詞", + "pn": -0.373685 + }, + { + "surface": "親告罪", + "readging": "しんこくざい", + "pos": "名詞", + "pn": -0.373694 + }, + { + "surface": "霊気", + "readging": "れいき", + "pos": "名詞", + "pn": -0.373706 + }, + { + "surface": "チタン", + "readging": "チタン", + "pos": "名詞", + "pn": -0.373717 + }, + { + "surface": "洗浄", + "readging": "せんじょう", + "pos": "名詞", + "pn": -0.373719 + }, + { + "surface": "門", + "readging": "かど", + "pos": "名詞", + "pn": -0.373735 + }, + { + "surface": "万物", + "readging": "ばんぶつ", + "pos": "名詞", + "pn": -0.373736 + }, + { + "surface": "ペーチカ", + "readging": "ペーチカ", + "pos": "名詞", + "pn": -0.37374 + }, + { + "surface": "巣籠る", + "readging": "すごもる", + "pos": "動詞", + "pn": -0.373749 + }, + { + "surface": "平押", + "readging": "ひらおし", + "pos": "名詞", + "pn": -0.373759 + }, + { + "surface": "最中", + "readging": "さいちゅう", + "pos": "名詞", + "pn": -0.373768 + }, + { + "surface": "スクリプター", + "readging": "スクリプター", + "pos": "名詞", + "pn": -0.373778 + }, + { + "surface": "期する", + "readging": "きする", + "pos": "動詞", + "pn": -0.373787 + }, + { + "surface": "追込み", + "readging": "おいこみ", + "pos": "名詞", + "pn": -0.3738 + }, + { + "surface": "僧尼", + "readging": "そうに", + "pos": "名詞", + "pn": -0.37381 + }, + { + "surface": "手前", + "readging": "てまえ", + "pos": "名詞", + "pn": -0.373817 + }, + { + "surface": "述作", + "readging": "じゅっさく", + "pos": "名詞", + "pn": -0.373823 + }, + { + "surface": "下校", + "readging": "げこう", + "pos": "名詞", + "pn": -0.373844 + }, + { + "surface": "トランジスタ", + "readging": "トランジスタ", + "pos": "名詞", + "pn": -0.373854 + }, + { + "surface": "現象学", + "readging": "げんしょうがく", + "pos": "名詞", + "pn": -0.373859 + }, + { + "surface": "台帳", + "readging": "だいちょう", + "pos": "名詞", + "pn": -0.373884 + }, + { + "surface": "黄表紙", + "readging": "きびょうし", + "pos": "名詞", + "pn": -0.373923 + }, + { + "surface": "執着", + "readging": "しゅうじゃく", + "pos": "名詞", + "pn": -0.37394 + }, + { + "surface": "立て掛ける", + "readging": "たてかける", + "pos": "動詞", + "pn": -0.373944 + }, + { + "surface": "竜涎香", + "readging": "りゅうぜんこう", + "pos": "名詞", + "pn": -0.373949 + }, + { + "surface": "開札", + "readging": "かいさつ", + "pos": "名詞", + "pn": -0.373961 + }, + { + "surface": "暮鐘", + "readging": "ぼしょう", + "pos": "名詞", + "pn": -0.373984 + }, + { + "surface": "画", + "readging": "かく", + "pos": "名詞", + "pn": -0.373993 + }, + { + "surface": "買漁る", + "readging": "かいあさる", + "pos": "動詞", + "pn": -0.374004 + }, + { + "surface": "原拠", + "readging": "げんきょ", + "pos": "名詞", + "pn": -0.374005 + }, + { + "surface": "横滑り", + "readging": "よこすべり", + "pos": "名詞", + "pn": -0.374054 + }, + { + "surface": "デスク", + "readging": "デスク", + "pos": "名詞", + "pn": -0.374059 + }, + { + "surface": "競売", + "readging": "きょうばい", + "pos": "名詞", + "pn": -0.374078 + }, + { + "surface": "プレー", + "readging": "プレーボール", + "pos": "名詞", + "pn": -0.374083 + }, + { + "surface": "長年", + "readging": "ながねん", + "pos": "名詞", + "pn": -0.374121 + }, + { + "surface": "寺小姓", + "readging": "てらこしょう", + "pos": "名詞", + "pn": -0.374129 + }, + { + "surface": "歩兵", + "readging": "ほへい", + "pos": "名詞", + "pn": -0.374133 + }, + { + "surface": "陪臣", + "readging": "ばいしん", + "pos": "名詞", + "pn": -0.374136 + }, + { + "surface": "買占め", + "readging": "かいしめ", + "pos": "名詞", + "pn": -0.374156 + }, + { + "surface": "行道", + "readging": "ぎょうどう", + "pos": "名詞", + "pn": -0.374159 + }, + { + "surface": "庭", + "readging": "てい", + "pos": "名詞", + "pn": -0.374163 + }, + { + "surface": "走破", + "readging": "そうは", + "pos": "名詞", + "pn": -0.374166 + }, + { + "surface": "補", + "readging": "ほ", + "pos": "名詞", + "pn": -0.37417 + }, + { + "surface": "斎", + "readging": "とき", + "pos": "名詞", + "pn": -0.37418 + }, + { + "surface": "寸評", + "readging": "すんぴょう", + "pos": "名詞", + "pn": -0.374194 + }, + { + "surface": "突刺す", + "readging": "つきさす", + "pos": "動詞", + "pn": -0.374195 + }, + { + "surface": "マグネシア", + "readging": "マグネシア", + "pos": "名詞", + "pn": -0.374197 + }, + { + "surface": "訓令", + "readging": "くんれい", + "pos": "名詞", + "pn": -0.374207 + }, + { + "surface": "愚妻", + "readging": "ぐさい", + "pos": "名詞", + "pn": -0.37423 + }, + { + "surface": "新秋", + "readging": "しんしゅう", + "pos": "名詞", + "pn": -0.374238 + }, + { + "surface": "反語", + "readging": "はんご", + "pos": "名詞", + "pn": -0.374247 + }, + { + "surface": "パーセント", + "readging": "パーセント", + "pos": "名詞", + "pn": -0.374255 + }, + { + "surface": "殺し文句", + "readging": "ころしもんく", + "pos": "名詞", + "pn": -0.374272 + }, + { + "surface": "即諾", + "readging": "そくだく", + "pos": "名詞", + "pn": -0.37428 + }, + { + "surface": "せんたく", + "readging": "せんたくソーダ", + "pos": "動詞", + "pn": -0.374294 + }, + { + "surface": "闘技", + "readging": "とうぎ", + "pos": "名詞", + "pn": -0.37434 + }, + { + "surface": "嫡子", + "readging": "ちゃくし", + "pos": "名詞", + "pn": -0.374357 + }, + { + "surface": "香具師", + "readging": "やし", + "pos": "名詞", + "pn": -0.374363 + }, + { + "surface": "排気", + "readging": "はいき", + "pos": "名詞", + "pn": -0.37439 + }, + { + "surface": "式服", + "readging": "しきふく", + "pos": "名詞", + "pn": -0.374394 + }, + { + "surface": "細切れ", + "readging": "こまぎれ", + "pos": "名詞", + "pn": -0.374436 + }, + { + "surface": "新仏", + "readging": "しんぼとけ", + "pos": "名詞", + "pn": -0.374438 + }, + { + "surface": "卑金属", + "readging": "ひきんぞく", + "pos": "名詞", + "pn": -0.374447 + }, + { + "surface": "岩礁", + "readging": "がんしょう", + "pos": "名詞", + "pn": -0.374462 + }, + { + "surface": "オーレオマイシン", + "readging": "オーレオマイシン", + "pos": "名詞", + "pn": -0.374478 + }, + { + "surface": "梛", + "readging": "なぎ", + "pos": "名詞", + "pn": -0.37448 + }, + { + "surface": "飛躍", + "readging": "ひやく", + "pos": "名詞", + "pn": -0.374504 + }, + { + "surface": "億", + "readging": "おく", + "pos": "名詞", + "pn": -0.37451 + }, + { + "surface": "ごそっと", + "readging": "ごそっと", + "pos": "副詞", + "pn": -0.374511 + }, + { + "surface": "蜂の巣", + "readging": "はちのす", + "pos": "名詞", + "pn": -0.374515 + }, + { + "surface": "荒布", + "readging": "あらめ", + "pos": "名詞", + "pn": -0.374518 + }, + { + "surface": "湯桶読", + "readging": "ゆとうよみ", + "pos": "名詞", + "pn": -0.374531 + }, + { + "surface": "スマック", + "readging": "スマック", + "pos": "名詞", + "pn": -0.374539 + }, + { + "surface": "手法", + "readging": "しゅほう", + "pos": "名詞", + "pn": -0.374561 + }, + { + "surface": "含有", + "readging": "がんゆう", + "pos": "名詞", + "pn": -0.374566 + }, + { + "surface": "おつもり", + "readging": "おつもり", + "pos": "名詞", + "pn": -0.374568 + }, + { + "surface": "手仕舞", + "readging": "てじまい", + "pos": "名詞", + "pn": -0.374571 + }, + { + "surface": "霊殿", + "readging": "れいでん", + "pos": "名詞", + "pn": -0.374584 + }, + { + "surface": "べとつく", + "readging": "べとつく", + "pos": "動詞", + "pn": -0.374608 + }, + { + "surface": "行動主義", + "readging": "こうどうしゅぎ", + "pos": "名詞", + "pn": -0.374622 + }, + { + "surface": "寸土", + "readging": "すんど", + "pos": "名詞", + "pn": -0.37463 + }, + { + "surface": "弁難", + "readging": "べんなん", + "pos": "名詞", + "pn": -0.374661 + }, + { + "surface": "樹幹", + "readging": "じゅかん", + "pos": "名詞", + "pn": -0.374671 + }, + { + "surface": "七五調", + "readging": "しちごちょう", + "pos": "名詞", + "pn": -0.3747 + }, + { + "surface": "姦淫", + "readging": "かんいん", + "pos": "名詞", + "pn": -0.374712 + }, + { + "surface": "渡殿", + "readging": "わたどの", + "pos": "名詞", + "pn": -0.374717 + }, + { + "surface": "滑走", + "readging": "かっそう", + "pos": "名詞", + "pn": -0.374729 + }, + { + "surface": "ガーベラ", + "readging": "ガーベラ", + "pos": "名詞", + "pn": -0.374741 + }, + { + "surface": "結石", + "readging": "けっせき", + "pos": "名詞", + "pn": -0.374743 + }, + { + "surface": "院本", + "readging": "いんぽん", + "pos": "名詞", + "pn": -0.374785 + }, + { + "surface": "説話", + "readging": "せつわ", + "pos": "名詞", + "pn": -0.374803 + }, + { + "surface": "核兵器", + "readging": "かくへいき", + "pos": "名詞", + "pn": -0.374852 + }, + { + "surface": "無限", + "readging": "むげん", + "pos": "名詞", + "pn": -0.37486 + }, + { + "surface": "迫出し", + "readging": "せりだし", + "pos": "名詞", + "pn": -0.374866 + }, + { + "surface": "銅版", + "readging": "どうばん", + "pos": "名詞", + "pn": -0.374875 + }, + { + "surface": "四大", + "readging": "しだい", + "pos": "名詞", + "pn": -0.374902 + }, + { + "surface": "籠居", + "readging": "ろうきょ", + "pos": "名詞", + "pn": -0.374912 + }, + { + "surface": "閉居", + "readging": "へいきょ", + "pos": "名詞", + "pn": -0.374912 + }, + { + "surface": "参入", + "readging": "さんにゅう", + "pos": "名詞", + "pn": -0.374944 + }, + { + "surface": "盆地", + "readging": "ぼんち", + "pos": "名詞", + "pn": -0.374982 + }, + { + "surface": "蕃", + "readging": "ばん", + "pos": "名詞", + "pn": -0.374993 + }, + { + "surface": "生業", + "readging": "せいぎょう", + "pos": "名詞", + "pn": -0.374993 + }, + { + "surface": "停車場", + "readging": "ていしゃじょう", + "pos": "名詞", + "pn": -0.375003 + }, + { + "surface": "髻", + "readging": "もとどり", + "pos": "名詞", + "pn": -0.375016 + }, + { + "surface": "跋語", + "readging": "ばつご", + "pos": "名詞", + "pn": -0.375016 + }, + { + "surface": "内股膏薬", + "readging": "うちまたごうやく", + "pos": "名詞", + "pn": -0.375052 + }, + { + "surface": "晒飴", + "readging": "さらしあめ", + "pos": "名詞", + "pn": -0.375057 + }, + { + "surface": "不心得", + "readging": "ふこころえ", + "pos": "名詞", + "pn": -0.375078 + }, + { + "surface": "三角波", + "readging": "さんかくなみ", + "pos": "名詞", + "pn": -0.375136 + }, + { + "surface": "天下り", + "readging": "あまくだり", + "pos": "名詞", + "pn": -0.375146 + }, + { + "surface": "栗石", + "readging": "くりいし", + "pos": "名詞", + "pn": -0.375198 + }, + { + "surface": "画境", + "readging": "がきょう", + "pos": "名詞", + "pn": -0.375213 + }, + { + "surface": "ヘア", + "readging": "ヘアトニック", + "pos": "名詞", + "pn": -0.375222 + }, + { + "surface": "母胎", + "readging": "ぼたい", + "pos": "名詞", + "pn": -0.375243 + }, + { + "surface": "令嬢", + "readging": "れいじょう", + "pos": "名詞", + "pn": -0.37525 + }, + { + "surface": "くっつける", + "readging": "くっつける", + "pos": "動詞", + "pn": -0.375272 + }, + { + "surface": "青竜刀", + "readging": "せいりゅうとう", + "pos": "名詞", + "pn": -0.375298 + }, + { + "surface": "文通", + "readging": "ぶんつう", + "pos": "名詞", + "pn": -0.375309 + }, + { + "surface": "ことば", + "readging": "ことばつき", + "pos": "名詞", + "pn": -0.375323 + }, + { + "surface": "入城", + "readging": "にゅうじょう", + "pos": "名詞", + "pn": -0.375329 + }, + { + "surface": "文", + "readging": "ふみ", + "pos": "名詞", + "pn": -0.375333 + }, + { + "surface": "長らく", + "readging": "ながらく", + "pos": "副詞", + "pn": -0.375333 + }, + { + "surface": "軍談", + "readging": "ぐんだん", + "pos": "名詞", + "pn": -0.375357 + }, + { + "surface": "並べ立てる", + "readging": "ならべたてる", + "pos": "動詞", + "pn": -0.375358 + }, + { + "surface": "短評", + "readging": "たんぴょう", + "pos": "名詞", + "pn": -0.375362 + }, + { + "surface": "石室", + "readging": "せきしつ", + "pos": "名詞", + "pn": -0.375367 + }, + { + "surface": "受配", + "readging": "じゅはい", + "pos": "名詞", + "pn": -0.375368 + }, + { + "surface": "都道府県", + "readging": "とどうふけん", + "pos": "名詞", + "pn": -0.375388 + }, + { + "surface": "弱肉強食", + "readging": "じゃくにくきょうしょく", + "pos": "名詞", + "pn": -0.3754 + }, + { + "surface": "霜除け", + "readging": "しもよけ", + "pos": "名詞", + "pn": -0.3754 + }, + { + "surface": "目茶", + "readging": "めちゃ", + "pos": "名詞", + "pn": -0.375402 + }, + { + "surface": "帝王切開", + "readging": "ていおうせっかい", + "pos": "名詞", + "pn": -0.375417 + }, + { + "surface": "大人", + "readging": "おとなびる", + "pos": "動詞", + "pn": -0.375421 + }, + { + "surface": "下期", + "readging": "しもき", + "pos": "名詞", + "pn": -0.375436 + }, + { + "surface": "処女", + "readging": "しょじょ", + "pos": "名詞", + "pn": -0.375444 + }, + { + "surface": "微風", + "readging": "そよかぜ", + "pos": "名詞", + "pn": -0.375444 + }, + { + "surface": "草分", + "readging": "くさわけ", + "pos": "名詞", + "pn": -0.375477 + }, + { + "surface": "真田", + "readging": "さなだ", + "pos": "名詞", + "pn": -0.375482 + }, + { + "surface": "ドレッシング", + "readging": "ドレッシング", + "pos": "名詞", + "pn": -0.375488 + }, + { + "surface": "中産階級", + "readging": "ちゅうさんかいきゅう", + "pos": "名詞", + "pn": -0.375502 + }, + { + "surface": "知らず顔", + "readging": "しらずがお", + "pos": "名詞", + "pn": -0.375542 + }, + { + "surface": "夜食", + "readging": "やしょく", + "pos": "名詞", + "pn": -0.375545 + }, + { + "surface": "粉ミルク", + "readging": "こなミルク", + "pos": "名詞", + "pn": -0.375558 + }, + { + "surface": "五識", + "readging": "ごしき", + "pos": "名詞", + "pn": -0.37558 + }, + { + "surface": "漫筆", + "readging": "まんぴつ", + "pos": "名詞", + "pn": -0.375598 + }, + { + "surface": "絶無", + "readging": "ぜつむ", + "pos": "名詞", + "pn": -0.37561 + }, + { + "surface": "飛ぶ火", + "readging": "とぶひ", + "pos": "名詞", + "pn": -0.375611 + }, + { + "surface": "舌根", + "readging": "ぜっこん", + "pos": "名詞", + "pn": -0.375623 + }, + { + "surface": "館", + "readging": "たち", + "pos": "名詞", + "pn": -0.375637 + }, + { + "surface": "掴み掛る", + "readging": "つかみかかる", + "pos": "動詞", + "pn": -0.375671 + }, + { + "surface": "顔見世", + "readging": "かおみせ", + "pos": "名詞", + "pn": -0.375689 + }, + { + "surface": "又もや", + "readging": "またもや", + "pos": "副詞", + "pn": -0.375693 + }, + { + "surface": "日東", + "readging": "にっとう", + "pos": "名詞", + "pn": -0.375697 + }, + { + "surface": "ナフサ", + "readging": "ナフサ", + "pos": "名詞", + "pn": -0.3757 + }, + { + "surface": "金紋先箱", + "readging": "きんもんさきばこ", + "pos": "名詞", + "pn": -0.375711 + }, + { + "surface": "インシュリン", + "readging": "インシュリン", + "pos": "名詞", + "pn": -0.37576 + }, + { + "surface": "字句", + "readging": "じく", + "pos": "名詞", + "pn": -0.375812 + }, + { + "surface": "抄造", + "readging": "しょうぞう", + "pos": "名詞", + "pn": -0.375832 + }, + { + "surface": "デモ", + "readging": "デモ", + "pos": "名詞", + "pn": -0.375835 + }, + { + "surface": "ビーフ", + "readging": "ビーフステーキ", + "pos": "名詞", + "pn": -0.375863 + }, + { + "surface": "帰耕", + "readging": "きこう", + "pos": "名詞", + "pn": -0.375914 + }, + { + "surface": "冠する", + "readging": "かんする", + "pos": "動詞", + "pn": -0.375926 + }, + { + "surface": "上面", + "readging": "うわつら", + "pos": "名詞", + "pn": -0.375934 + }, + { + "surface": "学期", + "readging": "がっき", + "pos": "名詞", + "pn": -0.375943 + }, + { + "surface": "氷柱", + "readging": "ひょうちゅう", + "pos": "名詞", + "pn": -0.375953 + }, + { + "surface": "牽制", + "readging": "けんせい", + "pos": "名詞", + "pn": -0.375983 + }, + { + "surface": "公告", + "readging": "こうこく", + "pos": "名詞", + "pn": -0.375988 + }, + { + "surface": "夢遊病", + "readging": "むゆうびょう", + "pos": "名詞", + "pn": -0.37599 + }, + { + "surface": "忖度", + "readging": "そんたく", + "pos": "名詞", + "pn": -0.37599 + }, + { + "surface": "覆面", + "readging": "ふくめん", + "pos": "名詞", + "pn": -0.375996 + }, + { + "surface": "筆鋒", + "readging": "ひっぽう", + "pos": "名詞", + "pn": -0.376049 + }, + { + "surface": "逃げ道", + "readging": "にげみち", + "pos": "名詞", + "pn": -0.376053 + }, + { + "surface": "杏林", + "readging": "きょうりん", + "pos": "名詞", + "pn": -0.37607 + }, + { + "surface": "休錘", + "readging": "きゅうすい", + "pos": "名詞", + "pn": -0.376079 + }, + { + "surface": "葛", + "readging": "つづら", + "pos": "名詞", + "pn": -0.376097 + }, + { + "surface": "斑入り", + "readging": "ふいり", + "pos": "名詞", + "pn": -0.37615 + }, + { + "surface": "埋設", + "readging": "まいせつ", + "pos": "名詞", + "pn": -0.376154 + }, + { + "surface": "造形美術", + "readging": "ぞうけいびじゅつ", + "pos": "名詞", + "pn": -0.376166 + }, + { + "surface": "大陸棚", + "readging": "たいりくだな", + "pos": "名詞", + "pn": -0.376178 + }, + { + "surface": "ハイキング", + "readging": "ハイキング", + "pos": "名詞", + "pn": -0.376185 + }, + { + "surface": "為さる", + "readging": "なさる", + "pos": "動詞", + "pn": -0.376188 + }, + { + "surface": "活魚", + "readging": "いけうお", + "pos": "名詞", + "pn": -0.376197 + }, + { + "surface": "チャコ", + "readging": "チャコ", + "pos": "名詞", + "pn": -0.376198 + }, + { + "surface": "厳守", + "readging": "げんしゅ", + "pos": "名詞", + "pn": -0.376203 + }, + { + "surface": "素", + "readging": "そ", + "pos": "名詞", + "pn": -0.376204 + }, + { + "surface": "後腹", + "readging": "あとばら", + "pos": "名詞", + "pn": -0.376208 + }, + { + "surface": "外人", + "readging": "がいじん", + "pos": "名詞", + "pn": -0.376214 + }, + { + "surface": "むずかる", + "readging": "むずかる", + "pos": "動詞", + "pn": -0.376216 + }, + { + "surface": "山居", + "readging": "さんきょ", + "pos": "名詞", + "pn": -0.376223 + }, + { + "surface": "魚滓", + "readging": "うおかす", + "pos": "名詞", + "pn": -0.376243 + }, + { + "surface": "当然", + "readging": "とうぜん", + "pos": "副詞", + "pn": -0.376253 + }, + { + "surface": "疎開", + "readging": "そかい", + "pos": "名詞", + "pn": -0.376257 + }, + { + "surface": "細緻", + "readging": "さいち", + "pos": "名詞", + "pn": -0.376264 + }, + { + "surface": "教唆", + "readging": "きょうさ", + "pos": "名詞", + "pn": -0.376266 + }, + { + "surface": "五倍子", + "readging": "ごばいし", + "pos": "名詞", + "pn": -0.376293 + }, + { + "surface": "振幅", + "readging": "しんぷく", + "pos": "名詞", + "pn": -0.376303 + }, + { + "surface": "遁辞", + "readging": "とんじ", + "pos": "名詞", + "pn": -0.376304 + }, + { + "surface": "絶域", + "readging": "ぜついき", + "pos": "名詞", + "pn": -0.376312 + }, + { + "surface": "前例", + "readging": "ぜんれい", + "pos": "名詞", + "pn": -0.376319 + }, + { + "surface": "蒙塵", + "readging": "もうじん", + "pos": "名詞", + "pn": -0.376328 + }, + { + "surface": "マリオネット", + "readging": "マリオネット", + "pos": "名詞", + "pn": -0.37633 + }, + { + "surface": "具体化", + "readging": "ぐたいか", + "pos": "名詞", + "pn": -0.376345 + }, + { + "surface": "五弦", + "readging": "ごげん", + "pos": "名詞", + "pn": -0.376348 + }, + { + "surface": "花明り", + "readging": "はなあかり", + "pos": "名詞", + "pn": -0.376365 + }, + { + "surface": "原物", + "readging": "げんぶつ", + "pos": "名詞", + "pn": -0.376373 + }, + { + "surface": "奴婢", + "readging": "ぬひ", + "pos": "名詞", + "pn": -0.376394 + }, + { + "surface": "踏板", + "readging": "ふみいた", + "pos": "名詞", + "pn": -0.376399 + }, + { + "surface": "簡易", + "readging": "かんい", + "pos": "名詞", + "pn": -0.376417 + }, + { + "surface": "鼓膜", + "readging": "こまく", + "pos": "名詞", + "pn": -0.376427 + }, + { + "surface": "軽卒", + "readging": "けいそつ", + "pos": "名詞", + "pn": -0.376458 + }, + { + "surface": "要領", + "readging": "ようりょう", + "pos": "名詞", + "pn": -0.376458 + }, + { + "surface": "つづ", + "readging": "つづ", + "pos": "名詞", + "pn": -0.376485 + }, + { + "surface": "祖述", + "readging": "そじゅつ", + "pos": "名詞", + "pn": -0.376491 + }, + { + "surface": "俳談", + "readging": "はいだん", + "pos": "名詞", + "pn": -0.376495 + }, + { + "surface": "閉院", + "readging": "へいいん", + "pos": "名詞", + "pn": -0.376503 + }, + { + "surface": "書誌", + "readging": "しょし", + "pos": "名詞", + "pn": -0.376517 + }, + { + "surface": "頭首", + "readging": "とうしゅ", + "pos": "名詞", + "pn": -0.376521 + }, + { + "surface": "ジプシー", + "readging": "ジプシー", + "pos": "名詞", + "pn": -0.376526 + }, + { + "surface": "マラソン", + "readging": "マラソン", + "pos": "名詞", + "pn": -0.37654 + }, + { + "surface": "滑り台", + "readging": "すべりだい", + "pos": "名詞", + "pn": -0.376558 + }, + { + "surface": "色調", + "readging": "しきちょう", + "pos": "名詞", + "pn": -0.376559 + }, + { + "surface": "朗詠", + "readging": "ろうえい", + "pos": "名詞", + "pn": -0.376566 + }, + { + "surface": "青馬", + "readging": "あおうま", + "pos": "名詞", + "pn": -0.376587 + }, + { + "surface": "降参", + "readging": "こうさん", + "pos": "名詞", + "pn": -0.376589 + }, + { + "surface": "会話", + "readging": "かいわ", + "pos": "名詞", + "pn": -0.376621 + }, + { + "surface": "耳殻", + "readging": "じかく", + "pos": "名詞", + "pn": -0.376668 + }, + { + "surface": "談林", + "readging": "だんりん", + "pos": "名詞", + "pn": -0.376669 + }, + { + "surface": "孫子", + "readging": "まごこ", + "pos": "名詞", + "pn": -0.376674 + }, + { + "surface": "沈痛", + "readging": "ちんつう", + "pos": "名詞", + "pn": -0.376686 + }, + { + "surface": "臭化物", + "readging": "しゅうかぶつ", + "pos": "名詞", + "pn": -0.376689 + }, + { + "surface": "ロココ", + "readging": "ロココ", + "pos": "名詞", + "pn": -0.376701 + }, + { + "surface": "六面体", + "readging": "ろくめんたい", + "pos": "名詞", + "pn": -0.376709 + }, + { + "surface": "河鹿蛙", + "readging": "かじかがえる", + "pos": "名詞", + "pn": -0.376714 + }, + { + "surface": "びんた", + "readging": "びんた", + "pos": "名詞", + "pn": -0.376762 + }, + { + "surface": "キムチ", + "readging": "キムチ", + "pos": "名詞", + "pn": -0.376765 + }, + { + "surface": "鶏口", + "readging": "けいこう", + "pos": "名詞", + "pn": -0.376773 + }, + { + "surface": "少年", + "readging": "しょうねん", + "pos": "名詞", + "pn": -0.376781 + }, + { + "surface": "案文", + "readging": "あんぶん", + "pos": "名詞", + "pn": -0.376783 + }, + { + "surface": "聞落す", + "readging": "ききおとす", + "pos": "動詞", + "pn": -0.376786 + }, + { + "surface": "ブラック", + "readging": "ブラックユーモア", + "pos": "名詞", + "pn": -0.37681 + }, + { + "surface": "ミネラル", + "readging": "ミネラル", + "pos": "名詞", + "pn": -0.376831 + }, + { + "surface": "ステンド グラス", + "readging": "ステンド グラス", + "pos": "名詞", + "pn": -0.376833 + }, + { + "surface": "轍", + "readging": "わだち", + "pos": "名詞", + "pn": -0.37684 + }, + { + "surface": "技法", + "readging": "ぎほう", + "pos": "名詞", + "pn": -0.376853 + }, + { + "surface": "文鳥", + "readging": "ぶんちょう", + "pos": "名詞", + "pn": -0.376881 + }, + { + "surface": "差薬", + "readging": "さしぐすり", + "pos": "名詞", + "pn": -0.37692 + }, + { + "surface": "酒場", + "readging": "さかば", + "pos": "名詞", + "pn": -0.37697 + }, + { + "surface": "聞齧る", + "readging": "ききかじる", + "pos": "動詞", + "pn": -0.376997 + }, + { + "surface": "露骨", + "readging": "ろこつ", + "pos": "名詞", + "pn": -0.37702 + }, + { + "surface": "橋架", + "readging": "きょうか", + "pos": "名詞", + "pn": -0.377058 + }, + { + "surface": "分留", + "readging": "ぶんりゅう", + "pos": "名詞", + "pn": -0.377068 + }, + { + "surface": "保護関税", + "readging": "ほごかんぜい", + "pos": "名詞", + "pn": -0.377076 + }, + { + "surface": "従属", + "readging": "じゅうぞく", + "pos": "名詞", + "pn": -0.377088 + }, + { + "surface": "バリトン", + "readging": "バリトン", + "pos": "名詞", + "pn": -0.377096 + }, + { + "surface": "轢逃げ", + "readging": "ひきにげ", + "pos": "名詞", + "pn": -0.377101 + }, + { + "surface": "青果物", + "readging": "せいかぶつ", + "pos": "名詞", + "pn": -0.377104 + }, + { + "surface": "打据える", + "readging": "うちすえる", + "pos": "動詞", + "pn": -0.377113 + }, + { + "surface": "百科全書", + "readging": "ひゃっかぜんしょ", + "pos": "名詞", + "pn": -0.377143 + }, + { + "surface": "帰雁", + "readging": "きがん", + "pos": "名詞", + "pn": -0.377151 + }, + { + "surface": "平価", + "readging": "へいか", + "pos": "名詞", + "pn": -0.377156 + }, + { + "surface": "震災", + "readging": "しんさい", + "pos": "名詞", + "pn": -0.377164 + }, + { + "surface": "相法", + "readging": "そうほう", + "pos": "名詞", + "pn": -0.377168 + }, + { + "surface": "鰆", + "readging": "さわら", + "pos": "名詞", + "pn": -0.377198 + }, + { + "surface": "愛憎", + "readging": "あいぞう", + "pos": "名詞", + "pn": -0.377199 + }, + { + "surface": "舞楽", + "readging": "ぶがく", + "pos": "名詞", + "pn": -0.377207 + }, + { + "surface": "バーレル", + "readging": "バーレル", + "pos": "名詞", + "pn": -0.377229 + }, + { + "surface": "グレード", + "readging": "グレード", + "pos": "名詞", + "pn": -0.377237 + }, + { + "surface": "球面", + "readging": "きゅうめん", + "pos": "名詞", + "pn": -0.377248 + }, + { + "surface": "イヤホーン", + "readging": "イヤホーン", + "pos": "名詞", + "pn": -0.37725 + }, + { + "surface": "空手", + "readging": "からて", + "pos": "名詞", + "pn": -0.377294 + }, + { + "surface": "庭師", + "readging": "にわし", + "pos": "名詞", + "pn": -0.377298 + }, + { + "surface": "恣意", + "readging": "しい", + "pos": "名詞", + "pn": -0.377335 + }, + { + "surface": "腐植", + "readging": "ふしょく", + "pos": "名詞", + "pn": -0.377338 + }, + { + "surface": "信者", + "readging": "しんじゃ", + "pos": "名詞", + "pn": -0.37734 + }, + { + "surface": "贈与", + "readging": "ぞうよ", + "pos": "名詞", + "pn": -0.377362 + }, + { + "surface": "ランダム", + "readging": "ランダムサンプリング", + "pos": "名詞", + "pn": -0.377387 + }, + { + "surface": "一同", + "readging": "いちどう", + "pos": "名詞", + "pn": -0.377434 + }, + { + "surface": "セーラー", + "readging": "セーラー", + "pos": "名詞", + "pn": -0.377444 + }, + { + "surface": "似而非なる", + "readging": "にてひなる", + "pos": "動詞", + "pn": -0.377451 + }, + { + "surface": "あっけらかんと", + "readging": "あっけらかんと", + "pos": "副詞", + "pn": -0.377456 + }, + { + "surface": "手絡", + "readging": "てがら", + "pos": "名詞", + "pn": -0.377506 + }, + { + "surface": "絖", + "readging": "ぬめ", + "pos": "名詞", + "pn": -0.377541 + }, + { + "surface": "終幕", + "readging": "しゅうまく", + "pos": "名詞", + "pn": -0.377553 + }, + { + "surface": "法難", + "readging": "ほうなん", + "pos": "名詞", + "pn": -0.377562 + }, + { + "surface": "定温動物", + "readging": "ていおんどうぶつ", + "pos": "名詞", + "pn": -0.377566 + }, + { + "surface": "遠近", + "readging": "おちこち", + "pos": "名詞", + "pn": -0.377585 + }, + { + "surface": "駕籠", + "readging": "かご", + "pos": "名詞", + "pn": -0.377635 + }, + { + "surface": "乱世", + "readging": "らんせい", + "pos": "名詞", + "pn": -0.37767 + }, + { + "surface": "外国", + "readging": "がいこく", + "pos": "名詞", + "pn": -0.377679 + }, + { + "surface": "例年", + "readging": "れいねん", + "pos": "名詞", + "pn": -0.37768 + }, + { + "surface": "浅瀬", + "readging": "あさせ", + "pos": "名詞", + "pn": -0.377692 + }, + { + "surface": "温浴", + "readging": "おんよく", + "pos": "名詞", + "pn": -0.377728 + }, + { + "surface": "多用", + "readging": "たよう", + "pos": "名詞", + "pn": -0.377736 + }, + { + "surface": "フィギュア", + "readging": "フィギュア", + "pos": "名詞", + "pn": -0.377777 + }, + { + "surface": "精霊", + "readging": "しょうりょう", + "pos": "名詞", + "pn": -0.377809 + }, + { + "surface": "道", + "readging": "どう", + "pos": "名詞", + "pn": -0.377834 + }, + { + "surface": "契る", + "readging": "ちぎる", + "pos": "動詞", + "pn": -0.377845 + }, + { + "surface": "高速", + "readging": "こうそく", + "pos": "名詞", + "pn": -0.377847 + }, + { + "surface": "ファイバー", + "readging": "ファイバー", + "pos": "名詞", + "pn": -0.377867 + }, + { + "surface": "丈", + "readging": "じょう", + "pos": "名詞", + "pn": -0.377875 + }, + { + "surface": "腹時計", + "readging": "はらどけい", + "pos": "名詞", + "pn": -0.37788 + }, + { + "surface": "局報", + "readging": "きょくほう", + "pos": "名詞", + "pn": -0.377901 + }, + { + "surface": "詰込主義", + "readging": "つめこみしゅぎ", + "pos": "名詞", + "pn": -0.377916 + }, + { + "surface": "滅ぶ", + "readging": "ほろぶ", + "pos": "動詞", + "pn": -0.377954 + }, + { + "surface": "看護婦", + "readging": "かんごふ", + "pos": "名詞", + "pn": -0.377968 + }, + { + "surface": "南京木綿", + "readging": "なんきんもめん", + "pos": "名詞", + "pn": -0.37797 + }, + { + "surface": "常磐津", + "readging": "ときわず", + "pos": "名詞", + "pn": -0.377976 + }, + { + "surface": "盛", + "readging": "もり", + "pos": "名詞", + "pn": -0.377976 + }, + { + "surface": "袍", + "readging": "ほう", + "pos": "名詞", + "pn": -0.377993 + }, + { + "surface": "葦毛", + "readging": "あしげ", + "pos": "名詞", + "pn": -0.378035 + }, + { + "surface": "探知", + "readging": "たんち", + "pos": "名詞", + "pn": -0.378057 + }, + { + "surface": "疎む", + "readging": "うとむ", + "pos": "動詞", + "pn": -0.378059 + }, + { + "surface": "変質", + "readging": "へんしつ", + "pos": "名詞", + "pn": -0.378072 + }, + { + "surface": "執奏", + "readging": "しっそう", + "pos": "名詞", + "pn": -0.378079 + }, + { + "surface": "多年", + "readging": "たねん", + "pos": "名詞", + "pn": -0.378091 + }, + { + "surface": "アメーバ", + "readging": "アメーバ", + "pos": "名詞", + "pn": -0.378113 + }, + { + "surface": "星合", + "readging": "ほしあい", + "pos": "名詞", + "pn": -0.378116 + }, + { + "surface": "多元放送", + "readging": "たげんほうそう", + "pos": "名詞", + "pn": -0.378138 + }, + { + "surface": "按腹", + "readging": "あんぷく", + "pos": "名詞", + "pn": -0.378143 + }, + { + "surface": "膏血", + "readging": "こうけつ", + "pos": "名詞", + "pn": -0.378157 + }, + { + "surface": "定礎", + "readging": "ていそ", + "pos": "名詞", + "pn": -0.378173 + }, + { + "surface": "発禁", + "readging": "はっきん", + "pos": "名詞", + "pn": -0.378178 + }, + { + "surface": "付馬", + "readging": "つけうま", + "pos": "名詞", + "pn": -0.378198 + }, + { + "surface": "爆破", + "readging": "ばくは", + "pos": "名詞", + "pn": -0.378208 + }, + { + "surface": "禅宗", + "readging": "ぜんしゅう", + "pos": "名詞", + "pn": -0.378212 + }, + { + "surface": "駆込む", + "readging": "かけこむ", + "pos": "動詞", + "pn": -0.378236 + }, + { + "surface": "しょぼ濡れる", + "readging": "しょぼぬれる", + "pos": "動詞", + "pn": -0.378238 + }, + { + "surface": "山際", + "readging": "やまぎわ", + "pos": "名詞", + "pn": -0.378243 + }, + { + "surface": "秋蚕", + "readging": "しゅうさん", + "pos": "名詞", + "pn": -0.378249 + }, + { + "surface": "ジルコニウム", + "readging": "ジルコニウム", + "pos": "名詞", + "pn": -0.378295 + }, + { + "surface": "木の芽", + "readging": "きのめ", + "pos": "名詞", + "pn": -0.378319 + }, + { + "surface": "おこも", + "readging": "おこも", + "pos": "名詞", + "pn": -0.378342 + }, + { + "surface": "陶土", + "readging": "とうど", + "pos": "名詞", + "pn": -0.378346 + }, + { + "surface": "入内", + "readging": "じゅだい", + "pos": "名詞", + "pn": -0.378371 + }, + { + "surface": "癖", + "readging": "くせ", + "pos": "名詞", + "pn": -0.378396 + }, + { + "surface": "フーガ", + "readging": "フーガ", + "pos": "名詞", + "pn": -0.378437 + }, + { + "surface": "平版", + "readging": "へいはん", + "pos": "名詞", + "pn": -0.378438 + }, + { + "surface": "巫女", + "readging": "ふじょ", + "pos": "名詞", + "pn": -0.378443 + }, + { + "surface": "夫役", + "readging": "ぶやく", + "pos": "名詞", + "pn": -0.378444 + }, + { + "surface": "傷害保険", + "readging": "しょうがいほけん", + "pos": "名詞", + "pn": -0.378445 + }, + { + "surface": "暮方", + "readging": "くれがた", + "pos": "名詞", + "pn": -0.378446 + }, + { + "surface": "便通", + "readging": "べんつう", + "pos": "名詞", + "pn": -0.378451 + }, + { + "surface": "ブック", + "readging": "ブックレビュー", + "pos": "名詞", + "pn": -0.378458 + }, + { + "surface": "大抵", + "readging": "たいてい", + "pos": "副詞", + "pn": -0.378488 + }, + { + "surface": "鶉斑", + "readging": "うずらふ", + "pos": "名詞", + "pn": -0.378489 + }, + { + "surface": "萩", + "readging": "はぎ", + "pos": "名詞", + "pn": -0.378499 + }, + { + "surface": "終り", + "readging": "おわり", + "pos": "名詞", + "pn": -0.378515 + }, + { + "surface": "跋渉", + "readging": "ばっしょう", + "pos": "名詞", + "pn": -0.378522 + }, + { + "surface": "入日", + "readging": "いりひ", + "pos": "名詞", + "pn": -0.378529 + }, + { + "surface": "時として", + "readging": "ときとして", + "pos": "副詞", + "pn": -0.37853 + }, + { + "surface": "否認", + "readging": "ひにん", + "pos": "名詞", + "pn": -0.378565 + }, + { + "surface": "魚道", + "readging": "ぎょどう", + "pos": "名詞", + "pn": -0.378582 + }, + { + "surface": "デフレーション", + "readging": "デフレーション", + "pos": "名詞", + "pn": -0.378595 + }, + { + "surface": "ラード", + "readging": "ラード", + "pos": "名詞", + "pn": -0.378596 + }, + { + "surface": "払底", + "readging": "ふってい", + "pos": "名詞", + "pn": -0.378624 + }, + { + "surface": "珊瑚", + "readging": "さんご", + "pos": "名詞", + "pn": -0.378636 + }, + { + "surface": "軍事", + "readging": "ぐんじ", + "pos": "名詞", + "pn": -0.378712 + }, + { + "surface": "アキレス腱", + "readging": "アキレスけん", + "pos": "名詞", + "pn": -0.378718 + }, + { + "surface": "内応", + "readging": "ないおう", + "pos": "名詞", + "pn": -0.378725 + }, + { + "surface": "オルガン", + "readging": "オルガン", + "pos": "名詞", + "pn": -0.378744 + }, + { + "surface": "庚申待", + "readging": "こうしんまち", + "pos": "名詞", + "pn": -0.37875 + }, + { + "surface": "業風", + "readging": "ごうふう", + "pos": "名詞", + "pn": -0.378759 + }, + { + "surface": "三度", + "readging": "さんど", + "pos": "名詞", + "pn": -0.378793 + }, + { + "surface": "正鵠", + "readging": "せいこく", + "pos": "名詞", + "pn": -0.378793 + }, + { + "surface": "石材", + "readging": "せきざい", + "pos": "名詞", + "pn": -0.378814 + }, + { + "surface": "帰路", + "readging": "きろ", + "pos": "名詞", + "pn": -0.378833 + }, + { + "surface": "論鋒", + "readging": "ろんぽう", + "pos": "名詞", + "pn": -0.378835 + }, + { + "surface": "突破る", + "readging": "つきやぶる", + "pos": "動詞", + "pn": -0.378865 + }, + { + "surface": "串焼", + "readging": "くしやき", + "pos": "名詞", + "pn": -0.378876 + }, + { + "surface": "出丸", + "readging": "でまる", + "pos": "名詞", + "pn": -0.378879 + }, + { + "surface": "紙幟", + "readging": "かみのぼり", + "pos": "名詞", + "pn": -0.37888 + }, + { + "surface": "合資会社", + "readging": "ごうしがいしゃ", + "pos": "名詞", + "pn": -0.378884 + }, + { + "surface": "言いくるめる", + "readging": "いいくるめる", + "pos": "動詞", + "pn": -0.378889 + }, + { + "surface": "一本", + "readging": "いっぽん", + "pos": "名詞", + "pn": -0.378925 + }, + { + "surface": "メタン", + "readging": "メタン", + "pos": "名詞", + "pn": -0.378956 + }, + { + "surface": "相棒", + "readging": "あいぼう", + "pos": "名詞", + "pn": -0.37897 + }, + { + "surface": "ゼッケン", + "readging": "ゼッケン", + "pos": "名詞", + "pn": -0.378988 + }, + { + "surface": "暮六つ", + "readging": "くれむつ", + "pos": "名詞", + "pn": -0.379 + }, + { + "surface": "からくり", + "readging": "からくり", + "pos": "名詞", + "pn": -0.379006 + }, + { + "surface": "延性", + "readging": "えんせい", + "pos": "名詞", + "pn": -0.379027 + }, + { + "surface": "天竺葵", + "readging": "てんじくあおい", + "pos": "名詞", + "pn": -0.379065 + }, + { + "surface": "縁の下", + "readging": "えんのした", + "pos": "名詞", + "pn": -0.379134 + }, + { + "surface": "比較的", + "readging": "ひかくてき", + "pos": "副詞", + "pn": -0.379158 + }, + { + "surface": "難破", + "readging": "なんぱ", + "pos": "名詞", + "pn": -0.379167 + }, + { + "surface": "別段", + "readging": "べつだん", + "pos": "名詞", + "pn": -0.379178 + }, + { + "surface": "ダッシュ", + "readging": "ダッシュボード", + "pos": "名詞", + "pn": -0.379196 + }, + { + "surface": "芋版", + "readging": "いもばん", + "pos": "名詞", + "pn": -0.379199 + }, + { + "surface": "赤潮", + "readging": "あかしお", + "pos": "名詞", + "pn": -0.379226 + }, + { + "surface": "収支", + "readging": "しゅうし", + "pos": "名詞", + "pn": -0.379229 + }, + { + "surface": "離別", + "readging": "りべつ", + "pos": "名詞", + "pn": -0.379232 + }, + { + "surface": "驢馬", + "readging": "ろば", + "pos": "名詞", + "pn": -0.379254 + }, + { + "surface": "馬鹿話", + "readging": "ばかばなし", + "pos": "名詞", + "pn": -0.379257 + }, + { + "surface": "百度参り", + "readging": "ひゃくどまいり", + "pos": "名詞", + "pn": -0.379275 + }, + { + "surface": "戸主", + "readging": "こしゅ", + "pos": "名詞", + "pn": -0.379308 + }, + { + "surface": "蜜柑色", + "readging": "みかんいろ", + "pos": "名詞", + "pn": -0.379323 + }, + { + "surface": "過渡", + "readging": "かと", + "pos": "名詞", + "pn": -0.379334 + }, + { + "surface": "フェーン現象", + "readging": "フェーンげんしょう", + "pos": "名詞", + "pn": -0.37934 + }, + { + "surface": "罷り越す", + "readging": "まかりこす", + "pos": "動詞", + "pn": -0.379354 + }, + { + "surface": "表面張力", + "readging": "ひょうめんちょうりょく", + "pos": "名詞", + "pn": -0.379365 + }, + { + "surface": "墨付", + "readging": "すみつき", + "pos": "名詞", + "pn": -0.379376 + }, + { + "surface": "ドライブ", + "readging": "ドライブ", + "pos": "名詞", + "pn": -0.379399 + }, + { + "surface": "門前", + "readging": "もんぜん", + "pos": "名詞", + "pn": -0.3794 + }, + { + "surface": "後宮", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.37943 + }, + { + "surface": "一夜", + "readging": "いちや", + "pos": "名詞", + "pn": -0.379433 + }, + { + "surface": "何くれ", + "readging": "なにくれ", + "pos": "名詞", + "pn": -0.379436 + }, + { + "surface": "礼状", + "readging": "れいじょう", + "pos": "名詞", + "pn": -0.379437 + }, + { + "surface": "寄木細工", + "readging": "よせぎざいく", + "pos": "名詞", + "pn": -0.379466 + }, + { + "surface": "占拠", + "readging": "せんきょ", + "pos": "名詞", + "pn": -0.379484 + }, + { + "surface": "了する", + "readging": "りょうする", + "pos": "動詞", + "pn": -0.379506 + }, + { + "surface": "デート", + "readging": "デート", + "pos": "名詞", + "pn": -0.379508 + }, + { + "surface": "大震災", + "readging": "だいしんさい", + "pos": "名詞", + "pn": -0.379521 + }, + { + "surface": "無機物", + "readging": "むきぶつ", + "pos": "名詞", + "pn": -0.379522 + }, + { + "surface": "本降り", + "readging": "ほんぶり", + "pos": "名詞", + "pn": -0.379522 + }, + { + "surface": "党首", + "readging": "とうしゅ", + "pos": "名詞", + "pn": -0.379524 + }, + { + "surface": "迷彩", + "readging": "めいさい", + "pos": "名詞", + "pn": -0.379526 + }, + { + "surface": "欠目", + "readging": "かけめ", + "pos": "名詞", + "pn": -0.379529 + }, + { + "surface": "矩形", + "readging": "くけい", + "pos": "名詞", + "pn": -0.379545 + }, + { + "surface": "疑念", + "readging": "ぎねん", + "pos": "名詞", + "pn": -0.379566 + }, + { + "surface": "さより", + "readging": "さより", + "pos": "名詞", + "pn": -0.379566 + }, + { + "surface": "牽牛", + "readging": "けんぎゅう", + "pos": "名詞", + "pn": -0.379586 + }, + { + "surface": "紅裙", + "readging": "こうくん", + "pos": "名詞", + "pn": -0.379591 + }, + { + "surface": "閘門", + "readging": "こうもん", + "pos": "名詞", + "pn": -0.379622 + }, + { + "surface": "郵便番号", + "readging": "ゆうびんばんごう", + "pos": "名詞", + "pn": -0.379622 + }, + { + "surface": "罫線", + "readging": "けいせん", + "pos": "名詞", + "pn": -0.379624 + }, + { + "surface": "疎明", + "readging": "そめい", + "pos": "名詞", + "pn": -0.379625 + }, + { + "surface": "小作り", + "readging": "こづくり", + "pos": "名詞", + "pn": -0.379632 + }, + { + "surface": "明け残る", + "readging": "あけのこる", + "pos": "動詞", + "pn": -0.379649 + }, + { + "surface": "下車", + "readging": "げしゃ", + "pos": "名詞", + "pn": -0.37968 + }, + { + "surface": "差出す", + "readging": "さしだす", + "pos": "動詞", + "pn": -0.379688 + }, + { + "surface": "糠星", + "readging": "ぬかぼし", + "pos": "名詞", + "pn": -0.379704 + }, + { + "surface": "飯場", + "readging": "はんば", + "pos": "名詞", + "pn": -0.379732 + }, + { + "surface": "残高", + "readging": "ざんだか", + "pos": "名詞", + "pn": -0.379741 + }, + { + "surface": "カルテ", + "readging": "カルテ", + "pos": "名詞", + "pn": -0.379743 + }, + { + "surface": "砒素", + "readging": "ひそ", + "pos": "名詞", + "pn": -0.379773 + }, + { + "surface": "作歌", + "readging": "さっか", + "pos": "名詞", + "pn": -0.379794 + }, + { + "surface": "生垣", + "readging": "いけがき", + "pos": "名詞", + "pn": -0.379798 + }, + { + "surface": "雲海", + "readging": "うんかい", + "pos": "名詞", + "pn": -0.379834 + }, + { + "surface": "乳母", + "readging": "うばぐるま", + "pos": "名詞", + "pn": -0.379841 + }, + { + "surface": "目の下", + "readging": "めのした", + "pos": "名詞", + "pn": -0.379859 + }, + { + "surface": "畳韻", + "readging": "じょういん", + "pos": "名詞", + "pn": -0.379867 + }, + { + "surface": "徒", + "readging": "と", + "pos": "名詞", + "pn": -0.37987 + }, + { + "surface": "ワン ステップ", + "readging": "ワン ステップ", + "pos": "名詞", + "pn": -0.379872 + }, + { + "surface": "心境", + "readging": "しんきょう", + "pos": "名詞", + "pn": -0.379883 + }, + { + "surface": "しょうさん", + "readging": "しょうさんアンモニウム", + "pos": "名詞", + "pn": -0.379887 + }, + { + "surface": "ぺこりと", + "readging": "ぺこりと", + "pos": "副詞", + "pn": -0.37989 + }, + { + "surface": "編隊", + "readging": "へんたい", + "pos": "名詞", + "pn": -0.379894 + }, + { + "surface": "遺戒", + "readging": "いかい", + "pos": "名詞", + "pn": -0.379895 + }, + { + "surface": "匿名", + "readging": "とくめい", + "pos": "名詞", + "pn": -0.379899 + }, + { + "surface": "何分", + "readging": "なにぶん", + "pos": "副詞", + "pn": -0.3799 + }, + { + "surface": "窶す", + "readging": "やつす", + "pos": "動詞", + "pn": -0.379902 + }, + { + "surface": "侍医", + "readging": "じい", + "pos": "名詞", + "pn": -0.379918 + }, + { + "surface": "討伐", + "readging": "とうばつ", + "pos": "名詞", + "pn": -0.37993 + }, + { + "surface": "バトン", + "readging": "バトン", + "pos": "名詞", + "pn": -0.379934 + }, + { + "surface": "早早", + "readging": "そうそう", + "pos": "副詞", + "pn": -0.379949 + }, + { + "surface": "書札", + "readging": "しょさつ", + "pos": "名詞", + "pn": -0.37995 + }, + { + "surface": "胃袋", + "readging": "いぶくろ", + "pos": "名詞", + "pn": -0.379952 + }, + { + "surface": "金鋏", + "readging": "かなばさみ", + "pos": "名詞", + "pn": -0.379969 + }, + { + "surface": "張紙", + "readging": "はりがみ", + "pos": "名詞", + "pn": -0.379983 + }, + { + "surface": "以後", + "readging": "いご", + "pos": "名詞", + "pn": -0.380014 + }, + { + "surface": "更新世", + "readging": "こうしんせい", + "pos": "名詞", + "pn": -0.380015 + }, + { + "surface": "民事", + "readging": "みんじ", + "pos": "名詞", + "pn": -0.38003 + }, + { + "surface": "燃費", + "readging": "ねんぴ", + "pos": "名詞", + "pn": -0.380042 + }, + { + "surface": "揺する", + "readging": "ゆする", + "pos": "動詞", + "pn": -0.38005 + }, + { + "surface": "打明ける", + "readging": "うちあける", + "pos": "動詞", + "pn": -0.380077 + }, + { + "surface": "蟻塚", + "readging": "ありづか", + "pos": "名詞", + "pn": -0.380078 + }, + { + "surface": "粗食", + "readging": "そしょく", + "pos": "名詞", + "pn": -0.3801 + }, + { + "surface": "流し目", + "readging": "ながしめ", + "pos": "名詞", + "pn": -0.380102 + }, + { + "surface": "過酸化水素", + "readging": "かさんかすいそ", + "pos": "名詞", + "pn": -0.380114 + }, + { + "surface": "神文", + "readging": "しんもん", + "pos": "名詞", + "pn": -0.380139 + }, + { + "surface": "降下", + "readging": "こうか", + "pos": "名詞", + "pn": -0.380167 + }, + { + "surface": "カタル", + "readging": "カタル", + "pos": "名詞", + "pn": -0.380192 + }, + { + "surface": "銃床", + "readging": "じゅうしょう", + "pos": "名詞", + "pn": -0.380209 + }, + { + "surface": "マニュアル", + "readging": "マニュアル", + "pos": "名詞", + "pn": -0.38021 + }, + { + "surface": "隈取", + "readging": "くまどり", + "pos": "名詞", + "pn": -0.38022 + }, + { + "surface": "交流", + "readging": "こうりゅう", + "pos": "名詞", + "pn": -0.380232 + }, + { + "surface": "千両箱", + "readging": "せんりょうばこ", + "pos": "名詞", + "pn": -0.380237 + }, + { + "surface": "惜しがる", + "readging": "おしがる", + "pos": "動詞", + "pn": -0.380267 + }, + { + "surface": "公開", + "readging": "こうかい", + "pos": "名詞", + "pn": -0.380274 + }, + { + "surface": "貴婦人", + "readging": "きふじん", + "pos": "名詞", + "pn": -0.380319 + }, + { + "surface": "同調", + "readging": "どうちょう", + "pos": "名詞", + "pn": -0.380322 + }, + { + "surface": "王水", + "readging": "おうすい", + "pos": "名詞", + "pn": -0.380345 + }, + { + "surface": "土質", + "readging": "どしつ", + "pos": "名詞", + "pn": -0.380354 + }, + { + "surface": "安定", + "readging": "あんてい", + "pos": "名詞", + "pn": -0.380386 + }, + { + "surface": "例規", + "readging": "れいき", + "pos": "名詞", + "pn": -0.380391 + }, + { + "surface": "算出", + "readging": "さんしゅつ", + "pos": "名詞", + "pn": -0.380415 + }, + { + "surface": "兆候", + "readging": "ちょうこう", + "pos": "名詞", + "pn": -0.380418 + }, + { + "surface": "相思樹", + "readging": "そうしじゅ", + "pos": "名詞", + "pn": -0.380421 + }, + { + "surface": "王将", + "readging": "おうしょう", + "pos": "名詞", + "pn": -0.380422 + }, + { + "surface": "糧道", + "readging": "りょうどう", + "pos": "名詞", + "pn": -0.380427 + }, + { + "surface": "針槐", + "readging": "はりえんじゅ", + "pos": "名詞", + "pn": -0.380444 + }, + { + "surface": "旁", + "readging": "つくり", + "pos": "名詞", + "pn": -0.380502 + }, + { + "surface": "ティー", + "readging": "ティールーム", + "pos": "名詞", + "pn": -0.380515 + }, + { + "surface": "帯刀", + "readging": "たいとう", + "pos": "名詞", + "pn": -0.380534 + }, + { + "surface": "貰い子", + "readging": "もらいご", + "pos": "名詞", + "pn": -0.380564 + }, + { + "surface": "師団", + "readging": "しだん", + "pos": "名詞", + "pn": -0.380576 + }, + { + "surface": "灯籠", + "readging": "とうろう", + "pos": "名詞", + "pn": -0.380585 + }, + { + "surface": "審理", + "readging": "しんり", + "pos": "名詞", + "pn": -0.380602 + }, + { + "surface": "一体", + "readging": "いったい", + "pos": "名詞", + "pn": -0.380604 + }, + { + "surface": "風雪", + "readging": "ふうせつ", + "pos": "名詞", + "pn": -0.38063 + }, + { + "surface": "火力", + "readging": "かりょく", + "pos": "名詞", + "pn": -0.380631 + }, + { + "surface": "感受性", + "readging": "かんじゅせい", + "pos": "名詞", + "pn": -0.380648 + }, + { + "surface": "折込み", + "readging": "おりこみ", + "pos": "名詞", + "pn": -0.380648 + }, + { + "surface": "パック", + "readging": "パック", + "pos": "名詞", + "pn": -0.380697 + }, + { + "surface": "資料", + "readging": "しりょう", + "pos": "名詞", + "pn": -0.380721 + }, + { + "surface": "原作", + "readging": "げんさく", + "pos": "名詞", + "pn": -0.380732 + }, + { + "surface": "乱菊", + "readging": "らんぎく", + "pos": "名詞", + "pn": -0.380745 + }, + { + "surface": "金円", + "readging": "きんえん", + "pos": "名詞", + "pn": -0.38079 + }, + { + "surface": "丸襟", + "readging": "まるえり", + "pos": "名詞", + "pn": -0.380808 + }, + { + "surface": "歌碑", + "readging": "かひ", + "pos": "名詞", + "pn": -0.380838 + }, + { + "surface": "FM放送", + "readging": "エフエムほうそう", + "pos": "名詞", + "pn": -0.380846 + }, + { + "surface": "狙い", + "readging": "ねらい", + "pos": "名詞", + "pn": -0.380862 + }, + { + "surface": "七", + "readging": "しち", + "pos": "名詞", + "pn": -0.380871 + }, + { + "surface": "合唱", + "readging": "がっしょう", + "pos": "名詞", + "pn": -0.380883 + }, + { + "surface": "籠の鳥", + "readging": "かごのとり", + "pos": "名詞", + "pn": -0.380897 + }, + { + "surface": "切紙", + "readging": "きりかみ", + "pos": "名詞", + "pn": -0.380918 + }, + { + "surface": "切込む", + "readging": "きりこむ", + "pos": "動詞", + "pn": -0.380945 + }, + { + "surface": "ラスト", + "readging": "ラストヘビー", + "pos": "名詞", + "pn": -0.380956 + }, + { + "surface": "短歌", + "readging": "たんか", + "pos": "名詞", + "pn": -0.380968 + }, + { + "surface": "庄屋", + "readging": "しょうや", + "pos": "名詞", + "pn": -0.381014 + }, + { + "surface": "盾", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.381017 + }, + { + "surface": "羅針盤", + "readging": "らしんばん", + "pos": "名詞", + "pn": -0.381028 + }, + { + "surface": "つるむ", + "readging": "つるむ", + "pos": "動詞", + "pn": -0.381031 + }, + { + "surface": "果して", + "readging": "はたして", + "pos": "副詞", + "pn": -0.381052 + }, + { + "surface": "詮索", + "readging": "せんさく", + "pos": "名詞", + "pn": -0.38106 + }, + { + "surface": "成上がる", + "readging": "なりあがる", + "pos": "動詞", + "pn": -0.38107 + }, + { + "surface": "船留め", + "readging": "ふなどめ", + "pos": "名詞", + "pn": -0.381088 + }, + { + "surface": "電磁波", + "readging": "でんじは", + "pos": "名詞", + "pn": -0.381099 + }, + { + "surface": "自動化", + "readging": "じどうか", + "pos": "名詞", + "pn": -0.381109 + }, + { + "surface": "準ずる", + "readging": "じゅんずる", + "pos": "動詞", + "pn": -0.381119 + }, + { + "surface": "瓶", + "readging": "へい", + "pos": "名詞", + "pn": -0.381131 + }, + { + "surface": "訓点", + "readging": "くんてん", + "pos": "名詞", + "pn": -0.381132 + }, + { + "surface": "書巻", + "readging": "しょかん", + "pos": "名詞", + "pn": -0.381148 + }, + { + "surface": "押入", + "readging": "おしいれ", + "pos": "名詞", + "pn": -0.381149 + }, + { + "surface": "ヒューズ", + "readging": "ヒューズ", + "pos": "名詞", + "pn": -0.381166 + }, + { + "surface": "ペン", + "readging": "ペンネーム", + "pos": "名詞", + "pn": -0.381169 + }, + { + "surface": "造影", + "readging": "ぞうえい", + "pos": "名詞", + "pn": -0.381169 + }, + { + "surface": "直前", + "readging": "ちょくぜん", + "pos": "名詞", + "pn": -0.381206 + }, + { + "surface": "積年", + "readging": "せきねん", + "pos": "名詞", + "pn": -0.381208 + }, + { + "surface": "どんぴしゃり", + "readging": "どんぴしゃり", + "pos": "副詞", + "pn": -0.381212 + }, + { + "surface": "薬局", + "readging": "やっきょく", + "pos": "名詞", + "pn": -0.381216 + }, + { + "surface": "原住民", + "readging": "げんじゅうみん", + "pos": "名詞", + "pn": -0.381224 + }, + { + "surface": "自費", + "readging": "じひ", + "pos": "名詞", + "pn": -0.381227 + }, + { + "surface": "濛気", + "readging": "もうき", + "pos": "名詞", + "pn": -0.381256 + }, + { + "surface": "寺号", + "readging": "じごう", + "pos": "名詞", + "pn": -0.381277 + }, + { + "surface": "篦鮒", + "readging": "へらぶな", + "pos": "名詞", + "pn": -0.38128 + }, + { + "surface": "豊頬", + "readging": "ほうきょう", + "pos": "名詞", + "pn": -0.38129 + }, + { + "surface": "滑る", + "readging": "すべる", + "pos": "動詞", + "pn": -0.381313 + }, + { + "surface": "かしずく", + "readging": "かしずく", + "pos": "動詞", + "pn": -0.381316 + }, + { + "surface": "配役", + "readging": "はいやく", + "pos": "名詞", + "pn": -0.381319 + }, + { + "surface": "見せ場", + "readging": "みせば", + "pos": "名詞", + "pn": -0.381328 + }, + { + "surface": "初発", + "readging": "しょはつ", + "pos": "名詞", + "pn": -0.381342 + }, + { + "surface": "法衣", + "readging": "ほうえ", + "pos": "名詞", + "pn": -0.381351 + }, + { + "surface": "色合", + "readging": "いろあい", + "pos": "名詞", + "pn": -0.381355 + }, + { + "surface": "風柄", + "readging": "ふうがら", + "pos": "名詞", + "pn": -0.381367 + }, + { + "surface": "展覧", + "readging": "てんらん", + "pos": "名詞", + "pn": -0.381387 + }, + { + "surface": "アルマジロ", + "readging": "アルマジロ", + "pos": "名詞", + "pn": -0.381425 + }, + { + "surface": "花街", + "readging": "かがい", + "pos": "名詞", + "pn": -0.381429 + }, + { + "surface": "打って返し", + "readging": "うってがえし", + "pos": "名詞", + "pn": -0.381442 + }, + { + "surface": "走幅跳", + "readging": "はしりはばとび", + "pos": "名詞", + "pn": -0.381457 + }, + { + "surface": "瀝青", + "readging": "れきせい", + "pos": "名詞", + "pn": -0.381462 + }, + { + "surface": "装具", + "readging": "そうぐ", + "pos": "名詞", + "pn": -0.38153 + }, + { + "surface": "青梅綿", + "readging": "おうめわた", + "pos": "名詞", + "pn": -0.38153 + }, + { + "surface": "ほう示", + "readging": "ほうじ", + "pos": "名詞", + "pn": -0.381538 + }, + { + "surface": "燕返し", + "readging": "つばめがえし", + "pos": "名詞", + "pn": -0.381546 + }, + { + "surface": "蛮夷", + "readging": "ばんい", + "pos": "名詞", + "pn": -0.381562 + }, + { + "surface": "反射炉", + "readging": "はんしゃろ", + "pos": "名詞", + "pn": -0.38158 + }, + { + "surface": "水田", + "readging": "みずた", + "pos": "名詞", + "pn": -0.381599 + }, + { + "surface": "内接", + "readging": "ないせつ", + "pos": "名詞", + "pn": -0.381601 + }, + { + "surface": "力演", + "readging": "りきえん", + "pos": "名詞", + "pn": -0.381638 + }, + { + "surface": "習字", + "readging": "しゅうじ", + "pos": "名詞", + "pn": -0.381643 + }, + { + "surface": "発議", + "readging": "ほつぎ", + "pos": "名詞", + "pn": -0.381669 + }, + { + "surface": "拭き掃除", + "readging": "ふきそうじ", + "pos": "名詞", + "pn": -0.381692 + }, + { + "surface": "繞", + "readging": "にょう", + "pos": "名詞", + "pn": -0.381711 + }, + { + "surface": "胚葉", + "readging": "はいよう", + "pos": "名詞", + "pn": -0.381761 + }, + { + "surface": "草本", + "readging": "そうほん", + "pos": "名詞", + "pn": -0.381786 + }, + { + "surface": "蓋し", + "readging": "けだし", + "pos": "副詞", + "pn": -0.381794 + }, + { + "surface": "処決", + "readging": "しょけつ", + "pos": "名詞", + "pn": -0.381819 + }, + { + "surface": "玉代", + "readging": "ぎょくだい", + "pos": "名詞", + "pn": -0.381849 + }, + { + "surface": "白髪昆布", + "readging": "しらがこぶ", + "pos": "名詞", + "pn": -0.38185 + }, + { + "surface": "多種", + "readging": "たしゅ", + "pos": "名詞", + "pn": -0.381868 + }, + { + "surface": "篇帙", + "readging": "へんちつ", + "pos": "名詞", + "pn": -0.381895 + }, + { + "surface": "プルス", + "readging": "プルス", + "pos": "名詞", + "pn": -0.381935 + }, + { + "surface": "顔貌", + "readging": "かおかたち", + "pos": "名詞", + "pn": -0.381945 + }, + { + "surface": "谷渡り", + "readging": "たにわたり", + "pos": "名詞", + "pn": -0.381946 + }, + { + "surface": "移り", + "readging": "うつり", + "pos": "名詞", + "pn": -0.38195 + }, + { + "surface": "開基", + "readging": "かいき", + "pos": "名詞", + "pn": -0.381954 + }, + { + "surface": "氷砂糖", + "readging": "こおりざとう", + "pos": "名詞", + "pn": -0.381955 + }, + { + "surface": "メリケン粉", + "readging": "メリケンこ", + "pos": "名詞", + "pn": -0.381984 + }, + { + "surface": "石高", + "readging": "こくだか", + "pos": "名詞", + "pn": -0.382 + }, + { + "surface": "筆頭", + "readging": "ひっとう", + "pos": "名詞", + "pn": -0.382009 + }, + { + "surface": "研磨", + "readging": "けんま", + "pos": "名詞", + "pn": -0.382022 + }, + { + "surface": "飲酒", + "readging": "おんじゅ", + "pos": "名詞", + "pn": -0.382022 + }, + { + "surface": "定義", + "readging": "ていぎ", + "pos": "名詞", + "pn": -0.382053 + }, + { + "surface": "宝塔", + "readging": "ほうとう", + "pos": "名詞", + "pn": -0.382054 + }, + { + "surface": "スモッグ", + "readging": "スモッグ", + "pos": "名詞", + "pn": -0.382065 + }, + { + "surface": "離床", + "readging": "りしょう", + "pos": "名詞", + "pn": -0.382096 + }, + { + "surface": "青田", + "readging": "あおた", + "pos": "名詞", + "pn": -0.382115 + }, + { + "surface": "馬力", + "readging": "ばりき", + "pos": "名詞", + "pn": -0.382141 + }, + { + "surface": "軒忍", + "readging": "のきしのぶ", + "pos": "名詞", + "pn": -0.382151 + }, + { + "surface": "町奉行", + "readging": "まちぶぎょう", + "pos": "名詞", + "pn": -0.382163 + }, + { + "surface": "酔", + "readging": "すい", + "pos": "名詞", + "pn": -0.382173 + }, + { + "surface": "補職", + "readging": "ほしょく", + "pos": "名詞", + "pn": -0.382181 + }, + { + "surface": "淫祠", + "readging": "いんし", + "pos": "名詞", + "pn": -0.382194 + }, + { + "surface": "遠海魚", + "readging": "えんかいぎょ", + "pos": "名詞", + "pn": -0.382197 + }, + { + "surface": "ブザー", + "readging": "ブザー", + "pos": "名詞", + "pn": -0.382217 + }, + { + "surface": "そぼつ", + "readging": "そぼつ", + "pos": "動詞", + "pn": -0.382219 + }, + { + "surface": "同音", + "readging": "どうおん", + "pos": "名詞", + "pn": -0.38222 + }, + { + "surface": "原生", + "readging": "げんせい", + "pos": "名詞", + "pn": -0.38223 + }, + { + "surface": "追及", + "readging": "ついきゅう", + "pos": "名詞", + "pn": -0.382238 + }, + { + "surface": "便", + "readging": "べん", + "pos": "名詞", + "pn": -0.382247 + }, + { + "surface": "重水", + "readging": "じゅうすい", + "pos": "名詞", + "pn": -0.38226 + }, + { + "surface": "紫蘇", + "readging": "しそ", + "pos": "名詞", + "pn": -0.382276 + }, + { + "surface": "入港", + "readging": "にゅうこう", + "pos": "名詞", + "pn": -0.382286 + }, + { + "surface": "マイクロ", + "readging": "マイクロフィルム", + "pos": "名詞", + "pn": -0.382327 + }, + { + "surface": "休戦", + "readging": "きゅうせん", + "pos": "名詞", + "pn": -0.38233 + }, + { + "surface": "スロー", + "readging": "スローモーション", + "pos": "名詞", + "pn": -0.38235 + }, + { + "surface": "底冷え", + "readging": "そこびえ", + "pos": "名詞", + "pn": -0.382357 + }, + { + "surface": "滝口", + "readging": "たきぐち", + "pos": "名詞", + "pn": -0.382367 + }, + { + "surface": "緯", + "readging": "ぬき", + "pos": "名詞", + "pn": -0.38238 + }, + { + "surface": "船荷", + "readging": "ふなに", + "pos": "名詞", + "pn": -0.382381 + }, + { + "surface": "木舞", + "readging": "こまい", + "pos": "名詞", + "pn": -0.382388 + }, + { + "surface": "群", + "readging": "むれ", + "pos": "名詞", + "pn": -0.382423 + }, + { + "surface": "代代", + "readging": "だいだい", + "pos": "名詞", + "pn": -0.382441 + }, + { + "surface": "口当り", + "readging": "くちあたり", + "pos": "名詞", + "pn": -0.382453 + }, + { + "surface": "どかっと", + "readging": "どかっと", + "pos": "副詞", + "pn": -0.382456 + }, + { + "surface": "直押し", + "readging": "ひたおし", + "pos": "名詞", + "pn": -0.382459 + }, + { + "surface": "天頂", + "readging": "てんちょう", + "pos": "名詞", + "pn": -0.382481 + }, + { + "surface": "筋交い", + "readging": "すじかい", + "pos": "名詞", + "pn": -0.382482 + }, + { + "surface": "漂失", + "readging": "ひょうしつ", + "pos": "名詞", + "pn": -0.382491 + }, + { + "surface": "地理", + "readging": "ちり", + "pos": "名詞", + "pn": -0.38251 + }, + { + "surface": "執行", + "readging": "しっこう", + "pos": "名詞", + "pn": -0.382525 + }, + { + "surface": "赭土", + "readging": "しゃど", + "pos": "名詞", + "pn": -0.382531 + }, + { + "surface": "頷ける", + "readging": "うなずける", + "pos": "動詞", + "pn": -0.382576 + }, + { + "surface": "容量", + "readging": "ようりょう", + "pos": "名詞", + "pn": -0.382593 + }, + { + "surface": "解任", + "readging": "かいにん", + "pos": "名詞", + "pn": -0.382599 + }, + { + "surface": "インクライン", + "readging": "インクライン", + "pos": "名詞", + "pn": -0.38261 + }, + { + "surface": "裁断", + "readging": "さいだん", + "pos": "名詞", + "pn": -0.382621 + }, + { + "surface": "文色", + "readging": "あいろ", + "pos": "名詞", + "pn": -0.382653 + }, + { + "surface": "旋盤", + "readging": "せんばん", + "pos": "名詞", + "pn": -0.382674 + }, + { + "surface": "二幅", + "readging": "ふたの", + "pos": "名詞", + "pn": -0.382677 + }, + { + "surface": "パリティー", + "readging": "パリティー", + "pos": "名詞", + "pn": -0.382682 + }, + { + "surface": "瞬間", + "readging": "しゅんかん", + "pos": "名詞", + "pn": -0.382688 + }, + { + "surface": "居る", + "readging": "いる", + "pos": "動詞", + "pn": -0.382717 + }, + { + "surface": "穀倉", + "readging": "こくそう", + "pos": "名詞", + "pn": -0.382724 + }, + { + "surface": "捺染", + "readging": "なっせん", + "pos": "名詞", + "pn": -0.382729 + }, + { + "surface": "海人草", + "readging": "まくり", + "pos": "名詞", + "pn": -0.38273 + }, + { + "surface": "先君", + "readging": "せんくん", + "pos": "名詞", + "pn": -0.382776 + }, + { + "surface": "復文", + "readging": "ふくぶん", + "pos": "名詞", + "pn": -0.382783 + }, + { + "surface": "昨夜", + "readging": "さくや", + "pos": "名詞", + "pn": -0.382815 + }, + { + "surface": "金粉", + "readging": "きんこ", + "pos": "名詞", + "pn": -0.382816 + }, + { + "surface": "梅", + "readging": "ばい", + "pos": "名詞", + "pn": -0.382832 + }, + { + "surface": "石工", + "readging": "せっこう", + "pos": "名詞", + "pn": -0.382842 + }, + { + "surface": "余燼", + "readging": "よじん", + "pos": "名詞", + "pn": -0.382864 + }, + { + "surface": "反訴", + "readging": "はんそ", + "pos": "名詞", + "pn": -0.382891 + }, + { + "surface": "提携", + "readging": "ていけい", + "pos": "名詞", + "pn": -0.382905 + }, + { + "surface": "茶柱", + "readging": "ちゃばしら", + "pos": "名詞", + "pn": -0.382907 + }, + { + "surface": "視野", + "readging": "しや", + "pos": "名詞", + "pn": -0.382922 + }, + { + "surface": "馬陸", + "readging": "やすで", + "pos": "名詞", + "pn": -0.382931 + }, + { + "surface": "偏に", + "readging": "ひとえに", + "pos": "副詞", + "pn": -0.382933 + }, + { + "surface": "起承転結", + "readging": "きしょうてんけつ", + "pos": "名詞", + "pn": -0.382949 + }, + { + "surface": "役割", + "readging": "やくわり", + "pos": "名詞", + "pn": -0.382957 + }, + { + "surface": "札止", + "readging": "ふだどめ", + "pos": "名詞", + "pn": -0.382982 + }, + { + "surface": "告訴", + "readging": "こくそ", + "pos": "名詞", + "pn": -0.38299 + }, + { + "surface": "持て成す", + "readging": "もてなす", + "pos": "動詞", + "pn": -0.382993 + }, + { + "surface": "鏤刻", + "readging": "るこく", + "pos": "名詞", + "pn": -0.382993 + }, + { + "surface": "某", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.382994 + }, + { + "surface": "入れ髪", + "readging": "いれがみ", + "pos": "名詞", + "pn": -0.38301 + }, + { + "surface": "別家", + "readging": "べっけ", + "pos": "名詞", + "pn": -0.383067 + }, + { + "surface": "発声", + "readging": "はっせい", + "pos": "名詞", + "pn": -0.383068 + }, + { + "surface": "不透明", + "readging": "ふとうめい", + "pos": "名詞", + "pn": -0.38309 + }, + { + "surface": "魚子", + "readging": "ななこ", + "pos": "名詞", + "pn": -0.38309 + }, + { + "surface": "不意打ち", + "readging": "ふいうち", + "pos": "名詞", + "pn": -0.383094 + }, + { + "surface": "前奏曲", + "readging": "ぜんそうきょく", + "pos": "名詞", + "pn": -0.383097 + }, + { + "surface": "移転", + "readging": "いてん", + "pos": "名詞", + "pn": -0.383111 + }, + { + "surface": "納入", + "readging": "のうにゅう", + "pos": "名詞", + "pn": -0.383134 + }, + { + "surface": "所由", + "readging": "しょゆう", + "pos": "名詞", + "pn": -0.383139 + }, + { + "surface": "重点", + "readging": "じゅうてん", + "pos": "名詞", + "pn": -0.383142 + }, + { + "surface": "家内", + "readging": "かない", + "pos": "名詞", + "pn": -0.383144 + }, + { + "surface": "冠詞", + "readging": "かんし", + "pos": "名詞", + "pn": -0.38315 + }, + { + "surface": "降り敷く", + "readging": "ふりしく", + "pos": "動詞", + "pn": -0.383184 + }, + { + "surface": "賃", + "readging": "ちん", + "pos": "名詞", + "pn": -0.383202 + }, + { + "surface": "薩摩揚", + "readging": "さつまあげ", + "pos": "名詞", + "pn": -0.383206 + }, + { + "surface": "三題噺", + "readging": "さんだいばなし", + "pos": "名詞", + "pn": -0.383234 + }, + { + "surface": "蓼", + "readging": "たで", + "pos": "名詞", + "pn": -0.383247 + }, + { + "surface": "コスモス", + "readging": "コスモス", + "pos": "名詞", + "pn": -0.383251 + }, + { + "surface": "堰", + "readging": "いせき", + "pos": "名詞", + "pn": -0.383252 + }, + { + "surface": "満堂", + "readging": "まんどう", + "pos": "名詞", + "pn": -0.383272 + }, + { + "surface": "一座", + "readging": "いちざ", + "pos": "名詞", + "pn": -0.383282 + }, + { + "surface": "開放", + "readging": "かいほう", + "pos": "名詞", + "pn": -0.383286 + }, + { + "surface": "共産主義", + "readging": "きょうさんしゅぎ", + "pos": "名詞", + "pn": -0.383291 + }, + { + "surface": "抗拒", + "readging": "こうきょ", + "pos": "名詞", + "pn": -0.383296 + }, + { + "surface": "年度", + "readging": "ねんど", + "pos": "名詞", + "pn": -0.383296 + }, + { + "surface": "ヒント", + "readging": "ヒント", + "pos": "名詞", + "pn": -0.383298 + }, + { + "surface": "山岳", + "readging": "さんがく", + "pos": "名詞", + "pn": -0.383306 + }, + { + "surface": "闊歩", + "readging": "かっぽ", + "pos": "名詞", + "pn": -0.383319 + }, + { + "surface": "絶対", + "readging": "ぜったい", + "pos": "名詞", + "pn": -0.383341 + }, + { + "surface": "グラフィック", + "readging": "グラフィック", + "pos": "名詞", + "pn": -0.383385 + }, + { + "surface": "狂詩", + "readging": "きょうし", + "pos": "名詞", + "pn": -0.383401 + }, + { + "surface": "深山霧島", + "readging": "みやまきりしま", + "pos": "名詞", + "pn": -0.383401 + }, + { + "surface": "腹芸", + "readging": "はらげい", + "pos": "名詞", + "pn": -0.383404 + }, + { + "surface": "青毛", + "readging": "あおげ", + "pos": "名詞", + "pn": -0.38341 + }, + { + "surface": "耕耘", + "readging": "こううん", + "pos": "名詞", + "pn": -0.383414 + }, + { + "surface": "小道具", + "readging": "こどうぐ", + "pos": "名詞", + "pn": -0.383442 + }, + { + "surface": "礼拝", + "readging": "らいはい", + "pos": "名詞", + "pn": -0.383445 + }, + { + "surface": "生活反応", + "readging": "せいかつはんのう", + "pos": "名詞", + "pn": -0.383456 + }, + { + "surface": "開削", + "readging": "かいさく", + "pos": "名詞", + "pn": -0.383469 + }, + { + "surface": "継父", + "readging": "けいふ", + "pos": "名詞", + "pn": -0.38347 + }, + { + "surface": "釜飯", + "readging": "かまめし", + "pos": "名詞", + "pn": -0.38348 + }, + { + "surface": "深山颪", + "readging": "みやまおろし", + "pos": "名詞", + "pn": -0.383488 + }, + { + "surface": "櫺子", + "readging": "れんじ", + "pos": "名詞", + "pn": -0.383492 + }, + { + "surface": "敷写し", + "readging": "しきうつし", + "pos": "名詞", + "pn": -0.383492 + }, + { + "surface": "迎え火", + "readging": "むかえび", + "pos": "名詞", + "pn": -0.383493 + }, + { + "surface": "指分", + "readging": "さしわけ", + "pos": "名詞", + "pn": -0.383497 + }, + { + "surface": "敷島", + "readging": "しきしま", + "pos": "名詞", + "pn": -0.383501 + }, + { + "surface": "果皮", + "readging": "かひ", + "pos": "名詞", + "pn": -0.383529 + }, + { + "surface": "予て", + "readging": "かねて", + "pos": "副詞", + "pn": -0.383583 + }, + { + "surface": "綾取る", + "readging": "あやどる", + "pos": "動詞", + "pn": -0.383584 + }, + { + "surface": "参政権", + "readging": "さんせいけん", + "pos": "名詞", + "pn": -0.383601 + }, + { + "surface": "蔵人", + "readging": "くろうど", + "pos": "名詞", + "pn": -0.38361 + }, + { + "surface": "イミテーション", + "readging": "イミテーション", + "pos": "名詞", + "pn": -0.383617 + }, + { + "surface": "型紙", + "readging": "かたがみ", + "pos": "名詞", + "pn": -0.383622 + }, + { + "surface": "木", + "readging": "ぼく", + "pos": "名詞", + "pn": -0.383624 + }, + { + "surface": "原版", + "readging": "げんぱん", + "pos": "名詞", + "pn": -0.383641 + }, + { + "surface": "砂壁", + "readging": "すなかべ", + "pos": "名詞", + "pn": -0.383643 + }, + { + "surface": "用兵", + "readging": "ようへい", + "pos": "名詞", + "pn": -0.383643 + }, + { + "surface": "抜目", + "readging": "ぬけめ", + "pos": "名詞", + "pn": -0.383661 + }, + { + "surface": "金入れ", + "readging": "かねいれ", + "pos": "名詞", + "pn": -0.38369 + }, + { + "surface": "食紅", + "readging": "しょくべに", + "pos": "名詞", + "pn": -0.383699 + }, + { + "surface": "御供", + "readging": "ごくう", + "pos": "名詞", + "pn": -0.383738 + }, + { + "surface": "余韻", + "readging": "よいん", + "pos": "名詞", + "pn": -0.383756 + }, + { + "surface": "儲かる", + "readging": "もうかる", + "pos": "動詞", + "pn": -0.383776 + }, + { + "surface": "両極", + "readging": "りょうきょく", + "pos": "名詞", + "pn": -0.383777 + }, + { + "surface": "石印", + "readging": "せきいん", + "pos": "名詞", + "pn": -0.38378 + }, + { + "surface": "奴豆腐", + "readging": "やっこどうふ", + "pos": "名詞", + "pn": -0.383781 + }, + { + "surface": "輝石", + "readging": "きせき", + "pos": "名詞", + "pn": -0.383783 + }, + { + "surface": "北寄貝", + "readging": "ほっきがい", + "pos": "名詞", + "pn": -0.383802 + }, + { + "surface": "随筆", + "readging": "ずいひつ", + "pos": "名詞", + "pn": -0.383812 + }, + { + "surface": "寧ろ", + "readging": "むしろ", + "pos": "副詞", + "pn": -0.383819 + }, + { + "surface": "降水", + "readging": "こうすい", + "pos": "名詞", + "pn": -0.383832 + }, + { + "surface": "鳩羽鼠", + "readging": "はとばねずみ", + "pos": "名詞", + "pn": -0.383839 + }, + { + "surface": "京劇", + "readging": "きょうげき", + "pos": "名詞", + "pn": -0.383847 + }, + { + "surface": "小姓", + "readging": "こしょう", + "pos": "名詞", + "pn": -0.383848 + }, + { + "surface": "ボリューム", + "readging": "ボリューム", + "pos": "名詞", + "pn": -0.383852 + }, + { + "surface": "放射性元素", + "readging": "ほうしゃせいげんそ", + "pos": "名詞", + "pn": -0.383867 + }, + { + "surface": "抜刀", + "readging": "ばっとう", + "pos": "名詞", + "pn": -0.383885 + }, + { + "surface": "トライアスロン", + "readging": "トライアスロン", + "pos": "名詞", + "pn": -0.3839 + }, + { + "surface": "慰安", + "readging": "いあん", + "pos": "名詞", + "pn": -0.38391 + }, + { + "surface": "雨天順延", + "readging": "うてんじゅんえん", + "pos": "名詞", + "pn": -0.383919 + }, + { + "surface": "手立て", + "readging": "てだて", + "pos": "名詞", + "pn": -0.38392 + }, + { + "surface": "気付", + "readging": "きづけ", + "pos": "名詞", + "pn": -0.383928 + }, + { + "surface": "欠本", + "readging": "けっぽん", + "pos": "名詞", + "pn": -0.383933 + }, + { + "surface": "エピソード", + "readging": "エピソード", + "pos": "名詞", + "pn": -0.383947 + }, + { + "surface": "茶房", + "readging": "さぼう", + "pos": "名詞", + "pn": -0.383962 + }, + { + "surface": "中休", + "readging": "なかやすみ", + "pos": "名詞", + "pn": -0.383972 + }, + { + "surface": "目付", + "readging": "めつけ", + "pos": "名詞", + "pn": -0.383991 + }, + { + "surface": "抜書", + "readging": "ぬきがき", + "pos": "名詞", + "pn": -0.384022 + }, + { + "surface": "把", + "readging": "わ", + "pos": "名詞", + "pn": -0.384023 + }, + { + "surface": "徐行", + "readging": "じょこう", + "pos": "名詞", + "pn": -0.384037 + }, + { + "surface": "採録", + "readging": "さいろく", + "pos": "名詞", + "pn": -0.384041 + }, + { + "surface": "総合", + "readging": "そうごう", + "pos": "名詞", + "pn": -0.384064 + }, + { + "surface": "掛声", + "readging": "かけごえ", + "pos": "名詞", + "pn": -0.38408 + }, + { + "surface": "字体", + "readging": "じたい", + "pos": "名詞", + "pn": -0.384092 + }, + { + "surface": "弁償", + "readging": "べんしょう", + "pos": "名詞", + "pn": -0.384092 + }, + { + "surface": "摘取る", + "readging": "つみとる", + "pos": "動詞", + "pn": -0.384113 + }, + { + "surface": "風発", + "readging": "ふうはつ", + "pos": "名詞", + "pn": -0.384134 + }, + { + "surface": "飛行機雲", + "readging": "ひこうきぐも", + "pos": "名詞", + "pn": -0.384134 + }, + { + "surface": "逆流", + "readging": "ぎゃくりゅう", + "pos": "名詞", + "pn": -0.384145 + }, + { + "surface": "一酸化炭素", + "readging": "いっさんかたんそ", + "pos": "名詞", + "pn": -0.384145 + }, + { + "surface": "軟風", + "readging": "なんぷう", + "pos": "名詞", + "pn": -0.384166 + }, + { + "surface": "金蠅", + "readging": "きんばえ", + "pos": "名詞", + "pn": -0.384179 + }, + { + "surface": "象", + "readging": "ぞう", + "pos": "名詞", + "pn": -0.384186 + }, + { + "surface": "断案", + "readging": "だんあん", + "pos": "名詞", + "pn": -0.384191 + }, + { + "surface": "燻べる", + "readging": "くすべる", + "pos": "動詞", + "pn": -0.384191 + }, + { + "surface": "将軍", + "readging": "しょうぐん", + "pos": "名詞", + "pn": -0.384191 + }, + { + "surface": "狐の嫁入り", + "readging": "きつねのよめいり", + "pos": "名詞", + "pn": -0.384223 + }, + { + "surface": "ケーソン", + "readging": "ケーソン", + "pos": "名詞", + "pn": -0.384224 + }, + { + "surface": "ちえ熱", + "readging": "ちえねつ", + "pos": "名詞", + "pn": -0.384241 + }, + { + "surface": "マカロニ", + "readging": "マカロニ", + "pos": "名詞", + "pn": -0.384254 + }, + { + "surface": "方方", + "readging": "かたがた", + "pos": "名詞", + "pn": -0.384257 + }, + { + "surface": "引き", + "readging": "ひき", + "pos": "名詞", + "pn": -0.384262 + }, + { + "surface": "方違え", + "readging": "かたたがえ", + "pos": "名詞", + "pn": -0.384269 + }, + { + "surface": "伝承", + "readging": "でんしょう", + "pos": "名詞", + "pn": -0.384277 + }, + { + "surface": "内実", + "readging": "ないじつ", + "pos": "名詞", + "pn": -0.38429 + }, + { + "surface": "トロール漁業", + "readging": "トロールぎょぎょう", + "pos": "名詞", + "pn": -0.384291 + }, + { + "surface": "割符", + "readging": "わりふ", + "pos": "名詞", + "pn": -0.384308 + }, + { + "surface": "装着", + "readging": "そうちゃく", + "pos": "名詞", + "pn": -0.384341 + }, + { + "surface": "擬勢", + "readging": "ぎせい", + "pos": "名詞", + "pn": -0.384377 + }, + { + "surface": "世間騒がせ", + "readging": "せけんさわがせ", + "pos": "名詞", + "pn": -0.384389 + }, + { + "surface": "神経痛", + "readging": "しんけいつう", + "pos": "名詞", + "pn": -0.384401 + }, + { + "surface": "トン税", + "readging": "トンぜい", + "pos": "名詞", + "pn": -0.384402 + }, + { + "surface": "一膳飯屋", + "readging": "いちぜんめしや", + "pos": "名詞", + "pn": -0.384455 + }, + { + "surface": "水貝", + "readging": "みずがい", + "pos": "名詞", + "pn": -0.384467 + }, + { + "surface": "雲壌", + "readging": "うんじょう", + "pos": "名詞", + "pn": -0.384468 + }, + { + "surface": "赤鰯", + "readging": "あかいわし", + "pos": "名詞", + "pn": -0.384503 + }, + { + "surface": "簪", + "readging": "かんざし", + "pos": "名詞", + "pn": -0.384504 + }, + { + "surface": "青菜", + "readging": "あおな", + "pos": "名詞", + "pn": -0.384512 + }, + { + "surface": "禁欲", + "readging": "きんよく", + "pos": "名詞", + "pn": -0.384513 + }, + { + "surface": "画会", + "readging": "がかい", + "pos": "名詞", + "pn": -0.384514 + }, + { + "surface": "脱化", + "readging": "だっか", + "pos": "名詞", + "pn": -0.384529 + }, + { + "surface": "緑茶", + "readging": "りょくちゃ", + "pos": "名詞", + "pn": -0.384532 + }, + { + "surface": "金看板", + "readging": "きんかんばん", + "pos": "名詞", + "pn": -0.384532 + }, + { + "surface": "漉き入れ", + "readging": "すきいれ", + "pos": "名詞", + "pn": -0.384571 + }, + { + "surface": "消火", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.384575 + }, + { + "surface": "法皇", + "readging": "ほうおう", + "pos": "名詞", + "pn": -0.384582 + }, + { + "surface": "筆筒", + "readging": "ひっとう", + "pos": "名詞", + "pn": -0.384589 + }, + { + "surface": "農地", + "readging": "のうち", + "pos": "名詞", + "pn": -0.384592 + }, + { + "surface": "話し込む", + "readging": "はなしこむ", + "pos": "動詞", + "pn": -0.3846 + }, + { + "surface": "杏仁", + "readging": "きょうにん", + "pos": "名詞", + "pn": -0.384615 + }, + { + "surface": "混信", + "readging": "こんしん", + "pos": "名詞", + "pn": -0.38462 + }, + { + "surface": "演じる", + "readging": "えんじる", + "pos": "動詞", + "pn": -0.384623 + }, + { + "surface": "下弦", + "readging": "かげん", + "pos": "名詞", + "pn": -0.384631 + }, + { + "surface": "間諜", + "readging": "かんちょう", + "pos": "名詞", + "pn": -0.384632 + }, + { + "surface": "波除け", + "readging": "なみよけ", + "pos": "名詞", + "pn": -0.384636 + }, + { + "surface": "潮騒", + "readging": "しおさい", + "pos": "名詞", + "pn": -0.384644 + }, + { + "surface": "おしゃま", + "readging": "おしゃま", + "pos": "名詞", + "pn": -0.384665 + }, + { + "surface": "木質", + "readging": "もくしつ", + "pos": "名詞", + "pn": -0.384669 + }, + { + "surface": "古典", + "readging": "こてん", + "pos": "名詞", + "pn": -0.384721 + }, + { + "surface": "塩田", + "readging": "えんでん", + "pos": "名詞", + "pn": -0.384725 + }, + { + "surface": "行書", + "readging": "ぎょうしょ", + "pos": "名詞", + "pn": -0.38474 + }, + { + "surface": "締付ける", + "readging": "しめつける", + "pos": "動詞", + "pn": -0.384741 + }, + { + "surface": "潮先", + "readging": "しおさき", + "pos": "名詞", + "pn": -0.384771 + }, + { + "surface": "ホステス", + "readging": "ホステス", + "pos": "名詞", + "pn": -0.384775 + }, + { + "surface": "ドラム", + "readging": "ドラム", + "pos": "名詞", + "pn": -0.384779 + }, + { + "surface": "硝子張り", + "readging": "ガラスばり", + "pos": "名詞", + "pn": -0.384795 + }, + { + "surface": "以往", + "readging": "いおう", + "pos": "名詞", + "pn": -0.38481 + }, + { + "surface": "地衣", + "readging": "ちい", + "pos": "名詞", + "pn": -0.384815 + }, + { + "surface": "レート", + "readging": "レート", + "pos": "名詞", + "pn": -0.384822 + }, + { + "surface": "乳液", + "readging": "にゅうえき", + "pos": "名詞", + "pn": -0.384823 + }, + { + "surface": "縁者", + "readging": "えんじゃ", + "pos": "名詞", + "pn": -0.384836 + }, + { + "surface": "観想", + "readging": "かんそう", + "pos": "名詞", + "pn": -0.384845 + }, + { + "surface": "替地", + "readging": "かえち", + "pos": "名詞", + "pn": -0.384846 + }, + { + "surface": "序の口", + "readging": "じょのくち", + "pos": "名詞", + "pn": -0.38486 + }, + { + "surface": "明け渡す", + "readging": "あけわたす", + "pos": "動詞", + "pn": -0.384862 + }, + { + "surface": "曲射", + "readging": "きょくしゃ", + "pos": "名詞", + "pn": -0.384874 + }, + { + "surface": "遊行", + "readging": "ゆぎょう", + "pos": "名詞", + "pn": -0.384879 + }, + { + "surface": "軟派", + "readging": "なんぱ", + "pos": "名詞", + "pn": -0.384897 + }, + { + "surface": "真影", + "readging": "しんえい", + "pos": "名詞", + "pn": -0.384903 + }, + { + "surface": "仏寺", + "readging": "ぶつじ", + "pos": "名詞", + "pn": -0.384935 + }, + { + "surface": "卸", + "readging": "おろし", + "pos": "名詞", + "pn": -0.384946 + }, + { + "surface": "重祚", + "readging": "じゅうそ", + "pos": "名詞", + "pn": -0.384973 + }, + { + "surface": "火遁", + "readging": "かとん", + "pos": "名詞", + "pn": -0.384975 + }, + { + "surface": "直衣", + "readging": "のうし", + "pos": "名詞", + "pn": -0.38498 + }, + { + "surface": "神通", + "readging": "じんずう", + "pos": "名詞", + "pn": -0.384985 + }, + { + "surface": "衣食", + "readging": "いしょく", + "pos": "名詞", + "pn": -0.385006 + }, + { + "surface": "丸本", + "readging": "まるほん", + "pos": "名詞", + "pn": -0.385021 + }, + { + "surface": "黒貂", + "readging": "くろてん", + "pos": "名詞", + "pn": -0.385026 + }, + { + "surface": "青海苔", + "readging": "あおのり", + "pos": "名詞", + "pn": -0.385029 + }, + { + "surface": "漠漠", + "readging": "ばくばく", + "pos": "名詞", + "pn": -0.385035 + }, + { + "surface": "竜巻", + "readging": "たつまき", + "pos": "名詞", + "pn": -0.385058 + }, + { + "surface": "渦潮", + "readging": "うずしお", + "pos": "名詞", + "pn": -0.385058 + }, + { + "surface": "天孫", + "readging": "てんそん", + "pos": "名詞", + "pn": -0.385064 + }, + { + "surface": "平手", + "readging": "ひらて", + "pos": "名詞", + "pn": -0.385069 + }, + { + "surface": "シチュー", + "readging": "シチュー", + "pos": "名詞", + "pn": -0.385075 + }, + { + "surface": "腸", + "readging": "はらわた", + "pos": "名詞", + "pn": -0.385089 + }, + { + "surface": "招き", + "readging": "まねき", + "pos": "名詞", + "pn": -0.385125 + }, + { + "surface": "抄物", + "readging": "しょうもの", + "pos": "名詞", + "pn": -0.385129 + }, + { + "surface": "図版", + "readging": "ずはん", + "pos": "名詞", + "pn": -0.38514 + }, + { + "surface": "上様", + "readging": "じょうさま", + "pos": "名詞", + "pn": -0.385142 + }, + { + "surface": "兵制", + "readging": "へいせい", + "pos": "名詞", + "pn": -0.385173 + }, + { + "surface": "正価", + "readging": "せいか", + "pos": "名詞", + "pn": -0.385196 + }, + { + "surface": "音響", + "readging": "おんきょう", + "pos": "名詞", + "pn": -0.385199 + }, + { + "surface": "画用紙", + "readging": "がようし", + "pos": "名詞", + "pn": -0.385275 + }, + { + "surface": "三日月", + "readging": "みかづき", + "pos": "名詞", + "pn": -0.385299 + }, + { + "surface": "手合", + "readging": "てあい", + "pos": "名詞", + "pn": -0.385328 + }, + { + "surface": "発光", + "readging": "はっこう", + "pos": "名詞", + "pn": -0.385329 + }, + { + "surface": "頼母子", + "readging": "たのもし", + "pos": "名詞", + "pn": -0.385338 + }, + { + "surface": "従事", + "readging": "じゅうじ", + "pos": "名詞", + "pn": -0.385348 + }, + { + "surface": "差湯", + "readging": "さしゆ", + "pos": "名詞", + "pn": -0.38535 + }, + { + "surface": "辞す", + "readging": "じす", + "pos": "動詞", + "pn": -0.385382 + }, + { + "surface": "白菜", + "readging": "はくさい", + "pos": "名詞", + "pn": -0.385382 + }, + { + "surface": "ズーム", + "readging": "ズームレンズ", + "pos": "名詞", + "pn": -0.385385 + }, + { + "surface": "亀節", + "readging": "かめぶし", + "pos": "名詞", + "pn": -0.385387 + }, + { + "surface": "青海原", + "readging": "あおうなばら", + "pos": "名詞", + "pn": -0.385396 + }, + { + "surface": "粕漬", + "readging": "かすづけ", + "pos": "名詞", + "pn": -0.385399 + }, + { + "surface": "無根", + "readging": "むこん", + "pos": "名詞", + "pn": -0.385414 + }, + { + "surface": "ぐい飲み", + "readging": "ぐいのみ", + "pos": "名詞", + "pn": -0.385422 + }, + { + "surface": "縦し", + "readging": "よし", + "pos": "副詞", + "pn": -0.385428 + }, + { + "surface": "金盞花", + "readging": "きんせんか", + "pos": "名詞", + "pn": -0.385431 + }, + { + "surface": "空っぽ", + "readging": "からっぽ", + "pos": "名詞", + "pn": -0.385491 + }, + { + "surface": "耐食", + "readging": "たいしょく", + "pos": "名詞", + "pn": -0.385505 + }, + { + "surface": "用人", + "readging": "ようにん", + "pos": "名詞", + "pn": -0.385506 + }, + { + "surface": "毛筋", + "readging": "けすじ", + "pos": "名詞", + "pn": -0.385516 + }, + { + "surface": "肉質", + "readging": "にくしつ", + "pos": "名詞", + "pn": -0.385517 + }, + { + "surface": "品", + "readging": "ひん", + "pos": "名詞", + "pn": -0.385521 + }, + { + "surface": "幅広い", + "readging": "はばひろい", + "pos": "形容詞", + "pn": -0.385533 + }, + { + "surface": "セルフ サービス", + "readging": "セルフ サービス", + "pos": "名詞", + "pn": -0.385542 + }, + { + "surface": "末技", + "readging": "まつぎ", + "pos": "名詞", + "pn": -0.385545 + }, + { + "surface": "膠質", + "readging": "こうしつ", + "pos": "名詞", + "pn": -0.385563 + }, + { + "surface": "血止め草", + "readging": "ちどめぐさ", + "pos": "名詞", + "pn": -0.385572 + }, + { + "surface": "三弦", + "readging": "さんげん", + "pos": "名詞", + "pn": -0.38558 + }, + { + "surface": "邯鄲", + "readging": "かんたん", + "pos": "名詞", + "pn": -0.38558 + }, + { + "surface": "漁民", + "readging": "ぎょみん", + "pos": "名詞", + "pn": -0.385583 + }, + { + "surface": "ちんどん屋", + "readging": "ちんどんや", + "pos": "名詞", + "pn": -0.385594 + }, + { + "surface": "閉場", + "readging": "へいじょう", + "pos": "名詞", + "pn": -0.385634 + }, + { + "surface": "律", + "readging": "りつ", + "pos": "名詞", + "pn": -0.385643 + }, + { + "surface": "振盪", + "readging": "しんとう", + "pos": "名詞", + "pn": -0.385644 + }, + { + "surface": "当人", + "readging": "とうにん", + "pos": "名詞", + "pn": -0.38565 + }, + { + "surface": "随意筋", + "readging": "ずいいきん", + "pos": "名詞", + "pn": -0.385657 + }, + { + "surface": "金網", + "readging": "かなあみ", + "pos": "名詞", + "pn": -0.385669 + }, + { + "surface": "挿木", + "readging": "さしき", + "pos": "名詞", + "pn": -0.385673 + }, + { + "surface": "龕灯提灯", + "readging": "がんどうぢょうちん", + "pos": "名詞", + "pn": -0.385675 + }, + { + "surface": "馬印", + "readging": "うまじるし", + "pos": "名詞", + "pn": -0.385697 + }, + { + "surface": "誇大妄想", + "readging": "こだいもうそう", + "pos": "名詞", + "pn": -0.385702 + }, + { + "surface": "寺参り", + "readging": "てらまいり", + "pos": "名詞", + "pn": -0.385727 + }, + { + "surface": "斑猫", + "readging": "はんみょう", + "pos": "名詞", + "pn": -0.385741 + }, + { + "surface": "修飾", + "readging": "しゅうしょく", + "pos": "名詞", + "pn": -0.385754 + }, + { + "surface": "慰留", + "readging": "いりゅう", + "pos": "名詞", + "pn": -0.38577 + }, + { + "surface": "かけす", + "readging": "かけす", + "pos": "名詞", + "pn": -0.385788 + }, + { + "surface": "マンネリズム", + "readging": "マンネリズム", + "pos": "名詞", + "pn": -0.385799 + }, + { + "surface": "印形", + "readging": "いんぎょう", + "pos": "名詞", + "pn": -0.38582 + }, + { + "surface": "小祠", + "readging": "しょうし", + "pos": "名詞", + "pn": -0.385829 + }, + { + "surface": "歯", + "readging": "し", + "pos": "名詞", + "pn": -0.385842 + }, + { + "surface": "借銭", + "readging": "しゃくせん", + "pos": "名詞", + "pn": -0.385861 + }, + { + "surface": "憤死", + "readging": "ふんし", + "pos": "名詞", + "pn": -0.385868 + }, + { + "surface": "出初", + "readging": "でぞめ", + "pos": "名詞", + "pn": -0.385868 + }, + { + "surface": "帰任", + "readging": "きにん", + "pos": "名詞", + "pn": -0.385937 + }, + { + "surface": "逸失利益", + "readging": "いっしつりえき", + "pos": "名詞", + "pn": -0.385948 + }, + { + "surface": "アダージョ", + "readging": "アダージョ", + "pos": "名詞", + "pn": -0.385949 + }, + { + "surface": "表層", + "readging": "ひょうそう", + "pos": "名詞", + "pn": -0.385973 + }, + { + "surface": "安全灯", + "readging": "あんぜんとう", + "pos": "名詞", + "pn": -0.385985 + }, + { + "surface": "歳月", + "readging": "さいげつ", + "pos": "名詞", + "pn": -0.386016 + }, + { + "surface": "人里", + "readging": "ひとざと", + "pos": "名詞", + "pn": -0.386025 + }, + { + "surface": "男児", + "readging": "だんじ", + "pos": "名詞", + "pn": -0.386037 + }, + { + "surface": "音域", + "readging": "おんいき", + "pos": "名詞", + "pn": -0.386045 + }, + { + "surface": "勅命", + "readging": "ちょくめい", + "pos": "名詞", + "pn": -0.386068 + }, + { + "surface": "ジューサー", + "readging": "ジューサー", + "pos": "名詞", + "pn": -0.386068 + }, + { + "surface": "旬刊", + "readging": "じゅんかん", + "pos": "名詞", + "pn": -0.386069 + }, + { + "surface": "戦術", + "readging": "せんじゅつ", + "pos": "名詞", + "pn": -0.386072 + }, + { + "surface": "朝廷", + "readging": "ちょうてい", + "pos": "名詞", + "pn": -0.386093 + }, + { + "surface": "負かす", + "readging": "まかす", + "pos": "動詞", + "pn": -0.386127 + }, + { + "surface": "じゃんじゃん", + "readging": "じゃんじゃん", + "pos": "副詞", + "pn": -0.386128 + }, + { + "surface": "柑橘類", + "readging": "かんきつるい", + "pos": "名詞", + "pn": -0.386135 + }, + { + "surface": "雲居", + "readging": "くもい", + "pos": "名詞", + "pn": -0.386142 + }, + { + "surface": "利かん坊", + "readging": "きかんぼう", + "pos": "名詞", + "pn": -0.386161 + }, + { + "surface": "ディレクトリ", + "readging": "ディレクトリ", + "pos": "名詞", + "pn": -0.386177 + }, + { + "surface": "書冊", + "readging": "しょさつ", + "pos": "名詞", + "pn": -0.38619 + }, + { + "surface": "冗官", + "readging": "じょうかん", + "pos": "名詞", + "pn": -0.386202 + }, + { + "surface": "芸妓", + "readging": "げいぎ", + "pos": "名詞", + "pn": -0.386222 + }, + { + "surface": "ブレンド", + "readging": "ブレンド", + "pos": "名詞", + "pn": -0.386253 + }, + { + "surface": "ぶん投げる", + "readging": "ぶんなげる", + "pos": "動詞", + "pn": -0.386259 + }, + { + "surface": "余蘊", + "readging": "ようん", + "pos": "名詞", + "pn": -0.386261 + }, + { + "surface": "引潮", + "readging": "ひきしお", + "pos": "名詞", + "pn": -0.386287 + }, + { + "surface": "飛来", + "readging": "ひらい", + "pos": "名詞", + "pn": -0.386293 + }, + { + "surface": "定量", + "readging": "ていりょう", + "pos": "名詞", + "pn": -0.386305 + }, + { + "surface": "色付く", + "readging": "いろづく", + "pos": "動詞", + "pn": -0.386307 + }, + { + "surface": "一策", + "readging": "いっさく", + "pos": "名詞", + "pn": -0.38631 + }, + { + "surface": "順行運動", + "readging": "じゅんこううんどう", + "pos": "名詞", + "pn": -0.386318 + }, + { + "surface": "成句", + "readging": "せいく", + "pos": "名詞", + "pn": -0.386321 + }, + { + "surface": "旅客", + "readging": "りょかく", + "pos": "名詞", + "pn": -0.386361 + }, + { + "surface": "兵籍", + "readging": "へいせき", + "pos": "名詞", + "pn": -0.386378 + }, + { + "surface": "反物", + "readging": "たんもの", + "pos": "名詞", + "pn": -0.386405 + }, + { + "surface": "付け目", + "readging": "つけめ", + "pos": "名詞", + "pn": -0.386406 + }, + { + "surface": "警鐘", + "readging": "けいしょう", + "pos": "名詞", + "pn": -0.386435 + }, + { + "surface": "楡", + "readging": "にれ", + "pos": "名詞", + "pn": -0.38644 + }, + { + "surface": "玉髄", + "readging": "ぎょくずい", + "pos": "名詞", + "pn": -0.386448 + }, + { + "surface": "養分", + "readging": "ようぶん", + "pos": "名詞", + "pn": -0.386476 + }, + { + "surface": "移管", + "readging": "いかん", + "pos": "名詞", + "pn": -0.386479 + }, + { + "surface": "滑稽", + "readging": "こっけい", + "pos": "名詞", + "pn": -0.38648 + }, + { + "surface": "ラップ", + "readging": "ラップ", + "pos": "名詞", + "pn": -0.386484 + }, + { + "surface": "報", + "readging": "ほう", + "pos": "名詞", + "pn": -0.386493 + }, + { + "surface": "暁鐘", + "readging": "ぎょうしょう", + "pos": "名詞", + "pn": -0.386513 + }, + { + "surface": "速力", + "readging": "そくりょく", + "pos": "名詞", + "pn": -0.386538 + }, + { + "surface": "短信", + "readging": "たんしん", + "pos": "名詞", + "pn": -0.386539 + }, + { + "surface": "書取る", + "readging": "かきとる", + "pos": "動詞", + "pn": -0.386569 + }, + { + "surface": "詰所", + "readging": "つめしょ", + "pos": "名詞", + "pn": -0.386581 + }, + { + "surface": "擬製豆腐", + "readging": "ぎせいどうふ", + "pos": "名詞", + "pn": -0.386585 + }, + { + "surface": "栲", + "readging": "たえ", + "pos": "名詞", + "pn": -0.386591 + }, + { + "surface": "五位鷺", + "readging": "ごいさぎ", + "pos": "名詞", + "pn": -0.386595 + }, + { + "surface": "呼応", + "readging": "こおう", + "pos": "名詞", + "pn": -0.386614 + }, + { + "surface": "血塗る", + "readging": "ちぬる", + "pos": "動詞", + "pn": -0.386628 + }, + { + "surface": "ハム", + "readging": "ハム", + "pos": "名詞", + "pn": -0.386649 + }, + { + "surface": "茶飯事", + "readging": "さはんじ", + "pos": "名詞", + "pn": -0.386652 + }, + { + "surface": "位相", + "readging": "いそう", + "pos": "名詞", + "pn": -0.386653 + }, + { + "surface": "甘味料", + "readging": "かんみりょう", + "pos": "名詞", + "pn": -0.386655 + }, + { + "surface": "ピンセット", + "readging": "ピンセット", + "pos": "名詞", + "pn": -0.386661 + }, + { + "surface": "苗木", + "readging": "なえぎ", + "pos": "名詞", + "pn": -0.386664 + }, + { + "surface": "強制送還", + "readging": "きょうせいそうかん", + "pos": "名詞", + "pn": -0.386668 + }, + { + "surface": "鞍壺", + "readging": "くらつぼ", + "pos": "名詞", + "pn": -0.38667 + }, + { + "surface": "酒興", + "readging": "しゅきょう", + "pos": "名詞", + "pn": -0.386672 + }, + { + "surface": "環状", + "readging": "かんじょう", + "pos": "名詞", + "pn": -0.386701 + }, + { + "surface": "名利", + "readging": "めいり", + "pos": "名詞", + "pn": -0.386703 + }, + { + "surface": "浦", + "readging": "うら", + "pos": "名詞", + "pn": -0.386729 + }, + { + "surface": "味方", + "readging": "みかた", + "pos": "名詞", + "pn": -0.386752 + }, + { + "surface": "社会問題", + "readging": "しゃかいもんだい", + "pos": "名詞", + "pn": -0.386773 + }, + { + "surface": "セシウム", + "readging": "セシウム", + "pos": "名詞", + "pn": -0.386792 + }, + { + "surface": "励声", + "readging": "れいせい", + "pos": "名詞", + "pn": -0.386793 + }, + { + "surface": "木場", + "readging": "きば", + "pos": "名詞", + "pn": -0.386794 + }, + { + "surface": "透き織", + "readging": "すきおり", + "pos": "名詞", + "pn": -0.386796 + }, + { + "surface": "炭", + "readging": "すみ", + "pos": "名詞", + "pn": -0.386799 + }, + { + "surface": "堕胎", + "readging": "だたい", + "pos": "名詞", + "pn": -0.386811 + }, + { + "surface": "痴呆", + "readging": "ちほう", + "pos": "名詞", + "pn": -0.386813 + }, + { + "surface": "ストロフルス", + "readging": "ストロフルス", + "pos": "名詞", + "pn": -0.386824 + }, + { + "surface": "数珠玉", + "readging": "じゅずだま", + "pos": "名詞", + "pn": -0.386841 + }, + { + "surface": "出潮", + "readging": "でしお", + "pos": "名詞", + "pn": -0.386861 + }, + { + "surface": "フライス盤", + "readging": "フライスばん", + "pos": "名詞", + "pn": -0.386881 + }, + { + "surface": "骨炭", + "readging": "こったん", + "pos": "名詞", + "pn": -0.386888 + }, + { + "surface": "形質", + "readging": "けいしつ", + "pos": "名詞", + "pn": -0.386899 + }, + { + "surface": "エーデルワイス", + "readging": "エーデルワイス", + "pos": "名詞", + "pn": -0.386907 + }, + { + "surface": "ステータス", + "readging": "ステータス", + "pos": "名詞", + "pn": -0.386909 + }, + { + "surface": "東", + "readging": "ひがし", + "pos": "名詞", + "pn": -0.38692 + }, + { + "surface": "茶の間", + "readging": "ちゃのま", + "pos": "名詞", + "pn": -0.38693 + }, + { + "surface": "質物", + "readging": "しちもつ", + "pos": "名詞", + "pn": -0.386943 + }, + { + "surface": "上級", + "readging": "じょうきゅう", + "pos": "名詞", + "pn": -0.386955 + }, + { + "surface": "消える", + "readging": "きえる", + "pos": "動詞", + "pn": -0.386955 + }, + { + "surface": "劇作", + "readging": "げきさく", + "pos": "名詞", + "pn": -0.386967 + }, + { + "surface": "調進", + "readging": "ちょうしん", + "pos": "名詞", + "pn": -0.38697 + }, + { + "surface": "骨相", + "readging": "こっそう", + "pos": "名詞", + "pn": -0.38699 + }, + { + "surface": "御免", + "readging": "ごめん", + "pos": "名詞", + "pn": -0.386999 + }, + { + "surface": "天水", + "readging": "てんすい", + "pos": "名詞", + "pn": -0.387014 + }, + { + "surface": "オフセット", + "readging": "オフセット", + "pos": "名詞", + "pn": -0.387042 + }, + { + "surface": "陰刻", + "readging": "いんこく", + "pos": "名詞", + "pn": -0.387052 + }, + { + "surface": "金筋", + "readging": "きんすじ", + "pos": "名詞", + "pn": -0.387055 + }, + { + "surface": "ノンブル", + "readging": "ノンブル", + "pos": "名詞", + "pn": -0.387081 + }, + { + "surface": "博士", + "readging": "はかせ", + "pos": "名詞", + "pn": -0.387086 + }, + { + "surface": "検", + "readging": "けん", + "pos": "名詞", + "pn": -0.387104 + }, + { + "surface": "上層", + "readging": "じょうそう", + "pos": "名詞", + "pn": -0.387106 + }, + { + "surface": "杉菜", + "readging": "すぎな", + "pos": "名詞", + "pn": -0.38712 + }, + { + "surface": "一味", + "readging": "ひとあじ", + "pos": "副詞", + "pn": -0.387123 + }, + { + "surface": "古", + "readging": "こ", + "pos": "名詞", + "pn": -0.38716 + }, + { + "surface": "成功", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.387167 + }, + { + "surface": "割声", + "readging": "わりごえ", + "pos": "名詞", + "pn": -0.38719 + }, + { + "surface": "宿罪", + "readging": "しゅくざい", + "pos": "名詞", + "pn": -0.387193 + }, + { + "surface": "御幣", + "readging": "ごへい", + "pos": "名詞", + "pn": -0.3872 + }, + { + "surface": "檀", + "readging": "まゆみ", + "pos": "名詞", + "pn": -0.387205 + }, + { + "surface": "伯", + "readging": "はく", + "pos": "名詞", + "pn": -0.387221 + }, + { + "surface": "抜剣", + "readging": "ばっけん", + "pos": "名詞", + "pn": -0.387255 + }, + { + "surface": "銘打つ", + "readging": "めいうつ", + "pos": "動詞", + "pn": -0.387257 + }, + { + "surface": "組合す", + "readging": "くみあわす", + "pos": "動詞", + "pn": -0.387271 + }, + { + "surface": "占領", + "readging": "せんりょう", + "pos": "名詞", + "pn": -0.387291 + }, + { + "surface": "フォーム", + "readging": "フォーム", + "pos": "名詞", + "pn": -0.387297 + }, + { + "surface": "伝単", + "readging": "でんたん", + "pos": "名詞", + "pn": -0.387318 + }, + { + "surface": "挟み切る", + "readging": "はさみきる", + "pos": "動詞", + "pn": -0.387322 + }, + { + "surface": "心付", + "readging": "こころづけ", + "pos": "名詞", + "pn": -0.387366 + }, + { + "surface": "骨質", + "readging": "こっしつ", + "pos": "名詞", + "pn": -0.387385 + }, + { + "surface": "シネマ", + "readging": "シネマスコープ", + "pos": "名詞", + "pn": -0.387386 + }, + { + "surface": "本丸", + "readging": "ほんまる", + "pos": "名詞", + "pn": -0.387399 + }, + { + "surface": "本式", + "readging": "ほんしき", + "pos": "名詞", + "pn": -0.387409 + }, + { + "surface": "弔文", + "readging": "ちょうぶん", + "pos": "名詞", + "pn": -0.387417 + }, + { + "surface": "猿知恵", + "readging": "さるぢえ", + "pos": "名詞", + "pn": -0.387437 + }, + { + "surface": "刺青", + "readging": "しせい", + "pos": "名詞", + "pn": -0.387472 + }, + { + "surface": "縄暖簾", + "readging": "なわのれん", + "pos": "名詞", + "pn": -0.387487 + }, + { + "surface": "面", + "readging": "おも", + "pos": "名詞", + "pn": -0.387504 + }, + { + "surface": "レベル", + "readging": "レベル", + "pos": "名詞", + "pn": -0.387507 + }, + { + "surface": "法人", + "readging": "ほうじん", + "pos": "名詞", + "pn": -0.387531 + }, + { + "surface": "命中", + "readging": "めいちゅう", + "pos": "名詞", + "pn": -0.387537 + }, + { + "surface": "冷凍", + "readging": "れいとう", + "pos": "名詞", + "pn": -0.387544 + }, + { + "surface": "触覚", + "readging": "しょっかく", + "pos": "名詞", + "pn": -0.387567 + }, + { + "surface": "書記す", + "readging": "かきしるす", + "pos": "動詞", + "pn": -0.387575 + }, + { + "surface": "メッシュ", + "readging": "メッシュ", + "pos": "名詞", + "pn": -0.387576 + }, + { + "surface": "方術", + "readging": "ほうじゅつ", + "pos": "名詞", + "pn": -0.387576 + }, + { + "surface": "組緒", + "readging": "くみお", + "pos": "名詞", + "pn": -0.387592 + }, + { + "surface": "轆轤台", + "readging": "ろくろだい", + "pos": "名詞", + "pn": -0.387594 + }, + { + "surface": "引合う", + "readging": "ひきあう", + "pos": "動詞", + "pn": -0.387601 + }, + { + "surface": "版行", + "readging": "はんこう", + "pos": "名詞", + "pn": -0.387601 + }, + { + "surface": "陰極", + "readging": "いんきょく", + "pos": "名詞", + "pn": -0.387607 + }, + { + "surface": "エレジー", + "readging": "エレジー", + "pos": "名詞", + "pn": -0.387613 + }, + { + "surface": "塁", + "readging": "るい", + "pos": "名詞", + "pn": -0.387626 + }, + { + "surface": "中古", + "readging": "ちゅうこ", + "pos": "名詞", + "pn": -0.387642 + }, + { + "surface": "陵", + "readging": "みささぎ", + "pos": "名詞", + "pn": -0.387647 + }, + { + "surface": "未成年", + "readging": "みせいねん", + "pos": "名詞", + "pn": -0.387649 + }, + { + "surface": "手製", + "readging": "てせい", + "pos": "名詞", + "pn": -0.387674 + }, + { + "surface": "総掛り", + "readging": "そうがかり", + "pos": "名詞", + "pn": -0.387674 + }, + { + "surface": "破水", + "readging": "はすい", + "pos": "名詞", + "pn": -0.387675 + }, + { + "surface": "顔出し", + "readging": "かおだし", + "pos": "名詞", + "pn": -0.387683 + }, + { + "surface": "埋蔵", + "readging": "まいぞう", + "pos": "名詞", + "pn": -0.387696 + }, + { + "surface": "文案", + "readging": "ぶんあん", + "pos": "名詞", + "pn": -0.387705 + }, + { + "surface": "銀杏返し", + "readging": "いちょうがえし", + "pos": "名詞", + "pn": -0.387711 + }, + { + "surface": "雄蝶雌蝶", + "readging": "おちょうめちょう", + "pos": "名詞", + "pn": -0.387719 + }, + { + "surface": "滅相", + "readging": "めっそう", + "pos": "名詞", + "pn": -0.387735 + }, + { + "surface": "肺魚", + "readging": "はいぎょ", + "pos": "名詞", + "pn": -0.387744 + }, + { + "surface": "忍術", + "readging": "にんじゅつ", + "pos": "名詞", + "pn": -0.387755 + }, + { + "surface": "白熊", + "readging": "しろくま", + "pos": "名詞", + "pn": -0.387755 + }, + { + "surface": "痛感", + "readging": "つうかん", + "pos": "名詞", + "pn": -0.387825 + }, + { + "surface": "挑発", + "readging": "ちょうはつ", + "pos": "名詞", + "pn": -0.387834 + }, + { + "surface": "ごみ溜", + "readging": "ごみため", + "pos": "名詞", + "pn": -0.3879 + }, + { + "surface": "毒物", + "readging": "どくぶつ", + "pos": "名詞", + "pn": -0.387907 + }, + { + "surface": "すげ替える", + "readging": "すげかえる", + "pos": "動詞", + "pn": -0.387908 + }, + { + "surface": "世話物", + "readging": "せわもの", + "pos": "名詞", + "pn": -0.387932 + }, + { + "surface": "私益", + "readging": "しえき", + "pos": "名詞", + "pn": -0.387948 + }, + { + "surface": "陸封", + "readging": "りくふう", + "pos": "名詞", + "pn": -0.387966 + }, + { + "surface": "夜番", + "readging": "よばん", + "pos": "名詞", + "pn": -0.387979 + }, + { + "surface": "決付ける", + "readging": "きめつける", + "pos": "動詞", + "pn": -0.388044 + }, + { + "surface": "商", + "readging": "しょう", + "pos": "名詞", + "pn": -0.388045 + }, + { + "surface": "オーバー", + "readging": "オーバーローン", + "pos": "名詞", + "pn": -0.388051 + }, + { + "surface": "窓掛", + "readging": "まどかけ", + "pos": "名詞", + "pn": -0.388062 + }, + { + "surface": "院政", + "readging": "いんせい", + "pos": "名詞", + "pn": -0.388074 + }, + { + "surface": "装い", + "readging": "よそい", + "pos": "名詞", + "pn": -0.388113 + }, + { + "surface": "情", + "readging": "じょう", + "pos": "名詞", + "pn": -0.388118 + }, + { + "surface": "坪菫", + "readging": "つぼすみれ", + "pos": "名詞", + "pn": -0.388121 + }, + { + "surface": "暴慢", + "readging": "ぼうまん", + "pos": "名詞", + "pn": -0.388127 + }, + { + "surface": "実用", + "readging": "じつよう", + "pos": "名詞", + "pn": -0.38814 + }, + { + "surface": "限局", + "readging": "げんきょく", + "pos": "名詞", + "pn": -0.388141 + }, + { + "surface": "ピーマン", + "readging": "ピーマン", + "pos": "名詞", + "pn": -0.388171 + }, + { + "surface": "先制", + "readging": "せんせい", + "pos": "名詞", + "pn": -0.388199 + }, + { + "surface": "軍鶏", + "readging": "シャモ", + "pos": "名詞", + "pn": -0.388218 + }, + { + "surface": "鉄道網", + "readging": "てつどうもう", + "pos": "名詞", + "pn": -0.38822 + }, + { + "surface": "在来", + "readging": "ざいらい", + "pos": "名詞", + "pn": -0.388227 + }, + { + "surface": "蕪", + "readging": "かぶら", + "pos": "名詞", + "pn": -0.388241 + }, + { + "surface": "敬意", + "readging": "けいい", + "pos": "名詞", + "pn": -0.38825 + }, + { + "surface": "筋", + "readging": "きん", + "pos": "名詞", + "pn": -0.388258 + }, + { + "surface": "版画", + "readging": "はんが", + "pos": "名詞", + "pn": -0.388286 + }, + { + "surface": "統制", + "readging": "とうせい", + "pos": "名詞", + "pn": -0.388304 + }, + { + "surface": "吹降り", + "readging": "ふきぶり", + "pos": "名詞", + "pn": -0.388331 + }, + { + "surface": "じわりじわり", + "readging": "じわりじわり", + "pos": "副詞", + "pn": -0.388333 + }, + { + "surface": "目安箱", + "readging": "めやすばこ", + "pos": "名詞", + "pn": -0.38834 + }, + { + "surface": "押し切り帳", + "readging": "おしきりちょう", + "pos": "名詞", + "pn": -0.388347 + }, + { + "surface": "時無し", + "readging": "ときなし", + "pos": "名詞", + "pn": -0.388352 + }, + { + "surface": "下馬", + "readging": "げば", + "pos": "名詞", + "pn": -0.388355 + }, + { + "surface": "真桑瓜", + "readging": "まくわうり", + "pos": "名詞", + "pn": -0.388358 + }, + { + "surface": "制覇", + "readging": "せいは", + "pos": "名詞", + "pn": -0.388363 + }, + { + "surface": "仮借", + "readging": "かしゃ", + "pos": "名詞", + "pn": -0.388373 + }, + { + "surface": "触太鼓", + "readging": "ふれだいこ", + "pos": "名詞", + "pn": -0.388392 + }, + { + "surface": "催物", + "readging": "もよおしもの", + "pos": "名詞", + "pn": -0.388416 + }, + { + "surface": "蝦夷松", + "readging": "えぞまつ", + "pos": "名詞", + "pn": -0.388421 + }, + { + "surface": "クロロマイセチン", + "readging": "クロロマイセチン", + "pos": "名詞", + "pn": -0.388424 + }, + { + "surface": "星", + "readging": "せい", + "pos": "名詞", + "pn": -0.388437 + }, + { + "surface": "下肢", + "readging": "かし", + "pos": "名詞", + "pn": -0.38844 + }, + { + "surface": "再審", + "readging": "さいしん", + "pos": "名詞", + "pn": -0.388442 + }, + { + "surface": "抽出", + "readging": "ちゅうしゅつ", + "pos": "名詞", + "pn": -0.388447 + }, + { + "surface": "削除", + "readging": "さくじょ", + "pos": "名詞", + "pn": -0.388459 + }, + { + "surface": "気の毒", + "readging": "きのどく", + "pos": "名詞", + "pn": -0.388471 + }, + { + "surface": "比丘尼", + "readging": "びくに", + "pos": "名詞", + "pn": -0.388475 + }, + { + "surface": "吸筒", + "readging": "すいづつ", + "pos": "名詞", + "pn": -0.388482 + }, + { + "surface": "殻竿", + "readging": "からざお", + "pos": "名詞", + "pn": -0.388509 + }, + { + "surface": "突止める", + "readging": "つきとめる", + "pos": "動詞", + "pn": -0.388513 + }, + { + "surface": "カーバイド", + "readging": "カーバイド", + "pos": "名詞", + "pn": -0.388528 + }, + { + "surface": "古銭", + "readging": "こせん", + "pos": "名詞", + "pn": -0.388567 + }, + { + "surface": "回し者", + "readging": "まわしもの", + "pos": "名詞", + "pn": -0.388568 + }, + { + "surface": "五葉松", + "readging": "ごようまつ", + "pos": "名詞", + "pn": -0.388575 + }, + { + "surface": "意字", + "readging": "いじ", + "pos": "名詞", + "pn": -0.388575 + }, + { + "surface": "サルファ剤", + "readging": "サルファざい", + "pos": "名詞", + "pn": -0.388595 + }, + { + "surface": "節穴", + "readging": "ふしあな", + "pos": "名詞", + "pn": -0.388596 + }, + { + "surface": "田麩", + "readging": "でんぶ", + "pos": "名詞", + "pn": -0.388613 + }, + { + "surface": "角砂糖", + "readging": "かくざとう", + "pos": "名詞", + "pn": -0.388617 + }, + { + "surface": "性", + "readging": "せい", + "pos": "名詞", + "pn": -0.388637 + }, + { + "surface": "百分率", + "readging": "ひゃくぶんりつ", + "pos": "名詞", + "pn": -0.388714 + }, + { + "surface": "笑気", + "readging": "しょうき", + "pos": "名詞", + "pn": -0.388718 + }, + { + "surface": "割引", + "readging": "わりびき", + "pos": "名詞", + "pn": -0.388726 + }, + { + "surface": "植わる", + "readging": "うわる", + "pos": "動詞", + "pn": -0.388728 + }, + { + "surface": "雪害", + "readging": "せつがい", + "pos": "名詞", + "pn": -0.388753 + }, + { + "surface": "石榴鼻", + "readging": "ざくろばな", + "pos": "名詞", + "pn": -0.388763 + }, + { + "surface": "燭光", + "readging": "しょっこう", + "pos": "名詞", + "pn": -0.388789 + }, + { + "surface": "帝国主義", + "readging": "ていこくしゅぎ", + "pos": "名詞", + "pn": -0.38879 + }, + { + "surface": "製版", + "readging": "せいはん", + "pos": "名詞", + "pn": -0.388799 + }, + { + "surface": "ステータス", + "readging": "ステータスシンボル", + "pos": "名詞", + "pn": -0.388814 + }, + { + "surface": "幕下", + "readging": "ばっか", + "pos": "名詞", + "pn": -0.388816 + }, + { + "surface": "コンビナート", + "readging": "コンビナート", + "pos": "名詞", + "pn": -0.388864 + }, + { + "surface": "壊死", + "readging": "えし", + "pos": "名詞", + "pn": -0.388865 + }, + { + "surface": "毛", + "readging": "け", + "pos": "名詞", + "pn": -0.388878 + }, + { + "surface": "胎盤", + "readging": "たいばん", + "pos": "名詞", + "pn": -0.388885 + }, + { + "surface": "払拭", + "readging": "ふっしょく", + "pos": "名詞", + "pn": -0.388888 + }, + { + "surface": "遊君", + "readging": "ゆうくん", + "pos": "名詞", + "pn": -0.388915 + }, + { + "surface": "尨", + "readging": "むくいぬ", + "pos": "名詞", + "pn": -0.388918 + }, + { + "surface": "一閑張", + "readging": "いっかんばり", + "pos": "名詞", + "pn": -0.388919 + }, + { + "surface": "漁夫", + "readging": "ぎょふ", + "pos": "名詞", + "pn": -0.38894 + }, + { + "surface": "上膳据膳", + "readging": "あげぜんすえぜん", + "pos": "名詞", + "pn": -0.388943 + }, + { + "surface": "開け閉て", + "readging": "あけたて", + "pos": "名詞", + "pn": -0.388956 + }, + { + "surface": "ストレッチ", + "readging": "ストレッチ", + "pos": "名詞", + "pn": -0.388986 + }, + { + "surface": "どっかと", + "readging": "どっかと", + "pos": "副詞", + "pn": -0.389038 + }, + { + "surface": "電子出版", + "readging": "でんししゅっぱん", + "pos": "名詞", + "pn": -0.38904 + }, + { + "surface": "生産管理", + "readging": "せいさんかんり", + "pos": "名詞", + "pn": -0.389041 + }, + { + "surface": "成層圏", + "readging": "せいそうけん", + "pos": "名詞", + "pn": -0.389048 + }, + { + "surface": "航続力", + "readging": "こうぞくりょく", + "pos": "名詞", + "pn": -0.389058 + }, + { + "surface": "貴方任せ", + "readging": "あなたまかせ", + "pos": "名詞", + "pn": -0.389071 + }, + { + "surface": "花瓶", + "readging": "かびん", + "pos": "名詞", + "pn": -0.389073 + }, + { + "surface": "恭順", + "readging": "きょうじゅん", + "pos": "名詞", + "pn": -0.389086 + }, + { + "surface": "婚姻", + "readging": "こんいん", + "pos": "名詞", + "pn": -0.389104 + }, + { + "surface": "在役", + "readging": "ざいえき", + "pos": "名詞", + "pn": -0.389109 + }, + { + "surface": "マジック", + "readging": "マジック", + "pos": "名詞", + "pn": -0.389113 + }, + { + "surface": "宗旨", + "readging": "しゅうし", + "pos": "名詞", + "pn": -0.38912 + }, + { + "surface": "彩雲", + "readging": "さいうん", + "pos": "名詞", + "pn": -0.389121 + }, + { + "surface": "等温線", + "readging": "とうおんせん", + "pos": "名詞", + "pn": -0.389141 + }, + { + "surface": "実演", + "readging": "じつえん", + "pos": "名詞", + "pn": -0.389187 + }, + { + "surface": "底本", + "readging": "ていほん", + "pos": "名詞", + "pn": -0.389199 + }, + { + "surface": "訴追", + "readging": "そつい", + "pos": "名詞", + "pn": -0.389202 + }, + { + "surface": "剣道", + "readging": "けんどう", + "pos": "名詞", + "pn": -0.389229 + }, + { + "surface": "申上げる", + "readging": "もうしあげる", + "pos": "動詞", + "pn": -0.389231 + }, + { + "surface": "きっと", + "readging": "きっと", + "pos": "副詞", + "pn": -0.389244 + }, + { + "surface": "ハンドル", + "readging": "ハンドル", + "pos": "名詞", + "pn": -0.389251 + }, + { + "surface": "バドミントン", + "readging": "バドミントン", + "pos": "名詞", + "pn": -0.389295 + }, + { + "surface": "夜露", + "readging": "よつゆ", + "pos": "名詞", + "pn": -0.389314 + }, + { + "surface": "陪観", + "readging": "ばいかん", + "pos": "名詞", + "pn": -0.389329 + }, + { + "surface": "利札", + "readging": "りさつ", + "pos": "名詞", + "pn": -0.389333 + }, + { + "surface": "本道", + "readging": "ほんどう", + "pos": "名詞", + "pn": -0.389344 + }, + { + "surface": "思いなし", + "readging": "おもいなし", + "pos": "名詞", + "pn": -0.389351 + }, + { + "surface": "球戯", + "readging": "きゅうぎ", + "pos": "名詞", + "pn": -0.389353 + }, + { + "surface": "魚拓", + "readging": "ぎょたく", + "pos": "名詞", + "pn": -0.389389 + }, + { + "surface": "告文", + "readging": "こくぶん", + "pos": "名詞", + "pn": -0.389394 + }, + { + "surface": "補する", + "readging": "ほする", + "pos": "動詞", + "pn": -0.389395 + }, + { + "surface": "八人芸", + "readging": "はちにんげい", + "pos": "名詞", + "pn": -0.389423 + }, + { + "surface": "飛出す", + "readging": "とびだす", + "pos": "動詞", + "pn": -0.389432 + }, + { + "surface": "諸子", + "readging": "もろこ", + "pos": "名詞", + "pn": -0.389433 + }, + { + "surface": "裾野", + "readging": "すその", + "pos": "名詞", + "pn": -0.38944 + }, + { + "surface": "重言", + "readging": "じゅうげん", + "pos": "名詞", + "pn": -0.389446 + }, + { + "surface": "社団", + "readging": "しゃだん", + "pos": "名詞", + "pn": -0.389452 + }, + { + "surface": "鱗屑", + "readging": "りんせつ", + "pos": "名詞", + "pn": -0.389473 + }, + { + "surface": "売価", + "readging": "ばいか", + "pos": "名詞", + "pn": -0.389474 + }, + { + "surface": "枢軸", + "readging": "すうじく", + "pos": "名詞", + "pn": -0.389503 + }, + { + "surface": "僭越", + "readging": "せんえつ", + "pos": "名詞", + "pn": -0.389504 + }, + { + "surface": "刀圭家", + "readging": "とうけいか", + "pos": "名詞", + "pn": -0.38952 + }, + { + "surface": "仮作", + "readging": "かさく", + "pos": "名詞", + "pn": -0.389526 + }, + { + "surface": "接触", + "readging": "せっしょく", + "pos": "名詞", + "pn": -0.38953 + }, + { + "surface": "暗中模索", + "readging": "あんちゅうもさく", + "pos": "名詞", + "pn": -0.389538 + }, + { + "surface": "噛締める", + "readging": "かみしめる", + "pos": "動詞", + "pn": -0.389547 + }, + { + "surface": "書評", + "readging": "しょひょう", + "pos": "名詞", + "pn": -0.38955 + }, + { + "surface": "人権", + "readging": "じんけん", + "pos": "名詞", + "pn": -0.389551 + }, + { + "surface": "新地", + "readging": "しんち", + "pos": "名詞", + "pn": -0.389573 + }, + { + "surface": "立ちん坊", + "readging": "たちんぼう", + "pos": "名詞", + "pn": -0.389576 + }, + { + "surface": "エゴ", + "readging": "エゴ", + "pos": "名詞", + "pn": -0.389608 + }, + { + "surface": "阿弥陀籤", + "readging": "あみだくじ", + "pos": "名詞", + "pn": -0.38964 + }, + { + "surface": "期する", + "readging": "ごする", + "pos": "動詞", + "pn": -0.389642 + }, + { + "surface": "透き通る", + "readging": "すきとおる", + "pos": "動詞", + "pn": -0.389649 + }, + { + "surface": "草案", + "readging": "そうあん", + "pos": "名詞", + "pn": -0.389672 + }, + { + "surface": "割書き", + "readging": "わりがき", + "pos": "名詞", + "pn": -0.389673 + }, + { + "surface": "ポロ", + "readging": "ポロ", + "pos": "名詞", + "pn": -0.38968 + }, + { + "surface": "偽書", + "readging": "ぎしょ", + "pos": "名詞", + "pn": -0.389708 + }, + { + "surface": "定着", + "readging": "ていちゃく", + "pos": "名詞", + "pn": -0.389717 + }, + { + "surface": "統治", + "readging": "とうち", + "pos": "名詞", + "pn": -0.389726 + }, + { + "surface": "ポンチ", + "readging": "ポンチ", + "pos": "名詞", + "pn": -0.389757 + }, + { + "surface": "多分", + "readging": "たぶん", + "pos": "名詞", + "pn": -0.389782 + }, + { + "surface": "作男", + "readging": "さくおとこ", + "pos": "名詞", + "pn": -0.389798 + }, + { + "surface": "ドレス", + "readging": "ドレスメーカー", + "pos": "名詞", + "pn": -0.389803 + }, + { + "surface": "極極", + "readging": "ごくごく", + "pos": "副詞", + "pn": -0.389804 + }, + { + "surface": "草原", + "readging": "そうげん", + "pos": "名詞", + "pn": -0.389812 + }, + { + "surface": "塗擦", + "readging": "とさつ", + "pos": "名詞", + "pn": -0.389819 + }, + { + "surface": "蕾", + "readging": "つぼみ", + "pos": "名詞", + "pn": -0.389823 + }, + { + "surface": "打付ける", + "readging": "うちつける", + "pos": "動詞", + "pn": -0.389834 + }, + { + "surface": "お捻り", + "readging": "おひねり", + "pos": "名詞", + "pn": -0.389846 + }, + { + "surface": "語草", + "readging": "かたりぐさ", + "pos": "名詞", + "pn": -0.389871 + }, + { + "surface": "留錫", + "readging": "りゅうしゃく", + "pos": "名詞", + "pn": -0.389878 + }, + { + "surface": "短縮", + "readging": "たんしゅく", + "pos": "名詞", + "pn": -0.389898 + }, + { + "surface": "海路", + "readging": "かいろ", + "pos": "名詞", + "pn": -0.389899 + }, + { + "surface": "片貿易", + "readging": "かたぼうえき", + "pos": "名詞", + "pn": -0.389933 + }, + { + "surface": "若白髪", + "readging": "わかしらが", + "pos": "名詞", + "pn": -0.389935 + }, + { + "surface": "自宅", + "readging": "じたく", + "pos": "名詞", + "pn": -0.389943 + }, + { + "surface": "売手", + "readging": "うりて", + "pos": "名詞", + "pn": -0.389946 + }, + { + "surface": "人でなし", + "readging": "ひとでなし", + "pos": "名詞", + "pn": -0.389948 + }, + { + "surface": "未必の故意", + "readging": "みひつのこい", + "pos": "名詞", + "pn": -0.389949 + }, + { + "surface": "経理", + "readging": "けいり", + "pos": "名詞", + "pn": -0.38995 + }, + { + "surface": "酒癖", + "readging": "しゅへき", + "pos": "名詞", + "pn": -0.38996 + }, + { + "surface": "目白押し", + "readging": "めじろおし", + "pos": "名詞", + "pn": -0.389964 + }, + { + "surface": "櫓脚", + "readging": "ろあし", + "pos": "名詞", + "pn": -0.389968 + }, + { + "surface": "百鬼夜行", + "readging": "ひゃっきやこう", + "pos": "名詞", + "pn": -0.389996 + }, + { + "surface": "ピューマ", + "readging": "ピューマ", + "pos": "名詞", + "pn": -0.389998 + }, + { + "surface": "餌", + "readging": "え", + "pos": "名詞", + "pn": -0.390026 + }, + { + "surface": "グラタン", + "readging": "グラタン", + "pos": "名詞", + "pn": -0.390026 + }, + { + "surface": "荒蕪", + "readging": "こうぶ", + "pos": "名詞", + "pn": -0.390033 + }, + { + "surface": "号笛", + "readging": "ごうてき", + "pos": "名詞", + "pn": -0.390044 + }, + { + "surface": "怱忙", + "readging": "そうぼう", + "pos": "名詞", + "pn": -0.390053 + }, + { + "surface": "起居", + "readging": "ききょ", + "pos": "名詞", + "pn": -0.390064 + }, + { + "surface": "源平", + "readging": "げんぺい", + "pos": "名詞", + "pn": -0.390086 + }, + { + "surface": "財物", + "readging": "ざいもつ", + "pos": "名詞", + "pn": -0.390108 + }, + { + "surface": "早期", + "readging": "そうき", + "pos": "名詞", + "pn": -0.390111 + }, + { + "surface": "渾身", + "readging": "こんしん", + "pos": "名詞", + "pn": -0.390149 + }, + { + "surface": "獣肉", + "readging": "じゅうにく", + "pos": "名詞", + "pn": -0.39015 + }, + { + "surface": "結界", + "readging": "けっかい", + "pos": "名詞", + "pn": -0.39017 + }, + { + "surface": "防塞", + "readging": "ぼうさい", + "pos": "名詞", + "pn": -0.390192 + }, + { + "surface": "背信", + "readging": "はいしん", + "pos": "名詞", + "pn": -0.390194 + }, + { + "surface": "集魚灯", + "readging": "しゅうぎょとう", + "pos": "名詞", + "pn": -0.390196 + }, + { + "surface": "伝書", + "readging": "でんしょ", + "pos": "名詞", + "pn": -0.390211 + }, + { + "surface": "阿吽", + "readging": "あうん", + "pos": "名詞", + "pn": -0.390224 + }, + { + "surface": "辛夷", + "readging": "こぶし", + "pos": "名詞", + "pn": -0.39025 + }, + { + "surface": "沸点", + "readging": "ふってん", + "pos": "名詞", + "pn": -0.39027 + }, + { + "surface": "糸巻", + "readging": "いとまき", + "pos": "名詞", + "pn": -0.390274 + }, + { + "surface": "有機物", + "readging": "ゆうきぶつ", + "pos": "名詞", + "pn": -0.390284 + }, + { + "surface": "不惜身命", + "readging": "ふしゃくしんみょう", + "pos": "名詞", + "pn": -0.390316 + }, + { + "surface": "遊行", + "readging": "ゆうこう", + "pos": "名詞", + "pn": -0.390323 + }, + { + "surface": "便器", + "readging": "べんき", + "pos": "名詞", + "pn": -0.390327 + }, + { + "surface": "許し", + "readging": "ゆるし", + "pos": "名詞", + "pn": -0.390354 + }, + { + "surface": "揚屋", + "readging": "あげや", + "pos": "名詞", + "pn": -0.390361 + }, + { + "surface": "簡潔", + "readging": "かんけつ", + "pos": "名詞", + "pn": -0.390362 + }, + { + "surface": "けしかける", + "readging": "けしかける", + "pos": "動詞", + "pn": -0.390416 + }, + { + "surface": "六方", + "readging": "ろっぽう", + "pos": "名詞", + "pn": -0.390426 + }, + { + "surface": "木賃宿", + "readging": "きちんやど", + "pos": "名詞", + "pn": -0.390491 + }, + { + "surface": "シンナー", + "readging": "シンナー", + "pos": "名詞", + "pn": -0.390492 + }, + { + "surface": "昇段", + "readging": "しょうだん", + "pos": "名詞", + "pn": -0.390508 + }, + { + "surface": "細流", + "readging": "さいりゅう", + "pos": "名詞", + "pn": -0.390526 + }, + { + "surface": "飲料", + "readging": "いんりょう", + "pos": "名詞", + "pn": -0.390538 + }, + { + "surface": "苦爪楽髪", + "readging": "くづめらくがみ", + "pos": "名詞", + "pn": -0.390542 + }, + { + "surface": "願", + "readging": "ねがい", + "pos": "名詞", + "pn": -0.390547 + }, + { + "surface": "頒布", + "readging": "はんぷ", + "pos": "名詞", + "pn": -0.390562 + }, + { + "surface": "吹出す", + "readging": "ふきだす", + "pos": "動詞", + "pn": -0.390564 + }, + { + "surface": "柏手", + "readging": "かしわで", + "pos": "名詞", + "pn": -0.390571 + }, + { + "surface": "痛み分け", + "readging": "いたみわけ", + "pos": "名詞", + "pn": -0.390574 + }, + { + "surface": "水酸化", + "readging": "すいさんか", + "pos": "名詞", + "pn": -0.390578 + }, + { + "surface": "百分比", + "readging": "ひゃくぶんひ", + "pos": "名詞", + "pn": -0.390585 + }, + { + "surface": "再挙", + "readging": "さいきょ", + "pos": "名詞", + "pn": -0.390623 + }, + { + "surface": "万作", + "readging": "まんさく", + "pos": "名詞", + "pn": -0.390629 + }, + { + "surface": "雅号", + "readging": "がごう", + "pos": "名詞", + "pn": -0.390631 + }, + { + "surface": "訃音", + "readging": "ふいん", + "pos": "名詞", + "pn": -0.390632 + }, + { + "surface": "よいよい", + "readging": "よいよい", + "pos": "名詞", + "pn": -0.390643 + }, + { + "surface": "唐子", + "readging": "からこ", + "pos": "名詞", + "pn": -0.390649 + }, + { + "surface": "貫目", + "readging": "かんめ", + "pos": "名詞", + "pn": -0.390652 + }, + { + "surface": "取零す", + "readging": "とりこぼす", + "pos": "動詞", + "pn": -0.390668 + }, + { + "surface": "実記", + "readging": "じっき", + "pos": "名詞", + "pn": -0.390674 + }, + { + "surface": "初舞台", + "readging": "はつぶたい", + "pos": "名詞", + "pn": -0.390689 + }, + { + "surface": "通牒", + "readging": "つうちょう", + "pos": "名詞", + "pn": -0.39069 + }, + { + "surface": "西", + "readging": "せい", + "pos": "名詞", + "pn": -0.390691 + }, + { + "surface": "韮", + "readging": "にら", + "pos": "名詞", + "pn": -0.390732 + }, + { + "surface": "建言", + "readging": "けんげん", + "pos": "名詞", + "pn": -0.39077 + }, + { + "surface": "伝う", + "readging": "つたう", + "pos": "動詞", + "pn": -0.390772 + }, + { + "surface": "借方", + "readging": "かりかた", + "pos": "名詞", + "pn": -0.39078 + }, + { + "surface": "空売", + "readging": "からうり", + "pos": "名詞", + "pn": -0.390785 + }, + { + "surface": "岩茸", + "readging": "いわたけ", + "pos": "名詞", + "pn": -0.390788 + }, + { + "surface": "フラ ダンス", + "readging": "フラ ダンス", + "pos": "名詞", + "pn": -0.390791 + }, + { + "surface": "サルベージ", + "readging": "サルベージ", + "pos": "名詞", + "pn": -0.390807 + }, + { + "surface": "講ずる", + "readging": "こうずる", + "pos": "動詞", + "pn": -0.390825 + }, + { + "surface": "敵手", + "readging": "てきしゅ", + "pos": "名詞", + "pn": -0.390827 + }, + { + "surface": "万灯", + "readging": "まんどう", + "pos": "名詞", + "pn": -0.390846 + }, + { + "surface": "針小棒大", + "readging": "しんしょうぼうだい", + "pos": "名詞", + "pn": -0.390858 + }, + { + "surface": "流露", + "readging": "りゅうろ", + "pos": "名詞", + "pn": -0.390859 + }, + { + "surface": "ドクター", + "readging": "ドクター", + "pos": "名詞", + "pn": -0.390902 + }, + { + "surface": "表土", + "readging": "ひょうど", + "pos": "名詞", + "pn": -0.390911 + }, + { + "surface": "屯田", + "readging": "とんでん", + "pos": "名詞", + "pn": -0.390917 + }, + { + "surface": "空港", + "readging": "くうこう", + "pos": "名詞", + "pn": -0.390932 + }, + { + "surface": "遊説", + "readging": "ゆうぜい", + "pos": "名詞", + "pn": -0.390937 + }, + { + "surface": "持戒", + "readging": "じかい", + "pos": "名詞", + "pn": -0.390971 + }, + { + "surface": "イデア", + "readging": "イデア", + "pos": "名詞", + "pn": -0.390978 + }, + { + "surface": "生い茂る", + "readging": "おいしげる", + "pos": "動詞", + "pn": -0.390979 + }, + { + "surface": "プレミアム", + "readging": "プレミアム", + "pos": "名詞", + "pn": -0.390986 + }, + { + "surface": "被布", + "readging": "ひふ", + "pos": "名詞", + "pn": -0.390992 + }, + { + "surface": "ロータリー", + "readging": "ロータリー", + "pos": "名詞", + "pn": -0.391003 + }, + { + "surface": "仲人口", + "readging": "なこうど", + "pos": "名詞", + "pn": -0.391021 + }, + { + "surface": "奢侈", + "readging": "しゃし", + "pos": "名詞", + "pn": -0.391047 + }, + { + "surface": "パニック", + "readging": "パニック", + "pos": "名詞", + "pn": -0.391054 + }, + { + "surface": "蚊蜻蛉", + "readging": "かとんぼ", + "pos": "名詞", + "pn": -0.391111 + }, + { + "surface": "坂道", + "readging": "さかみち", + "pos": "名詞", + "pn": -0.391115 + }, + { + "surface": "吸着", + "readging": "きゅうちゃく", + "pos": "名詞", + "pn": -0.391118 + }, + { + "surface": "バレー", + "readging": "バレーボール", + "pos": "名詞", + "pn": -0.391121 + }, + { + "surface": "形式化", + "readging": "けいしきか", + "pos": "名詞", + "pn": -0.391129 + }, + { + "surface": "雨脚", + "readging": "あまあし", + "pos": "名詞", + "pn": -0.391154 + }, + { + "surface": "唐紙", + "readging": "からかみ", + "pos": "名詞", + "pn": -0.391179 + }, + { + "surface": "卜者", + "readging": "ぼくしゃ", + "pos": "名詞", + "pn": -0.391182 + }, + { + "surface": "花蘇芳", + "readging": "はなずおう", + "pos": "名詞", + "pn": -0.391204 + }, + { + "surface": "奉ずる", + "readging": "ほうずる", + "pos": "動詞", + "pn": -0.391205 + }, + { + "surface": "俄盲", + "readging": "にわかめくら", + "pos": "名詞", + "pn": -0.391217 + }, + { + "surface": "氏族", + "readging": "しぞく", + "pos": "名詞", + "pn": -0.391222 + }, + { + "surface": "開幕", + "readging": "かいまく", + "pos": "名詞", + "pn": -0.391225 + }, + { + "surface": "妖花", + "readging": "ようか", + "pos": "名詞", + "pn": -0.391232 + }, + { + "surface": "補償", + "readging": "ほしょう", + "pos": "名詞", + "pn": -0.391247 + }, + { + "surface": "図嚢", + "readging": "ずのう", + "pos": "名詞", + "pn": -0.391296 + }, + { + "surface": "定価", + "readging": "ていか", + "pos": "名詞", + "pn": -0.391315 + }, + { + "surface": "力点", + "readging": "りきてん", + "pos": "名詞", + "pn": -0.391354 + }, + { + "surface": "色分け", + "readging": "いろわけ", + "pos": "名詞", + "pn": -0.391361 + }, + { + "surface": "根こぎ", + "readging": "ねこぎ", + "pos": "名詞", + "pn": -0.391391 + }, + { + "surface": "東", + "readging": "とう", + "pos": "名詞", + "pn": -0.391429 + }, + { + "surface": "差配", + "readging": "さはい", + "pos": "名詞", + "pn": -0.391447 + }, + { + "surface": "塚穴", + "readging": "つかあな", + "pos": "名詞", + "pn": -0.39147 + }, + { + "surface": "五公五民", + "readging": "ごこうごみん", + "pos": "名詞", + "pn": -0.391474 + }, + { + "surface": "仕業", + "readging": "しわざ", + "pos": "名詞", + "pn": -0.391483 + }, + { + "surface": "雲斎", + "readging": "うんさい", + "pos": "名詞", + "pn": -0.391488 + }, + { + "surface": "生子板", + "readging": "なまこいた", + "pos": "名詞", + "pn": -0.391488 + }, + { + "surface": "万一", + "readging": "まんいち", + "pos": "名詞", + "pn": -0.39149 + }, + { + "surface": "熱心", + "readging": "ねっしん", + "pos": "名詞", + "pn": -0.391492 + }, + { + "surface": "老後", + "readging": "ろうご", + "pos": "名詞", + "pn": -0.391493 + }, + { + "surface": "真後ろ", + "readging": "まうしろ", + "pos": "名詞", + "pn": -0.391505 + }, + { + "surface": "台", + "readging": "うてな", + "pos": "名詞", + "pn": -0.391508 + }, + { + "surface": "粗衣", + "readging": "そい", + "pos": "名詞", + "pn": -0.391514 + }, + { + "surface": "丘", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.391519 + }, + { + "surface": "大円", + "readging": "だいえん", + "pos": "名詞", + "pn": -0.391531 + }, + { + "surface": "カスタム", + "readging": "カスタム", + "pos": "名詞", + "pn": -0.391559 + }, + { + "surface": "先行", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.39157 + }, + { + "surface": "序", + "readging": "ついで", + "pos": "名詞", + "pn": -0.391572 + }, + { + "surface": "実証", + "readging": "じっしょう", + "pos": "名詞", + "pn": -0.391601 + }, + { + "surface": "試運転", + "readging": "しうんてん", + "pos": "名詞", + "pn": -0.391618 + }, + { + "surface": "客人", + "readging": "きゃくじん", + "pos": "名詞", + "pn": -0.391623 + }, + { + "surface": "為替管理", + "readging": "かわせ", + "pos": "名詞", + "pn": -0.391643 + }, + { + "surface": "ハヤシ ライス", + "readging": "ハヤシ ライス", + "pos": "名詞", + "pn": -0.391643 + }, + { + "surface": "赤裸", + "readging": "あかはだか", + "pos": "名詞", + "pn": -0.391669 + }, + { + "surface": "菩提心", + "readging": "ぼだいしん", + "pos": "名詞", + "pn": -0.391711 + }, + { + "surface": "我", + "readging": "が", + "pos": "名詞", + "pn": -0.391712 + }, + { + "surface": "即時", + "readging": "そくじ", + "pos": "名詞", + "pn": -0.391739 + }, + { + "surface": "カンナ", + "readging": "カンナ", + "pos": "名詞", + "pn": -0.391748 + }, + { + "surface": "エアロビクス", + "readging": "エアロビクス", + "pos": "名詞", + "pn": -0.391755 + }, + { + "surface": "灯標", + "readging": "とうひょう", + "pos": "名詞", + "pn": -0.391789 + }, + { + "surface": "ラベンダー", + "readging": "ラベンダー", + "pos": "名詞", + "pn": -0.391812 + }, + { + "surface": "アルバム", + "readging": "アルバム", + "pos": "名詞", + "pn": -0.391832 + }, + { + "surface": "仲間内", + "readging": "なかまうち", + "pos": "名詞", + "pn": -0.391844 + }, + { + "surface": "回報", + "readging": "かいほう", + "pos": "名詞", + "pn": -0.391851 + }, + { + "surface": "風紋", + "readging": "ふうもん", + "pos": "名詞", + "pn": -0.391854 + }, + { + "surface": "節目", + "readging": "ふしめ", + "pos": "名詞", + "pn": -0.391866 + }, + { + "surface": "山雀", + "readging": "やまがら", + "pos": "名詞", + "pn": -0.391869 + }, + { + "surface": "チーム", + "readging": "チーム", + "pos": "名詞", + "pn": -0.391872 + }, + { + "surface": "額縁", + "readging": "がくぶち", + "pos": "名詞", + "pn": -0.391881 + }, + { + "surface": "ジュース", + "readging": "ジュース", + "pos": "名詞", + "pn": -0.391884 + }, + { + "surface": "拾得", + "readging": "しゅうとく", + "pos": "名詞", + "pn": -0.391925 + }, + { + "surface": "船足", + "readging": "ふなあし", + "pos": "名詞", + "pn": -0.39194 + }, + { + "surface": "燗", + "readging": "かん", + "pos": "名詞", + "pn": -0.391962 + }, + { + "surface": "さては", + "readging": "さては", + "pos": "副詞", + "pn": -0.391963 + }, + { + "surface": "去来", + "readging": "きょらい", + "pos": "名詞", + "pn": -0.391963 + }, + { + "surface": "ニュース", + "readging": "ニュースバリュー", + "pos": "名詞", + "pn": -0.391963 + }, + { + "surface": "競馬", + "readging": "けいば", + "pos": "名詞", + "pn": -0.391964 + }, + { + "surface": "懐剣", + "readging": "かいけん", + "pos": "名詞", + "pn": -0.391966 + }, + { + "surface": "CPU", + "readging": "シーピーユー", + "pos": "名詞", + "pn": -0.391967 + }, + { + "surface": "蝋石", + "readging": "ろうせき", + "pos": "名詞", + "pn": -0.391976 + }, + { + "surface": "入海", + "readging": "いりうみ", + "pos": "名詞", + "pn": -0.392025 + }, + { + "surface": "脚注", + "readging": "きゃくちゅう", + "pos": "名詞", + "pn": -0.392026 + }, + { + "surface": "本屋", + "readging": "ほんや", + "pos": "名詞", + "pn": -0.392031 + }, + { + "surface": "サイレン", + "readging": "サイレン", + "pos": "名詞", + "pn": -0.392047 + }, + { + "surface": "総締め", + "readging": "そうじめ", + "pos": "名詞", + "pn": -0.39208 + }, + { + "surface": "言返す", + "readging": "いいかえす", + "pos": "動詞", + "pn": -0.392083 + }, + { + "surface": "傍点", + "readging": "ぼうてん", + "pos": "名詞", + "pn": -0.392084 + }, + { + "surface": "二上り", + "readging": "にあがり", + "pos": "名詞", + "pn": -0.392096 + }, + { + "surface": "ハーフ", + "readging": "ハーフタイム", + "pos": "名詞", + "pn": -0.392098 + }, + { + "surface": "話法", + "readging": "わほう", + "pos": "名詞", + "pn": -0.392108 + }, + { + "surface": "燐鉱", + "readging": "りんこう", + "pos": "名詞", + "pn": -0.392116 + }, + { + "surface": "すらすら", + "readging": "すらすら", + "pos": "副詞", + "pn": -0.392117 + }, + { + "surface": "増", + "readging": "ぞう", + "pos": "名詞", + "pn": -0.392126 + }, + { + "surface": "早鐘", + "readging": "はやがね", + "pos": "名詞", + "pn": -0.392151 + }, + { + "surface": "賑わわす", + "readging": "にぎわわす", + "pos": "動詞", + "pn": -0.392159 + }, + { + "surface": "ぱらぱら", + "readging": "ぱらぱら", + "pos": "副詞", + "pn": -0.392167 + }, + { + "surface": "仙女", + "readging": "せんにょ", + "pos": "名詞", + "pn": -0.39217 + }, + { + "surface": "警察官", + "readging": "けいさつかん", + "pos": "名詞", + "pn": -0.392186 + }, + { + "surface": "絶頂", + "readging": "ぜっちょう", + "pos": "名詞", + "pn": -0.39219 + }, + { + "surface": "数珠", + "readging": "じゅず", + "pos": "名詞", + "pn": -0.392195 + }, + { + "surface": "特攻隊", + "readging": "とっこうたい", + "pos": "名詞", + "pn": -0.392201 + }, + { + "surface": "容疑者", + "readging": "ようぎしゃ", + "pos": "名詞", + "pn": -0.392206 + }, + { + "surface": "からきし", + "readging": "からきし", + "pos": "副詞", + "pn": -0.392222 + }, + { + "surface": "反論", + "readging": "はんろん", + "pos": "名詞", + "pn": -0.392227 + }, + { + "surface": "ひじき", + "readging": "ひじき", + "pos": "名詞", + "pn": -0.392231 + }, + { + "surface": "乗換", + "readging": "のりかえ", + "pos": "名詞", + "pn": -0.392241 + }, + { + "surface": "ジオプトリー", + "readging": "ジオプトリー", + "pos": "名詞", + "pn": -0.392243 + }, + { + "surface": "取逃す", + "readging": "とりにがす", + "pos": "動詞", + "pn": -0.392246 + }, + { + "surface": "荷造", + "readging": "にづくり", + "pos": "名詞", + "pn": -0.392247 + }, + { + "surface": "根絶やし", + "readging": "ねだやし", + "pos": "名詞", + "pn": -0.392255 + }, + { + "surface": "タンゴ", + "readging": "タンゴ", + "pos": "名詞", + "pn": -0.392258 + }, + { + "surface": "曲木細工", + "readging": "まげきざいく", + "pos": "名詞", + "pn": -0.392268 + }, + { + "surface": "ボブスレー", + "readging": "ボブスレー", + "pos": "名詞", + "pn": -0.392268 + }, + { + "surface": "神憑り", + "readging": "かみがかり", + "pos": "名詞", + "pn": -0.392268 + }, + { + "surface": "モーニング", + "readging": "モーニングコート", + "pos": "名詞", + "pn": -0.392271 + }, + { + "surface": "応え", + "readging": "いらえ", + "pos": "名詞", + "pn": -0.39229 + }, + { + "surface": "伴天連", + "readging": "バテレン", + "pos": "名詞", + "pn": -0.392295 + }, + { + "surface": "承る", + "readging": "うけたまわる", + "pos": "動詞", + "pn": -0.392295 + }, + { + "surface": "幌", + "readging": "ほろ", + "pos": "名詞", + "pn": -0.3923 + }, + { + "surface": "王手", + "readging": "おうて", + "pos": "名詞", + "pn": -0.392308 + }, + { + "surface": "煮詰る", + "readging": "につまる", + "pos": "動詞", + "pn": -0.392322 + }, + { + "surface": "コンテナー", + "readging": "コンテナー", + "pos": "名詞", + "pn": -0.392324 + }, + { + "surface": "訃報", + "readging": "ふほう", + "pos": "名詞", + "pn": -0.392336 + }, + { + "surface": "奴婢", + "readging": "どひ", + "pos": "名詞", + "pn": -0.392347 + }, + { + "surface": "型置き", + "readging": "かたおき", + "pos": "名詞", + "pn": -0.39235 + }, + { + "surface": "余得", + "readging": "よとく", + "pos": "名詞", + "pn": -0.392353 + }, + { + "surface": "家主", + "readging": "やぬし", + "pos": "名詞", + "pn": -0.392367 + }, + { + "surface": "錯雑", + "readging": "さくざつ", + "pos": "名詞", + "pn": -0.392368 + }, + { + "surface": "遍", + "readging": "へん", + "pos": "名詞", + "pn": -0.392391 + }, + { + "surface": "提出", + "readging": "ていしゅつ", + "pos": "名詞", + "pn": -0.392426 + }, + { + "surface": "太子", + "readging": "たいし", + "pos": "名詞", + "pn": -0.392427 + }, + { + "surface": "丁稚", + "readging": "でっち", + "pos": "名詞", + "pn": -0.392445 + }, + { + "surface": "交信", + "readging": "こうしん", + "pos": "名詞", + "pn": -0.392455 + }, + { + "surface": "本社", + "readging": "ほんしゃ", + "pos": "名詞", + "pn": -0.392477 + }, + { + "surface": "性能", + "readging": "せいのう", + "pos": "名詞", + "pn": -0.392485 + }, + { + "surface": "徳俵", + "readging": "とくだわら", + "pos": "名詞", + "pn": -0.392511 + }, + { + "surface": "努力", + "readging": "どりょく", + "pos": "名詞", + "pn": -0.39252 + }, + { + "surface": "亭主", + "readging": "ていしゅ", + "pos": "名詞", + "pn": -0.392526 + }, + { + "surface": "私意", + "readging": "しい", + "pos": "名詞", + "pn": -0.39253 + }, + { + "surface": "人面獣心", + "readging": "にんめんじゅうしん", + "pos": "名詞", + "pn": -0.392552 + }, + { + "surface": "硬調", + "readging": "こうちょう", + "pos": "名詞", + "pn": -0.392556 + }, + { + "surface": "向後", + "readging": "こうご", + "pos": "名詞", + "pn": -0.392558 + }, + { + "surface": "読点", + "readging": "とうてん", + "pos": "名詞", + "pn": -0.392565 + }, + { + "surface": "穢土", + "readging": "えど", + "pos": "名詞", + "pn": -0.392578 + }, + { + "surface": "襲歩", + "readging": "しゅうほ", + "pos": "名詞", + "pn": -0.392612 + }, + { + "surface": "和音", + "readging": "わおん", + "pos": "名詞", + "pn": -0.392614 + }, + { + "surface": "平素", + "readging": "へいそ", + "pos": "名詞", + "pn": -0.39262 + }, + { + "surface": "借財", + "readging": "しゃくざい", + "pos": "名詞", + "pn": -0.392627 + }, + { + "surface": "お菜", + "readging": "おさい", + "pos": "名詞", + "pn": -0.392636 + }, + { + "surface": "他物", + "readging": "たぶつ", + "pos": "名詞", + "pn": -0.392651 + }, + { + "surface": "珪素", + "readging": "けいそ", + "pos": "名詞", + "pn": -0.392654 + }, + { + "surface": "体技", + "readging": "たいぎ", + "pos": "名詞", + "pn": -0.392661 + }, + { + "surface": "水瀉", + "readging": "すいしゃ", + "pos": "名詞", + "pn": -0.392683 + }, + { + "surface": "社", + "readging": "やしろ", + "pos": "名詞", + "pn": -0.392714 + }, + { + "surface": "弾幕", + "readging": "だんまく", + "pos": "名詞", + "pn": -0.392727 + }, + { + "surface": "毛嫌い", + "readging": "けぎらい", + "pos": "名詞", + "pn": -0.392774 + }, + { + "surface": "自伝", + "readging": "じでん", + "pos": "名詞", + "pn": -0.392775 + }, + { + "surface": "旅費", + "readging": "りょひ", + "pos": "名詞", + "pn": -0.392795 + }, + { + "surface": "お側", + "readging": "おそば", + "pos": "名詞", + "pn": -0.392801 + }, + { + "surface": "駆集める", + "readging": "かりあつめる", + "pos": "動詞", + "pn": -0.392828 + }, + { + "surface": "クローバー", + "readging": "クローバー", + "pos": "名詞", + "pn": -0.392833 + }, + { + "surface": "先祖", + "readging": "せんぞ", + "pos": "名詞", + "pn": -0.392838 + }, + { + "surface": "下流", + "readging": "かりゅう", + "pos": "名詞", + "pn": -0.392841 + }, + { + "surface": "権限", + "readging": "けんげん", + "pos": "名詞", + "pn": -0.392849 + }, + { + "surface": "衝天", + "readging": "しょうてん", + "pos": "名詞", + "pn": -0.392868 + }, + { + "surface": "寝違える", + "readging": "ねちがえる", + "pos": "動詞", + "pn": -0.392871 + }, + { + "surface": "決裁", + "readging": "けっさい", + "pos": "名詞", + "pn": -0.392873 + }, + { + "surface": "分岐点", + "readging": "ぶんきてん", + "pos": "名詞", + "pn": -0.392881 + }, + { + "surface": "空回り", + "readging": "からまわり", + "pos": "名詞", + "pn": -0.392885 + }, + { + "surface": "瓔珞", + "readging": "ようらく", + "pos": "名詞", + "pn": -0.392917 + }, + { + "surface": "黒幕", + "readging": "くろまく", + "pos": "名詞", + "pn": -0.392943 + }, + { + "surface": "席巻", + "readging": "せっけん", + "pos": "名詞", + "pn": -0.392944 + }, + { + "surface": "密入国", + "readging": "みつにゅうこく", + "pos": "名詞", + "pn": -0.392951 + }, + { + "surface": "天運", + "readging": "てんうん", + "pos": "名詞", + "pn": -0.39297 + }, + { + "surface": "手無し", + "readging": "てなし", + "pos": "名詞", + "pn": -0.392992 + }, + { + "surface": "一葉", + "readging": "いちよう", + "pos": "名詞", + "pn": -0.393002 + }, + { + "surface": "傍系", + "readging": "ぼうけい", + "pos": "名詞", + "pn": -0.393009 + }, + { + "surface": "九重", + "readging": "ここのえ", + "pos": "名詞", + "pn": -0.393011 + }, + { + "surface": "遅蒔き", + "readging": "おそまき", + "pos": "名詞", + "pn": -0.393014 + }, + { + "surface": "硝煙弾雨", + "readging": "しょうえんだんう", + "pos": "名詞", + "pn": -0.393026 + }, + { + "surface": "舌代", + "readging": "ぜつだい", + "pos": "名詞", + "pn": -0.393031 + }, + { + "surface": "鯨鬚", + "readging": "くじらひげ", + "pos": "名詞", + "pn": -0.393073 + }, + { + "surface": "豪遊", + "readging": "ごうゆう", + "pos": "名詞", + "pn": -0.393079 + }, + { + "surface": "背嚢", + "readging": "はいのう", + "pos": "名詞", + "pn": -0.393095 + }, + { + "surface": "持って来る", + "readging": "もってくる", + "pos": "動詞", + "pn": -0.393096 + }, + { + "surface": "水増し", + "readging": "みずまし", + "pos": "名詞", + "pn": -0.393113 + }, + { + "surface": "電熱", + "readging": "でんねつ", + "pos": "名詞", + "pn": -0.393113 + }, + { + "surface": "接吻", + "readging": "せっぷん", + "pos": "名詞", + "pn": -0.393126 + }, + { + "surface": "返札", + "readging": "へんさつ", + "pos": "名詞", + "pn": -0.393156 + }, + { + "surface": "軸受", + "readging": "じくうけ", + "pos": "名詞", + "pn": -0.393171 + }, + { + "surface": "盗用", + "readging": "とうよう", + "pos": "名詞", + "pn": -0.393183 + }, + { + "surface": "車海老", + "readging": "くるまえび", + "pos": "名詞", + "pn": -0.393212 + }, + { + "surface": "四海", + "readging": "しかい", + "pos": "名詞", + "pn": -0.393227 + }, + { + "surface": "尻切れ蜻蛉", + "readging": "しりきれとんぼ", + "pos": "名詞", + "pn": -0.393233 + }, + { + "surface": "踏所", + "readging": "ふみど", + "pos": "名詞", + "pn": -0.39324 + }, + { + "surface": "交ざる", + "readging": "まざる", + "pos": "動詞", + "pn": -0.393278 + }, + { + "surface": "仕出し", + "readging": "しだし", + "pos": "名詞", + "pn": -0.393286 + }, + { + "surface": "明け暮れ", + "readging": "あけくれ", + "pos": "名詞", + "pn": -0.393291 + }, + { + "surface": "碑", + "readging": "いしぶみ", + "pos": "名詞", + "pn": -0.393294 + }, + { + "surface": "きゃっかん", + "readging": "きゃっかんテスト", + "pos": "名詞", + "pn": -0.393354 + }, + { + "surface": "沃地", + "readging": "よくち", + "pos": "名詞", + "pn": -0.393407 + }, + { + "surface": "四肢", + "readging": "しし", + "pos": "名詞", + "pn": -0.393408 + }, + { + "surface": "祖", + "readging": "そ", + "pos": "名詞", + "pn": -0.393422 + }, + { + "surface": "連日", + "readging": "れんじつ", + "pos": "名詞", + "pn": -0.393426 + }, + { + "surface": "禿", + "readging": "かむろ", + "pos": "名詞", + "pn": -0.393427 + }, + { + "surface": "勃起", + "readging": "ぼっき", + "pos": "名詞", + "pn": -0.393432 + }, + { + "surface": "納得", + "readging": "なっとく", + "pos": "名詞", + "pn": -0.393442 + }, + { + "surface": "字", + "readging": "あざ", + "pos": "名詞", + "pn": -0.393444 + }, + { + "surface": "産褥期", + "readging": "さんじょくき", + "pos": "名詞", + "pn": -0.393452 + }, + { + "surface": "山形", + "readging": "やまなり", + "pos": "名詞", + "pn": -0.393459 + }, + { + "surface": "交感神経", + "readging": "こうかんしんけい", + "pos": "名詞", + "pn": -0.393461 + }, + { + "surface": "僚友", + "readging": "りょうゆう", + "pos": "名詞", + "pn": -0.393489 + }, + { + "surface": "カクテル", + "readging": "カクテル", + "pos": "名詞", + "pn": -0.393506 + }, + { + "surface": "実生", + "readging": "みしょう", + "pos": "名詞", + "pn": -0.393513 + }, + { + "surface": "荒木田", + "readging": "あらきだ", + "pos": "名詞", + "pn": -0.393538 + }, + { + "surface": "溶媒", + "readging": "ようばい", + "pos": "名詞", + "pn": -0.393541 + }, + { + "surface": "街灯", + "readging": "がいとう", + "pos": "名詞", + "pn": -0.393548 + }, + { + "surface": "仕付け糸", + "readging": "しつけいと", + "pos": "名詞", + "pn": -0.393565 + }, + { + "surface": "桜吹雪", + "readging": "さくらふぶき", + "pos": "名詞", + "pn": -0.393566 + }, + { + "surface": "鼻翼", + "readging": "びよく", + "pos": "名詞", + "pn": -0.393572 + }, + { + "surface": "本読み", + "readging": "ほんよみ", + "pos": "名詞", + "pn": -0.393573 + }, + { + "surface": "葬送", + "readging": "そうそう", + "pos": "名詞", + "pn": -0.393615 + }, + { + "surface": "怒気", + "readging": "どき", + "pos": "名詞", + "pn": -0.39363 + }, + { + "surface": "手並", + "readging": "てなみ", + "pos": "名詞", + "pn": -0.39363 + }, + { + "surface": "香辛料", + "readging": "こうしんりょう", + "pos": "名詞", + "pn": -0.393636 + }, + { + "surface": "意匠", + "readging": "いしょう", + "pos": "名詞", + "pn": -0.393639 + }, + { + "surface": "煮え湯", + "readging": "にえゆ", + "pos": "名詞", + "pn": -0.393642 + }, + { + "surface": "段丘", + "readging": "だんきゅう", + "pos": "名詞", + "pn": -0.393656 + }, + { + "surface": "白檀", + "readging": "びゃくだん", + "pos": "名詞", + "pn": -0.393701 + }, + { + "surface": "辺境", + "readging": "へんきょう", + "pos": "名詞", + "pn": -0.393705 + }, + { + "surface": "肉粉", + "readging": "にくふん", + "pos": "名詞", + "pn": -0.393736 + }, + { + "surface": "放置", + "readging": "ほうち", + "pos": "名詞", + "pn": -0.39374 + }, + { + "surface": "ハモンド オルガン", + "readging": "ハモンド オルガン", + "pos": "名詞", + "pn": -0.393763 + }, + { + "surface": "交織", + "readging": "まぜおり", + "pos": "名詞", + "pn": -0.393778 + }, + { + "surface": "花骨牌", + "readging": "はなガルタ", + "pos": "名詞", + "pn": -0.393781 + }, + { + "surface": "車力", + "readging": "しゃりき", + "pos": "名詞", + "pn": -0.393784 + }, + { + "surface": "仮名書", + "readging": "かながき", + "pos": "名詞", + "pn": -0.3938 + }, + { + "surface": "砒酸", + "readging": "ひさん", + "pos": "名詞", + "pn": -0.393845 + }, + { + "surface": "捧持", + "readging": "ほうじ", + "pos": "名詞", + "pn": -0.393885 + }, + { + "surface": "門跡", + "readging": "もんぜき", + "pos": "名詞", + "pn": -0.393887 + }, + { + "surface": "引込み思案", + "readging": "ひっこみじあん", + "pos": "名詞", + "pn": -0.393894 + }, + { + "surface": "一生", + "readging": "いっしょう", + "pos": "名詞", + "pn": -0.393897 + }, + { + "surface": "暗黒", + "readging": "あんこく", + "pos": "名詞", + "pn": -0.393908 + }, + { + "surface": "焼串", + "readging": "やきぐし", + "pos": "名詞", + "pn": -0.393937 + }, + { + "surface": "選別", + "readging": "せんべつ", + "pos": "名詞", + "pn": -0.393945 + }, + { + "surface": "退座", + "readging": "たいざ", + "pos": "名詞", + "pn": -0.393976 + }, + { + "surface": "隣組", + "readging": "となりぐみ", + "pos": "名詞", + "pn": -0.393977 + }, + { + "surface": "バベルの塔", + "readging": "バベルのとう", + "pos": "名詞", + "pn": -0.393988 + }, + { + "surface": "差引く", + "readging": "さしひく", + "pos": "動詞", + "pn": -0.393989 + }, + { + "surface": "革命", + "readging": "かくめい", + "pos": "名詞", + "pn": -0.394006 + }, + { + "surface": "遠退く", + "readging": "とおのく", + "pos": "動詞", + "pn": -0.394007 + }, + { + "surface": "孟秋", + "readging": "もうしゅう", + "pos": "名詞", + "pn": -0.394014 + }, + { + "surface": "煎茶", + "readging": "せんちゃ", + "pos": "名詞", + "pn": -0.394016 + }, + { + "surface": "私事", + "readging": "わたくしごと", + "pos": "名詞", + "pn": -0.394023 + }, + { + "surface": "繊弱", + "readging": "せんじゃく", + "pos": "名詞", + "pn": -0.394035 + }, + { + "surface": "絽刺", + "readging": "ろざし", + "pos": "名詞", + "pn": -0.39408 + }, + { + "surface": "属官", + "readging": "ぞっかん", + "pos": "名詞", + "pn": -0.394085 + }, + { + "surface": "骨折り損", + "readging": "ほねおりぞん", + "pos": "名詞", + "pn": -0.394095 + }, + { + "surface": "木乃伊", + "readging": "ミイラ", + "pos": "名詞", + "pn": -0.394103 + }, + { + "surface": "切れ離れ", + "readging": "きれはなれ", + "pos": "名詞", + "pn": -0.394112 + }, + { + "surface": "物入れ", + "readging": "ものいれ", + "pos": "名詞", + "pn": -0.394115 + }, + { + "surface": "福茶", + "readging": "ふくちゃ", + "pos": "名詞", + "pn": -0.394115 + }, + { + "surface": "尻下り", + "readging": "しりさがり", + "pos": "名詞", + "pn": -0.394138 + }, + { + "surface": "過渡期", + "readging": "かとき", + "pos": "名詞", + "pn": -0.394143 + }, + { + "surface": "脱毛", + "readging": "だつもう", + "pos": "名詞", + "pn": -0.394154 + }, + { + "surface": "忽然と", + "readging": "こつぜんと", + "pos": "副詞", + "pn": -0.394156 + }, + { + "surface": "こうこ", + "readging": "こうこ", + "pos": "名詞", + "pn": -0.394205 + }, + { + "surface": "後日", + "readging": "ごにち", + "pos": "名詞", + "pn": -0.394235 + }, + { + "surface": "ニンフ", + "readging": "ニンフ", + "pos": "名詞", + "pn": -0.394255 + }, + { + "surface": "ブレスト", + "readging": "ブレスト", + "pos": "名詞", + "pn": -0.394259 + }, + { + "surface": "虫垂", + "readging": "ちゅうすい", + "pos": "名詞", + "pn": -0.394276 + }, + { + "surface": "三界", + "readging": "さんがい", + "pos": "名詞", + "pn": -0.39429 + }, + { + "surface": "大漁", + "readging": "たいりょう", + "pos": "名詞", + "pn": -0.394304 + }, + { + "surface": "後退", + "readging": "こうたい", + "pos": "名詞", + "pn": -0.394338 + }, + { + "surface": "地雨", + "readging": "じあめ", + "pos": "名詞", + "pn": -0.394346 + }, + { + "surface": "研出し", + "readging": "とぎだし", + "pos": "名詞", + "pn": -0.394353 + }, + { + "surface": "薄れる", + "readging": "うすれる", + "pos": "動詞", + "pn": -0.394358 + }, + { + "surface": "書物", + "readging": "かきもの", + "pos": "名詞", + "pn": -0.394371 + }, + { + "surface": "分封", + "readging": "ぶんぽう", + "pos": "名詞", + "pn": -0.394393 + }, + { + "surface": "短慮", + "readging": "たんりょ", + "pos": "名詞", + "pn": -0.394405 + }, + { + "surface": "敷設", + "readging": "ふせつ", + "pos": "名詞", + "pn": -0.39445 + }, + { + "surface": "狗尾草", + "readging": "えのころぐさ", + "pos": "名詞", + "pn": -0.394468 + }, + { + "surface": "陽極", + "readging": "ようきょく", + "pos": "名詞", + "pn": -0.394482 + }, + { + "surface": "音波", + "readging": "おんぱ", + "pos": "名詞", + "pn": -0.394489 + }, + { + "surface": "小豆", + "readging": "あずき", + "pos": "名詞", + "pn": -0.394493 + }, + { + "surface": "頸椎", + "readging": "けいつい", + "pos": "名詞", + "pn": -0.394505 + }, + { + "surface": "瞑想", + "readging": "めいそう", + "pos": "名詞", + "pn": -0.394513 + }, + { + "surface": "楼主", + "readging": "ろうしゅ", + "pos": "名詞", + "pn": -0.394562 + }, + { + "surface": "切妻屋根", + "readging": "きりづまやね", + "pos": "名詞", + "pn": -0.394562 + }, + { + "surface": "ヘッド", + "readging": "ヘッドライト", + "pos": "名詞", + "pn": -0.394597 + }, + { + "surface": "筮竹", + "readging": "ぜいちく", + "pos": "名詞", + "pn": -0.39461 + }, + { + "surface": "楯突く", + "readging": "たてつく", + "pos": "動詞", + "pn": -0.394628 + }, + { + "surface": "壁画", + "readging": "へきが", + "pos": "名詞", + "pn": -0.394629 + }, + { + "surface": "使命", + "readging": "しめい", + "pos": "名詞", + "pn": -0.394673 + }, + { + "surface": "揺すぶる", + "readging": "ゆすぶる", + "pos": "動詞", + "pn": -0.394686 + }, + { + "surface": "瞠目", + "readging": "どうもく", + "pos": "名詞", + "pn": -0.394708 + }, + { + "surface": "水車", + "readging": "みずぐるま", + "pos": "名詞", + "pn": -0.394724 + }, + { + "surface": "旅人", + "readging": "たびにん", + "pos": "名詞", + "pn": -0.394729 + }, + { + "surface": "戦法", + "readging": "せんぽう", + "pos": "名詞", + "pn": -0.394745 + }, + { + "surface": "暗紅", + "readging": "あんこう", + "pos": "名詞", + "pn": -0.394745 + }, + { + "surface": "傾注", + "readging": "けいちゅう", + "pos": "名詞", + "pn": -0.394768 + }, + { + "surface": "唐破風", + "readging": "からはふ", + "pos": "名詞", + "pn": -0.394792 + }, + { + "surface": "生捕り", + "readging": "いけどり", + "pos": "名詞", + "pn": -0.394813 + }, + { + "surface": "貰い年", + "readging": "もらいどし", + "pos": "名詞", + "pn": -0.394815 + }, + { + "surface": "移植", + "readging": "いしょく", + "pos": "名詞", + "pn": -0.39483 + }, + { + "surface": "三", + "readging": "み", + "pos": "名詞", + "pn": -0.394853 + }, + { + "surface": "試験管", + "readging": "しけんかん", + "pos": "名詞", + "pn": -0.394856 + }, + { + "surface": "伝票", + "readging": "でんぴょう", + "pos": "名詞", + "pn": -0.394857 + }, + { + "surface": "配線", + "readging": "はいせん", + "pos": "名詞", + "pn": -0.394864 + }, + { + "surface": "同上", + "readging": "どうじょう", + "pos": "名詞", + "pn": -0.394866 + }, + { + "surface": "笠子", + "readging": "かさご", + "pos": "名詞", + "pn": -0.394885 + }, + { + "surface": "男鰥", + "readging": "おとこやもめ", + "pos": "名詞", + "pn": -0.394905 + }, + { + "surface": "議定", + "readging": "ぎじょう", + "pos": "名詞", + "pn": -0.394907 + }, + { + "surface": "明太", + "readging": "めんたい", + "pos": "名詞", + "pn": -0.39492 + }, + { + "surface": "陳列", + "readging": "ちんれつ", + "pos": "名詞", + "pn": -0.394921 + }, + { + "surface": "導体", + "readging": "どうたい", + "pos": "名詞", + "pn": -0.394922 + }, + { + "surface": "迎合", + "readging": "げいごう", + "pos": "名詞", + "pn": -0.394932 + }, + { + "surface": "碧水", + "readging": "へきすい", + "pos": "名詞", + "pn": -0.394962 + }, + { + "surface": "連合", + "readging": "れんごう", + "pos": "名詞", + "pn": -0.394982 + }, + { + "surface": "詠草", + "readging": "えいそう", + "pos": "名詞", + "pn": -0.394985 + }, + { + "surface": "霜天", + "readging": "そうてん", + "pos": "名詞", + "pn": -0.394992 + }, + { + "surface": "儀容", + "readging": "ぎよう", + "pos": "名詞", + "pn": -0.395007 + }, + { + "surface": "投書", + "readging": "とうしょ", + "pos": "名詞", + "pn": -0.395018 + }, + { + "surface": "羅紗", + "readging": "ラシャ", + "pos": "名詞", + "pn": -0.395024 + }, + { + "surface": "突放す", + "readging": "つきはなす", + "pos": "動詞", + "pn": -0.395056 + }, + { + "surface": "観点", + "readging": "かんてん", + "pos": "名詞", + "pn": -0.395061 + }, + { + "surface": "舶来", + "readging": "はくらい", + "pos": "名詞", + "pn": -0.395073 + }, + { + "surface": "勾配", + "readging": "こうばい", + "pos": "名詞", + "pn": -0.395075 + }, + { + "surface": "だんまり", + "readging": "だんまり", + "pos": "名詞", + "pn": -0.395079 + }, + { + "surface": "軍刀", + "readging": "ぐんとう", + "pos": "名詞", + "pn": -0.395096 + }, + { + "surface": "後住", + "readging": "ごじゅう", + "pos": "名詞", + "pn": -0.395112 + }, + { + "surface": "海鳴り", + "readging": "うみなり", + "pos": "名詞", + "pn": -0.395119 + }, + { + "surface": "内法", + "readging": "うちのり", + "pos": "名詞", + "pn": -0.395127 + }, + { + "surface": "育つ", + "readging": "そだつ", + "pos": "動詞", + "pn": -0.395131 + }, + { + "surface": "間夫", + "readging": "まぶ", + "pos": "名詞", + "pn": -0.395153 + }, + { + "surface": "同値", + "readging": "どうち", + "pos": "名詞", + "pn": -0.39516 + }, + { + "surface": "ポンチ絵", + "readging": "ポンチえ", + "pos": "名詞", + "pn": -0.395169 + }, + { + "surface": "降水量", + "readging": "こうすいりょう", + "pos": "名詞", + "pn": -0.39517 + }, + { + "surface": "メトロノーム", + "readging": "メトロノーム", + "pos": "名詞", + "pn": -0.395178 + }, + { + "surface": "葉陰", + "readging": "はかげ", + "pos": "名詞", + "pn": -0.395195 + }, + { + "surface": "課題", + "readging": "かだい", + "pos": "名詞", + "pn": -0.395198 + }, + { + "surface": "放棄", + "readging": "ほうき", + "pos": "名詞", + "pn": -0.395206 + }, + { + "surface": "魚腹", + "readging": "ぎょふく", + "pos": "名詞", + "pn": -0.395251 + }, + { + "surface": "朝日", + "readging": "あさひ", + "pos": "名詞", + "pn": -0.395251 + }, + { + "surface": "有心", + "readging": "うしん", + "pos": "名詞", + "pn": -0.395272 + }, + { + "surface": "折山", + "readging": "おりやま", + "pos": "名詞", + "pn": -0.395298 + }, + { + "surface": "議定書", + "readging": "ぎていしょ", + "pos": "名詞", + "pn": -0.395311 + }, + { + "surface": "大和", + "readging": "やまとしまね", + "pos": "名詞", + "pn": -0.395319 + }, + { + "surface": "鎧板", + "readging": "よろいいた", + "pos": "名詞", + "pn": -0.39532 + }, + { + "surface": "勇み足", + "readging": "いさみあし", + "pos": "名詞", + "pn": -0.395328 + }, + { + "surface": "鵞鳥", + "readging": "がちょう", + "pos": "名詞", + "pn": -0.395332 + }, + { + "surface": "冬眠", + "readging": "とうみん", + "pos": "名詞", + "pn": -0.395382 + }, + { + "surface": "境涯", + "readging": "きょうがい", + "pos": "名詞", + "pn": -0.395384 + }, + { + "surface": "停電", + "readging": "ていでん", + "pos": "名詞", + "pn": -0.395401 + }, + { + "surface": "範疇", + "readging": "はんちゅう", + "pos": "名詞", + "pn": -0.395432 + }, + { + "surface": "模写", + "readging": "もしゃ", + "pos": "名詞", + "pn": -0.395433 + }, + { + "surface": "親裁", + "readging": "しんさい", + "pos": "名詞", + "pn": -0.395434 + }, + { + "surface": "がらり", + "readging": "がらり", + "pos": "副詞", + "pn": -0.395454 + }, + { + "surface": "曲り目", + "readging": "まがりめ", + "pos": "名詞", + "pn": -0.395472 + }, + { + "surface": "タンニン", + "readging": "タンニン", + "pos": "名詞", + "pn": -0.395479 + }, + { + "surface": "群集心理", + "readging": "ぐんしゅうしんり", + "pos": "名詞", + "pn": -0.395554 + }, + { + "surface": "シンセサイザー", + "readging": "シンセサイザー", + "pos": "名詞", + "pn": -0.395559 + }, + { + "surface": "酵素", + "readging": "こうそ", + "pos": "名詞", + "pn": -0.395561 + }, + { + "surface": "亀鑑", + "readging": "きかん", + "pos": "名詞", + "pn": -0.395573 + }, + { + "surface": "液晶", + "readging": "えきしょう", + "pos": "名詞", + "pn": -0.395576 + }, + { + "surface": "電撃", + "readging": "でんげき", + "pos": "名詞", + "pn": -0.395596 + }, + { + "surface": "風俗営業", + "readging": "ふうぞくえいぎょう", + "pos": "名詞", + "pn": -0.395631 + }, + { + "surface": "切込み", + "readging": "きりこみ", + "pos": "名詞", + "pn": -0.395652 + }, + { + "surface": "下水", + "readging": "げすい", + "pos": "名詞", + "pn": -0.39567 + }, + { + "surface": "割出す", + "readging": "わりだす", + "pos": "動詞", + "pn": -0.395672 + }, + { + "surface": "雨漏り", + "readging": "あまもり", + "pos": "名詞", + "pn": -0.395676 + }, + { + "surface": "選任", + "readging": "せんにん", + "pos": "名詞", + "pn": -0.395691 + }, + { + "surface": "袴能", + "readging": "はかまのう", + "pos": "名詞", + "pn": -0.395695 + }, + { + "surface": "奥底", + "readging": "おくそこ", + "pos": "名詞", + "pn": -0.395705 + }, + { + "surface": "甘栗", + "readging": "あまぐり", + "pos": "名詞", + "pn": -0.395709 + }, + { + "surface": "濃淡", + "readging": "のうたん", + "pos": "名詞", + "pn": -0.395715 + }, + { + "surface": "剣舞", + "readging": "けんぶ", + "pos": "名詞", + "pn": -0.395726 + }, + { + "surface": "自蔵", + "readging": "じぞう", + "pos": "名詞", + "pn": -0.395728 + }, + { + "surface": "封じる", + "readging": "ふうじる", + "pos": "動詞", + "pn": -0.395735 + }, + { + "surface": "見逸れる", + "readging": "みそれる", + "pos": "動詞", + "pn": -0.39574 + }, + { + "surface": "置碁", + "readging": "おきご", + "pos": "名詞", + "pn": -0.395761 + }, + { + "surface": "波打つ", + "readging": "なみうつ", + "pos": "動詞", + "pn": -0.395779 + }, + { + "surface": "永年", + "readging": "えいねん", + "pos": "名詞", + "pn": -0.395786 + }, + { + "surface": "忌中", + "readging": "きちゅう", + "pos": "名詞", + "pn": -0.395803 + }, + { + "surface": "故知", + "readging": "こち", + "pos": "名詞", + "pn": -0.395834 + }, + { + "surface": "老齢", + "readging": "ろうれい", + "pos": "名詞", + "pn": -0.395837 + }, + { + "surface": "服飾", + "readging": "ふくしょく", + "pos": "名詞", + "pn": -0.39584 + }, + { + "surface": "戦渦", + "readging": "せんか", + "pos": "名詞", + "pn": -0.395866 + }, + { + "surface": "鼓弓", + "readging": "こきゅう", + "pos": "名詞", + "pn": -0.39587 + }, + { + "surface": "枢機", + "readging": "すうき", + "pos": "名詞", + "pn": -0.395873 + }, + { + "surface": "ノア", + "readging": "ノア", + "pos": "名詞", + "pn": -0.39591 + }, + { + "surface": "団居", + "readging": "まどい", + "pos": "名詞", + "pn": -0.395921 + }, + { + "surface": "ストッパー", + "readging": "ストッパー", + "pos": "名詞", + "pn": -0.395922 + }, + { + "surface": "深入り", + "readging": "ふかいり", + "pos": "名詞", + "pn": -0.395942 + }, + { + "surface": "住持", + "readging": "じゅうじ", + "pos": "名詞", + "pn": -0.395947 + }, + { + "surface": "掲載", + "readging": "けいさい", + "pos": "名詞", + "pn": -0.395948 + }, + { + "surface": "進水", + "readging": "しんすい", + "pos": "名詞", + "pn": -0.395951 + }, + { + "surface": "螻蛄", + "readging": "けら", + "pos": "名詞", + "pn": -0.395957 + }, + { + "surface": "回線", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.395957 + }, + { + "surface": "鏡台", + "readging": "きょうだい", + "pos": "名詞", + "pn": -0.395967 + }, + { + "surface": "横目", + "readging": "よこめ", + "pos": "名詞", + "pn": -0.395967 + }, + { + "surface": "御足労", + "readging": "ごそくろう", + "pos": "名詞", + "pn": -0.395977 + }, + { + "surface": "打切る", + "readging": "うちきる", + "pos": "動詞", + "pn": -0.395985 + }, + { + "surface": "横付け", + "readging": "よこづけ", + "pos": "名詞", + "pn": -0.396032 + }, + { + "surface": "故地", + "readging": "こち", + "pos": "名詞", + "pn": -0.396037 + }, + { + "surface": "老", + "readging": "ろう", + "pos": "名詞", + "pn": -0.39604 + }, + { + "surface": "踊り子草", + "readging": "おどりこ", + "pos": "名詞", + "pn": -0.396075 + }, + { + "surface": "他者", + "readging": "たしゃ", + "pos": "名詞", + "pn": -0.396091 + }, + { + "surface": "尿毒症", + "readging": "にょうどくしょう", + "pos": "名詞", + "pn": -0.396092 + }, + { + "surface": "押し合い", + "readging": "おしあい", + "pos": "名詞", + "pn": -0.396093 + }, + { + "surface": "共産", + "readging": "きょうさん", + "pos": "名詞", + "pn": -0.396118 + }, + { + "surface": "大通り", + "readging": "おおどおり", + "pos": "名詞", + "pn": -0.396154 + }, + { + "surface": "社交", + "readging": "しゃこう", + "pos": "名詞", + "pn": -0.396214 + }, + { + "surface": "三助", + "readging": "さんすけ", + "pos": "名詞", + "pn": -0.39623 + }, + { + "surface": "赤芽柏", + "readging": "あかめがしわ", + "pos": "名詞", + "pn": -0.396236 + }, + { + "surface": "川蝉", + "readging": "かわせみ", + "pos": "名詞", + "pn": -0.39624 + }, + { + "surface": "侍従", + "readging": "じじゅう", + "pos": "名詞", + "pn": -0.396254 + }, + { + "surface": "葉末", + "readging": "はずえ", + "pos": "名詞", + "pn": -0.396254 + }, + { + "surface": "塾", + "readging": "じゅく", + "pos": "名詞", + "pn": -0.396256 + }, + { + "surface": "祖先", + "readging": "そせん", + "pos": "名詞", + "pn": -0.396257 + }, + { + "surface": "手文庫", + "readging": "てぶんこ", + "pos": "名詞", + "pn": -0.396259 + }, + { + "surface": "呶呶", + "readging": "どど", + "pos": "名詞", + "pn": -0.396262 + }, + { + "surface": "保留", + "readging": "ほりゅう", + "pos": "名詞", + "pn": -0.396269 + }, + { + "surface": "雇員", + "readging": "こいん", + "pos": "名詞", + "pn": -0.396307 + }, + { + "surface": "めそめそ", + "readging": "めそめそ", + "pos": "副詞", + "pn": -0.396312 + }, + { + "surface": "漫吟", + "readging": "まんぎん", + "pos": "名詞", + "pn": -0.396325 + }, + { + "surface": "引替える", + "readging": "ひきかえる", + "pos": "動詞", + "pn": -0.396378 + }, + { + "surface": "番外", + "readging": "ばんがい", + "pos": "名詞", + "pn": -0.396396 + }, + { + "surface": "野人", + "readging": "やじん", + "pos": "名詞", + "pn": -0.396431 + }, + { + "surface": "拓", + "readging": "たく", + "pos": "名詞", + "pn": -0.396432 + }, + { + "surface": "帰命頂礼", + "readging": "きみょうちょうらい", + "pos": "名詞", + "pn": -0.396436 + }, + { + "surface": "アスファルト", + "readging": "アスファルト", + "pos": "名詞", + "pn": -0.396438 + }, + { + "surface": "絶境", + "readging": "ぜっきょう", + "pos": "名詞", + "pn": -0.396446 + }, + { + "surface": "魚粉", + "readging": "ぎょふん", + "pos": "名詞", + "pn": -0.396451 + }, + { + "surface": "一大事", + "readging": "いちだいじ", + "pos": "名詞", + "pn": -0.396451 + }, + { + "surface": "別刷", + "readging": "べつずり", + "pos": "名詞", + "pn": -0.396467 + }, + { + "surface": "濁声", + "readging": "だみごえ", + "pos": "名詞", + "pn": -0.396473 + }, + { + "surface": "論断", + "readging": "ろんだん", + "pos": "名詞", + "pn": -0.39649 + }, + { + "surface": "連峰", + "readging": "れんぽう", + "pos": "名詞", + "pn": -0.396527 + }, + { + "surface": "奉仕", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.396529 + }, + { + "surface": "水門", + "readging": "すいもん", + "pos": "名詞", + "pn": -0.396548 + }, + { + "surface": "紙幅", + "readging": "しふく", + "pos": "名詞", + "pn": -0.396549 + }, + { + "surface": "駆逐", + "readging": "くちく", + "pos": "名詞", + "pn": -0.396565 + }, + { + "surface": "丑の日", + "readging": "うしのひ", + "pos": "名詞", + "pn": -0.396575 + }, + { + "surface": "不満足", + "readging": "ふまんぞく", + "pos": "名詞", + "pn": -0.396579 + }, + { + "surface": "番傘", + "readging": "ばんがさ", + "pos": "名詞", + "pn": -0.396594 + }, + { + "surface": "型の如く", + "readging": "かたのごとく", + "pos": "名詞", + "pn": -0.3966 + }, + { + "surface": "問屋", + "readging": "とんや", + "pos": "名詞", + "pn": -0.396603 + }, + { + "surface": "内侍司", + "readging": "ないしのつかさ", + "pos": "名詞", + "pn": -0.396615 + }, + { + "surface": "湧き水", + "readging": "わきみず", + "pos": "名詞", + "pn": -0.396624 + }, + { + "surface": "素魚", + "readging": "しろうお", + "pos": "名詞", + "pn": -0.396635 + }, + { + "surface": "図案", + "readging": "ずあん", + "pos": "名詞", + "pn": -0.396679 + }, + { + "surface": "投入", + "readging": "とうにゅう", + "pos": "名詞", + "pn": -0.396697 + }, + { + "surface": "艤装", + "readging": "ぎそう", + "pos": "名詞", + "pn": -0.39673 + }, + { + "surface": "半券", + "readging": "はんけん", + "pos": "名詞", + "pn": -0.396785 + }, + { + "surface": "倒語", + "readging": "とうご", + "pos": "名詞", + "pn": -0.396804 + }, + { + "surface": "鉈豆", + "readging": "なたまめ", + "pos": "名詞", + "pn": -0.396805 + }, + { + "surface": "継続", + "readging": "けいぞく", + "pos": "名詞", + "pn": -0.396816 + }, + { + "surface": "押葉", + "readging": "おしば", + "pos": "名詞", + "pn": -0.396824 + }, + { + "surface": "精液", + "readging": "せいえき", + "pos": "名詞", + "pn": -0.396825 + }, + { + "surface": "泣訴", + "readging": "きゅうそ", + "pos": "名詞", + "pn": -0.396845 + }, + { + "surface": "還俗", + "readging": "げんぞく", + "pos": "名詞", + "pn": -0.396854 + }, + { + "surface": "砂金", + "readging": "しゃきん", + "pos": "名詞", + "pn": -0.396865 + }, + { + "surface": "返す返す", + "readging": "かえすがえす", + "pos": "副詞", + "pn": -0.396882 + }, + { + "surface": "感づく", + "readging": "かんづく", + "pos": "動詞", + "pn": -0.396885 + }, + { + "surface": "霜夜", + "readging": "しもよ", + "pos": "名詞", + "pn": -0.396899 + }, + { + "surface": "縁結び", + "readging": "えんむすび", + "pos": "名詞", + "pn": -0.396901 + }, + { + "surface": "買初め", + "readging": "かいぞめ", + "pos": "名詞", + "pn": -0.396913 + }, + { + "surface": "消光", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.396923 + }, + { + "surface": "大蒜", + "readging": "にんにく", + "pos": "名詞", + "pn": -0.396937 + }, + { + "surface": "コンドル", + "readging": "コンドル", + "pos": "名詞", + "pn": -0.396946 + }, + { + "surface": "翻字", + "readging": "ほんじ", + "pos": "名詞", + "pn": -0.39696 + }, + { + "surface": "身上", + "readging": "しんじょう", + "pos": "名詞", + "pn": -0.396963 + }, + { + "surface": "上積み", + "readging": "うわづみ", + "pos": "名詞", + "pn": -0.396968 + }, + { + "surface": "贄", + "readging": "にえ", + "pos": "名詞", + "pn": -0.396971 + }, + { + "surface": "三時", + "readging": "さんじ", + "pos": "名詞", + "pn": -0.397032 + }, + { + "surface": "蘇", + "readging": "そ", + "pos": "名詞", + "pn": -0.39704 + }, + { + "surface": "右往左往", + "readging": "うおうさおう", + "pos": "名詞", + "pn": -0.397042 + }, + { + "surface": "ぐるみ", + "readging": "ぐるみ", + "pos": "名詞", + "pn": -0.397047 + }, + { + "surface": "邸", + "readging": "てい", + "pos": "名詞", + "pn": -0.397056 + }, + { + "surface": "古祠", + "readging": "こし", + "pos": "名詞", + "pn": -0.397072 + }, + { + "surface": "輪タク", + "readging": "りんタク", + "pos": "名詞", + "pn": -0.397085 + }, + { + "surface": "水洗", + "readging": "すいせん", + "pos": "名詞", + "pn": -0.397096 + }, + { + "surface": "札入れ", + "readging": "さついれ", + "pos": "名詞", + "pn": -0.397128 + }, + { + "surface": "灯", + "readging": "とう", + "pos": "名詞", + "pn": -0.39713 + }, + { + "surface": "竪桟", + "readging": "たてざん", + "pos": "名詞", + "pn": -0.397134 + }, + { + "surface": "歌謡", + "readging": "かよう", + "pos": "名詞", + "pn": -0.397156 + }, + { + "surface": "疑心暗鬼", + "readging": "ぎしんあんき", + "pos": "名詞", + "pn": -0.397181 + }, + { + "surface": "ダダイズム", + "readging": "ダダイズム", + "pos": "名詞", + "pn": -0.397193 + }, + { + "surface": "レザー", + "readging": "レザー", + "pos": "名詞", + "pn": -0.397195 + }, + { + "surface": "カロチン", + "readging": "カロチン", + "pos": "名詞", + "pn": -0.3972 + }, + { + "surface": "接骨木", + "readging": "にわとこ", + "pos": "名詞", + "pn": -0.39724 + }, + { + "surface": "内侍", + "readging": "ないし", + "pos": "名詞", + "pn": -0.397242 + }, + { + "surface": "引下がる", + "readging": "ひきさがる", + "pos": "動詞", + "pn": -0.397255 + }, + { + "surface": "内角", + "readging": "ないかく", + "pos": "名詞", + "pn": -0.397268 + }, + { + "surface": "バルコニー", + "readging": "バルコニー", + "pos": "名詞", + "pn": -0.397272 + }, + { + "surface": "急告", + "readging": "きゅうこく", + "pos": "名詞", + "pn": -0.397274 + }, + { + "surface": "文使い", + "readging": "ふみづかい", + "pos": "名詞", + "pn": -0.397283 + }, + { + "surface": "リボン", + "readging": "リボン", + "pos": "名詞", + "pn": -0.397291 + }, + { + "surface": "掃除", + "readging": "そうじ", + "pos": "名詞", + "pn": -0.397308 + }, + { + "surface": "乗車", + "readging": "じょうしゃ", + "pos": "名詞", + "pn": -0.39732 + }, + { + "surface": "復籍", + "readging": "ふくせき", + "pos": "名詞", + "pn": -0.397344 + }, + { + "surface": "孟宗", + "readging": "もうそう", + "pos": "名詞", + "pn": -0.397345 + }, + { + "surface": "ホッケー", + "readging": "ホッケー", + "pos": "名詞", + "pn": -0.397368 + }, + { + "surface": "並列", + "readging": "へいれつ", + "pos": "名詞", + "pn": -0.397388 + }, + { + "surface": "湯炊き", + "readging": "ゆだき", + "pos": "名詞", + "pn": -0.397397 + }, + { + "surface": "人工衛星", + "readging": "じんこうえいせい", + "pos": "名詞", + "pn": -0.397404 + }, + { + "surface": "波面", + "readging": "はめん", + "pos": "名詞", + "pn": -0.397422 + }, + { + "surface": "分科", + "readging": "ぶんか", + "pos": "名詞", + "pn": -0.39743 + }, + { + "surface": "地神", + "readging": "ちじん", + "pos": "名詞", + "pn": -0.397441 + }, + { + "surface": "里子", + "readging": "さとご", + "pos": "名詞", + "pn": -0.397453 + }, + { + "surface": "経度", + "readging": "けいど", + "pos": "名詞", + "pn": -0.39746 + }, + { + "surface": "来遊", + "readging": "らいゆう", + "pos": "名詞", + "pn": -0.397465 + }, + { + "surface": "双", + "readging": "そう", + "pos": "名詞", + "pn": -0.397465 + }, + { + "surface": "山伏", + "readging": "やまぶし", + "pos": "名詞", + "pn": -0.397473 + }, + { + "surface": "伺い", + "readging": "うかがい", + "pos": "名詞", + "pn": -0.397477 + }, + { + "surface": "張", + "readging": "ばり", + "pos": "名詞", + "pn": -0.39748 + }, + { + "surface": "後者", + "readging": "こうしゃ", + "pos": "名詞", + "pn": -0.397486 + }, + { + "surface": "雨量", + "readging": "うりょう", + "pos": "名詞", + "pn": -0.397486 + }, + { + "surface": "ランタン", + "readging": "ランタン", + "pos": "名詞", + "pn": -0.397499 + }, + { + "surface": "加味", + "readging": "かみ", + "pos": "名詞", + "pn": -0.397508 + }, + { + "surface": "標的", + "readging": "ひょうてき", + "pos": "名詞", + "pn": -0.397517 + }, + { + "surface": "聖観音", + "readging": "しょうかんのん", + "pos": "名詞", + "pn": -0.397536 + }, + { + "surface": "流者", + "readging": "ながれもの", + "pos": "名詞", + "pn": -0.397564 + }, + { + "surface": "カリパス", + "readging": "カリパス", + "pos": "名詞", + "pn": -0.397568 + }, + { + "surface": "臭う", + "readging": "におう", + "pos": "動詞", + "pn": -0.397571 + }, + { + "surface": "リフト", + "readging": "リフト", + "pos": "名詞", + "pn": -0.397572 + }, + { + "surface": "謙遜", + "readging": "けんそん", + "pos": "名詞", + "pn": -0.397578 + }, + { + "surface": "糅", + "readging": "かて", + "pos": "名詞", + "pn": -0.397587 + }, + { + "surface": "洗い出す", + "readging": "あらいだす", + "pos": "動詞", + "pn": -0.397602 + }, + { + "surface": "スタウト", + "readging": "スタウト", + "pos": "名詞", + "pn": -0.397616 + }, + { + "surface": "御法度", + "readging": "ごはっと", + "pos": "名詞", + "pn": -0.397619 + }, + { + "surface": "間間", + "readging": "まま", + "pos": "副詞", + "pn": -0.397642 + }, + { + "surface": "小手調べ", + "readging": "こてしらべ", + "pos": "名詞", + "pn": -0.397647 + }, + { + "surface": "古制", + "readging": "こせい", + "pos": "名詞", + "pn": -0.397653 + }, + { + "surface": "波紋", + "readging": "はもん", + "pos": "名詞", + "pn": -0.397698 + }, + { + "surface": "すいっちょ", + "readging": "すいっちょ", + "pos": "名詞", + "pn": -0.397705 + }, + { + "surface": "爾", + "readging": "じ", + "pos": "副詞", + "pn": -0.39771 + }, + { + "surface": "暖房", + "readging": "だんぼう", + "pos": "名詞", + "pn": -0.397737 + }, + { + "surface": "書散らす", + "readging": "かきちらす", + "pos": "動詞", + "pn": -0.397741 + }, + { + "surface": "図工", + "readging": "ずこう", + "pos": "名詞", + "pn": -0.397746 + }, + { + "surface": "輸尿管", + "readging": "ゆにょうかん", + "pos": "名詞", + "pn": -0.397747 + }, + { + "surface": "村芝居", + "readging": "むらしばい", + "pos": "名詞", + "pn": -0.397759 + }, + { + "surface": "町中", + "readging": "まちなか", + "pos": "名詞", + "pn": -0.397765 + }, + { + "surface": "一利一害", + "readging": "いちりいちがい", + "pos": "名詞", + "pn": -0.397773 + }, + { + "surface": "演算", + "readging": "えんざん", + "pos": "名詞", + "pn": -0.397778 + }, + { + "surface": "荘", + "readging": "しょう", + "pos": "名詞", + "pn": -0.397786 + }, + { + "surface": "任ずる", + "readging": "にんずる", + "pos": "動詞", + "pn": -0.397807 + }, + { + "surface": "張合い", + "readging": "はりあい", + "pos": "名詞", + "pn": -0.397808 + }, + { + "surface": "諸口", + "readging": "しょくち", + "pos": "名詞", + "pn": -0.397842 + }, + { + "surface": "鄙", + "readging": "ひな", + "pos": "名詞", + "pn": -0.397849 + }, + { + "surface": "篆刻", + "readging": "てんこく", + "pos": "名詞", + "pn": -0.39788 + }, + { + "surface": "曲直", + "readging": "きょくちょく", + "pos": "名詞", + "pn": -0.397881 + }, + { + "surface": "行軍", + "readging": "こうぐん", + "pos": "名詞", + "pn": -0.397912 + }, + { + "surface": "ジャガー", + "readging": "ジャガー", + "pos": "名詞", + "pn": -0.397933 + }, + { + "surface": "縁坐", + "readging": "えんざ", + "pos": "名詞", + "pn": -0.397934 + }, + { + "surface": "四阿", + "readging": "あずまや", + "pos": "名詞", + "pn": -0.397949 + }, + { + "surface": "公儀", + "readging": "こうぎ", + "pos": "名詞", + "pn": -0.397967 + }, + { + "surface": "八重咲き", + "readging": "やえ", + "pos": "名詞", + "pn": -0.397974 + }, + { + "surface": "ループ", + "readging": "ループ", + "pos": "名詞", + "pn": -0.397975 + }, + { + "surface": "ジュークボックス", + "readging": "ジュークボックス", + "pos": "名詞", + "pn": -0.398015 + }, + { + "surface": "高嶺颪", + "readging": "たかねおろし", + "pos": "名詞", + "pn": -0.398048 + }, + { + "surface": "一反", + "readging": "いったん", + "pos": "名詞", + "pn": -0.398068 + }, + { + "surface": "座薬", + "readging": "ざやく", + "pos": "名詞", + "pn": -0.398084 + }, + { + "surface": "投銭", + "readging": "なげせん", + "pos": "名詞", + "pn": -0.398155 + }, + { + "surface": "入幕", + "readging": "にゅうまく", + "pos": "名詞", + "pn": -0.39818 + }, + { + "surface": "国語", + "readging": "こくご", + "pos": "名詞", + "pn": -0.39821 + }, + { + "surface": "住職", + "readging": "じゅうしょく", + "pos": "名詞", + "pn": -0.398216 + }, + { + "surface": "窓口", + "readging": "まどぐち", + "pos": "名詞", + "pn": -0.398251 + }, + { + "surface": "貴所", + "readging": "きしょ", + "pos": "名詞", + "pn": -0.398252 + }, + { + "surface": "牽引", + "readging": "けんいん", + "pos": "名詞", + "pn": -0.39826 + }, + { + "surface": "地口", + "readging": "じぐち", + "pos": "名詞", + "pn": -0.398295 + }, + { + "surface": "従兵", + "readging": "じゅうへい", + "pos": "名詞", + "pn": -0.398301 + }, + { + "surface": "砂時計", + "readging": "すなどけい", + "pos": "名詞", + "pn": -0.39832 + }, + { + "surface": "知るべ", + "readging": "しるべ", + "pos": "名詞", + "pn": -0.39832 + }, + { + "surface": "婦人科", + "readging": "ふじんか", + "pos": "名詞", + "pn": -0.398321 + }, + { + "surface": "液便", + "readging": "えきべん", + "pos": "名詞", + "pn": -0.398362 + }, + { + "surface": "三段跳", + "readging": "さんだんとび", + "pos": "名詞", + "pn": -0.398367 + }, + { + "surface": "十手", + "readging": "じゅって", + "pos": "名詞", + "pn": -0.398382 + }, + { + "surface": "止み難い", + "readging": "やみがたい", + "pos": "形容詞", + "pn": -0.398393 + }, + { + "surface": "金字", + "readging": "きんじ", + "pos": "名詞", + "pn": -0.398402 + }, + { + "surface": "ばらつく", + "readging": "ばらつく", + "pos": "動詞", + "pn": -0.398403 + }, + { + "surface": "お花", + "readging": "おはな", + "pos": "名詞", + "pn": -0.398421 + }, + { + "surface": "盂蘭盆", + "readging": "うらぼん", + "pos": "名詞", + "pn": -0.398424 + }, + { + "surface": "海綿動物", + "readging": "かいめんどうぶつ", + "pos": "名詞", + "pn": -0.398429 + }, + { + "surface": "用心棒", + "readging": "ようじんぼう", + "pos": "名詞", + "pn": -0.398432 + }, + { + "surface": "濤声", + "readging": "とうせい", + "pos": "名詞", + "pn": -0.398446 + }, + { + "surface": "領袖", + "readging": "りょうしゅう", + "pos": "名詞", + "pn": -0.398451 + }, + { + "surface": "箔押し", + "readging": "はくおし", + "pos": "名詞", + "pn": -0.398454 + }, + { + "surface": "傍人", + "readging": "ぼうじん", + "pos": "名詞", + "pn": -0.398506 + }, + { + "surface": "パナマ帽", + "readging": "パナマぼう", + "pos": "名詞", + "pn": -0.39852 + }, + { + "surface": "避病院", + "readging": "ひびょういん", + "pos": "名詞", + "pn": -0.39853 + }, + { + "surface": "序奏", + "readging": "じょそう", + "pos": "名詞", + "pn": -0.398531 + }, + { + "surface": "陣頭", + "readging": "じんとう", + "pos": "名詞", + "pn": -0.398536 + }, + { + "surface": "主力", + "readging": "しゅりょく", + "pos": "名詞", + "pn": -0.398557 + }, + { + "surface": "胡座", + "readging": "あぐら", + "pos": "名詞", + "pn": -0.398563 + }, + { + "surface": "漁具", + "readging": "ぎょぐ", + "pos": "名詞", + "pn": -0.398566 + }, + { + "surface": "頬返し", + "readging": "ほおがえし", + "pos": "名詞", + "pn": -0.398582 + }, + { + "surface": "ピックアップ", + "readging": "ピックアップ", + "pos": "名詞", + "pn": -0.398602 + }, + { + "surface": "猶", + "readging": "なお", + "pos": "副詞", + "pn": -0.398619 + }, + { + "surface": "巡り", + "readging": "めぐり", + "pos": "名詞", + "pn": -0.398628 + }, + { + "surface": "冠省", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.39865 + }, + { + "surface": "サフラン", + "readging": "サフラン", + "pos": "名詞", + "pn": -0.398654 + }, + { + "surface": "石灰石", + "readging": "せっかいせき", + "pos": "名詞", + "pn": -0.398656 + }, + { + "surface": "怪死", + "readging": "かいし", + "pos": "名詞", + "pn": -0.398673 + }, + { + "surface": "蛍光", + "readging": "けいこう", + "pos": "名詞", + "pn": -0.398676 + }, + { + "surface": "売淫", + "readging": "ばいいん", + "pos": "名詞", + "pn": -0.398681 + }, + { + "surface": "プラン", + "readging": "プラン", + "pos": "名詞", + "pn": -0.398682 + }, + { + "surface": "職権", + "readging": "しょっけん", + "pos": "名詞", + "pn": -0.398702 + }, + { + "surface": "中座", + "readging": "ちゅうざ", + "pos": "名詞", + "pn": -0.39871 + }, + { + "surface": "日雀", + "readging": "ひがら", + "pos": "名詞", + "pn": -0.398717 + }, + { + "surface": "差出口", + "readging": "さしでぐち", + "pos": "名詞", + "pn": -0.398723 + }, + { + "surface": "態態", + "readging": "わざわざ", + "pos": "副詞", + "pn": -0.398762 + }, + { + "surface": "皇太子", + "readging": "こうたいし", + "pos": "名詞", + "pn": -0.398771 + }, + { + "surface": "行政訴訟", + "readging": "ぎょうせいそしょう", + "pos": "名詞", + "pn": -0.398771 + }, + { + "surface": "進", + "readging": "しん", + "pos": "名詞", + "pn": -0.398786 + }, + { + "surface": "擦れ違う", + "readging": "すれちがう", + "pos": "動詞", + "pn": -0.398789 + }, + { + "surface": "密偵", + "readging": "みってい", + "pos": "名詞", + "pn": -0.398791 + }, + { + "surface": "杉折", + "readging": "すぎおり", + "pos": "名詞", + "pn": -0.398794 + }, + { + "surface": "靴墨", + "readging": "くつずみ", + "pos": "名詞", + "pn": -0.398795 + }, + { + "surface": "追啓", + "readging": "ついけい", + "pos": "名詞", + "pn": -0.398824 + }, + { + "surface": "七三", + "readging": "しちさん", + "pos": "名詞", + "pn": -0.398834 + }, + { + "surface": "鯨骨", + "readging": "げいこつ", + "pos": "名詞", + "pn": -0.398839 + }, + { + "surface": "肺活量", + "readging": "はいかつりょう", + "pos": "名詞", + "pn": -0.398846 + }, + { + "surface": "接点", + "readging": "せってん", + "pos": "名詞", + "pn": -0.39885 + }, + { + "surface": "勅", + "readging": "ちょく", + "pos": "名詞", + "pn": -0.398851 + }, + { + "surface": "束髪", + "readging": "そくはつ", + "pos": "名詞", + "pn": -0.398856 + }, + { + "surface": "心髄", + "readging": "しんずい", + "pos": "名詞", + "pn": -0.398902 + }, + { + "surface": "軟鋼", + "readging": "なんこう", + "pos": "名詞", + "pn": -0.398955 + }, + { + "surface": "シアン化水素", + "readging": "シアンかすいそ", + "pos": "名詞", + "pn": -0.398981 + }, + { + "surface": "公判廷", + "readging": "こうはんてい", + "pos": "名詞", + "pn": -0.398999 + }, + { + "surface": "辻番", + "readging": "つじばん", + "pos": "名詞", + "pn": -0.399004 + }, + { + "surface": "対応", + "readging": "たいおう", + "pos": "名詞", + "pn": -0.399023 + }, + { + "surface": "論文", + "readging": "ろんぶん", + "pos": "名詞", + "pn": -0.399031 + }, + { + "surface": "大刀", + "readging": "だいとう", + "pos": "名詞", + "pn": -0.399033 + }, + { + "surface": "他面", + "readging": "ためん", + "pos": "名詞", + "pn": -0.399045 + }, + { + "surface": "かまくら", + "readging": "かまくら", + "pos": "名詞", + "pn": -0.399052 + }, + { + "surface": "苑", + "readging": "えん", + "pos": "名詞", + "pn": -0.399098 + }, + { + "surface": "火砕流", + "readging": "かさいりゅう", + "pos": "名詞", + "pn": -0.399121 + }, + { + "surface": "一味", + "readging": "いちみ", + "pos": "副詞", + "pn": -0.399126 + }, + { + "surface": "菜種", + "readging": "なたね", + "pos": "名詞", + "pn": -0.399154 + }, + { + "surface": "樸", + "readging": "ぼく", + "pos": "名詞", + "pn": -0.399159 + }, + { + "surface": "着飾る", + "readging": "きかざる", + "pos": "動詞", + "pn": -0.399159 + }, + { + "surface": "卒塔婆", + "readging": "そとば", + "pos": "名詞", + "pn": -0.399194 + }, + { + "surface": "一面識", + "readging": "いちめんしき", + "pos": "名詞", + "pn": -0.399218 + }, + { + "surface": "垂れ流し", + "readging": "たれながし", + "pos": "名詞", + "pn": -0.399232 + }, + { + "surface": "砂絵", + "readging": "すなえ", + "pos": "名詞", + "pn": -0.399277 + }, + { + "surface": "秋霜", + "readging": "しゅうそう", + "pos": "名詞", + "pn": -0.399294 + }, + { + "surface": "綿花", + "readging": "めんか", + "pos": "名詞", + "pn": -0.399328 + }, + { + "surface": "聞酒", + "readging": "ききざけ", + "pos": "名詞", + "pn": -0.399339 + }, + { + "surface": "フルーツ", + "readging": "フルーツ", + "pos": "名詞", + "pn": -0.399345 + }, + { + "surface": "心覚え", + "readging": "こころおぼえ", + "pos": "名詞", + "pn": -0.399381 + }, + { + "surface": "直", + "readging": "じか", + "pos": "名詞", + "pn": -0.399382 + }, + { + "surface": "思い違い", + "readging": "おもいちがい", + "pos": "名詞", + "pn": -0.399399 + }, + { + "surface": "継電器", + "readging": "けいでんき", + "pos": "名詞", + "pn": -0.3994 + }, + { + "surface": "角材", + "readging": "かくざい", + "pos": "名詞", + "pn": -0.399407 + }, + { + "surface": "リーフレット", + "readging": "リーフレット", + "pos": "名詞", + "pn": -0.399425 + }, + { + "surface": "スケール", + "readging": "スケール", + "pos": "名詞", + "pn": -0.399434 + }, + { + "surface": "三角点", + "readging": "さんかくてん", + "pos": "名詞", + "pn": -0.39946 + }, + { + "surface": "独立採算制", + "readging": "どくりつさいさんせい", + "pos": "名詞", + "pn": -0.399465 + }, + { + "surface": "伝え聞く", + "readging": "つたえきく", + "pos": "動詞", + "pn": -0.399531 + }, + { + "surface": "露座", + "readging": "ろざ", + "pos": "名詞", + "pn": -0.399533 + }, + { + "surface": "鼎坐", + "readging": "ていざ", + "pos": "名詞", + "pn": -0.399569 + }, + { + "surface": "鑑識", + "readging": "かんしき", + "pos": "名詞", + "pn": -0.399579 + }, + { + "surface": "雰", + "readging": "ふん", + "pos": "名詞", + "pn": -0.399592 + }, + { + "surface": "珍優", + "readging": "ちんゆう", + "pos": "名詞", + "pn": -0.399596 + }, + { + "surface": "世故", + "readging": "せこ", + "pos": "名詞", + "pn": -0.399613 + }, + { + "surface": "中間", + "readging": "ちゅうかん", + "pos": "名詞", + "pn": -0.399677 + }, + { + "surface": "通信機関", + "readging": "つうしんきかん", + "pos": "名詞", + "pn": -0.399679 + }, + { + "surface": "読唇術", + "readging": "どくしんじゅつ", + "pos": "名詞", + "pn": -0.399682 + }, + { + "surface": "聞かせる", + "readging": "きかせる", + "pos": "動詞", + "pn": -0.399683 + }, + { + "surface": "止り", + "readging": "とまり", + "pos": "名詞", + "pn": -0.399688 + }, + { + "surface": "総トン数", + "readging": "そうトンすう", + "pos": "名詞", + "pn": -0.399696 + }, + { + "surface": "三次元", + "readging": "さんじげん", + "pos": "名詞", + "pn": -0.399702 + }, + { + "surface": "型板", + "readging": "かたいた", + "pos": "名詞", + "pn": -0.399717 + }, + { + "surface": "九つ", + "readging": "ここのつ", + "pos": "名詞", + "pn": -0.399731 + }, + { + "surface": "代印", + "readging": "だいいん", + "pos": "名詞", + "pn": -0.399739 + }, + { + "surface": "居職", + "readging": "いじょく", + "pos": "名詞", + "pn": -0.399769 + }, + { + "surface": "山葵", + "readging": "わさび", + "pos": "名詞", + "pn": -0.39977 + }, + { + "surface": "天狗", + "readging": "てんぐ", + "pos": "名詞", + "pn": -0.399778 + }, + { + "surface": "裡", + "readging": "り", + "pos": "名詞", + "pn": -0.399786 + }, + { + "surface": "実弟", + "readging": "じってい", + "pos": "名詞", + "pn": -0.399791 + }, + { + "surface": "抜粋", + "readging": "ばっすい", + "pos": "名詞", + "pn": -0.399794 + }, + { + "surface": "子種", + "readging": "こだね", + "pos": "名詞", + "pn": -0.399807 + }, + { + "surface": "討究", + "readging": "とうきゅう", + "pos": "名詞", + "pn": -0.399809 + }, + { + "surface": "麻酔", + "readging": "ますい", + "pos": "名詞", + "pn": -0.399839 + }, + { + "surface": "検疫", + "readging": "けんえき", + "pos": "名詞", + "pn": -0.399896 + }, + { + "surface": "羽二重", + "readging": "はぶたえ", + "pos": "名詞", + "pn": -0.399898 + }, + { + "surface": "衣装人形", + "readging": "いしょうにんぎょう", + "pos": "名詞", + "pn": -0.399903 + }, + { + "surface": "晩夏", + "readging": "ばんか", + "pos": "名詞", + "pn": -0.399912 + }, + { + "surface": "琴", + "readging": "きん", + "pos": "名詞", + "pn": -0.399919 + }, + { + "surface": "翻身", + "readging": "ほんしん", + "pos": "名詞", + "pn": -0.39994 + }, + { + "surface": "無い物ねだり", + "readging": "ないものねだり", + "pos": "名詞", + "pn": -0.399954 + }, + { + "surface": "三拍子", + "readging": "さんびょうし", + "pos": "名詞", + "pn": -0.399966 + }, + { + "surface": "乳剤", + "readging": "にゅうざい", + "pos": "名詞", + "pn": -0.39997 + }, + { + "surface": "三舎", + "readging": "さんしゃ", + "pos": "名詞", + "pn": -0.399971 + }, + { + "surface": "近臣", + "readging": "きんしん", + "pos": "名詞", + "pn": -0.399972 + }, + { + "surface": "剥ぐ", + "readging": "はぐ", + "pos": "動詞", + "pn": -0.399973 + }, + { + "surface": "のんだくれ", + "readging": "のんだくれ", + "pos": "名詞", + "pn": -0.399981 + }, + { + "surface": "違式", + "readging": "いしき", + "pos": "名詞", + "pn": -0.399992 + }, + { + "surface": "化学工業", + "readging": "かがくこうぎょう", + "pos": "名詞", + "pn": -0.400022 + }, + { + "surface": "はっきり", + "readging": "はっきり", + "pos": "副詞", + "pn": -0.400024 + }, + { + "surface": "因む", + "readging": "ちなむ", + "pos": "動詞", + "pn": -0.400024 + }, + { + "surface": "大和", + "readging": "やまとごころ", + "pos": "名詞", + "pn": -0.400031 + }, + { + "surface": "狼煙", + "readging": "のろし", + "pos": "名詞", + "pn": -0.400043 + }, + { + "surface": "トップ", + "readging": "トップダウン", + "pos": "名詞", + "pn": -0.400048 + }, + { + "surface": "捕手", + "readging": "ほしゅ", + "pos": "名詞", + "pn": -0.400078 + }, + { + "surface": "万両", + "readging": "まんりょう", + "pos": "名詞", + "pn": -0.400085 + }, + { + "surface": "力戦", + "readging": "りきせん", + "pos": "名詞", + "pn": -0.400101 + }, + { + "surface": "側仕え", + "readging": "そばづかえ", + "pos": "名詞", + "pn": -0.40012 + }, + { + "surface": "油障子", + "readging": "あぶらしょうじ", + "pos": "名詞", + "pn": -0.400137 + }, + { + "surface": "小坊主", + "readging": "こぼうず", + "pos": "名詞", + "pn": -0.400156 + }, + { + "surface": "吹雪", + "readging": "ふぶき", + "pos": "名詞", + "pn": -0.400162 + }, + { + "surface": "尼公", + "readging": "にこう", + "pos": "名詞", + "pn": -0.400166 + }, + { + "surface": "立て切る", + "readging": "たてきる", + "pos": "動詞", + "pn": -0.400196 + }, + { + "surface": "火砲", + "readging": "かほう", + "pos": "名詞", + "pn": -0.400203 + }, + { + "surface": "映写", + "readging": "えいしゃ", + "pos": "名詞", + "pn": -0.400223 + }, + { + "surface": "措辞", + "readging": "そじ", + "pos": "名詞", + "pn": -0.400224 + }, + { + "surface": "記者", + "readging": "きしゃ", + "pos": "名詞", + "pn": -0.400228 + }, + { + "surface": "騎兵", + "readging": "きへい", + "pos": "名詞", + "pn": -0.40023 + }, + { + "surface": "掛売", + "readging": "かけうり", + "pos": "名詞", + "pn": -0.400231 + }, + { + "surface": "合本", + "readging": "がっぽん", + "pos": "名詞", + "pn": -0.400245 + }, + { + "surface": "地文学", + "readging": "ちもんがく", + "pos": "名詞", + "pn": -0.400286 + }, + { + "surface": "薔薇", + "readging": "ばら", + "pos": "名詞", + "pn": -0.400288 + }, + { + "surface": "搾取", + "readging": "さくしゅ", + "pos": "名詞", + "pn": -0.400293 + }, + { + "surface": "トラスト", + "readging": "トラスト", + "pos": "名詞", + "pn": -0.400295 + }, + { + "surface": "曲りなり", + "readging": "まがりなり", + "pos": "名詞", + "pn": -0.40031 + }, + { + "surface": "絶え果てる", + "readging": "たえはてる", + "pos": "動詞", + "pn": -0.400314 + }, + { + "surface": "臭素", + "readging": "しゅうそ", + "pos": "名詞", + "pn": -0.40035 + }, + { + "surface": "両前", + "readging": "りょうまえ", + "pos": "名詞", + "pn": -0.400355 + }, + { + "surface": "通帳", + "readging": "かよいちょう", + "pos": "名詞", + "pn": -0.40036 + }, + { + "surface": "全戸", + "readging": "ぜんこ", + "pos": "名詞", + "pn": -0.400361 + }, + { + "surface": "下げ髪", + "readging": "さげがみ", + "pos": "名詞", + "pn": -0.40039 + }, + { + "surface": "先払", + "readging": "さきばらい", + "pos": "名詞", + "pn": -0.400397 + }, + { + "surface": "乗込む", + "readging": "のりこむ", + "pos": "動詞", + "pn": -0.400427 + }, + { + "surface": "リンゲル液", + "readging": "リンゲルえき", + "pos": "名詞", + "pn": -0.400431 + }, + { + "surface": "特飲街", + "readging": "とくいんがい", + "pos": "名詞", + "pn": -0.400443 + }, + { + "surface": "枸櫞酸", + "readging": "くえんさん", + "pos": "名詞", + "pn": -0.400445 + }, + { + "surface": "衣更え", + "readging": "ころもがえ", + "pos": "名詞", + "pn": -0.400446 + }, + { + "surface": "鼓動", + "readging": "こどう", + "pos": "名詞", + "pn": -0.400447 + }, + { + "surface": "必要条件", + "readging": "ひつようじょうけん", + "pos": "名詞", + "pn": -0.400455 + }, + { + "surface": "あべこべ", + "readging": "あべこべ", + "pos": "名詞", + "pn": -0.400459 + }, + { + "surface": "IC", + "readging": "アイシー", + "pos": "名詞", + "pn": -0.400459 + }, + { + "surface": "藪入", + "readging": "やぶいり", + "pos": "名詞", + "pn": -0.400468 + }, + { + "surface": "歩む", + "readging": "あゆむ", + "pos": "動詞", + "pn": -0.400477 + }, + { + "surface": "桔梗", + "readging": "ききょう", + "pos": "名詞", + "pn": -0.400477 + }, + { + "surface": "ウエハース", + "readging": "ウエハース", + "pos": "名詞", + "pn": -0.40049 + }, + { + "surface": "故実", + "readging": "こじつ", + "pos": "名詞", + "pn": -0.400536 + }, + { + "surface": "山帽子", + "readging": "やまぼうし", + "pos": "名詞", + "pn": -0.400539 + }, + { + "surface": "蓍萩", + "readging": "めどはぎ", + "pos": "名詞", + "pn": -0.400552 + }, + { + "surface": "余暇", + "readging": "よか", + "pos": "名詞", + "pn": -0.400556 + }, + { + "surface": "随伴", + "readging": "ずいはん", + "pos": "名詞", + "pn": -0.400587 + }, + { + "surface": "不規則", + "readging": "ふきそく", + "pos": "名詞", + "pn": -0.400633 + }, + { + "surface": "情報検索", + "readging": "じょうほうけんさく", + "pos": "名詞", + "pn": -0.400642 + }, + { + "surface": "マントル", + "readging": "マントル", + "pos": "名詞", + "pn": -0.400654 + }, + { + "surface": "花梗", + "readging": "かこう", + "pos": "名詞", + "pn": -0.400661 + }, + { + "surface": "半眼", + "readging": "はんがん", + "pos": "名詞", + "pn": -0.400663 + }, + { + "surface": "支族", + "readging": "しぞく", + "pos": "名詞", + "pn": -0.400671 + }, + { + "surface": "香典", + "readging": "こうでん", + "pos": "名詞", + "pn": -0.400677 + }, + { + "surface": "往還", + "readging": "おうかん", + "pos": "名詞", + "pn": -0.400684 + }, + { + "surface": "底豆", + "readging": "そこまめ", + "pos": "名詞", + "pn": -0.40071 + }, + { + "surface": "宿替え", + "readging": "やどがえ", + "pos": "名詞", + "pn": -0.400727 + }, + { + "surface": "馬頭観音", + "readging": "ばとうかんのん", + "pos": "名詞", + "pn": -0.400734 + }, + { + "surface": "就床", + "readging": "しゅうしょう", + "pos": "名詞", + "pn": -0.400745 + }, + { + "surface": "防具", + "readging": "ぼうぐ", + "pos": "名詞", + "pn": -0.40075 + }, + { + "surface": "着", + "readging": "ちゃく", + "pos": "名詞", + "pn": -0.400756 + }, + { + "surface": "素人", + "readging": "しろうと", + "pos": "名詞", + "pn": -0.400761 + }, + { + "surface": "両断", + "readging": "りょうだん", + "pos": "名詞", + "pn": -0.400769 + }, + { + "surface": "鎮魂", + "readging": "ちんこん", + "pos": "名詞", + "pn": -0.400803 + }, + { + "surface": "ほとぼり", + "readging": "ほとぼり", + "pos": "名詞", + "pn": -0.400812 + }, + { + "surface": "情報理論", + "readging": "じょうほうりろん", + "pos": "名詞", + "pn": -0.400834 + }, + { + "surface": "極点", + "readging": "きょくてん", + "pos": "名詞", + "pn": -0.400834 + }, + { + "surface": "寄稿", + "readging": "きこう", + "pos": "名詞", + "pn": -0.400864 + }, + { + "surface": "ショー", + "readging": "ショーウインドー", + "pos": "名詞", + "pn": -0.400877 + }, + { + "surface": "特異", + "readging": "とくい", + "pos": "名詞", + "pn": -0.400908 + }, + { + "surface": "名簿", + "readging": "めいぼ", + "pos": "名詞", + "pn": -0.400953 + }, + { + "surface": "庭作り", + "readging": "にわつくり", + "pos": "名詞", + "pn": -0.400958 + }, + { + "surface": "外用", + "readging": "がいよう", + "pos": "名詞", + "pn": -0.400966 + }, + { + "surface": "カー", + "readging": "カー", + "pos": "名詞", + "pn": -0.40098 + }, + { + "surface": "拾", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.401019 + }, + { + "surface": "隆隆", + "readging": "りゅうりゅう", + "pos": "名詞", + "pn": -0.401048 + }, + { + "surface": "金融", + "readging": "きんゆう", + "pos": "名詞", + "pn": -0.401051 + }, + { + "surface": "本暦", + "readging": "ほんれき", + "pos": "名詞", + "pn": -0.401065 + }, + { + "surface": "ピッチ", + "readging": "ピッチ", + "pos": "名詞", + "pn": -0.401073 + }, + { + "surface": "弓形", + "readging": "ゆみなり", + "pos": "名詞", + "pn": -0.401088 + }, + { + "surface": "十徳", + "readging": "じっとく", + "pos": "名詞", + "pn": -0.401096 + }, + { + "surface": "接戦", + "readging": "せっせん", + "pos": "名詞", + "pn": -0.401108 + }, + { + "surface": "焼灼", + "readging": "しょうしゃく", + "pos": "名詞", + "pn": -0.401115 + }, + { + "surface": "断裁", + "readging": "だんさい", + "pos": "名詞", + "pn": -0.401141 + }, + { + "surface": "くねくね", + "readging": "くねくね", + "pos": "副詞", + "pn": -0.401144 + }, + { + "surface": "鼠径", + "readging": "そけい", + "pos": "名詞", + "pn": -0.401147 + }, + { + "surface": "人工栄養", + "readging": "じんこうえいよう", + "pos": "名詞", + "pn": -0.401172 + }, + { + "surface": "里芋", + "readging": "さといも", + "pos": "名詞", + "pn": -0.401207 + }, + { + "surface": "蹴破る", + "readging": "けやぶる", + "pos": "動詞", + "pn": -0.401211 + }, + { + "surface": "消防", + "readging": "しょうぼう", + "pos": "名詞", + "pn": -0.401245 + }, + { + "surface": "上皮", + "readging": "うわかわ", + "pos": "名詞", + "pn": -0.401248 + }, + { + "surface": "やのあさって", + "readging": "やのあさって", + "pos": "名詞", + "pn": -0.401264 + }, + { + "surface": "コルセット", + "readging": "コルセット", + "pos": "名詞", + "pn": -0.401281 + }, + { + "surface": "点字", + "readging": "てんじ", + "pos": "名詞", + "pn": -0.401308 + }, + { + "surface": "ナプキン", + "readging": "ナプキン", + "pos": "名詞", + "pn": -0.401314 + }, + { + "surface": "牛脂", + "readging": "ぎゅうし", + "pos": "名詞", + "pn": -0.401325 + }, + { + "surface": "老婆心", + "readging": "ろうばしん", + "pos": "名詞", + "pn": -0.401332 + }, + { + "surface": "卵生", + "readging": "らんせい", + "pos": "名詞", + "pn": -0.401336 + }, + { + "surface": "翼下", + "readging": "よくか", + "pos": "名詞", + "pn": -0.401339 + }, + { + "surface": "たまに", + "readging": "たまに", + "pos": "副詞", + "pn": -0.40135 + }, + { + "surface": "インバネス", + "readging": "インバネス", + "pos": "名詞", + "pn": -0.401351 + }, + { + "surface": "ユッカ", + "readging": "ユッカ", + "pos": "名詞", + "pn": -0.401354 + }, + { + "surface": "剥離", + "readging": "はくり", + "pos": "名詞", + "pn": -0.401354 + }, + { + "surface": "サーモスタット", + "readging": "サーモスタット", + "pos": "名詞", + "pn": -0.401359 + }, + { + "surface": "人脈", + "readging": "じんみゃく", + "pos": "名詞", + "pn": -0.401369 + }, + { + "surface": "暗証", + "readging": "あんしょう", + "pos": "名詞", + "pn": -0.401372 + }, + { + "surface": "急設", + "readging": "きゅうせつ", + "pos": "名詞", + "pn": -0.401375 + }, + { + "surface": "進退伺", + "readging": "しんたいうかがい", + "pos": "名詞", + "pn": -0.401403 + }, + { + "surface": "オゾン", + "readging": "オゾン", + "pos": "名詞", + "pn": -0.401415 + }, + { + "surface": "セット", + "readging": "セット", + "pos": "名詞", + "pn": -0.40144 + }, + { + "surface": "凹レンズ", + "readging": "おうレンズ", + "pos": "名詞", + "pn": -0.401483 + }, + { + "surface": "水割", + "readging": "みずわり", + "pos": "名詞", + "pn": -0.40156 + }, + { + "surface": "電信柱", + "readging": "でんしんばしら", + "pos": "名詞", + "pn": -0.401564 + }, + { + "surface": "充満", + "readging": "じゅうまん", + "pos": "名詞", + "pn": -0.401577 + }, + { + "surface": "花やぐ", + "readging": "はなやぐ", + "pos": "動詞", + "pn": -0.401618 + }, + { + "surface": "花卉", + "readging": "かき", + "pos": "名詞", + "pn": -0.401626 + }, + { + "surface": "深める", + "readging": "ふかめる", + "pos": "動詞", + "pn": -0.40163 + }, + { + "surface": "近詠", + "readging": "きんえい", + "pos": "名詞", + "pn": -0.401634 + }, + { + "surface": "渡し場", + "readging": "わたしば", + "pos": "名詞", + "pn": -0.401665 + }, + { + "surface": "日嗣", + "readging": "ひつぎ", + "pos": "名詞", + "pn": -0.401671 + }, + { + "surface": "ガス灯", + "readging": "ガスとう", + "pos": "名詞", + "pn": -0.401678 + }, + { + "surface": "ペンディング", + "readging": "ペンディング", + "pos": "名詞", + "pn": -0.401681 + }, + { + "surface": "地軸", + "readging": "ちじく", + "pos": "名詞", + "pn": -0.401683 + }, + { + "surface": "フレーム", + "readging": "フレーム", + "pos": "名詞", + "pn": -0.401695 + }, + { + "surface": "九仞", + "readging": "きゅうじん", + "pos": "名詞", + "pn": -0.401695 + }, + { + "surface": "坑内", + "readging": "こうない", + "pos": "名詞", + "pn": -0.401753 + }, + { + "surface": "潤う", + "readging": "うるおう", + "pos": "動詞", + "pn": -0.401755 + }, + { + "surface": "ダスター", + "readging": "ダスター", + "pos": "名詞", + "pn": -0.401781 + }, + { + "surface": "熱論", + "readging": "ねつろん", + "pos": "名詞", + "pn": -0.401796 + }, + { + "surface": "値札", + "readging": "ねふだ", + "pos": "名詞", + "pn": -0.401806 + }, + { + "surface": "暦象", + "readging": "れきしょう", + "pos": "名詞", + "pn": -0.401821 + }, + { + "surface": "小話", + "readging": "こばなし", + "pos": "名詞", + "pn": -0.401821 + }, + { + "surface": "裏町", + "readging": "うらまち", + "pos": "名詞", + "pn": -0.401822 + }, + { + "surface": "罷り通る", + "readging": "まかりとおる", + "pos": "動詞", + "pn": -0.401826 + }, + { + "surface": "一周忌", + "readging": "いっしゅうき", + "pos": "名詞", + "pn": -0.40184 + }, + { + "surface": "名宛", + "readging": "なあて", + "pos": "名詞", + "pn": -0.401846 + }, + { + "surface": "共食い", + "readging": "ともぐい", + "pos": "名詞", + "pn": -0.401855 + }, + { + "surface": "ラノリン", + "readging": "ラノリン", + "pos": "名詞", + "pn": -0.401856 + }, + { + "surface": "抗議", + "readging": "こうぎ", + "pos": "名詞", + "pn": -0.401861 + }, + { + "surface": "火入れ", + "readging": "ひいれ", + "pos": "名詞", + "pn": -0.40187 + }, + { + "surface": "チーム", + "readging": "チームプレー", + "pos": "名詞", + "pn": -0.401874 + }, + { + "surface": "葉", + "readging": "は", + "pos": "名詞", + "pn": -0.401877 + }, + { + "surface": "木簡", + "readging": "もっかん", + "pos": "名詞", + "pn": -0.401894 + }, + { + "surface": "野鼠", + "readging": "のねずみ", + "pos": "名詞", + "pn": -0.401902 + }, + { + "surface": "煽てる", + "readging": "おだてる", + "pos": "動詞", + "pn": -0.401906 + }, + { + "surface": "芝海老", + "readging": "しばえび", + "pos": "名詞", + "pn": -0.40191 + }, + { + "surface": "幹", + "readging": "かん", + "pos": "名詞", + "pn": -0.401932 + }, + { + "surface": "ドロン ゲーム", + "readging": "ドロン ゲーム", + "pos": "名詞", + "pn": -0.401947 + }, + { + "surface": "十人並", + "readging": "じゅうにんなみ", + "pos": "名詞", + "pn": -0.40195 + }, + { + "surface": "着目", + "readging": "ちゃくもく", + "pos": "名詞", + "pn": -0.401968 + }, + { + "surface": "持物", + "readging": "もちもの", + "pos": "名詞", + "pn": -0.401976 + }, + { + "surface": "陣容", + "readging": "じんよう", + "pos": "名詞", + "pn": -0.401978 + }, + { + "surface": "放鳥", + "readging": "ほうちょう", + "pos": "名詞", + "pn": -0.40199 + }, + { + "surface": "うかうか", + "readging": "うかうか", + "pos": "副詞", + "pn": -0.40199 + }, + { + "surface": "端縫い", + "readging": "はしぬい", + "pos": "名詞", + "pn": -0.402022 + }, + { + "surface": "頼み入る", + "readging": "たのみいる", + "pos": "動詞", + "pn": -0.402032 + }, + { + "surface": "光風", + "readging": "こうふう", + "pos": "名詞", + "pn": -0.402037 + }, + { + "surface": "神経症", + "readging": "しんけいしょう", + "pos": "名詞", + "pn": -0.402041 + }, + { + "surface": "篳篥", + "readging": "ひちりき", + "pos": "名詞", + "pn": -0.402067 + }, + { + "surface": "粗服", + "readging": "そふく", + "pos": "名詞", + "pn": -0.402075 + }, + { + "surface": "カウンター", + "readging": "カウンター", + "pos": "名詞", + "pn": -0.402076 + }, + { + "surface": "防波堤", + "readging": "ぼうはてい", + "pos": "名詞", + "pn": -0.402077 + }, + { + "surface": "ほつれる", + "readging": "ほつれる", + "pos": "動詞", + "pn": -0.402103 + }, + { + "surface": "遍路", + "readging": "へんろ", + "pos": "名詞", + "pn": -0.402136 + }, + { + "surface": "外陣", + "readging": "げじん", + "pos": "名詞", + "pn": -0.40214 + }, + { + "surface": "対す", + "readging": "たいす", + "pos": "動詞", + "pn": -0.402151 + }, + { + "surface": "抜き足", + "readging": "ぬきあし", + "pos": "名詞", + "pn": -0.402158 + }, + { + "surface": "徴兵", + "readging": "ちょうへい", + "pos": "名詞", + "pn": -0.402164 + }, + { + "surface": "入相", + "readging": "いりあい", + "pos": "名詞", + "pn": -0.402182 + }, + { + "surface": "中二階", + "readging": "ちゅうにかい", + "pos": "名詞", + "pn": -0.402205 + }, + { + "surface": "宿り", + "readging": "やどり", + "pos": "名詞", + "pn": -0.402223 + }, + { + "surface": "槍", + "readging": "そう", + "pos": "名詞", + "pn": -0.40223 + }, + { + "surface": "復円", + "readging": "ふくえん", + "pos": "名詞", + "pn": -0.402266 + }, + { + "surface": "幕切れ", + "readging": "まくぎれ", + "pos": "名詞", + "pn": -0.402269 + }, + { + "surface": "類焼", + "readging": "るいしょう", + "pos": "名詞", + "pn": -0.402275 + }, + { + "surface": "家蠅", + "readging": "いえばえ", + "pos": "名詞", + "pn": -0.402311 + }, + { + "surface": "種", + "readging": "ぐさ", + "pos": "名詞", + "pn": -0.402315 + }, + { + "surface": "えんか師", + "readging": "えんかし", + "pos": "名詞", + "pn": -0.402321 + }, + { + "surface": "一問一答", + "readging": "いちもんいっとう", + "pos": "名詞", + "pn": -0.402343 + }, + { + "surface": "碇草", + "readging": "いかりそう", + "pos": "名詞", + "pn": -0.402352 + }, + { + "surface": "愛玩", + "readging": "あいがん", + "pos": "名詞", + "pn": -0.402366 + }, + { + "surface": "山河", + "readging": "さんか", + "pos": "名詞", + "pn": -0.40237 + }, + { + "surface": "令息", + "readging": "れいそく", + "pos": "名詞", + "pn": -0.402378 + }, + { + "surface": "門札", + "readging": "もんさつ", + "pos": "名詞", + "pn": -0.402386 + }, + { + "surface": "軍営", + "readging": "ぐんえい", + "pos": "名詞", + "pn": -0.402395 + }, + { + "surface": "上皮", + "readging": "じょうひ", + "pos": "名詞", + "pn": -0.402404 + }, + { + "surface": "狩", + "readging": "かり", + "pos": "名詞", + "pn": -0.402411 + }, + { + "surface": "原理", + "readging": "げんり", + "pos": "名詞", + "pn": -0.402442 + }, + { + "surface": "叔母", + "readging": "しゅくぼ", + "pos": "名詞", + "pn": -0.402467 + }, + { + "surface": "逃げ", + "readging": "にげ", + "pos": "名詞", + "pn": -0.40251 + }, + { + "surface": "鉱滓", + "readging": "こうさい", + "pos": "名詞", + "pn": -0.402521 + }, + { + "surface": "蚊柱", + "readging": "かばしら", + "pos": "名詞", + "pn": -0.402523 + }, + { + "surface": "欧文脈", + "readging": "おうぶんみゃく", + "pos": "名詞", + "pn": -0.402537 + }, + { + "surface": "骨牌", + "readging": "こっぱい", + "pos": "名詞", + "pn": -0.402548 + }, + { + "surface": "副作用", + "readging": "ふくさよう", + "pos": "名詞", + "pn": -0.402549 + }, + { + "surface": "無軌道", + "readging": "むきどう", + "pos": "名詞", + "pn": -0.402566 + }, + { + "surface": "禅", + "readging": "ぜん", + "pos": "名詞", + "pn": -0.402568 + }, + { + "surface": "水揚", + "readging": "みずあげ", + "pos": "名詞", + "pn": -0.402601 + }, + { + "surface": "乾パン", + "readging": "かんパン", + "pos": "名詞", + "pn": -0.402624 + }, + { + "surface": "後続", + "readging": "こうぞく", + "pos": "名詞", + "pn": -0.402626 + }, + { + "surface": "老いさらばえる", + "readging": "おいさらばえる", + "pos": "動詞", + "pn": -0.402628 + }, + { + "surface": "宿命", + "readging": "しゅくめい", + "pos": "名詞", + "pn": -0.402637 + }, + { + "surface": "延長", + "readging": "えんちょう", + "pos": "名詞", + "pn": -0.402639 + }, + { + "surface": "井目", + "readging": "せいもく", + "pos": "名詞", + "pn": -0.402669 + }, + { + "surface": "香車", + "readging": "きょうしゃ", + "pos": "名詞", + "pn": -0.40267 + }, + { + "surface": "再現", + "readging": "さいげん", + "pos": "名詞", + "pn": -0.402686 + }, + { + "surface": "証する", + "readging": "しょうする", + "pos": "動詞", + "pn": -0.402692 + }, + { + "surface": "体験", + "readging": "たいけん", + "pos": "名詞", + "pn": -0.402713 + }, + { + "surface": "闘諍", + "readging": "とうじょう", + "pos": "名詞", + "pn": -0.402714 + }, + { + "surface": "出店", + "readging": "でみせ", + "pos": "名詞", + "pn": -0.402786 + }, + { + "surface": "落胆", + "readging": "らくたん", + "pos": "名詞", + "pn": -0.402799 + }, + { + "surface": "牢名主", + "readging": "ろうなぬし", + "pos": "名詞", + "pn": -0.402805 + }, + { + "surface": "コールド ゲーム", + "readging": "コールド ゲーム", + "pos": "名詞", + "pn": -0.402825 + }, + { + "surface": "湖底", + "readging": "こてい", + "pos": "名詞", + "pn": -0.402827 + }, + { + "surface": "継室", + "readging": "けいしつ", + "pos": "名詞", + "pn": -0.402837 + }, + { + "surface": "近似計算", + "readging": "きんじけいさん", + "pos": "名詞", + "pn": -0.40288 + }, + { + "surface": "分析", + "readging": "ぶんせき", + "pos": "名詞", + "pn": -0.40289 + }, + { + "surface": "丹頂", + "readging": "たんちょう", + "pos": "名詞", + "pn": -0.402914 + }, + { + "surface": "隊伍", + "readging": "たいご", + "pos": "名詞", + "pn": -0.402915 + }, + { + "surface": "向う岸", + "readging": "むこうぎし", + "pos": "名詞", + "pn": -0.402916 + }, + { + "surface": "廃藩置県", + "readging": "はいはんちけん", + "pos": "名詞", + "pn": -0.402924 + }, + { + "surface": "地滑り", + "readging": "じすべり", + "pos": "名詞", + "pn": -0.402924 + }, + { + "surface": "陪乗", + "readging": "ばいじょう", + "pos": "名詞", + "pn": -0.402946 + }, + { + "surface": "総身", + "readging": "そうしん", + "pos": "名詞", + "pn": -0.402951 + }, + { + "surface": "クレジット", + "readging": "クレジット", + "pos": "名詞", + "pn": -0.402971 + }, + { + "surface": "常温", + "readging": "じょうおん", + "pos": "名詞", + "pn": -0.402983 + }, + { + "surface": "典章", + "readging": "てんしょう", + "pos": "名詞", + "pn": -0.403012 + }, + { + "surface": "表裏", + "readging": "ひょうり", + "pos": "名詞", + "pn": -0.403013 + }, + { + "surface": "持主", + "readging": "もちぬし", + "pos": "名詞", + "pn": -0.403028 + }, + { + "surface": "四六時中", + "readging": "しろくじちゅう", + "pos": "名詞", + "pn": -0.40303 + }, + { + "surface": "揚力", + "readging": "ようりょく", + "pos": "名詞", + "pn": -0.403033 + }, + { + "surface": "間着", + "readging": "あいぎ", + "pos": "名詞", + "pn": -0.403037 + }, + { + "surface": "長嘯", + "readging": "ちょうしょう", + "pos": "名詞", + "pn": -0.40304 + }, + { + "surface": "肌合", + "readging": "はだあい", + "pos": "名詞", + "pn": -0.403056 + }, + { + "surface": "破獄", + "readging": "はごく", + "pos": "名詞", + "pn": -0.403092 + }, + { + "surface": "麦笛", + "readging": "むぎぶえ", + "pos": "名詞", + "pn": -0.40314 + }, + { + "surface": "原由", + "readging": "げんゆ", + "pos": "名詞", + "pn": -0.403141 + }, + { + "surface": "切干", + "readging": "きりぼし", + "pos": "名詞", + "pn": -0.403148 + }, + { + "surface": "諒", + "readging": "りょう", + "pos": "名詞", + "pn": -0.403193 + }, + { + "surface": "蛍袋", + "readging": "ほたるぶくろ", + "pos": "名詞", + "pn": -0.403198 + }, + { + "surface": "アース", + "readging": "アース", + "pos": "名詞", + "pn": -0.403204 + }, + { + "surface": "手付金", + "readging": "てつけきん", + "pos": "名詞", + "pn": -0.403225 + }, + { + "surface": "弗素", + "readging": "ふっそ", + "pos": "名詞", + "pn": -0.403249 + }, + { + "surface": "枢要", + "readging": "すうよう", + "pos": "名詞", + "pn": -0.40327 + }, + { + "surface": "現代仮名遣", + "readging": "げんだいかなづかい", + "pos": "名詞", + "pn": -0.403286 + }, + { + "surface": "穂並", + "readging": "ほなみ", + "pos": "名詞", + "pn": -0.403295 + }, + { + "surface": "顧客", + "readging": "こかく", + "pos": "名詞", + "pn": -0.403321 + }, + { + "surface": "蛹", + "readging": "さなぎ", + "pos": "名詞", + "pn": -0.403327 + }, + { + "surface": "手刀", + "readging": "てがたな", + "pos": "名詞", + "pn": -0.40334 + }, + { + "surface": "六書", + "readging": "りくしょ", + "pos": "名詞", + "pn": -0.403341 + }, + { + "surface": "豆乳", + "readging": "とうにゅう", + "pos": "名詞", + "pn": -0.403344 + }, + { + "surface": "近道", + "readging": "ちかみち", + "pos": "名詞", + "pn": -0.403344 + }, + { + "surface": "同志", + "readging": "どうし", + "pos": "名詞", + "pn": -0.40336 + }, + { + "surface": "初盆", + "readging": "はつぼん", + "pos": "名詞", + "pn": -0.403378 + }, + { + "surface": "荒巻", + "readging": "あらまき", + "pos": "名詞", + "pn": -0.403391 + }, + { + "surface": "モンキー", + "readging": "モンキー", + "pos": "名詞", + "pn": -0.403397 + }, + { + "surface": "茅の輪", + "readging": "ちのわ", + "pos": "名詞", + "pn": -0.4034 + }, + { + "surface": "登仙", + "readging": "とうせん", + "pos": "名詞", + "pn": -0.403413 + }, + { + "surface": "ヒスタミン", + "readging": "ヒスタミン", + "pos": "名詞", + "pn": -0.403413 + }, + { + "surface": "当分", + "readging": "とうぶん", + "pos": "副詞", + "pn": -0.403434 + }, + { + "surface": "桜草", + "readging": "さくらそう", + "pos": "名詞", + "pn": -0.403457 + }, + { + "surface": "人買", + "readging": "ひとかい", + "pos": "名詞", + "pn": -0.403466 + }, + { + "surface": "小鼓", + "readging": "こつづみ", + "pos": "名詞", + "pn": -0.403483 + }, + { + "surface": "雑税", + "readging": "ざつぜい", + "pos": "名詞", + "pn": -0.403488 + }, + { + "surface": "餃子", + "readging": "ギョーザ", + "pos": "名詞", + "pn": -0.403492 + }, + { + "surface": "焼物", + "readging": "やきもの", + "pos": "名詞", + "pn": -0.403515 + }, + { + "surface": "背縫い", + "readging": "せぬい", + "pos": "名詞", + "pn": -0.40353 + }, + { + "surface": "奉加帳", + "readging": "ほうがちょう", + "pos": "名詞", + "pn": -0.403581 + }, + { + "surface": "途上", + "readging": "とじょう", + "pos": "名詞", + "pn": -0.403583 + }, + { + "surface": "弛緩", + "readging": "しかん", + "pos": "名詞", + "pn": -0.403591 + }, + { + "surface": "返品", + "readging": "へんぴん", + "pos": "名詞", + "pn": -0.403607 + }, + { + "surface": "巡行", + "readging": "じゅんこう", + "pos": "名詞", + "pn": -0.403611 + }, + { + "surface": "妊力", + "readging": "にんりょく", + "pos": "名詞", + "pn": -0.403612 + }, + { + "surface": "撥音便", + "readging": "はつおんびん", + "pos": "名詞", + "pn": -0.403618 + }, + { + "surface": "夏蜜柑", + "readging": "なつみかん", + "pos": "名詞", + "pn": -0.403618 + }, + { + "surface": "ピラミッド", + "readging": "ピラミッド", + "pos": "名詞", + "pn": -0.403619 + }, + { + "surface": "ひらひら", + "readging": "ひらひら", + "pos": "副詞", + "pn": -0.403626 + }, + { + "surface": "頭重", + "readging": "ずおも", + "pos": "名詞", + "pn": -0.403637 + }, + { + "surface": "漁猟", + "readging": "ぎょりょう", + "pos": "名詞", + "pn": -0.403641 + }, + { + "surface": "寄添う", + "readging": "よりそう", + "pos": "動詞", + "pn": -0.403719 + }, + { + "surface": "蛇", + "readging": "じゃ", + "pos": "名詞", + "pn": -0.403728 + }, + { + "surface": "さくら", + "readging": "さくら", + "pos": "名詞", + "pn": -0.403752 + }, + { + "surface": "尻隠し", + "readging": "しりかくし", + "pos": "名詞", + "pn": -0.403788 + }, + { + "surface": "ダービー", + "readging": "ダービー", + "pos": "名詞", + "pn": -0.403794 + }, + { + "surface": "蓬莱", + "readging": "ほうらい", + "pos": "名詞", + "pn": -0.403799 + }, + { + "surface": "天地", + "readging": "あめつち", + "pos": "名詞", + "pn": -0.4038 + }, + { + "surface": "梟首", + "readging": "きょうしゅ", + "pos": "名詞", + "pn": -0.403802 + }, + { + "surface": "火勢", + "readging": "かせい", + "pos": "名詞", + "pn": -0.403818 + }, + { + "surface": "入知恵", + "readging": "いれぢえ", + "pos": "名詞", + "pn": -0.403888 + }, + { + "surface": "家持", + "readging": "いえもち", + "pos": "名詞", + "pn": -0.403893 + }, + { + "surface": "口減らし", + "readging": "くちべらし", + "pos": "名詞", + "pn": -0.403897 + }, + { + "surface": "漂流", + "readging": "ひょうりゅう", + "pos": "名詞", + "pn": -0.403902 + }, + { + "surface": "更更", + "readging": "さらさら", + "pos": "副詞", + "pn": -0.403903 + }, + { + "surface": "八木", + "readging": "はちぼく", + "pos": "名詞", + "pn": -0.403926 + }, + { + "surface": "旗頭", + "readging": "はたがしら", + "pos": "名詞", + "pn": -0.403926 + }, + { + "surface": "外海", + "readging": "そとうみ", + "pos": "名詞", + "pn": -0.403945 + }, + { + "surface": "抗毒素", + "readging": "こうどくそ", + "pos": "名詞", + "pn": -0.403964 + }, + { + "surface": "持出す", + "readging": "もちだす", + "pos": "動詞", + "pn": -0.403973 + }, + { + "surface": "御内方", + "readging": "ごないほう", + "pos": "名詞", + "pn": -0.403979 + }, + { + "surface": "紙燭", + "readging": "しそく", + "pos": "名詞", + "pn": -0.403981 + }, + { + "surface": "一端", + "readging": "いったん", + "pos": "名詞", + "pn": -0.403994 + }, + { + "surface": "帰納", + "readging": "きのう", + "pos": "名詞", + "pn": -0.404004 + }, + { + "surface": "辻駕籠", + "readging": "つじかご", + "pos": "名詞", + "pn": -0.404033 + }, + { + "surface": "煮豆", + "readging": "にまめ", + "pos": "名詞", + "pn": -0.404034 + }, + { + "surface": "墓標", + "readging": "ぼひょう", + "pos": "名詞", + "pn": -0.404048 + }, + { + "surface": "恵胡海苔", + "readging": "えごのり", + "pos": "名詞", + "pn": -0.40405 + }, + { + "surface": "バレエ", + "readging": "バレエ", + "pos": "名詞", + "pn": -0.404077 + }, + { + "surface": "陰文", + "readging": "いんぶん", + "pos": "名詞", + "pn": -0.404086 + }, + { + "surface": "トップ", + "readging": "トップニュース", + "pos": "名詞", + "pn": -0.404087 + }, + { + "surface": "検番", + "readging": "けんばん", + "pos": "名詞", + "pn": -0.404106 + }, + { + "surface": "黄熱病", + "readging": "おうねつびょう", + "pos": "名詞", + "pn": -0.404131 + }, + { + "surface": "ぽろりと", + "readging": "ぽろりと", + "pos": "副詞", + "pn": -0.404167 + }, + { + "surface": "堀", + "readging": "ほり", + "pos": "名詞", + "pn": -0.404173 + }, + { + "surface": "館", + "readging": "かん", + "pos": "名詞", + "pn": -0.404174 + }, + { + "surface": "入棺", + "readging": "にゅうかん", + "pos": "名詞", + "pn": -0.404178 + }, + { + "surface": "在校", + "readging": "ざいこう", + "pos": "名詞", + "pn": -0.404191 + }, + { + "surface": "臨場", + "readging": "りんじょう", + "pos": "名詞", + "pn": -0.404217 + }, + { + "surface": "シルク", + "readging": "シルク", + "pos": "名詞", + "pn": -0.404217 + }, + { + "surface": "原紙", + "readging": "げんし", + "pos": "名詞", + "pn": -0.404242 + }, + { + "surface": "猟官", + "readging": "りょうかん", + "pos": "名詞", + "pn": -0.40425 + }, + { + "surface": "火の番", + "readging": "ひのばん", + "pos": "名詞", + "pn": -0.404253 + }, + { + "surface": "独鈷", + "readging": "とっこ", + "pos": "名詞", + "pn": -0.404264 + }, + { + "surface": "本通夜", + "readging": "ほんつや", + "pos": "名詞", + "pn": -0.404302 + }, + { + "surface": "素通し", + "readging": "すどおし", + "pos": "名詞", + "pn": -0.404335 + }, + { + "surface": "部下", + "readging": "ぶか", + "pos": "名詞", + "pn": -0.404337 + }, + { + "surface": "半旗", + "readging": "はんき", + "pos": "名詞", + "pn": -0.404346 + }, + { + "surface": "極言", + "readging": "きょくげん", + "pos": "名詞", + "pn": -0.404354 + }, + { + "surface": "傷痍", + "readging": "しょうい", + "pos": "名詞", + "pn": -0.404377 + }, + { + "surface": "腸線", + "readging": "ちょうせん", + "pos": "名詞", + "pn": -0.404411 + }, + { + "surface": "半農半漁", + "readging": "はんのうはんぎょ", + "pos": "名詞", + "pn": -0.404413 + }, + { + "surface": "木の頭", + "readging": "きのかしら", + "pos": "名詞", + "pn": -0.404445 + }, + { + "surface": "見合せる", + "readging": "みあわせる", + "pos": "動詞", + "pn": -0.404449 + }, + { + "surface": "立腐れ", + "readging": "たちぐされ", + "pos": "名詞", + "pn": -0.404454 + }, + { + "surface": "峡湾", + "readging": "きょうわん", + "pos": "名詞", + "pn": -0.404462 + }, + { + "surface": "歩調", + "readging": "ほちょう", + "pos": "名詞", + "pn": -0.404467 + }, + { + "surface": "焼玉", + "readging": "やきだま", + "pos": "名詞", + "pn": -0.404468 + }, + { + "surface": "別院", + "readging": "べついん", + "pos": "名詞", + "pn": -0.404473 + }, + { + "surface": "抜き糸", + "readging": "ぬきいと", + "pos": "名詞", + "pn": -0.404485 + }, + { + "surface": "興業", + "readging": "こうぎょう", + "pos": "名詞", + "pn": -0.404504 + }, + { + "surface": "羽繕い", + "readging": "はづくろい", + "pos": "名詞", + "pn": -0.404505 + }, + { + "surface": "バーベル", + "readging": "バーベル", + "pos": "名詞", + "pn": -0.40451 + }, + { + "surface": "連濁", + "readging": "れんだく", + "pos": "名詞", + "pn": -0.404512 + }, + { + "surface": "友千鳥", + "readging": "ともちどり", + "pos": "名詞", + "pn": -0.404537 + }, + { + "surface": "聞做す", + "readging": "ききなす", + "pos": "動詞", + "pn": -0.404542 + }, + { + "surface": "ソテー", + "readging": "ソテー", + "pos": "名詞", + "pn": -0.404549 + }, + { + "surface": "水肥", + "readging": "すいひ", + "pos": "名詞", + "pn": -0.404549 + }, + { + "surface": "撥鬢", + "readging": "ばちびん", + "pos": "名詞", + "pn": -0.404556 + }, + { + "surface": "熊", + "readging": "くま", + "pos": "名詞", + "pn": -0.404567 + }, + { + "surface": "制動", + "readging": "せいどう", + "pos": "名詞", + "pn": -0.404592 + }, + { + "surface": "主観", + "readging": "しゅかん", + "pos": "名詞", + "pn": -0.404597 + }, + { + "surface": "煙波", + "readging": "えんぱ", + "pos": "名詞", + "pn": -0.404606 + }, + { + "surface": "半身不随", + "readging": "はんしんふずい", + "pos": "名詞", + "pn": -0.404621 + }, + { + "surface": "草葉の陰", + "readging": "くさばのかげ", + "pos": "名詞", + "pn": -0.404628 + }, + { + "surface": "送籍", + "readging": "そうせき", + "pos": "名詞", + "pn": -0.404637 + }, + { + "surface": "食い代", + "readging": "くいしろ", + "pos": "名詞", + "pn": -0.404645 + }, + { + "surface": "抜き出す", + "readging": "ぬきだす", + "pos": "動詞", + "pn": -0.40466 + }, + { + "surface": "名主", + "readging": "なぬし", + "pos": "名詞", + "pn": -0.404684 + }, + { + "surface": "ペン", + "readging": "ペン", + "pos": "名詞", + "pn": -0.404691 + }, + { + "surface": "鬘", + "readging": "かずら", + "pos": "名詞", + "pn": -0.404704 + }, + { + "surface": "忍び", + "readging": "しのび", + "pos": "名詞", + "pn": -0.404714 + }, + { + "surface": "諾う", + "readging": "うべなう", + "pos": "動詞", + "pn": -0.404726 + }, + { + "surface": "炊合せ", + "readging": "たきあわせ", + "pos": "名詞", + "pn": -0.404752 + }, + { + "surface": "台子", + "readging": "だいす", + "pos": "名詞", + "pn": -0.404777 + }, + { + "surface": "打上げ花火", + "readging": "うちあげはなび", + "pos": "名詞", + "pn": -0.404842 + }, + { + "surface": "狆くしゃ", + "readging": "ちんくしゃ", + "pos": "名詞", + "pn": -0.40486 + }, + { + "surface": "土", + "readging": "つち", + "pos": "名詞", + "pn": -0.404863 + }, + { + "surface": "風声", + "readging": "ふうせい", + "pos": "名詞", + "pn": -0.40488 + }, + { + "surface": "複葉", + "readging": "ふくよう", + "pos": "名詞", + "pn": -0.404887 + }, + { + "surface": "椴松", + "readging": "とどまつ", + "pos": "名詞", + "pn": -0.404898 + }, + { + "surface": "梶棒", + "readging": "かじぼう", + "pos": "名詞", + "pn": -0.404978 + }, + { + "surface": "矛先", + "readging": "ほこさき", + "pos": "名詞", + "pn": -0.405012 + }, + { + "surface": "常軌", + "readging": "じょうき", + "pos": "名詞", + "pn": -0.405014 + }, + { + "surface": "孫の手", + "readging": "まごのて", + "pos": "名詞", + "pn": -0.405015 + }, + { + "surface": "博覧強記", + "readging": "はくらんきょうき", + "pos": "名詞", + "pn": -0.40502 + }, + { + "surface": "運河", + "readging": "うんが", + "pos": "名詞", + "pn": -0.405043 + }, + { + "surface": "発走", + "readging": "はっそう", + "pos": "名詞", + "pn": -0.405051 + }, + { + "surface": "等号", + "readging": "とうごう", + "pos": "名詞", + "pn": -0.405059 + }, + { + "surface": "宗", + "readging": "そう", + "pos": "名詞", + "pn": -0.405082 + }, + { + "surface": "まじまじ", + "readging": "まじまじ", + "pos": "副詞", + "pn": -0.405088 + }, + { + "surface": "革砥", + "readging": "かわと", + "pos": "名詞", + "pn": -0.405091 + }, + { + "surface": "製作", + "readging": "せいさく", + "pos": "名詞", + "pn": -0.405106 + }, + { + "surface": "切火", + "readging": "きりび", + "pos": "名詞", + "pn": -0.405123 + }, + { + "surface": "尻目", + "readging": "しりめ", + "pos": "名詞", + "pn": -0.405145 + }, + { + "surface": "人見知り", + "readging": "ひとみしり", + "pos": "名詞", + "pn": -0.405148 + }, + { + "surface": "雲際", + "readging": "うんさい", + "pos": "名詞", + "pn": -0.405154 + }, + { + "surface": "小作", + "readging": "こさく", + "pos": "名詞", + "pn": -0.405162 + }, + { + "surface": "レディー", + "readging": "レディー", + "pos": "名詞", + "pn": -0.405164 + }, + { + "surface": "以夷制夷", + "readging": "いいせいい", + "pos": "名詞", + "pn": -0.405176 + }, + { + "surface": "眉毛", + "readging": "まゆげ", + "pos": "名詞", + "pn": -0.405188 + }, + { + "surface": "散歩", + "readging": "さんぽ", + "pos": "名詞", + "pn": -0.4052 + }, + { + "surface": "接収", + "readging": "せっしゅう", + "pos": "名詞", + "pn": -0.405205 + }, + { + "surface": "好く", + "readging": "すく", + "pos": "動詞", + "pn": -0.405228 + }, + { + "surface": "爾後", + "readging": "じご", + "pos": "名詞", + "pn": -0.405231 + }, + { + "surface": "キャッチャー", + "readging": "キャッチャーボート", + "pos": "名詞", + "pn": -0.405247 + }, + { + "surface": "不便", + "readging": "ふべん", + "pos": "名詞", + "pn": -0.405272 + }, + { + "surface": "群衆", + "readging": "ぐんしゅう", + "pos": "名詞", + "pn": -0.405299 + }, + { + "surface": "割拠", + "readging": "かっきょ", + "pos": "名詞", + "pn": -0.40531 + }, + { + "surface": "坑木", + "readging": "こうぼく", + "pos": "名詞", + "pn": -0.405322 + }, + { + "surface": "草書", + "readging": "そうしょ", + "pos": "名詞", + "pn": -0.40534 + }, + { + "surface": "光琳蒔絵", + "readging": "こうりんまきえ", + "pos": "名詞", + "pn": -0.40541 + }, + { + "surface": "熟成", + "readging": "じゅくせい", + "pos": "名詞", + "pn": -0.405421 + }, + { + "surface": "開店休業", + "readging": "かいてんきゅうぎょう", + "pos": "名詞", + "pn": -0.405441 + }, + { + "surface": "取手", + "readging": "とって", + "pos": "名詞", + "pn": -0.405469 + }, + { + "surface": "四股", + "readging": "しこ", + "pos": "名詞", + "pn": -0.405483 + }, + { + "surface": "虚飾", + "readging": "きょしょく", + "pos": "名詞", + "pn": -0.405492 + }, + { + "surface": "玉房", + "readging": "たまぶさ", + "pos": "名詞", + "pn": -0.405522 + }, + { + "surface": "金糸", + "readging": "きんし", + "pos": "名詞", + "pn": -0.405533 + }, + { + "surface": "離島", + "readging": "りとう", + "pos": "名詞", + "pn": -0.405541 + }, + { + "surface": "プロット", + "readging": "プロット", + "pos": "名詞", + "pn": -0.405548 + }, + { + "surface": "両用", + "readging": "りょうよう", + "pos": "名詞", + "pn": -0.405565 + }, + { + "surface": "内交渉", + "readging": "ないこうしょう", + "pos": "名詞", + "pn": -0.405571 + }, + { + "surface": "次の間", + "readging": "つぎのま", + "pos": "名詞", + "pn": -0.405654 + }, + { + "surface": "書置き", + "readging": "かきおき", + "pos": "名詞", + "pn": -0.405654 + }, + { + "surface": "小取回し", + "readging": "ことりまわし", + "pos": "名詞", + "pn": -0.405697 + }, + { + "surface": "僚艦", + "readging": "りょうかん", + "pos": "名詞", + "pn": -0.405721 + }, + { + "surface": "尼", + "readging": "に", + "pos": "名詞", + "pn": -0.405737 + }, + { + "surface": "他言", + "readging": "たごん", + "pos": "名詞", + "pn": -0.405748 + }, + { + "surface": "パッション", + "readging": "パッション", + "pos": "名詞", + "pn": -0.405754 + }, + { + "surface": "把持", + "readging": "はじ", + "pos": "名詞", + "pn": -0.405759 + }, + { + "surface": "保存", + "readging": "ほぞん", + "pos": "名詞", + "pn": -0.405763 + }, + { + "surface": "ダイレクト メール", + "readging": "ダイレクト メール", + "pos": "名詞", + "pn": -0.405769 + }, + { + "surface": "臭み", + "readging": "くさみ", + "pos": "名詞", + "pn": -0.405782 + }, + { + "surface": "連絡船", + "readging": "れんらくせん", + "pos": "名詞", + "pn": -0.405787 + }, + { + "surface": "授業", + "readging": "じゅぎょう", + "pos": "名詞", + "pn": -0.405807 + }, + { + "surface": "一任", + "readging": "いちにん", + "pos": "名詞", + "pn": -0.405816 + }, + { + "surface": "毛槍", + "readging": "けやり", + "pos": "名詞", + "pn": -0.405846 + }, + { + "surface": "亜熱帯", + "readging": "あねったい", + "pos": "名詞", + "pn": -0.405848 + }, + { + "surface": "小幅", + "readging": "こはば", + "pos": "名詞", + "pn": -0.405852 + }, + { + "surface": "はさ", + "readging": "はさ", + "pos": "名詞", + "pn": -0.40586 + }, + { + "surface": "笈摺", + "readging": "おいずる", + "pos": "名詞", + "pn": -0.40587 + }, + { + "surface": "兵火", + "readging": "へいか", + "pos": "名詞", + "pn": -0.405877 + }, + { + "surface": "麻雀", + "readging": "マージャン", + "pos": "名詞", + "pn": -0.405899 + }, + { + "surface": "盗", + "readging": "とう", + "pos": "名詞", + "pn": -0.405899 + }, + { + "surface": "殺鼠剤", + "readging": "さっそざい", + "pos": "名詞", + "pn": -0.405899 + }, + { + "surface": "御尋ね者", + "readging": "おたずねもの", + "pos": "名詞", + "pn": -0.405911 + }, + { + "surface": "裾刈", + "readging": "すそがり", + "pos": "名詞", + "pn": -0.405913 + }, + { + "surface": "上", + "readging": "かみ", + "pos": "名詞", + "pn": -0.405922 + }, + { + "surface": "杉原", + "readging": "すぎわら", + "pos": "名詞", + "pn": -0.40594 + }, + { + "surface": "ストロー", + "readging": "ストローハット", + "pos": "名詞", + "pn": -0.405946 + }, + { + "surface": "リハビリテーション", + "readging": "リハビリテーション", + "pos": "名詞", + "pn": -0.405947 + }, + { + "surface": "鍬入れ", + "readging": "くわいれ", + "pos": "名詞", + "pn": -0.405956 + }, + { + "surface": "係数", + "readging": "けいすう", + "pos": "名詞", + "pn": -0.405958 + }, + { + "surface": "追放", + "readging": "ついほう", + "pos": "名詞", + "pn": -0.405958 + }, + { + "surface": "庭樹", + "readging": "ていじゅ", + "pos": "名詞", + "pn": -0.405958 + }, + { + "surface": "長屋", + "readging": "ながや", + "pos": "名詞", + "pn": -0.405965 + }, + { + "surface": "名目", + "readging": "みょうもく", + "pos": "名詞", + "pn": -0.405968 + }, + { + "surface": "銀笛", + "readging": "ぎんてき", + "pos": "名詞", + "pn": -0.405992 + }, + { + "surface": "直立", + "readging": "ちょくりつ", + "pos": "名詞", + "pn": -0.406026 + }, + { + "surface": "印影", + "readging": "いんえい", + "pos": "名詞", + "pn": -0.406035 + }, + { + "surface": "二度と", + "readging": "にどと", + "pos": "副詞", + "pn": -0.406042 + }, + { + "surface": "間違い", + "readging": "まちがい", + "pos": "名詞", + "pn": -0.406045 + }, + { + "surface": "全貌", + "readging": "ぜんぼう", + "pos": "名詞", + "pn": -0.406046 + }, + { + "surface": "チューリップ", + "readging": "チューリップ", + "pos": "名詞", + "pn": -0.406049 + }, + { + "surface": "着工", + "readging": "ちゃっこう", + "pos": "名詞", + "pn": -0.406055 + }, + { + "surface": "精査", + "readging": "せいさ", + "pos": "名詞", + "pn": -0.406073 + }, + { + "surface": "企画", + "readging": "きかく", + "pos": "名詞", + "pn": -0.406076 + }, + { + "surface": "溶剤", + "readging": "ようざい", + "pos": "名詞", + "pn": -0.40608 + }, + { + "surface": "寒帯", + "readging": "かんたい", + "pos": "名詞", + "pn": -0.406104 + }, + { + "surface": "家系", + "readging": "かけい", + "pos": "名詞", + "pn": -0.40611 + }, + { + "surface": "射干", + "readging": "しゃが", + "pos": "名詞", + "pn": -0.406137 + }, + { + "surface": "波枕", + "readging": "なみまくら", + "pos": "名詞", + "pn": -0.406146 + }, + { + "surface": "スナック", + "readging": "スナック", + "pos": "名詞", + "pn": -0.40619 + }, + { + "surface": "諧謔", + "readging": "かいぎゃく", + "pos": "名詞", + "pn": -0.406234 + }, + { + "surface": "想像", + "readging": "そうぞう", + "pos": "名詞", + "pn": -0.406237 + }, + { + "surface": "仕納め", + "readging": "しおさめ", + "pos": "名詞", + "pn": -0.406262 + }, + { + "surface": "一行", + "readging": "ひとくだり", + "pos": "名詞", + "pn": -0.406266 + }, + { + "surface": "麦藁", + "readging": "むぎわら", + "pos": "名詞", + "pn": -0.406268 + }, + { + "surface": "地殻", + "readging": "ちかく", + "pos": "名詞", + "pn": -0.406284 + }, + { + "surface": "濁点", + "readging": "だくてん", + "pos": "名詞", + "pn": -0.4063 + }, + { + "surface": "神前", + "readging": "しんぜん", + "pos": "名詞", + "pn": -0.406301 + }, + { + "surface": "張板", + "readging": "はりいた", + "pos": "名詞", + "pn": -0.406302 + }, + { + "surface": "解け合う", + "readging": "とけあう", + "pos": "動詞", + "pn": -0.406341 + }, + { + "surface": "律する", + "readging": "りっする", + "pos": "動詞", + "pn": -0.406351 + }, + { + "surface": "豆", + "readging": "とう", + "pos": "名詞", + "pn": -0.40636 + }, + { + "surface": "煮物", + "readging": "にもの", + "pos": "名詞", + "pn": -0.406361 + }, + { + "surface": "掛矢", + "readging": "かけや", + "pos": "名詞", + "pn": -0.406364 + }, + { + "surface": "体腔", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.406367 + }, + { + "surface": "抵当", + "readging": "ていとう", + "pos": "名詞", + "pn": -0.406387 + }, + { + "surface": "鉄砲虫", + "readging": "てっぽうむし", + "pos": "名詞", + "pn": -0.406401 + }, + { + "surface": "お平ら", + "readging": "おたいら", + "pos": "名詞", + "pn": -0.406408 + }, + { + "surface": "露地", + "readging": "ろじ", + "pos": "名詞", + "pn": -0.406432 + }, + { + "surface": "願い出る", + "readging": "ねがいでる", + "pos": "動詞", + "pn": -0.406441 + }, + { + "surface": "軍手", + "readging": "ぐんて", + "pos": "名詞", + "pn": -0.406443 + }, + { + "surface": "目睫", + "readging": "もくしょう", + "pos": "名詞", + "pn": -0.406447 + }, + { + "surface": "読み散らす", + "readging": "よみちらす", + "pos": "動詞", + "pn": -0.406464 + }, + { + "surface": "アイデア", + "readging": "アイデア", + "pos": "名詞", + "pn": -0.406469 + }, + { + "surface": "谷風", + "readging": "たにかぜ", + "pos": "名詞", + "pn": -0.406487 + }, + { + "surface": "経緯", + "readging": "けいい", + "pos": "名詞", + "pn": -0.406488 + }, + { + "surface": "高ずる", + "readging": "こうずる", + "pos": "動詞", + "pn": -0.40649 + }, + { + "surface": "硬膏", + "readging": "こうこう", + "pos": "名詞", + "pn": -0.406496 + }, + { + "surface": "直穿き", + "readging": "じかばき", + "pos": "名詞", + "pn": -0.406506 + }, + { + "surface": "胸底", + "readging": "きょうてい", + "pos": "名詞", + "pn": -0.406515 + }, + { + "surface": "土用", + "readging": "どよう", + "pos": "名詞", + "pn": -0.406517 + }, + { + "surface": "解説", + "readging": "かいせつ", + "pos": "名詞", + "pn": -0.406533 + }, + { + "surface": "綾地", + "readging": "あやじ", + "pos": "名詞", + "pn": -0.406554 + }, + { + "surface": "系列", + "readging": "けいれつ", + "pos": "名詞", + "pn": -0.406555 + }, + { + "surface": "遮二無二", + "readging": "しゃにむに", + "pos": "副詞", + "pn": -0.406575 + }, + { + "surface": "大道具", + "readging": "おおどうぐ", + "pos": "名詞", + "pn": -0.406586 + }, + { + "surface": "公器", + "readging": "こうき", + "pos": "名詞", + "pn": -0.406608 + }, + { + "surface": "炭鉱", + "readging": "たんこう", + "pos": "名詞", + "pn": -0.406616 + }, + { + "surface": "論拠", + "readging": "ろんきょ", + "pos": "名詞", + "pn": -0.406628 + }, + { + "surface": "月遅れ", + "readging": "つきおくれ", + "pos": "名詞", + "pn": -0.406629 + }, + { + "surface": "真相", + "readging": "しんそう", + "pos": "名詞", + "pn": -0.406654 + }, + { + "surface": "補佐", + "readging": "ほさ", + "pos": "名詞", + "pn": -0.406666 + }, + { + "surface": "箍", + "readging": "たが", + "pos": "名詞", + "pn": -0.406669 + }, + { + "surface": "追認", + "readging": "ついにん", + "pos": "名詞", + "pn": -0.406679 + }, + { + "surface": "輿入れ", + "readging": "こしいれ", + "pos": "名詞", + "pn": -0.406701 + }, + { + "surface": "投擲", + "readging": "とうてき", + "pos": "名詞", + "pn": -0.406705 + }, + { + "surface": "戦陣", + "readging": "せんじん", + "pos": "名詞", + "pn": -0.406707 + }, + { + "surface": "パンダ", + "readging": "パンダ", + "pos": "名詞", + "pn": -0.406708 + }, + { + "surface": "真珠", + "readging": "しんじゅ", + "pos": "名詞", + "pn": -0.406735 + }, + { + "surface": "青貝", + "readging": "あおがい", + "pos": "名詞", + "pn": -0.406737 + }, + { + "surface": "絵画", + "readging": "かいが", + "pos": "名詞", + "pn": -0.406746 + }, + { + "surface": "蒲鉾形", + "readging": "かまぼこがた", + "pos": "名詞", + "pn": -0.406748 + }, + { + "surface": "狛犬", + "readging": "こまいぬ", + "pos": "名詞", + "pn": -0.406752 + }, + { + "surface": "書簡", + "readging": "しょかん", + "pos": "名詞", + "pn": -0.406757 + }, + { + "surface": "巡回", + "readging": "じゅんかい", + "pos": "名詞", + "pn": -0.40677 + }, + { + "surface": "透析", + "readging": "とうせき", + "pos": "名詞", + "pn": -0.406772 + }, + { + "surface": "新盆", + "readging": "にいぼん", + "pos": "名詞", + "pn": -0.406774 + }, + { + "surface": "寸借", + "readging": "すんしゃく", + "pos": "名詞", + "pn": -0.406776 + }, + { + "surface": "三頭政治", + "readging": "さんとうせいじ", + "pos": "名詞", + "pn": -0.406779 + }, + { + "surface": "見解", + "readging": "けんかい", + "pos": "名詞", + "pn": -0.406787 + }, + { + "surface": "スタイリスト", + "readging": "スタイリスト", + "pos": "名詞", + "pn": -0.406789 + }, + { + "surface": "冷え込む", + "readging": "ひえこむ", + "pos": "動詞", + "pn": -0.406807 + }, + { + "surface": "リモート", + "readging": "リモートセンシング", + "pos": "名詞", + "pn": -0.406812 + }, + { + "surface": "受流す", + "readging": "うけながす", + "pos": "動詞", + "pn": -0.406818 + }, + { + "surface": "禁漁", + "readging": "きんぎょ", + "pos": "名詞", + "pn": -0.40682 + }, + { + "surface": "押し寄せる", + "readging": "おしよせる", + "pos": "動詞", + "pn": -0.406824 + }, + { + "surface": "根無し言", + "readging": "ねなしごと", + "pos": "名詞", + "pn": -0.40684 + }, + { + "surface": "一如", + "readging": "いちにょ", + "pos": "名詞", + "pn": -0.406844 + }, + { + "surface": "谷", + "readging": "こく", + "pos": "名詞", + "pn": -0.406864 + }, + { + "surface": "胡瓜", + "readging": "きゅうり", + "pos": "名詞", + "pn": -0.406902 + }, + { + "surface": "朝敵", + "readging": "ちょうてき", + "pos": "名詞", + "pn": -0.406921 + }, + { + "surface": "宵闇", + "readging": "よいやみ", + "pos": "名詞", + "pn": -0.406923 + }, + { + "surface": "作条", + "readging": "さくじょう", + "pos": "名詞", + "pn": -0.40693 + }, + { + "surface": "墓所", + "readging": "ぼしょ", + "pos": "名詞", + "pn": -0.406952 + }, + { + "surface": "浚渫", + "readging": "しゅんせつ", + "pos": "名詞", + "pn": -0.406969 + }, + { + "surface": "風合", + "readging": "ふうあい", + "pos": "名詞", + "pn": -0.40701 + }, + { + "surface": "総高", + "readging": "そうだか", + "pos": "名詞", + "pn": -0.407017 + }, + { + "surface": "収税", + "readging": "しゅうぜい", + "pos": "名詞", + "pn": -0.407039 + }, + { + "surface": "鳴戸", + "readging": "なると", + "pos": "名詞", + "pn": -0.407049 + }, + { + "surface": "首足", + "readging": "しゅそく", + "pos": "名詞", + "pn": -0.40706 + }, + { + "surface": "塩焼", + "readging": "しおやき", + "pos": "名詞", + "pn": -0.407076 + }, + { + "surface": "錐面", + "readging": "すいめん", + "pos": "名詞", + "pn": -0.407094 + }, + { + "surface": "落籍", + "readging": "らくせき", + "pos": "名詞", + "pn": -0.407105 + }, + { + "surface": "彩り", + "readging": "いろどり", + "pos": "名詞", + "pn": -0.407106 + }, + { + "surface": "記念", + "readging": "きねん", + "pos": "名詞", + "pn": -0.407151 + }, + { + "surface": "正条植え", + "readging": "せいじょううえ", + "pos": "名詞", + "pn": -0.407155 + }, + { + "surface": "策源地", + "readging": "さくげんち", + "pos": "名詞", + "pn": -0.407156 + }, + { + "surface": "バウンド", + "readging": "バウンド", + "pos": "名詞", + "pn": -0.407163 + }, + { + "surface": "老舗", + "readging": "ろうほ", + "pos": "名詞", + "pn": -0.407174 + }, + { + "surface": "金側", + "readging": "きんがわ", + "pos": "名詞", + "pn": -0.407182 + }, + { + "surface": "凡百", + "readging": "ぼんぴゃく", + "pos": "名詞", + "pn": -0.407185 + }, + { + "surface": "裾除け", + "readging": "すそよけ", + "pos": "名詞", + "pn": -0.407186 + }, + { + "surface": "半畳", + "readging": "はんじょう", + "pos": "名詞", + "pn": -0.407189 + }, + { + "surface": "蹴飛ばす", + "readging": "けとばす", + "pos": "動詞", + "pn": -0.407191 + }, + { + "surface": "等身", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.40721 + }, + { + "surface": "瓦版", + "readging": "かわらばん", + "pos": "名詞", + "pn": -0.407235 + }, + { + "surface": "雲の上", + "readging": "くものうえ", + "pos": "名詞", + "pn": -0.407246 + }, + { + "surface": "主体", + "readging": "しゅたい", + "pos": "名詞", + "pn": -0.40725 + }, + { + "surface": "空発", + "readging": "くうはつ", + "pos": "名詞", + "pn": -0.407255 + }, + { + "surface": "葛湯", + "readging": "くずゆ", + "pos": "名詞", + "pn": -0.407281 + }, + { + "surface": "鄙歌", + "readging": "ひなうた", + "pos": "名詞", + "pn": -0.407282 + }, + { + "surface": "鈴", + "readging": "りん", + "pos": "名詞", + "pn": -0.407286 + }, + { + "surface": "手記", + "readging": "しゅき", + "pos": "名詞", + "pn": -0.407293 + }, + { + "surface": "地方", + "readging": "じかた", + "pos": "名詞", + "pn": -0.407313 + }, + { + "surface": "グッズ", + "readging": "グッズ", + "pos": "名詞", + "pn": -0.407326 + }, + { + "surface": "対処", + "readging": "たいしょ", + "pos": "名詞", + "pn": -0.407351 + }, + { + "surface": "返礼", + "readging": "へんれい", + "pos": "名詞", + "pn": -0.407371 + }, + { + "surface": "則る", + "readging": "のっとる", + "pos": "動詞", + "pn": -0.407372 + }, + { + "surface": "踏付ける", + "readging": "ふみつける", + "pos": "動詞", + "pn": -0.40741 + }, + { + "surface": "自分自身", + "readging": "じぶんじしん", + "pos": "名詞", + "pn": -0.407434 + }, + { + "surface": "寡頭政治", + "readging": "かとうせいじ", + "pos": "名詞", + "pn": -0.407448 + }, + { + "surface": "飯盛", + "readging": "めしもり", + "pos": "名詞", + "pn": -0.407499 + }, + { + "surface": "キー", + "readging": "キーパンチャー", + "pos": "名詞", + "pn": -0.407527 + }, + { + "surface": "大和", + "readging": "やまとごと", + "pos": "名詞", + "pn": -0.407539 + }, + { + "surface": "ブリーフケース", + "readging": "ブリーフケース", + "pos": "名詞", + "pn": -0.407545 + }, + { + "surface": "移項", + "readging": "いこう", + "pos": "名詞", + "pn": -0.407565 + }, + { + "surface": "査察", + "readging": "ささつ", + "pos": "名詞", + "pn": -0.407589 + }, + { + "surface": "からっけつ", + "readging": "からっけつ", + "pos": "名詞", + "pn": -0.407593 + }, + { + "surface": "立脚", + "readging": "りっきゃく", + "pos": "名詞", + "pn": -0.407607 + }, + { + "surface": "墓標", + "readging": "はかじるし", + "pos": "名詞", + "pn": -0.407614 + }, + { + "surface": "酉", + "readging": "とり", + "pos": "名詞", + "pn": -0.407618 + }, + { + "surface": "方途", + "readging": "ほうと", + "pos": "名詞", + "pn": -0.407641 + }, + { + "surface": "丸儲け", + "readging": "まるもうけ", + "pos": "名詞", + "pn": -0.407641 + }, + { + "surface": "森", + "readging": "もり", + "pos": "名詞", + "pn": -0.40765 + }, + { + "surface": "文献学", + "readging": "ぶんけんがく", + "pos": "名詞", + "pn": -0.40767 + }, + { + "surface": "有徳", + "readging": "ゆうとく", + "pos": "名詞", + "pn": -0.40768 + }, + { + "surface": "旗雲", + "readging": "はたぐも", + "pos": "名詞", + "pn": -0.407686 + }, + { + "surface": "江戸前", + "readging": "えどまえ", + "pos": "名詞", + "pn": -0.407695 + }, + { + "surface": "踝", + "readging": "くるぶし", + "pos": "名詞", + "pn": -0.407745 + }, + { + "surface": "煮染", + "readging": "にしめ", + "pos": "名詞", + "pn": -0.407779 + }, + { + "surface": "クラス", + "readging": "クラスメート", + "pos": "名詞", + "pn": -0.407781 + }, + { + "surface": "降り懸る", + "readging": "ふりかかる", + "pos": "動詞", + "pn": -0.407785 + }, + { + "surface": "代任", + "readging": "だいにん", + "pos": "名詞", + "pn": -0.407809 + }, + { + "surface": "合算", + "readging": "がっさん", + "pos": "名詞", + "pn": -0.407819 + }, + { + "surface": "土焼", + "readging": "つちやき", + "pos": "名詞", + "pn": -0.40783 + }, + { + "surface": "タール", + "readging": "タール", + "pos": "名詞", + "pn": -0.407832 + }, + { + "surface": "勺", + "readging": "しゃく", + "pos": "名詞", + "pn": -0.407846 + }, + { + "surface": "排除", + "readging": "はいじょ", + "pos": "名詞", + "pn": -0.407851 + }, + { + "surface": "駆落ち", + "readging": "かけおち", + "pos": "名詞", + "pn": -0.407869 + }, + { + "surface": "不穏当", + "readging": "ふおんとう", + "pos": "名詞", + "pn": -0.40788 + }, + { + "surface": "帰農", + "readging": "きのう", + "pos": "名詞", + "pn": -0.407881 + }, + { + "surface": "同時", + "readging": "どうじ", + "pos": "名詞", + "pn": -0.407897 + }, + { + "surface": "一面", + "readging": "いちめん", + "pos": "名詞", + "pn": -0.407909 + }, + { + "surface": "習い", + "readging": "ならい", + "pos": "名詞", + "pn": -0.407939 + }, + { + "surface": "地歩", + "readging": "ちほ", + "pos": "名詞", + "pn": -0.40794 + }, + { + "surface": "易姓革命", + "readging": "えきせいかくめい", + "pos": "名詞", + "pn": -0.407943 + }, + { + "surface": "競争心", + "readging": "きょうそうしん", + "pos": "名詞", + "pn": -0.407948 + }, + { + "surface": "御寝", + "readging": "ぎょしん", + "pos": "名詞", + "pn": -0.407948 + }, + { + "surface": "当用", + "readging": "とうよう", + "pos": "名詞", + "pn": -0.407993 + }, + { + "surface": "霧散", + "readging": "むさん", + "pos": "名詞", + "pn": -0.407998 + }, + { + "surface": "二字口", + "readging": "にじぐち", + "pos": "名詞", + "pn": -0.408029 + }, + { + "surface": "大盤石", + "readging": "だいばんじゃく", + "pos": "名詞", + "pn": -0.408029 + }, + { + "surface": "初心", + "readging": "しょしん", + "pos": "名詞", + "pn": -0.408032 + }, + { + "surface": "当て字", + "readging": "あてじ", + "pos": "名詞", + "pn": -0.408053 + }, + { + "surface": "赤子", + "readging": "せきし", + "pos": "名詞", + "pn": -0.408056 + }, + { + "surface": "内燃", + "readging": "ないねん", + "pos": "名詞", + "pn": -0.408062 + }, + { + "surface": "範式", + "readging": "はんしき", + "pos": "名詞", + "pn": -0.40809 + }, + { + "surface": "電子計算機", + "readging": "でんしけいさんき", + "pos": "名詞", + "pn": -0.408104 + }, + { + "surface": "日がな一日", + "readging": "ひがないちにち", + "pos": "名詞", + "pn": -0.408126 + }, + { + "surface": "ホーム", + "readging": "ホームヘルパー", + "pos": "名詞", + "pn": -0.408128 + }, + { + "surface": "陰画", + "readging": "いんが", + "pos": "名詞", + "pn": -0.408131 + }, + { + "surface": "終極", + "readging": "しゅうきょく", + "pos": "名詞", + "pn": -0.408137 + }, + { + "surface": "拾遺", + "readging": "しゅうい", + "pos": "名詞", + "pn": -0.408141 + }, + { + "surface": "乳繰る", + "readging": "ちちくる", + "pos": "動詞", + "pn": -0.408163 + }, + { + "surface": "若布", + "readging": "わかめ", + "pos": "名詞", + "pn": -0.408171 + }, + { + "surface": "未成", + "readging": "みせい", + "pos": "名詞", + "pn": -0.408195 + }, + { + "surface": "蔵する", + "readging": "ぞうする", + "pos": "動詞", + "pn": -0.408229 + }, + { + "surface": "魑魅", + "readging": "ちみ", + "pos": "名詞", + "pn": -0.408263 + }, + { + "surface": "渡し銭", + "readging": "わたしせん", + "pos": "名詞", + "pn": -0.408276 + }, + { + "surface": "国人", + "readging": "くにびと", + "pos": "名詞", + "pn": -0.408289 + }, + { + "surface": "何一つ", + "readging": "なにひとつ", + "pos": "副詞", + "pn": -0.408295 + }, + { + "surface": "櫛風沐雨", + "readging": "しっぷうもくう", + "pos": "名詞", + "pn": -0.408307 + }, + { + "surface": "数物", + "readging": "かずもの", + "pos": "名詞", + "pn": -0.408314 + }, + { + "surface": "供餅", + "readging": "そなえもち", + "pos": "名詞", + "pn": -0.408317 + }, + { + "surface": "毛描き", + "readging": "けがき", + "pos": "名詞", + "pn": -0.40832 + }, + { + "surface": "千古", + "readging": "せんこ", + "pos": "名詞", + "pn": -0.408334 + }, + { + "surface": "座り込み", + "readging": "すわりこみ", + "pos": "名詞", + "pn": -0.408341 + }, + { + "surface": "規格", + "readging": "きかく", + "pos": "名詞", + "pn": -0.408351 + }, + { + "surface": "数え日", + "readging": "かぞえび", + "pos": "名詞", + "pn": -0.408356 + }, + { + "surface": "上下動", + "readging": "じょうげどう", + "pos": "名詞", + "pn": -0.408361 + }, + { + "surface": "組立てる", + "readging": "くみたてる", + "pos": "動詞", + "pn": -0.408378 + }, + { + "surface": "湯桶", + "readging": "ゆとう", + "pos": "名詞", + "pn": -0.408437 + }, + { + "surface": "麦打ち", + "readging": "むぎうち", + "pos": "名詞", + "pn": -0.408488 + }, + { + "surface": "漫ろ言", + "readging": "そぞろごと", + "pos": "名詞", + "pn": -0.408519 + }, + { + "surface": "子音", + "readging": "しおん", + "pos": "名詞", + "pn": -0.408545 + }, + { + "surface": "姫鱒", + "readging": "ひめます", + "pos": "名詞", + "pn": -0.408569 + }, + { + "surface": "小間使", + "readging": "こまづかい", + "pos": "名詞", + "pn": -0.408571 + }, + { + "surface": "前日", + "readging": "まえび", + "pos": "名詞", + "pn": -0.408572 + }, + { + "surface": "本筋", + "readging": "ほんすじ", + "pos": "名詞", + "pn": -0.408573 + }, + { + "surface": "上長", + "readging": "じょうちょう", + "pos": "名詞", + "pn": -0.408578 + }, + { + "surface": "賑やかす", + "readging": "にぎやかす", + "pos": "動詞", + "pn": -0.408579 + }, + { + "surface": "作り身", + "readging": "つくりみ", + "pos": "名詞", + "pn": -0.408585 + }, + { + "surface": "苗床", + "readging": "なえどこ", + "pos": "名詞", + "pn": -0.408641 + }, + { + "surface": "真鰺", + "readging": "まあじ", + "pos": "名詞", + "pn": -0.408647 + }, + { + "surface": "ヨーグルト", + "readging": "ヨーグルト", + "pos": "名詞", + "pn": -0.408673 + }, + { + "surface": "暦数", + "readging": "れきすう", + "pos": "名詞", + "pn": -0.408729 + }, + { + "surface": "リチウム", + "readging": "リチウム", + "pos": "名詞", + "pn": -0.408733 + }, + { + "surface": "マルサス主義", + "readging": "マルサスしゅぎ", + "pos": "名詞", + "pn": -0.408754 + }, + { + "surface": "末尾", + "readging": "まつび", + "pos": "名詞", + "pn": -0.40877 + }, + { + "surface": "血税", + "readging": "けつぜい", + "pos": "名詞", + "pn": -0.408775 + }, + { + "surface": "多孔質", + "readging": "たこうしつ", + "pos": "名詞", + "pn": -0.408782 + }, + { + "surface": "オール", + "readging": "オールラウンド", + "pos": "名詞", + "pn": -0.408793 + }, + { + "surface": "折紙", + "readging": "おりがみ", + "pos": "名詞", + "pn": -0.408807 + }, + { + "surface": "柳行李", + "readging": "やなぎごうり", + "pos": "名詞", + "pn": -0.40881 + }, + { + "surface": "着替える", + "readging": "きかえる", + "pos": "動詞", + "pn": -0.408811 + }, + { + "surface": "超過", + "readging": "ちょうか", + "pos": "名詞", + "pn": -0.408816 + }, + { + "surface": "控", + "readging": "ひかえ", + "pos": "名詞", + "pn": -0.408826 + }, + { + "surface": "運動場", + "readging": "うんどうじょう", + "pos": "名詞", + "pn": -0.408827 + }, + { + "surface": "高瀬舟", + "readging": "たかせぶね", + "pos": "名詞", + "pn": -0.408838 + }, + { + "surface": "通路", + "readging": "かよいじ", + "pos": "名詞", + "pn": -0.408854 + }, + { + "surface": "稗史", + "readging": "はいし", + "pos": "名詞", + "pn": -0.408858 + }, + { + "surface": "姉さん被り", + "readging": "あねさんかぶり", + "pos": "名詞", + "pn": -0.408862 + }, + { + "surface": "政務", + "readging": "せいむ", + "pos": "名詞", + "pn": -0.408867 + }, + { + "surface": "曲解", + "readging": "きょっかい", + "pos": "名詞", + "pn": -0.408921 + }, + { + "surface": "令達", + "readging": "れいたつ", + "pos": "名詞", + "pn": -0.408928 + }, + { + "surface": "激動", + "readging": "げきどう", + "pos": "名詞", + "pn": -0.408941 + }, + { + "surface": "瞽女", + "readging": "ごぜ", + "pos": "名詞", + "pn": -0.408941 + }, + { + "surface": "矛盾", + "readging": "むじゅん", + "pos": "名詞", + "pn": -0.408955 + }, + { + "surface": "帆船", + "readging": "ほぶね", + "pos": "名詞", + "pn": -0.408996 + }, + { + "surface": "成熟", + "readging": "せいじゅく", + "pos": "名詞", + "pn": -0.409016 + }, + { + "surface": "臨海", + "readging": "りんかい", + "pos": "名詞", + "pn": -0.409046 + }, + { + "surface": "還付", + "readging": "かんぷ", + "pos": "名詞", + "pn": -0.409066 + }, + { + "surface": "貰い食い", + "readging": "もらいぐい", + "pos": "名詞", + "pn": -0.409068 + }, + { + "surface": "搏動", + "readging": "はくどう", + "pos": "名詞", + "pn": -0.409077 + }, + { + "surface": "導管", + "readging": "どうかん", + "pos": "名詞", + "pn": -0.409094 + }, + { + "surface": "チェック", + "readging": "チェックポイント", + "pos": "名詞", + "pn": -0.409103 + }, + { + "surface": "練糸", + "readging": "ねりいと", + "pos": "名詞", + "pn": -0.409117 + }, + { + "surface": "宿許", + "readging": "やどもと", + "pos": "名詞", + "pn": -0.409125 + }, + { + "surface": "遊客", + "readging": "ゆうかく", + "pos": "名詞", + "pn": -0.409128 + }, + { + "surface": "アッパーカット", + "readging": "アッパーカット", + "pos": "名詞", + "pn": -0.409128 + }, + { + "surface": "焼夷弾", + "readging": "しょういだん", + "pos": "名詞", + "pn": -0.409149 + }, + { + "surface": "相対性理論", + "readging": "そうたいせいりろん", + "pos": "名詞", + "pn": -0.409167 + }, + { + "surface": "晴間", + "readging": "はれま", + "pos": "名詞", + "pn": -0.4092 + }, + { + "surface": "挟み将棋", + "readging": "はさみしょうぎ", + "pos": "名詞", + "pn": -0.40922 + }, + { + "surface": "獅子舞", + "readging": "ししまい", + "pos": "名詞", + "pn": -0.409225 + }, + { + "surface": "縷陳", + "readging": "るちん", + "pos": "名詞", + "pn": -0.409266 + }, + { + "surface": "然り", + "readging": "しかり", + "pos": "動詞", + "pn": -0.40931 + }, + { + "surface": "人外", + "readging": "にんがい", + "pos": "名詞", + "pn": -0.409312 + }, + { + "surface": "矢面", + "readging": "やおもて", + "pos": "名詞", + "pn": -0.409318 + }, + { + "surface": "ファンデーション", + "readging": "ファンデーション", + "pos": "名詞", + "pn": -0.409323 + }, + { + "surface": "目利き", + "readging": "めきき", + "pos": "名詞", + "pn": -0.409339 + }, + { + "surface": "僧衣", + "readging": "そうえ", + "pos": "名詞", + "pn": -0.409339 + }, + { + "surface": "剤", + "readging": "ざい", + "pos": "名詞", + "pn": -0.409341 + }, + { + "surface": "プール", + "readging": "プール", + "pos": "名詞", + "pn": -0.409365 + }, + { + "surface": "遺脱", + "readging": "いだつ", + "pos": "名詞", + "pn": -0.409394 + }, + { + "surface": "慣習", + "readging": "かんしゅう", + "pos": "名詞", + "pn": -0.409404 + }, + { + "surface": "腹拵え", + "readging": "はらごしらえ", + "pos": "名詞", + "pn": -0.409411 + }, + { + "surface": "全国", + "readging": "ぜんこく", + "pos": "名詞", + "pn": -0.409415 + }, + { + "surface": "躙口", + "readging": "にじりぐち", + "pos": "名詞", + "pn": -0.409416 + }, + { + "surface": "滝壺", + "readging": "たきつぼ", + "pos": "名詞", + "pn": -0.409418 + }, + { + "surface": "装丁", + "readging": "そうてい", + "pos": "名詞", + "pn": -0.409431 + }, + { + "surface": "日記", + "readging": "にっき", + "pos": "名詞", + "pn": -0.409448 + }, + { + "surface": "両個", + "readging": "りゃんこ", + "pos": "名詞", + "pn": -0.409468 + }, + { + "surface": "文理", + "readging": "ぶんり", + "pos": "名詞", + "pn": -0.409479 + }, + { + "surface": "公訴", + "readging": "こうそ", + "pos": "名詞", + "pn": -0.409486 + }, + { + "surface": "少数", + "readging": "しょうすう", + "pos": "名詞", + "pn": -0.409487 + }, + { + "surface": "満身", + "readging": "まんしん", + "pos": "名詞", + "pn": -0.409494 + }, + { + "surface": "密閉", + "readging": "みっぺい", + "pos": "名詞", + "pn": -0.409499 + }, + { + "surface": "小荷駄", + "readging": "こにだ", + "pos": "名詞", + "pn": -0.409503 + }, + { + "surface": "伏拝む", + "readging": "ふしおがむ", + "pos": "動詞", + "pn": -0.409505 + }, + { + "surface": "見切り", + "readging": "みきり", + "pos": "名詞", + "pn": -0.409541 + }, + { + "surface": "奥津城", + "readging": "おくつき", + "pos": "名詞", + "pn": -0.409542 + }, + { + "surface": "下がり目", + "readging": "さがりめ", + "pos": "名詞", + "pn": -0.409558 + }, + { + "surface": "綿打ち", + "readging": "わたうち", + "pos": "名詞", + "pn": -0.409567 + }, + { + "surface": "半襟", + "readging": "はんえり", + "pos": "名詞", + "pn": -0.409598 + }, + { + "surface": "立場", + "readging": "たちば", + "pos": "名詞", + "pn": -0.409621 + }, + { + "surface": "結盟", + "readging": "けつめい", + "pos": "名詞", + "pn": -0.40964 + }, + { + "surface": "帯地", + "readging": "おびじ", + "pos": "名詞", + "pn": -0.409654 + }, + { + "surface": "メーン", + "readging": "メーンテーブル", + "pos": "名詞", + "pn": -0.409673 + }, + { + "surface": "朝起き", + "readging": "あさおき", + "pos": "名詞", + "pn": -0.409696 + }, + { + "surface": "申し分", + "readging": "もうしぶん", + "pos": "名詞", + "pn": -0.409712 + }, + { + "surface": "どうやら", + "readging": "どうやら", + "pos": "副詞", + "pn": -0.409712 + }, + { + "surface": "フォーマット", + "readging": "フォーマット", + "pos": "名詞", + "pn": -0.409718 + }, + { + "surface": "濁音", + "readging": "だくおん", + "pos": "名詞", + "pn": -0.409727 + }, + { + "surface": "平", + "readging": "ひょう", + "pos": "名詞", + "pn": -0.409743 + }, + { + "surface": "ブロック", + "readging": "ブロック", + "pos": "名詞", + "pn": -0.409746 + }, + { + "surface": "色収差", + "readging": "いろしゅうさ", + "pos": "名詞", + "pn": -0.409778 + }, + { + "surface": "ソフト", + "readging": "ソフトクリーム", + "pos": "名詞", + "pn": -0.409824 + }, + { + "surface": "焼魚", + "readging": "やきざかな", + "pos": "名詞", + "pn": -0.409846 + }, + { + "surface": "候鳥", + "readging": "こうちょう", + "pos": "名詞", + "pn": -0.409852 + }, + { + "surface": "ロック クライミング", + "readging": "ロック クライミング", + "pos": "名詞", + "pn": -0.409876 + }, + { + "surface": "座礁", + "readging": "ざしょう", + "pos": "名詞", + "pn": -0.409887 + }, + { + "surface": "御前", + "readging": "ごぜん", + "pos": "名詞", + "pn": -0.409939 + }, + { + "surface": "残照", + "readging": "ざんしょう", + "pos": "名詞", + "pn": -0.40995 + }, + { + "surface": "小雨", + "readging": "こさめ", + "pos": "名詞", + "pn": -0.409952 + }, + { + "surface": "節季", + "readging": "せっき", + "pos": "名詞", + "pn": -0.409974 + }, + { + "surface": "変化", + "readging": "へんか", + "pos": "名詞", + "pn": -0.410005 + }, + { + "surface": "身上持", + "readging": "しんしょうもち", + "pos": "名詞", + "pn": -0.410027 + }, + { + "surface": "じゃらじゃら", + "readging": "じゃらじゃら", + "pos": "副詞", + "pn": -0.410034 + }, + { + "surface": "遣り取り", + "readging": "やりとり", + "pos": "名詞", + "pn": -0.41005 + }, + { + "surface": "パルプ", + "readging": "パルプ", + "pos": "名詞", + "pn": -0.41007 + }, + { + "surface": "地物", + "readging": "じもの", + "pos": "名詞", + "pn": -0.410116 + }, + { + "surface": "紙子", + "readging": "かみこ", + "pos": "名詞", + "pn": -0.410122 + }, + { + "surface": "豆鉄砲", + "readging": "まめでっぽう", + "pos": "名詞", + "pn": -0.41013 + }, + { + "surface": "サイド", + "readging": "サイド", + "pos": "名詞", + "pn": -0.410186 + }, + { + "surface": "宗派", + "readging": "しゅうは", + "pos": "名詞", + "pn": -0.410208 + }, + { + "surface": "尿素", + "readging": "にょうそ", + "pos": "名詞", + "pn": -0.410211 + }, + { + "surface": "皮針形", + "readging": "ひしんけい", + "pos": "名詞", + "pn": -0.410224 + }, + { + "surface": "食い違う", + "readging": "くいちがう", + "pos": "動詞", + "pn": -0.410224 + }, + { + "surface": "未開", + "readging": "みかい", + "pos": "名詞", + "pn": -0.410245 + }, + { + "surface": "トー シューズ", + "readging": "トー シューズ", + "pos": "名詞", + "pn": -0.410247 + }, + { + "surface": "如何", + "readging": "いかが", + "pos": "副詞", + "pn": -0.41026 + }, + { + "surface": "褐炭", + "readging": "かったん", + "pos": "名詞", + "pn": -0.410325 + }, + { + "surface": "公職", + "readging": "こうしょく", + "pos": "名詞", + "pn": -0.410352 + }, + { + "surface": "ニュアンス", + "readging": "ニュアンス", + "pos": "名詞", + "pn": -0.410355 + }, + { + "surface": "松露", + "readging": "しょうろ", + "pos": "名詞", + "pn": -0.410387 + }, + { + "surface": "相", + "readging": "そう", + "pos": "名詞", + "pn": -0.41039 + }, + { + "surface": "上乗り", + "readging": "うわのり", + "pos": "名詞", + "pn": -0.410402 + }, + { + "surface": "節度", + "readging": "せつど", + "pos": "名詞", + "pn": -0.410403 + }, + { + "surface": "馬場", + "readging": "ばば", + "pos": "名詞", + "pn": -0.410405 + }, + { + "surface": "有りの儘", + "readging": "ありのまま", + "pos": "名詞", + "pn": -0.410408 + }, + { + "surface": "松風", + "readging": "まつかぜ", + "pos": "名詞", + "pn": -0.410412 + }, + { + "surface": "対流圏", + "readging": "たいりゅうけん", + "pos": "名詞", + "pn": -0.410415 + }, + { + "surface": "文明", + "readging": "ぶんめい", + "pos": "名詞", + "pn": -0.410425 + }, + { + "surface": "腓腸筋", + "readging": "はいちょうきん", + "pos": "名詞", + "pn": -0.410459 + }, + { + "surface": "民俗学", + "readging": "みんぞくがく", + "pos": "名詞", + "pn": -0.410462 + }, + { + "surface": "陽電気", + "readging": "ようでんき", + "pos": "名詞", + "pn": -0.410463 + }, + { + "surface": "パネル", + "readging": "パネルディスカッション", + "pos": "名詞", + "pn": -0.410465 + }, + { + "surface": "乳糖", + "readging": "にゅうとう", + "pos": "名詞", + "pn": -0.410475 + }, + { + "surface": "梁", + "readging": "はり", + "pos": "名詞", + "pn": -0.410482 + }, + { + "surface": "ドライ", + "readging": "ドライアイス", + "pos": "名詞", + "pn": -0.410492 + }, + { + "surface": "掘出す", + "readging": "ほりだす", + "pos": "動詞", + "pn": -0.410511 + }, + { + "surface": "粗品", + "readging": "そしな", + "pos": "名詞", + "pn": -0.410513 + }, + { + "surface": "家の子", + "readging": "いえのこ", + "pos": "名詞", + "pn": -0.41052 + }, + { + "surface": "後押え", + "readging": "あとおさえ", + "pos": "名詞", + "pn": -0.410541 + }, + { + "surface": "畜生腹", + "readging": "ちくしょうばら", + "pos": "名詞", + "pn": -0.410555 + }, + { + "surface": "郵書", + "readging": "ゆうしょ", + "pos": "名詞", + "pn": -0.41058 + }, + { + "surface": "外侮", + "readging": "がいぶ", + "pos": "名詞", + "pn": -0.410601 + }, + { + "surface": "主持", + "readging": "しゅうもち", + "pos": "名詞", + "pn": -0.410622 + }, + { + "surface": "解洗い", + "readging": "ときあらい", + "pos": "名詞", + "pn": -0.410632 + }, + { + "surface": "深成岩", + "readging": "しんせいがん", + "pos": "名詞", + "pn": -0.410639 + }, + { + "surface": "卦", + "readging": "け", + "pos": "名詞", + "pn": -0.410639 + }, + { + "surface": "池亭", + "readging": "ちてい", + "pos": "名詞", + "pn": -0.410659 + }, + { + "surface": "海嘯", + "readging": "かいしょう", + "pos": "名詞", + "pn": -0.410662 + }, + { + "surface": "水炊", + "readging": "みずたき", + "pos": "名詞", + "pn": -0.410664 + }, + { + "surface": "京間", + "readging": "きょうま", + "pos": "名詞", + "pn": -0.410678 + }, + { + "surface": "評議", + "readging": "ひょうぎ", + "pos": "名詞", + "pn": -0.410692 + }, + { + "surface": "荷重", + "readging": "におも", + "pos": "名詞", + "pn": -0.410692 + }, + { + "surface": "白子", + "readging": "しらこ", + "pos": "名詞", + "pn": -0.410697 + }, + { + "surface": "敵する", + "readging": "てきする", + "pos": "動詞", + "pn": -0.410731 + }, + { + "surface": "弾性体", + "readging": "だんせいたい", + "pos": "名詞", + "pn": -0.410752 + }, + { + "surface": "花押", + "readging": "かおう", + "pos": "名詞", + "pn": -0.410752 + }, + { + "surface": "条約", + "readging": "じょうやく", + "pos": "名詞", + "pn": -0.410764 + }, + { + "surface": "明るみ", + "readging": "あかるみ", + "pos": "名詞", + "pn": -0.410774 + }, + { + "surface": "そびれる", + "readging": "そびれる", + "pos": "動詞", + "pn": -0.410781 + }, + { + "surface": "銀側", + "readging": "ぎんがわ", + "pos": "名詞", + "pn": -0.410783 + }, + { + "surface": "菫", + "readging": "すみれ", + "pos": "名詞", + "pn": -0.410786 + }, + { + "surface": "ぽっかり", + "readging": "ぽっかり", + "pos": "副詞", + "pn": -0.410824 + }, + { + "surface": "直滑降", + "readging": "ちょっかっこう", + "pos": "名詞", + "pn": -0.410855 + }, + { + "surface": "対比", + "readging": "たいひ", + "pos": "名詞", + "pn": -0.410865 + }, + { + "surface": "追悼", + "readging": "ついとう", + "pos": "名詞", + "pn": -0.410869 + }, + { + "surface": "反作用", + "readging": "はんさよう", + "pos": "名詞", + "pn": -0.410941 + }, + { + "surface": "隠れ里", + "readging": "かくれざと", + "pos": "名詞", + "pn": -0.410941 + }, + { + "surface": "願い下げ", + "readging": "ねがいさげ", + "pos": "名詞", + "pn": -0.410972 + }, + { + "surface": "前部", + "readging": "ぜんぶ", + "pos": "名詞", + "pn": -0.41099 + }, + { + "surface": "弾初め", + "readging": "ひきぞめ", + "pos": "名詞", + "pn": -0.410992 + }, + { + "surface": "横座", + "readging": "よこざ", + "pos": "名詞", + "pn": -0.410994 + }, + { + "surface": "五味", + "readging": "ごみ", + "pos": "名詞", + "pn": -0.411002 + }, + { + "surface": "ウレタン", + "readging": "ウレタン", + "pos": "名詞", + "pn": -0.411017 + }, + { + "surface": "浴衣", + "readging": "ゆかた", + "pos": "名詞", + "pn": -0.411032 + }, + { + "surface": "吹溜り", + "readging": "ふきだまり", + "pos": "名詞", + "pn": -0.411053 + }, + { + "surface": "気後れ", + "readging": "きおくれ", + "pos": "名詞", + "pn": -0.411057 + }, + { + "surface": "自制", + "readging": "じせい", + "pos": "名詞", + "pn": -0.411065 + }, + { + "surface": "味覚", + "readging": "みかく", + "pos": "名詞", + "pn": -0.411072 + }, + { + "surface": "がたんと", + "readging": "がたんと", + "pos": "副詞", + "pn": -0.411082 + }, + { + "surface": "分断", + "readging": "ぶんだん", + "pos": "名詞", + "pn": -0.411094 + }, + { + "surface": "後傷", + "readging": "うしろきず", + "pos": "名詞", + "pn": -0.411099 + }, + { + "surface": "霜", + "readging": "しも", + "pos": "名詞", + "pn": -0.411101 + }, + { + "surface": "視角", + "readging": "しかく", + "pos": "名詞", + "pn": -0.411104 + }, + { + "surface": "ドーラン", + "readging": "ドーラン", + "pos": "名詞", + "pn": -0.411116 + }, + { + "surface": "月夜烏", + "readging": "つきよがらす", + "pos": "名詞", + "pn": -0.411117 + }, + { + "surface": "肉付け", + "readging": "にくづけ", + "pos": "名詞", + "pn": -0.411124 + }, + { + "surface": "何等", + "readging": "なんら", + "pos": "副詞", + "pn": -0.411135 + }, + { + "surface": "石榴", + "readging": "ざくろ", + "pos": "名詞", + "pn": -0.411153 + }, + { + "surface": "銜える", + "readging": "くわえる", + "pos": "動詞", + "pn": -0.411164 + }, + { + "surface": "国替", + "readging": "くにがえ", + "pos": "名詞", + "pn": -0.411166 + }, + { + "surface": "討議", + "readging": "とうぎ", + "pos": "名詞", + "pn": -0.41117 + }, + { + "surface": "推移る", + "readging": "おしうつる", + "pos": "動詞", + "pn": -0.411171 + }, + { + "surface": "灰落し", + "readging": "はいおとし", + "pos": "名詞", + "pn": -0.411182 + }, + { + "surface": "鳥目", + "readging": "ちょうもく", + "pos": "名詞", + "pn": -0.411192 + }, + { + "surface": "冒涜", + "readging": "ぼうとく", + "pos": "名詞", + "pn": -0.411196 + }, + { + "surface": "御幣担ぎ", + "readging": "ごへいかつぎ", + "pos": "名詞", + "pn": -0.411201 + }, + { + "surface": "泥んこ", + "readging": "どろんこ", + "pos": "名詞", + "pn": -0.411209 + }, + { + "surface": "ソンブレロ", + "readging": "ソンブレロ", + "pos": "名詞", + "pn": -0.411212 + }, + { + "surface": "空空", + "readging": "くうくう", + "pos": "名詞", + "pn": -0.411231 + }, + { + "surface": "格外", + "readging": "かくがい", + "pos": "名詞", + "pn": -0.411242 + }, + { + "surface": "二心", + "readging": "ふたごころ", + "pos": "名詞", + "pn": -0.411243 + }, + { + "surface": "兆し", + "readging": "きざし", + "pos": "名詞", + "pn": -0.411257 + }, + { + "surface": "窒素肥料", + "readging": "ちっそひりょう", + "pos": "名詞", + "pn": -0.411265 + }, + { + "surface": "準える", + "readging": "なぞらえる", + "pos": "動詞", + "pn": -0.411275 + }, + { + "surface": "芭蕉布", + "readging": "ばしょうふ", + "pos": "名詞", + "pn": -0.411281 + }, + { + "surface": "バロメーター", + "readging": "バロメーター", + "pos": "名詞", + "pn": -0.411285 + }, + { + "surface": "門付", + "readging": "かどづけ", + "pos": "名詞", + "pn": -0.411286 + }, + { + "surface": "鬼瓦", + "readging": "おにがわら", + "pos": "名詞", + "pn": -0.411288 + }, + { + "surface": "鍋鶴", + "readging": "なべづる", + "pos": "名詞", + "pn": -0.411297 + }, + { + "surface": "セコイア", + "readging": "セコイア", + "pos": "名詞", + "pn": -0.411299 + }, + { + "surface": "ファスナー", + "readging": "ファスナー", + "pos": "名詞", + "pn": -0.4113 + }, + { + "surface": "長女", + "readging": "ちょうじょ", + "pos": "名詞", + "pn": -0.411325 + }, + { + "surface": "突っ切る", + "readging": "つっきる", + "pos": "動詞", + "pn": -0.411345 + }, + { + "surface": "チャイム", + "readging": "チャイム", + "pos": "名詞", + "pn": -0.411349 + }, + { + "surface": "深窓", + "readging": "しんそう", + "pos": "名詞", + "pn": -0.411352 + }, + { + "surface": "立居振舞", + "readging": "たちい", + "pos": "名詞", + "pn": -0.411359 + }, + { + "surface": "金脈", + "readging": "きんみゃく", + "pos": "名詞", + "pn": -0.411369 + }, + { + "surface": "先んじる", + "readging": "さきんじる", + "pos": "動詞", + "pn": -0.411383 + }, + { + "surface": "新薬", + "readging": "しんやく", + "pos": "名詞", + "pn": -0.411397 + }, + { + "surface": "銘仙", + "readging": "めいせん", + "pos": "名詞", + "pn": -0.41144 + }, + { + "surface": "遅知恵", + "readging": "おそぢえ", + "pos": "名詞", + "pn": -0.41145 + }, + { + "surface": "愁思", + "readging": "しゅうし", + "pos": "名詞", + "pn": -0.411457 + }, + { + "surface": "篤", + "readging": "とく", + "pos": "名詞", + "pn": -0.411463 + }, + { + "surface": "ノック", + "readging": "ノック", + "pos": "名詞", + "pn": -0.411473 + }, + { + "surface": "よよと", + "readging": "よよと", + "pos": "副詞", + "pn": -0.411474 + }, + { + "surface": "伏臥", + "readging": "ふくが", + "pos": "名詞", + "pn": -0.41149 + }, + { + "surface": "漁獲", + "readging": "ぎょかく", + "pos": "名詞", + "pn": -0.411508 + }, + { + "surface": "渡し船", + "readging": "わたしぶね", + "pos": "名詞", + "pn": -0.411518 + }, + { + "surface": "誓", + "readging": "せい", + "pos": "名詞", + "pn": -0.41152 + }, + { + "surface": "樫", + "readging": "かし", + "pos": "名詞", + "pn": -0.41152 + }, + { + "surface": "熟考", + "readging": "じゅっこう", + "pos": "名詞", + "pn": -0.411534 + }, + { + "surface": "疑義", + "readging": "ぎぎ", + "pos": "名詞", + "pn": -0.411534 + }, + { + "surface": "ミシン", + "readging": "ミシン", + "pos": "名詞", + "pn": -0.411534 + }, + { + "surface": "身体髪膚", + "readging": "しんたいはっぷ", + "pos": "名詞", + "pn": -0.411538 + }, + { + "surface": "寝小便", + "readging": "ねしょうべん", + "pos": "名詞", + "pn": -0.411569 + }, + { + "surface": "猫柳", + "readging": "ねこやなぎ", + "pos": "名詞", + "pn": -0.411611 + }, + { + "surface": "すっくと", + "readging": "すっくと", + "pos": "副詞", + "pn": -0.411613 + }, + { + "surface": "へどろ", + "readging": "へどろ", + "pos": "名詞", + "pn": -0.411645 + }, + { + "surface": "母屋", + "readging": "おもや", + "pos": "名詞", + "pn": -0.411665 + }, + { + "surface": "崩し書き", + "readging": "くずしがき", + "pos": "名詞", + "pn": -0.411667 + }, + { + "surface": "爾来", + "readging": "じらい", + "pos": "副詞", + "pn": -0.411681 + }, + { + "surface": "麦粒腫", + "readging": "ばくりゅうしゅ", + "pos": "名詞", + "pn": -0.411718 + }, + { + "surface": "平脈", + "readging": "へいみゃく", + "pos": "名詞", + "pn": -0.411726 + }, + { + "surface": "四分五裂", + "readging": "しぶんごれつ", + "pos": "名詞", + "pn": -0.41173 + }, + { + "surface": "返答", + "readging": "へんとう", + "pos": "名詞", + "pn": -0.411742 + }, + { + "surface": "謀議", + "readging": "ぼうぎ", + "pos": "名詞", + "pn": -0.411757 + }, + { + "surface": "遡江", + "readging": "そこう", + "pos": "名詞", + "pn": -0.411775 + }, + { + "surface": "飛乗る", + "readging": "とびのる", + "pos": "動詞", + "pn": -0.411776 + }, + { + "surface": "間伐", + "readging": "かんばつ", + "pos": "名詞", + "pn": -0.411795 + }, + { + "surface": "風媒花", + "readging": "ふうばいか", + "pos": "名詞", + "pn": -0.41183 + }, + { + "surface": "競漕", + "readging": "きょうそう", + "pos": "名詞", + "pn": -0.411833 + }, + { + "surface": "離縁", + "readging": "りえん", + "pos": "名詞", + "pn": -0.411847 + }, + { + "surface": "水位", + "readging": "すいい", + "pos": "名詞", + "pn": -0.41186 + }, + { + "surface": "期首", + "readging": "きしゅ", + "pos": "名詞", + "pn": -0.411873 + }, + { + "surface": "定め", + "readging": "さだめ", + "pos": "名詞", + "pn": -0.411883 + }, + { + "surface": "飲込む", + "readging": "のみこむ", + "pos": "動詞", + "pn": -0.411889 + }, + { + "surface": "川下り", + "readging": "かわくだり", + "pos": "名詞", + "pn": -0.411897 + }, + { + "surface": "高談", + "readging": "こうだん", + "pos": "名詞", + "pn": -0.411918 + }, + { + "surface": "実現", + "readging": "じつげん", + "pos": "名詞", + "pn": -0.411937 + }, + { + "surface": "どうにか", + "readging": "どうにか", + "pos": "副詞", + "pn": -0.411938 + }, + { + "surface": "単語", + "readging": "たんご", + "pos": "名詞", + "pn": -0.411938 + }, + { + "surface": "築港", + "readging": "ちっこう", + "pos": "名詞", + "pn": -0.411945 + }, + { + "surface": "金鳳花", + "readging": "きんぽうげ", + "pos": "名詞", + "pn": -0.411985 + }, + { + "surface": "横向き", + "readging": "よこむき", + "pos": "名詞", + "pn": -0.411988 + }, + { + "surface": "旗行列", + "readging": "はたぎょうれつ", + "pos": "名詞", + "pn": -0.41199 + }, + { + "surface": "郭", + "readging": "くるわ", + "pos": "名詞", + "pn": -0.411999 + }, + { + "surface": "土鳩", + "readging": "どばと", + "pos": "名詞", + "pn": -0.412011 + }, + { + "surface": "烙印", + "readging": "らくいん", + "pos": "名詞", + "pn": -0.41203 + }, + { + "surface": "風見", + "readging": "かざみ", + "pos": "名詞", + "pn": -0.412036 + }, + { + "surface": "市場", + "readging": "いちば", + "pos": "名詞", + "pn": -0.412045 + }, + { + "surface": "バガボンド", + "readging": "バガボンド", + "pos": "名詞", + "pn": -0.412051 + }, + { + "surface": "淫靡", + "readging": "いんび", + "pos": "名詞", + "pn": -0.412088 + }, + { + "surface": "声門", + "readging": "せいもん", + "pos": "名詞", + "pn": -0.4121 + }, + { + "surface": "祭文", + "readging": "さいぶん", + "pos": "名詞", + "pn": -0.412109 + }, + { + "surface": "客分", + "readging": "きゃくぶん", + "pos": "名詞", + "pn": -0.412115 + }, + { + "surface": "名前", + "readging": "なまえ", + "pos": "名詞", + "pn": -0.412125 + }, + { + "surface": "雰囲気", + "readging": "ふんいき", + "pos": "名詞", + "pn": -0.412139 + }, + { + "surface": "寒暖計", + "readging": "かんだんけい", + "pos": "名詞", + "pn": -0.412146 + }, + { + "surface": "後述", + "readging": "こうじゅつ", + "pos": "名詞", + "pn": -0.412186 + }, + { + "surface": "ワープロ", + "readging": "ワープロ", + "pos": "名詞", + "pn": -0.41222 + }, + { + "surface": "例日", + "readging": "れいじつ", + "pos": "名詞", + "pn": -0.412231 + }, + { + "surface": "身振り", + "readging": "みぶり", + "pos": "名詞", + "pn": -0.412237 + }, + { + "surface": "司", + "readging": "し", + "pos": "名詞", + "pn": -0.412245 + }, + { + "surface": "宮刑", + "readging": "きゅうけい", + "pos": "名詞", + "pn": -0.412264 + }, + { + "surface": "焼払う", + "readging": "やきはらう", + "pos": "動詞", + "pn": -0.412265 + }, + { + "surface": "干草", + "readging": "ほしくさ", + "pos": "名詞", + "pn": -0.412267 + }, + { + "surface": "白田売買", + "readging": "しろたばいばい", + "pos": "名詞", + "pn": -0.412271 + }, + { + "surface": "追銭", + "readging": "おいせん", + "pos": "名詞", + "pn": -0.412279 + }, + { + "surface": "シャーベット", + "readging": "シャーベット", + "pos": "名詞", + "pn": -0.412298 + }, + { + "surface": "手業", + "readging": "てわざ", + "pos": "名詞", + "pn": -0.4123 + }, + { + "surface": "蒸風呂", + "readging": "むしぶろ", + "pos": "名詞", + "pn": -0.412332 + }, + { + "surface": "黒松", + "readging": "くろまつ", + "pos": "名詞", + "pn": -0.412332 + }, + { + "surface": "宙返り", + "readging": "ちゅうがえり", + "pos": "名詞", + "pn": -0.412337 + }, + { + "surface": "同席", + "readging": "どうせき", + "pos": "名詞", + "pn": -0.412338 + }, + { + "surface": "平民", + "readging": "へいみん", + "pos": "名詞", + "pn": -0.412358 + }, + { + "surface": "潔斎", + "readging": "けっさい", + "pos": "名詞", + "pn": -0.412387 + }, + { + "surface": "湯元", + "readging": "ゆもと", + "pos": "名詞", + "pn": -0.412406 + }, + { + "surface": "毛裏", + "readging": "けうら", + "pos": "名詞", + "pn": -0.412413 + }, + { + "surface": "通帳", + "readging": "つうちょう", + "pos": "名詞", + "pn": -0.412419 + }, + { + "surface": "光来", + "readging": "こうらい", + "pos": "名詞", + "pn": -0.412422 + }, + { + "surface": "綿実油", + "readging": "めんじつゆ", + "pos": "名詞", + "pn": -0.412426 + }, + { + "surface": "鉱毒", + "readging": "こうどく", + "pos": "名詞", + "pn": -0.412431 + }, + { + "surface": "通箱", + "readging": "かよいばこ", + "pos": "名詞", + "pn": -0.412434 + }, + { + "surface": "済", + "readging": "さい", + "pos": "名詞", + "pn": -0.41244 + }, + { + "surface": "困り果てる", + "readging": "こまりはてる", + "pos": "動詞", + "pn": -0.412444 + }, + { + "surface": "斉唱", + "readging": "せいしょう", + "pos": "名詞", + "pn": -0.412444 + }, + { + "surface": "駒", + "readging": "こま", + "pos": "名詞", + "pn": -0.412445 + }, + { + "surface": "バイアス", + "readging": "バイアス", + "pos": "名詞", + "pn": -0.412447 + }, + { + "surface": "鋳込む", + "readging": "いこむ", + "pos": "動詞", + "pn": -0.412464 + }, + { + "surface": "山形", + "readging": "やまがた", + "pos": "名詞", + "pn": -0.412467 + }, + { + "surface": "宿駕籠", + "readging": "しゅくかご", + "pos": "名詞", + "pn": -0.412477 + }, + { + "surface": "ホルマリン", + "readging": "ホルマリン", + "pos": "名詞", + "pn": -0.412493 + }, + { + "surface": "曙光", + "readging": "しょこう", + "pos": "名詞", + "pn": -0.412524 + }, + { + "surface": "純白", + "readging": "じゅんぱく", + "pos": "名詞", + "pn": -0.412525 + }, + { + "surface": "今様", + "readging": "いまよう", + "pos": "名詞", + "pn": -0.412528 + }, + { + "surface": "ルポ", + "readging": "ルポ", + "pos": "名詞", + "pn": -0.412528 + }, + { + "surface": "質", + "readging": "しち", + "pos": "名詞", + "pn": -0.412559 + }, + { + "surface": "日用品", + "readging": "にちようひん", + "pos": "名詞", + "pn": -0.412568 + }, + { + "surface": "鉢物", + "readging": "はちもの", + "pos": "名詞", + "pn": -0.412583 + }, + { + "surface": "花菖蒲", + "readging": "はなしょうぶ", + "pos": "名詞", + "pn": -0.412586 + }, + { + "surface": "ポインセチア", + "readging": "ポインセチア", + "pos": "名詞", + "pn": -0.412588 + }, + { + "surface": "天球儀", + "readging": "てんきゅうぎ", + "pos": "名詞", + "pn": -0.412605 + }, + { + "surface": "釣糸", + "readging": "つりいと", + "pos": "名詞", + "pn": -0.412631 + }, + { + "surface": "湯文字", + "readging": "ゆもじ", + "pos": "名詞", + "pn": -0.412633 + }, + { + "surface": "めかす", + "readging": "めかす", + "pos": "動詞", + "pn": -0.412635 + }, + { + "surface": "素焼", + "readging": "すやき", + "pos": "名詞", + "pn": -0.412644 + }, + { + "surface": "姦夫", + "readging": "かんぷ", + "pos": "名詞", + "pn": -0.412647 + }, + { + "surface": "職階", + "readging": "しょっかい", + "pos": "名詞", + "pn": -0.412648 + }, + { + "surface": "当否", + "readging": "とうひ", + "pos": "名詞", + "pn": -0.412658 + }, + { + "surface": "膾", + "readging": "なます", + "pos": "名詞", + "pn": -0.412681 + }, + { + "surface": "加盟", + "readging": "かめい", + "pos": "名詞", + "pn": -0.412692 + }, + { + "surface": "巻添え", + "readging": "まきぞえ", + "pos": "名詞", + "pn": -0.412696 + }, + { + "surface": "間判", + "readging": "あいばん", + "pos": "名詞", + "pn": -0.412707 + }, + { + "surface": "供頭", + "readging": "ともがしら", + "pos": "名詞", + "pn": -0.412715 + }, + { + "surface": "護謨の木", + "readging": "ゴムのき", + "pos": "名詞", + "pn": -0.412715 + }, + { + "surface": "母屋", + "readging": "もや", + "pos": "名詞", + "pn": -0.412717 + }, + { + "surface": "山颪", + "readging": "やまおろし", + "pos": "名詞", + "pn": -0.412742 + }, + { + "surface": "生ゴム", + "readging": "なまゴム", + "pos": "名詞", + "pn": -0.412744 + }, + { + "surface": "逸走", + "readging": "いっそう", + "pos": "名詞", + "pn": -0.412745 + }, + { + "surface": "生菓子", + "readging": "なまがし", + "pos": "名詞", + "pn": -0.412746 + }, + { + "surface": "濃茶", + "readging": "こいちゃ", + "pos": "名詞", + "pn": -0.412758 + }, + { + "surface": "凍結", + "readging": "とうけつ", + "pos": "名詞", + "pn": -0.412759 + }, + { + "surface": "手つき", + "readging": "てつき", + "pos": "名詞", + "pn": -0.412762 + }, + { + "surface": "空也念仏", + "readging": "くうやねんぶつ", + "pos": "名詞", + "pn": -0.412777 + }, + { + "surface": "正面", + "readging": "せいめん", + "pos": "名詞", + "pn": -0.412786 + }, + { + "surface": "蒔付け", + "readging": "まきつけ", + "pos": "名詞", + "pn": -0.412797 + }, + { + "surface": "手甲", + "readging": "てっこう", + "pos": "名詞", + "pn": -0.412811 + }, + { + "surface": "観測", + "readging": "かんそく", + "pos": "名詞", + "pn": -0.412822 + }, + { + "surface": "ズボン吊", + "readging": "ズボンつり", + "pos": "名詞", + "pn": -0.412827 + }, + { + "surface": "辣韮", + "readging": "らっきょう", + "pos": "名詞", + "pn": -0.412836 + }, + { + "surface": "重", + "readging": "かさね", + "pos": "名詞", + "pn": -0.412837 + }, + { + "surface": "立木", + "readging": "たちき", + "pos": "名詞", + "pn": -0.41284 + }, + { + "surface": "手掛ける", + "readging": "てがける", + "pos": "動詞", + "pn": -0.412853 + }, + { + "surface": "田楽", + "readging": "でんがく", + "pos": "名詞", + "pn": -0.412858 + }, + { + "surface": "納札", + "readging": "のうさつ", + "pos": "名詞", + "pn": -0.412861 + }, + { + "surface": "雨曝し", + "readging": "あまざらし", + "pos": "名詞", + "pn": -0.412898 + }, + { + "surface": "振袖", + "readging": "ふりそで", + "pos": "名詞", + "pn": -0.412909 + }, + { + "surface": "小判", + "readging": "こばん", + "pos": "名詞", + "pn": -0.412911 + }, + { + "surface": "油井", + "readging": "ゆせい", + "pos": "名詞", + "pn": -0.412927 + }, + { + "surface": "丁", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.41293 + }, + { + "surface": "撤退", + "readging": "てったい", + "pos": "名詞", + "pn": -0.412983 + }, + { + "surface": "韻語", + "readging": "いんご", + "pos": "名詞", + "pn": -0.413014 + }, + { + "surface": "授ける", + "readging": "さずける", + "pos": "動詞", + "pn": -0.413067 + }, + { + "surface": "台座", + "readging": "だいざ", + "pos": "名詞", + "pn": -0.41307 + }, + { + "surface": "ぺたぺた", + "readging": "ぺたぺた", + "pos": "副詞", + "pn": -0.413086 + }, + { + "surface": "抱き籠", + "readging": "だきかご", + "pos": "名詞", + "pn": -0.413091 + }, + { + "surface": "百味箪笥", + "readging": "ひゃくみだんす", + "pos": "名詞", + "pn": -0.413093 + }, + { + "surface": "覇業", + "readging": "はぎょう", + "pos": "名詞", + "pn": -0.413104 + }, + { + "surface": "赤毛", + "readging": "あかげ", + "pos": "名詞", + "pn": -0.413106 + }, + { + "surface": "点者", + "readging": "てんじゃ", + "pos": "名詞", + "pn": -0.413126 + }, + { + "surface": "鹿毛", + "readging": "かげ", + "pos": "名詞", + "pn": -0.41313 + }, + { + "surface": "配下", + "readging": "はいか", + "pos": "名詞", + "pn": -0.413168 + }, + { + "surface": "即決", + "readging": "そっけつ", + "pos": "名詞", + "pn": -0.413185 + }, + { + "surface": "気任せ", + "readging": "きまかせ", + "pos": "名詞", + "pn": -0.413213 + }, + { + "surface": "当座", + "readging": "とうざ", + "pos": "名詞", + "pn": -0.413215 + }, + { + "surface": "高級", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.41322 + }, + { + "surface": "官憲", + "readging": "かんけん", + "pos": "名詞", + "pn": -0.413221 + }, + { + "surface": "床", + "readging": "とこ", + "pos": "名詞", + "pn": -0.413223 + }, + { + "surface": "トリミング", + "readging": "トリミング", + "pos": "名詞", + "pn": -0.413234 + }, + { + "surface": "行く行く", + "readging": "ゆくゆく", + "pos": "副詞", + "pn": -0.413244 + }, + { + "surface": "高土間", + "readging": "たかどま", + "pos": "名詞", + "pn": -0.413251 + }, + { + "surface": "ヘッド", + "readging": "ヘッドホン", + "pos": "名詞", + "pn": -0.413256 + }, + { + "surface": "改札", + "readging": "かいさつ", + "pos": "名詞", + "pn": -0.413274 + }, + { + "surface": "古代紫", + "readging": "こだいむらさき", + "pos": "名詞", + "pn": -0.413302 + }, + { + "surface": "句点", + "readging": "くてん", + "pos": "名詞", + "pn": -0.413303 + }, + { + "surface": "束帯", + "readging": "そくたい", + "pos": "名詞", + "pn": -0.413309 + }, + { + "surface": "啄む", + "readging": "ついばむ", + "pos": "動詞", + "pn": -0.413314 + }, + { + "surface": "コスト", + "readging": "コスト", + "pos": "名詞", + "pn": -0.413338 + }, + { + "surface": "率", + "readging": "りつ", + "pos": "名詞", + "pn": -0.41334 + }, + { + "surface": "半紙", + "readging": "はんし", + "pos": "名詞", + "pn": -0.413353 + }, + { + "surface": "名残折", + "readging": "なごりおり", + "pos": "名詞", + "pn": -0.413377 + }, + { + "surface": "セミ ドキュメンタリー", + "readging": "セミ ドキュメンタリー", + "pos": "名詞", + "pn": -0.413383 + }, + { + "surface": "断然", + "readging": "だんぜん", + "pos": "副詞", + "pn": -0.413393 + }, + { + "surface": "色変り", + "readging": "いろがわり", + "pos": "名詞", + "pn": -0.413398 + }, + { + "surface": "踏止まる", + "readging": "ふみとどまる", + "pos": "動詞", + "pn": -0.4134 + }, + { + "surface": "居残る", + "readging": "いのこる", + "pos": "動詞", + "pn": -0.413413 + }, + { + "surface": "奈落", + "readging": "ならく", + "pos": "名詞", + "pn": -0.413418 + }, + { + "surface": "沃素", + "readging": "ようそ", + "pos": "名詞", + "pn": -0.413421 + }, + { + "surface": "丸髷", + "readging": "まるまげ", + "pos": "名詞", + "pn": -0.413428 + }, + { + "surface": "巾着網", + "readging": "きんちゃくあみ", + "pos": "名詞", + "pn": -0.413458 + }, + { + "surface": "乗組む", + "readging": "のりくむ", + "pos": "動詞", + "pn": -0.413463 + }, + { + "surface": "捨金", + "readging": "すてがね", + "pos": "名詞", + "pn": -0.413473 + }, + { + "surface": "概観", + "readging": "がいかん", + "pos": "名詞", + "pn": -0.413483 + }, + { + "surface": "赤間石", + "readging": "あかまいし", + "pos": "名詞", + "pn": -0.413484 + }, + { + "surface": "再犯", + "readging": "さいはん", + "pos": "名詞", + "pn": -0.413503 + }, + { + "surface": "描写", + "readging": "びょうしゃ", + "pos": "名詞", + "pn": -0.413503 + }, + { + "surface": "クラブ", + "readging": "クラブ", + "pos": "名詞", + "pn": -0.413505 + }, + { + "surface": "せっかち", + "readging": "せっかち", + "pos": "名詞", + "pn": -0.41351 + }, + { + "surface": "インディア ペーパー", + "readging": "インディア ペーパー", + "pos": "名詞", + "pn": -0.413519 + }, + { + "surface": "抽象", + "readging": "ちゅうしょう", + "pos": "名詞", + "pn": -0.413528 + }, + { + "surface": "肺肝", + "readging": "はいかん", + "pos": "名詞", + "pn": -0.413529 + }, + { + "surface": "見所", + "readging": "みどころ", + "pos": "名詞", + "pn": -0.413543 + }, + { + "surface": "萵苣", + "readging": "ちしゃ", + "pos": "名詞", + "pn": -0.413544 + }, + { + "surface": "ボール", + "readging": "ボールベアリング", + "pos": "名詞", + "pn": -0.41356 + }, + { + "surface": "植字", + "readging": "しょくじ", + "pos": "名詞", + "pn": -0.41361 + }, + { + "surface": "亜砒酸", + "readging": "あひさん", + "pos": "名詞", + "pn": -0.413616 + }, + { + "surface": "巻層雲", + "readging": "けんそううん", + "pos": "名詞", + "pn": -0.413617 + }, + { + "surface": "遣わす", + "readging": "つかわす", + "pos": "動詞", + "pn": -0.413629 + }, + { + "surface": "思い浮べる", + "readging": "おもいうかべる", + "pos": "動詞", + "pn": -0.41363 + }, + { + "surface": "蹴球", + "readging": "しゅうきゅう", + "pos": "名詞", + "pn": -0.413631 + }, + { + "surface": "大暑", + "readging": "たいしょ", + "pos": "名詞", + "pn": -0.41365 + }, + { + "surface": "搾油", + "readging": "さくゆ", + "pos": "名詞", + "pn": -0.413666 + }, + { + "surface": "別間", + "readging": "べつま", + "pos": "名詞", + "pn": -0.413676 + }, + { + "surface": "内孫", + "readging": "うちまご", + "pos": "名詞", + "pn": -0.413681 + }, + { + "surface": "人数", + "readging": "ひとかず", + "pos": "名詞", + "pn": -0.413683 + }, + { + "surface": "検察庁", + "readging": "けんさつちょう", + "pos": "名詞", + "pn": -0.413693 + }, + { + "surface": "おさらば", + "readging": "おさらば", + "pos": "名詞", + "pn": -0.413694 + }, + { + "surface": "力仕事", + "readging": "ちからしごと", + "pos": "名詞", + "pn": -0.413706 + }, + { + "surface": "イントネーション", + "readging": "イントネーション", + "pos": "名詞", + "pn": -0.413711 + }, + { + "surface": "血筋", + "readging": "ちすじ", + "pos": "名詞", + "pn": -0.413713 + }, + { + "surface": "御目見得", + "readging": "おめみえ", + "pos": "名詞", + "pn": -0.41372 + }, + { + "surface": "教育", + "readging": "きょういく", + "pos": "名詞", + "pn": -0.413721 + }, + { + "surface": "樽拾い", + "readging": "たるひろい", + "pos": "名詞", + "pn": -0.413728 + }, + { + "surface": "著しい", + "readging": "いちじるしい", + "pos": "形容詞", + "pn": -0.413737 + }, + { + "surface": "再開", + "readging": "さいかい", + "pos": "名詞", + "pn": -0.413748 + }, + { + "surface": "春先", + "readging": "はるさき", + "pos": "名詞", + "pn": -0.413777 + }, + { + "surface": "手燭", + "readging": "てしょく", + "pos": "名詞", + "pn": -0.413838 + }, + { + "surface": "大喪", + "readging": "たいそう", + "pos": "名詞", + "pn": -0.413853 + }, + { + "surface": "抵抗力", + "readging": "ていこうりょく", + "pos": "名詞", + "pn": -0.413857 + }, + { + "surface": "称呼", + "readging": "しょうこ", + "pos": "名詞", + "pn": -0.413862 + }, + { + "surface": "乳牛", + "readging": "にゅうぎゅう", + "pos": "名詞", + "pn": -0.413864 + }, + { + "surface": "雑木", + "readging": "ざつぼく", + "pos": "名詞", + "pn": -0.413879 + }, + { + "surface": "瀉血", + "readging": "しゃけつ", + "pos": "名詞", + "pn": -0.413909 + }, + { + "surface": "真皮", + "readging": "しんぴ", + "pos": "名詞", + "pn": -0.413912 + }, + { + "surface": "ダビング", + "readging": "ダビング", + "pos": "名詞", + "pn": -0.413925 + }, + { + "surface": "跡付ける", + "readging": "あとづける", + "pos": "動詞", + "pn": -0.413954 + }, + { + "surface": "蒲公英", + "readging": "たんぽぽ", + "pos": "名詞", + "pn": -0.413971 + }, + { + "surface": "許す", + "readging": "ゆるす", + "pos": "動詞", + "pn": -0.413972 + }, + { + "surface": "雑株", + "readging": "ざつかぶ", + "pos": "名詞", + "pn": -0.413996 + }, + { + "surface": "二階", + "readging": "にかい", + "pos": "名詞", + "pn": -0.414002 + }, + { + "surface": "遅進児", + "readging": "ちしんじ", + "pos": "名詞", + "pn": -0.414016 + }, + { + "surface": "立並ぶ", + "readging": "たちならぶ", + "pos": "動詞", + "pn": -0.414018 + }, + { + "surface": "買", + "readging": "ばい", + "pos": "名詞", + "pn": -0.414028 + }, + { + "surface": "擂餌", + "readging": "すりえ", + "pos": "名詞", + "pn": -0.41404 + }, + { + "surface": "寝言", + "readging": "ねごと", + "pos": "名詞", + "pn": -0.414056 + }, + { + "surface": "絵入り", + "readging": "えいり", + "pos": "名詞", + "pn": -0.414077 + }, + { + "surface": "燠", + "readging": "おき", + "pos": "名詞", + "pn": -0.414084 + }, + { + "surface": "春菊", + "readging": "しゅんぎく", + "pos": "名詞", + "pn": -0.414097 + }, + { + "surface": "条項", + "readging": "じょうこう", + "pos": "名詞", + "pn": -0.414107 + }, + { + "surface": "グラス", + "readging": "グラスファイバー", + "pos": "名詞", + "pn": -0.414131 + }, + { + "surface": "炊夫", + "readging": "すいふ", + "pos": "名詞", + "pn": -0.414143 + }, + { + "surface": "オーバー", + "readging": "オーバーホール", + "pos": "名詞", + "pn": -0.414147 + }, + { + "surface": "目まぐるしい", + "readging": "めまぐるしい", + "pos": "形容詞", + "pn": -0.414163 + }, + { + "surface": "変成岩", + "readging": "へんせいがん", + "pos": "名詞", + "pn": -0.414176 + }, + { + "surface": "道連れ", + "readging": "みちづれ", + "pos": "名詞", + "pn": -0.41418 + }, + { + "surface": "太刀", + "readging": "たち", + "pos": "名詞", + "pn": -0.414187 + }, + { + "surface": "家法", + "readging": "かほう", + "pos": "名詞", + "pn": -0.41419 + }, + { + "surface": "模造紙", + "readging": "もぞうし", + "pos": "名詞", + "pn": -0.414198 + }, + { + "surface": "算木", + "readging": "さんぎ", + "pos": "名詞", + "pn": -0.414207 + }, + { + "surface": "一先ず", + "readging": "ひとまず", + "pos": "副詞", + "pn": -0.41422 + }, + { + "surface": "花序", + "readging": "かじょ", + "pos": "名詞", + "pn": -0.414231 + }, + { + "surface": "稟議", + "readging": "りんぎ", + "pos": "名詞", + "pn": -0.414235 + }, + { + "surface": "番茶", + "readging": "ばんちゃ", + "pos": "名詞", + "pn": -0.414236 + }, + { + "surface": "綱引", + "readging": "つなひき", + "pos": "名詞", + "pn": -0.41424 + }, + { + "surface": "立塞がる", + "readging": "たちふさがる", + "pos": "動詞", + "pn": -0.41426 + }, + { + "surface": "門限", + "readging": "もんげん", + "pos": "名詞", + "pn": -0.414264 + }, + { + "surface": "制札", + "readging": "せいさつ", + "pos": "名詞", + "pn": -0.414275 + }, + { + "surface": "廃立", + "readging": "はいりつ", + "pos": "名詞", + "pn": -0.41428 + }, + { + "surface": "知ったか振り", + "readging": "しったかぶり", + "pos": "名詞", + "pn": -0.414281 + }, + { + "surface": "往往", + "readging": "おうおう", + "pos": "副詞", + "pn": -0.414294 + }, + { + "surface": "鳩杖", + "readging": "はとづえ", + "pos": "名詞", + "pn": -0.414296 + }, + { + "surface": "発芽", + "readging": "はつが", + "pos": "名詞", + "pn": -0.414303 + }, + { + "surface": "傾倒", + "readging": "けいとう", + "pos": "名詞", + "pn": -0.414309 + }, + { + "surface": "満腔", + "readging": "まんこう", + "pos": "名詞", + "pn": -0.414313 + }, + { + "surface": "布引", + "readging": "ぬのびき", + "pos": "名詞", + "pn": -0.414331 + }, + { + "surface": "ぼやぼや", + "readging": "ぼやぼや", + "pos": "副詞", + "pn": -0.414352 + }, + { + "surface": "温気", + "readging": "うんき", + "pos": "名詞", + "pn": -0.414371 + }, + { + "surface": "糸取り", + "readging": "いととり", + "pos": "名詞", + "pn": -0.414379 + }, + { + "surface": "防臭", + "readging": "ぼうしゅう", + "pos": "名詞", + "pn": -0.414388 + }, + { + "surface": "肩叩き", + "readging": "かたたたき", + "pos": "名詞", + "pn": -0.414425 + }, + { + "surface": "収益", + "readging": "しゅうえき", + "pos": "名詞", + "pn": -0.414447 + }, + { + "surface": "私議", + "readging": "しぎ", + "pos": "名詞", + "pn": -0.414451 + }, + { + "surface": "累進", + "readging": "るいしん", + "pos": "名詞", + "pn": -0.414453 + }, + { + "surface": "登記", + "readging": "とうき", + "pos": "名詞", + "pn": -0.414469 + }, + { + "surface": "日記帳", + "readging": "にっきちょう", + "pos": "名詞", + "pn": -0.414478 + }, + { + "surface": "風穴", + "readging": "かざあな", + "pos": "名詞", + "pn": -0.414484 + }, + { + "surface": "葡萄酒", + "readging": "ぶどうしゅ", + "pos": "名詞", + "pn": -0.414491 + }, + { + "surface": "感光", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.414501 + }, + { + "surface": "積替え", + "readging": "つみかえ", + "pos": "名詞", + "pn": -0.414517 + }, + { + "surface": "洟垂らし", + "readging": "はなたらし", + "pos": "名詞", + "pn": -0.414535 + }, + { + "surface": "浸入", + "readging": "しんにゅう", + "pos": "名詞", + "pn": -0.414551 + }, + { + "surface": "慣行", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.414597 + }, + { + "surface": "金無垢", + "readging": "きんむく", + "pos": "名詞", + "pn": -0.41462 + }, + { + "surface": "エーテル", + "readging": "エーテル", + "pos": "名詞", + "pn": -0.414622 + }, + { + "surface": "緒締め", + "readging": "おじめ", + "pos": "名詞", + "pn": -0.414631 + }, + { + "surface": "殉死", + "readging": "じゅんし", + "pos": "名詞", + "pn": -0.414642 + }, + { + "surface": "けろりと", + "readging": "けろりと", + "pos": "副詞", + "pn": -0.41465 + }, + { + "surface": "四方", + "readging": "しほう", + "pos": "名詞", + "pn": -0.414657 + }, + { + "surface": "叩きのめす", + "readging": "たたきのめす", + "pos": "動詞", + "pn": -0.414678 + }, + { + "surface": "イン", + "readging": "イン", + "pos": "名詞", + "pn": -0.414692 + }, + { + "surface": "全焼", + "readging": "ぜんしょう", + "pos": "名詞", + "pn": -0.414698 + }, + { + "surface": "口火", + "readging": "くちび", + "pos": "名詞", + "pn": -0.414699 + }, + { + "surface": "絶対温度", + "readging": "ぜったいおんど", + "pos": "名詞", + "pn": -0.414708 + }, + { + "surface": "褌", + "readging": "ふんどし", + "pos": "名詞", + "pn": -0.414723 + }, + { + "surface": "梅漬", + "readging": "うめづけ", + "pos": "名詞", + "pn": -0.414725 + }, + { + "surface": "射手", + "readging": "しゃしゅ", + "pos": "名詞", + "pn": -0.414735 + }, + { + "surface": "木曜", + "readging": "もくよう", + "pos": "名詞", + "pn": -0.414738 + }, + { + "surface": "甲板", + "readging": "こうはん", + "pos": "名詞", + "pn": -0.414744 + }, + { + "surface": "火消壺", + "readging": "ひけしつぼ", + "pos": "名詞", + "pn": -0.414777 + }, + { + "surface": "素材", + "readging": "そざい", + "pos": "名詞", + "pn": -0.414785 + }, + { + "surface": "趣旨", + "readging": "しゅし", + "pos": "名詞", + "pn": -0.414787 + }, + { + "surface": "個我", + "readging": "こが", + "pos": "名詞", + "pn": -0.414788 + }, + { + "surface": "表編", + "readging": "おもてあみ", + "pos": "名詞", + "pn": -0.414802 + }, + { + "surface": "昇汞", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.414803 + }, + { + "surface": "天井川", + "readging": "てんじょうがわ", + "pos": "名詞", + "pn": -0.414804 + }, + { + "surface": "足業", + "readging": "あしわざ", + "pos": "名詞", + "pn": -0.41481 + }, + { + "surface": "黒子", + "readging": "ほくろ", + "pos": "名詞", + "pn": -0.414816 + }, + { + "surface": "猫いらず", + "readging": "ねこいらず", + "pos": "名詞", + "pn": -0.414833 + }, + { + "surface": "在方", + "readging": "ざいかた", + "pos": "名詞", + "pn": -0.414843 + }, + { + "surface": "封書", + "readging": "ふうしょ", + "pos": "名詞", + "pn": -0.414844 + }, + { + "surface": "岐阜提灯", + "readging": "ぎふぢょうちん", + "pos": "名詞", + "pn": -0.414846 + }, + { + "surface": "木戸", + "readging": "きど", + "pos": "名詞", + "pn": -0.414849 + }, + { + "surface": "継子", + "readging": "ままこ", + "pos": "名詞", + "pn": -0.414862 + }, + { + "surface": "腕輪", + "readging": "うでわ", + "pos": "名詞", + "pn": -0.414864 + }, + { + "surface": "解散", + "readging": "かいさん", + "pos": "名詞", + "pn": -0.41488 + }, + { + "surface": "水回り", + "readging": "みずまわり", + "pos": "名詞", + "pn": -0.414884 + }, + { + "surface": "パレット", + "readging": "パレット", + "pos": "名詞", + "pn": -0.4149 + }, + { + "surface": "ゲート", + "readging": "ゲートボール", + "pos": "名詞", + "pn": -0.414901 + }, + { + "surface": "グアノ", + "readging": "グアノ", + "pos": "名詞", + "pn": -0.414938 + }, + { + "surface": "二十日鼠", + "readging": "はつかねずみ", + "pos": "名詞", + "pn": -0.414948 + }, + { + "surface": "薬種", + "readging": "やくしゅ", + "pos": "名詞", + "pn": -0.41495 + }, + { + "surface": "文台", + "readging": "ぶんだい", + "pos": "名詞", + "pn": -0.414952 + }, + { + "surface": "鳳輦", + "readging": "ほうれん", + "pos": "名詞", + "pn": -0.414964 + }, + { + "surface": "急流", + "readging": "きゅうりゅう", + "pos": "名詞", + "pn": -0.414966 + }, + { + "surface": "除虫菊", + "readging": "じょちゅうぎく", + "pos": "名詞", + "pn": -0.414999 + }, + { + "surface": "随想", + "readging": "ずいそう", + "pos": "名詞", + "pn": -0.415019 + }, + { + "surface": "和議", + "readging": "わぎ", + "pos": "名詞", + "pn": -0.415019 + }, + { + "surface": "腓腸筋", + "readging": "ひちょうきん", + "pos": "名詞", + "pn": -0.415029 + }, + { + "surface": "一陣", + "readging": "いちじん", + "pos": "名詞", + "pn": -0.415029 + }, + { + "surface": "中幕", + "readging": "なかまく", + "pos": "名詞", + "pn": -0.415031 + }, + { + "surface": "聾する", + "readging": "ろうする", + "pos": "動詞", + "pn": -0.415046 + }, + { + "surface": "イルミネーション", + "readging": "イルミネーション", + "pos": "名詞", + "pn": -0.415072 + }, + { + "surface": "組合せる", + "readging": "くみあわせる", + "pos": "動詞", + "pn": -0.415087 + }, + { + "surface": "鬱金", + "readging": "うこん", + "pos": "名詞", + "pn": -0.41509 + }, + { + "surface": "廃刀", + "readging": "はいとう", + "pos": "名詞", + "pn": -0.4151 + }, + { + "surface": "スニーカー", + "readging": "スニーカー", + "pos": "名詞", + "pn": -0.415104 + }, + { + "surface": "被爆", + "readging": "ひばく", + "pos": "名詞", + "pn": -0.415112 + }, + { + "surface": "砲戦", + "readging": "ほうせん", + "pos": "名詞", + "pn": -0.415129 + }, + { + "surface": "死骸", + "readging": "しがい", + "pos": "名詞", + "pn": -0.415131 + }, + { + "surface": "震わす", + "readging": "ふるわす", + "pos": "動詞", + "pn": -0.415147 + }, + { + "surface": "押し遣る", + "readging": "おしやる", + "pos": "動詞", + "pn": -0.41515 + }, + { + "surface": "フォーク", + "readging": "フォーク", + "pos": "名詞", + "pn": -0.415153 + }, + { + "surface": "勝敗", + "readging": "しょうはい", + "pos": "名詞", + "pn": -0.415172 + }, + { + "surface": "コロタイプ", + "readging": "コロタイプ", + "pos": "名詞", + "pn": -0.415177 + }, + { + "surface": "置手紙", + "readging": "おきてがみ", + "pos": "名詞", + "pn": -0.415178 + }, + { + "surface": "兵卒", + "readging": "へいそつ", + "pos": "名詞", + "pn": -0.415219 + }, + { + "surface": "外孫", + "readging": "がいそん", + "pos": "名詞", + "pn": -0.415223 + }, + { + "surface": "おんぶ", + "readging": "おんぶ", + "pos": "名詞", + "pn": -0.415227 + }, + { + "surface": "借切る", + "readging": "かりきる", + "pos": "動詞", + "pn": -0.41525 + }, + { + "surface": "黄緑", + "readging": "きみどり", + "pos": "名詞", + "pn": -0.415267 + }, + { + "surface": "叩き込む", + "readging": "たたきこむ", + "pos": "動詞", + "pn": -0.415271 + }, + { + "surface": "轂", + "readging": "こしき", + "pos": "名詞", + "pn": -0.415275 + }, + { + "surface": "干る", + "readging": "ひる", + "pos": "動詞", + "pn": -0.41529 + }, + { + "surface": "所定", + "readging": "しょてい", + "pos": "名詞", + "pn": -0.41534 + }, + { + "surface": "具体", + "readging": "ぐたい", + "pos": "名詞", + "pn": -0.415356 + }, + { + "surface": "町人", + "readging": "ちょうにん", + "pos": "名詞", + "pn": -0.415366 + }, + { + "surface": "着想", + "readging": "ちゃくそう", + "pos": "名詞", + "pn": -0.41538 + }, + { + "surface": "栂", + "readging": "つが", + "pos": "名詞", + "pn": -0.415397 + }, + { + "surface": "娼妓", + "readging": "しょうぎ", + "pos": "名詞", + "pn": -0.415405 + }, + { + "surface": "伏字", + "readging": "ふせじ", + "pos": "名詞", + "pn": -0.415415 + }, + { + "surface": "スクープ", + "readging": "スクープ", + "pos": "名詞", + "pn": -0.415426 + }, + { + "surface": "用命", + "readging": "ようめい", + "pos": "名詞", + "pn": -0.415428 + }, + { + "surface": "寸心", + "readging": "すんしん", + "pos": "名詞", + "pn": -0.415433 + }, + { + "surface": "ニッケル", + "readging": "ニッケル", + "pos": "名詞", + "pn": -0.415436 + }, + { + "surface": "外野", + "readging": "がいや", + "pos": "名詞", + "pn": -0.415451 + }, + { + "surface": "小潮", + "readging": "こしお", + "pos": "名詞", + "pn": -0.415484 + }, + { + "surface": "客寄せ", + "readging": "きゃくよせ", + "pos": "名詞", + "pn": -0.415498 + }, + { + "surface": "踏均す", + "readging": "ふみならす", + "pos": "動詞", + "pn": -0.415509 + }, + { + "surface": "蛇皮線", + "readging": "じゃびせん", + "pos": "名詞", + "pn": -0.415524 + }, + { + "surface": "ふわりと", + "readging": "ふわりと", + "pos": "副詞", + "pn": -0.415534 + }, + { + "surface": "見出し", + "readging": "みだし", + "pos": "名詞", + "pn": -0.415542 + }, + { + "surface": "職場", + "readging": "しょくば", + "pos": "名詞", + "pn": -0.415547 + }, + { + "surface": "列伍", + "readging": "れつご", + "pos": "名詞", + "pn": -0.415577 + }, + { + "surface": "等位", + "readging": "とうい", + "pos": "名詞", + "pn": -0.415584 + }, + { + "surface": "単舎利別", + "readging": "たんしゃりべつ", + "pos": "名詞", + "pn": -0.4156 + }, + { + "surface": "トライアングル", + "readging": "トライアングル", + "pos": "名詞", + "pn": -0.415604 + }, + { + "surface": "樅", + "readging": "もみ", + "pos": "名詞", + "pn": -0.415609 + }, + { + "surface": "肩越し", + "readging": "かたごし", + "pos": "名詞", + "pn": -0.415621 + }, + { + "surface": "塩辛い", + "readging": "しおからい", + "pos": "形容詞", + "pn": -0.415624 + }, + { + "surface": "豆幹", + "readging": "まめがら", + "pos": "名詞", + "pn": -0.415627 + }, + { + "surface": "三輪車", + "readging": "さんりんしゃ", + "pos": "名詞", + "pn": -0.415632 + }, + { + "surface": "随時", + "readging": "ずいじ", + "pos": "名詞", + "pn": -0.415636 + }, + { + "surface": "焼酎", + "readging": "しょうちゅう", + "pos": "名詞", + "pn": -0.415649 + }, + { + "surface": "蒸鍋", + "readging": "むしなべ", + "pos": "名詞", + "pn": -0.415655 + }, + { + "surface": "取揃える", + "readging": "とりそろえる", + "pos": "動詞", + "pn": -0.415669 + }, + { + "surface": "打物", + "readging": "うちもの", + "pos": "名詞", + "pn": -0.415675 + }, + { + "surface": "前栽", + "readging": "せんざい", + "pos": "名詞", + "pn": -0.415698 + }, + { + "surface": "従業", + "readging": "じゅうぎょう", + "pos": "名詞", + "pn": -0.415699 + }, + { + "surface": "略号", + "readging": "りゃくごう", + "pos": "名詞", + "pn": -0.415715 + }, + { + "surface": "調車", + "readging": "しらべぐるま", + "pos": "名詞", + "pn": -0.415754 + }, + { + "surface": "就学", + "readging": "しゅうがく", + "pos": "名詞", + "pn": -0.415779 + }, + { + "surface": "法則", + "readging": "ほうそく", + "pos": "名詞", + "pn": -0.415788 + }, + { + "surface": "真田紐", + "readging": "さなだひも", + "pos": "名詞", + "pn": -0.41579 + }, + { + "surface": "取皿", + "readging": "とりざら", + "pos": "名詞", + "pn": -0.415805 + }, + { + "surface": "堆積岩", + "readging": "たいせきがん", + "pos": "名詞", + "pn": -0.415815 + }, + { + "surface": "鼻っ柱", + "readging": "はなっぱしら", + "pos": "名詞", + "pn": -0.415823 + }, + { + "surface": "ガーゼ", + "readging": "ガーゼ", + "pos": "名詞", + "pn": -0.415826 + }, + { + "surface": "車台", + "readging": "しゃだい", + "pos": "名詞", + "pn": -0.41584 + }, + { + "surface": "薄める", + "readging": "うすめる", + "pos": "動詞", + "pn": -0.415843 + }, + { + "surface": "料足", + "readging": "りょうそく", + "pos": "名詞", + "pn": -0.415843 + }, + { + "surface": "旧式", + "readging": "きゅうしき", + "pos": "名詞", + "pn": -0.415844 + }, + { + "surface": "心悸", + "readging": "しんき", + "pos": "名詞", + "pn": -0.415857 + }, + { + "surface": "ヒマラヤ杉", + "readging": "ヒマラヤすぎ", + "pos": "名詞", + "pn": -0.415859 + }, + { + "surface": "杜若", + "readging": "かきつばた", + "pos": "名詞", + "pn": -0.415891 + }, + { + "surface": "出稼", + "readging": "でかせぎ", + "pos": "名詞", + "pn": -0.415895 + }, + { + "surface": "塊状", + "readging": "かいじょう", + "pos": "名詞", + "pn": -0.415906 + }, + { + "surface": "煩悩", + "readging": "ぼんのう", + "pos": "名詞", + "pn": -0.415916 + }, + { + "surface": "夜爪", + "readging": "よづめ", + "pos": "名詞", + "pn": -0.415946 + }, + { + "surface": "輪", + "readging": "りん", + "pos": "名詞", + "pn": -0.41599 + }, + { + "surface": "穴蔵", + "readging": "あなぐら", + "pos": "名詞", + "pn": -0.416003 + }, + { + "surface": "回廊", + "readging": "かいろう", + "pos": "名詞", + "pn": -0.416016 + }, + { + "surface": "競", + "readging": "きょう", + "pos": "名詞", + "pn": -0.416033 + }, + { + "surface": "清涼飲料水", + "readging": "せいりょういんりょうすい", + "pos": "名詞", + "pn": -0.416058 + }, + { + "surface": "賁臨", + "readging": "ひりん", + "pos": "名詞", + "pn": -0.416088 + }, + { + "surface": "展性", + "readging": "てんせい", + "pos": "名詞", + "pn": -0.416098 + }, + { + "surface": "胴間声", + "readging": "どうまごえ", + "pos": "名詞", + "pn": -0.416105 + }, + { + "surface": "嘱目", + "readging": "しょくもく", + "pos": "名詞", + "pn": -0.41611 + }, + { + "surface": "聴力", + "readging": "ちょうりょく", + "pos": "名詞", + "pn": -0.416116 + }, + { + "surface": "身の毛", + "readging": "みのけ", + "pos": "名詞", + "pn": -0.416116 + }, + { + "surface": "休息", + "readging": "きゅうそく", + "pos": "名詞", + "pn": -0.416126 + }, + { + "surface": "ジョーゼット", + "readging": "ジョーゼット", + "pos": "名詞", + "pn": -0.416145 + }, + { + "surface": "入門", + "readging": "にゅうもん", + "pos": "名詞", + "pn": -0.416153 + }, + { + "surface": "ミュージカル", + "readging": "ミュージカル", + "pos": "名詞", + "pn": -0.416159 + }, + { + "surface": "泉水", + "readging": "せんすい", + "pos": "名詞", + "pn": -0.416168 + }, + { + "surface": "相伴", + "readging": "しょうばん", + "pos": "名詞", + "pn": -0.416188 + }, + { + "surface": "まつる", + "readging": "まつる", + "pos": "動詞", + "pn": -0.416222 + }, + { + "surface": "クロレラ", + "readging": "クロレラ", + "pos": "名詞", + "pn": -0.41624 + }, + { + "surface": "対向", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.416271 + }, + { + "surface": "角錐", + "readging": "かくすい", + "pos": "名詞", + "pn": -0.41629 + }, + { + "surface": "クロム", + "readging": "クロム", + "pos": "名詞", + "pn": -0.4163 + }, + { + "surface": "変格", + "readging": "へんかく", + "pos": "名詞", + "pn": -0.416308 + }, + { + "surface": "停戦", + "readging": "ていせん", + "pos": "名詞", + "pn": -0.41631 + }, + { + "surface": "展翅", + "readging": "てんし", + "pos": "名詞", + "pn": -0.416323 + }, + { + "surface": "雑然", + "readging": "ざつぜん", + "pos": "名詞", + "pn": -0.416338 + }, + { + "surface": "伏目", + "readging": "ふしめ", + "pos": "名詞", + "pn": -0.416342 + }, + { + "surface": "接穂", + "readging": "つぎほ", + "pos": "名詞", + "pn": -0.416351 + }, + { + "surface": "ゲーム", + "readging": "ゲームセット", + "pos": "名詞", + "pn": -0.41637 + }, + { + "surface": "本末", + "readging": "ほんまつ", + "pos": "名詞", + "pn": -0.41638 + }, + { + "surface": "孵る", + "readging": "かえる", + "pos": "動詞", + "pn": -0.416406 + }, + { + "surface": "積算", + "readging": "せきさん", + "pos": "名詞", + "pn": -0.416429 + }, + { + "surface": "マント狒狒", + "readging": "マントひひ", + "pos": "名詞", + "pn": -0.416433 + }, + { + "surface": "利尿", + "readging": "りにょう", + "pos": "名詞", + "pn": -0.416444 + }, + { + "surface": "賠償", + "readging": "ばいしょう", + "pos": "名詞", + "pn": -0.416451 + }, + { + "surface": "ばりばり", + "readging": "ばりばり", + "pos": "副詞", + "pn": -0.416471 + }, + { + "surface": "存廃", + "readging": "そんぱい", + "pos": "名詞", + "pn": -0.416478 + }, + { + "surface": "拝み倒す", + "readging": "おがみたおす", + "pos": "動詞", + "pn": -0.416503 + }, + { + "surface": "平行棒", + "readging": "へいこうぼう", + "pos": "名詞", + "pn": -0.416516 + }, + { + "surface": "愛称", + "readging": "あいしょう", + "pos": "名詞", + "pn": -0.416519 + }, + { + "surface": "ケープ", + "readging": "ケープ", + "pos": "名詞", + "pn": -0.416532 + }, + { + "surface": "芝居気", + "readging": "しばい", + "pos": "名詞", + "pn": -0.416538 + }, + { + "surface": "昨夜", + "readging": "ゆうべ", + "pos": "名詞", + "pn": -0.416542 + }, + { + "surface": "既", + "readging": "き", + "pos": "名詞", + "pn": -0.416553 + }, + { + "surface": "レディー", + "readging": "レディーファースト", + "pos": "名詞", + "pn": -0.416565 + }, + { + "surface": "赤えい", + "readging": "あかえい", + "pos": "名詞", + "pn": -0.416576 + }, + { + "surface": "海溝", + "readging": "かいこう", + "pos": "名詞", + "pn": -0.41659 + }, + { + "surface": "鈴虫", + "readging": "すずむし", + "pos": "名詞", + "pn": -0.416605 + }, + { + "surface": "貸し借り", + "readging": "かしかり", + "pos": "名詞", + "pn": -0.416607 + }, + { + "surface": "エンゲージ リング", + "readging": "エンゲージ リング", + "pos": "名詞", + "pn": -0.416619 + }, + { + "surface": "狭心症", + "readging": "きょうしんしょう", + "pos": "名詞", + "pn": -0.416628 + }, + { + "surface": "人だかり", + "readging": "ひとだかり", + "pos": "名詞", + "pn": -0.416628 + }, + { + "surface": "キャベツ", + "readging": "キャベツ", + "pos": "名詞", + "pn": -0.416629 + }, + { + "surface": "演技", + "readging": "えんぎ", + "pos": "名詞", + "pn": -0.416641 + }, + { + "surface": "預り", + "readging": "あずかり", + "pos": "名詞", + "pn": -0.416646 + }, + { + "surface": "黄道光", + "readging": "こうどうこう", + "pos": "名詞", + "pn": -0.416665 + }, + { + "surface": "遡上", + "readging": "そじょう", + "pos": "名詞", + "pn": -0.416678 + }, + { + "surface": "遡行", + "readging": "そこう", + "pos": "名詞", + "pn": -0.416678 + }, + { + "surface": "徒渉", + "readging": "としょう", + "pos": "名詞", + "pn": -0.41668 + }, + { + "surface": "レター", + "readging": "レター", + "pos": "名詞", + "pn": -0.41669 + }, + { + "surface": "後身", + "readging": "うしろみ", + "pos": "名詞", + "pn": -0.416694 + }, + { + "surface": "脂肪酸", + "readging": "しぼうさん", + "pos": "名詞", + "pn": -0.416702 + }, + { + "surface": "差額", + "readging": "さがく", + "pos": "名詞", + "pn": -0.416703 + }, + { + "surface": "枚", + "readging": "まい", + "pos": "名詞", + "pn": -0.416713 + }, + { + "surface": "総身", + "readging": "そうみ", + "pos": "名詞", + "pn": -0.416716 + }, + { + "surface": "レター", + "readging": "レターペーパー", + "pos": "名詞", + "pn": -0.416719 + }, + { + "surface": "釘抜", + "readging": "くぎぬき", + "pos": "名詞", + "pn": -0.416728 + }, + { + "surface": "魅", + "readging": "み", + "pos": "名詞", + "pn": -0.416733 + }, + { + "surface": "一手", + "readging": "いって", + "pos": "名詞", + "pn": -0.416739 + }, + { + "surface": "轟かす", + "readging": "とどろかす", + "pos": "動詞", + "pn": -0.416741 + }, + { + "surface": "跳箱", + "readging": "とびばこ", + "pos": "名詞", + "pn": -0.416742 + }, + { + "surface": "銃剣", + "readging": "じゅうけん", + "pos": "名詞", + "pn": -0.416748 + }, + { + "surface": "膨らす", + "readging": "ふくらす", + "pos": "動詞", + "pn": -0.416773 + }, + { + "surface": "稼働", + "readging": "かどう", + "pos": "名詞", + "pn": -0.416796 + }, + { + "surface": "中腰", + "readging": "ちゅうごし", + "pos": "名詞", + "pn": -0.416853 + }, + { + "surface": "シンクロナイズド スイミング", + "readging": "シンクロナイズド スイミング", + "pos": "名詞", + "pn": -0.416859 + }, + { + "surface": "紫根", + "readging": "しこん", + "pos": "名詞", + "pn": -0.416894 + }, + { + "surface": "延着", + "readging": "えんちゃく", + "pos": "名詞", + "pn": -0.416898 + }, + { + "surface": "蜂蜜", + "readging": "はちみつ", + "pos": "名詞", + "pn": -0.416899 + }, + { + "surface": "うつけ", + "readging": "うつけ", + "pos": "名詞", + "pn": -0.416908 + }, + { + "surface": "海鞘", + "readging": "ほや", + "pos": "名詞", + "pn": -0.416913 + }, + { + "surface": "麗", + "readging": "れい", + "pos": "名詞", + "pn": -0.416939 + }, + { + "surface": "プリント", + "readging": "プリント", + "pos": "名詞", + "pn": -0.416953 + }, + { + "surface": "木版", + "readging": "もくはん", + "pos": "名詞", + "pn": -0.41699 + }, + { + "surface": "有り様", + "readging": "ありよう", + "pos": "名詞", + "pn": -0.417012 + }, + { + "surface": "口説き", + "readging": "くどき", + "pos": "名詞", + "pn": -0.417038 + }, + { + "surface": "女児", + "readging": "じょじ", + "pos": "名詞", + "pn": -0.417038 + }, + { + "surface": "神璽", + "readging": "しんじ", + "pos": "名詞", + "pn": -0.417067 + }, + { + "surface": "封蝋", + "readging": "ふうろう", + "pos": "名詞", + "pn": -0.417069 + }, + { + "surface": "浸礼", + "readging": "しんれい", + "pos": "名詞", + "pn": -0.417075 + }, + { + "surface": "絵捜し", + "readging": "えさがし", + "pos": "名詞", + "pn": -0.417081 + }, + { + "surface": "如法", + "readging": "にょほう", + "pos": "名詞", + "pn": -0.417091 + }, + { + "surface": "これから", + "readging": "これから", + "pos": "副詞", + "pn": -0.417106 + }, + { + "surface": "自由自在", + "readging": "じゆうじざい", + "pos": "名詞", + "pn": -0.417121 + }, + { + "surface": "雑事", + "readging": "ざつじ", + "pos": "名詞", + "pn": -0.417123 + }, + { + "surface": "軽風", + "readging": "けいふう", + "pos": "名詞", + "pn": -0.417142 + }, + { + "surface": "戦線", + "readging": "せんせん", + "pos": "名詞", + "pn": -0.417161 + }, + { + "surface": "転ずる", + "readging": "てんずる", + "pos": "動詞", + "pn": -0.41718 + }, + { + "surface": "起草", + "readging": "きそう", + "pos": "名詞", + "pn": -0.417184 + }, + { + "surface": "前方", + "readging": "まえかた", + "pos": "名詞", + "pn": -0.417203 + }, + { + "surface": "尽き", + "readging": "つき", + "pos": "名詞", + "pn": -0.417223 + }, + { + "surface": "案外", + "readging": "あんがい", + "pos": "副詞", + "pn": -0.417226 + }, + { + "surface": "遺棄", + "readging": "いき", + "pos": "名詞", + "pn": -0.417244 + }, + { + "surface": "葛練", + "readging": "くずねり", + "pos": "名詞", + "pn": -0.417247 + }, + { + "surface": "鑿岩機", + "readging": "さくがんき", + "pos": "名詞", + "pn": -0.417259 + }, + { + "surface": "樽柿", + "readging": "たるがき", + "pos": "名詞", + "pn": -0.417263 + }, + { + "surface": "コンピュータ", + "readging": "コンピュータ", + "pos": "名詞", + "pn": -0.417269 + }, + { + "surface": "対称", + "readging": "たいしょう", + "pos": "名詞", + "pn": -0.417285 + }, + { + "surface": "よっぽど", + "readging": "よっぽど", + "pos": "副詞", + "pn": -0.417286 + }, + { + "surface": "ドッジ ボール", + "readging": "ドッジ ボール", + "pos": "名詞", + "pn": -0.417328 + }, + { + "surface": "青田買い", + "readging": "あおた", + "pos": "名詞", + "pn": -0.417336 + }, + { + "surface": "慣用語", + "readging": "かんようご", + "pos": "名詞", + "pn": -0.417343 + }, + { + "surface": "猫じゃらし", + "readging": "ねこじゃらし", + "pos": "名詞", + "pn": -0.417358 + }, + { + "surface": "領主", + "readging": "りょうしゅ", + "pos": "名詞", + "pn": -0.417358 + }, + { + "surface": "着陣", + "readging": "ちゃくじん", + "pos": "名詞", + "pn": -0.417381 + }, + { + "surface": "腹合せ", + "readging": "はらあわせ", + "pos": "名詞", + "pn": -0.417393 + }, + { + "surface": "葡萄状", + "readging": "ぶどうじょう", + "pos": "名詞", + "pn": -0.417407 + }, + { + "surface": "消息筋", + "readging": "しょうそくすじ", + "pos": "名詞", + "pn": -0.417415 + }, + { + "surface": "席画", + "readging": "せきが", + "pos": "名詞", + "pn": -0.417417 + }, + { + "surface": "人形遣", + "readging": "にんぎょうつかい", + "pos": "名詞", + "pn": -0.417427 + }, + { + "surface": "貼付", + "readging": "てんぷ", + "pos": "名詞", + "pn": -0.417441 + }, + { + "surface": "久離", + "readging": "きゅうり", + "pos": "名詞", + "pn": -0.417453 + }, + { + "surface": "追羽根", + "readging": "おいばね", + "pos": "名詞", + "pn": -0.417462 + }, + { + "surface": "切に", + "readging": "せつに", + "pos": "副詞", + "pn": -0.417468 + }, + { + "surface": "胴丸", + "readging": "どうまる", + "pos": "名詞", + "pn": -0.417498 + }, + { + "surface": "後送", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.417503 + }, + { + "surface": "不敬", + "readging": "ふけい", + "pos": "名詞", + "pn": -0.417509 + }, + { + "surface": "払い物", + "readging": "はらいもの", + "pos": "名詞", + "pn": -0.41751 + }, + { + "surface": "辣油", + "readging": "ラーユ", + "pos": "名詞", + "pn": -0.417535 + }, + { + "surface": "覆滅", + "readging": "ふくめつ", + "pos": "名詞", + "pn": -0.417547 + }, + { + "surface": "ドローイング", + "readging": "ドローイング", + "pos": "名詞", + "pn": -0.417548 + }, + { + "surface": "ムニエル", + "readging": "ムニエル", + "pos": "名詞", + "pn": -0.417572 + }, + { + "surface": "地形", + "readging": "じぎょう", + "pos": "名詞", + "pn": -0.417603 + }, + { + "surface": "在官", + "readging": "ざいかん", + "pos": "名詞", + "pn": -0.417606 + }, + { + "surface": "消火栓", + "readging": "しょうかせん", + "pos": "名詞", + "pn": -0.417636 + }, + { + "surface": "門戸", + "readging": "もんこ", + "pos": "名詞", + "pn": -0.417652 + }, + { + "surface": "捕鯨", + "readging": "ほげい", + "pos": "名詞", + "pn": -0.417678 + }, + { + "surface": "蹴上げる", + "readging": "けあげる", + "pos": "動詞", + "pn": -0.41768 + }, + { + "surface": "胡麻油", + "readging": "ごまあぶら", + "pos": "名詞", + "pn": -0.417689 + }, + { + "surface": "亜硫酸ガス", + "readging": "ありゅうさんガス", + "pos": "名詞", + "pn": -0.417699 + }, + { + "surface": "受信", + "readging": "じゅしん", + "pos": "名詞", + "pn": -0.417705 + }, + { + "surface": "道明寺", + "readging": "どうみょうじ", + "pos": "名詞", + "pn": -0.417708 + }, + { + "surface": "約する", + "readging": "やくする", + "pos": "動詞", + "pn": -0.41772 + }, + { + "surface": "多宝塔", + "readging": "たほうとう", + "pos": "名詞", + "pn": -0.417753 + }, + { + "surface": "汲む", + "readging": "くむ", + "pos": "動詞", + "pn": -0.417757 + }, + { + "surface": "宿雨", + "readging": "しゅくう", + "pos": "名詞", + "pn": -0.417762 + }, + { + "surface": "女流", + "readging": "じょりゅう", + "pos": "名詞", + "pn": -0.417776 + }, + { + "surface": "神経戦", + "readging": "しんけいせん", + "pos": "名詞", + "pn": -0.41778 + }, + { + "surface": "職責", + "readging": "しょくせき", + "pos": "名詞", + "pn": -0.417781 + }, + { + "surface": "非違", + "readging": "ひい", + "pos": "名詞", + "pn": -0.417797 + }, + { + "surface": "高所", + "readging": "こうしょ", + "pos": "名詞", + "pn": -0.417824 + }, + { + "surface": "小指", + "readging": "こゆび", + "pos": "名詞", + "pn": -0.417825 + }, + { + "surface": "原形", + "readging": "げんけい", + "pos": "名詞", + "pn": -0.417825 + }, + { + "surface": "打掛", + "readging": "うちかけ", + "pos": "名詞", + "pn": -0.41784 + }, + { + "surface": "載貨", + "readging": "さいか", + "pos": "名詞", + "pn": -0.417844 + }, + { + "surface": "帝都", + "readging": "ていと", + "pos": "名詞", + "pn": -0.417845 + }, + { + "surface": "唐皮", + "readging": "からかわ", + "pos": "名詞", + "pn": -0.417853 + }, + { + "surface": "互い", + "readging": "たがい", + "pos": "名詞", + "pn": -0.417926 + }, + { + "surface": "帰巣性", + "readging": "きそうせい", + "pos": "名詞", + "pn": -0.41793 + }, + { + "surface": "名題看板", + "readging": "なだいかんばん", + "pos": "名詞", + "pn": -0.417936 + }, + { + "surface": "叢書", + "readging": "そうしょ", + "pos": "名詞", + "pn": -0.417959 + }, + { + "surface": "領分", + "readging": "りょうぶん", + "pos": "名詞", + "pn": -0.417962 + }, + { + "surface": "ひょっと", + "readging": "ひょっと", + "pos": "副詞", + "pn": -0.417985 + }, + { + "surface": "弾奏", + "readging": "だんそう", + "pos": "名詞", + "pn": -0.417998 + }, + { + "surface": "小史", + "readging": "しょうし", + "pos": "名詞", + "pn": -0.418025 + }, + { + "surface": "敵視", + "readging": "てきし", + "pos": "名詞", + "pn": -0.418047 + }, + { + "surface": "入荷", + "readging": "にゅうか", + "pos": "名詞", + "pn": -0.418051 + }, + { + "surface": "ブラウン管", + "readging": "ブラウンかん", + "pos": "名詞", + "pn": -0.418056 + }, + { + "surface": "げっそり", + "readging": "げっそり", + "pos": "副詞", + "pn": -0.418063 + }, + { + "surface": "クリプトン", + "readging": "クリプトン", + "pos": "名詞", + "pn": -0.418099 + }, + { + "surface": "普化僧", + "readging": "ふけそう", + "pos": "名詞", + "pn": -0.418102 + }, + { + "surface": "十文字", + "readging": "じゅうもんじ", + "pos": "名詞", + "pn": -0.41813 + }, + { + "surface": "置土産", + "readging": "おきみやげ", + "pos": "名詞", + "pn": -0.418155 + }, + { + "surface": "駄馬", + "readging": "だば", + "pos": "名詞", + "pn": -0.41816 + }, + { + "surface": "一言", + "readging": "いちごん", + "pos": "名詞", + "pn": -0.418164 + }, + { + "surface": "目覚め", + "readging": "めざめ", + "pos": "名詞", + "pn": -0.41817 + }, + { + "surface": "首引き", + "readging": "くびひき", + "pos": "名詞", + "pn": -0.41818 + }, + { + "surface": "轡虫", + "readging": "くつわむし", + "pos": "名詞", + "pn": -0.418184 + }, + { + "surface": "精神分裂病", + "readging": "せいしんぶんれつびょう", + "pos": "名詞", + "pn": -0.418184 + }, + { + "surface": "漂着", + "readging": "ひょうちゃく", + "pos": "名詞", + "pn": -0.418198 + }, + { + "surface": "槽", + "readging": "そう", + "pos": "名詞", + "pn": -0.418203 + }, + { + "surface": "隻", + "readging": "せき", + "pos": "名詞", + "pn": -0.418203 + }, + { + "surface": "磔", + "readging": "はりつけ", + "pos": "名詞", + "pn": -0.418205 + }, + { + "surface": "オブジェ", + "readging": "オブジェ", + "pos": "名詞", + "pn": -0.418207 + }, + { + "surface": "庶民", + "readging": "しょみん", + "pos": "名詞", + "pn": -0.41823 + }, + { + "surface": "穂孕み", + "readging": "ほばらみ", + "pos": "名詞", + "pn": -0.418232 + }, + { + "surface": "税関", + "readging": "ぜいかん", + "pos": "名詞", + "pn": -0.418273 + }, + { + "surface": "伊達巻", + "readging": "だてまき", + "pos": "名詞", + "pn": -0.418287 + }, + { + "surface": "内冑", + "readging": "うちかぶと", + "pos": "名詞", + "pn": -0.418288 + }, + { + "surface": "見込む", + "readging": "みこむ", + "pos": "動詞", + "pn": -0.418293 + }, + { + "surface": "熱雷", + "readging": "ねつらい", + "pos": "名詞", + "pn": -0.418294 + }, + { + "surface": "民間", + "readging": "みんかん", + "pos": "名詞", + "pn": -0.418306 + }, + { + "surface": "両", + "readging": "りょう", + "pos": "名詞", + "pn": -0.418335 + }, + { + "surface": "麻裏", + "readging": "あさうら", + "pos": "名詞", + "pn": -0.418342 + }, + { + "surface": "クルーザー", + "readging": "クルーザー", + "pos": "名詞", + "pn": -0.418358 + }, + { + "surface": "新幹線", + "readging": "しんかんせん", + "pos": "名詞", + "pn": -0.418402 + }, + { + "surface": "放流", + "readging": "ほうりゅう", + "pos": "名詞", + "pn": -0.418404 + }, + { + "surface": "覚えず", + "readging": "おぼえず", + "pos": "副詞", + "pn": -0.418411 + }, + { + "surface": "御髪", + "readging": "おぐし", + "pos": "名詞", + "pn": -0.418434 + }, + { + "surface": "対義語", + "readging": "たいぎご", + "pos": "名詞", + "pn": -0.418441 + }, + { + "surface": "実地", + "readging": "じっち", + "pos": "名詞", + "pn": -0.418451 + }, + { + "surface": "思い起す", + "readging": "おもいおこす", + "pos": "動詞", + "pn": -0.418458 + }, + { + "surface": "医術", + "readging": "いじゅつ", + "pos": "名詞", + "pn": -0.418489 + }, + { + "surface": "鳥籠", + "readging": "とりかご", + "pos": "名詞", + "pn": -0.4185 + }, + { + "surface": "細君", + "readging": "さいくん", + "pos": "名詞", + "pn": -0.418505 + }, + { + "surface": "氷点", + "readging": "ひょうてん", + "pos": "名詞", + "pn": -0.418507 + }, + { + "surface": "小賀玉木", + "readging": "おがたまのき", + "pos": "名詞", + "pn": -0.418522 + }, + { + "surface": "眈眈", + "readging": "たんたん", + "pos": "名詞", + "pn": -0.418531 + }, + { + "surface": "煮干", + "readging": "にぼし", + "pos": "名詞", + "pn": -0.418534 + }, + { + "surface": "徳利", + "readging": "とっくり", + "pos": "名詞", + "pn": -0.418538 + }, + { + "surface": "先頭", + "readging": "せんとう", + "pos": "名詞", + "pn": -0.418541 + }, + { + "surface": "小具足", + "readging": "こぐそく", + "pos": "名詞", + "pn": -0.418545 + }, + { + "surface": "痩躯", + "readging": "そうく", + "pos": "名詞", + "pn": -0.418554 + }, + { + "surface": "老いる", + "readging": "おいる", + "pos": "動詞", + "pn": -0.418558 + }, + { + "surface": "光臨", + "readging": "こうりん", + "pos": "名詞", + "pn": -0.418606 + }, + { + "surface": "墨流し", + "readging": "すみながし", + "pos": "名詞", + "pn": -0.41862 + }, + { + "surface": "マス", + "readging": "マスメディア", + "pos": "名詞", + "pn": -0.418633 + }, + { + "surface": "中段", + "readging": "ちゅうだん", + "pos": "名詞", + "pn": -0.418644 + }, + { + "surface": "倦怠", + "readging": "けんたい", + "pos": "名詞", + "pn": -0.418645 + }, + { + "surface": "腓骨", + "readging": "ひこつ", + "pos": "名詞", + "pn": -0.418658 + }, + { + "surface": "専業", + "readging": "せんぎょう", + "pos": "名詞", + "pn": -0.418659 + }, + { + "surface": "乗出す", + "readging": "のりだす", + "pos": "動詞", + "pn": -0.418678 + }, + { + "surface": "打込む", + "readging": "うちこむ", + "pos": "動詞", + "pn": -0.418681 + }, + { + "surface": "五色", + "readging": "ごしき", + "pos": "名詞", + "pn": -0.418684 + }, + { + "surface": "金太郎飴", + "readging": "きんたろうあめ", + "pos": "名詞", + "pn": -0.4187 + }, + { + "surface": "霧氷", + "readging": "むひょう", + "pos": "名詞", + "pn": -0.418701 + }, + { + "surface": "践祚", + "readging": "せんそ", + "pos": "名詞", + "pn": -0.418707 + }, + { + "surface": "配水", + "readging": "はいすい", + "pos": "名詞", + "pn": -0.418711 + }, + { + "surface": "乗掛る", + "readging": "のりかかる", + "pos": "動詞", + "pn": -0.418722 + }, + { + "surface": "日当り", + "readging": "ひあたり", + "pos": "名詞", + "pn": -0.418727 + }, + { + "surface": "痕", + "readging": "こん", + "pos": "名詞", + "pn": -0.418727 + }, + { + "surface": "礎材", + "readging": "そざい", + "pos": "名詞", + "pn": -0.418738 + }, + { + "surface": "頭文字", + "readging": "かしらもじ", + "pos": "名詞", + "pn": -0.418739 + }, + { + "surface": "人絹", + "readging": "じんけん", + "pos": "名詞", + "pn": -0.41876 + }, + { + "surface": "獣", + "readging": "けだもの", + "pos": "名詞", + "pn": -0.418786 + }, + { + "surface": "紙袋", + "readging": "かんぶくろ", + "pos": "名詞", + "pn": -0.418799 + }, + { + "surface": "再製", + "readging": "さいせい", + "pos": "名詞", + "pn": -0.418803 + }, + { + "surface": "訓辞", + "readging": "くんじ", + "pos": "名詞", + "pn": -0.418815 + }, + { + "surface": "竹槍", + "readging": "たけやり", + "pos": "名詞", + "pn": -0.418861 + }, + { + "surface": "濡場", + "readging": "ぬれば", + "pos": "名詞", + "pn": -0.418864 + }, + { + "surface": "牛舎", + "readging": "ぎゅうしゃ", + "pos": "名詞", + "pn": -0.418873 + }, + { + "surface": "赤松", + "readging": "あかまつ", + "pos": "名詞", + "pn": -0.418886 + }, + { + "surface": "鉄火場", + "readging": "てっかば", + "pos": "名詞", + "pn": -0.418898 + }, + { + "surface": "糸鋸", + "readging": "いとのこ", + "pos": "名詞", + "pn": -0.418899 + }, + { + "surface": "漢文", + "readging": "かんぶん", + "pos": "名詞", + "pn": -0.418905 + }, + { + "surface": "屋舎", + "readging": "おくしゃ", + "pos": "名詞", + "pn": -0.418915 + }, + { + "surface": "高唱", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.418925 + }, + { + "surface": "尉", + "readging": "い", + "pos": "名詞", + "pn": -0.418932 + }, + { + "surface": "合掌", + "readging": "がっしょう", + "pos": "名詞", + "pn": -0.418969 + }, + { + "surface": "成型", + "readging": "せいけい", + "pos": "名詞", + "pn": -0.419 + }, + { + "surface": "字音仮名遣", + "readging": "じおんかなづかい", + "pos": "名詞", + "pn": -0.419003 + }, + { + "surface": "紅白", + "readging": "こうはく", + "pos": "名詞", + "pn": -0.419004 + }, + { + "surface": "正体", + "readging": "しょうたい", + "pos": "名詞", + "pn": -0.419017 + }, + { + "surface": "雁擬き", + "readging": "がんもどき", + "pos": "名詞", + "pn": -0.419026 + }, + { + "surface": "朝する", + "readging": "ちょうする", + "pos": "動詞", + "pn": -0.419035 + }, + { + "surface": "地気", + "readging": "ちき", + "pos": "名詞", + "pn": -0.419052 + }, + { + "surface": "曲乗り", + "readging": "きょくのり", + "pos": "名詞", + "pn": -0.419068 + }, + { + "surface": "成婚", + "readging": "せいこん", + "pos": "名詞", + "pn": -0.419076 + }, + { + "surface": "井桁", + "readging": "いげた", + "pos": "名詞", + "pn": -0.419077 + }, + { + "surface": "総力", + "readging": "そうりょく", + "pos": "名詞", + "pn": -0.419096 + }, + { + "surface": "入部", + "readging": "にゅうぶ", + "pos": "名詞", + "pn": -0.419101 + }, + { + "surface": "化粧箱", + "readging": "けしょうばこ", + "pos": "名詞", + "pn": -0.419101 + }, + { + "surface": "近近", + "readging": "ちかぢか", + "pos": "副詞", + "pn": -0.419106 + }, + { + "surface": "吹分ける", + "readging": "ふきわける", + "pos": "動詞", + "pn": -0.419107 + }, + { + "surface": "ホチキス", + "readging": "ホチキス", + "pos": "名詞", + "pn": -0.419123 + }, + { + "surface": "熟談", + "readging": "じゅくだん", + "pos": "名詞", + "pn": -0.419152 + }, + { + "surface": "縦結び", + "readging": "たてむすび", + "pos": "名詞", + "pn": -0.419155 + }, + { + "surface": "一夜酒", + "readging": "いちやざけ", + "pos": "名詞", + "pn": -0.419163 + }, + { + "surface": "二重蓋", + "readging": "にじゅうぶた", + "pos": "名詞", + "pn": -0.419165 + }, + { + "surface": "私見", + "readging": "しけん", + "pos": "名詞", + "pn": -0.419177 + }, + { + "surface": "平地", + "readging": "ひらち", + "pos": "名詞", + "pn": -0.419183 + }, + { + "surface": "弱める", + "readging": "よわめる", + "pos": "動詞", + "pn": -0.419197 + }, + { + "surface": "指話法", + "readging": "しわほう", + "pos": "名詞", + "pn": -0.4192 + }, + { + "surface": "政治犯", + "readging": "せいじはん", + "pos": "名詞", + "pn": -0.419209 + }, + { + "surface": "ゲージ", + "readging": "ゲージ", + "pos": "名詞", + "pn": -0.419212 + }, + { + "surface": "定命", + "readging": "じょうみょう", + "pos": "名詞", + "pn": -0.419216 + }, + { + "surface": "糠雨", + "readging": "ぬかあめ", + "pos": "名詞", + "pn": -0.419216 + }, + { + "surface": "満天下", + "readging": "まんてんか", + "pos": "名詞", + "pn": -0.419253 + }, + { + "surface": "目録", + "readging": "もくろく", + "pos": "名詞", + "pn": -0.419259 + }, + { + "surface": "菩提樹", + "readging": "ぼだいじゅ", + "pos": "名詞", + "pn": -0.419271 + }, + { + "surface": "私経済", + "readging": "しけいざい", + "pos": "名詞", + "pn": -0.419321 + }, + { + "surface": "二道", + "readging": "ふたみち", + "pos": "名詞", + "pn": -0.419329 + }, + { + "surface": "墨縄", + "readging": "すみなわ", + "pos": "名詞", + "pn": -0.41933 + }, + { + "surface": "ビリヤード", + "readging": "ビリヤード", + "pos": "名詞", + "pn": -0.419335 + }, + { + "surface": "紙細工", + "readging": "かみざいく", + "pos": "名詞", + "pn": -0.419349 + }, + { + "surface": "脇差", + "readging": "わきざし", + "pos": "名詞", + "pn": -0.419356 + }, + { + "surface": "バタフライ", + "readging": "バタフライ", + "pos": "名詞", + "pn": -0.419371 + }, + { + "surface": "車夫", + "readging": "しゃふ", + "pos": "名詞", + "pn": -0.419399 + }, + { + "surface": "マンション", + "readging": "マンション", + "pos": "名詞", + "pn": -0.419405 + }, + { + "surface": "迷走神経", + "readging": "めいそうしんけい", + "pos": "名詞", + "pn": -0.419405 + }, + { + "surface": "規範", + "readging": "きはん", + "pos": "名詞", + "pn": -0.419416 + }, + { + "surface": "笠木", + "readging": "かさぎ", + "pos": "名詞", + "pn": -0.419431 + }, + { + "surface": "穿く", + "readging": "はく", + "pos": "動詞", + "pn": -0.419462 + }, + { + "surface": "潮入", + "readging": "しおいり", + "pos": "名詞", + "pn": -0.419475 + }, + { + "surface": "小癪", + "readging": "こしゃく", + "pos": "名詞", + "pn": -0.419494 + }, + { + "surface": "早駕籠", + "readging": "はやかご", + "pos": "名詞", + "pn": -0.419508 + }, + { + "surface": "ちっとも", + "readging": "ちっとも", + "pos": "副詞", + "pn": -0.419508 + }, + { + "surface": "相撃ち", + "readging": "あいうち", + "pos": "名詞", + "pn": -0.419533 + }, + { + "surface": "桑", + "readging": "そう", + "pos": "名詞", + "pn": -0.419539 + }, + { + "surface": "八面六臂", + "readging": "はちめんろっぴ", + "pos": "名詞", + "pn": -0.419544 + }, + { + "surface": "農夫", + "readging": "のうふ", + "pos": "名詞", + "pn": -0.419556 + }, + { + "surface": "取調べ", + "readging": "とりしらべ", + "pos": "名詞", + "pn": -0.419556 + }, + { + "surface": "検尿", + "readging": "けんにょう", + "pos": "名詞", + "pn": -0.419574 + }, + { + "surface": "女房", + "readging": "にょうぼう", + "pos": "名詞", + "pn": -0.419575 + }, + { + "surface": "後先", + "readging": "あとさき", + "pos": "名詞", + "pn": -0.419576 + }, + { + "surface": "退散", + "readging": "たいさん", + "pos": "名詞", + "pn": -0.419584 + }, + { + "surface": "差潮", + "readging": "さししお", + "pos": "名詞", + "pn": -0.419585 + }, + { + "surface": "ビルディング", + "readging": "ビルディング", + "pos": "名詞", + "pn": -0.419592 + }, + { + "surface": "統計", + "readging": "とうけい", + "pos": "名詞", + "pn": -0.419593 + }, + { + "surface": "校閲", + "readging": "こうえつ", + "pos": "名詞", + "pn": -0.419602 + }, + { + "surface": "ポリグラフ", + "readging": "ポリグラフ", + "pos": "名詞", + "pn": -0.419605 + }, + { + "surface": "コード", + "readging": "コード", + "pos": "名詞", + "pn": -0.419605 + }, + { + "surface": "明け暮れる", + "readging": "あけくれる", + "pos": "動詞", + "pn": -0.419639 + }, + { + "surface": "岩屋", + "readging": "いわや", + "pos": "名詞", + "pn": -0.419652 + }, + { + "surface": "レジュメ", + "readging": "レジュメ", + "pos": "名詞", + "pn": -0.419656 + }, + { + "surface": "天神", + "readging": "てんじん", + "pos": "名詞", + "pn": -0.419676 + }, + { + "surface": "食費", + "readging": "しょくひ", + "pos": "名詞", + "pn": -0.419677 + }, + { + "surface": "蟻酸", + "readging": "ぎさん", + "pos": "名詞", + "pn": -0.419692 + }, + { + "surface": "馬糞紙", + "readging": "ばふんし", + "pos": "名詞", + "pn": -0.419694 + }, + { + "surface": "披閲", + "readging": "ひえつ", + "pos": "名詞", + "pn": -0.419705 + }, + { + "surface": "毛鉤", + "readging": "けばり", + "pos": "名詞", + "pn": -0.419705 + }, + { + "surface": "破廉恥", + "readging": "はれんち", + "pos": "名詞", + "pn": -0.419715 + }, + { + "surface": "未聞", + "readging": "みもん", + "pos": "名詞", + "pn": -0.419741 + }, + { + "surface": "煽る", + "readging": "あおる", + "pos": "動詞", + "pn": -0.419754 + }, + { + "surface": "ぬけぬけ", + "readging": "ぬけぬけ", + "pos": "副詞", + "pn": -0.419763 + }, + { + "surface": "別荘", + "readging": "べっそう", + "pos": "名詞", + "pn": -0.419765 + }, + { + "surface": "水切り", + "readging": "みずきり", + "pos": "名詞", + "pn": -0.41977 + }, + { + "surface": "部族", + "readging": "ぶぞく", + "pos": "名詞", + "pn": -0.419773 + }, + { + "surface": "モノマニア", + "readging": "モノマニア", + "pos": "名詞", + "pn": -0.419803 + }, + { + "surface": "竜胆", + "readging": "りんどう", + "pos": "名詞", + "pn": -0.419804 + }, + { + "surface": "切花", + "readging": "きりばな", + "pos": "名詞", + "pn": -0.419827 + }, + { + "surface": "遠ざかる", + "readging": "とおざかる", + "pos": "動詞", + "pn": -0.419833 + }, + { + "surface": "山積み", + "readging": "やまづみ", + "pos": "名詞", + "pn": -0.419837 + }, + { + "surface": "画定", + "readging": "かくてい", + "pos": "名詞", + "pn": -0.419837 + }, + { + "surface": "余裕", + "readging": "よゆう", + "pos": "名詞", + "pn": -0.419862 + }, + { + "surface": "素振り", + "readging": "そぶり", + "pos": "名詞", + "pn": -0.419914 + }, + { + "surface": "提言", + "readging": "ていげん", + "pos": "名詞", + "pn": -0.419919 + }, + { + "surface": "鮮少", + "readging": "せんしょう", + "pos": "名詞", + "pn": -0.419924 + }, + { + "surface": "射利", + "readging": "しゃり", + "pos": "名詞", + "pn": -0.419943 + }, + { + "surface": "レトルト食品", + "readging": "レトルトしょくひん", + "pos": "名詞", + "pn": -0.419951 + }, + { + "surface": "林檎", + "readging": "りんご", + "pos": "名詞", + "pn": -0.41996 + }, + { + "surface": "男郎花", + "readging": "おとこえし", + "pos": "名詞", + "pn": -0.419973 + }, + { + "surface": "井戸側", + "readging": "いど", + "pos": "名詞", + "pn": -0.419983 + }, + { + "surface": "変物", + "readging": "へんぶつ", + "pos": "名詞", + "pn": -0.420002 + }, + { + "surface": "スクランブル", + "readging": "スクランブル", + "pos": "名詞", + "pn": -0.420004 + }, + { + "surface": "遠目", + "readging": "とおめ", + "pos": "名詞", + "pn": -0.420018 + }, + { + "surface": "下屋", + "readging": "げや", + "pos": "名詞", + "pn": -0.420045 + }, + { + "surface": "胃腸", + "readging": "いちょう", + "pos": "名詞", + "pn": -0.42005 + }, + { + "surface": "尖塔", + "readging": "せんとう", + "pos": "名詞", + "pn": -0.420051 + }, + { + "surface": "ひそひそ", + "readging": "ひそひそ", + "pos": "副詞", + "pn": -0.420059 + }, + { + "surface": "探偵", + "readging": "たんてい", + "pos": "名詞", + "pn": -0.420064 + }, + { + "surface": "菜", + "readging": "さい", + "pos": "名詞", + "pn": -0.420072 + }, + { + "surface": "上前", + "readging": "うわまえ", + "pos": "名詞", + "pn": -0.420074 + }, + { + "surface": "懲り懲り", + "readging": "こりごり", + "pos": "名詞", + "pn": -0.420081 + }, + { + "surface": "競泳", + "readging": "きょうえい", + "pos": "名詞", + "pn": -0.420087 + }, + { + "surface": "死脈", + "readging": "しみゃく", + "pos": "名詞", + "pn": -0.420099 + }, + { + "surface": "社寺", + "readging": "しゃじ", + "pos": "名詞", + "pn": -0.420125 + }, + { + "surface": "切断", + "readging": "せつだん", + "pos": "名詞", + "pn": -0.420143 + }, + { + "surface": "領収証", + "readging": "りょうしゅうしょう", + "pos": "名詞", + "pn": -0.420153 + }, + { + "surface": "松葉杖", + "readging": "まつばづえ", + "pos": "名詞", + "pn": -0.420154 + }, + { + "surface": "救癩", + "readging": "きゅうらい", + "pos": "名詞", + "pn": -0.42016 + }, + { + "surface": "水月", + "readging": "すいげつ", + "pos": "名詞", + "pn": -0.420162 + }, + { + "surface": "八十八夜", + "readging": "はちじゅうはちや", + "pos": "名詞", + "pn": -0.420178 + }, + { + "surface": "掛物", + "readging": "かけもの", + "pos": "名詞", + "pn": -0.420189 + }, + { + "surface": "交雑", + "readging": "こうざつ", + "pos": "名詞", + "pn": -0.420218 + }, + { + "surface": "中落ち", + "readging": "なかおち", + "pos": "名詞", + "pn": -0.420237 + }, + { + "surface": "蜃気楼", + "readging": "しんきろう", + "pos": "名詞", + "pn": -0.42024 + }, + { + "surface": "蔵屋敷", + "readging": "くらやしき", + "pos": "名詞", + "pn": -0.420244 + }, + { + "surface": "王朝", + "readging": "おうちょう", + "pos": "名詞", + "pn": -0.420272 + }, + { + "surface": "流行歌", + "readging": "りゅうこうか", + "pos": "名詞", + "pn": -0.420281 + }, + { + "surface": "潮汁", + "readging": "うしおじる", + "pos": "名詞", + "pn": -0.420328 + }, + { + "surface": "雇主", + "readging": "やといぬし", + "pos": "名詞", + "pn": -0.420346 + }, + { + "surface": "トランクス", + "readging": "トランクス", + "pos": "名詞", + "pn": -0.4204 + }, + { + "surface": "道服", + "readging": "どうふく", + "pos": "名詞", + "pn": -0.420419 + }, + { + "surface": "ペースト", + "readging": "ペースト", + "pos": "名詞", + "pn": -0.420421 + }, + { + "surface": "日光浴", + "readging": "にっこうよく", + "pos": "名詞", + "pn": -0.420423 + }, + { + "surface": "操業短縮", + "readging": "そうぎょうたんしゅく", + "pos": "名詞", + "pn": -0.420431 + }, + { + "surface": "タイツ", + "readging": "タイツ", + "pos": "名詞", + "pn": -0.420437 + }, + { + "surface": "藤本", + "readging": "とうほん", + "pos": "名詞", + "pn": -0.420446 + }, + { + "surface": "ゲスト", + "readging": "ゲスト", + "pos": "名詞", + "pn": -0.420447 + }, + { + "surface": "バナナ", + "readging": "バナナ", + "pos": "名詞", + "pn": -0.42046 + }, + { + "surface": "井", + "readging": "い", + "pos": "名詞", + "pn": -0.420478 + }, + { + "surface": "シロップ", + "readging": "シロップ", + "pos": "名詞", + "pn": -0.420484 + }, + { + "surface": "条目", + "readging": "じょうもく", + "pos": "名詞", + "pn": -0.420518 + }, + { + "surface": "裏襟", + "readging": "うらえり", + "pos": "名詞", + "pn": -0.420518 + }, + { + "surface": "狩衣", + "readging": "かりぎぬ", + "pos": "名詞", + "pn": -0.420526 + }, + { + "surface": "春秋", + "readging": "しゅんじゅう", + "pos": "名詞", + "pn": -0.420535 + }, + { + "surface": "三枚目", + "readging": "さんまいめ", + "pos": "名詞", + "pn": -0.420559 + }, + { + "surface": "三七日", + "readging": "みなのか", + "pos": "名詞", + "pn": -0.420595 + }, + { + "surface": "血達磨", + "readging": "ちだるま", + "pos": "名詞", + "pn": -0.420596 + }, + { + "surface": "ベンチ", + "readging": "ベンチ", + "pos": "名詞", + "pn": -0.420597 + }, + { + "surface": "学年", + "readging": "がくねん", + "pos": "名詞", + "pn": -0.420619 + }, + { + "surface": "予期", + "readging": "よき", + "pos": "名詞", + "pn": -0.42062 + }, + { + "surface": "鉱石", + "readging": "こうせき", + "pos": "名詞", + "pn": -0.420623 + }, + { + "surface": "寒行", + "readging": "かんぎょう", + "pos": "名詞", + "pn": -0.420639 + }, + { + "surface": "車庫", + "readging": "しゃこ", + "pos": "名詞", + "pn": -0.420684 + }, + { + "surface": "読み書き", + "readging": "よみかき", + "pos": "名詞", + "pn": -0.420684 + }, + { + "surface": "背鰭", + "readging": "せびれ", + "pos": "名詞", + "pn": -0.420689 + }, + { + "surface": "通過", + "readging": "つうか", + "pos": "名詞", + "pn": -0.420701 + }, + { + "surface": "損ねる", + "readging": "そこねる", + "pos": "動詞", + "pn": -0.420702 + }, + { + "surface": "手取り", + "readging": "てどり", + "pos": "名詞", + "pn": -0.420747 + }, + { + "surface": "改定", + "readging": "かいてい", + "pos": "名詞", + "pn": -0.42076 + }, + { + "surface": "契り", + "readging": "ちぎり", + "pos": "名詞", + "pn": -0.420772 + }, + { + "surface": "見詰める", + "readging": "みつめる", + "pos": "動詞", + "pn": -0.4208 + }, + { + "surface": "抱着く", + "readging": "だきつく", + "pos": "動詞", + "pn": -0.420805 + }, + { + "surface": "歴然", + "readging": "れきぜん", + "pos": "名詞", + "pn": -0.420806 + }, + { + "surface": "腹膜", + "readging": "ふくまく", + "pos": "名詞", + "pn": -0.420818 + }, + { + "surface": "振向ける", + "readging": "ふりむける", + "pos": "動詞", + "pn": -0.420821 + }, + { + "surface": "膣", + "readging": "ちつ", + "pos": "名詞", + "pn": -0.420822 + }, + { + "surface": "全日制", + "readging": "ぜんじつせい", + "pos": "名詞", + "pn": -0.420842 + }, + { + "surface": "南極", + "readging": "なんきょく", + "pos": "名詞", + "pn": -0.420868 + }, + { + "surface": "公約", + "readging": "こうやく", + "pos": "名詞", + "pn": -0.420869 + }, + { + "surface": "薬師", + "readging": "やくし", + "pos": "名詞", + "pn": -0.420888 + }, + { + "surface": "輸出", + "readging": "ゆしゅつ", + "pos": "名詞", + "pn": -0.420901 + }, + { + "surface": "連中", + "readging": "れんぢゅう", + "pos": "名詞", + "pn": -0.420913 + }, + { + "surface": "エリア", + "readging": "エリア", + "pos": "名詞", + "pn": -0.420913 + }, + { + "surface": "催眠術", + "readging": "さいみんじゅつ", + "pos": "名詞", + "pn": -0.420942 + }, + { + "surface": "擡げる", + "readging": "もたげる", + "pos": "動詞", + "pn": -0.420952 + }, + { + "surface": "鶯色", + "readging": "うぐいすいろ", + "pos": "名詞", + "pn": -0.420954 + }, + { + "surface": "整復", + "readging": "せいふく", + "pos": "名詞", + "pn": -0.420999 + }, + { + "surface": "羅刹", + "readging": "らせつ", + "pos": "名詞", + "pn": -0.421006 + }, + { + "surface": "サイダー", + "readging": "サイダー", + "pos": "名詞", + "pn": -0.421037 + }, + { + "surface": "旦", + "readging": "たん", + "pos": "名詞", + "pn": -0.42104 + }, + { + "surface": "不明", + "readging": "ふめい", + "pos": "名詞", + "pn": -0.421068 + }, + { + "surface": "珊瑚珠", + "readging": "さんごじゅ", + "pos": "名詞", + "pn": -0.421072 + }, + { + "surface": "政派", + "readging": "せいは", + "pos": "名詞", + "pn": -0.421126 + }, + { + "surface": "小編", + "readging": "しょうへん", + "pos": "名詞", + "pn": -0.421209 + }, + { + "surface": "籐椅子", + "readging": "とういす", + "pos": "名詞", + "pn": -0.421219 + }, + { + "surface": "中黒", + "readging": "なかぐろ", + "pos": "名詞", + "pn": -0.421249 + }, + { + "surface": "詰込む", + "readging": "つめこむ", + "pos": "動詞", + "pn": -0.421257 + }, + { + "surface": "年季", + "readging": "ねんき", + "pos": "名詞", + "pn": -0.421259 + }, + { + "surface": "たかり", + "readging": "たかり", + "pos": "名詞", + "pn": -0.421269 + }, + { + "surface": "酒手", + "readging": "さかて", + "pos": "名詞", + "pn": -0.421272 + }, + { + "surface": "レッスン", + "readging": "レッスン", + "pos": "名詞", + "pn": -0.42128 + }, + { + "surface": "遅参", + "readging": "ちさん", + "pos": "名詞", + "pn": -0.421293 + }, + { + "surface": "邪論", + "readging": "じゃろん", + "pos": "名詞", + "pn": -0.421307 + }, + { + "surface": "厳秘", + "readging": "げんぴ", + "pos": "名詞", + "pn": -0.421313 + }, + { + "surface": "サーチライト", + "readging": "サーチライト", + "pos": "名詞", + "pn": -0.42133 + }, + { + "surface": "怪談", + "readging": "かいだん", + "pos": "名詞", + "pn": -0.42133 + }, + { + "surface": "スマッシュ", + "readging": "スマッシュ", + "pos": "名詞", + "pn": -0.421351 + }, + { + "surface": "尚尚書", + "readging": "なおなお", + "pos": "名詞", + "pn": -0.421354 + }, + { + "surface": "大葉", + "readging": "おおば", + "pos": "名詞", + "pn": -0.421373 + }, + { + "surface": "家内", + "readging": "やうち", + "pos": "名詞", + "pn": -0.421381 + }, + { + "surface": "雲行き", + "readging": "くもゆき", + "pos": "名詞", + "pn": -0.42139 + }, + { + "surface": "視", + "readging": "し", + "pos": "名詞", + "pn": -0.421427 + }, + { + "surface": "蛍光灯", + "readging": "けいこうとう", + "pos": "名詞", + "pn": -0.421446 + }, + { + "surface": "休す", + "readging": "きゅうす", + "pos": "動詞", + "pn": -0.421471 + }, + { + "surface": "蔦葛", + "readging": "つたかずら", + "pos": "名詞", + "pn": -0.421488 + }, + { + "surface": "吾木香", + "readging": "われもこう", + "pos": "名詞", + "pn": -0.421498 + }, + { + "surface": "振掛け", + "readging": "ふりかけ", + "pos": "名詞", + "pn": -0.421508 + }, + { + "surface": "搬送波", + "readging": "はんそうは", + "pos": "名詞", + "pn": -0.421518 + }, + { + "surface": "スエード", + "readging": "スエード", + "pos": "名詞", + "pn": -0.421519 + }, + { + "surface": "三指", + "readging": "みつゆび", + "pos": "名詞", + "pn": -0.421536 + }, + { + "surface": "懇願", + "readging": "こんがん", + "pos": "名詞", + "pn": -0.421552 + }, + { + "surface": "祭り上げる", + "readging": "まつりあげる", + "pos": "動詞", + "pn": -0.421569 + }, + { + "surface": "友釣", + "readging": "ともづり", + "pos": "名詞", + "pn": -0.421574 + }, + { + "surface": "アーチ", + "readging": "アーチ", + "pos": "名詞", + "pn": -0.421592 + }, + { + "surface": "即急", + "readging": "そっきゅう", + "pos": "名詞", + "pn": -0.421607 + }, + { + "surface": "台本", + "readging": "だいほん", + "pos": "名詞", + "pn": -0.42161 + }, + { + "surface": "客足", + "readging": "きゃくあし", + "pos": "名詞", + "pn": -0.421617 + }, + { + "surface": "椎骨", + "readging": "ついこつ", + "pos": "名詞", + "pn": -0.421623 + }, + { + "surface": "評価", + "readging": "ひょうか", + "pos": "名詞", + "pn": -0.421664 + }, + { + "surface": "種目", + "readging": "しゅもく", + "pos": "名詞", + "pn": -0.421668 + }, + { + "surface": "金高", + "readging": "きんだか", + "pos": "名詞", + "pn": -0.421671 + }, + { + "surface": "益", + "readging": "ますます", + "pos": "副詞", + "pn": -0.421675 + }, + { + "surface": "馬酔木", + "readging": "あせび", + "pos": "名詞", + "pn": -0.421676 + }, + { + "surface": "胴着", + "readging": "どうぎ", + "pos": "名詞", + "pn": -0.421679 + }, + { + "surface": "サラダ", + "readging": "サラダ", + "pos": "名詞", + "pn": -0.421681 + }, + { + "surface": "世子", + "readging": "せいし", + "pos": "名詞", + "pn": -0.421688 + }, + { + "surface": "茶器", + "readging": "ちゃき", + "pos": "名詞", + "pn": -0.421702 + }, + { + "surface": "雲形", + "readging": "くもがた", + "pos": "名詞", + "pn": -0.421766 + }, + { + "surface": "ぼやける", + "readging": "ぼやける", + "pos": "動詞", + "pn": -0.421774 + }, + { + "surface": "千波万波", + "readging": "せんぱばんぱ", + "pos": "名詞", + "pn": -0.421777 + }, + { + "surface": "位地", + "readging": "いち", + "pos": "名詞", + "pn": -0.421783 + }, + { + "surface": "甲掛", + "readging": "こうかけ", + "pos": "名詞", + "pn": -0.421789 + }, + { + "surface": "ジゴロ", + "readging": "ジゴロ", + "pos": "名詞", + "pn": -0.421804 + }, + { + "surface": "中世", + "readging": "ちゅうせい", + "pos": "名詞", + "pn": -0.421814 + }, + { + "surface": "男根", + "readging": "だんこん", + "pos": "名詞", + "pn": -0.421817 + }, + { + "surface": "覗かせる", + "readging": "のぞかせる", + "pos": "動詞", + "pn": -0.42183 + }, + { + "surface": "離党", + "readging": "りとう", + "pos": "名詞", + "pn": -0.421837 + }, + { + "surface": "霊廟", + "readging": "れいびょう", + "pos": "名詞", + "pn": -0.421872 + }, + { + "surface": "平紐", + "readging": "ひらひも", + "pos": "名詞", + "pn": -0.421875 + }, + { + "surface": "動向", + "readging": "どうこう", + "pos": "名詞", + "pn": -0.421876 + }, + { + "surface": "磯蚯蚓", + "readging": "いそめ", + "pos": "名詞", + "pn": -0.421879 + }, + { + "surface": "商港", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.421888 + }, + { + "surface": "超脱", + "readging": "ちょうだつ", + "pos": "名詞", + "pn": -0.421891 + }, + { + "surface": "勅諚", + "readging": "ちょくじょう", + "pos": "名詞", + "pn": -0.421898 + }, + { + "surface": "見掛け", + "readging": "みかけ", + "pos": "名詞", + "pn": -0.421907 + }, + { + "surface": "加里", + "readging": "カリ", + "pos": "名詞", + "pn": -0.421923 + }, + { + "surface": "入選", + "readging": "にゅうせん", + "pos": "名詞", + "pn": -0.421927 + }, + { + "surface": "髱", + "readging": "たぼ", + "pos": "名詞", + "pn": -0.421931 + }, + { + "surface": "退去", + "readging": "たいきょ", + "pos": "名詞", + "pn": -0.42196 + }, + { + "surface": "名残の月", + "readging": "なごりのつき", + "pos": "名詞", + "pn": -0.421975 + }, + { + "surface": "槓杆", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.42198 + }, + { + "surface": "大本", + "readging": "たいほん", + "pos": "名詞", + "pn": -0.422006 + }, + { + "surface": "迷わす", + "readging": "まよわす", + "pos": "動詞", + "pn": -0.422023 + }, + { + "surface": "飛行船", + "readging": "ひこうせん", + "pos": "名詞", + "pn": -0.42204 + }, + { + "surface": "リットル", + "readging": "リットル", + "pos": "名詞", + "pn": -0.422042 + }, + { + "surface": "知る", + "readging": "しる", + "pos": "動詞", + "pn": -0.422053 + }, + { + "surface": "定", + "readging": "てい", + "pos": "名詞", + "pn": -0.422055 + }, + { + "surface": "羊歯", + "readging": "しだ", + "pos": "名詞", + "pn": -0.422065 + }, + { + "surface": "前衛", + "readging": "ぜんえい", + "pos": "名詞", + "pn": -0.422072 + }, + { + "surface": "ちゃんちゃんこ", + "readging": "ちゃんちゃんこ", + "pos": "名詞", + "pn": -0.422074 + }, + { + "surface": "アーム", + "readging": "アーム", + "pos": "名詞", + "pn": -0.422076 + }, + { + "surface": "挟まる", + "readging": "はさまる", + "pos": "動詞", + "pn": -0.422082 + }, + { + "surface": "参差", + "readging": "しんし", + "pos": "名詞", + "pn": -0.422093 + }, + { + "surface": "譲与", + "readging": "じょうよ", + "pos": "名詞", + "pn": -0.422113 + }, + { + "surface": "昨夕", + "readging": "さくゆう", + "pos": "名詞", + "pn": -0.422117 + }, + { + "surface": "国民", + "readging": "くにたみ", + "pos": "名詞", + "pn": -0.422143 + }, + { + "surface": "席次", + "readging": "せきじ", + "pos": "名詞", + "pn": -0.422178 + }, + { + "surface": "船標", + "readging": "ふなじるし", + "pos": "名詞", + "pn": -0.42218 + }, + { + "surface": "担い商い", + "readging": "にないあきない", + "pos": "名詞", + "pn": -0.422192 + }, + { + "surface": "紙", + "readging": "かみ", + "pos": "名詞", + "pn": -0.422211 + }, + { + "surface": "凋落", + "readging": "ちょうらく", + "pos": "名詞", + "pn": -0.422228 + }, + { + "surface": "奇話", + "readging": "きわ", + "pos": "名詞", + "pn": -0.422248 + }, + { + "surface": "真田虫", + "readging": "さなだむし", + "pos": "名詞", + "pn": -0.422274 + }, + { + "surface": "蚤取粉", + "readging": "のみとりこ", + "pos": "名詞", + "pn": -0.422278 + }, + { + "surface": "頭金", + "readging": "あたまきん", + "pos": "名詞", + "pn": -0.422281 + }, + { + "surface": "鎧戸", + "readging": "よろいど", + "pos": "名詞", + "pn": -0.422287 + }, + { + "surface": "貫徹", + "readging": "かんてつ", + "pos": "名詞", + "pn": -0.422307 + }, + { + "surface": "計量", + "readging": "けいりょう", + "pos": "名詞", + "pn": -0.422344 + }, + { + "surface": "犬掻き", + "readging": "いぬかき", + "pos": "名詞", + "pn": -0.42235 + }, + { + "surface": "補助", + "readging": "ほじょ", + "pos": "名詞", + "pn": -0.422365 + }, + { + "surface": "陣羽織", + "readging": "じんばおり", + "pos": "名詞", + "pn": -0.4224 + }, + { + "surface": "山家", + "readging": "さんか", + "pos": "名詞", + "pn": -0.422407 + }, + { + "surface": "経穴", + "readging": "けいけつ", + "pos": "名詞", + "pn": -0.422415 + }, + { + "surface": "碧瑠璃", + "readging": "へきるり", + "pos": "名詞", + "pn": -0.422434 + }, + { + "surface": "自在", + "readging": "じざい", + "pos": "名詞", + "pn": -0.422461 + }, + { + "surface": "思い付く", + "readging": "おもいつく", + "pos": "動詞", + "pn": -0.422471 + }, + { + "surface": "玉糸", + "readging": "たまいと", + "pos": "名詞", + "pn": -0.422479 + }, + { + "surface": "広蓋", + "readging": "ひろぶた", + "pos": "名詞", + "pn": -0.42248 + }, + { + "surface": "入", + "readging": "しお", + "pos": "名詞", + "pn": -0.422499 + }, + { + "surface": "語呂合せ", + "readging": "ごろあわせ", + "pos": "名詞", + "pn": -0.422502 + }, + { + "surface": "関所破り", + "readging": "せきしょやぶり", + "pos": "名詞", + "pn": -0.422509 + }, + { + "surface": "仕付ける", + "readging": "しつける", + "pos": "動詞", + "pn": -0.42251 + }, + { + "surface": "対策", + "readging": "たいさく", + "pos": "名詞", + "pn": -0.422524 + }, + { + "surface": "リンス", + "readging": "リンス", + "pos": "名詞", + "pn": -0.422552 + }, + { + "surface": "寺銭", + "readging": "てらせん", + "pos": "名詞", + "pn": -0.422561 + }, + { + "surface": "湯冷め", + "readging": "ゆざめ", + "pos": "名詞", + "pn": -0.422563 + }, + { + "surface": "惜敗", + "readging": "せきはい", + "pos": "名詞", + "pn": -0.422582 + }, + { + "surface": "中仕切", + "readging": "なかじきり", + "pos": "名詞", + "pn": -0.422592 + }, + { + "surface": "逃げ腰", + "readging": "にげごし", + "pos": "名詞", + "pn": -0.42262 + }, + { + "surface": "女嫌い", + "readging": "おんなぎらい", + "pos": "名詞", + "pn": -0.422629 + }, + { + "surface": "男嫌い", + "readging": "おとこぎらい", + "pos": "名詞", + "pn": -0.422629 + }, + { + "surface": "苔桃", + "readging": "こけもも", + "pos": "名詞", + "pn": -0.422646 + }, + { + "surface": "握手", + "readging": "あくしゅ", + "pos": "名詞", + "pn": -0.422653 + }, + { + "surface": "当来", + "readging": "とうらい", + "pos": "名詞", + "pn": -0.422663 + }, + { + "surface": "網状", + "readging": "もうじょう", + "pos": "名詞", + "pn": -0.422672 + }, + { + "surface": "減速", + "readging": "げんそく", + "pos": "名詞", + "pn": -0.42269 + }, + { + "surface": "縫いぐるみ", + "readging": "ぬいぐるみ", + "pos": "名詞", + "pn": -0.422733 + }, + { + "surface": "定規", + "readging": "じょうぎ", + "pos": "名詞", + "pn": -0.42274 + }, + { + "surface": "六根", + "readging": "ろっこん", + "pos": "名詞", + "pn": -0.422783 + }, + { + "surface": "颯と", + "readging": "さっと", + "pos": "副詞", + "pn": -0.422835 + }, + { + "surface": "上古", + "readging": "じょうこ", + "pos": "名詞", + "pn": -0.422841 + }, + { + "surface": "毛頭", + "readging": "もうとう", + "pos": "副詞", + "pn": -0.422851 + }, + { + "surface": "集約", + "readging": "しゅうやく", + "pos": "名詞", + "pn": -0.422858 + }, + { + "surface": "白狐", + "readging": "びゃっこ", + "pos": "名詞", + "pn": -0.42287 + }, + { + "surface": "駆出し", + "readging": "かけだし", + "pos": "名詞", + "pn": -0.422879 + }, + { + "surface": "鋤簾", + "readging": "じょれん", + "pos": "名詞", + "pn": -0.422896 + }, + { + "surface": "即詠", + "readging": "そくえい", + "pos": "名詞", + "pn": -0.422906 + }, + { + "surface": "砂丘", + "readging": "さきゅう", + "pos": "名詞", + "pn": -0.422921 + }, + { + "surface": "物好き", + "readging": "ものずき", + "pos": "名詞", + "pn": -0.422924 + }, + { + "surface": "海気", + "readging": "かいき", + "pos": "名詞", + "pn": -0.422926 + }, + { + "surface": "二伸", + "readging": "にしん", + "pos": "名詞", + "pn": -0.42293 + }, + { + "surface": "荒療治", + "readging": "あらりょうじ", + "pos": "名詞", + "pn": -0.422933 + }, + { + "surface": "本塁", + "readging": "ほんるい", + "pos": "名詞", + "pn": -0.422961 + }, + { + "surface": "回り舞台", + "readging": "まわりぶたい", + "pos": "名詞", + "pn": -0.422978 + }, + { + "surface": "手元", + "readging": "てもと", + "pos": "名詞", + "pn": -0.422984 + }, + { + "surface": "白玉", + "readging": "しらたま", + "pos": "名詞", + "pn": -0.422995 + }, + { + "surface": "門歯", + "readging": "もんし", + "pos": "名詞", + "pn": -0.423029 + }, + { + "surface": "縄文", + "readging": "じょうもん", + "pos": "名詞", + "pn": -0.42309 + }, + { + "surface": "復讎", + "readging": "ふくしゅう", + "pos": "名詞", + "pn": -0.423096 + }, + { + "surface": "肖像", + "readging": "しょうぞう", + "pos": "名詞", + "pn": -0.423097 + }, + { + "surface": "漁況", + "readging": "ぎょきょう", + "pos": "名詞", + "pn": -0.423164 + }, + { + "surface": "物置", + "readging": "ものおき", + "pos": "名詞", + "pn": -0.423175 + }, + { + "surface": "連出す", + "readging": "つれだす", + "pos": "動詞", + "pn": -0.423182 + }, + { + "surface": "隠語", + "readging": "いんご", + "pos": "名詞", + "pn": -0.423182 + }, + { + "surface": "アルカリ", + "readging": "アルカリ", + "pos": "名詞", + "pn": -0.423191 + }, + { + "surface": "力闘", + "readging": "りきとう", + "pos": "名詞", + "pn": -0.423194 + }, + { + "surface": "音符", + "readging": "おんぷ", + "pos": "名詞", + "pn": -0.423196 + }, + { + "surface": "アルパカ", + "readging": "アルパカ", + "pos": "名詞", + "pn": -0.423204 + }, + { + "surface": "落ち目", + "readging": "おちめ", + "pos": "名詞", + "pn": -0.423211 + }, + { + "surface": "入室", + "readging": "にゅうしつ", + "pos": "名詞", + "pn": -0.423227 + }, + { + "surface": "娘師", + "readging": "むすめし", + "pos": "名詞", + "pn": -0.423333 + }, + { + "surface": "禅門", + "readging": "ぜんもん", + "pos": "名詞", + "pn": -0.423343 + }, + { + "surface": "充塞", + "readging": "じゅうそく", + "pos": "名詞", + "pn": -0.423355 + }, + { + "surface": "畳", + "readging": "たたみ", + "pos": "名詞", + "pn": -0.423385 + }, + { + "surface": "曲節", + "readging": "きょくせつ", + "pos": "名詞", + "pn": -0.42339 + }, + { + "surface": "三昧", + "readging": "さんまい", + "pos": "名詞", + "pn": -0.4234 + }, + { + "surface": "口器", + "readging": "こうき", + "pos": "名詞", + "pn": -0.423401 + }, + { + "surface": "紫外線", + "readging": "しがいせん", + "pos": "名詞", + "pn": -0.423404 + }, + { + "surface": "知能犯", + "readging": "ちのうはん", + "pos": "名詞", + "pn": -0.423412 + }, + { + "surface": "切妻", + "readging": "きりづま", + "pos": "名詞", + "pn": -0.423419 + }, + { + "surface": "内記", + "readging": "ないき", + "pos": "名詞", + "pn": -0.423434 + }, + { + "surface": "宥める", + "readging": "なだめる", + "pos": "動詞", + "pn": -0.423435 + }, + { + "surface": "運針", + "readging": "うんしん", + "pos": "名詞", + "pn": -0.42344 + }, + { + "surface": "和尚", + "readging": "おしょう", + "pos": "名詞", + "pn": -0.423451 + }, + { + "surface": "メートル", + "readging": "メートル", + "pos": "名詞", + "pn": -0.423459 + }, + { + "surface": "犬蓼", + "readging": "いぬたで", + "pos": "名詞", + "pn": -0.42346 + }, + { + "surface": "ブリッジ", + "readging": "ブリッジ", + "pos": "名詞", + "pn": -0.423467 + }, + { + "surface": "キュー", + "readging": "キュー", + "pos": "名詞", + "pn": -0.423488 + }, + { + "surface": "現金", + "readging": "げんきん", + "pos": "名詞", + "pn": -0.423493 + }, + { + "surface": "担保", + "readging": "たんぽ", + "pos": "名詞", + "pn": -0.423495 + }, + { + "surface": "坐禅", + "readging": "ざぜん", + "pos": "名詞", + "pn": -0.4235 + }, + { + "surface": "馬脚", + "readging": "ばきゃく", + "pos": "名詞", + "pn": -0.423512 + }, + { + "surface": "ユーカリ", + "readging": "ユーカリ", + "pos": "名詞", + "pn": -0.423527 + }, + { + "surface": "煤煙", + "readging": "ばいえん", + "pos": "名詞", + "pn": -0.423542 + }, + { + "surface": "要覧", + "readging": "ようらん", + "pos": "名詞", + "pn": -0.423563 + }, + { + "surface": "物珍しい", + "readging": "ものめずらしい", + "pos": "形容詞", + "pn": -0.423566 + }, + { + "surface": "管轄", + "readging": "かんかつ", + "pos": "名詞", + "pn": -0.423591 + }, + { + "surface": "丑", + "readging": "うし", + "pos": "名詞", + "pn": -0.423595 + }, + { + "surface": "退却", + "readging": "たいきゃく", + "pos": "名詞", + "pn": -0.423601 + }, + { + "surface": "点取り虫", + "readging": "てんとりむし", + "pos": "名詞", + "pn": -0.423606 + }, + { + "surface": "見せ金", + "readging": "みせがね", + "pos": "名詞", + "pn": -0.423611 + }, + { + "surface": "カッター", + "readging": "カッター", + "pos": "名詞", + "pn": -0.423621 + }, + { + "surface": "カー", + "readging": "カーフェリー", + "pos": "名詞", + "pn": -0.423628 + }, + { + "surface": "採点", + "readging": "さいてん", + "pos": "名詞", + "pn": -0.423641 + }, + { + "surface": "陣鐘", + "readging": "じんがね", + "pos": "名詞", + "pn": -0.423646 + }, + { + "surface": "転送", + "readging": "てんそう", + "pos": "名詞", + "pn": -0.423657 + }, + { + "surface": "金偏", + "readging": "かねへん", + "pos": "名詞", + "pn": -0.423661 + }, + { + "surface": "煙滅", + "readging": "えんめつ", + "pos": "名詞", + "pn": -0.423662 + }, + { + "surface": "主家", + "readging": "しゅか", + "pos": "名詞", + "pn": -0.42369 + }, + { + "surface": "近眼鏡", + "readging": "きんがんきょう", + "pos": "名詞", + "pn": -0.423708 + }, + { + "surface": "藍", + "readging": "あい", + "pos": "名詞", + "pn": -0.423726 + }, + { + "surface": "十二宮", + "readging": "じゅうにきゅう", + "pos": "名詞", + "pn": -0.423737 + }, + { + "surface": "綯交ぜ", + "readging": "ないまぜ", + "pos": "名詞", + "pn": -0.423744 + }, + { + "surface": "非常線", + "readging": "ひじょうせん", + "pos": "名詞", + "pn": -0.423744 + }, + { + "surface": "半導体", + "readging": "はんどうたい", + "pos": "名詞", + "pn": -0.423744 + }, + { + "surface": "焼け穴", + "readging": "やけあな", + "pos": "名詞", + "pn": -0.423781 + }, + { + "surface": "鼻毛", + "readging": "はなげ", + "pos": "名詞", + "pn": -0.423783 + }, + { + "surface": "形骸", + "readging": "けいがい", + "pos": "名詞", + "pn": -0.423788 + }, + { + "surface": "炭焼", + "readging": "すみやき", + "pos": "名詞", + "pn": -0.4238 + }, + { + "surface": "カーネーション", + "readging": "カーネーション", + "pos": "名詞", + "pn": -0.423834 + }, + { + "surface": "さして", + "readging": "さして", + "pos": "副詞", + "pn": -0.423837 + }, + { + "surface": "証書", + "readging": "しょうしょ", + "pos": "名詞", + "pn": -0.423844 + }, + { + "surface": "参考", + "readging": "さんこう", + "pos": "名詞", + "pn": -0.423851 + }, + { + "surface": "加薬", + "readging": "かやく", + "pos": "名詞", + "pn": -0.423886 + }, + { + "surface": "大幅", + "readging": "おおはば", + "pos": "名詞", + "pn": -0.423889 + }, + { + "surface": "浦", + "readging": "ほ", + "pos": "名詞", + "pn": -0.423904 + }, + { + "surface": "岩田帯", + "readging": "いわたおび", + "pos": "名詞", + "pn": -0.423918 + }, + { + "surface": "新書", + "readging": "しんしょ", + "pos": "名詞", + "pn": -0.423934 + }, + { + "surface": "釣天井", + "readging": "つりてんじょう", + "pos": "名詞", + "pn": -0.423953 + }, + { + "surface": "がら", + "readging": "がら", + "pos": "名詞", + "pn": -0.423984 + }, + { + "surface": "心得", + "readging": "こころえ", + "pos": "名詞", + "pn": -0.423985 + }, + { + "surface": "病歴", + "readging": "びょうれき", + "pos": "名詞", + "pn": -0.423995 + }, + { + "surface": "山砲", + "readging": "さんぽう", + "pos": "名詞", + "pn": -0.424024 + }, + { + "surface": "溝萩", + "readging": "みそはぎ", + "pos": "名詞", + "pn": -0.424025 + }, + { + "surface": "混浴", + "readging": "こんよく", + "pos": "名詞", + "pn": -0.424055 + }, + { + "surface": "やきもき", + "readging": "やきもき", + "pos": "副詞", + "pn": -0.424089 + }, + { + "surface": "黄色", + "readging": "おうしょく", + "pos": "名詞", + "pn": -0.42409 + }, + { + "surface": "二分", + "readging": "にぶん", + "pos": "名詞", + "pn": -0.424106 + }, + { + "surface": "どんこ", + "readging": "どんこ", + "pos": "名詞", + "pn": -0.424129 + }, + { + "surface": "護送", + "readging": "ごそう", + "pos": "名詞", + "pn": -0.424135 + }, + { + "surface": "警策", + "readging": "きょうさく", + "pos": "名詞", + "pn": -0.424137 + }, + { + "surface": "潜戸", + "readging": "くぐりど", + "pos": "名詞", + "pn": -0.42414 + }, + { + "surface": "物忘れ", + "readging": "ものわすれ", + "pos": "名詞", + "pn": -0.42415 + }, + { + "surface": "小股", + "readging": "こまた", + "pos": "名詞", + "pn": -0.424154 + }, + { + "surface": "内乱", + "readging": "ないらん", + "pos": "名詞", + "pn": -0.424156 + }, + { + "surface": "銀砂子", + "readging": "ぎんすなご", + "pos": "名詞", + "pn": -0.424164 + }, + { + "surface": "若しも", + "readging": "もしも", + "pos": "副詞", + "pn": -0.424169 + }, + { + "surface": "披露", + "readging": "ひろう", + "pos": "名詞", + "pn": -0.424194 + }, + { + "surface": "庫", + "readging": "こ", + "pos": "名詞", + "pn": -0.4242 + }, + { + "surface": "ペーパー", + "readging": "ペーパー", + "pos": "名詞", + "pn": -0.424227 + }, + { + "surface": "田畑", + "readging": "たはた", + "pos": "名詞", + "pn": -0.424255 + }, + { + "surface": "雪下ろし", + "readging": "ゆきおろし", + "pos": "名詞", + "pn": -0.424256 + }, + { + "surface": "稲妻形", + "readging": "いなずま", + "pos": "名詞", + "pn": -0.424264 + }, + { + "surface": "更年期", + "readging": "こうねんき", + "pos": "名詞", + "pn": -0.424273 + }, + { + "surface": "衍文", + "readging": "えんぶん", + "pos": "名詞", + "pn": -0.424294 + }, + { + "surface": "下げ戻し", + "readging": "さげもどし", + "pos": "名詞", + "pn": -0.424309 + }, + { + "surface": "排泄", + "readging": "はいせつ", + "pos": "名詞", + "pn": -0.424309 + }, + { + "surface": "訓読み", + "readging": "くんよみ", + "pos": "名詞", + "pn": -0.424312 + }, + { + "surface": "長期", + "readging": "ちょうき", + "pos": "名詞", + "pn": -0.424332 + }, + { + "surface": "肝煎", + "readging": "きもいり", + "pos": "名詞", + "pn": -0.424333 + }, + { + "surface": "席料", + "readging": "せきりょう", + "pos": "名詞", + "pn": -0.424356 + }, + { + "surface": "子分", + "readging": "こぶん", + "pos": "名詞", + "pn": -0.424365 + }, + { + "surface": "掛買", + "readging": "かけがい", + "pos": "名詞", + "pn": -0.424367 + }, + { + "surface": "ベゴニア", + "readging": "ベゴニア", + "pos": "名詞", + "pn": -0.424387 + }, + { + "surface": "目白", + "readging": "めじろ", + "pos": "名詞", + "pn": -0.424405 + }, + { + "surface": "アニメーション", + "readging": "アニメーション", + "pos": "名詞", + "pn": -0.424425 + }, + { + "surface": "三子", + "readging": "みつご", + "pos": "名詞", + "pn": -0.42445 + }, + { + "surface": "邪宗", + "readging": "じゃしゅう", + "pos": "名詞", + "pn": -0.42446 + }, + { + "surface": "灯籠流し", + "readging": "とうろうながし", + "pos": "名詞", + "pn": -0.424463 + }, + { + "surface": "階層", + "readging": "かいそう", + "pos": "名詞", + "pn": -0.424495 + }, + { + "surface": "家憲", + "readging": "かけん", + "pos": "名詞", + "pn": -0.424514 + }, + { + "surface": "魚の目", + "readging": "うおのめ", + "pos": "名詞", + "pn": -0.424518 + }, + { + "surface": "索条", + "readging": "さくじょう", + "pos": "名詞", + "pn": -0.424638 + }, + { + "surface": "勤め口", + "readging": "つとめぐち", + "pos": "名詞", + "pn": -0.424642 + }, + { + "surface": "産米", + "readging": "さんまい", + "pos": "名詞", + "pn": -0.424647 + }, + { + "surface": "情念", + "readging": "じょうねん", + "pos": "名詞", + "pn": -0.424678 + }, + { + "surface": "概念", + "readging": "がいねん", + "pos": "名詞", + "pn": -0.424702 + }, + { + "surface": "唇音", + "readging": "しんおん", + "pos": "名詞", + "pn": -0.424706 + }, + { + "surface": "清規", + "readging": "しんぎ", + "pos": "名詞", + "pn": -0.424709 + }, + { + "surface": "峻烈", + "readging": "しゅんれつ", + "pos": "名詞", + "pn": -0.424727 + }, + { + "surface": "秋海棠", + "readging": "しゅうかいどう", + "pos": "名詞", + "pn": -0.424736 + }, + { + "surface": "洋裁", + "readging": "ようさい", + "pos": "名詞", + "pn": -0.42474 + }, + { + "surface": "背負子", + "readging": "しょいこ", + "pos": "名詞", + "pn": -0.424766 + }, + { + "surface": "破魔弓", + "readging": "はまゆみ", + "pos": "名詞", + "pn": -0.424784 + }, + { + "surface": "鉄輪", + "readging": "てつりん", + "pos": "名詞", + "pn": -0.424785 + }, + { + "surface": "コンセント", + "readging": "コンセント", + "pos": "名詞", + "pn": -0.424791 + }, + { + "surface": "批判", + "readging": "ひはん", + "pos": "名詞", + "pn": -0.424823 + }, + { + "surface": "処方箋", + "readging": "しょほうせん", + "pos": "名詞", + "pn": -0.424826 + }, + { + "surface": "天手古舞", + "readging": "てんてこまい", + "pos": "名詞", + "pn": -0.424833 + }, + { + "surface": "凍原", + "readging": "とうげん", + "pos": "名詞", + "pn": -0.424842 + }, + { + "surface": "風来坊", + "readging": "ふうらいぼう", + "pos": "名詞", + "pn": -0.424866 + }, + { + "surface": "始", + "readging": "し", + "pos": "名詞", + "pn": -0.424911 + }, + { + "surface": "金槌", + "readging": "かなづち", + "pos": "名詞", + "pn": -0.424921 + }, + { + "surface": "挽子", + "readging": "ひきこ", + "pos": "名詞", + "pn": -0.424923 + }, + { + "surface": "幅員", + "readging": "ふくいん", + "pos": "名詞", + "pn": -0.424925 + }, + { + "surface": "支離滅裂", + "readging": "しりめつれつ", + "pos": "名詞", + "pn": -0.424962 + }, + { + "surface": "痣", + "readging": "あざ", + "pos": "名詞", + "pn": -0.424993 + }, + { + "surface": "道芝", + "readging": "みちしば", + "pos": "名詞", + "pn": -0.424994 + }, + { + "surface": "打荷", + "readging": "うちに", + "pos": "名詞", + "pn": -0.424998 + }, + { + "surface": "丁", + "readging": "ひのと", + "pos": "名詞", + "pn": -0.425 + }, + { + "surface": "合方", + "readging": "あいかた", + "pos": "名詞", + "pn": -0.425011 + }, + { + "surface": "風靡", + "readging": "ふうび", + "pos": "名詞", + "pn": -0.425014 + }, + { + "surface": "赤貝", + "readging": "あかがい", + "pos": "名詞", + "pn": -0.42503 + }, + { + "surface": "仮", + "readging": "かり", + "pos": "名詞", + "pn": -0.425032 + }, + { + "surface": "ずんべらぼう", + "readging": "ずんべらぼう", + "pos": "名詞", + "pn": -0.425076 + }, + { + "surface": "黒砂糖", + "readging": "くろざとう", + "pos": "名詞", + "pn": -0.425078 + }, + { + "surface": "青酸", + "readging": "せいさん", + "pos": "名詞", + "pn": -0.425092 + }, + { + "surface": "日覆い", + "readging": "ひおおい", + "pos": "名詞", + "pn": -0.425093 + }, + { + "surface": "後発", + "readging": "こうはつ", + "pos": "名詞", + "pn": -0.425099 + }, + { + "surface": "度数", + "readging": "どすう", + "pos": "名詞", + "pn": -0.425112 + }, + { + "surface": "退校", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.425119 + }, + { + "surface": "張上げる", + "readging": "はりあげる", + "pos": "動詞", + "pn": -0.425135 + }, + { + "surface": "共", + "readging": "きょう", + "pos": "名詞", + "pn": -0.425171 + }, + { + "surface": "粉本", + "readging": "ふんぽん", + "pos": "名詞", + "pn": -0.425172 + }, + { + "surface": "逆光線", + "readging": "ぎゃっこうせん", + "pos": "名詞", + "pn": -0.425199 + }, + { + "surface": "時点", + "readging": "じてん", + "pos": "名詞", + "pn": -0.425212 + }, + { + "surface": "隠れ家", + "readging": "かくれが", + "pos": "名詞", + "pn": -0.425221 + }, + { + "surface": "裏編", + "readging": "うらあみ", + "pos": "名詞", + "pn": -0.425254 + }, + { + "surface": "小鴨", + "readging": "こがも", + "pos": "名詞", + "pn": -0.425257 + }, + { + "surface": "養", + "readging": "よう", + "pos": "名詞", + "pn": -0.425293 + }, + { + "surface": "バラライカ", + "readging": "バラライカ", + "pos": "名詞", + "pn": -0.4253 + }, + { + "surface": "撫付ける", + "readging": "なでつける", + "pos": "動詞", + "pn": -0.425312 + }, + { + "surface": "日夕", + "readging": "にっせき", + "pos": "名詞", + "pn": -0.425328 + }, + { + "surface": "薬草", + "readging": "やくそう", + "pos": "名詞", + "pn": -0.42533 + }, + { + "surface": "足搦み", + "readging": "あしがらみ", + "pos": "名詞", + "pn": -0.425335 + }, + { + "surface": "管鍼", + "readging": "くだばり", + "pos": "名詞", + "pn": -0.425382 + }, + { + "surface": "呼び塩", + "readging": "よびじお", + "pos": "名詞", + "pn": -0.425405 + }, + { + "surface": "リアル", + "readging": "リアルタイム", + "pos": "名詞", + "pn": -0.425405 + }, + { + "surface": "コールテン", + "readging": "コールテン", + "pos": "名詞", + "pn": -0.425423 + }, + { + "surface": "博引旁証", + "readging": "はくいんぼうしょう", + "pos": "名詞", + "pn": -0.425434 + }, + { + "surface": "所懐", + "readging": "しょかい", + "pos": "名詞", + "pn": -0.425445 + }, + { + "surface": "横雲", + "readging": "よこぐも", + "pos": "名詞", + "pn": -0.425473 + }, + { + "surface": "偏倚", + "readging": "へんい", + "pos": "名詞", + "pn": -0.42549 + }, + { + "surface": "輿", + "readging": "こし", + "pos": "名詞", + "pn": -0.425498 + }, + { + "surface": "真木", + "readging": "まき", + "pos": "名詞", + "pn": -0.425502 + }, + { + "surface": "印半纏", + "readging": "しるしばんてん", + "pos": "名詞", + "pn": -0.42551 + }, + { + "surface": "ペン", + "readging": "ペンクラブ", + "pos": "名詞", + "pn": -0.425522 + }, + { + "surface": "網膜", + "readging": "もうまく", + "pos": "名詞", + "pn": -0.425529 + }, + { + "surface": "鬱結", + "readging": "うっけつ", + "pos": "名詞", + "pn": -0.425533 + }, + { + "surface": "足つき", + "readging": "あしつき", + "pos": "名詞", + "pn": -0.425535 + }, + { + "surface": "享", + "readging": "きょう", + "pos": "名詞", + "pn": -0.425591 + }, + { + "surface": "放列", + "readging": "ほうれつ", + "pos": "名詞", + "pn": -0.425591 + }, + { + "surface": "搾り出し", + "readging": "しぼりだし", + "pos": "名詞", + "pn": -0.425595 + }, + { + "surface": "操縦", + "readging": "そうじゅう", + "pos": "名詞", + "pn": -0.425608 + }, + { + "surface": "地文", + "readging": "ちもん", + "pos": "名詞", + "pn": -0.42562 + }, + { + "surface": "セミ", + "readging": "セミ", + "pos": "名詞", + "pn": -0.425624 + }, + { + "surface": "素振り", + "readging": "すぶり", + "pos": "名詞", + "pn": -0.42564 + }, + { + "surface": "午", + "readging": "ご", + "pos": "名詞", + "pn": -0.425652 + }, + { + "surface": "鼠講", + "readging": "ねずみこう", + "pos": "名詞", + "pn": -0.425659 + }, + { + "surface": "双幅", + "readging": "そうふく", + "pos": "名詞", + "pn": -0.425684 + }, + { + "surface": "少弟", + "readging": "しょうてい", + "pos": "名詞", + "pn": -0.425688 + }, + { + "surface": "波頭", + "readging": "はとう", + "pos": "名詞", + "pn": -0.4257 + }, + { + "surface": "シャンデリア", + "readging": "シャンデリア", + "pos": "名詞", + "pn": -0.425704 + }, + { + "surface": "消却", + "readging": "しょうきゃく", + "pos": "名詞", + "pn": -0.425709 + }, + { + "surface": "女性", + "readging": "じょせい", + "pos": "名詞", + "pn": -0.425736 + }, + { + "surface": "ジャッキ", + "readging": "ジャッキ", + "pos": "名詞", + "pn": -0.425748 + }, + { + "surface": "綸子", + "readging": "りんず", + "pos": "名詞", + "pn": -0.425767 + }, + { + "surface": "検札", + "readging": "けんさつ", + "pos": "名詞", + "pn": -0.425768 + }, + { + "surface": "転記", + "readging": "てんき", + "pos": "名詞", + "pn": -0.425813 + }, + { + "surface": "一幕", + "readging": "ひとまく", + "pos": "名詞", + "pn": -0.425815 + }, + { + "surface": "潮汐", + "readging": "ちょうせき", + "pos": "名詞", + "pn": -0.425836 + }, + { + "surface": "火炎", + "readging": "かえん", + "pos": "名詞", + "pn": -0.425854 + }, + { + "surface": "間口", + "readging": "まぐち", + "pos": "名詞", + "pn": -0.425855 + }, + { + "surface": "糞", + "readging": "ふん", + "pos": "名詞", + "pn": -0.425873 + }, + { + "surface": "繊毛", + "readging": "せんもう", + "pos": "名詞", + "pn": -0.425876 + }, + { + "surface": "補給", + "readging": "ほきゅう", + "pos": "名詞", + "pn": -0.425937 + }, + { + "surface": "真昼間", + "readging": "まっぴるま", + "pos": "名詞", + "pn": -0.425938 + }, + { + "surface": "漫談", + "readging": "まんだん", + "pos": "名詞", + "pn": -0.425955 + }, + { + "surface": "守備", + "readging": "しゅび", + "pos": "名詞", + "pn": -0.425971 + }, + { + "surface": "乙夜", + "readging": "いつや", + "pos": "名詞", + "pn": -0.425999 + }, + { + "surface": "玉無し", + "readging": "たまなし", + "pos": "名詞", + "pn": -0.42601 + }, + { + "surface": "トップ", + "readging": "トップコート", + "pos": "名詞", + "pn": -0.426013 + }, + { + "surface": "塗薬", + "readging": "ぬりぐすり", + "pos": "名詞", + "pn": -0.426021 + }, + { + "surface": "兵営", + "readging": "へいえい", + "pos": "名詞", + "pn": -0.42604 + }, + { + "surface": "固有", + "readging": "こゆう", + "pos": "名詞", + "pn": -0.42607 + }, + { + "surface": "狂瀾", + "readging": "きょうらん", + "pos": "名詞", + "pn": -0.426087 + }, + { + "surface": "土砂降り", + "readging": "どしゃぶり", + "pos": "名詞", + "pn": -0.426096 + }, + { + "surface": "内海", + "readging": "ないかい", + "pos": "名詞", + "pn": -0.426121 + }, + { + "surface": "目尻", + "readging": "めじり", + "pos": "名詞", + "pn": -0.426121 + }, + { + "surface": "創建", + "readging": "そうけん", + "pos": "名詞", + "pn": -0.426144 + }, + { + "surface": "橋台", + "readging": "きょうだい", + "pos": "名詞", + "pn": -0.42615 + }, + { + "surface": "原子核", + "readging": "げんしかく", + "pos": "名詞", + "pn": -0.426152 + }, + { + "surface": "除服", + "readging": "じょふく", + "pos": "名詞", + "pn": -0.426164 + }, + { + "surface": "併設", + "readging": "へいせつ", + "pos": "名詞", + "pn": -0.426164 + }, + { + "surface": "鱗毛", + "readging": "りんもう", + "pos": "名詞", + "pn": -0.426166 + }, + { + "surface": "宦官", + "readging": "かんがん", + "pos": "名詞", + "pn": -0.426166 + }, + { + "surface": "草入水晶", + "readging": "くさいりずいしょう", + "pos": "名詞", + "pn": -0.426182 + }, + { + "surface": "汗取り", + "readging": "あせとり", + "pos": "名詞", + "pn": -0.426209 + }, + { + "surface": "事変", + "readging": "じへん", + "pos": "名詞", + "pn": -0.426216 + }, + { + "surface": "暦法", + "readging": "れきほう", + "pos": "名詞", + "pn": -0.426251 + }, + { + "surface": "混同", + "readging": "こんどう", + "pos": "名詞", + "pn": -0.426279 + }, + { + "surface": "呼び子", + "readging": "よびこ", + "pos": "名詞", + "pn": -0.426283 + }, + { + "surface": "オーバー", + "readging": "オーバーラップ", + "pos": "名詞", + "pn": -0.426317 + }, + { + "surface": "ペンシル", + "readging": "ペンシル", + "pos": "名詞", + "pn": -0.42634 + }, + { + "surface": "ぽっきり", + "readging": "ぽっきり", + "pos": "副詞", + "pn": -0.426344 + }, + { + "surface": "異論", + "readging": "いろん", + "pos": "名詞", + "pn": -0.426379 + }, + { + "surface": "分", + "readging": "ふん", + "pos": "名詞", + "pn": -0.426407 + }, + { + "surface": "禿頭", + "readging": "はげあたま", + "pos": "名詞", + "pn": -0.426422 + }, + { + "surface": "走路", + "readging": "そうろ", + "pos": "名詞", + "pn": -0.426423 + }, + { + "surface": "方形", + "readging": "ほうけい", + "pos": "名詞", + "pn": -0.426436 + }, + { + "surface": "逸史", + "readging": "いっし", + "pos": "名詞", + "pn": -0.426475 + }, + { + "surface": "端子", + "readging": "たんし", + "pos": "名詞", + "pn": -0.426478 + }, + { + "surface": "烏鷺", + "readging": "うろ", + "pos": "名詞", + "pn": -0.426505 + }, + { + "surface": "謹製", + "readging": "きんせい", + "pos": "名詞", + "pn": -0.426508 + }, + { + "surface": "石橋", + "readging": "いしばし", + "pos": "名詞", + "pn": -0.426517 + }, + { + "surface": "鉄鉱", + "readging": "てっこう", + "pos": "名詞", + "pn": -0.426569 + }, + { + "surface": "人類", + "readging": "じんるい", + "pos": "名詞", + "pn": -0.4266 + }, + { + "surface": "一皮", + "readging": "ひとかわ", + "pos": "名詞", + "pn": -0.42665 + }, + { + "surface": "談合", + "readging": "だんごう", + "pos": "名詞", + "pn": -0.426651 + }, + { + "surface": "用語", + "readging": "ようご", + "pos": "名詞", + "pn": -0.426662 + }, + { + "surface": "廃刊", + "readging": "はいかん", + "pos": "名詞", + "pn": -0.426665 + }, + { + "surface": "マーマレード", + "readging": "マーマレード", + "pos": "名詞", + "pn": -0.426676 + }, + { + "surface": "日銭", + "readging": "ひぜに", + "pos": "名詞", + "pn": -0.426676 + }, + { + "surface": "言語", + "readging": "げんご", + "pos": "名詞", + "pn": -0.426687 + }, + { + "surface": "泣き所", + "readging": "なきどころ", + "pos": "名詞", + "pn": -0.426701 + }, + { + "surface": "零度", + "readging": "れいど", + "pos": "名詞", + "pn": -0.426707 + }, + { + "surface": "抜かる", + "readging": "ぬかる", + "pos": "動詞", + "pn": -0.426727 + }, + { + "surface": "峡間", + "readging": "きょうかん", + "pos": "名詞", + "pn": -0.426749 + }, + { + "surface": "振り", + "readging": "ぶり", + "pos": "名詞", + "pn": -0.426753 + }, + { + "surface": "水雷", + "readging": "すいらい", + "pos": "名詞", + "pn": -0.426771 + }, + { + "surface": "誘導", + "readging": "ゆうどう", + "pos": "名詞", + "pn": -0.426783 + }, + { + "surface": "徳利", + "readging": "とくり", + "pos": "名詞", + "pn": -0.426796 + }, + { + "surface": "舶載", + "readging": "はくさい", + "pos": "名詞", + "pn": -0.426807 + }, + { + "surface": "浄玻璃", + "readging": "じょうはり", + "pos": "名詞", + "pn": -0.426817 + }, + { + "surface": "右左", + "readging": "みぎひだり", + "pos": "名詞", + "pn": -0.426819 + }, + { + "surface": "俗化", + "readging": "ぞっか", + "pos": "名詞", + "pn": -0.426841 + }, + { + "surface": "私邸", + "readging": "してい", + "pos": "名詞", + "pn": -0.426855 + }, + { + "surface": "涼風", + "readging": "りょうふう", + "pos": "名詞", + "pn": -0.42688 + }, + { + "surface": "間に合う", + "readging": "まにあう", + "pos": "動詞", + "pn": -0.42689 + }, + { + "surface": "何でも", + "readging": "なんでも", + "pos": "副詞", + "pn": -0.426918 + }, + { + "surface": "雪合戦", + "readging": "ゆきがっせん", + "pos": "名詞", + "pn": -0.426921 + }, + { + "surface": "底魚", + "readging": "そこうお", + "pos": "名詞", + "pn": -0.426933 + }, + { + "surface": "放逸", + "readging": "ほういつ", + "pos": "名詞", + "pn": -0.426937 + }, + { + "surface": "沢", + "readging": "さわ", + "pos": "名詞", + "pn": -0.426938 + }, + { + "surface": "石刻", + "readging": "せっこく", + "pos": "名詞", + "pn": -0.426939 + }, + { + "surface": "算段", + "readging": "さんだん", + "pos": "名詞", + "pn": -0.426941 + }, + { + "surface": "定紋", + "readging": "じょうもん", + "pos": "名詞", + "pn": -0.426953 + }, + { + "surface": "鉱泉", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.426965 + }, + { + "surface": "一行", + "readging": "いっこう", + "pos": "名詞", + "pn": -0.426968 + }, + { + "surface": "小切手", + "readging": "こぎって", + "pos": "名詞", + "pn": -0.426977 + }, + { + "surface": "講義", + "readging": "こうぎ", + "pos": "名詞", + "pn": -0.426988 + }, + { + "surface": "含嗽", + "readging": "がんそう", + "pos": "名詞", + "pn": -0.427 + }, + { + "surface": "綿弓", + "readging": "わたゆみ", + "pos": "名詞", + "pn": -0.427011 + }, + { + "surface": "余罪", + "readging": "よざい", + "pos": "名詞", + "pn": -0.427013 + }, + { + "surface": "春嵐", + "readging": "はるあらし", + "pos": "名詞", + "pn": -0.427021 + }, + { + "surface": "金将", + "readging": "きんしょう", + "pos": "名詞", + "pn": -0.427024 + }, + { + "surface": "戦地", + "readging": "せんち", + "pos": "名詞", + "pn": -0.427026 + }, + { + "surface": "児", + "readging": "じ", + "pos": "名詞", + "pn": -0.427031 + }, + { + "surface": "梅干", + "readging": "うめぼし", + "pos": "名詞", + "pn": -0.427032 + }, + { + "surface": "海鳥", + "readging": "かいちょう", + "pos": "名詞", + "pn": -0.42708 + }, + { + "surface": "超伝導", + "readging": "ちょうでんどう", + "pos": "名詞", + "pn": -0.427105 + }, + { + "surface": "放校", + "readging": "ほうこう", + "pos": "名詞", + "pn": -0.427138 + }, + { + "surface": "引合せる", + "readging": "ひきあわせる", + "pos": "動詞", + "pn": -0.427139 + }, + { + "surface": "業界紙", + "readging": "ぎょうかいし", + "pos": "名詞", + "pn": -0.427146 + }, + { + "surface": "螺鈿", + "readging": "らでん", + "pos": "名詞", + "pn": -0.427162 + }, + { + "surface": "日時", + "readging": "にちじ", + "pos": "名詞", + "pn": -0.42717 + }, + { + "surface": "餅屋", + "readging": "もちや", + "pos": "名詞", + "pn": -0.427177 + }, + { + "surface": "米糠", + "readging": "こめぬか", + "pos": "名詞", + "pn": -0.427218 + }, + { + "surface": "補角", + "readging": "ほかく", + "pos": "名詞", + "pn": -0.427232 + }, + { + "surface": "隠元", + "readging": "いんげん", + "pos": "名詞", + "pn": -0.42724 + }, + { + "surface": "口笛", + "readging": "くちぶえ", + "pos": "名詞", + "pn": -0.427244 + }, + { + "surface": "葉巻", + "readging": "はまき", + "pos": "名詞", + "pn": -0.427251 + }, + { + "surface": "鵺", + "readging": "ぬえ", + "pos": "名詞", + "pn": -0.427306 + }, + { + "surface": "ホテル", + "readging": "ホテル", + "pos": "名詞", + "pn": -0.427329 + }, + { + "surface": "接写", + "readging": "せっしゃ", + "pos": "名詞", + "pn": -0.427341 + }, + { + "surface": "耕地", + "readging": "こうち", + "pos": "名詞", + "pn": -0.427361 + }, + { + "surface": "白帯下", + "readging": "はくたいげ", + "pos": "名詞", + "pn": -0.427369 + }, + { + "surface": "発火点", + "readging": "はっかてん", + "pos": "名詞", + "pn": -0.427376 + }, + { + "surface": "糾問", + "readging": "きゅうもん", + "pos": "名詞", + "pn": -0.427412 + }, + { + "surface": "真白", + "readging": "まっしろ", + "pos": "名詞", + "pn": -0.427418 + }, + { + "surface": "繰延べる", + "readging": "くりのべる", + "pos": "動詞", + "pn": -0.42742 + }, + { + "surface": "発火", + "readging": "はっか", + "pos": "名詞", + "pn": -0.42744 + }, + { + "surface": "ねだる", + "readging": "ねだる", + "pos": "動詞", + "pn": -0.427456 + }, + { + "surface": "溶融", + "readging": "ようゆう", + "pos": "名詞", + "pn": -0.427467 + }, + { + "surface": "入梅", + "readging": "にゅうばい", + "pos": "名詞", + "pn": -0.427477 + }, + { + "surface": "晩春", + "readging": "ばんしゅん", + "pos": "名詞", + "pn": -0.427487 + }, + { + "surface": "即吟", + "readging": "そくぎん", + "pos": "名詞", + "pn": -0.427491 + }, + { + "surface": "語物", + "readging": "かたりもの", + "pos": "名詞", + "pn": -0.42755 + }, + { + "surface": "花水木", + "readging": "はなみずき", + "pos": "名詞", + "pn": -0.427555 + }, + { + "surface": "重唱", + "readging": "じゅうしょう", + "pos": "名詞", + "pn": -0.427571 + }, + { + "surface": "獄屋", + "readging": "ごくや", + "pos": "名詞", + "pn": -0.427597 + }, + { + "surface": "お調子者", + "readging": "おちょうしもの", + "pos": "名詞", + "pn": -0.427598 + }, + { + "surface": "桜漬", + "readging": "さくらづけ", + "pos": "名詞", + "pn": -0.427602 + }, + { + "surface": "凛凛", + "readging": "りんりん", + "pos": "名詞", + "pn": -0.427617 + }, + { + "surface": "設い", + "readging": "しつらい", + "pos": "名詞", + "pn": -0.427643 + }, + { + "surface": "丸天井", + "readging": "まるてんじょう", + "pos": "名詞", + "pn": -0.427647 + }, + { + "surface": "更紗", + "readging": "サラサ", + "pos": "名詞", + "pn": -0.427651 + }, + { + "surface": "禅室", + "readging": "ぜんしつ", + "pos": "名詞", + "pn": -0.427674 + }, + { + "surface": "実家", + "readging": "じっか", + "pos": "名詞", + "pn": -0.427678 + }, + { + "surface": "シンボル", + "readging": "シンボル", + "pos": "名詞", + "pn": -0.42769 + }, + { + "surface": "こじる", + "readging": "こじる", + "pos": "動詞", + "pn": -0.427694 + }, + { + "surface": "斑鳩", + "readging": "いかる", + "pos": "名詞", + "pn": -0.427706 + }, + { + "surface": "五節", + "readging": "ごせち", + "pos": "名詞", + "pn": -0.427715 + }, + { + "surface": "梨", + "readging": "なし", + "pos": "名詞", + "pn": -0.427723 + }, + { + "surface": "千千", + "readging": "ちぢ", + "pos": "名詞", + "pn": -0.427741 + }, + { + "surface": "詠ずる", + "readging": "えいずる", + "pos": "動詞", + "pn": -0.427755 + }, + { + "surface": "蛭", + "readging": "ひる", + "pos": "名詞", + "pn": -0.427762 + }, + { + "surface": "横隔膜", + "readging": "おうかくまく", + "pos": "名詞", + "pn": -0.427777 + }, + { + "surface": "令", + "readging": "りょう", + "pos": "名詞", + "pn": -0.427787 + }, + { + "surface": "鉛毒", + "readging": "えんどく", + "pos": "名詞", + "pn": -0.427792 + }, + { + "surface": "追憶", + "readging": "ついおく", + "pos": "名詞", + "pn": -0.42783 + }, + { + "surface": "絹本", + "readging": "けんぽん", + "pos": "名詞", + "pn": -0.42783 + }, + { + "surface": "内分泌腺", + "readging": "ないぶんぴつせん", + "pos": "名詞", + "pn": -0.427838 + }, + { + "surface": "撥音", + "readging": "ばちおと", + "pos": "名詞", + "pn": -0.427855 + }, + { + "surface": "鳴子", + "readging": "なるこ", + "pos": "名詞", + "pn": -0.42787 + }, + { + "surface": "葉煙草", + "readging": "はタバコ", + "pos": "名詞", + "pn": -0.427892 + }, + { + "surface": "フィードバック", + "readging": "フィードバック", + "pos": "名詞", + "pn": -0.427892 + }, + { + "surface": "汚れ役", + "readging": "よごれやく", + "pos": "名詞", + "pn": -0.427901 + }, + { + "surface": "陰陽道", + "readging": "おんようどう", + "pos": "名詞", + "pn": -0.427907 + }, + { + "surface": "メッセージ", + "readging": "メッセージ", + "pos": "名詞", + "pn": -0.427912 + }, + { + "surface": "行灯袴", + "readging": "あんどんばかま", + "pos": "名詞", + "pn": -0.427912 + }, + { + "surface": "厨", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.427956 + }, + { + "surface": "夢更", + "readging": "ゆめさら", + "pos": "副詞", + "pn": -0.427958 + }, + { + "surface": "名所", + "readging": "などころ", + "pos": "名詞", + "pn": -0.427983 + }, + { + "surface": "煮出し", + "readging": "にだし", + "pos": "名詞", + "pn": -0.428008 + }, + { + "surface": "妻女", + "readging": "さいじょ", + "pos": "名詞", + "pn": -0.428017 + }, + { + "surface": "背抜き", + "readging": "せぬき", + "pos": "名詞", + "pn": -0.428053 + }, + { + "surface": "成行き", + "readging": "なりゆき", + "pos": "名詞", + "pn": -0.428064 + }, + { + "surface": "昨年", + "readging": "さくねん", + "pos": "名詞", + "pn": -0.428093 + }, + { + "surface": "大和", + "readging": "やまとだましい", + "pos": "名詞", + "pn": -0.428098 + }, + { + "surface": "筧", + "readging": "かけひ", + "pos": "名詞", + "pn": -0.428121 + }, + { + "surface": "丸焼け", + "readging": "まるやけ", + "pos": "名詞", + "pn": -0.428128 + }, + { + "surface": "立会演説", + "readging": "たちあい", + "pos": "名詞", + "pn": -0.428129 + }, + { + "surface": "うねり", + "readging": "うねり", + "pos": "名詞", + "pn": -0.428132 + }, + { + "surface": "鱧", + "readging": "はも", + "pos": "名詞", + "pn": -0.428151 + }, + { + "surface": "音韻", + "readging": "おんいん", + "pos": "名詞", + "pn": -0.42817 + }, + { + "surface": "遊具", + "readging": "ゆうぐ", + "pos": "名詞", + "pn": -0.428171 + }, + { + "surface": "壇", + "readging": "だん", + "pos": "名詞", + "pn": -0.428185 + }, + { + "surface": "転任", + "readging": "てんにん", + "pos": "名詞", + "pn": -0.428188 + }, + { + "surface": "補数", + "readging": "ほすう", + "pos": "名詞", + "pn": -0.42819 + }, + { + "surface": "盟約", + "readging": "めいやく", + "pos": "名詞", + "pn": -0.428196 + }, + { + "surface": "雪片", + "readging": "せっぺん", + "pos": "名詞", + "pn": -0.428196 + }, + { + "surface": "追随", + "readging": "ついずい", + "pos": "名詞", + "pn": -0.428197 + }, + { + "surface": "水難", + "readging": "すいなん", + "pos": "名詞", + "pn": -0.428199 + }, + { + "surface": "凍上", + "readging": "とうじょう", + "pos": "名詞", + "pn": -0.428201 + }, + { + "surface": "対症療法", + "readging": "たいしょうりょうほう", + "pos": "名詞", + "pn": -0.428203 + }, + { + "surface": "CD", + "readging": "シーディー", + "pos": "名詞", + "pn": -0.428204 + }, + { + "surface": "上潮", + "readging": "あげしお", + "pos": "名詞", + "pn": -0.428206 + }, + { + "surface": "にいにい蝉", + "readging": "にいにいぜみ", + "pos": "名詞", + "pn": -0.428226 + }, + { + "surface": "電気回路", + "readging": "でんきかいろ", + "pos": "名詞", + "pn": -0.428257 + }, + { + "surface": "余響", + "readging": "よきょう", + "pos": "名詞", + "pn": -0.428271 + }, + { + "surface": "市子", + "readging": "いちこ", + "pos": "名詞", + "pn": -0.428294 + }, + { + "surface": "黄櫨染", + "readging": "こうろぜん", + "pos": "名詞", + "pn": -0.42832 + }, + { + "surface": "通い", + "readging": "かよい", + "pos": "名詞", + "pn": -0.428322 + }, + { + "surface": "外輪", + "readging": "がいりん", + "pos": "名詞", + "pn": -0.428325 + }, + { + "surface": "鷺", + "readging": "さぎ", + "pos": "名詞", + "pn": -0.428334 + }, + { + "surface": "愛煙", + "readging": "あいえん", + "pos": "名詞", + "pn": -0.428353 + }, + { + "surface": "復古", + "readging": "ふっこ", + "pos": "名詞", + "pn": -0.428371 + }, + { + "surface": "糸入", + "readging": "いといり", + "pos": "名詞", + "pn": -0.428396 + }, + { + "surface": "ヨット", + "readging": "ヨット", + "pos": "名詞", + "pn": -0.428397 + }, + { + "surface": "天敵", + "readging": "てんてき", + "pos": "名詞", + "pn": -0.42841 + }, + { + "surface": "膚", + "readging": "ふ", + "pos": "名詞", + "pn": -0.428443 + }, + { + "surface": "潜函", + "readging": "せんかん", + "pos": "名詞", + "pn": -0.428449 + }, + { + "surface": "切窓", + "readging": "きりまど", + "pos": "名詞", + "pn": -0.428452 + }, + { + "surface": "蜜蝋", + "readging": "みつろう", + "pos": "名詞", + "pn": -0.428453 + }, + { + "surface": "下野", + "readging": "げや", + "pos": "名詞", + "pn": -0.428453 + }, + { + "surface": "脚色", + "readging": "きゃくしょく", + "pos": "名詞", + "pn": -0.428488 + }, + { + "surface": "御祓", + "readging": "おはらい", + "pos": "名詞", + "pn": -0.4285 + }, + { + "surface": "根引き", + "readging": "ねびき", + "pos": "名詞", + "pn": -0.42851 + }, + { + "surface": "喪中", + "readging": "もちゅう", + "pos": "名詞", + "pn": -0.428543 + }, + { + "surface": "連帯", + "readging": "れんたい", + "pos": "名詞", + "pn": -0.428548 + }, + { + "surface": "種取り", + "readging": "たねとり", + "pos": "名詞", + "pn": -0.428549 + }, + { + "surface": "袋織", + "readging": "ふくろおり", + "pos": "名詞", + "pn": -0.428552 + }, + { + "surface": "花相撲", + "readging": "はなずもう", + "pos": "名詞", + "pn": -0.428579 + }, + { + "surface": "無限軌道", + "readging": "むげんきどう", + "pos": "名詞", + "pn": -0.428583 + }, + { + "surface": "慎", + "readging": "しん", + "pos": "名詞", + "pn": -0.428586 + }, + { + "surface": "尾鰭", + "readging": "おびれ", + "pos": "名詞", + "pn": -0.428587 + }, + { + "surface": "甚助", + "readging": "じんすけ", + "pos": "名詞", + "pn": -0.42859 + }, + { + "surface": "秘仏", + "readging": "ひぶつ", + "pos": "名詞", + "pn": -0.428599 + }, + { + "surface": "背", + "readging": "せ", + "pos": "名詞", + "pn": -0.42861 + }, + { + "surface": "カスタード", + "readging": "カスタード", + "pos": "名詞", + "pn": -0.428626 + }, + { + "surface": "痺れる", + "readging": "しびれる", + "pos": "動詞", + "pn": -0.428649 + }, + { + "surface": "にんげん業", + "readging": "にんげんわざ", + "pos": "名詞", + "pn": -0.42865 + }, + { + "surface": "貸借対照表", + "readging": "たいしゃくたいしょうひょう", + "pos": "名詞", + "pn": -0.428671 + }, + { + "surface": "伎芸", + "readging": "ぎげい", + "pos": "名詞", + "pn": -0.42868 + }, + { + "surface": "鷹", + "readging": "よう", + "pos": "名詞", + "pn": -0.428685 + }, + { + "surface": "政策", + "readging": "せいさく", + "pos": "名詞", + "pn": -0.42869 + }, + { + "surface": "図示", + "readging": "ずし", + "pos": "名詞", + "pn": -0.428703 + }, + { + "surface": "答", + "readging": "こたえ", + "pos": "名詞", + "pn": -0.428706 + }, + { + "surface": "ティー", + "readging": "ティー", + "pos": "名詞", + "pn": -0.42871 + }, + { + "surface": "牡丹", + "readging": "ぼたん", + "pos": "名詞", + "pn": -0.428735 + }, + { + "surface": "犬馬", + "readging": "けんば", + "pos": "名詞", + "pn": -0.42876 + }, + { + "surface": "富札", + "readging": "とみふだ", + "pos": "名詞", + "pn": -0.428767 + }, + { + "surface": "タッチ", + "readging": "タッチ", + "pos": "名詞", + "pn": -0.428786 + }, + { + "surface": "筐", + "readging": "かたみ", + "pos": "名詞", + "pn": -0.428788 + }, + { + "surface": "嫌気", + "readging": "いやけ", + "pos": "名詞", + "pn": -0.428809 + }, + { + "surface": "鼾声", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.428817 + }, + { + "surface": "古屋", + "readging": "ふるや", + "pos": "名詞", + "pn": -0.428835 + }, + { + "surface": "紋章", + "readging": "もんしょう", + "pos": "名詞", + "pn": -0.428839 + }, + { + "surface": "通風", + "readging": "つうふう", + "pos": "名詞", + "pn": -0.428855 + }, + { + "surface": "芥子坊主", + "readging": "けしぼうず", + "pos": "名詞", + "pn": -0.428855 + }, + { + "surface": "水雲", + "readging": "もずく", + "pos": "名詞", + "pn": -0.428861 + }, + { + "surface": "年一年", + "readging": "ねんいちねん", + "pos": "名詞", + "pn": -0.428877 + }, + { + "surface": "特用作物", + "readging": "とくようさくもつ", + "pos": "名詞", + "pn": -0.428883 + }, + { + "surface": "生漆", + "readging": "きうるし", + "pos": "名詞", + "pn": -0.428885 + }, + { + "surface": "漁船", + "readging": "ぎょせん", + "pos": "名詞", + "pn": -0.428891 + }, + { + "surface": "鉄索", + "readging": "てっさく", + "pos": "名詞", + "pn": -0.4289 + }, + { + "surface": "型付け", + "readging": "かたつけ", + "pos": "名詞", + "pn": -0.428929 + }, + { + "surface": "一翼", + "readging": "いちよく", + "pos": "名詞", + "pn": -0.42893 + }, + { + "surface": "すんなり", + "readging": "すんなり", + "pos": "副詞", + "pn": -0.428936 + }, + { + "surface": "曾て", + "readging": "かつて", + "pos": "副詞", + "pn": -0.428947 + }, + { + "surface": "苟も", + "readging": "いやしくも", + "pos": "副詞", + "pn": -0.42895 + }, + { + "surface": "馬車馬", + "readging": "ばしゃうま", + "pos": "名詞", + "pn": -0.428951 + }, + { + "surface": "庭石菖", + "readging": "にわぜきしょう", + "pos": "名詞", + "pn": -0.428957 + }, + { + "surface": "雑用", + "readging": "ざつよう", + "pos": "名詞", + "pn": -0.428963 + }, + { + "surface": "汽缶", + "readging": "きかん", + "pos": "名詞", + "pn": -0.428979 + }, + { + "surface": "金粉", + "readging": "きんぷん", + "pos": "名詞", + "pn": -0.428984 + }, + { + "surface": "手酌", + "readging": "てじゃく", + "pos": "名詞", + "pn": -0.428993 + }, + { + "surface": "左", + "readging": "さ", + "pos": "名詞", + "pn": -0.429013 + }, + { + "surface": "二重", + "readging": "にじゅう", + "pos": "名詞", + "pn": -0.429017 + }, + { + "surface": "半身", + "readging": "はんみ", + "pos": "名詞", + "pn": -0.429046 + }, + { + "surface": "とろとろ", + "readging": "とろとろ", + "pos": "副詞", + "pn": -0.429052 + }, + { + "surface": "山小屋", + "readging": "やまごや", + "pos": "名詞", + "pn": -0.429058 + }, + { + "surface": "自家撞着", + "readging": "じかどうちゃく", + "pos": "名詞", + "pn": -0.429086 + }, + { + "surface": "些少", + "readging": "さしょう", + "pos": "名詞", + "pn": -0.429138 + }, + { + "surface": "送り込む", + "readging": "おくりこむ", + "pos": "動詞", + "pn": -0.429141 + }, + { + "surface": "末日", + "readging": "まつじつ", + "pos": "名詞", + "pn": -0.429155 + }, + { + "surface": "杣木", + "readging": "そまぎ", + "pos": "名詞", + "pn": -0.429155 + }, + { + "surface": "音階", + "readging": "おんかい", + "pos": "名詞", + "pn": -0.429174 + }, + { + "surface": "労務", + "readging": "ろうむ", + "pos": "名詞", + "pn": -0.429231 + }, + { + "surface": "休止", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.429233 + }, + { + "surface": "犯跡", + "readging": "はんせき", + "pos": "名詞", + "pn": -0.429268 + }, + { + "surface": "皮脂漏", + "readging": "ひしろう", + "pos": "名詞", + "pn": -0.429283 + }, + { + "surface": "青膨れ", + "readging": "あおぶくれ", + "pos": "名詞", + "pn": -0.429294 + }, + { + "surface": "自暴自棄", + "readging": "じぼうじき", + "pos": "名詞", + "pn": -0.429328 + }, + { + "surface": "不浄役人", + "readging": "ふじょうやくにん", + "pos": "名詞", + "pn": -0.429331 + }, + { + "surface": "酢豆腐", + "readging": "すどうふ", + "pos": "名詞", + "pn": -0.429338 + }, + { + "surface": "人当り", + "readging": "ひとあたり", + "pos": "名詞", + "pn": -0.429357 + }, + { + "surface": "鷦鷯", + "readging": "みそさざい", + "pos": "名詞", + "pn": -0.429429 + }, + { + "surface": "雲梯", + "readging": "うんてい", + "pos": "名詞", + "pn": -0.429453 + }, + { + "surface": "ワセリン", + "readging": "ワセリン", + "pos": "名詞", + "pn": -0.429466 + }, + { + "surface": "収入印紙", + "readging": "しゅうにゅういんし", + "pos": "名詞", + "pn": -0.429472 + }, + { + "surface": "屈辱", + "readging": "くつじょく", + "pos": "名詞", + "pn": -0.429475 + }, + { + "surface": "総数", + "readging": "そうすう", + "pos": "名詞", + "pn": -0.429476 + }, + { + "surface": "前金", + "readging": "まえきん", + "pos": "名詞", + "pn": -0.42948 + }, + { + "surface": "弥次郎兵衛", + "readging": "やじろべえ", + "pos": "名詞", + "pn": -0.429482 + }, + { + "surface": "赤銅", + "readging": "しゃくどう", + "pos": "名詞", + "pn": -0.429482 + }, + { + "surface": "踏切る", + "readging": "ふみきる", + "pos": "動詞", + "pn": -0.429493 + }, + { + "surface": "伝線", + "readging": "でんせん", + "pos": "名詞", + "pn": -0.429499 + }, + { + "surface": "キャンセル", + "readging": "キャンセル", + "pos": "名詞", + "pn": -0.42951 + }, + { + "surface": "違背", + "readging": "いはい", + "pos": "名詞", + "pn": -0.429514 + }, + { + "surface": "榧", + "readging": "かや", + "pos": "名詞", + "pn": -0.429518 + }, + { + "surface": "海峡", + "readging": "かいきょう", + "pos": "名詞", + "pn": -0.429528 + }, + { + "surface": "賓客", + "readging": "ひんかく", + "pos": "名詞", + "pn": -0.429528 + }, + { + "surface": "後", + "readging": "あと", + "pos": "名詞", + "pn": -0.429531 + }, + { + "surface": "滑剤", + "readging": "かつざい", + "pos": "名詞", + "pn": -0.42954 + }, + { + "surface": "炭団", + "readging": "たどん", + "pos": "名詞", + "pn": -0.429542 + }, + { + "surface": "身の代", + "readging": "みのしろ", + "pos": "名詞", + "pn": -0.429561 + }, + { + "surface": "ピコット", + "readging": "ピコット", + "pos": "名詞", + "pn": -0.429562 + }, + { + "surface": "遍く", + "readging": "あまねく", + "pos": "副詞", + "pn": -0.429564 + }, + { + "surface": "山帰来", + "readging": "さんきらい", + "pos": "名詞", + "pn": -0.429566 + }, + { + "surface": "徒花", + "readging": "あだばな", + "pos": "名詞", + "pn": -0.429587 + }, + { + "surface": "就縛", + "readging": "しゅうばく", + "pos": "名詞", + "pn": -0.429589 + }, + { + "surface": "切っ掛け", + "readging": "きっかけ", + "pos": "名詞", + "pn": -0.42959 + }, + { + "surface": "巨大", + "readging": "きょだい", + "pos": "名詞", + "pn": -0.429613 + }, + { + "surface": "篠", + "readging": "しの", + "pos": "名詞", + "pn": -0.429627 + }, + { + "surface": "首枷", + "readging": "くびかせ", + "pos": "名詞", + "pn": -0.429663 + }, + { + "surface": "草紙", + "readging": "そうし", + "pos": "名詞", + "pn": -0.429677 + }, + { + "surface": "大引け", + "readging": "おおびけ", + "pos": "名詞", + "pn": -0.429696 + }, + { + "surface": "白蟻", + "readging": "しろあり", + "pos": "名詞", + "pn": -0.429708 + }, + { + "surface": "連語", + "readging": "れんご", + "pos": "名詞", + "pn": -0.429723 + }, + { + "surface": "焼付", + "readging": "やきつけ", + "pos": "名詞", + "pn": -0.429726 + }, + { + "surface": "仰せ", + "readging": "おおせ", + "pos": "名詞", + "pn": -0.429773 + }, + { + "surface": "リトマス試験紙", + "readging": "リトマスしけんし", + "pos": "名詞", + "pn": -0.429775 + }, + { + "surface": "草取", + "readging": "くさとり", + "pos": "名詞", + "pn": -0.429779 + }, + { + "surface": "魚信", + "readging": "ぎょしん", + "pos": "名詞", + "pn": -0.429788 + }, + { + "surface": "ワッセルマン反応", + "readging": "ワッセルマンはんのう", + "pos": "名詞", + "pn": -0.429791 + }, + { + "surface": "典籍", + "readging": "てんせき", + "pos": "名詞", + "pn": -0.429791 + }, + { + "surface": "山止め", + "readging": "やまどめ", + "pos": "名詞", + "pn": -0.4298 + }, + { + "surface": "士人", + "readging": "しじん", + "pos": "名詞", + "pn": -0.429828 + }, + { + "surface": "乗", + "readging": "じょう", + "pos": "名詞", + "pn": -0.42983 + }, + { + "surface": "性懲り", + "readging": "しょうこり", + "pos": "名詞", + "pn": -0.429832 + }, + { + "surface": "とろみ", + "readging": "とろみ", + "pos": "名詞", + "pn": -0.429843 + }, + { + "surface": "ドット", + "readging": "ドットマップ", + "pos": "名詞", + "pn": -0.429845 + }, + { + "surface": "初鰹", + "readging": "はつがつお", + "pos": "名詞", + "pn": -0.429851 + }, + { + "surface": "及ぶ", + "readging": "およぶ", + "pos": "動詞", + "pn": -0.429853 + }, + { + "surface": "夫婦茶碗", + "readging": "みょうと", + "pos": "名詞", + "pn": -0.429902 + }, + { + "surface": "和尚", + "readging": "わじょう", + "pos": "名詞", + "pn": -0.429905 + }, + { + "surface": "枝道", + "readging": "えだみち", + "pos": "名詞", + "pn": -0.429925 + }, + { + "surface": "筈", + "readging": "はず", + "pos": "名詞", + "pn": -0.429943 + }, + { + "surface": "示度", + "readging": "しど", + "pos": "名詞", + "pn": -0.429953 + }, + { + "surface": "絶え間", + "readging": "たえま", + "pos": "名詞", + "pn": -0.429957 + }, + { + "surface": "節録", + "readging": "せつろく", + "pos": "名詞", + "pn": -0.429989 + }, + { + "surface": "一息", + "readging": "ひといき", + "pos": "名詞", + "pn": -0.42999 + }, + { + "surface": "目的税", + "readging": "もくてきぜい", + "pos": "名詞", + "pn": -0.430009 + }, + { + "surface": "碑石", + "readging": "ひせき", + "pos": "名詞", + "pn": -0.430016 + }, + { + "surface": "白州", + "readging": "しらす", + "pos": "名詞", + "pn": -0.430017 + }, + { + "surface": "ドライ", + "readging": "ドライミルク", + "pos": "名詞", + "pn": -0.430023 + }, + { + "surface": "峡", + "readging": "かい", + "pos": "名詞", + "pn": -0.430039 + }, + { + "surface": "腰弁", + "readging": "こしべん", + "pos": "名詞", + "pn": -0.430041 + }, + { + "surface": "多肉植物", + "readging": "たにくしょくぶつ", + "pos": "名詞", + "pn": -0.430101 + }, + { + "surface": "長官", + "readging": "ちょうかん", + "pos": "名詞", + "pn": -0.430101 + }, + { + "surface": "目盛", + "readging": "めもり", + "pos": "名詞", + "pn": -0.430122 + }, + { + "surface": "高跳", + "readging": "たかとび", + "pos": "名詞", + "pn": -0.430126 + }, + { + "surface": "データ", + "readging": "データベース", + "pos": "名詞", + "pn": -0.43013 + }, + { + "surface": "黄泉路", + "readging": "よみじ", + "pos": "名詞", + "pn": -0.430132 + }, + { + "surface": "文様", + "readging": "もんよう", + "pos": "名詞", + "pn": -0.430155 + }, + { + "surface": "腹這い", + "readging": "はらばい", + "pos": "名詞", + "pn": -0.430155 + }, + { + "surface": "連中", + "readging": "れんじゅう", + "pos": "名詞", + "pn": -0.430169 + }, + { + "surface": "問診", + "readging": "もんしん", + "pos": "名詞", + "pn": -0.430186 + }, + { + "surface": "旨", + "readging": "むね", + "pos": "名詞", + "pn": -0.430199 + }, + { + "surface": "チェリー", + "readging": "チェリー", + "pos": "名詞", + "pn": -0.430219 + }, + { + "surface": "歳暮", + "readging": "せいぼ", + "pos": "名詞", + "pn": -0.430232 + }, + { + "surface": "疾風", + "readging": "はやて", + "pos": "名詞", + "pn": -0.430249 + }, + { + "surface": "番地", + "readging": "ばんち", + "pos": "名詞", + "pn": -0.430253 + }, + { + "surface": "主将", + "readging": "しゅしょう", + "pos": "名詞", + "pn": -0.430263 + }, + { + "surface": "雑", + "readging": "ざつ", + "pos": "名詞", + "pn": -0.430282 + }, + { + "surface": "片言", + "readging": "へんげん", + "pos": "名詞", + "pn": -0.430288 + }, + { + "surface": "灰汁", + "readging": "あく", + "pos": "名詞", + "pn": -0.430294 + }, + { + "surface": "上がり框", + "readging": "あがりかまち", + "pos": "名詞", + "pn": -0.430312 + }, + { + "surface": "侍臣", + "readging": "じしん", + "pos": "名詞", + "pn": -0.430319 + }, + { + "surface": "股", + "readging": "また", + "pos": "名詞", + "pn": -0.430342 + }, + { + "surface": "ニトログリセリン", + "readging": "ニトログリセリン", + "pos": "名詞", + "pn": -0.430368 + }, + { + "surface": "楽譜", + "readging": "がくふ", + "pos": "名詞", + "pn": -0.430374 + }, + { + "surface": "ビスケット", + "readging": "ビスケット", + "pos": "名詞", + "pn": -0.430377 + }, + { + "surface": "三者", + "readging": "さんしゃ", + "pos": "名詞", + "pn": -0.43038 + }, + { + "surface": "手芸", + "readging": "しゅげい", + "pos": "名詞", + "pn": -0.430386 + }, + { + "surface": "辛労", + "readging": "しんろう", + "pos": "名詞", + "pn": -0.430388 + }, + { + "surface": "送迎", + "readging": "そうげい", + "pos": "名詞", + "pn": -0.430388 + }, + { + "surface": "電池", + "readging": "でんち", + "pos": "名詞", + "pn": -0.430395 + }, + { + "surface": "昼鳶", + "readging": "ひるとんび", + "pos": "名詞", + "pn": -0.430403 + }, + { + "surface": "間接伝染", + "readging": "かんせつでんせん", + "pos": "名詞", + "pn": -0.430427 + }, + { + "surface": "縁続き", + "readging": "えんつづき", + "pos": "名詞", + "pn": -0.43043 + }, + { + "surface": "川口", + "readging": "かわぐち", + "pos": "名詞", + "pn": -0.43044 + }, + { + "surface": "威迫", + "readging": "いはく", + "pos": "名詞", + "pn": -0.43044 + }, + { + "surface": "臨床", + "readging": "りんしょう", + "pos": "名詞", + "pn": -0.43044 + }, + { + "surface": "マクニン", + "readging": "マクニン", + "pos": "名詞", + "pn": -0.430464 + }, + { + "surface": "帙", + "readging": "ちつ", + "pos": "名詞", + "pn": -0.430467 + }, + { + "surface": "出", + "readging": "しゅつ", + "pos": "名詞", + "pn": -0.430471 + }, + { + "surface": "二心", + "readging": "にしん", + "pos": "名詞", + "pn": -0.430495 + }, + { + "surface": "尻胼胝", + "readging": "しりだこ", + "pos": "名詞", + "pn": -0.430503 + }, + { + "surface": "うねる", + "readging": "うねる", + "pos": "動詞", + "pn": -0.430513 + }, + { + "surface": "ヨード", + "readging": "ヨードホルム", + "pos": "名詞", + "pn": -0.430519 + }, + { + "surface": "桜湯", + "readging": "さくらゆ", + "pos": "名詞", + "pn": -0.430523 + }, + { + "surface": "手細工", + "readging": "てざいく", + "pos": "名詞", + "pn": -0.430535 + }, + { + "surface": "土踏まず", + "readging": "つちふまず", + "pos": "名詞", + "pn": -0.43056 + }, + { + "surface": "日差し", + "readging": "ひざし", + "pos": "名詞", + "pn": -0.430576 + }, + { + "surface": "霜解け", + "readging": "しもどけ", + "pos": "名詞", + "pn": -0.430581 + }, + { + "surface": "屋号", + "readging": "やごう", + "pos": "名詞", + "pn": -0.430589 + }, + { + "surface": "硯", + "readging": "すずり", + "pos": "名詞", + "pn": -0.430616 + }, + { + "surface": "互生", + "readging": "ごせい", + "pos": "名詞", + "pn": -0.430616 + }, + { + "surface": "ぐったり", + "readging": "ぐったり", + "pos": "副詞", + "pn": -0.43063 + }, + { + "surface": "激情", + "readging": "げきじょう", + "pos": "名詞", + "pn": -0.430637 + }, + { + "surface": "鎮圧", + "readging": "ちんあつ", + "pos": "名詞", + "pn": -0.43065 + }, + { + "surface": "答礼", + "readging": "とうれい", + "pos": "名詞", + "pn": -0.430657 + }, + { + "surface": "祝箸", + "readging": "いわいばし", + "pos": "名詞", + "pn": -0.430665 + }, + { + "surface": "帥", + "readging": "すい", + "pos": "名詞", + "pn": -0.430681 + }, + { + "surface": "雨雲", + "readging": "あまぐも", + "pos": "名詞", + "pn": -0.430682 + }, + { + "surface": "三唱", + "readging": "さんしょう", + "pos": "名詞", + "pn": -0.430683 + }, + { + "surface": "中途半端", + "readging": "ちゅうとはんぱ", + "pos": "名詞", + "pn": -0.430686 + }, + { + "surface": "欲気", + "readging": "よくけ", + "pos": "名詞", + "pn": -0.430692 + }, + { + "surface": "春雨", + "readging": "はるさめ", + "pos": "名詞", + "pn": -0.430697 + }, + { + "surface": "倒卵形", + "readging": "とうらんけい", + "pos": "名詞", + "pn": -0.430738 + }, + { + "surface": "香典返し", + "readging": "こうでんがえし", + "pos": "名詞", + "pn": -0.430761 + }, + { + "surface": "黄土", + "readging": "おうど", + "pos": "名詞", + "pn": -0.430768 + }, + { + "surface": "正文", + "readging": "せいぶん", + "pos": "名詞", + "pn": -0.430777 + }, + { + "surface": "弓", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.430778 + }, + { + "surface": "箱柳", + "readging": "はこやなぎ", + "pos": "名詞", + "pn": -0.430778 + }, + { + "surface": "登頂", + "readging": "とうちょう", + "pos": "名詞", + "pn": -0.430789 + }, + { + "surface": "火影", + "readging": "ほかげ", + "pos": "名詞", + "pn": -0.430804 + }, + { + "surface": "アセチレン", + "readging": "アセチレン", + "pos": "名詞", + "pn": -0.43081 + }, + { + "surface": "赤蛙", + "readging": "あかがえる", + "pos": "名詞", + "pn": -0.43084 + }, + { + "surface": "近間", + "readging": "ちかま", + "pos": "名詞", + "pn": -0.430906 + }, + { + "surface": "沿革", + "readging": "えんかく", + "pos": "名詞", + "pn": -0.430915 + }, + { + "surface": "染出す", + "readging": "そめだす", + "pos": "動詞", + "pn": -0.430921 + }, + { + "surface": "面会", + "readging": "めんかい", + "pos": "名詞", + "pn": -0.430927 + }, + { + "surface": "四苦八苦", + "readging": "しくはっく", + "pos": "名詞", + "pn": -0.430938 + }, + { + "surface": "度", + "readging": "たび", + "pos": "名詞", + "pn": -0.430947 + }, + { + "surface": "春慶焼", + "readging": "しゅんけいやき", + "pos": "名詞", + "pn": -0.430947 + }, + { + "surface": "眷属", + "readging": "けんぞく", + "pos": "名詞", + "pn": -0.430951 + }, + { + "surface": "ランニング", + "readging": "ランニング", + "pos": "名詞", + "pn": -0.430954 + }, + { + "surface": "褶曲", + "readging": "しゅうきょく", + "pos": "名詞", + "pn": -0.430956 + }, + { + "surface": "整形外科", + "readging": "せいけいげか", + "pos": "名詞", + "pn": -0.430957 + }, + { + "surface": "とんかち", + "readging": "とんかち", + "pos": "名詞", + "pn": -0.430981 + }, + { + "surface": "過激", + "readging": "かげき", + "pos": "名詞", + "pn": -0.430985 + }, + { + "surface": "リンク", + "readging": "リンク", + "pos": "名詞", + "pn": -0.430986 + }, + { + "surface": "久留米絣", + "readging": "くるめがすり", + "pos": "名詞", + "pn": -0.43099 + }, + { + "surface": "中外", + "readging": "ちゅうがい", + "pos": "名詞", + "pn": -0.431003 + }, + { + "surface": "端座", + "readging": "たんざ", + "pos": "名詞", + "pn": -0.431051 + }, + { + "surface": "開巻", + "readging": "かいかん", + "pos": "名詞", + "pn": -0.431068 + }, + { + "surface": "五目並べ", + "readging": "ごもくならべ", + "pos": "名詞", + "pn": -0.431074 + }, + { + "surface": "かかずらう", + "readging": "かかずらう", + "pos": "動詞", + "pn": -0.431076 + }, + { + "surface": "ハードル", + "readging": "ハードル", + "pos": "名詞", + "pn": -0.431083 + }, + { + "surface": "評点", + "readging": "ひょうてん", + "pos": "名詞", + "pn": -0.431115 + }, + { + "surface": "毛繻子", + "readging": "けじゅす", + "pos": "名詞", + "pn": -0.431164 + }, + { + "surface": "版本", + "readging": "はんぽん", + "pos": "名詞", + "pn": -0.431166 + }, + { + "surface": "四十雀", + "readging": "しじゅうから", + "pos": "名詞", + "pn": -0.431182 + }, + { + "surface": "密度", + "readging": "みつど", + "pos": "名詞", + "pn": -0.4312 + }, + { + "surface": "背番号", + "readging": "せばんごう", + "pos": "名詞", + "pn": -0.431205 + }, + { + "surface": "空調", + "readging": "くうちょう", + "pos": "名詞", + "pn": -0.431209 + }, + { + "surface": "紫苑", + "readging": "しおん", + "pos": "名詞", + "pn": -0.431236 + }, + { + "surface": "可耕地", + "readging": "かこうち", + "pos": "名詞", + "pn": -0.431238 + }, + { + "surface": "箱師", + "readging": "はこし", + "pos": "名詞", + "pn": -0.431243 + }, + { + "surface": "雑曲", + "readging": "ざっきょく", + "pos": "名詞", + "pn": -0.431265 + }, + { + "surface": "精", + "readging": "せい", + "pos": "名詞", + "pn": -0.431269 + }, + { + "surface": "耳障り", + "readging": "みみざわり", + "pos": "名詞", + "pn": -0.431278 + }, + { + "surface": "ねびる", + "readging": "ねびる", + "pos": "動詞", + "pn": -0.431331 + }, + { + "surface": "甲状腺", + "readging": "こうじょうせん", + "pos": "名詞", + "pn": -0.431372 + }, + { + "surface": "馬乗り", + "readging": "うまのり", + "pos": "名詞", + "pn": -0.431372 + }, + { + "surface": "匙", + "readging": "さじ", + "pos": "名詞", + "pn": -0.431405 + }, + { + "surface": "鮒", + "readging": "ふな", + "pos": "名詞", + "pn": -0.431413 + }, + { + "surface": "法度", + "readging": "はっと", + "pos": "名詞", + "pn": -0.431446 + }, + { + "surface": "時には", + "readging": "ときには", + "pos": "副詞", + "pn": -0.431462 + }, + { + "surface": "キー", + "readging": "キーワード", + "pos": "名詞", + "pn": -0.431464 + }, + { + "surface": "書院造", + "readging": "しょいんづくり", + "pos": "名詞", + "pn": -0.431475 + }, + { + "surface": "初春", + "readging": "はつはる", + "pos": "名詞", + "pn": -0.43148 + }, + { + "surface": "解脱", + "readging": "げだつ", + "pos": "名詞", + "pn": -0.431491 + }, + { + "surface": "夜業", + "readging": "やぎょう", + "pos": "名詞", + "pn": -0.431498 + }, + { + "surface": "木菟", + "readging": "みみずく", + "pos": "名詞", + "pn": -0.43151 + }, + { + "surface": "常常", + "readging": "つねづね", + "pos": "副詞", + "pn": -0.431512 + }, + { + "surface": "金蛇", + "readging": "かなへび", + "pos": "名詞", + "pn": -0.431517 + }, + { + "surface": "瞑する", + "readging": "めいする", + "pos": "動詞", + "pn": -0.431531 + }, + { + "surface": "木霊", + "readging": "こだま", + "pos": "名詞", + "pn": -0.431534 + }, + { + "surface": "総額", + "readging": "そうがく", + "pos": "名詞", + "pn": -0.431546 + }, + { + "surface": "防壁", + "readging": "ぼうへき", + "pos": "名詞", + "pn": -0.431562 + }, + { + "surface": "護符", + "readging": "ごふ", + "pos": "名詞", + "pn": -0.431563 + }, + { + "surface": "ゲルマニウム", + "readging": "ゲルマニウム", + "pos": "名詞", + "pn": -0.431565 + }, + { + "surface": "生生世世", + "readging": "しょうじょうせぜ", + "pos": "名詞", + "pn": -0.431591 + }, + { + "surface": "偽電", + "readging": "ぎでん", + "pos": "名詞", + "pn": -0.431598 + }, + { + "surface": "晒粉", + "readging": "さらしこ", + "pos": "名詞", + "pn": -0.431606 + }, + { + "surface": "ぐいと", + "readging": "ぐいと", + "pos": "副詞", + "pn": -0.431617 + }, + { + "surface": "縛り付ける", + "readging": "しばりつける", + "pos": "動詞", + "pn": -0.431645 + }, + { + "surface": "三巴", + "readging": "みつどもえ", + "pos": "名詞", + "pn": -0.431646 + }, + { + "surface": "幻像", + "readging": "げんぞう", + "pos": "名詞", + "pn": -0.431661 + }, + { + "surface": "口径", + "readging": "こうけい", + "pos": "名詞", + "pn": -0.431668 + }, + { + "surface": "個", + "readging": "こ", + "pos": "名詞", + "pn": -0.431687 + }, + { + "surface": "初乗り", + "readging": "はつのり", + "pos": "名詞", + "pn": -0.43169 + }, + { + "surface": "屍室", + "readging": "ししつ", + "pos": "名詞", + "pn": -0.431767 + }, + { + "surface": "万", + "readging": "よろず", + "pos": "副詞", + "pn": -0.431768 + }, + { + "surface": "一溜り", + "readging": "ひとたまり", + "pos": "名詞", + "pn": -0.431775 + }, + { + "surface": "何となく", + "readging": "なにとなく", + "pos": "副詞", + "pn": -0.431817 + }, + { + "surface": "差出る", + "readging": "さしでる", + "pos": "動詞", + "pn": -0.431823 + }, + { + "surface": "ピケット", + "readging": "ピケット", + "pos": "名詞", + "pn": -0.431845 + }, + { + "surface": "蝉脱", + "readging": "せんだつ", + "pos": "名詞", + "pn": -0.43187 + }, + { + "surface": "月下氷人", + "readging": "げっかひょうじん", + "pos": "名詞", + "pn": -0.431872 + }, + { + "surface": "選定", + "readging": "せんてい", + "pos": "名詞", + "pn": -0.431874 + }, + { + "surface": "削減", + "readging": "さくげん", + "pos": "名詞", + "pn": -0.431875 + }, + { + "surface": "上背", + "readging": "うわぜい", + "pos": "名詞", + "pn": -0.431887 + }, + { + "surface": "冬瓜", + "readging": "とうが", + "pos": "名詞", + "pn": -0.431892 + }, + { + "surface": "雑務", + "readging": "ざつむ", + "pos": "名詞", + "pn": -0.431918 + }, + { + "surface": "紅粉", + "readging": "こうふん", + "pos": "名詞", + "pn": -0.431942 + }, + { + "surface": "篩", + "readging": "ふるい", + "pos": "名詞", + "pn": -0.431947 + }, + { + "surface": "用材", + "readging": "ようざい", + "pos": "名詞", + "pn": -0.431954 + }, + { + "surface": "民草", + "readging": "たみぐさ", + "pos": "名詞", + "pn": -0.431965 + }, + { + "surface": "経綸", + "readging": "けいりん", + "pos": "名詞", + "pn": -0.431992 + }, + { + "surface": "放熱", + "readging": "ほうねつ", + "pos": "名詞", + "pn": -0.432038 + }, + { + "surface": "万力", + "readging": "まんりき", + "pos": "名詞", + "pn": -0.432045 + }, + { + "surface": "行進曲", + "readging": "こうしんきょく", + "pos": "名詞", + "pn": -0.432046 + }, + { + "surface": "クレーム", + "readging": "クレーム", + "pos": "名詞", + "pn": -0.432051 + }, + { + "surface": "高台", + "readging": "たかだい", + "pos": "名詞", + "pn": -0.432052 + }, + { + "surface": "壺金", + "readging": "つぼがね", + "pos": "名詞", + "pn": -0.432069 + }, + { + "surface": "冊", + "readging": "さつ", + "pos": "名詞", + "pn": -0.432069 + }, + { + "surface": "蒼蒼", + "readging": "そうそう", + "pos": "名詞", + "pn": -0.432085 + }, + { + "surface": "山峡", + "readging": "やまかい", + "pos": "名詞", + "pn": -0.432089 + }, + { + "surface": "揚地", + "readging": "ようち", + "pos": "名詞", + "pn": -0.432121 + }, + { + "surface": "水上生活者", + "readging": "すいじょうせいかつしゃ", + "pos": "名詞", + "pn": -0.432125 + }, + { + "surface": "挟詞", + "readging": "はさみことば", + "pos": "名詞", + "pn": -0.432128 + }, + { + "surface": "入夫", + "readging": "にゅうふ", + "pos": "名詞", + "pn": -0.43217 + }, + { + "surface": "雑色", + "readging": "ざっしょく", + "pos": "名詞", + "pn": -0.432182 + }, + { + "surface": "殷殷", + "readging": "いんいん", + "pos": "名詞", + "pn": -0.43219 + }, + { + "surface": "両刀", + "readging": "りょうとう", + "pos": "名詞", + "pn": -0.432203 + }, + { + "surface": "日食", + "readging": "にっしょく", + "pos": "名詞", + "pn": -0.432209 + }, + { + "surface": "活栓", + "readging": "かっせん", + "pos": "名詞", + "pn": -0.43222 + }, + { + "surface": "焦れる", + "readging": "じれる", + "pos": "動詞", + "pn": -0.432222 + }, + { + "surface": "奏", + "readging": "そう", + "pos": "名詞", + "pn": -0.432226 + }, + { + "surface": "かじかむ", + "readging": "かじかむ", + "pos": "動詞", + "pn": -0.432233 + }, + { + "surface": "本来", + "readging": "ほんらい", + "pos": "副詞", + "pn": -0.432238 + }, + { + "surface": "聖断", + "readging": "せいだん", + "pos": "名詞", + "pn": -0.432267 + }, + { + "surface": "汎用", + "readging": "はんよう", + "pos": "名詞", + "pn": -0.432277 + }, + { + "surface": "冬物", + "readging": "ふゆもの", + "pos": "名詞", + "pn": -0.432295 + }, + { + "surface": "可能", + "readging": "かのう", + "pos": "名詞", + "pn": -0.43232 + }, + { + "surface": "一間", + "readging": "いっけん", + "pos": "名詞", + "pn": -0.432339 + }, + { + "surface": "果肉", + "readging": "かにく", + "pos": "名詞", + "pn": -0.43234 + }, + { + "surface": "引致", + "readging": "いんち", + "pos": "名詞", + "pn": -0.432354 + }, + { + "surface": "三色菫", + "readging": "さんしきすみれ", + "pos": "名詞", + "pn": -0.432362 + }, + { + "surface": "蓬", + "readging": "よもぎ", + "pos": "名詞", + "pn": -0.432374 + }, + { + "surface": "飛付く", + "readging": "とびつく", + "pos": "動詞", + "pn": -0.432401 + }, + { + "surface": "電話機", + "readging": "でんわき", + "pos": "名詞", + "pn": -0.432419 + }, + { + "surface": "流亡", + "readging": "りゅうぼう", + "pos": "名詞", + "pn": -0.432421 + }, + { + "surface": "圧する", + "readging": "あっする", + "pos": "動詞", + "pn": -0.432427 + }, + { + "surface": "ポタージュ", + "readging": "ポタージュ", + "pos": "名詞", + "pn": -0.43243 + }, + { + "surface": "思い出", + "readging": "おもいで", + "pos": "名詞", + "pn": -0.432448 + }, + { + "surface": "作り声", + "readging": "つくりごえ", + "pos": "名詞", + "pn": -0.432455 + }, + { + "surface": "方眼紙", + "readging": "ほうがんし", + "pos": "名詞", + "pn": -0.432462 + }, + { + "surface": "フィルター", + "readging": "フィルター", + "pos": "名詞", + "pn": -0.432468 + }, + { + "surface": "叙法", + "readging": "じょほう", + "pos": "名詞", + "pn": -0.432472 + }, + { + "surface": "宿所", + "readging": "しゅくしょ", + "pos": "名詞", + "pn": -0.43249 + }, + { + "surface": "愛婿", + "readging": "あいせい", + "pos": "名詞", + "pn": -0.432496 + }, + { + "surface": "舞姫", + "readging": "まいひめ", + "pos": "名詞", + "pn": -0.432502 + }, + { + "surface": "乱脈", + "readging": "らんみゃく", + "pos": "名詞", + "pn": -0.432509 + }, + { + "surface": "矢板", + "readging": "やいた", + "pos": "名詞", + "pn": -0.432522 + }, + { + "surface": "柔", + "readging": "やわら", + "pos": "名詞", + "pn": -0.432527 + }, + { + "surface": "箱提灯", + "readging": "はこぢょうちん", + "pos": "名詞", + "pn": -0.432539 + }, + { + "surface": "タイ", + "readging": "タイアップ", + "pos": "名詞", + "pn": -0.43254 + }, + { + "surface": "虫", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.432542 + }, + { + "surface": "楼閣", + "readging": "ろうかく", + "pos": "名詞", + "pn": -0.43255 + }, + { + "surface": "老化", + "readging": "ろうか", + "pos": "名詞", + "pn": -0.432555 + }, + { + "surface": "仮名", + "readging": "かめい", + "pos": "名詞", + "pn": -0.432582 + }, + { + "surface": "ドミノ", + "readging": "ドミノ", + "pos": "名詞", + "pn": -0.432589 + }, + { + "surface": "無理往生", + "readging": "むりおうじょう", + "pos": "名詞", + "pn": -0.432617 + }, + { + "surface": "解き放す", + "readging": "ときはなす", + "pos": "動詞", + "pn": -0.432633 + }, + { + "surface": "珪砂", + "readging": "けいしゃ", + "pos": "名詞", + "pn": -0.432655 + }, + { + "surface": "出口", + "readging": "でぐち", + "pos": "名詞", + "pn": -0.43266 + }, + { + "surface": "寝酒", + "readging": "ねざけ", + "pos": "名詞", + "pn": -0.432698 + }, + { + "surface": "利益社会", + "readging": "りえきしゃかい", + "pos": "名詞", + "pn": -0.432699 + }, + { + "surface": "洋装", + "readging": "ようそう", + "pos": "名詞", + "pn": -0.432704 + }, + { + "surface": "鰈", + "readging": "かれい", + "pos": "名詞", + "pn": -0.432732 + }, + { + "surface": "運行", + "readging": "うんこう", + "pos": "名詞", + "pn": -0.432754 + }, + { + "surface": "丁子", + "readging": "ちょうじ", + "pos": "名詞", + "pn": -0.43279 + }, + { + "surface": "レジスタンス", + "readging": "レジスタンス", + "pos": "名詞", + "pn": -0.432812 + }, + { + "surface": "退勢", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.432819 + }, + { + "surface": "弔旗", + "readging": "ちょうき", + "pos": "名詞", + "pn": -0.432823 + }, + { + "surface": "こけし", + "readging": "こけし", + "pos": "名詞", + "pn": -0.432824 + }, + { + "surface": "深編笠", + "readging": "ふかあみがさ", + "pos": "名詞", + "pn": -0.43283 + }, + { + "surface": "鍵盤", + "readging": "けんばん", + "pos": "名詞", + "pn": -0.43285 + }, + { + "surface": "赤手", + "readging": "せきしゅ", + "pos": "名詞", + "pn": -0.432852 + }, + { + "surface": "晒首", + "readging": "さらしくび", + "pos": "名詞", + "pn": -0.432854 + }, + { + "surface": "引物", + "readging": "ひきもの", + "pos": "名詞", + "pn": -0.432863 + }, + { + "surface": "洟垂れ", + "readging": "はなたれ", + "pos": "名詞", + "pn": -0.432868 + }, + { + "surface": "遠見", + "readging": "とおみ", + "pos": "名詞", + "pn": -0.432908 + }, + { + "surface": "中中", + "readging": "なかなか", + "pos": "副詞", + "pn": -0.432948 + }, + { + "surface": "卓", + "readging": "たく", + "pos": "名詞", + "pn": -0.432964 + }, + { + "surface": "本位", + "readging": "ほんい", + "pos": "名詞", + "pn": -0.432965 + }, + { + "surface": "定員", + "readging": "ていいん", + "pos": "名詞", + "pn": -0.432966 + }, + { + "surface": "十種競技", + "readging": "じっしゅきょうぎ", + "pos": "名詞", + "pn": -0.432973 + }, + { + "surface": "分立", + "readging": "ぶんりつ", + "pos": "名詞", + "pn": -0.432981 + }, + { + "surface": "旅路", + "readging": "たびじ", + "pos": "名詞", + "pn": -0.432988 + }, + { + "surface": "糸捌き", + "readging": "いとさばき", + "pos": "名詞", + "pn": -0.433 + }, + { + "surface": "立流し", + "readging": "たちながし", + "pos": "名詞", + "pn": -0.433013 + }, + { + "surface": "さ子", + "readging": "さし", + "pos": "名詞", + "pn": -0.433031 + }, + { + "surface": "偏頭痛", + "readging": "へんずつう", + "pos": "名詞", + "pn": -0.433036 + }, + { + "surface": "敷", + "readging": "しき", + "pos": "名詞", + "pn": -0.433043 + }, + { + "surface": "略称", + "readging": "りゃくしょう", + "pos": "名詞", + "pn": -0.433051 + }, + { + "surface": "書籍", + "readging": "しょせき", + "pos": "名詞", + "pn": -0.433054 + }, + { + "surface": "滋", + "readging": "じ", + "pos": "名詞", + "pn": -0.43306 + }, + { + "surface": "救急", + "readging": "きゅうきゅう", + "pos": "名詞", + "pn": -0.433063 + }, + { + "surface": "上膊", + "readging": "じょうはく", + "pos": "名詞", + "pn": -0.433069 + }, + { + "surface": "胸囲", + "readging": "きょうい", + "pos": "名詞", + "pn": -0.433076 + }, + { + "surface": "好き勝手", + "readging": "すきかって", + "pos": "名詞", + "pn": -0.433125 + }, + { + "surface": "火の気", + "readging": "ひのけ", + "pos": "名詞", + "pn": -0.433141 + }, + { + "surface": "無", + "readging": "む", + "pos": "名詞", + "pn": -0.433156 + }, + { + "surface": "殿様", + "readging": "とのさま", + "pos": "名詞", + "pn": -0.433161 + }, + { + "surface": "雑居", + "readging": "ざっきょ", + "pos": "名詞", + "pn": -0.433165 + }, + { + "surface": "牢脱け", + "readging": "ろうぬけ", + "pos": "名詞", + "pn": -0.433169 + }, + { + "surface": "官位", + "readging": "かんい", + "pos": "名詞", + "pn": -0.433181 + }, + { + "surface": "打診", + "readging": "だしん", + "pos": "名詞", + "pn": -0.433208 + }, + { + "surface": "筆頭", + "readging": "ふでがしら", + "pos": "名詞", + "pn": -0.433222 + }, + { + "surface": "月桂", + "readging": "げっけい", + "pos": "名詞", + "pn": -0.433226 + }, + { + "surface": "アンプル", + "readging": "アンプル", + "pos": "名詞", + "pn": -0.433226 + }, + { + "surface": "男", + "readging": "おとこ", + "pos": "名詞", + "pn": -0.433234 + }, + { + "surface": "ブーイング", + "readging": "ブーイング", + "pos": "名詞", + "pn": -0.433245 + }, + { + "surface": "単独", + "readging": "たんどく", + "pos": "名詞", + "pn": -0.433267 + }, + { + "surface": "嗽", + "readging": "うがい", + "pos": "名詞", + "pn": -0.433269 + }, + { + "surface": "禿", + "readging": "はげ", + "pos": "名詞", + "pn": -0.433274 + }, + { + "surface": "ココア", + "readging": "ココア", + "pos": "名詞", + "pn": -0.433288 + }, + { + "surface": "証憑", + "readging": "しょうひょう", + "pos": "名詞", + "pn": -0.43331 + }, + { + "surface": "余財", + "readging": "よざい", + "pos": "名詞", + "pn": -0.433323 + }, + { + "surface": "聞える", + "readging": "きこえる", + "pos": "動詞", + "pn": -0.433327 + }, + { + "surface": "ノック", + "readging": "ノックダウン", + "pos": "名詞", + "pn": -0.433332 + }, + { + "surface": "等深線", + "readging": "とうしんせん", + "pos": "名詞", + "pn": -0.433361 + }, + { + "surface": "ぎゃあぎゃあ", + "readging": "ぎゃあぎゃあ", + "pos": "副詞", + "pn": -0.433366 + }, + { + "surface": "限外", + "readging": "げんがい", + "pos": "名詞", + "pn": -0.433374 + }, + { + "surface": "折鶴", + "readging": "おりづる", + "pos": "名詞", + "pn": -0.433382 + }, + { + "surface": "寄せ切れ", + "readging": "よせぎれ", + "pos": "名詞", + "pn": -0.433397 + }, + { + "surface": "白丁", + "readging": "はくちょう", + "pos": "名詞", + "pn": -0.43343 + }, + { + "surface": "フィラメント", + "readging": "フィラメント", + "pos": "名詞", + "pn": -0.433434 + }, + { + "surface": "飾り物", + "readging": "かざりもの", + "pos": "名詞", + "pn": -0.43344 + }, + { + "surface": "情歌", + "readging": "じょうか", + "pos": "名詞", + "pn": -0.43344 + }, + { + "surface": "悪縁", + "readging": "あくえん", + "pos": "名詞", + "pn": -0.433454 + }, + { + "surface": "パズル", + "readging": "パズル", + "pos": "名詞", + "pn": -0.433458 + }, + { + "surface": "砂嚢", + "readging": "さのう", + "pos": "名詞", + "pn": -0.433463 + }, + { + "surface": "ぽうっと", + "readging": "ぽうっと", + "pos": "副詞", + "pn": -0.433465 + }, + { + "surface": "赤", + "readging": "あか", + "pos": "名詞", + "pn": -0.433468 + }, + { + "surface": "蜥蜴", + "readging": "とかげ", + "pos": "名詞", + "pn": -0.433489 + }, + { + "surface": "天下取", + "readging": "てんかとり", + "pos": "名詞", + "pn": -0.433489 + }, + { + "surface": "怫然", + "readging": "ふつぜん", + "pos": "名詞", + "pn": -0.433496 + }, + { + "surface": "血族", + "readging": "けつぞく", + "pos": "名詞", + "pn": -0.433499 + }, + { + "surface": "量り込む", + "readging": "はかりこむ", + "pos": "動詞", + "pn": -0.433502 + }, + { + "surface": "人造", + "readging": "じんぞう", + "pos": "名詞", + "pn": -0.433505 + }, + { + "surface": "庭先", + "readging": "にわさき", + "pos": "名詞", + "pn": -0.433514 + }, + { + "surface": "風呂敷", + "readging": "ふろしき", + "pos": "名詞", + "pn": -0.433522 + }, + { + "surface": "木漏れ日", + "readging": "こもれび", + "pos": "名詞", + "pn": -0.433551 + }, + { + "surface": "原義", + "readging": "げんぎ", + "pos": "名詞", + "pn": -0.433588 + }, + { + "surface": "度胸", + "readging": "どきょう", + "pos": "名詞", + "pn": -0.433605 + }, + { + "surface": "罪名", + "readging": "ざいめい", + "pos": "名詞", + "pn": -0.433606 + }, + { + "surface": "縞蛇", + "readging": "しまへび", + "pos": "名詞", + "pn": -0.433617 + }, + { + "surface": "諸事", + "readging": "しょじ", + "pos": "名詞", + "pn": -0.433637 + }, + { + "surface": "名付親", + "readging": "なづけおや", + "pos": "名詞", + "pn": -0.433651 + }, + { + "surface": "馬齢", + "readging": "ばれい", + "pos": "名詞", + "pn": -0.433672 + }, + { + "surface": "本国", + "readging": "ほんごく", + "pos": "名詞", + "pn": -0.433689 + }, + { + "surface": "奉幣", + "readging": "ほうへい", + "pos": "名詞", + "pn": -0.433691 + }, + { + "surface": "冷戦", + "readging": "れいせん", + "pos": "名詞", + "pn": -0.433692 + }, + { + "surface": "泥", + "readging": "どろ", + "pos": "名詞", + "pn": -0.433713 + }, + { + "surface": "蟒蛇", + "readging": "うわばみ", + "pos": "名詞", + "pn": -0.433731 + }, + { + "surface": "準縄", + "readging": "じゅんじょう", + "pos": "名詞", + "pn": -0.433752 + }, + { + "surface": "女人禁制", + "readging": "にょにんきんぜい", + "pos": "名詞", + "pn": -0.433768 + }, + { + "surface": "議案", + "readging": "ぎあん", + "pos": "名詞", + "pn": -0.433789 + }, + { + "surface": "衍字", + "readging": "えんじ", + "pos": "名詞", + "pn": -0.433792 + }, + { + "surface": "圧伏", + "readging": "あっぷく", + "pos": "名詞", + "pn": -0.433802 + }, + { + "surface": "燕尾服", + "readging": "えんびふく", + "pos": "名詞", + "pn": -0.433831 + }, + { + "surface": "引落す", + "readging": "ひきおとす", + "pos": "動詞", + "pn": -0.43385 + }, + { + "surface": "溺れ谷", + "readging": "おぼれだに", + "pos": "名詞", + "pn": -0.433853 + }, + { + "surface": "直諫", + "readging": "ちょっかん", + "pos": "名詞", + "pn": -0.43388 + }, + { + "surface": "無知", + "readging": "むち", + "pos": "名詞", + "pn": -0.433894 + }, + { + "surface": "合の手", + "readging": "あいのて", + "pos": "名詞", + "pn": -0.433901 + }, + { + "surface": "キャラメル", + "readging": "キャラメル", + "pos": "名詞", + "pn": -0.433904 + }, + { + "surface": "黄砂", + "readging": "こうさ", + "pos": "名詞", + "pn": -0.433907 + }, + { + "surface": "朗", + "readging": "ろう", + "pos": "名詞", + "pn": -0.433917 + }, + { + "surface": "洞", + "readging": "ほら", + "pos": "名詞", + "pn": -0.433922 + }, + { + "surface": "ギャグ", + "readging": "ギャグ", + "pos": "名詞", + "pn": -0.433937 + }, + { + "surface": "稲荷", + "readging": "いなり", + "pos": "名詞", + "pn": -0.433956 + }, + { + "surface": "取って代る", + "readging": "とってかわる", + "pos": "動詞", + "pn": -0.433972 + }, + { + "surface": "標識", + "readging": "ひょうしき", + "pos": "名詞", + "pn": -0.433984 + }, + { + "surface": "返り忠", + "readging": "かえりちゅう", + "pos": "名詞", + "pn": -0.433987 + }, + { + "surface": "連行", + "readging": "れんこう", + "pos": "名詞", + "pn": -0.434003 + }, + { + "surface": "木綿", + "readging": "きわた", + "pos": "名詞", + "pn": -0.434037 + }, + { + "surface": "名指す", + "readging": "なざす", + "pos": "動詞", + "pn": -0.434038 + }, + { + "surface": "フラスコ", + "readging": "フラスコ", + "pos": "名詞", + "pn": -0.434042 + }, + { + "surface": "定置", + "readging": "ていち", + "pos": "名詞", + "pn": -0.434042 + }, + { + "surface": "胴乱", + "readging": "どうらん", + "pos": "名詞", + "pn": -0.434045 + }, + { + "surface": "リール", + "readging": "リール", + "pos": "名詞", + "pn": -0.434086 + }, + { + "surface": "八卦", + "readging": "はっけ", + "pos": "名詞", + "pn": -0.43412 + }, + { + "surface": "焼け太り", + "readging": "やけぶとり", + "pos": "名詞", + "pn": -0.434123 + }, + { + "surface": "ブラインド", + "readging": "ブラインド", + "pos": "名詞", + "pn": -0.434123 + }, + { + "surface": "暑気中り", + "readging": "しょきあたり", + "pos": "名詞", + "pn": -0.434134 + }, + { + "surface": "独走", + "readging": "どくそう", + "pos": "名詞", + "pn": -0.434139 + }, + { + "surface": "高血圧", + "readging": "こうけつあつ", + "pos": "名詞", + "pn": -0.434149 + }, + { + "surface": "ぶらんこ", + "readging": "ぶらんこ", + "pos": "名詞", + "pn": -0.434161 + }, + { + "surface": "閉門", + "readging": "へいもん", + "pos": "名詞", + "pn": -0.434174 + }, + { + "surface": "闇夜", + "readging": "やみよ", + "pos": "名詞", + "pn": -0.434213 + }, + { + "surface": "軍配団扇", + "readging": "ぐんばいうちわ", + "pos": "名詞", + "pn": -0.434226 + }, + { + "surface": "手仕事", + "readging": "てしごと", + "pos": "名詞", + "pn": -0.434227 + }, + { + "surface": "擲つ", + "readging": "なげうつ", + "pos": "動詞", + "pn": -0.434228 + }, + { + "surface": "切羽", + "readging": "きりは", + "pos": "名詞", + "pn": -0.434232 + }, + { + "surface": "遠回り", + "readging": "とおまわり", + "pos": "名詞", + "pn": -0.434254 + }, + { + "surface": "嗚咽", + "readging": "おえつ", + "pos": "名詞", + "pn": -0.434262 + }, + { + "surface": "圧搾", + "readging": "あっさく", + "pos": "名詞", + "pn": -0.434275 + }, + { + "surface": "同列", + "readging": "どうれつ", + "pos": "名詞", + "pn": -0.434294 + }, + { + "surface": "泣腫らす", + "readging": "なきはらす", + "pos": "動詞", + "pn": -0.434309 + }, + { + "surface": "黒ビール", + "readging": "くろビール", + "pos": "名詞", + "pn": -0.434323 + }, + { + "surface": "弁駁", + "readging": "べんばく", + "pos": "名詞", + "pn": -0.434341 + }, + { + "surface": "用便", + "readging": "ようべん", + "pos": "名詞", + "pn": -0.434343 + }, + { + "surface": "特使", + "readging": "とくし", + "pos": "名詞", + "pn": -0.434345 + }, + { + "surface": "綻ばす", + "readging": "ほころばす", + "pos": "動詞", + "pn": -0.434348 + }, + { + "surface": "込み", + "readging": "こみ", + "pos": "名詞", + "pn": -0.434349 + }, + { + "surface": "棒高跳", + "readging": "ぼうたかとび", + "pos": "名詞", + "pn": -0.434358 + }, + { + "surface": "辮髪", + "readging": "べんぱつ", + "pos": "名詞", + "pn": -0.434361 + }, + { + "surface": "昴", + "readging": "すばる", + "pos": "名詞", + "pn": -0.434361 + }, + { + "surface": "戸外", + "readging": "こがい", + "pos": "名詞", + "pn": -0.434399 + }, + { + "surface": "手腕", + "readging": "しゅわん", + "pos": "名詞", + "pn": -0.434402 + }, + { + "surface": "骨髄", + "readging": "こつずい", + "pos": "名詞", + "pn": -0.434405 + }, + { + "surface": "汽水", + "readging": "きすい", + "pos": "名詞", + "pn": -0.434413 + }, + { + "surface": "注入", + "readging": "ちゅうにゅう", + "pos": "名詞", + "pn": -0.434427 + }, + { + "surface": "毬藻", + "readging": "まりも", + "pos": "名詞", + "pn": -0.434457 + }, + { + "surface": "胸算用", + "readging": "むなざんよう", + "pos": "名詞", + "pn": -0.434457 + }, + { + "surface": "輿地", + "readging": "よち", + "pos": "名詞", + "pn": -0.434489 + }, + { + "surface": "反徒", + "readging": "はんと", + "pos": "名詞", + "pn": -0.43449 + }, + { + "surface": "ローラー", + "readging": "ローラー", + "pos": "名詞", + "pn": -0.434494 + }, + { + "surface": "九族", + "readging": "きゅうぞく", + "pos": "名詞", + "pn": -0.434495 + }, + { + "surface": "薄荷精", + "readging": "はっかせい", + "pos": "名詞", + "pn": -0.434506 + }, + { + "surface": "副文", + "readging": "ふくぶん", + "pos": "名詞", + "pn": -0.434518 + }, + { + "surface": "張子", + "readging": "はりこ", + "pos": "名詞", + "pn": -0.434538 + }, + { + "surface": "オリーブ色", + "readging": "オリーブいろ", + "pos": "名詞", + "pn": -0.434559 + }, + { + "surface": "相似", + "readging": "そうじ", + "pos": "名詞", + "pn": -0.434574 + }, + { + "surface": "百面相", + "readging": "ひゃくめんそう", + "pos": "名詞", + "pn": -0.434594 + }, + { + "surface": "火袋", + "readging": "ひぶくろ", + "pos": "名詞", + "pn": -0.4346 + }, + { + "surface": "男妾", + "readging": "おとこめかけ", + "pos": "名詞", + "pn": -0.434636 + }, + { + "surface": "反撃", + "readging": "はんげき", + "pos": "名詞", + "pn": -0.434657 + }, + { + "surface": "食い料", + "readging": "くいりょう", + "pos": "名詞", + "pn": -0.434662 + }, + { + "surface": "行", + "readging": "ぎょう", + "pos": "名詞", + "pn": -0.434672 + }, + { + "surface": "大鹿", + "readging": "おおしか", + "pos": "名詞", + "pn": -0.434672 + }, + { + "surface": "アマルガム", + "readging": "アマルガム", + "pos": "名詞", + "pn": -0.43468 + }, + { + "surface": "安息香", + "readging": "あんそくこう", + "pos": "名詞", + "pn": -0.434684 + }, + { + "surface": "棒引", + "readging": "ぼうびき", + "pos": "名詞", + "pn": -0.434727 + }, + { + "surface": "皺", + "readging": "しわ", + "pos": "名詞", + "pn": -0.434731 + }, + { + "surface": "雪達磨", + "readging": "ゆきだるま", + "pos": "名詞", + "pn": -0.434741 + }, + { + "surface": "討手", + "readging": "うって", + "pos": "名詞", + "pn": -0.434765 + }, + { + "surface": "角質", + "readging": "かくしつ", + "pos": "名詞", + "pn": -0.434792 + }, + { + "surface": "ラウンジ", + "readging": "ラウンジ", + "pos": "名詞", + "pn": -0.434804 + }, + { + "surface": "スイッチ", + "readging": "スイッチバック", + "pos": "名詞", + "pn": -0.434821 + }, + { + "surface": "弓筈", + "readging": "ゆはず", + "pos": "名詞", + "pn": -0.434825 + }, + { + "surface": "泉", + "readging": "いずみ", + "pos": "名詞", + "pn": -0.434866 + }, + { + "surface": "挿入", + "readging": "そうにゅう", + "pos": "名詞", + "pn": -0.434898 + }, + { + "surface": "妖術", + "readging": "ようじゅつ", + "pos": "名詞", + "pn": -0.4349 + }, + { + "surface": "毛色", + "readging": "けいろ", + "pos": "名詞", + "pn": -0.43491 + }, + { + "surface": "宗太鰹", + "readging": "そうだがつお", + "pos": "名詞", + "pn": -0.434912 + }, + { + "surface": "江上", + "readging": "こうじょう", + "pos": "名詞", + "pn": -0.434912 + }, + { + "surface": "葺替え", + "readging": "ふきかえ", + "pos": "名詞", + "pn": -0.434928 + }, + { + "surface": "ビーカー", + "readging": "ビーカー", + "pos": "名詞", + "pn": -0.434937 + }, + { + "surface": "局留", + "readging": "きょくどめ", + "pos": "名詞", + "pn": -0.434945 + }, + { + "surface": "根粒", + "readging": "こんりゅう", + "pos": "名詞", + "pn": -0.434946 + }, + { + "surface": "コミッション", + "readging": "コミッション", + "pos": "名詞", + "pn": -0.434948 + }, + { + "surface": "バック", + "readging": "バックナンバー", + "pos": "名詞", + "pn": -0.43495 + }, + { + "surface": "委嘱", + "readging": "いしょく", + "pos": "名詞", + "pn": -0.434968 + }, + { + "surface": "造船", + "readging": "ぞうせん", + "pos": "名詞", + "pn": -0.43498 + }, + { + "surface": "気質", + "readging": "きしつ", + "pos": "名詞", + "pn": -0.434996 + }, + { + "surface": "茶気", + "readging": "ちゃき", + "pos": "名詞", + "pn": -0.434998 + }, + { + "surface": "色素", + "readging": "しきそ", + "pos": "名詞", + "pn": -0.435005 + }, + { + "surface": "スペース", + "readging": "スペース", + "pos": "名詞", + "pn": -0.435005 + }, + { + "surface": "物言い", + "readging": "ものいい", + "pos": "名詞", + "pn": -0.435016 + }, + { + "surface": "炊ぐ", + "readging": "かしぐ", + "pos": "動詞", + "pn": -0.435045 + }, + { + "surface": "射的", + "readging": "しゃてき", + "pos": "名詞", + "pn": -0.435063 + }, + { + "surface": "耳掻き", + "readging": "みみかき", + "pos": "名詞", + "pn": -0.435065 + }, + { + "surface": "六腑", + "readging": "ろっぷ", + "pos": "名詞", + "pn": -0.435067 + }, + { + "surface": "見据える", + "readging": "みすえる", + "pos": "動詞", + "pn": -0.435069 + }, + { + "surface": "酵母", + "readging": "こうぼ", + "pos": "名詞", + "pn": -0.435073 + }, + { + "surface": "道義", + "readging": "どうぎ", + "pos": "名詞", + "pn": -0.435076 + }, + { + "surface": "序説", + "readging": "じょせつ", + "pos": "名詞", + "pn": -0.435078 + }, + { + "surface": "乱臣賊子", + "readging": "らんしんぞくし", + "pos": "名詞", + "pn": -0.435086 + }, + { + "surface": "向背", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.435095 + }, + { + "surface": "読上げる", + "readging": "よみあげる", + "pos": "動詞", + "pn": -0.435118 + }, + { + "surface": "食味", + "readging": "しょくみ", + "pos": "名詞", + "pn": -0.435121 + }, + { + "surface": "川柳", + "readging": "せんりゅう", + "pos": "名詞", + "pn": -0.435127 + }, + { + "surface": "態勢", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.435129 + }, + { + "surface": "召捕る", + "readging": "めしとる", + "pos": "動詞", + "pn": -0.435144 + }, + { + "surface": "鬼ごっこ", + "readging": "おにごっこ", + "pos": "名詞", + "pn": -0.435159 + }, + { + "surface": "荒れ性", + "readging": "あれしょう", + "pos": "名詞", + "pn": -0.435163 + }, + { + "surface": "問屋場", + "readging": "といや", + "pos": "名詞", + "pn": -0.435172 + }, + { + "surface": "牛耳る", + "readging": "ぎゅうじる", + "pos": "動詞", + "pn": -0.435191 + }, + { + "surface": "年月日", + "readging": "ねんがっぴ", + "pos": "名詞", + "pn": -0.435208 + }, + { + "surface": "入府", + "readging": "にゅうふ", + "pos": "名詞", + "pn": -0.435234 + }, + { + "surface": "大食", + "readging": "たいしょく", + "pos": "名詞", + "pn": -0.435237 + }, + { + "surface": "楚", + "readging": "すわえ", + "pos": "名詞", + "pn": -0.435238 + }, + { + "surface": "軽佻", + "readging": "けいちょう", + "pos": "名詞", + "pn": -0.435238 + }, + { + "surface": "やとな", + "readging": "やとな", + "pos": "名詞", + "pn": -0.435263 + }, + { + "surface": "袖口", + "readging": "そでぐち", + "pos": "名詞", + "pn": -0.435279 + }, + { + "surface": "十字", + "readging": "じゅうじ", + "pos": "名詞", + "pn": -0.4353 + }, + { + "surface": "こわもて", + "readging": "こわもて", + "pos": "名詞", + "pn": -0.435305 + }, + { + "surface": "山崩", + "readging": "やまくずれ", + "pos": "名詞", + "pn": -0.43532 + }, + { + "surface": "莢隠元", + "readging": "さやいんげん", + "pos": "名詞", + "pn": -0.435337 + }, + { + "surface": "焔", + "readging": "えん", + "pos": "名詞", + "pn": -0.435348 + }, + { + "surface": "起重機", + "readging": "きじゅうき", + "pos": "名詞", + "pn": -0.435397 + }, + { + "surface": "替着", + "readging": "かえぎ", + "pos": "名詞", + "pn": -0.435401 + }, + { + "surface": "修する", + "readging": "しゅうする", + "pos": "動詞", + "pn": -0.435402 + }, + { + "surface": "拾い読み", + "readging": "ひろいよみ", + "pos": "名詞", + "pn": -0.43541 + }, + { + "surface": "人骨", + "readging": "じんこつ", + "pos": "名詞", + "pn": -0.435411 + }, + { + "surface": "ギャザー", + "readging": "ギャザー", + "pos": "名詞", + "pn": -0.435439 + }, + { + "surface": "聖餐式", + "readging": "せいさんしき", + "pos": "名詞", + "pn": -0.43544 + }, + { + "surface": "我勝ち", + "readging": "われがち", + "pos": "名詞", + "pn": -0.435486 + }, + { + "surface": "身", + "readging": "しん", + "pos": "名詞", + "pn": -0.435489 + }, + { + "surface": "自称", + "readging": "じしょう", + "pos": "名詞", + "pn": -0.435495 + }, + { + "surface": "投島田", + "readging": "なげしまだ", + "pos": "名詞", + "pn": -0.435518 + }, + { + "surface": "権", + "readging": "ごん", + "pos": "名詞", + "pn": -0.435543 + }, + { + "surface": "畑", + "readging": "はた", + "pos": "名詞", + "pn": -0.435544 + }, + { + "surface": "隠匿", + "readging": "いんとく", + "pos": "名詞", + "pn": -0.435553 + }, + { + "surface": "継足す", + "readging": "つぎたす", + "pos": "動詞", + "pn": -0.435555 + }, + { + "surface": "脱兎", + "readging": "だっと", + "pos": "名詞", + "pn": -0.435558 + }, + { + "surface": "店舗", + "readging": "てんぽ", + "pos": "名詞", + "pn": -0.435569 + }, + { + "surface": "自立", + "readging": "じりつ", + "pos": "名詞", + "pn": -0.435578 + }, + { + "surface": "そそる", + "readging": "そそる", + "pos": "動詞", + "pn": -0.435592 + }, + { + "surface": "類型", + "readging": "るいけい", + "pos": "名詞", + "pn": -0.435601 + }, + { + "surface": "毛抜合せ", + "readging": "けぬきあわせ", + "pos": "名詞", + "pn": -0.435627 + }, + { + "surface": "遠浅", + "readging": "とおあさ", + "pos": "名詞", + "pn": -0.43563 + }, + { + "surface": "結跏趺坐", + "readging": "けっかふざ", + "pos": "名詞", + "pn": -0.43565 + }, + { + "surface": "縮れ毛", + "readging": "ちぢれげ", + "pos": "名詞", + "pn": -0.435658 + }, + { + "surface": "塩出し", + "readging": "しおだし", + "pos": "名詞", + "pn": -0.435665 + }, + { + "surface": "黒百合", + "readging": "くろゆり", + "pos": "名詞", + "pn": -0.435685 + }, + { + "surface": "杯", + "readging": "さかずき", + "pos": "名詞", + "pn": -0.435686 + }, + { + "surface": "流し網", + "readging": "ながしあみ", + "pos": "名詞", + "pn": -0.43569 + }, + { + "surface": "所縁", + "readging": "しょえん", + "pos": "名詞", + "pn": -0.435701 + }, + { + "surface": "潜航", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.435709 + }, + { + "surface": "紫", + "readging": "し", + "pos": "名詞", + "pn": -0.435715 + }, + { + "surface": "捕獲", + "readging": "ほかく", + "pos": "名詞", + "pn": -0.435716 + }, + { + "surface": "リコール制", + "readging": "リコールせい", + "pos": "名詞", + "pn": -0.435721 + }, + { + "surface": "アクリル", + "readging": "アクリル", + "pos": "名詞", + "pn": -0.435733 + }, + { + "surface": "親無し", + "readging": "おやなし", + "pos": "名詞", + "pn": -0.43576 + }, + { + "surface": "沙蚕", + "readging": "ごかい", + "pos": "名詞", + "pn": -0.435762 + }, + { + "surface": "扇動", + "readging": "せんどう", + "pos": "名詞", + "pn": -0.43578 + }, + { + "surface": "王冠", + "readging": "おうかん", + "pos": "名詞", + "pn": -0.435803 + }, + { + "surface": "醸造", + "readging": "じょうぞう", + "pos": "名詞", + "pn": -0.43582 + }, + { + "surface": "環海", + "readging": "かんかい", + "pos": "名詞", + "pn": -0.435821 + }, + { + "surface": "食堂", + "readging": "しょくどう", + "pos": "名詞", + "pn": -0.435837 + }, + { + "surface": "経文", + "readging": "きょうもん", + "pos": "名詞", + "pn": -0.435842 + }, + { + "surface": "縁故", + "readging": "えんこ", + "pos": "名詞", + "pn": -0.435847 + }, + { + "surface": "見た目", + "readging": "みため", + "pos": "名詞", + "pn": -0.435873 + }, + { + "surface": "茨", + "readging": "うばら", + "pos": "名詞", + "pn": -0.435893 + }, + { + "surface": "言募る", + "readging": "いいつのる", + "pos": "動詞", + "pn": -0.435895 + }, + { + "surface": "青立ち", + "readging": "あおだち", + "pos": "名詞", + "pn": -0.435916 + }, + { + "surface": "店", + "readging": "てん", + "pos": "名詞", + "pn": -0.435934 + }, + { + "surface": "作り出す", + "readging": "つくりだす", + "pos": "動詞", + "pn": -0.43594 + }, + { + "surface": "煉丹", + "readging": "れんたん", + "pos": "名詞", + "pn": -0.435941 + }, + { + "surface": "尚", + "readging": "しょう", + "pos": "名詞", + "pn": -0.435942 + }, + { + "surface": "裸虫", + "readging": "はだかむし", + "pos": "名詞", + "pn": -0.435958 + }, + { + "surface": "艶事", + "readging": "つやごと", + "pos": "名詞", + "pn": -0.435961 + }, + { + "surface": "軽薄", + "readging": "けいはく", + "pos": "名詞", + "pn": -0.435962 + }, + { + "surface": "奏覧", + "readging": "そうらん", + "pos": "名詞", + "pn": -0.43598 + }, + { + "surface": "聞過す", + "readging": "ききすごす", + "pos": "動詞", + "pn": -0.435984 + }, + { + "surface": "罰当り", + "readging": "ばちあたり", + "pos": "名詞", + "pn": -0.435998 + }, + { + "surface": "高層", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.436005 + }, + { + "surface": "コードバン", + "readging": "コードバン", + "pos": "名詞", + "pn": -0.436022 + }, + { + "surface": "悪阻", + "readging": "つわり", + "pos": "名詞", + "pn": -0.436028 + }, + { + "surface": "作間", + "readging": "さくま", + "pos": "名詞", + "pn": -0.436043 + }, + { + "surface": "勘合", + "readging": "かんごう", + "pos": "名詞", + "pn": -0.436107 + }, + { + "surface": "吹上", + "readging": "ふきあげ", + "pos": "名詞", + "pn": -0.436141 + }, + { + "surface": "変温動物", + "readging": "へんおんどうぶつ", + "pos": "名詞", + "pn": -0.436153 + }, + { + "surface": "免官", + "readging": "めんかん", + "pos": "名詞", + "pn": -0.436157 + }, + { + "surface": "画布", + "readging": "がふ", + "pos": "名詞", + "pn": -0.436172 + }, + { + "surface": "令婿", + "readging": "れいせい", + "pos": "名詞", + "pn": -0.436178 + }, + { + "surface": "サラリー", + "readging": "サラリー", + "pos": "名詞", + "pn": -0.436201 + }, + { + "surface": "メタセコイア", + "readging": "メタセコイア", + "pos": "名詞", + "pn": -0.436209 + }, + { + "surface": "畚", + "readging": "ふご", + "pos": "名詞", + "pn": -0.436219 + }, + { + "surface": "水書", + "readging": "すいしょ", + "pos": "名詞", + "pn": -0.43623 + }, + { + "surface": "お年玉", + "readging": "おとしだま", + "pos": "名詞", + "pn": -0.436241 + }, + { + "surface": "輪飾り", + "readging": "わかざり", + "pos": "名詞", + "pn": -0.436268 + }, + { + "surface": "宿す", + "readging": "やどす", + "pos": "動詞", + "pn": -0.436271 + }, + { + "surface": "繁忙", + "readging": "はんぼう", + "pos": "名詞", + "pn": -0.436332 + }, + { + "surface": "歌口", + "readging": "うたぐち", + "pos": "名詞", + "pn": -0.43635 + }, + { + "surface": "野武士", + "readging": "のぶし", + "pos": "名詞", + "pn": -0.436353 + }, + { + "surface": "不履行", + "readging": "ふりこう", + "pos": "名詞", + "pn": -0.436366 + }, + { + "surface": "苫", + "readging": "とま", + "pos": "名詞", + "pn": -0.43638 + }, + { + "surface": "ウインク", + "readging": "ウインク", + "pos": "名詞", + "pn": -0.436388 + }, + { + "surface": "積木", + "readging": "つみき", + "pos": "名詞", + "pn": -0.436416 + }, + { + "surface": "居合", + "readging": "いあい", + "pos": "名詞", + "pn": -0.436419 + }, + { + "surface": "暮秋", + "readging": "ぼしゅう", + "pos": "名詞", + "pn": -0.436427 + }, + { + "surface": "先人", + "readging": "せんじん", + "pos": "名詞", + "pn": -0.436452 + }, + { + "surface": "飽かす", + "readging": "あかす", + "pos": "動詞", + "pn": -0.436453 + }, + { + "surface": "帯剣", + "readging": "たいけん", + "pos": "名詞", + "pn": -0.436457 + }, + { + "surface": "扮装", + "readging": "ふんそう", + "pos": "名詞", + "pn": -0.436465 + }, + { + "surface": "俵", + "readging": "たわら", + "pos": "名詞", + "pn": -0.436468 + }, + { + "surface": "熱唱", + "readging": "ねっしょう", + "pos": "名詞", + "pn": -0.436478 + }, + { + "surface": "包", + "readging": "つつみ", + "pos": "名詞", + "pn": -0.436488 + }, + { + "surface": "目算", + "readging": "もくさん", + "pos": "名詞", + "pn": -0.436508 + }, + { + "surface": "トリコット", + "readging": "トリコット", + "pos": "名詞", + "pn": -0.436509 + }, + { + "surface": "小使", + "readging": "こづかい", + "pos": "名詞", + "pn": -0.436521 + }, + { + "surface": "虚貝", + "readging": "うつせがい", + "pos": "名詞", + "pn": -0.436548 + }, + { + "surface": "小商い", + "readging": "こあきない", + "pos": "名詞", + "pn": -0.436552 + }, + { + "surface": "埋木", + "readging": "うめき", + "pos": "名詞", + "pn": -0.436558 + }, + { + "surface": "一瓢", + "readging": "いっぴょう", + "pos": "名詞", + "pn": -0.43656 + }, + { + "surface": "給金", + "readging": "きゅうきん", + "pos": "名詞", + "pn": -0.436563 + }, + { + "surface": "糸底", + "readging": "いとぞこ", + "pos": "名詞", + "pn": -0.436567 + }, + { + "surface": "題材", + "readging": "だいざい", + "pos": "名詞", + "pn": -0.4366 + }, + { + "surface": "俯ける", + "readging": "うつむける", + "pos": "動詞", + "pn": -0.436601 + }, + { + "surface": "調合", + "readging": "ちょうごう", + "pos": "名詞", + "pn": -0.436612 + }, + { + "surface": "湯玉", + "readging": "ゆだま", + "pos": "名詞", + "pn": -0.436619 + }, + { + "surface": "眉根", + "readging": "まゆね", + "pos": "名詞", + "pn": -0.436619 + }, + { + "surface": "払暁", + "readging": "ふつぎょう", + "pos": "名詞", + "pn": -0.436663 + }, + { + "surface": "カルデラ", + "readging": "カルデラ", + "pos": "名詞", + "pn": -0.436669 + }, + { + "surface": "忍びない", + "readging": "しのびない", + "pos": "形容詞", + "pn": -0.436669 + }, + { + "surface": "轆轤鉋", + "readging": "ろくろがな", + "pos": "名詞", + "pn": -0.436681 + }, + { + "surface": "咫尺", + "readging": "しせき", + "pos": "名詞", + "pn": -0.436709 + }, + { + "surface": "弓張提灯", + "readging": "ゆみはりぢょうちん", + "pos": "名詞", + "pn": -0.436711 + }, + { + "surface": "櫛比", + "readging": "しっぴ", + "pos": "名詞", + "pn": -0.436715 + }, + { + "surface": "島陰", + "readging": "しまかげ", + "pos": "名詞", + "pn": -0.436725 + }, + { + "surface": "罫書", + "readging": "けがき", + "pos": "名詞", + "pn": -0.43673 + }, + { + "surface": "様", + "readging": "よう", + "pos": "名詞", + "pn": -0.436776 + }, + { + "surface": "さらい", + "readging": "さらい", + "pos": "名詞", + "pn": -0.436784 + }, + { + "surface": "延期", + "readging": "えんき", + "pos": "名詞", + "pn": -0.436813 + }, + { + "surface": "手工芸", + "readging": "しゅこうげい", + "pos": "名詞", + "pn": -0.436815 + }, + { + "surface": "燕麦", + "readging": "えんばく", + "pos": "名詞", + "pn": -0.436845 + }, + { + "surface": "イ音便", + "readging": "いおんびん", + "pos": "名詞", + "pn": -0.436855 + }, + { + "surface": "単行", + "readging": "たんこう", + "pos": "名詞", + "pn": -0.436881 + }, + { + "surface": "徴収", + "readging": "ちょうしゅう", + "pos": "名詞", + "pn": -0.436902 + }, + { + "surface": "続報", + "readging": "ぞくほう", + "pos": "名詞", + "pn": -0.436929 + }, + { + "surface": "塗りたくる", + "readging": "ぬりたくる", + "pos": "動詞", + "pn": -0.436937 + }, + { + "surface": "順に", + "readging": "じゅんに", + "pos": "副詞", + "pn": -0.436954 + }, + { + "surface": "請求", + "readging": "せいきゅう", + "pos": "名詞", + "pn": -0.436959 + }, + { + "surface": "灯船", + "readging": "とうせん", + "pos": "名詞", + "pn": -0.436962 + }, + { + "surface": "正方形", + "readging": "せいほうけい", + "pos": "名詞", + "pn": -0.436964 + }, + { + "surface": "飯蛸", + "readging": "いいだこ", + "pos": "名詞", + "pn": -0.436979 + }, + { + "surface": "行当り", + "readging": "ゆきあたり", + "pos": "名詞", + "pn": -0.43699 + }, + { + "surface": "雇用", + "readging": "こよう", + "pos": "名詞", + "pn": -0.437002 + }, + { + "surface": "手控える", + "readging": "てびかえる", + "pos": "動詞", + "pn": -0.437003 + }, + { + "surface": "板ガラス", + "readging": "いたガラス", + "pos": "名詞", + "pn": -0.437007 + }, + { + "surface": "ベークライト", + "readging": "ベークライト", + "pos": "名詞", + "pn": -0.437014 + }, + { + "surface": "操", + "readging": "みさお", + "pos": "名詞", + "pn": -0.437027 + }, + { + "surface": "食料品", + "readging": "しょくりょうひん", + "pos": "名詞", + "pn": -0.437028 + }, + { + "surface": "替手", + "readging": "かえて", + "pos": "名詞", + "pn": -0.43704 + }, + { + "surface": "夜", + "readging": "や", + "pos": "名詞", + "pn": -0.437052 + }, + { + "surface": "よちよち", + "readging": "よちよち", + "pos": "副詞", + "pn": -0.437065 + }, + { + "surface": "でれっと", + "readging": "でれっと", + "pos": "副詞", + "pn": -0.437094 + }, + { + "surface": "茶代", + "readging": "ちゃだい", + "pos": "名詞", + "pn": -0.437094 + }, + { + "surface": "逆巻く", + "readging": "さかまく", + "pos": "動詞", + "pn": -0.437099 + }, + { + "surface": "余情", + "readging": "よじょう", + "pos": "名詞", + "pn": -0.43711 + }, + { + "surface": "ぺけ", + "readging": "ぺけ", + "pos": "名詞", + "pn": -0.437149 + }, + { + "surface": "是非", + "readging": "ぜひ", + "pos": "名詞", + "pn": -0.437186 + }, + { + "surface": "初期", + "readging": "しょき", + "pos": "名詞", + "pn": -0.437189 + }, + { + "surface": "例月", + "readging": "れいげつ", + "pos": "名詞", + "pn": -0.437197 + }, + { + "surface": "トマト", + "readging": "トマトケチャップ", + "pos": "名詞", + "pn": -0.437199 + }, + { + "surface": "柿色", + "readging": "かきいろ", + "pos": "名詞", + "pn": -0.437213 + }, + { + "surface": "巻起す", + "readging": "まきおこす", + "pos": "動詞", + "pn": -0.437227 + }, + { + "surface": "雪庇", + "readging": "せっぴ", + "pos": "名詞", + "pn": -0.437228 + }, + { + "surface": "婿入り", + "readging": "むこいり", + "pos": "名詞", + "pn": -0.437244 + }, + { + "surface": "番頭", + "readging": "ばんとう", + "pos": "名詞", + "pn": -0.437251 + }, + { + "surface": "ストロー", + "readging": "ストロー", + "pos": "名詞", + "pn": -0.437278 + }, + { + "surface": "飾り職", + "readging": "かざりしょく", + "pos": "名詞", + "pn": -0.437284 + }, + { + "surface": "事訳", + "readging": "ことわけ", + "pos": "名詞", + "pn": -0.437298 + }, + { + "surface": "受け口", + "readging": "うけぐち", + "pos": "名詞", + "pn": -0.437302 + }, + { + "surface": "半搗", + "readging": "はんつき", + "pos": "名詞", + "pn": -0.43731 + }, + { + "surface": "船主", + "readging": "ふなぬし", + "pos": "名詞", + "pn": -0.437348 + }, + { + "surface": "火打金", + "readging": "ひうちがね", + "pos": "名詞", + "pn": -0.437354 + }, + { + "surface": "鳶職", + "readging": "とびしょく", + "pos": "名詞", + "pn": -0.437362 + }, + { + "surface": "大気", + "readging": "たいき", + "pos": "名詞", + "pn": -0.437387 + }, + { + "surface": "刈株", + "readging": "かりかぶ", + "pos": "名詞", + "pn": -0.4374 + }, + { + "surface": "森", + "readging": "しん", + "pos": "名詞", + "pn": -0.437401 + }, + { + "surface": "後手", + "readging": "うしろで", + "pos": "名詞", + "pn": -0.437418 + }, + { + "surface": "あげつらう", + "readging": "あげつらう", + "pos": "動詞", + "pn": -0.437418 + }, + { + "surface": "洋菓子", + "readging": "ようがし", + "pos": "名詞", + "pn": -0.437428 + }, + { + "surface": "演出", + "readging": "えんしゅつ", + "pos": "名詞", + "pn": -0.437433 + }, + { + "surface": "繋辞", + "readging": "けいじ", + "pos": "名詞", + "pn": -0.437456 + }, + { + "surface": "叩き起す", + "readging": "たたきおこす", + "pos": "動詞", + "pn": -0.437463 + }, + { + "surface": "御霊屋", + "readging": "おたまや", + "pos": "名詞", + "pn": -0.437466 + }, + { + "surface": "包丁", + "readging": "ほうちょう", + "pos": "名詞", + "pn": -0.437472 + }, + { + "surface": "微衷", + "readging": "びちゅう", + "pos": "名詞", + "pn": -0.4375 + }, + { + "surface": "書記", + "readging": "しょき", + "pos": "名詞", + "pn": -0.437508 + }, + { + "surface": "如雨露", + "readging": "じょうろ", + "pos": "名詞", + "pn": -0.437509 + }, + { + "surface": "利け者", + "readging": "きけもの", + "pos": "名詞", + "pn": -0.437511 + }, + { + "surface": "主脈", + "readging": "しゅみゃく", + "pos": "名詞", + "pn": -0.437518 + }, + { + "surface": "あっぱっぱ", + "readging": "あっぱっぱ", + "pos": "名詞", + "pn": -0.437532 + }, + { + "surface": "末", + "readging": "うれ", + "pos": "名詞", + "pn": -0.437535 + }, + { + "surface": "千鳥掛", + "readging": "ちどりがけ", + "pos": "名詞", + "pn": -0.437544 + }, + { + "surface": "周波数", + "readging": "しゅうはすう", + "pos": "名詞", + "pn": -0.437546 + }, + { + "surface": "虎鶫", + "readging": "とらつぐみ", + "pos": "名詞", + "pn": -0.437554 + }, + { + "surface": "邪法", + "readging": "じゃほう", + "pos": "名詞", + "pn": -0.437578 + }, + { + "surface": "船床", + "readging": "ふなどこ", + "pos": "名詞", + "pn": -0.43758 + }, + { + "surface": "支柱", + "readging": "しちゅう", + "pos": "名詞", + "pn": -0.437616 + }, + { + "surface": "シェード", + "readging": "シェード", + "pos": "名詞", + "pn": -0.437619 + }, + { + "surface": "雲煙縹緲", + "readging": "うんえんひょうびょう", + "pos": "名詞", + "pn": -0.43762 + }, + { + "surface": "亜低木", + "readging": "あていぼく", + "pos": "名詞", + "pn": -0.437636 + }, + { + "surface": "黙する", + "readging": "もくする", + "pos": "動詞", + "pn": -0.437637 + }, + { + "surface": "クラッチ", + "readging": "クラッチ", + "pos": "名詞", + "pn": -0.437658 + }, + { + "surface": "編笠", + "readging": "あみがさ", + "pos": "名詞", + "pn": -0.437663 + }, + { + "surface": "ずり上がる", + "readging": "ずりあがる", + "pos": "動詞", + "pn": -0.437663 + }, + { + "surface": "飛降りる", + "readging": "とびおりる", + "pos": "動詞", + "pn": -0.437672 + }, + { + "surface": "外見", + "readging": "がいけん", + "pos": "名詞", + "pn": -0.437677 + }, + { + "surface": "吹掛ける", + "readging": "ふきかける", + "pos": "動詞", + "pn": -0.437679 + }, + { + "surface": "据膳", + "readging": "すえぜん", + "pos": "名詞", + "pn": -0.437683 + }, + { + "surface": "逃げ場", + "readging": "にげば", + "pos": "名詞", + "pn": -0.437687 + }, + { + "surface": "炊出し", + "readging": "たきだし", + "pos": "名詞", + "pn": -0.437693 + }, + { + "surface": "独吟", + "readging": "どくぎん", + "pos": "名詞", + "pn": -0.437697 + }, + { + "surface": "レコード", + "readging": "レコード", + "pos": "名詞", + "pn": -0.437721 + }, + { + "surface": "箱入り", + "readging": "はこいり", + "pos": "名詞", + "pn": -0.43773 + }, + { + "surface": "久しい", + "readging": "ひさしい", + "pos": "形容詞", + "pn": -0.437742 + }, + { + "surface": "種油", + "readging": "たねあぶら", + "pos": "名詞", + "pn": -0.437777 + }, + { + "surface": "あやす", + "readging": "あやす", + "pos": "動詞", + "pn": -0.4378 + }, + { + "surface": "シャイ", + "readging": "シャイ", + "pos": "名詞", + "pn": -0.437811 + }, + { + "surface": "課程", + "readging": "かてい", + "pos": "名詞", + "pn": -0.437813 + }, + { + "surface": "上目", + "readging": "うわめ", + "pos": "名詞", + "pn": -0.437821 + }, + { + "surface": "山椒魚", + "readging": "さんしょううお", + "pos": "名詞", + "pn": -0.437822 + }, + { + "surface": "小降り", + "readging": "こぶり", + "pos": "名詞", + "pn": -0.437903 + }, + { + "surface": "手職", + "readging": "てじょく", + "pos": "名詞", + "pn": -0.43791 + }, + { + "surface": "パスタ", + "readging": "パスタ", + "pos": "名詞", + "pn": -0.437917 + }, + { + "surface": "花崗岩", + "readging": "かこうがん", + "pos": "名詞", + "pn": -0.437918 + }, + { + "surface": "山鳩", + "readging": "やまばと", + "pos": "名詞", + "pn": -0.437919 + }, + { + "surface": "面舵", + "readging": "おもかじ", + "pos": "名詞", + "pn": -0.437922 + }, + { + "surface": "契", + "readging": "けい", + "pos": "名詞", + "pn": -0.437926 + }, + { + "surface": "誘導体", + "readging": "ゆうどうたい", + "pos": "名詞", + "pn": -0.437955 + }, + { + "surface": "款", + "readging": "かん", + "pos": "名詞", + "pn": -0.437958 + }, + { + "surface": "行年", + "readging": "こうねん", + "pos": "名詞", + "pn": -0.437969 + }, + { + "surface": "笹掻き", + "readging": "ささがき", + "pos": "名詞", + "pn": -0.437984 + }, + { + "surface": "ムッシュー", + "readging": "ムッシュー", + "pos": "名詞", + "pn": -0.437987 + }, + { + "surface": "ぴんと", + "readging": "ぴんと", + "pos": "副詞", + "pn": -0.437995 + }, + { + "surface": "被る", + "readging": "かぶる", + "pos": "動詞", + "pn": -0.437999 + }, + { + "surface": "紙衾", + "readging": "かみぶすま", + "pos": "名詞", + "pn": -0.438017 + }, + { + "surface": "振りかぶる", + "readging": "ふりかぶる", + "pos": "動詞", + "pn": -0.438099 + }, + { + "surface": "遊芸", + "readging": "ゆうげい", + "pos": "名詞", + "pn": -0.438118 + }, + { + "surface": "明夜", + "readging": "みょうや", + "pos": "名詞", + "pn": -0.438132 + }, + { + "surface": "折折", + "readging": "おりおり", + "pos": "名詞", + "pn": -0.438145 + }, + { + "surface": "気嚢", + "readging": "きのう", + "pos": "名詞", + "pn": -0.438171 + }, + { + "surface": "一夕", + "readging": "いっせき", + "pos": "名詞", + "pn": -0.438182 + }, + { + "surface": "借上げ", + "readging": "かりあげ", + "pos": "名詞", + "pn": -0.438201 + }, + { + "surface": "ガソリン", + "readging": "ガソリンスタンド", + "pos": "名詞", + "pn": -0.438224 + }, + { + "surface": "凍瘡", + "readging": "とうそう", + "pos": "名詞", + "pn": -0.438237 + }, + { + "surface": "面構え", + "readging": "つらがまえ", + "pos": "名詞", + "pn": -0.438245 + }, + { + "surface": "剣戟", + "readging": "けんげき", + "pos": "名詞", + "pn": -0.438266 + }, + { + "surface": "研ぎ物", + "readging": "とぎもの", + "pos": "名詞", + "pn": -0.438285 + }, + { + "surface": "トレーシング ペーパー", + "readging": "トレーシング ペーパー", + "pos": "名詞", + "pn": -0.438299 + }, + { + "surface": "省略", + "readging": "しょうりゃく", + "pos": "名詞", + "pn": -0.438309 + }, + { + "surface": "解剖", + "readging": "かいぼう", + "pos": "名詞", + "pn": -0.438312 + }, + { + "surface": "万灯会", + "readging": "まんどうえ", + "pos": "名詞", + "pn": -0.438318 + }, + { + "surface": "強力犯", + "readging": "ごうりきはん", + "pos": "名詞", + "pn": -0.43833 + }, + { + "surface": "循環器", + "readging": "じゅんかんき", + "pos": "名詞", + "pn": -0.438335 + }, + { + "surface": "役職", + "readging": "やくしょく", + "pos": "名詞", + "pn": -0.438339 + }, + { + "surface": "星回り", + "readging": "ほしまわり", + "pos": "名詞", + "pn": -0.438346 + }, + { + "surface": "千三つ", + "readging": "せんみつ", + "pos": "名詞", + "pn": -0.438367 + }, + { + "surface": "多極化", + "readging": "たきょくか", + "pos": "名詞", + "pn": -0.438373 + }, + { + "surface": "あんぜん", + "readging": "あんぜんピン", + "pos": "名詞", + "pn": -0.438393 + }, + { + "surface": "殿様蛙", + "readging": "とのさまがえる", + "pos": "名詞", + "pn": -0.438401 + }, + { + "surface": "図様", + "readging": "ずよう", + "pos": "名詞", + "pn": -0.438402 + }, + { + "surface": "度肝", + "readging": "どぎも", + "pos": "名詞", + "pn": -0.438408 + }, + { + "surface": "シリンダー", + "readging": "シリンダー", + "pos": "名詞", + "pn": -0.438408 + }, + { + "surface": "割当てる", + "readging": "わりあてる", + "pos": "動詞", + "pn": -0.438419 + }, + { + "surface": "振り方", + "readging": "ふりかた", + "pos": "名詞", + "pn": -0.438423 + }, + { + "surface": "矯激", + "readging": "きょうげき", + "pos": "名詞", + "pn": -0.438424 + }, + { + "surface": "鱸", + "readging": "すずき", + "pos": "名詞", + "pn": -0.438438 + }, + { + "surface": "画室", + "readging": "がしつ", + "pos": "名詞", + "pn": -0.438444 + }, + { + "surface": "間者", + "readging": "かんじゃ", + "pos": "名詞", + "pn": -0.438467 + }, + { + "surface": "引切り無し", + "readging": "ひっきりなし", + "pos": "名詞", + "pn": -0.438468 + }, + { + "surface": "遺贈", + "readging": "いぞう", + "pos": "名詞", + "pn": -0.438473 + }, + { + "surface": "支脈", + "readging": "しみゃく", + "pos": "名詞", + "pn": -0.438484 + }, + { + "surface": "揮毫", + "readging": "きごう", + "pos": "名詞", + "pn": -0.438501 + }, + { + "surface": "武装", + "readging": "ぶそう", + "pos": "名詞", + "pn": -0.43852 + }, + { + "surface": "影", + "readging": "えい", + "pos": "名詞", + "pn": -0.438531 + }, + { + "surface": "清白", + "readging": "すずしろ", + "pos": "名詞", + "pn": -0.438562 + }, + { + "surface": "酒槽", + "readging": "さかぶね", + "pos": "名詞", + "pn": -0.438574 + }, + { + "surface": "暖める", + "readging": "あたためる", + "pos": "動詞", + "pn": -0.438586 + }, + { + "surface": "金", + "readging": "かね", + "pos": "名詞", + "pn": -0.438599 + }, + { + "surface": "閨", + "readging": "けい", + "pos": "名詞", + "pn": -0.438609 + }, + { + "surface": "コカイン", + "readging": "コカイン", + "pos": "名詞", + "pn": -0.438614 + }, + { + "surface": "柴笛", + "readging": "しばぶえ", + "pos": "名詞", + "pn": -0.438618 + }, + { + "surface": "日の出", + "readging": "ひので", + "pos": "名詞", + "pn": -0.438628 + }, + { + "surface": "クロス", + "readging": "クロスカントリー", + "pos": "名詞", + "pn": -0.438631 + }, + { + "surface": "買受ける", + "readging": "かいうける", + "pos": "動詞", + "pn": -0.438655 + }, + { + "surface": "虎", + "readging": "こ", + "pos": "名詞", + "pn": -0.438664 + }, + { + "surface": "雷獣", + "readging": "らいじゅう", + "pos": "名詞", + "pn": -0.438667 + }, + { + "surface": "翻意", + "readging": "ほんい", + "pos": "名詞", + "pn": -0.438674 + }, + { + "surface": "免ずる", + "readging": "めんずる", + "pos": "動詞", + "pn": -0.438677 + }, + { + "surface": "十方", + "readging": "じっぽう", + "pos": "名詞", + "pn": -0.438697 + }, + { + "surface": "回帰", + "readging": "かいき", + "pos": "名詞", + "pn": -0.438712 + }, + { + "surface": "三葉", + "readging": "みつば", + "pos": "名詞", + "pn": -0.43872 + }, + { + "surface": "細腕", + "readging": "ほそうで", + "pos": "名詞", + "pn": -0.438721 + }, + { + "surface": "一転機", + "readging": "いってんき", + "pos": "名詞", + "pn": -0.438739 + }, + { + "surface": "エンゼル", + "readging": "エンゼルフィッシュ", + "pos": "名詞", + "pn": -0.438745 + }, + { + "surface": "ひゆ", + "readging": "ひゆ", + "pos": "名詞", + "pn": -0.438755 + }, + { + "surface": "当日", + "readging": "とうじつ", + "pos": "名詞", + "pn": -0.438766 + }, + { + "surface": "年波", + "readging": "としなみ", + "pos": "名詞", + "pn": -0.438768 + }, + { + "surface": "シュノーケル", + "readging": "シュノーケル", + "pos": "名詞", + "pn": -0.438787 + }, + { + "surface": "瘧", + "readging": "おこり", + "pos": "名詞", + "pn": -0.438831 + }, + { + "surface": "軽震", + "readging": "けいしん", + "pos": "名詞", + "pn": -0.438834 + }, + { + "surface": "田舎", + "readging": "いなか", + "pos": "名詞", + "pn": -0.438839 + }, + { + "surface": "造", + "readging": "みやつこ", + "pos": "名詞", + "pn": -0.438847 + }, + { + "surface": "土牢", + "readging": "つちろう", + "pos": "名詞", + "pn": -0.438855 + }, + { + "surface": "憲法", + "readging": "けんぽう", + "pos": "名詞", + "pn": -0.438869 + }, + { + "surface": "動輪", + "readging": "どうりん", + "pos": "名詞", + "pn": -0.438886 + }, + { + "surface": "握らせる", + "readging": "にぎらせる", + "pos": "動詞", + "pn": -0.438892 + }, + { + "surface": "パフォーマンス", + "readging": "パフォーマンス", + "pos": "名詞", + "pn": -0.438899 + }, + { + "surface": "機業", + "readging": "きぎょう", + "pos": "名詞", + "pn": -0.438901 + }, + { + "surface": "剣が峰", + "readging": "けんがみね", + "pos": "名詞", + "pn": -0.438922 + }, + { + "surface": "口話", + "readging": "こうわ", + "pos": "名詞", + "pn": -0.438946 + }, + { + "surface": "櫛笥", + "readging": "くしげ", + "pos": "名詞", + "pn": -0.438968 + }, + { + "surface": "市", + "readging": "し", + "pos": "名詞", + "pn": -0.438972 + }, + { + "surface": "炭掻き", + "readging": "すみかき", + "pos": "名詞", + "pn": -0.438979 + }, + { + "surface": "襖", + "readging": "ふすま", + "pos": "名詞", + "pn": -0.438992 + }, + { + "surface": "錦旗", + "readging": "きんき", + "pos": "名詞", + "pn": -0.439006 + }, + { + "surface": "身辺", + "readging": "しんぺん", + "pos": "名詞", + "pn": -0.439024 + }, + { + "surface": "鉤針", + "readging": "かぎばり", + "pos": "名詞", + "pn": -0.439033 + }, + { + "surface": "餞別", + "readging": "せんべつ", + "pos": "名詞", + "pn": -0.439034 + }, + { + "surface": "薬莢", + "readging": "やっきょう", + "pos": "名詞", + "pn": -0.439054 + }, + { + "surface": "雛人形", + "readging": "ひなにんぎょう", + "pos": "名詞", + "pn": -0.439088 + }, + { + "surface": "血沈", + "readging": "けっちん", + "pos": "名詞", + "pn": -0.439088 + }, + { + "surface": "鶯餅", + "readging": "うぐいすもち", + "pos": "名詞", + "pn": -0.439166 + }, + { + "surface": "空目", + "readging": "そらめ", + "pos": "名詞", + "pn": -0.439188 + }, + { + "surface": "乗合", + "readging": "のりあい", + "pos": "名詞", + "pn": -0.439193 + }, + { + "surface": "双眸", + "readging": "そうぼう", + "pos": "名詞", + "pn": -0.439194 + }, + { + "surface": "着地", + "readging": "ちゃくち", + "pos": "名詞", + "pn": -0.439204 + }, + { + "surface": "繰替える", + "readging": "くりかえる", + "pos": "動詞", + "pn": -0.439222 + }, + { + "surface": "船体", + "readging": "せんたい", + "pos": "名詞", + "pn": -0.439269 + }, + { + "surface": "紺紙金泥", + "readging": "こんしこんでい", + "pos": "名詞", + "pn": -0.43927 + }, + { + "surface": "ずぶ", + "readging": "ずぶ", + "pos": "名詞", + "pn": -0.439305 + }, + { + "surface": "糸杉", + "readging": "いとすぎ", + "pos": "名詞", + "pn": -0.439306 + }, + { + "surface": "閨房", + "readging": "けいぼう", + "pos": "名詞", + "pn": -0.43931 + }, + { + "surface": "軽装", + "readging": "けいそう", + "pos": "名詞", + "pn": -0.439315 + }, + { + "surface": "鰻", + "readging": "うなぎ", + "pos": "名詞", + "pn": -0.439327 + }, + { + "surface": "格子造り", + "readging": "こうしづくり", + "pos": "名詞", + "pn": -0.439335 + }, + { + "surface": "海蛇", + "readging": "うみへび", + "pos": "名詞", + "pn": -0.439335 + }, + { + "surface": "かねがね", + "readging": "かねがね", + "pos": "副詞", + "pn": -0.43934 + }, + { + "surface": "業者", + "readging": "ぎょうしゃ", + "pos": "名詞", + "pn": -0.439365 + }, + { + "surface": "人煙", + "readging": "じんえん", + "pos": "名詞", + "pn": -0.439372 + }, + { + "surface": "拝承", + "readging": "はいしょう", + "pos": "名詞", + "pn": -0.439404 + }, + { + "surface": "売卜", + "readging": "ばいぼく", + "pos": "名詞", + "pn": -0.439408 + }, + { + "surface": "雛壇", + "readging": "ひなだん", + "pos": "名詞", + "pn": -0.439426 + }, + { + "surface": "艇庫", + "readging": "ていこ", + "pos": "名詞", + "pn": -0.439432 + }, + { + "surface": "引見", + "readging": "いんけん", + "pos": "名詞", + "pn": -0.439436 + }, + { + "surface": "溶解", + "readging": "ようかい", + "pos": "名詞", + "pn": -0.439439 + }, + { + "surface": "灼熱", + "readging": "しゃくねつ", + "pos": "名詞", + "pn": -0.439446 + }, + { + "surface": "救出", + "readging": "きゅうしゅつ", + "pos": "名詞", + "pn": -0.439489 + }, + { + "surface": "減石", + "readging": "げんこく", + "pos": "名詞", + "pn": -0.43951 + }, + { + "surface": "周年", + "readging": "しゅうねん", + "pos": "名詞", + "pn": -0.439541 + }, + { + "surface": "嫁菜", + "readging": "よめな", + "pos": "名詞", + "pn": -0.439546 + }, + { + "surface": "躁鬱病", + "readging": "そううつびょう", + "pos": "名詞", + "pn": -0.43955 + }, + { + "surface": "判事", + "readging": "はんじ", + "pos": "名詞", + "pn": -0.439573 + }, + { + "surface": "さん付け", + "readging": "さんづけ", + "pos": "名詞", + "pn": -0.439583 + }, + { + "surface": "地引", + "readging": "じびき", + "pos": "名詞", + "pn": -0.439592 + }, + { + "surface": "親知らず", + "readging": "おやしらず", + "pos": "名詞", + "pn": -0.439611 + }, + { + "surface": "ルパシカ", + "readging": "ルパシカ", + "pos": "名詞", + "pn": -0.439623 + }, + { + "surface": "事新しい", + "readging": "ことあたらしい", + "pos": "形容詞", + "pn": -0.43963 + }, + { + "surface": "女", + "readging": "じょ", + "pos": "名詞", + "pn": -0.439634 + }, + { + "surface": "小知", + "readging": "しょうち", + "pos": "名詞", + "pn": -0.439659 + }, + { + "surface": "パーマ", + "readging": "パーマ", + "pos": "名詞", + "pn": -0.439666 + }, + { + "surface": "里人", + "readging": "さとびと", + "pos": "名詞", + "pn": -0.439667 + }, + { + "surface": "引立てる", + "readging": "ひきたてる", + "pos": "動詞", + "pn": -0.439683 + }, + { + "surface": "ドーナツ", + "readging": "ドーナツ", + "pos": "名詞", + "pn": -0.439685 + }, + { + "surface": "徒歩", + "readging": "とほ", + "pos": "名詞", + "pn": -0.439695 + }, + { + "surface": "雅文", + "readging": "がぶん", + "pos": "名詞", + "pn": -0.439695 + }, + { + "surface": "舷灯", + "readging": "げんとう", + "pos": "名詞", + "pn": -0.439707 + }, + { + "surface": "トレンチ コート", + "readging": "トレンチ コート", + "pos": "名詞", + "pn": -0.439716 + }, + { + "surface": "襟巻", + "readging": "えりまき", + "pos": "名詞", + "pn": -0.439726 + }, + { + "surface": "雑品", + "readging": "ざっぴん", + "pos": "名詞", + "pn": -0.439742 + }, + { + "surface": "燐光", + "readging": "りんこう", + "pos": "名詞", + "pn": -0.439766 + }, + { + "surface": "地相", + "readging": "ちそう", + "pos": "名詞", + "pn": -0.43977 + }, + { + "surface": "沢瀉", + "readging": "おもだか", + "pos": "名詞", + "pn": -0.439772 + }, + { + "surface": "赤熊", + "readging": "しゃぐま", + "pos": "名詞", + "pn": -0.439779 + }, + { + "surface": "頤使", + "readging": "いし", + "pos": "名詞", + "pn": -0.439783 + }, + { + "surface": "流血", + "readging": "りゅうけつ", + "pos": "名詞", + "pn": -0.439811 + }, + { + "surface": "芍薬", + "readging": "しゃくやく", + "pos": "名詞", + "pn": -0.439849 + }, + { + "surface": "化けの皮", + "readging": "ばけのかわ", + "pos": "名詞", + "pn": -0.439851 + }, + { + "surface": "閑居", + "readging": "かんきょ", + "pos": "名詞", + "pn": -0.439852 + }, + { + "surface": "ウーステッド", + "readging": "ウーステッド", + "pos": "名詞", + "pn": -0.439869 + }, + { + "surface": "離農", + "readging": "りのう", + "pos": "名詞", + "pn": -0.439875 + }, + { + "surface": "同行", + "readging": "どうぎょう", + "pos": "名詞", + "pn": -0.439879 + }, + { + "surface": "遁世", + "readging": "とんせい", + "pos": "名詞", + "pn": -0.439886 + }, + { + "surface": "魚雷", + "readging": "ぎょらい", + "pos": "名詞", + "pn": -0.439921 + }, + { + "surface": "チーク ダンス", + "readging": "チーク ダンス", + "pos": "名詞", + "pn": -0.439924 + }, + { + "surface": "上聞", + "readging": "じょうぶん", + "pos": "名詞", + "pn": -0.439925 + }, + { + "surface": "交換", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.439935 + }, + { + "surface": "欠字", + "readging": "けつじ", + "pos": "名詞", + "pn": -0.439952 + }, + { + "surface": "深爪", + "readging": "ふかづめ", + "pos": "名詞", + "pn": -0.439959 + }, + { + "surface": "レモン", + "readging": "レモンティー", + "pos": "名詞", + "pn": -0.439962 + }, + { + "surface": "電圧", + "readging": "でんあつ", + "pos": "名詞", + "pn": -0.439968 + }, + { + "surface": "セクショナリズム", + "readging": "セクショナリズム", + "pos": "名詞", + "pn": -0.439979 + }, + { + "surface": "和綴", + "readging": "わとじ", + "pos": "名詞", + "pn": -0.43998 + }, + { + "surface": "塩", + "readging": "えん", + "pos": "名詞", + "pn": -0.439991 + }, + { + "surface": "雲霧", + "readging": "うんむ", + "pos": "名詞", + "pn": -0.44 + }, + { + "surface": "作り事", + "readging": "つくりごと", + "pos": "名詞", + "pn": -0.440005 + }, + { + "surface": "ぼとぼと", + "readging": "ぼとぼと", + "pos": "副詞", + "pn": -0.44002 + }, + { + "surface": "形像", + "readging": "けいぞう", + "pos": "名詞", + "pn": -0.440023 + }, + { + "surface": "両虎", + "readging": "りょうこ", + "pos": "名詞", + "pn": -0.440024 + }, + { + "surface": "ゆらゆら", + "readging": "ゆらゆら", + "pos": "副詞", + "pn": -0.440027 + }, + { + "surface": "首の座", + "readging": "くびのざ", + "pos": "名詞", + "pn": -0.440037 + }, + { + "surface": "尨毛", + "readging": "むくげ", + "pos": "名詞", + "pn": -0.440045 + }, + { + "surface": "言行", + "readging": "げんこう", + "pos": "名詞", + "pn": -0.440046 + }, + { + "surface": "御膳", + "readging": "ごぜん", + "pos": "名詞", + "pn": -0.440058 + }, + { + "surface": "妻戸", + "readging": "つまど", + "pos": "名詞", + "pn": -0.440073 + }, + { + "surface": "腹壁", + "readging": "ふくへき", + "pos": "名詞", + "pn": -0.440097 + }, + { + "surface": "訳", + "readging": "やく", + "pos": "名詞", + "pn": -0.4401 + }, + { + "surface": "教える", + "readging": "おしえる", + "pos": "動詞", + "pn": -0.440103 + }, + { + "surface": "稠密", + "readging": "ちゅうみつ", + "pos": "名詞", + "pn": -0.440107 + }, + { + "surface": "延髄", + "readging": "えんずい", + "pos": "名詞", + "pn": -0.440114 + }, + { + "surface": "付則", + "readging": "ふそく", + "pos": "名詞", + "pn": -0.440126 + }, + { + "surface": "高麗鼠", + "readging": "こまねずみ", + "pos": "名詞", + "pn": -0.44013 + }, + { + "surface": "防火", + "readging": "ぼうか", + "pos": "名詞", + "pn": -0.440143 + }, + { + "surface": "柱頭", + "readging": "ちゅうとう", + "pos": "名詞", + "pn": -0.440171 + }, + { + "surface": "回章", + "readging": "かいしょう", + "pos": "名詞", + "pn": -0.440171 + }, + { + "surface": "裄", + "readging": "ゆき", + "pos": "名詞", + "pn": -0.440177 + }, + { + "surface": "アレルギー", + "readging": "アレルギー", + "pos": "名詞", + "pn": -0.440218 + }, + { + "surface": "混在", + "readging": "こんざい", + "pos": "名詞", + "pn": -0.440219 + }, + { + "surface": "逗留", + "readging": "とうりゅう", + "pos": "名詞", + "pn": -0.440222 + }, + { + "surface": "風鈴", + "readging": "ふうりん", + "pos": "名詞", + "pn": -0.440241 + }, + { + "surface": "豪華", + "readging": "ごうか", + "pos": "名詞", + "pn": -0.440256 + }, + { + "surface": "乾留", + "readging": "かんりゅう", + "pos": "名詞", + "pn": -0.440287 + }, + { + "surface": "警手", + "readging": "けいしゅ", + "pos": "名詞", + "pn": -0.440288 + }, + { + "surface": "合同", + "readging": "ごうどう", + "pos": "名詞", + "pn": -0.44029 + }, + { + "surface": "標記", + "readging": "ひょうき", + "pos": "名詞", + "pn": -0.440294 + }, + { + "surface": "寂する", + "readging": "じゃくする", + "pos": "動詞", + "pn": -0.440332 + }, + { + "surface": "胴巻", + "readging": "どうまき", + "pos": "名詞", + "pn": -0.44034 + }, + { + "surface": "三化螟虫", + "readging": "さんかめいちゅう", + "pos": "名詞", + "pn": -0.440354 + }, + { + "surface": "山詞", + "readging": "やまことば", + "pos": "名詞", + "pn": -0.440378 + }, + { + "surface": "金海鼠", + "readging": "きんこ", + "pos": "名詞", + "pn": -0.440381 + }, + { + "surface": "交喙", + "readging": "いすか", + "pos": "名詞", + "pn": -0.440382 + }, + { + "surface": "放吟", + "readging": "ほうぎん", + "pos": "名詞", + "pn": -0.440408 + }, + { + "surface": "主食", + "readging": "しゅしょく", + "pos": "名詞", + "pn": -0.440417 + }, + { + "surface": "増殖", + "readging": "ぞうしょく", + "pos": "名詞", + "pn": -0.440422 + }, + { + "surface": "狐拳", + "readging": "きつねけん", + "pos": "名詞", + "pn": -0.440476 + }, + { + "surface": "酢酸", + "readging": "さくさん", + "pos": "名詞", + "pn": -0.440477 + }, + { + "surface": "引っ込める", + "readging": "ひっこめる", + "pos": "動詞", + "pn": -0.44049 + }, + { + "surface": "あぶれ者", + "readging": "あぶれもの", + "pos": "名詞", + "pn": -0.440498 + }, + { + "surface": "掛字", + "readging": "かけじ", + "pos": "名詞", + "pn": -0.440499 + }, + { + "surface": "失明", + "readging": "しつめい", + "pos": "名詞", + "pn": -0.440506 + }, + { + "surface": "左翼", + "readging": "さよく", + "pos": "名詞", + "pn": -0.44053 + }, + { + "surface": "万難", + "readging": "ばんなん", + "pos": "名詞", + "pn": -0.440534 + }, + { + "surface": "延煙管", + "readging": "のべギセル", + "pos": "名詞", + "pn": -0.44054 + }, + { + "surface": "染物", + "readging": "そめもの", + "pos": "名詞", + "pn": -0.44056 + }, + { + "surface": "白壁", + "readging": "しらかべ", + "pos": "名詞", + "pn": -0.440599 + }, + { + "surface": "曲尺", + "readging": "まがりがね", + "pos": "名詞", + "pn": -0.440617 + }, + { + "surface": "幾日", + "readging": "いくか", + "pos": "名詞", + "pn": -0.440618 + }, + { + "surface": "猪首", + "readging": "いくび", + "pos": "名詞", + "pn": -0.440638 + }, + { + "surface": "タフタ", + "readging": "タフタ", + "pos": "名詞", + "pn": -0.440642 + }, + { + "surface": "古風", + "readging": "こふう", + "pos": "名詞", + "pn": -0.440657 + }, + { + "surface": "人力", + "readging": "じんりき", + "pos": "名詞", + "pn": -0.440662 + }, + { + "surface": "斜陽", + "readging": "しゃよう", + "pos": "名詞", + "pn": -0.440664 + }, + { + "surface": "棚機津女", + "readging": "たなばたつめ", + "pos": "名詞", + "pn": -0.440666 + }, + { + "surface": "烏帽子", + "readging": "えぼし", + "pos": "名詞", + "pn": -0.440676 + }, + { + "surface": "飛び飛び", + "readging": "とびとび", + "pos": "副詞", + "pn": -0.440706 + }, + { + "surface": "パウダー", + "readging": "パウダー", + "pos": "名詞", + "pn": -0.440719 + }, + { + "surface": "自壊", + "readging": "じかい", + "pos": "名詞", + "pn": -0.440732 + }, + { + "surface": "猿楽", + "readging": "さるがく", + "pos": "名詞", + "pn": -0.440747 + }, + { + "surface": "黄梅", + "readging": "おうばい", + "pos": "名詞", + "pn": -0.440752 + }, + { + "surface": "丁目", + "readging": "ちょうめ", + "pos": "名詞", + "pn": -0.440774 + }, + { + "surface": "焼売", + "readging": "シューマイ", + "pos": "名詞", + "pn": -0.440794 + }, + { + "surface": "卵嚢", + "readging": "らんのう", + "pos": "名詞", + "pn": -0.44083 + }, + { + "surface": "踏ん張る", + "readging": "ふんばる", + "pos": "動詞", + "pn": -0.440888 + }, + { + "surface": "雨具", + "readging": "あまぐ", + "pos": "名詞", + "pn": -0.440911 + }, + { + "surface": "ローズ", + "readging": "ローズ", + "pos": "名詞", + "pn": -0.440916 + }, + { + "surface": "竜の鬚", + "readging": "りゅうのひげ", + "pos": "名詞", + "pn": -0.440921 + }, + { + "surface": "流派", + "readging": "りゅうは", + "pos": "名詞", + "pn": -0.440922 + }, + { + "surface": "花霞", + "readging": "はながすみ", + "pos": "名詞", + "pn": -0.440949 + }, + { + "surface": "原頭", + "readging": "げんとう", + "pos": "名詞", + "pn": -0.440991 + }, + { + "surface": "除外", + "readging": "じょがい", + "pos": "名詞", + "pn": -0.440996 + }, + { + "surface": "路", + "readging": "ろ", + "pos": "名詞", + "pn": -0.441013 + }, + { + "surface": "武辺者", + "readging": "ぶへんもの", + "pos": "名詞", + "pn": -0.441037 + }, + { + "surface": "克", + "readging": "こく", + "pos": "名詞", + "pn": -0.441056 + }, + { + "surface": "棋風", + "readging": "きふう", + "pos": "名詞", + "pn": -0.441064 + }, + { + "surface": "上澄み", + "readging": "うわずみ", + "pos": "名詞", + "pn": -0.44108 + }, + { + "surface": "法体", + "readging": "ほったい", + "pos": "名詞", + "pn": -0.441139 + }, + { + "surface": "内湯", + "readging": "うちゆ", + "pos": "名詞", + "pn": -0.441153 + }, + { + "surface": "またたび", + "readging": "またたび", + "pos": "名詞", + "pn": -0.441154 + }, + { + "surface": "冷気", + "readging": "れいき", + "pos": "名詞", + "pn": -0.441159 + }, + { + "surface": "介党鱈", + "readging": "すけとうだら", + "pos": "名詞", + "pn": -0.441193 + }, + { + "surface": "コキール", + "readging": "コキール", + "pos": "名詞", + "pn": -0.441233 + }, + { + "surface": "先借り", + "readging": "さきがり", + "pos": "名詞", + "pn": -0.441235 + }, + { + "surface": "検印", + "readging": "けんいん", + "pos": "名詞", + "pn": -0.441242 + }, + { + "surface": "蠢動", + "readging": "しゅんどう", + "pos": "名詞", + "pn": -0.441256 + }, + { + "surface": "倹約", + "readging": "けんやく", + "pos": "名詞", + "pn": -0.441263 + }, + { + "surface": "食欲", + "readging": "しょくよく", + "pos": "名詞", + "pn": -0.441265 + }, + { + "surface": "肥胖症", + "readging": "ひはんしょう", + "pos": "名詞", + "pn": -0.441279 + }, + { + "surface": "スタート", + "readging": "スタート", + "pos": "名詞", + "pn": -0.441289 + }, + { + "surface": "水疱", + "readging": "すいほう", + "pos": "名詞", + "pn": -0.441293 + }, + { + "surface": "側線", + "readging": "そくせん", + "pos": "名詞", + "pn": -0.441328 + }, + { + "surface": "密出国", + "readging": "みつしゅっこく", + "pos": "名詞", + "pn": -0.44133 + }, + { + "surface": "液汁", + "readging": "えきじゅう", + "pos": "名詞", + "pn": -0.441351 + }, + { + "surface": "演説", + "readging": "えんぜつ", + "pos": "名詞", + "pn": -0.441355 + }, + { + "surface": "嚮導", + "readging": "きょうどう", + "pos": "名詞", + "pn": -0.441381 + }, + { + "surface": "流儀", + "readging": "りゅうぎ", + "pos": "名詞", + "pn": -0.441381 + }, + { + "surface": "地下水", + "readging": "ちかすい", + "pos": "名詞", + "pn": -0.441394 + }, + { + "surface": "群盗", + "readging": "ぐんとう", + "pos": "名詞", + "pn": -0.441402 + }, + { + "surface": "腰障子", + "readging": "こししょうじ", + "pos": "名詞", + "pn": -0.44141 + }, + { + "surface": "袋戸", + "readging": "ふくろど", + "pos": "名詞", + "pn": -0.441412 + }, + { + "surface": "摘み食い", + "readging": "つまみぐい", + "pos": "名詞", + "pn": -0.441419 + }, + { + "surface": "糸織", + "readging": "いとおり", + "pos": "名詞", + "pn": -0.441431 + }, + { + "surface": "回収", + "readging": "かいしゅう", + "pos": "名詞", + "pn": -0.441441 + }, + { + "surface": "芝生", + "readging": "しばふ", + "pos": "名詞", + "pn": -0.441445 + }, + { + "surface": "税源", + "readging": "ぜいげん", + "pos": "名詞", + "pn": -0.441469 + }, + { + "surface": "論説", + "readging": "ろんせつ", + "pos": "名詞", + "pn": -0.441473 + }, + { + "surface": "坪", + "readging": "つぼ", + "pos": "名詞", + "pn": -0.441478 + }, + { + "surface": "手相", + "readging": "てそう", + "pos": "名詞", + "pn": -0.441511 + }, + { + "surface": "覆す", + "readging": "くつがえす", + "pos": "動詞", + "pn": -0.441527 + }, + { + "surface": "智嚢", + "readging": "ちのう", + "pos": "名詞", + "pn": -0.441538 + }, + { + "surface": "仰山", + "readging": "ぎょうさん", + "pos": "副詞", + "pn": -0.441539 + }, + { + "surface": "丁髷", + "readging": "ちょんまげ", + "pos": "名詞", + "pn": -0.441541 + }, + { + "surface": "本局", + "readging": "ほんきょく", + "pos": "名詞", + "pn": -0.441543 + }, + { + "surface": "白炭", + "readging": "はくたん", + "pos": "名詞", + "pn": -0.441553 + }, + { + "surface": "弦歌", + "readging": "げんか", + "pos": "名詞", + "pn": -0.441554 + }, + { + "surface": "蕎麦殻", + "readging": "そばがら", + "pos": "名詞", + "pn": -0.441559 + }, + { + "surface": "雪囲い", + "readging": "ゆきがこい", + "pos": "名詞", + "pn": -0.44158 + }, + { + "surface": "帯する", + "readging": "たいする", + "pos": "動詞", + "pn": -0.4416 + }, + { + "surface": "乱層雲", + "readging": "らんそううん", + "pos": "名詞", + "pn": -0.441606 + }, + { + "surface": "甲殻", + "readging": "こうかく", + "pos": "名詞", + "pn": -0.44163 + }, + { + "surface": "散ずる", + "readging": "さんずる", + "pos": "動詞", + "pn": -0.441647 + }, + { + "surface": "渦巻", + "readging": "うずまき", + "pos": "名詞", + "pn": -0.441652 + }, + { + "surface": "迎撃", + "readging": "げいげき", + "pos": "名詞", + "pn": -0.441655 + }, + { + "surface": "弔問", + "readging": "ちょうもん", + "pos": "名詞", + "pn": -0.44166 + }, + { + "surface": "旗手", + "readging": "きしゅ", + "pos": "名詞", + "pn": -0.441667 + }, + { + "surface": "水彩", + "readging": "すいさい", + "pos": "名詞", + "pn": -0.441673 + }, + { + "surface": "間", + "readging": "あい", + "pos": "名詞", + "pn": -0.441714 + }, + { + "surface": "ヘッド", + "readging": "ヘッド", + "pos": "名詞", + "pn": -0.441714 + }, + { + "surface": "腹巻", + "readging": "はらまき", + "pos": "名詞", + "pn": -0.44172 + }, + { + "surface": "推挙", + "readging": "すいきょ", + "pos": "名詞", + "pn": -0.441726 + }, + { + "surface": "腕木", + "readging": "うでぎ", + "pos": "名詞", + "pn": -0.441752 + }, + { + "surface": "操車", + "readging": "そうしゃ", + "pos": "名詞", + "pn": -0.441755 + }, + { + "surface": "ハーモニカ", + "readging": "ハーモニカ", + "pos": "名詞", + "pn": -0.441765 + }, + { + "surface": "エクレア", + "readging": "エクレア", + "pos": "名詞", + "pn": -0.441768 + }, + { + "surface": "塹壕", + "readging": "ざんごう", + "pos": "名詞", + "pn": -0.441778 + }, + { + "surface": "蛇腹", + "readging": "じゃばら", + "pos": "名詞", + "pn": -0.441782 + }, + { + "surface": "帰巣", + "readging": "きそう", + "pos": "名詞", + "pn": -0.441789 + }, + { + "surface": "雄鳥", + "readging": "おんどり", + "pos": "名詞", + "pn": -0.441795 + }, + { + "surface": "湾頭", + "readging": "わんとう", + "pos": "名詞", + "pn": -0.441804 + }, + { + "surface": "敗戦", + "readging": "はいせん", + "pos": "名詞", + "pn": -0.441836 + }, + { + "surface": "マヨネーズ", + "readging": "マヨネーズ", + "pos": "名詞", + "pn": -0.441852 + }, + { + "surface": "側壁", + "readging": "そくへき", + "pos": "名詞", + "pn": -0.44187 + }, + { + "surface": "調達", + "readging": "ちょうたつ", + "pos": "名詞", + "pn": -0.441872 + }, + { + "surface": "譲", + "readging": "じょう", + "pos": "名詞", + "pn": -0.441885 + }, + { + "surface": "試みる", + "readging": "こころみる", + "pos": "動詞", + "pn": -0.441899 + }, + { + "surface": "宙", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.441923 + }, + { + "surface": "監禁", + "readging": "かんきん", + "pos": "名詞", + "pn": -0.441925 + }, + { + "surface": "渚", + "readging": "なぎさ", + "pos": "名詞", + "pn": -0.441936 + }, + { + "surface": "墨書", + "readging": "すみがき", + "pos": "名詞", + "pn": -0.441947 + }, + { + "surface": "民謡", + "readging": "みんよう", + "pos": "名詞", + "pn": -0.441992 + }, + { + "surface": "如意", + "readging": "にょい", + "pos": "名詞", + "pn": -0.441995 + }, + { + "surface": "音程", + "readging": "おんてい", + "pos": "名詞", + "pn": -0.442036 + }, + { + "surface": "卑近", + "readging": "ひきん", + "pos": "名詞", + "pn": -0.442056 + }, + { + "surface": "庭下駄", + "readging": "にわげた", + "pos": "名詞", + "pn": -0.442084 + }, + { + "surface": "半年", + "readging": "はんとし", + "pos": "名詞", + "pn": -0.442103 + }, + { + "surface": "見定める", + "readging": "みさだめる", + "pos": "動詞", + "pn": -0.442117 + }, + { + "surface": "リーベ", + "readging": "リーベ", + "pos": "名詞", + "pn": -0.442127 + }, + { + "surface": "モラトリアム", + "readging": "モラトリアム", + "pos": "名詞", + "pn": -0.442146 + }, + { + "surface": "鯨尺", + "readging": "くじらじゃく", + "pos": "名詞", + "pn": -0.442148 + }, + { + "surface": "高山", + "readging": "こうざん", + "pos": "名詞", + "pn": -0.442163 + }, + { + "surface": "向日葵", + "readging": "ひまわり", + "pos": "名詞", + "pn": -0.442164 + }, + { + "surface": "鞘巻", + "readging": "さやまき", + "pos": "名詞", + "pn": -0.442172 + }, + { + "surface": "湯麺", + "readging": "タンメン", + "pos": "名詞", + "pn": -0.442174 + }, + { + "surface": "声涙", + "readging": "せいるい", + "pos": "名詞", + "pn": -0.442204 + }, + { + "surface": "死滅", + "readging": "しめつ", + "pos": "名詞", + "pn": -0.442251 + }, + { + "surface": "挙動", + "readging": "きょどう", + "pos": "名詞", + "pn": -0.442262 + }, + { + "surface": "青楼", + "readging": "せいろう", + "pos": "名詞", + "pn": -0.44227 + }, + { + "surface": "じわじわ", + "readging": "じわじわ", + "pos": "副詞", + "pn": -0.44227 + }, + { + "surface": "乳状", + "readging": "にゅうじょう", + "pos": "名詞", + "pn": -0.442282 + }, + { + "surface": "寝取る", + "readging": "ねとる", + "pos": "動詞", + "pn": -0.442298 + }, + { + "surface": "鼻音", + "readging": "びおん", + "pos": "名詞", + "pn": -0.4423 + }, + { + "surface": "ポプラ", + "readging": "ポプラ", + "pos": "名詞", + "pn": -0.442301 + }, + { + "surface": "警官", + "readging": "けいかん", + "pos": "名詞", + "pn": -0.442303 + }, + { + "surface": "七竈", + "readging": "ななかまど", + "pos": "名詞", + "pn": -0.442311 + }, + { + "surface": "砂金", + "readging": "さきん", + "pos": "名詞", + "pn": -0.442313 + }, + { + "surface": "三", + "readging": "さん", + "pos": "名詞", + "pn": -0.442331 + }, + { + "surface": "野太鼓", + "readging": "のだいこ", + "pos": "名詞", + "pn": -0.442332 + }, + { + "surface": "バンプ", + "readging": "バンプ", + "pos": "名詞", + "pn": -0.442334 + }, + { + "surface": "介抱", + "readging": "かいほう", + "pos": "名詞", + "pn": -0.442335 + }, + { + "surface": "口上", + "readging": "こうじょう", + "pos": "名詞", + "pn": -0.442363 + }, + { + "surface": "川面", + "readging": "かわづら", + "pos": "名詞", + "pn": -0.442393 + }, + { + "surface": "御役御免", + "readging": "おやくごめん", + "pos": "名詞", + "pn": -0.442404 + }, + { + "surface": "法治", + "readging": "ほうち", + "pos": "名詞", + "pn": -0.442417 + }, + { + "surface": "小太鼓", + "readging": "こだいこ", + "pos": "名詞", + "pn": -0.442424 + }, + { + "surface": "逆旅", + "readging": "げきりょ", + "pos": "名詞", + "pn": -0.442424 + }, + { + "surface": "駆催す", + "readging": "かりもよおす", + "pos": "動詞", + "pn": -0.442433 + }, + { + "surface": "強力粉", + "readging": "きょうりきこ", + "pos": "名詞", + "pn": -0.442443 + }, + { + "surface": "塊打", + "readging": "くれうち", + "pos": "名詞", + "pn": -0.442447 + }, + { + "surface": "筋目", + "readging": "すじめ", + "pos": "名詞", + "pn": -0.442447 + }, + { + "surface": "息張る", + "readging": "いきばる", + "pos": "動詞", + "pn": -0.442473 + }, + { + "surface": "汲汲", + "readging": "きゅうきゅう", + "pos": "名詞", + "pn": -0.442482 + }, + { + "surface": "凌ぐ", + "readging": "しのぐ", + "pos": "動詞", + "pn": -0.442488 + }, + { + "surface": "照射", + "readging": "しょうしゃ", + "pos": "名詞", + "pn": -0.442503 + }, + { + "surface": "クレバス", + "readging": "クレバス", + "pos": "名詞", + "pn": -0.442508 + }, + { + "surface": "肌色", + "readging": "はだいろ", + "pos": "名詞", + "pn": -0.442519 + }, + { + "surface": "跡継", + "readging": "あとつぎ", + "pos": "名詞", + "pn": -0.44253 + }, + { + "surface": "内懐", + "readging": "うちぶところ", + "pos": "名詞", + "pn": -0.442531 + }, + { + "surface": "変態", + "readging": "へんたい", + "pos": "名詞", + "pn": -0.442541 + }, + { + "surface": "澄し", + "readging": "すまし", + "pos": "名詞", + "pn": -0.44255 + }, + { + "surface": "趨向", + "readging": "すうこう", + "pos": "名詞", + "pn": -0.442567 + }, + { + "surface": "再任", + "readging": "さいにん", + "pos": "名詞", + "pn": -0.442607 + }, + { + "surface": "アド バルーン", + "readging": "アド バルーン", + "pos": "名詞", + "pn": -0.442607 + }, + { + "surface": "蠅", + "readging": "はえ", + "pos": "名詞", + "pn": -0.44261 + }, + { + "surface": "満更", + "readging": "まんざら", + "pos": "副詞", + "pn": -0.442632 + }, + { + "surface": "悔改める", + "readging": "くいあらためる", + "pos": "動詞", + "pn": -0.442636 + }, + { + "surface": "三角州", + "readging": "さんかくす", + "pos": "名詞", + "pn": -0.442647 + }, + { + "surface": "個性", + "readging": "こせい", + "pos": "名詞", + "pn": -0.442669 + }, + { + "surface": "夫人", + "readging": "ふじん", + "pos": "名詞", + "pn": -0.442707 + }, + { + "surface": "一顰一笑", + "readging": "いっぴんいっしょう", + "pos": "名詞", + "pn": -0.442711 + }, + { + "surface": "実物", + "readging": "じつぶつ", + "pos": "名詞", + "pn": -0.442713 + }, + { + "surface": "統一", + "readging": "とういつ", + "pos": "名詞", + "pn": -0.442723 + }, + { + "surface": "グリッド", + "readging": "グリッド", + "pos": "名詞", + "pn": -0.44274 + }, + { + "surface": "鉛", + "readging": "えん", + "pos": "名詞", + "pn": -0.442749 + }, + { + "surface": "職制", + "readging": "しょくせい", + "pos": "名詞", + "pn": -0.442752 + }, + { + "surface": "しこたま", + "readging": "しこたま", + "pos": "副詞", + "pn": -0.442774 + }, + { + "surface": "捻り", + "readging": "ひねり", + "pos": "名詞", + "pn": -0.442776 + }, + { + "surface": "胎内", + "readging": "たいない", + "pos": "名詞", + "pn": -0.44278 + }, + { + "surface": "生蕎麦", + "readging": "きそば", + "pos": "名詞", + "pn": -0.442788 + }, + { + "surface": "へたへた", + "readging": "へたへた", + "pos": "副詞", + "pn": -0.442795 + }, + { + "surface": "国土", + "readging": "こくど", + "pos": "名詞", + "pn": -0.442796 + }, + { + "surface": "絶版", + "readging": "ぜっぱん", + "pos": "名詞", + "pn": -0.442804 + }, + { + "surface": "ちょくちょく", + "readging": "ちょくちょく", + "pos": "副詞", + "pn": -0.442805 + }, + { + "surface": "感量", + "readging": "かんりょう", + "pos": "名詞", + "pn": -0.442805 + }, + { + "surface": "風洞", + "readging": "ふうどう", + "pos": "名詞", + "pn": -0.442808 + }, + { + "surface": "回り気", + "readging": "まわりぎ", + "pos": "名詞", + "pn": -0.442839 + }, + { + "surface": "うるさ型", + "readging": "うるさがた", + "pos": "名詞", + "pn": -0.442865 + }, + { + "surface": "乙", + "readging": "おつ", + "pos": "名詞", + "pn": -0.442869 + }, + { + "surface": "芋茎", + "readging": "ずいき", + "pos": "名詞", + "pn": -0.442877 + }, + { + "surface": "散らかる", + "readging": "ちらかる", + "pos": "動詞", + "pn": -0.44288 + }, + { + "surface": "矢庭", + "readging": "やにわ", + "pos": "名詞", + "pn": -0.442912 + }, + { + "surface": "絎台", + "readging": "くけだい", + "pos": "名詞", + "pn": -0.442938 + }, + { + "surface": "一衣帯水", + "readging": "いちいたいすい", + "pos": "名詞", + "pn": -0.442967 + }, + { + "surface": "履違える", + "readging": "はきちがえる", + "pos": "動詞", + "pn": -0.442979 + }, + { + "surface": "視点", + "readging": "してん", + "pos": "名詞", + "pn": -0.443008 + }, + { + "surface": "最高", + "readging": "さいこう", + "pos": "名詞", + "pn": -0.443009 + }, + { + "surface": "ホバークラフト", + "readging": "ホバークラフト", + "pos": "名詞", + "pn": -0.443018 + }, + { + "surface": "些些", + "readging": "ささ", + "pos": "名詞", + "pn": -0.443034 + }, + { + "surface": "九牛", + "readging": "きゅうぎゅう", + "pos": "名詞", + "pn": -0.443034 + }, + { + "surface": "朸", + "readging": "おうご", + "pos": "名詞", + "pn": -0.443041 + }, + { + "surface": "瀬踏み", + "readging": "せぶみ", + "pos": "名詞", + "pn": -0.443045 + }, + { + "surface": "相持ち", + "readging": "あいもち", + "pos": "名詞", + "pn": -0.443049 + }, + { + "surface": "声音", + "readging": "こわね", + "pos": "名詞", + "pn": -0.443093 + }, + { + "surface": "莢豌豆", + "readging": "さやえんどう", + "pos": "名詞", + "pn": -0.443099 + }, + { + "surface": "埠頭", + "readging": "ふとう", + "pos": "名詞", + "pn": -0.443106 + }, + { + "surface": "胴衣", + "readging": "どうい", + "pos": "名詞", + "pn": -0.443147 + }, + { + "surface": "仲買", + "readging": "なかがい", + "pos": "名詞", + "pn": -0.443154 + }, + { + "surface": "玄翁", + "readging": "げんのう", + "pos": "名詞", + "pn": -0.443154 + }, + { + "surface": "下水道", + "readging": "げすいどう", + "pos": "名詞", + "pn": -0.443163 + }, + { + "surface": "減", + "readging": "げん", + "pos": "名詞", + "pn": -0.443171 + }, + { + "surface": "令閨", + "readging": "れいけい", + "pos": "名詞", + "pn": -0.443172 + }, + { + "surface": "足固め", + "readging": "あしがため", + "pos": "名詞", + "pn": -0.443201 + }, + { + "surface": "特色", + "readging": "とくしょく", + "pos": "名詞", + "pn": -0.443254 + }, + { + "surface": "大腸菌", + "readging": "だいちょうきん", + "pos": "名詞", + "pn": -0.443296 + }, + { + "surface": "バックスキン", + "readging": "バックスキン", + "pos": "名詞", + "pn": -0.443304 + }, + { + "surface": "はま鍋", + "readging": "はまなべ", + "pos": "名詞", + "pn": -0.443318 + }, + { + "surface": "家訓", + "readging": "かくん", + "pos": "名詞", + "pn": -0.443341 + }, + { + "surface": "ポケット", + "readging": "ポケットベル", + "pos": "名詞", + "pn": -0.443376 + }, + { + "surface": "焚口", + "readging": "たきぐち", + "pos": "名詞", + "pn": -0.443384 + }, + { + "surface": "思い止まる", + "readging": "おもいとどまる", + "pos": "動詞", + "pn": -0.443402 + }, + { + "surface": "回流", + "readging": "かいりゅう", + "pos": "名詞", + "pn": -0.443417 + }, + { + "surface": "幕臣", + "readging": "ばくしん", + "pos": "名詞", + "pn": -0.443419 + }, + { + "surface": "グラス", + "readging": "グラス", + "pos": "名詞", + "pn": -0.44342 + }, + { + "surface": "哀訴", + "readging": "あいそ", + "pos": "名詞", + "pn": -0.443444 + }, + { + "surface": "自国", + "readging": "じこく", + "pos": "名詞", + "pn": -0.443447 + }, + { + "surface": "リフレイン", + "readging": "リフレイン", + "pos": "名詞", + "pn": -0.443452 + }, + { + "surface": "切磋", + "readging": "せっさ", + "pos": "名詞", + "pn": -0.443473 + }, + { + "surface": "氷菓子", + "readging": "こおりがし", + "pos": "名詞", + "pn": -0.443515 + }, + { + "surface": "双六", + "readging": "すごろく", + "pos": "名詞", + "pn": -0.44352 + }, + { + "surface": "たんさん", + "readging": "たんさんカルシウム", + "pos": "名詞", + "pn": -0.443533 + }, + { + "surface": "ネット", + "readging": "ネット", + "pos": "名詞", + "pn": -0.443555 + }, + { + "surface": "伝馬船", + "readging": "てんません", + "pos": "名詞", + "pn": -0.443584 + }, + { + "surface": "罷免", + "readging": "ひめん", + "pos": "名詞", + "pn": -0.443599 + }, + { + "surface": "雄花", + "readging": "おばな", + "pos": "名詞", + "pn": -0.443606 + }, + { + "surface": "戯ける", + "readging": "たわける", + "pos": "動詞", + "pn": -0.443618 + }, + { + "surface": "砂鉄", + "readging": "さてつ", + "pos": "名詞", + "pn": -0.443623 + }, + { + "surface": "恒産", + "readging": "こうさん", + "pos": "名詞", + "pn": -0.443624 + }, + { + "surface": "白楊", + "readging": "どろのき", + "pos": "名詞", + "pn": -0.443635 + }, + { + "surface": "蓬髪", + "readging": "ほうはつ", + "pos": "名詞", + "pn": -0.443662 + }, + { + "surface": "微微", + "readging": "びび", + "pos": "名詞", + "pn": -0.443666 + }, + { + "surface": "腐葉土", + "readging": "ふようど", + "pos": "名詞", + "pn": -0.443691 + }, + { + "surface": "シンポジウム", + "readging": "シンポジウム", + "pos": "名詞", + "pn": -0.443739 + }, + { + "surface": "石鯛", + "readging": "いしだい", + "pos": "名詞", + "pn": -0.44375 + }, + { + "surface": "店屋", + "readging": "みせや", + "pos": "名詞", + "pn": -0.443754 + }, + { + "surface": "書下す", + "readging": "かきくだす", + "pos": "動詞", + "pn": -0.443762 + }, + { + "surface": "作成", + "readging": "さくせい", + "pos": "名詞", + "pn": -0.443763 + }, + { + "surface": "末社", + "readging": "まっしゃ", + "pos": "名詞", + "pn": -0.443768 + }, + { + "surface": "ずうずう弁", + "readging": "ずうずうべん", + "pos": "名詞", + "pn": -0.443776 + }, + { + "surface": "染み抜き", + "readging": "しみぬき", + "pos": "名詞", + "pn": -0.443788 + }, + { + "surface": "泥道", + "readging": "どろみち", + "pos": "名詞", + "pn": -0.443804 + }, + { + "surface": "平目", + "readging": "ひらめ", + "pos": "名詞", + "pn": -0.443833 + }, + { + "surface": "まあ", + "readging": "まあ", + "pos": "副詞", + "pn": -0.443848 + }, + { + "surface": "鉄分", + "readging": "てつぶん", + "pos": "名詞", + "pn": -0.443894 + }, + { + "surface": "異同", + "readging": "いどう", + "pos": "名詞", + "pn": -0.443907 + }, + { + "surface": "漕艇", + "readging": "そうてい", + "pos": "名詞", + "pn": -0.443916 + }, + { + "surface": "飲助", + "readging": "のみすけ", + "pos": "名詞", + "pn": -0.443932 + }, + { + "surface": "銭苔", + "readging": "ぜにごけ", + "pos": "名詞", + "pn": -0.443938 + }, + { + "surface": "乳質", + "readging": "にゅうしつ", + "pos": "名詞", + "pn": -0.443995 + }, + { + "surface": "冬囲い", + "readging": "ふゆがこい", + "pos": "名詞", + "pn": -0.443996 + }, + { + "surface": "成す", + "readging": "なす", + "pos": "動詞", + "pn": -0.444003 + }, + { + "surface": "琢", + "readging": "たく", + "pos": "名詞", + "pn": -0.444016 + }, + { + "surface": "臣従", + "readging": "しんじゅう", + "pos": "名詞", + "pn": -0.444016 + }, + { + "surface": "侍立", + "readging": "じりつ", + "pos": "名詞", + "pn": -0.444025 + }, + { + "surface": "やっさもっさ", + "readging": "やっさもっさ", + "pos": "名詞", + "pn": -0.444048 + }, + { + "surface": "横町", + "readging": "よこちょう", + "pos": "名詞", + "pn": -0.444049 + }, + { + "surface": "軽視", + "readging": "けいし", + "pos": "名詞", + "pn": -0.444086 + }, + { + "surface": "悲観", + "readging": "ひかん", + "pos": "名詞", + "pn": -0.444093 + }, + { + "surface": "五十音図", + "readging": "ごじゅうおんず", + "pos": "名詞", + "pn": -0.444093 + }, + { + "surface": "ギフト", + "readging": "ギフト", + "pos": "名詞", + "pn": -0.444093 + }, + { + "surface": "左衽", + "readging": "さじん", + "pos": "名詞", + "pn": -0.444104 + }, + { + "surface": "歯応え", + "readging": "はごたえ", + "pos": "名詞", + "pn": -0.444115 + }, + { + "surface": "雑食", + "readging": "ざっしょく", + "pos": "名詞", + "pn": -0.444123 + }, + { + "surface": "自我", + "readging": "じが", + "pos": "名詞", + "pn": -0.444127 + }, + { + "surface": "漆", + "readging": "うるし", + "pos": "名詞", + "pn": -0.444141 + }, + { + "surface": "ラッシュ", + "readging": "ラッシュアワー", + "pos": "名詞", + "pn": -0.44415 + }, + { + "surface": "弁慶縞", + "readging": "べんけいじま", + "pos": "名詞", + "pn": -0.444171 + }, + { + "surface": "ぶっきらぼう", + "readging": "ぶっきらぼう", + "pos": "名詞", + "pn": -0.444192 + }, + { + "surface": "うわなり打ち", + "readging": "うわなり", + "pos": "名詞", + "pn": -0.444205 + }, + { + "surface": "目する", + "readging": "もくする", + "pos": "動詞", + "pn": -0.444212 + }, + { + "surface": "小寒", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.444226 + }, + { + "surface": "目星", + "readging": "めぼし", + "pos": "名詞", + "pn": -0.444248 + }, + { + "surface": "銀貨", + "readging": "ぎんか", + "pos": "名詞", + "pn": -0.444266 + }, + { + "surface": "言訳", + "readging": "いいわけ", + "pos": "名詞", + "pn": -0.444274 + }, + { + "surface": "新帝", + "readging": "しんてい", + "pos": "名詞", + "pn": -0.444277 + }, + { + "surface": "活路", + "readging": "かつろ", + "pos": "名詞", + "pn": -0.444279 + }, + { + "surface": "陰電気", + "readging": "いんでんき", + "pos": "名詞", + "pn": -0.444282 + }, + { + "surface": "廂間", + "readging": "ひあわい", + "pos": "名詞", + "pn": -0.444287 + }, + { + "surface": "参加", + "readging": "さんか", + "pos": "名詞", + "pn": -0.444319 + }, + { + "surface": "椰子", + "readging": "やし", + "pos": "名詞", + "pn": -0.444324 + }, + { + "surface": "船医", + "readging": "せんい", + "pos": "名詞", + "pn": -0.44434 + }, + { + "surface": "上腕", + "readging": "じょうわん", + "pos": "名詞", + "pn": -0.44435 + }, + { + "surface": "行跡", + "readging": "ぎょうせき", + "pos": "名詞", + "pn": -0.44436 + }, + { + "surface": "付き合う", + "readging": "つきあう", + "pos": "動詞", + "pn": -0.444364 + }, + { + "surface": "袱紗", + "readging": "ふくさ", + "pos": "名詞", + "pn": -0.444369 + }, + { + "surface": "浪宅", + "readging": "ろうたく", + "pos": "名詞", + "pn": -0.444373 + }, + { + "surface": "反復", + "readging": "はんぷく", + "pos": "名詞", + "pn": -0.444374 + }, + { + "surface": "近習", + "readging": "きんじゅう", + "pos": "名詞", + "pn": -0.444381 + }, + { + "surface": "執務", + "readging": "しつむ", + "pos": "名詞", + "pn": -0.44439 + }, + { + "surface": "怪光", + "readging": "かいこう", + "pos": "名詞", + "pn": -0.4444 + }, + { + "surface": "息休め", + "readging": "いきやすめ", + "pos": "名詞", + "pn": -0.444405 + }, + { + "surface": "造反", + "readging": "ぞうはん", + "pos": "名詞", + "pn": -0.444415 + }, + { + "surface": "主婦", + "readging": "しゅふ", + "pos": "名詞", + "pn": -0.444421 + }, + { + "surface": "三日坊主", + "readging": "みっかぼうず", + "pos": "名詞", + "pn": -0.444424 + }, + { + "surface": "緑泥", + "readging": "りょくでい", + "pos": "名詞", + "pn": -0.444426 + }, + { + "surface": "杭", + "readging": "くい", + "pos": "名詞", + "pn": -0.44444 + }, + { + "surface": "虫送り", + "readging": "むしおくり", + "pos": "名詞", + "pn": -0.444445 + }, + { + "surface": "訓練", + "readging": "くんれん", + "pos": "名詞", + "pn": -0.444469 + }, + { + "surface": "取締役", + "readging": "とりしまりやく", + "pos": "名詞", + "pn": -0.444472 + }, + { + "surface": "秘術", + "readging": "ひじゅつ", + "pos": "名詞", + "pn": -0.444478 + }, + { + "surface": "気遣い", + "readging": "きづかい", + "pos": "名詞", + "pn": -0.44449 + }, + { + "surface": "水素爆弾", + "readging": "すいそばくだん", + "pos": "名詞", + "pn": -0.444502 + }, + { + "surface": "飛石", + "readging": "とびいし", + "pos": "名詞", + "pn": -0.444508 + }, + { + "surface": "引っ立てる", + "readging": "ひったてる", + "pos": "動詞", + "pn": -0.444516 + }, + { + "surface": "御殿", + "readging": "ごてん", + "pos": "名詞", + "pn": -0.444525 + }, + { + "surface": "罷業", + "readging": "ひぎょう", + "pos": "名詞", + "pn": -0.444551 + }, + { + "surface": "重刑", + "readging": "じゅうけい", + "pos": "名詞", + "pn": -0.444552 + }, + { + "surface": "磁石", + "readging": "じしゃく", + "pos": "名詞", + "pn": -0.444593 + }, + { + "surface": "腰抜け", + "readging": "こしぬけ", + "pos": "名詞", + "pn": -0.444617 + }, + { + "surface": "盗聴", + "readging": "とうちょう", + "pos": "名詞", + "pn": -0.44462 + }, + { + "surface": "矢筈", + "readging": "やはず", + "pos": "名詞", + "pn": -0.444644 + }, + { + "surface": "焚付", + "readging": "たきつけ", + "pos": "名詞", + "pn": -0.44465 + }, + { + "surface": "包装", + "readging": "ほうそう", + "pos": "名詞", + "pn": -0.44466 + }, + { + "surface": "矢倉", + "readging": "やぐら", + "pos": "名詞", + "pn": -0.444686 + }, + { + "surface": "斬捨て御免", + "readging": "きりすてごめん", + "pos": "名詞", + "pn": -0.444705 + }, + { + "surface": "食い合う", + "readging": "くいあう", + "pos": "動詞", + "pn": -0.444711 + }, + { + "surface": "狂歌", + "readging": "きょうか", + "pos": "名詞", + "pn": -0.444729 + }, + { + "surface": "瓠", + "readging": "ふくべ", + "pos": "名詞", + "pn": -0.444758 + }, + { + "surface": "真実", + "readging": "しんじつ", + "pos": "名詞", + "pn": -0.444768 + }, + { + "surface": "添え乳", + "readging": "そえぢ", + "pos": "名詞", + "pn": -0.44478 + }, + { + "surface": "発疹", + "readging": "ほっしん", + "pos": "名詞", + "pn": -0.444788 + }, + { + "surface": "無電", + "readging": "むでん", + "pos": "名詞", + "pn": -0.444795 + }, + { + "surface": "建立", + "readging": "こんりゅう", + "pos": "名詞", + "pn": -0.444798 + }, + { + "surface": "左遷", + "readging": "させん", + "pos": "名詞", + "pn": -0.4448 + }, + { + "surface": "主眼", + "readging": "しゅがん", + "pos": "名詞", + "pn": -0.444812 + }, + { + "surface": "後手", + "readging": "ごて", + "pos": "名詞", + "pn": -0.444823 + }, + { + "surface": "筥迫", + "readging": "はこせこ", + "pos": "名詞", + "pn": -0.444836 + }, + { + "surface": "野火", + "readging": "のび", + "pos": "名詞", + "pn": -0.444855 + }, + { + "surface": "青草", + "readging": "あおくさ", + "pos": "名詞", + "pn": -0.444858 + }, + { + "surface": "田地", + "readging": "でんじ", + "pos": "名詞", + "pn": -0.44486 + }, + { + "surface": "先客", + "readging": "せんきゃく", + "pos": "名詞", + "pn": -0.444861 + }, + { + "surface": "丸焼き", + "readging": "まるやき", + "pos": "名詞", + "pn": -0.444893 + }, + { + "surface": "薬研", + "readging": "やげん", + "pos": "名詞", + "pn": -0.444905 + }, + { + "surface": "螺子回し", + "readging": "ねじまわし", + "pos": "名詞", + "pn": -0.444906 + }, + { + "surface": "発表", + "readging": "はっぴょう", + "pos": "名詞", + "pn": -0.444912 + }, + { + "surface": "霜降り", + "readging": "しもふり", + "pos": "名詞", + "pn": -0.444916 + }, + { + "surface": "蔕", + "readging": "へた", + "pos": "名詞", + "pn": -0.444919 + }, + { + "surface": "スタミナ", + "readging": "スタミナ", + "pos": "名詞", + "pn": -0.444921 + }, + { + "surface": "口口", + "readging": "くちぐち", + "pos": "名詞", + "pn": -0.444968 + }, + { + "surface": "暗箱", + "readging": "あんばこ", + "pos": "名詞", + "pn": -0.444986 + }, + { + "surface": "商取引", + "readging": "しょうとりひき", + "pos": "名詞", + "pn": -0.445011 + }, + { + "surface": "異例", + "readging": "いれい", + "pos": "名詞", + "pn": -0.44504 + }, + { + "surface": "ケチャップ", + "readging": "ケチャップ", + "pos": "名詞", + "pn": -0.445043 + }, + { + "surface": "突っ掛ける", + "readging": "つっかける", + "pos": "動詞", + "pn": -0.445043 + }, + { + "surface": "呑噬", + "readging": "どんぜい", + "pos": "名詞", + "pn": -0.44505 + }, + { + "surface": "場打て", + "readging": "ばうて", + "pos": "名詞", + "pn": -0.445052 + }, + { + "surface": "臓物", + "readging": "ぞうもつ", + "pos": "名詞", + "pn": -0.445059 + }, + { + "surface": "結び付く", + "readging": "むすびつく", + "pos": "動詞", + "pn": -0.445067 + }, + { + "surface": "ぎゅっと", + "readging": "ぎゅっと", + "pos": "副詞", + "pn": -0.445067 + }, + { + "surface": "工作機械", + "readging": "こうさくきかい", + "pos": "名詞", + "pn": -0.445081 + }, + { + "surface": "脱去", + "readging": "だっきょ", + "pos": "名詞", + "pn": -0.445122 + }, + { + "surface": "和臭", + "readging": "わしゅう", + "pos": "名詞", + "pn": -0.445156 + }, + { + "surface": "証人", + "readging": "しょうにん", + "pos": "名詞", + "pn": -0.445178 + }, + { + "surface": "歩行", + "readging": "ほこう", + "pos": "名詞", + "pn": -0.445181 + }, + { + "surface": "残り物", + "readging": "のこりもの", + "pos": "名詞", + "pn": -0.445206 + }, + { + "surface": "鈴", + "readging": "れい", + "pos": "名詞", + "pn": -0.445212 + }, + { + "surface": "嘶える", + "readging": "いばえる", + "pos": "動詞", + "pn": -0.445215 + }, + { + "surface": "実相", + "readging": "じっそう", + "pos": "名詞", + "pn": -0.445256 + }, + { + "surface": "いっそ", + "readging": "いっそ", + "pos": "副詞", + "pn": -0.445279 + }, + { + "surface": "暦年", + "readging": "れきねん", + "pos": "名詞", + "pn": -0.445299 + }, + { + "surface": "合印", + "readging": "あいいん", + "pos": "名詞", + "pn": -0.445301 + }, + { + "surface": "ボンボン", + "readging": "ボンボン", + "pos": "名詞", + "pn": -0.445304 + }, + { + "surface": "安全器", + "readging": "あんぜんき", + "pos": "名詞", + "pn": -0.445314 + }, + { + "surface": "衣装", + "readging": "いしょう", + "pos": "名詞", + "pn": -0.445337 + }, + { + "surface": "流民", + "readging": "りゅうみん", + "pos": "名詞", + "pn": -0.445345 + }, + { + "surface": "元締", + "readging": "もとじめ", + "pos": "名詞", + "pn": -0.445383 + }, + { + "surface": "痺れ", + "readging": "しびれ", + "pos": "名詞", + "pn": -0.445397 + }, + { + "surface": "後後", + "readging": "あとあと", + "pos": "名詞", + "pn": -0.445406 + }, + { + "surface": "儕輩", + "readging": "せいはい", + "pos": "名詞", + "pn": -0.445415 + }, + { + "surface": "静水", + "readging": "せいすい", + "pos": "名詞", + "pn": -0.44542 + }, + { + "surface": "喫茶", + "readging": "きっさ", + "pos": "名詞", + "pn": -0.445434 + }, + { + "surface": "識字", + "readging": "しきじ", + "pos": "名詞", + "pn": -0.445444 + }, + { + "surface": "労苦", + "readging": "ろうく", + "pos": "名詞", + "pn": -0.445454 + }, + { + "surface": "表題", + "readging": "ひょうだい", + "pos": "名詞", + "pn": -0.445463 + }, + { + "surface": "訳名", + "readging": "やくめい", + "pos": "名詞", + "pn": -0.44548 + }, + { + "surface": "黄楊", + "readging": "つげ", + "pos": "名詞", + "pn": -0.445484 + }, + { + "surface": "五穀", + "readging": "ごこく", + "pos": "名詞", + "pn": -0.445498 + }, + { + "surface": "リリヤン", + "readging": "リリヤン", + "pos": "名詞", + "pn": -0.445509 + }, + { + "surface": "細雪", + "readging": "ささめゆき", + "pos": "名詞", + "pn": -0.445546 + }, + { + "surface": "ミニチュア", + "readging": "ミニチュア", + "pos": "名詞", + "pn": -0.445556 + }, + { + "surface": "羽子板", + "readging": "はごいた", + "pos": "名詞", + "pn": -0.445556 + }, + { + "surface": "日和見", + "readging": "ひよりみ", + "pos": "名詞", + "pn": -0.445566 + }, + { + "surface": "絵姿", + "readging": "えすがた", + "pos": "名詞", + "pn": -0.445571 + }, + { + "surface": "凶刃", + "readging": "きょうじん", + "pos": "名詞", + "pn": -0.445587 + }, + { + "surface": "浮べる", + "readging": "うかべる", + "pos": "動詞", + "pn": -0.445591 + }, + { + "surface": "加冠", + "readging": "かかん", + "pos": "名詞", + "pn": -0.445595 + }, + { + "surface": "仕振り", + "readging": "しぶり", + "pos": "名詞", + "pn": -0.44562 + }, + { + "surface": "一挙", + "readging": "いっきょ", + "pos": "名詞", + "pn": -0.445625 + }, + { + "surface": "貿易", + "readging": "ぼうえき", + "pos": "名詞", + "pn": -0.445636 + }, + { + "surface": "情理", + "readging": "じょうり", + "pos": "名詞", + "pn": -0.445639 + }, + { + "surface": "皇嗣", + "readging": "こうし", + "pos": "名詞", + "pn": -0.445644 + }, + { + "surface": "老酒", + "readging": "ラオチュー", + "pos": "名詞", + "pn": -0.445652 + }, + { + "surface": "シリコーン", + "readging": "シリコーン", + "pos": "名詞", + "pn": -0.445653 + }, + { + "surface": "在朝", + "readging": "ざいちょう", + "pos": "名詞", + "pn": -0.445664 + }, + { + "surface": "山葡萄", + "readging": "やまぶどう", + "pos": "名詞", + "pn": -0.445669 + }, + { + "surface": "砂防", + "readging": "さぼう", + "pos": "名詞", + "pn": -0.445677 + }, + { + "surface": "収束", + "readging": "しゅうそく", + "pos": "名詞", + "pn": -0.445687 + }, + { + "surface": "墨画", + "readging": "ぼくが", + "pos": "名詞", + "pn": -0.445725 + }, + { + "surface": "ヒステリー", + "readging": "ヒステリー", + "pos": "名詞", + "pn": -0.445727 + }, + { + "surface": "山裾", + "readging": "やますそ", + "pos": "名詞", + "pn": -0.445731 + }, + { + "surface": "転変", + "readging": "てんぺん", + "pos": "名詞", + "pn": -0.445733 + }, + { + "surface": "突っ伏す", + "readging": "つっぷす", + "pos": "動詞", + "pn": -0.445734 + }, + { + "surface": "サラリー", + "readging": "サラリーマン", + "pos": "名詞", + "pn": -0.445738 + }, + { + "surface": "下絵", + "readging": "したえ", + "pos": "名詞", + "pn": -0.445782 + }, + { + "surface": "歯垢", + "readging": "しこう", + "pos": "名詞", + "pn": -0.445789 + }, + { + "surface": "かぶりつき", + "readging": "かぶりつき", + "pos": "名詞", + "pn": -0.445792 + }, + { + "surface": "両頭", + "readging": "りょうとう", + "pos": "名詞", + "pn": -0.445792 + }, + { + "surface": "花粉", + "readging": "かふん", + "pos": "名詞", + "pn": -0.445794 + }, + { + "surface": "厳", + "readging": "げん", + "pos": "名詞", + "pn": -0.445812 + }, + { + "surface": "ジンジャー", + "readging": "ジンジャー", + "pos": "名詞", + "pn": -0.445839 + }, + { + "surface": "旅立つ", + "readging": "たびだつ", + "pos": "動詞", + "pn": -0.445853 + }, + { + "surface": "垢離", + "readging": "こり", + "pos": "名詞", + "pn": -0.445855 + }, + { + "surface": "浅葱", + "readging": "あさつき", + "pos": "名詞", + "pn": -0.445887 + }, + { + "surface": "八方", + "readging": "はっぽう", + "pos": "名詞", + "pn": -0.44591 + }, + { + "surface": "培養", + "readging": "ばいよう", + "pos": "名詞", + "pn": -0.445955 + }, + { + "surface": "猜疑", + "readging": "さいぎ", + "pos": "名詞", + "pn": -0.445959 + }, + { + "surface": "扇形", + "readging": "せんけい", + "pos": "名詞", + "pn": -0.445968 + }, + { + "surface": "仕法", + "readging": "しほう", + "pos": "名詞", + "pn": -0.445972 + }, + { + "surface": "兼営", + "readging": "けんえい", + "pos": "名詞", + "pn": -0.445989 + }, + { + "surface": "顔合せ", + "readging": "かおあわせ", + "pos": "名詞", + "pn": -0.44599 + }, + { + "surface": "推定", + "readging": "すいてい", + "pos": "名詞", + "pn": -0.446032 + }, + { + "surface": "おっしゃる", + "readging": "おっしゃる", + "pos": "動詞", + "pn": -0.446052 + }, + { + "surface": "ロストル", + "readging": "ロストル", + "pos": "名詞", + "pn": -0.446052 + }, + { + "surface": "妨害", + "readging": "ぼうがい", + "pos": "名詞", + "pn": -0.446072 + }, + { + "surface": "画材", + "readging": "がざい", + "pos": "名詞", + "pn": -0.446075 + }, + { + "surface": "根絶", + "readging": "こんぜつ", + "pos": "名詞", + "pn": -0.446081 + }, + { + "surface": "蔓立", + "readging": "つるだち", + "pos": "名詞", + "pn": -0.446085 + }, + { + "surface": "暴論", + "readging": "ぼうろん", + "pos": "名詞", + "pn": -0.446118 + }, + { + "surface": "前腕", + "readging": "ぜんわん", + "pos": "名詞", + "pn": -0.446122 + }, + { + "surface": "ビスコース", + "readging": "ビスコース", + "pos": "名詞", + "pn": -0.44613 + }, + { + "surface": "乎古止点", + "readging": "をことてん", + "pos": "名詞", + "pn": -0.446138 + }, + { + "surface": "外科", + "readging": "げか", + "pos": "名詞", + "pn": -0.446152 + }, + { + "surface": "矢車菊", + "readging": "やぐるまぎく", + "pos": "名詞", + "pn": -0.446174 + }, + { + "surface": "令室", + "readging": "れいしつ", + "pos": "名詞", + "pn": -0.446181 + }, + { + "surface": "命数", + "readging": "めいすう", + "pos": "名詞", + "pn": -0.446201 + }, + { + "surface": "腕首", + "readging": "うでくび", + "pos": "名詞", + "pn": -0.446205 + }, + { + "surface": "バーレスク", + "readging": "バーレスク", + "pos": "名詞", + "pn": -0.446207 + }, + { + "surface": "自問", + "readging": "じもん", + "pos": "名詞", + "pn": -0.446207 + }, + { + "surface": "干渉", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.446224 + }, + { + "surface": "獣脂", + "readging": "じゅうし", + "pos": "名詞", + "pn": -0.446233 + }, + { + "surface": "プロムナード", + "readging": "プロムナード", + "pos": "名詞", + "pn": -0.446262 + }, + { + "surface": "当て無し", + "readging": "あてなし", + "pos": "名詞", + "pn": -0.44627 + }, + { + "surface": "論法", + "readging": "ろんぽう", + "pos": "名詞", + "pn": -0.446276 + }, + { + "surface": "後味", + "readging": "あとあじ", + "pos": "名詞", + "pn": -0.4463 + }, + { + "surface": "メルヘン", + "readging": "メルヘン", + "pos": "名詞", + "pn": -0.446305 + }, + { + "surface": "レモン水", + "readging": "レモンすい", + "pos": "名詞", + "pn": -0.446307 + }, + { + "surface": "祖業", + "readging": "そぎょう", + "pos": "名詞", + "pn": -0.446326 + }, + { + "surface": "台詞回し", + "readging": "せりふまわし", + "pos": "名詞", + "pn": -0.446326 + }, + { + "surface": "足腰", + "readging": "あしこし", + "pos": "名詞", + "pn": -0.446353 + }, + { + "surface": "入江", + "readging": "いりえ", + "pos": "名詞", + "pn": -0.446355 + }, + { + "surface": "正絹", + "readging": "しょうけん", + "pos": "名詞", + "pn": -0.446355 + }, + { + "surface": "殿", + "readging": "どの", + "pos": "名詞", + "pn": -0.446357 + }, + { + "surface": "LSI", + "readging": "エルエスアイ", + "pos": "名詞", + "pn": -0.446362 + }, + { + "surface": "二の膳", + "readging": "にのぜん", + "pos": "名詞", + "pn": -0.446365 + }, + { + "surface": "千羽鶴", + "readging": "せんばづる", + "pos": "名詞", + "pn": -0.446367 + }, + { + "surface": "光蘚", + "readging": "ひかりごけ", + "pos": "名詞", + "pn": -0.446372 + }, + { + "surface": "原注", + "readging": "げんちゅう", + "pos": "名詞", + "pn": -0.44638 + }, + { + "surface": "煮立てる", + "readging": "にたてる", + "pos": "動詞", + "pn": -0.446392 + }, + { + "surface": "差遣わす", + "readging": "さしつかわす", + "pos": "動詞", + "pn": -0.446412 + }, + { + "surface": "死後硬直", + "readging": "しごこうちょく", + "pos": "名詞", + "pn": -0.446422 + }, + { + "surface": "仮処分", + "readging": "かりしょぶん", + "pos": "名詞", + "pn": -0.446435 + }, + { + "surface": "人目", + "readging": "ひとめ", + "pos": "名詞", + "pn": -0.446456 + }, + { + "surface": "スーブニール", + "readging": "スーブニール", + "pos": "名詞", + "pn": -0.446475 + }, + { + "surface": "本名", + "readging": "ほんみょう", + "pos": "名詞", + "pn": -0.446486 + }, + { + "surface": "お太鼓", + "readging": "おたいこ", + "pos": "名詞", + "pn": -0.44649 + }, + { + "surface": "秣", + "readging": "まぐさ", + "pos": "名詞", + "pn": -0.446493 + }, + { + "surface": "区処", + "readging": "くしょ", + "pos": "名詞", + "pn": -0.4465 + }, + { + "surface": "マガジン", + "readging": "マガジン", + "pos": "名詞", + "pn": -0.446511 + }, + { + "surface": "タンポン", + "readging": "タンポン", + "pos": "名詞", + "pn": -0.446514 + }, + { + "surface": "暗紫色", + "readging": "あんししょく", + "pos": "名詞", + "pn": -0.446539 + }, + { + "surface": "夜盗虫", + "readging": "よとうむし", + "pos": "名詞", + "pn": -0.446544 + }, + { + "surface": "店先", + "readging": "みせさき", + "pos": "名詞", + "pn": -0.446545 + }, + { + "surface": "緇素", + "readging": "しそ", + "pos": "名詞", + "pn": -0.446547 + }, + { + "surface": "油土", + "readging": "ゆど", + "pos": "名詞", + "pn": -0.446548 + }, + { + "surface": "マント", + "readging": "マント", + "pos": "名詞", + "pn": -0.446548 + }, + { + "surface": "水鉄砲", + "readging": "みずでっぽう", + "pos": "名詞", + "pn": -0.446555 + }, + { + "surface": "憚る", + "readging": "はばかる", + "pos": "動詞", + "pn": -0.446578 + }, + { + "surface": "揮発", + "readging": "きはつ", + "pos": "名詞", + "pn": -0.446579 + }, + { + "surface": "言い草", + "readging": "いいぐさ", + "pos": "名詞", + "pn": -0.446597 + }, + { + "surface": "虚栄心", + "readging": "きょえいしん", + "pos": "名詞", + "pn": -0.446605 + }, + { + "surface": "ささめく", + "readging": "ささめく", + "pos": "動詞", + "pn": -0.446609 + }, + { + "surface": "四手網", + "readging": "よつであみ", + "pos": "名詞", + "pn": -0.446619 + }, + { + "surface": "貝", + "readging": "かい", + "pos": "名詞", + "pn": -0.446626 + }, + { + "surface": "賓客", + "readging": "ひんきゃく", + "pos": "名詞", + "pn": -0.44664 + }, + { + "surface": "裏漉し", + "readging": "うらごし", + "pos": "名詞", + "pn": -0.446659 + }, + { + "surface": "一七日", + "readging": "いちしちにち", + "pos": "名詞", + "pn": -0.446662 + }, + { + "surface": "童蒙", + "readging": "どうもう", + "pos": "名詞", + "pn": -0.446672 + }, + { + "surface": "白土", + "readging": "はくど", + "pos": "名詞", + "pn": -0.446674 + }, + { + "surface": "手下", + "readging": "てした", + "pos": "名詞", + "pn": -0.446679 + }, + { + "surface": "ちらちら", + "readging": "ちらちら", + "pos": "副詞", + "pn": -0.446682 + }, + { + "surface": "弁証法", + "readging": "べんしょうほう", + "pos": "名詞", + "pn": -0.44669 + }, + { + "surface": "ゼラニウム", + "readging": "ゼラニウム", + "pos": "名詞", + "pn": -0.446705 + }, + { + "surface": "格", + "readging": "きゃく", + "pos": "名詞", + "pn": -0.446705 + }, + { + "surface": "火元", + "readging": "ひもと", + "pos": "名詞", + "pn": -0.446708 + }, + { + "surface": "蛙股", + "readging": "かえるまた", + "pos": "名詞", + "pn": -0.446722 + }, + { + "surface": "追従", + "readging": "ついじゅう", + "pos": "名詞", + "pn": -0.446734 + }, + { + "surface": "化石", + "readging": "かせき", + "pos": "名詞", + "pn": -0.446744 + }, + { + "surface": "爪牙", + "readging": "そうが", + "pos": "名詞", + "pn": -0.446762 + }, + { + "surface": "ピリオド", + "readging": "ピリオド", + "pos": "名詞", + "pn": -0.446802 + }, + { + "surface": "残響", + "readging": "ざんきょう", + "pos": "名詞", + "pn": -0.446842 + }, + { + "surface": "未然", + "readging": "みぜん", + "pos": "名詞", + "pn": -0.446859 + }, + { + "surface": "繭", + "readging": "けん", + "pos": "名詞", + "pn": -0.446863 + }, + { + "surface": "カタストロフィー", + "readging": "カタストロフィー", + "pos": "名詞", + "pn": -0.446867 + }, + { + "surface": "質屋", + "readging": "しちや", + "pos": "名詞", + "pn": -0.446868 + }, + { + "surface": "非公開", + "readging": "ひこうかい", + "pos": "名詞", + "pn": -0.446868 + }, + { + "surface": "御高祖頭巾", + "readging": "おこそずきん", + "pos": "名詞", + "pn": -0.446881 + }, + { + "surface": "誑し込む", + "readging": "たらしこむ", + "pos": "動詞", + "pn": -0.446886 + }, + { + "surface": "減り込む", + "readging": "めりこむ", + "pos": "動詞", + "pn": -0.446898 + }, + { + "surface": "ひやりと", + "readging": "ひやりと", + "pos": "副詞", + "pn": -0.446914 + }, + { + "surface": "スピンドル", + "readging": "スピンドル", + "pos": "名詞", + "pn": -0.446939 + }, + { + "surface": "無臭", + "readging": "むしゅう", + "pos": "名詞", + "pn": -0.446949 + }, + { + "surface": "体液", + "readging": "たいえき", + "pos": "名詞", + "pn": -0.446951 + }, + { + "surface": "脚力", + "readging": "きゃくりょく", + "pos": "名詞", + "pn": -0.446951 + }, + { + "surface": "雨間", + "readging": "あまあい", + "pos": "名詞", + "pn": -0.446955 + }, + { + "surface": "暴言", + "readging": "ぼうげん", + "pos": "名詞", + "pn": -0.446961 + }, + { + "surface": "小間物", + "readging": "こまもの", + "pos": "名詞", + "pn": -0.446998 + }, + { + "surface": "上客", + "readging": "じょうきゃく", + "pos": "名詞", + "pn": -0.447001 + }, + { + "surface": "絽", + "readging": "ろ", + "pos": "名詞", + "pn": -0.447016 + }, + { + "surface": "パレード", + "readging": "パレード", + "pos": "名詞", + "pn": -0.447032 + }, + { + "surface": "雑費", + "readging": "ざっぴ", + "pos": "名詞", + "pn": -0.447047 + }, + { + "surface": "仕切書", + "readging": "しきりしょ", + "pos": "名詞", + "pn": -0.447057 + }, + { + "surface": "むしゃむしゃ", + "readging": "むしゃむしゃ", + "pos": "副詞", + "pn": -0.447087 + }, + { + "surface": "搾め木", + "readging": "しめぎ", + "pos": "名詞", + "pn": -0.447093 + }, + { + "surface": "如何せん", + "readging": "いかんせん", + "pos": "副詞", + "pn": -0.447109 + }, + { + "surface": "パパ", + "readging": "パパ", + "pos": "名詞", + "pn": -0.447121 + }, + { + "surface": "検視", + "readging": "けんし", + "pos": "名詞", + "pn": -0.447132 + }, + { + "surface": "関心", + "readging": "かんしん", + "pos": "名詞", + "pn": -0.447139 + }, + { + "surface": "天竺", + "readging": "てんじく", + "pos": "名詞", + "pn": -0.44714 + }, + { + "surface": "逆産", + "readging": "ぎゃくざん", + "pos": "名詞", + "pn": -0.447185 + }, + { + "surface": "策動", + "readging": "さくどう", + "pos": "名詞", + "pn": -0.4472 + }, + { + "surface": "数多", + "readging": "すうた", + "pos": "副詞", + "pn": -0.447203 + }, + { + "surface": "手招き", + "readging": "てまねき", + "pos": "名詞", + "pn": -0.447232 + }, + { + "surface": "特称", + "readging": "とくしょう", + "pos": "名詞", + "pn": -0.447235 + }, + { + "surface": "メガホン", + "readging": "メガホン", + "pos": "名詞", + "pn": -0.447238 + }, + { + "surface": "制止", + "readging": "せいし", + "pos": "名詞", + "pn": -0.447239 + }, + { + "surface": "税率", + "readging": "ぜいりつ", + "pos": "名詞", + "pn": -0.447246 + }, + { + "surface": "案じる", + "readging": "あんじる", + "pos": "動詞", + "pn": -0.447247 + }, + { + "surface": "挿絵", + "readging": "さしえ", + "pos": "名詞", + "pn": -0.44725 + }, + { + "surface": "メッカ", + "readging": "メッカ", + "pos": "名詞", + "pn": -0.447253 + }, + { + "surface": "藪", + "readging": "やぶ", + "pos": "名詞", + "pn": -0.447269 + }, + { + "surface": "座骨", + "readging": "ざこつ", + "pos": "名詞", + "pn": -0.447275 + }, + { + "surface": "世紀", + "readging": "せいき", + "pos": "名詞", + "pn": -0.447297 + }, + { + "surface": "羽根車", + "readging": "はねぐるま", + "pos": "名詞", + "pn": -0.447298 + }, + { + "surface": "弔客", + "readging": "ちょうかく", + "pos": "名詞", + "pn": -0.447316 + }, + { + "surface": "岩塩", + "readging": "がんえん", + "pos": "名詞", + "pn": -0.447317 + }, + { + "surface": "元詰", + "readging": "もとづめ", + "pos": "名詞", + "pn": -0.447322 + }, + { + "surface": "ジャンプ", + "readging": "ジャンプ", + "pos": "名詞", + "pn": -0.447352 + }, + { + "surface": "ミスター", + "readging": "ミスター", + "pos": "名詞", + "pn": -0.447362 + }, + { + "surface": "逆算", + "readging": "ぎゃくさん", + "pos": "名詞", + "pn": -0.447364 + }, + { + "surface": "粗笨", + "readging": "そほん", + "pos": "名詞", + "pn": -0.447375 + }, + { + "surface": "楮", + "readging": "こうぞ", + "pos": "名詞", + "pn": -0.447379 + }, + { + "surface": "染返す", + "readging": "そめかえす", + "pos": "動詞", + "pn": -0.447391 + }, + { + "surface": "私憤", + "readging": "しふん", + "pos": "名詞", + "pn": -0.447392 + }, + { + "surface": "小別", + "readging": "しょうべつ", + "pos": "名詞", + "pn": -0.447441 + }, + { + "surface": "稚魚", + "readging": "ちぎょ", + "pos": "名詞", + "pn": -0.447467 + }, + { + "surface": "アップル パイ", + "readging": "アップル パイ", + "pos": "名詞", + "pn": -0.44749 + }, + { + "surface": "腹痛", + "readging": "ふくつう", + "pos": "名詞", + "pn": -0.4475 + }, + { + "surface": "フロッピー", + "readging": "フロッピー", + "pos": "名詞", + "pn": -0.447503 + }, + { + "surface": "値切る", + "readging": "ねぎる", + "pos": "動詞", + "pn": -0.447504 + }, + { + "surface": "谷間", + "readging": "たにま", + "pos": "名詞", + "pn": -0.447512 + }, + { + "surface": "収差", + "readging": "しゅうさ", + "pos": "名詞", + "pn": -0.447523 + }, + { + "surface": "就寝", + "readging": "しゅうしん", + "pos": "名詞", + "pn": -0.447533 + }, + { + "surface": "干与", + "readging": "かんよ", + "pos": "名詞", + "pn": -0.447542 + }, + { + "surface": "弧", + "readging": "こ", + "pos": "名詞", + "pn": -0.447544 + }, + { + "surface": "行路", + "readging": "こうろ", + "pos": "名詞", + "pn": -0.447545 + }, + { + "surface": "手回り", + "readging": "てまわり", + "pos": "名詞", + "pn": -0.447547 + }, + { + "surface": "復位", + "readging": "ふくい", + "pos": "名詞", + "pn": -0.44756 + }, + { + "surface": "熱狂", + "readging": "ねっきょう", + "pos": "名詞", + "pn": -0.447565 + }, + { + "surface": "陰茎", + "readging": "いんけい", + "pos": "名詞", + "pn": -0.447565 + }, + { + "surface": "妥結", + "readging": "だけつ", + "pos": "名詞", + "pn": -0.447588 + }, + { + "surface": "心配り", + "readging": "こころくばり", + "pos": "名詞", + "pn": -0.447597 + }, + { + "surface": "拵え", + "readging": "こしらえ", + "pos": "名詞", + "pn": -0.447628 + }, + { + "surface": "近付く", + "readging": "ちかづく", + "pos": "動詞", + "pn": -0.447644 + }, + { + "surface": "抑留", + "readging": "よくりゅう", + "pos": "名詞", + "pn": -0.447644 + }, + { + "surface": "誣言", + "readging": "ぶげん", + "pos": "名詞", + "pn": -0.447651 + }, + { + "surface": "見て取る", + "readging": "みてとる", + "pos": "動詞", + "pn": -0.447681 + }, + { + "surface": "投下", + "readging": "とうか", + "pos": "名詞", + "pn": -0.447689 + }, + { + "surface": "術", + "readging": "じゅつ", + "pos": "名詞", + "pn": -0.447699 + }, + { + "surface": "年月", + "readging": "としつき", + "pos": "名詞", + "pn": -0.44775 + }, + { + "surface": "スルフォンアミド剤", + "readging": "スルフォンアミドざい", + "pos": "名詞", + "pn": -0.447751 + }, + { + "surface": "稚児輪", + "readging": "ちごわ", + "pos": "名詞", + "pn": -0.44777 + }, + { + "surface": "汲出す", + "readging": "くみだす", + "pos": "動詞", + "pn": -0.447778 + }, + { + "surface": "指摘", + "readging": "してき", + "pos": "名詞", + "pn": -0.447796 + }, + { + "surface": "日の丸", + "readging": "ひのまる", + "pos": "名詞", + "pn": -0.447798 + }, + { + "surface": "戸籍", + "readging": "こせき", + "pos": "名詞", + "pn": -0.447817 + }, + { + "surface": "小楯", + "readging": "こだて", + "pos": "名詞", + "pn": -0.447823 + }, + { + "surface": "状差", + "readging": "じょうさし", + "pos": "名詞", + "pn": -0.447832 + }, + { + "surface": "一塩", + "readging": "ひとしお", + "pos": "名詞", + "pn": -0.447837 + }, + { + "surface": "グラフ", + "readging": "グラフ", + "pos": "名詞", + "pn": -0.447839 + }, + { + "surface": "スコラ哲学", + "readging": "スコラてつがく", + "pos": "名詞", + "pn": -0.447845 + }, + { + "surface": "ジャック", + "readging": "ジャックナイフ", + "pos": "名詞", + "pn": -0.447856 + }, + { + "surface": "ぽつりぽつり", + "readging": "ぽつりぽつり", + "pos": "副詞", + "pn": -0.447866 + }, + { + "surface": "草花", + "readging": "くさばな", + "pos": "名詞", + "pn": -0.447877 + }, + { + "surface": "人命", + "readging": "じんめい", + "pos": "名詞", + "pn": -0.447882 + }, + { + "surface": "花筒", + "readging": "はなづつ", + "pos": "名詞", + "pn": -0.447898 + }, + { + "surface": "白骨", + "readging": "はっこつ", + "pos": "名詞", + "pn": -0.447919 + }, + { + "surface": "八手", + "readging": "やつで", + "pos": "名詞", + "pn": -0.447924 + }, + { + "surface": "侵出", + "readging": "しんしゅつ", + "pos": "名詞", + "pn": -0.44793 + }, + { + "surface": "打粉", + "readging": "うちこ", + "pos": "名詞", + "pn": -0.447933 + }, + { + "surface": "軍艦", + "readging": "ぐんかん", + "pos": "名詞", + "pn": -0.448026 + }, + { + "surface": "下し薬", + "readging": "くだしぐすり", + "pos": "名詞", + "pn": -0.448038 + }, + { + "surface": "甘塩", + "readging": "あまじお", + "pos": "名詞", + "pn": -0.448039 + }, + { + "surface": "追撃", + "readging": "ついげき", + "pos": "名詞", + "pn": -0.44805 + }, + { + "surface": "胃壁", + "readging": "いへき", + "pos": "名詞", + "pn": -0.448052 + }, + { + "surface": "没前", + "readging": "ぼつぜん", + "pos": "名詞", + "pn": -0.448067 + }, + { + "surface": "脳卒中", + "readging": "のうそっちゅう", + "pos": "名詞", + "pn": -0.448071 + }, + { + "surface": "相手取る", + "readging": "あいて", + "pos": "動詞", + "pn": -0.448073 + }, + { + "surface": "伊呂波歌留多", + "readging": "いろはガルタ", + "pos": "名詞", + "pn": -0.448077 + }, + { + "surface": "どさくさ", + "readging": "どさくさ", + "pos": "名詞", + "pn": -0.448081 + }, + { + "surface": "徒党", + "readging": "ととう", + "pos": "名詞", + "pn": -0.448091 + }, + { + "surface": "パー", + "readging": "パー", + "pos": "名詞", + "pn": -0.4481 + }, + { + "surface": "往時", + "readging": "おうじ", + "pos": "名詞", + "pn": -0.448132 + }, + { + "surface": "後引き", + "readging": "あとひき", + "pos": "名詞", + "pn": -0.448137 + }, + { + "surface": "政商", + "readging": "せいしょう", + "pos": "名詞", + "pn": -0.448139 + }, + { + "surface": "扉絵", + "readging": "とびらえ", + "pos": "名詞", + "pn": -0.448147 + }, + { + "surface": "旅籠", + "readging": "はたご", + "pos": "名詞", + "pn": -0.44819 + }, + { + "surface": "郷里", + "readging": "きょうり", + "pos": "名詞", + "pn": -0.448198 + }, + { + "surface": "ナイト", + "readging": "ナイト", + "pos": "名詞", + "pn": -0.448217 + }, + { + "surface": "膝枕", + "readging": "ひざまくら", + "pos": "名詞", + "pn": -0.448218 + }, + { + "surface": "補遺", + "readging": "ほい", + "pos": "名詞", + "pn": -0.448234 + }, + { + "surface": "水飴", + "readging": "みずあめ", + "pos": "名詞", + "pn": -0.448242 + }, + { + "surface": "百合鴎", + "readging": "ゆりかもめ", + "pos": "名詞", + "pn": -0.448245 + }, + { + "surface": "垂範", + "readging": "すいはん", + "pos": "名詞", + "pn": -0.448246 + }, + { + "surface": "盈虚", + "readging": "えいきょ", + "pos": "名詞", + "pn": -0.448251 + }, + { + "surface": "鋤き起す", + "readging": "すきおこす", + "pos": "動詞", + "pn": -0.448273 + }, + { + "surface": "白粉焼け", + "readging": "おしろいやけ", + "pos": "名詞", + "pn": -0.448278 + }, + { + "surface": "判じ物", + "readging": "はんじもの", + "pos": "名詞", + "pn": -0.44829 + }, + { + "surface": "焼失", + "readging": "しょうしつ", + "pos": "名詞", + "pn": -0.44832 + }, + { + "surface": "御飯", + "readging": "ごはん", + "pos": "名詞", + "pn": -0.448354 + }, + { + "surface": "縞織", + "readging": "しまおり", + "pos": "名詞", + "pn": -0.448355 + }, + { + "surface": "使わしめ", + "readging": "つかわしめ", + "pos": "名詞", + "pn": -0.448368 + }, + { + "surface": "足並", + "readging": "あしなみ", + "pos": "名詞", + "pn": -0.448371 + }, + { + "surface": "めじ", + "readging": "めじ", + "pos": "名詞", + "pn": -0.448375 + }, + { + "surface": "地平線", + "readging": "ちへいせん", + "pos": "名詞", + "pn": -0.448391 + }, + { + "surface": "夜前", + "readging": "やぜん", + "pos": "名詞", + "pn": -0.448397 + }, + { + "surface": "葉蘭", + "readging": "はらん", + "pos": "名詞", + "pn": -0.448403 + }, + { + "surface": "手回し", + "readging": "てまわし", + "pos": "名詞", + "pn": -0.448404 + }, + { + "surface": "艶布巾", + "readging": "つやぶきん", + "pos": "名詞", + "pn": -0.448413 + }, + { + "surface": "カートン", + "readging": "カートン", + "pos": "名詞", + "pn": -0.448416 + }, + { + "surface": "いきりたつ", + "readging": "いきりたつ", + "pos": "動詞", + "pn": -0.448433 + }, + { + "surface": "シルク", + "readging": "シルクハット", + "pos": "名詞", + "pn": -0.448438 + }, + { + "surface": "親譲り", + "readging": "おやゆずり", + "pos": "名詞", + "pn": -0.44844 + }, + { + "surface": "月並", + "readging": "つきなみ", + "pos": "名詞", + "pn": -0.44845 + }, + { + "surface": "フォア", + "readging": "フォア", + "pos": "名詞", + "pn": -0.448482 + }, + { + "surface": "チャルメラ", + "readging": "チャルメラ", + "pos": "名詞", + "pn": -0.448509 + }, + { + "surface": "肌襦袢", + "readging": "はだジバン", + "pos": "名詞", + "pn": -0.448509 + }, + { + "surface": "合判", + "readging": "あいはん", + "pos": "名詞", + "pn": -0.448522 + }, + { + "surface": "スプリンクラー", + "readging": "スプリンクラー", + "pos": "名詞", + "pn": -0.448534 + }, + { + "surface": "ぱくつく", + "readging": "ぱくつく", + "pos": "動詞", + "pn": -0.448547 + }, + { + "surface": "一向", + "readging": "いっこう", + "pos": "副詞", + "pn": -0.448548 + }, + { + "surface": "すぎわい", + "readging": "すぎわい", + "pos": "名詞", + "pn": -0.448552 + }, + { + "surface": "従える", + "readging": "したがえる", + "pos": "動詞", + "pn": -0.448562 + }, + { + "surface": "野戦病院", + "readging": "やせんびょういん", + "pos": "名詞", + "pn": -0.448566 + }, + { + "surface": "ポーズ", + "readging": "ポーズ", + "pos": "名詞", + "pn": -0.448572 + }, + { + "surface": "産湯", + "readging": "うぶゆ", + "pos": "名詞", + "pn": -0.448575 + }, + { + "surface": "警護", + "readging": "けいご", + "pos": "名詞", + "pn": -0.448583 + }, + { + "surface": "下げ", + "readging": "さげ", + "pos": "名詞", + "pn": -0.448586 + }, + { + "surface": "相方", + "readging": "あいかた", + "pos": "名詞", + "pn": -0.448607 + }, + { + "surface": "水木", + "readging": "みずき", + "pos": "名詞", + "pn": -0.44862 + }, + { + "surface": "マネー", + "readging": "マネー", + "pos": "名詞", + "pn": -0.448625 + }, + { + "surface": "下げ前髪", + "readging": "さげまえがみ", + "pos": "名詞", + "pn": -0.448673 + }, + { + "surface": "盛殺す", + "readging": "もりころす", + "pos": "動詞", + "pn": -0.448709 + }, + { + "surface": "伏する", + "readging": "ふくする", + "pos": "動詞", + "pn": -0.448709 + }, + { + "surface": "飴玉", + "readging": "あめだま", + "pos": "名詞", + "pn": -0.448728 + }, + { + "surface": "羊羹", + "readging": "ようかん", + "pos": "名詞", + "pn": -0.448729 + }, + { + "surface": "紐解く", + "readging": "ひもとく", + "pos": "動詞", + "pn": -0.448737 + }, + { + "surface": "正味", + "readging": "しょうみ", + "pos": "名詞", + "pn": -0.44875 + }, + { + "surface": "霖雨", + "readging": "りんう", + "pos": "名詞", + "pn": -0.448752 + }, + { + "surface": "逆夢", + "readging": "さかゆめ", + "pos": "名詞", + "pn": -0.448758 + }, + { + "surface": "羊頭", + "readging": "ようとう", + "pos": "名詞", + "pn": -0.448759 + }, + { + "surface": "唐鍬", + "readging": "とうぐわ", + "pos": "名詞", + "pn": -0.44877 + }, + { + "surface": "擬餌", + "readging": "ぎじ", + "pos": "名詞", + "pn": -0.448772 + }, + { + "surface": "朝帰り", + "readging": "あさがえり", + "pos": "名詞", + "pn": -0.448787 + }, + { + "surface": "渡り歩く", + "readging": "わたりあるく", + "pos": "動詞", + "pn": -0.448793 + }, + { + "surface": "マットレス", + "readging": "マットレス", + "pos": "名詞", + "pn": -0.448796 + }, + { + "surface": "車", + "readging": "くるま", + "pos": "名詞", + "pn": -0.448797 + }, + { + "surface": "曇", + "readging": "くもり", + "pos": "名詞", + "pn": -0.448804 + }, + { + "surface": "動態", + "readging": "どうたい", + "pos": "名詞", + "pn": -0.448809 + }, + { + "surface": "マリファナ", + "readging": "マリファナ", + "pos": "名詞", + "pn": -0.448869 + }, + { + "surface": "スリッパ", + "readging": "スリッパ", + "pos": "名詞", + "pn": -0.448911 + }, + { + "surface": "薄日", + "readging": "うすび", + "pos": "名詞", + "pn": -0.448921 + }, + { + "surface": "照影", + "readging": "しょうえい", + "pos": "名詞", + "pn": -0.448987 + }, + { + "surface": "群集", + "readging": "ぐんしゅう", + "pos": "名詞", + "pn": -0.448989 + }, + { + "surface": "屡報", + "readging": "るほう", + "pos": "名詞", + "pn": -0.44899 + }, + { + "surface": "梨", + "readging": "り", + "pos": "名詞", + "pn": -0.448999 + }, + { + "surface": "軒端", + "readging": "のきば", + "pos": "名詞", + "pn": -0.449001 + }, + { + "surface": "不敏", + "readging": "ふびん", + "pos": "名詞", + "pn": -0.449015 + }, + { + "surface": "機関銃", + "readging": "きかんじゅう", + "pos": "名詞", + "pn": -0.449017 + }, + { + "surface": "スパルタ式", + "readging": "スパルタしき", + "pos": "名詞", + "pn": -0.449025 + }, + { + "surface": "お多福", + "readging": "おたふく", + "pos": "名詞", + "pn": -0.44904 + }, + { + "surface": "川下", + "readging": "かわしも", + "pos": "名詞", + "pn": -0.449044 + }, + { + "surface": "作品", + "readging": "さくひん", + "pos": "名詞", + "pn": -0.449062 + }, + { + "surface": "請暇", + "readging": "せいか", + "pos": "名詞", + "pn": -0.449081 + }, + { + "surface": "頂く", + "readging": "いただく", + "pos": "動詞", + "pn": -0.449103 + }, + { + "surface": "牡蠣", + "readging": "かき", + "pos": "名詞", + "pn": -0.449129 + }, + { + "surface": "設置", + "readging": "せっち", + "pos": "名詞", + "pn": -0.449168 + }, + { + "surface": "二杯酢", + "readging": "にはいず", + "pos": "名詞", + "pn": -0.449173 + }, + { + "surface": "ベンガラ", + "readging": "ベンガラ", + "pos": "名詞", + "pn": -0.449175 + }, + { + "surface": "尊来", + "readging": "そんらい", + "pos": "名詞", + "pn": -0.449177 + }, + { + "surface": "居所", + "readging": "いどころ", + "pos": "名詞", + "pn": -0.449193 + }, + { + "surface": "腰だめ", + "readging": "こしだめ", + "pos": "名詞", + "pn": -0.449203 + }, + { + "surface": "伴走", + "readging": "ばんそう", + "pos": "名詞", + "pn": -0.449205 + }, + { + "surface": "被子植物", + "readging": "ひししょくぶつ", + "pos": "名詞", + "pn": -0.449208 + }, + { + "surface": "昇殿", + "readging": "しょうでん", + "pos": "名詞", + "pn": -0.449208 + }, + { + "surface": "五月躑躅", + "readging": "さつきつつじ", + "pos": "名詞", + "pn": -0.449208 + }, + { + "surface": "大数", + "readging": "たいすう", + "pos": "名詞", + "pn": -0.449211 + }, + { + "surface": "通し", + "readging": "とおし", + "pos": "名詞", + "pn": -0.449227 + }, + { + "surface": "ジャイロスコープ", + "readging": "ジャイロスコープ", + "pos": "名詞", + "pn": -0.449258 + }, + { + "surface": "入れ込む", + "readging": "いれこむ", + "pos": "動詞", + "pn": -0.449303 + }, + { + "surface": "マッチ", + "readging": "マッチポイント", + "pos": "名詞", + "pn": -0.449315 + }, + { + "surface": "含み", + "readging": "ふくみ", + "pos": "名詞", + "pn": -0.449324 + }, + { + "surface": "公魚", + "readging": "わかさぎ", + "pos": "名詞", + "pn": -0.449337 + }, + { + "surface": "軈て", + "readging": "やがて", + "pos": "副詞", + "pn": -0.449344 + }, + { + "surface": "薄らぐ", + "readging": "うすらぐ", + "pos": "動詞", + "pn": -0.449345 + }, + { + "surface": "ぶっ飛ばす", + "readging": "ぶっとばす", + "pos": "動詞", + "pn": -0.449347 + }, + { + "surface": "くるくる", + "readging": "くるくる", + "pos": "副詞", + "pn": -0.449353 + }, + { + "surface": "禁固", + "readging": "きんこ", + "pos": "名詞", + "pn": -0.449408 + }, + { + "surface": "要所", + "readging": "ようしょ", + "pos": "名詞", + "pn": -0.449421 + }, + { + "surface": "抱え込む", + "readging": "かかえこむ", + "pos": "動詞", + "pn": -0.449426 + }, + { + "surface": "繭玉", + "readging": "まゆだま", + "pos": "名詞", + "pn": -0.449435 + }, + { + "surface": "適従", + "readging": "てきじゅう", + "pos": "名詞", + "pn": -0.449438 + }, + { + "surface": "藤四郎", + "readging": "とうしろう", + "pos": "名詞", + "pn": -0.449451 + }, + { + "surface": "論", + "readging": "ろん", + "pos": "名詞", + "pn": -0.449462 + }, + { + "surface": "年がら年中", + "readging": "ねんがらねんじゅう", + "pos": "副詞", + "pn": -0.449468 + }, + { + "surface": "馬謖", + "readging": "ばしょく", + "pos": "名詞", + "pn": -0.449475 + }, + { + "surface": "犬潜り", + "readging": "いぬくぐり", + "pos": "名詞", + "pn": -0.449485 + }, + { + "surface": "エプロン", + "readging": "エプロンステージ", + "pos": "名詞", + "pn": -0.449488 + }, + { + "surface": "神知", + "readging": "しんち", + "pos": "名詞", + "pn": -0.449532 + }, + { + "surface": "起用", + "readging": "きよう", + "pos": "名詞", + "pn": -0.449557 + }, + { + "surface": "松葉菊", + "readging": "まつばぎく", + "pos": "名詞", + "pn": -0.449571 + }, + { + "surface": "ローマ字", + "readging": "ローマじ", + "pos": "名詞", + "pn": -0.449573 + }, + { + "surface": "江戸紫", + "readging": "えどむらさき", + "pos": "名詞", + "pn": -0.449578 + }, + { + "surface": "五月雨", + "readging": "さみだれ", + "pos": "名詞", + "pn": -0.449579 + }, + { + "surface": "苔清水", + "readging": "こけしみず", + "pos": "名詞", + "pn": -0.449584 + }, + { + "surface": "錯綜", + "readging": "さくそう", + "pos": "名詞", + "pn": -0.449587 + }, + { + "surface": "おつむ", + "readging": "おつむ", + "pos": "名詞", + "pn": -0.449591 + }, + { + "surface": "素顔", + "readging": "すがお", + "pos": "名詞", + "pn": -0.449599 + }, + { + "surface": "請求書", + "readging": "せいきゅうしょ", + "pos": "名詞", + "pn": -0.449603 + }, + { + "surface": "暦本", + "readging": "れきほん", + "pos": "名詞", + "pn": -0.449638 + }, + { + "surface": "ポンス", + "readging": "ポンス", + "pos": "名詞", + "pn": -0.449638 + }, + { + "surface": "泥剤", + "readging": "でいざい", + "pos": "名詞", + "pn": -0.449646 + }, + { + "surface": "逃亡", + "readging": "とうぼう", + "pos": "名詞", + "pn": -0.449683 + }, + { + "surface": "銃殺", + "readging": "じゅうさつ", + "pos": "名詞", + "pn": -0.449692 + }, + { + "surface": "月評", + "readging": "げっぴょう", + "pos": "名詞", + "pn": -0.449696 + }, + { + "surface": "酒甕", + "readging": "さかがめ", + "pos": "名詞", + "pn": -0.44971 + }, + { + "surface": "帷幕", + "readging": "いばく", + "pos": "名詞", + "pn": -0.449737 + }, + { + "surface": "マルクス主義", + "readging": "マルクスしゅぎ", + "pos": "名詞", + "pn": -0.449745 + }, + { + "surface": "随所", + "readging": "ずいしょ", + "pos": "名詞", + "pn": -0.449748 + }, + { + "surface": "塞外", + "readging": "さいがい", + "pos": "名詞", + "pn": -0.449758 + }, + { + "surface": "虎の尾", + "readging": "とらのお", + "pos": "名詞", + "pn": -0.449762 + }, + { + "surface": "贈呈", + "readging": "ぞうてい", + "pos": "名詞", + "pn": -0.449771 + }, + { + "surface": "腹下し", + "readging": "はらくだし", + "pos": "名詞", + "pn": -0.449776 + }, + { + "surface": "滞貨", + "readging": "たいか", + "pos": "名詞", + "pn": -0.449789 + }, + { + "surface": "剰余", + "readging": "じょうよ", + "pos": "名詞", + "pn": -0.449798 + }, + { + "surface": "絵像", + "readging": "えぞう", + "pos": "名詞", + "pn": -0.449801 + }, + { + "surface": "放下", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.449802 + }, + { + "surface": "舌触り", + "readging": "したざわり", + "pos": "名詞", + "pn": -0.449808 + }, + { + "surface": "平明", + "readging": "へいめい", + "pos": "名詞", + "pn": -0.449815 + }, + { + "surface": "いらっしゃる", + "readging": "いらっしゃる", + "pos": "動詞", + "pn": -0.44982 + }, + { + "surface": "シャークスキン", + "readging": "シャークスキン", + "pos": "名詞", + "pn": -0.449829 + }, + { + "surface": "廃止", + "readging": "はいし", + "pos": "名詞", + "pn": -0.449836 + }, + { + "surface": "足跡", + "readging": "あしあと", + "pos": "名詞", + "pn": -0.449858 + }, + { + "surface": "訴え", + "readging": "うったえ", + "pos": "名詞", + "pn": -0.449861 + }, + { + "surface": "供奉", + "readging": "ぐぶ", + "pos": "名詞", + "pn": -0.449868 + }, + { + "surface": "談ずる", + "readging": "だんずる", + "pos": "動詞", + "pn": -0.449868 + }, + { + "surface": "有", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.449882 + }, + { + "surface": "コール タール", + "readging": "コール タール", + "pos": "名詞", + "pn": -0.449906 + }, + { + "surface": "見方", + "readging": "みかた", + "pos": "名詞", + "pn": -0.449921 + }, + { + "surface": "見付ける", + "readging": "みつける", + "pos": "動詞", + "pn": -0.449935 + }, + { + "surface": "入墨", + "readging": "いれずみ", + "pos": "名詞", + "pn": -0.449942 + }, + { + "surface": "欅", + "readging": "けやき", + "pos": "名詞", + "pn": -0.449951 + }, + { + "surface": "菖蒲湯", + "readging": "しょうぶゆ", + "pos": "名詞", + "pn": -0.449965 + }, + { + "surface": "演芸", + "readging": "えんげい", + "pos": "名詞", + "pn": -0.449969 + }, + { + "surface": "染む", + "readging": "そむ", + "pos": "動詞", + "pn": -0.449969 + }, + { + "surface": "フック", + "readging": "フック", + "pos": "名詞", + "pn": -0.450012 + }, + { + "surface": "ギニョール", + "readging": "ギニョール", + "pos": "名詞", + "pn": -0.450014 + }, + { + "surface": "ちゃらつかす", + "readging": "ちゃらつかす", + "pos": "動詞", + "pn": -0.450025 + }, + { + "surface": "所", + "readging": "しょ", + "pos": "名詞", + "pn": -0.450027 + }, + { + "surface": "製する", + "readging": "せいする", + "pos": "動詞", + "pn": -0.450027 + }, + { + "surface": "急報", + "readging": "きゅうほう", + "pos": "名詞", + "pn": -0.450034 + }, + { + "surface": "核酸", + "readging": "かくさん", + "pos": "名詞", + "pn": -0.450045 + }, + { + "surface": "反芻", + "readging": "はんすう", + "pos": "名詞", + "pn": -0.45006 + }, + { + "surface": "横紙", + "readging": "よこがみ", + "pos": "名詞", + "pn": -0.450073 + }, + { + "surface": "産屋", + "readging": "うぶや", + "pos": "名詞", + "pn": -0.450083 + }, + { + "surface": "メロディー", + "readging": "メロディー", + "pos": "名詞", + "pn": -0.450095 + }, + { + "surface": "通知", + "readging": "つうち", + "pos": "名詞", + "pn": -0.450101 + }, + { + "surface": "大車輪", + "readging": "だいしゃりん", + "pos": "名詞", + "pn": -0.450113 + }, + { + "surface": "居留守", + "readging": "いるす", + "pos": "名詞", + "pn": -0.450135 + }, + { + "surface": "公差", + "readging": "こうさ", + "pos": "名詞", + "pn": -0.450151 + }, + { + "surface": "押し切り", + "readging": "おしきり", + "pos": "名詞", + "pn": -0.450158 + }, + { + "surface": "綻びる", + "readging": "ほころびる", + "pos": "動詞", + "pn": -0.450169 + }, + { + "surface": "訪れる", + "readging": "おとずれる", + "pos": "動詞", + "pn": -0.450191 + }, + { + "surface": "申渡す", + "readging": "もうしわたす", + "pos": "動詞", + "pn": -0.450201 + }, + { + "surface": "満天星", + "readging": "どうだんつつじ", + "pos": "名詞", + "pn": -0.450229 + }, + { + "surface": "対抗", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.450245 + }, + { + "surface": "独唱", + "readging": "どくしょう", + "pos": "名詞", + "pn": -0.450264 + }, + { + "surface": "一挙手一投足", + "readging": "いっきょしゅいっとうそく", + "pos": "名詞", + "pn": -0.450293 + }, + { + "surface": "異端", + "readging": "いたん", + "pos": "名詞", + "pn": -0.450299 + }, + { + "surface": "鵲", + "readging": "かささぎ", + "pos": "名詞", + "pn": -0.450344 + }, + { + "surface": "水準", + "readging": "すいじゅん", + "pos": "名詞", + "pn": -0.45036 + }, + { + "surface": "時刻表", + "readging": "じこくひょう", + "pos": "名詞", + "pn": -0.450384 + }, + { + "surface": "曲線", + "readging": "きょくせん", + "pos": "名詞", + "pn": -0.450386 + }, + { + "surface": "階", + "readging": "かい", + "pos": "名詞", + "pn": -0.450392 + }, + { + "surface": "坂", + "readging": "さか", + "pos": "名詞", + "pn": -0.450412 + }, + { + "surface": "椎間板", + "readging": "ついかんばん", + "pos": "名詞", + "pn": -0.450421 + }, + { + "surface": "詳記", + "readging": "しょうき", + "pos": "名詞", + "pn": -0.450436 + }, + { + "surface": "禁制", + "readging": "きんぜい", + "pos": "名詞", + "pn": -0.450446 + }, + { + "surface": "白亜", + "readging": "はくあ", + "pos": "名詞", + "pn": -0.450457 + }, + { + "surface": "斑", + "readging": "ふ", + "pos": "名詞", + "pn": -0.450469 + }, + { + "surface": "過日", + "readging": "かじつ", + "pos": "名詞", + "pn": -0.450492 + }, + { + "surface": "鰐足", + "readging": "わにあし", + "pos": "名詞", + "pn": -0.450528 + }, + { + "surface": "州浜", + "readging": "すはま", + "pos": "名詞", + "pn": -0.450539 + }, + { + "surface": "解凍", + "readging": "かいとう", + "pos": "名詞", + "pn": -0.450543 + }, + { + "surface": "茶杓", + "readging": "ちゃしゃく", + "pos": "名詞", + "pn": -0.450556 + }, + { + "surface": "米", + "readging": "べい", + "pos": "名詞", + "pn": -0.450562 + }, + { + "surface": "スポンジ", + "readging": "スポンジケーキ", + "pos": "名詞", + "pn": -0.450565 + }, + { + "surface": "綾織", + "readging": "あやおり", + "pos": "名詞", + "pn": -0.450572 + }, + { + "surface": "立上げる", + "readging": "たちあげる", + "pos": "動詞", + "pn": -0.450575 + }, + { + "surface": "一縷", + "readging": "いちる", + "pos": "名詞", + "pn": -0.450589 + }, + { + "surface": "卵白", + "readging": "らんぱく", + "pos": "名詞", + "pn": -0.450608 + }, + { + "surface": "嵌る", + "readging": "はまる", + "pos": "動詞", + "pn": -0.450621 + }, + { + "surface": "角い", + "readging": "かくい", + "pos": "形容詞", + "pn": -0.450634 + }, + { + "surface": "唯唯", + "readging": "ただただ", + "pos": "副詞", + "pn": -0.450636 + }, + { + "surface": "鬼薊", + "readging": "おにあざみ", + "pos": "名詞", + "pn": -0.450662 + }, + { + "surface": "北極", + "readging": "ほっきょく", + "pos": "名詞", + "pn": -0.450672 + }, + { + "surface": "子供騙し", + "readging": "こどもだまし", + "pos": "名詞", + "pn": -0.450713 + }, + { + "surface": "減す", + "readging": "へす", + "pos": "動詞", + "pn": -0.450731 + }, + { + "surface": "濾過", + "readging": "ろか", + "pos": "名詞", + "pn": -0.450767 + }, + { + "surface": "曹司", + "readging": "ぞうし", + "pos": "名詞", + "pn": -0.450799 + }, + { + "surface": "段飾り", + "readging": "だんかざり", + "pos": "名詞", + "pn": -0.450812 + }, + { + "surface": "赤茶ける", + "readging": "あかちゃける", + "pos": "動詞", + "pn": -0.450855 + }, + { + "surface": "掛取り", + "readging": "かけとり", + "pos": "名詞", + "pn": -0.450863 + }, + { + "surface": "クリスタル", + "readging": "クリスタル", + "pos": "名詞", + "pn": -0.450868 + }, + { + "surface": "空ろ", + "readging": "うつろ", + "pos": "名詞", + "pn": -0.450871 + }, + { + "surface": "蝸牛角上", + "readging": "かぎゅうかくじょう", + "pos": "名詞", + "pn": -0.450884 + }, + { + "surface": "暴風雨", + "readging": "ぼうふうう", + "pos": "名詞", + "pn": -0.450905 + }, + { + "surface": "構図", + "readging": "こうず", + "pos": "名詞", + "pn": -0.450907 + }, + { + "surface": "ぬかる", + "readging": "ぬかる", + "pos": "動詞", + "pn": -0.450912 + }, + { + "surface": "水船", + "readging": "みずぶね", + "pos": "名詞", + "pn": -0.450918 + }, + { + "surface": "劇談", + "readging": "げきだん", + "pos": "名詞", + "pn": -0.450919 + }, + { + "surface": "指圧", + "readging": "しあつ", + "pos": "名詞", + "pn": -0.450921 + }, + { + "surface": "遠ざける", + "readging": "とおざける", + "pos": "動詞", + "pn": -0.450965 + }, + { + "surface": "客間", + "readging": "きゃくま", + "pos": "名詞", + "pn": -0.451 + }, + { + "surface": "パーキング", + "readging": "パーキング", + "pos": "名詞", + "pn": -0.451002 + }, + { + "surface": "相伝", + "readging": "そうでん", + "pos": "名詞", + "pn": -0.451004 + }, + { + "surface": "踏みこたえる", + "readging": "ふみこたえる", + "pos": "動詞", + "pn": -0.451014 + }, + { + "surface": "義太夫", + "readging": "ぎだゆう", + "pos": "名詞", + "pn": -0.451023 + }, + { + "surface": "縦走", + "readging": "じゅうそう", + "pos": "名詞", + "pn": -0.451024 + }, + { + "surface": "停滞", + "readging": "ていたい", + "pos": "名詞", + "pn": -0.451029 + }, + { + "surface": "円", + "readging": "えん", + "pos": "名詞", + "pn": -0.451035 + }, + { + "surface": "天火", + "readging": "てんぴ", + "pos": "名詞", + "pn": -0.45105 + }, + { + "surface": "不審紙", + "readging": "ふしんがみ", + "pos": "名詞", + "pn": -0.451058 + }, + { + "surface": "目差す", + "readging": "めざす", + "pos": "動詞", + "pn": -0.451061 + }, + { + "surface": "飯盒", + "readging": "はんごう", + "pos": "名詞", + "pn": -0.451066 + }, + { + "surface": "道行", + "readging": "みちゆき", + "pos": "名詞", + "pn": -0.451068 + }, + { + "surface": "峡", + "readging": "きょう", + "pos": "名詞", + "pn": -0.451073 + }, + { + "surface": "鳩首", + "readging": "きゅうしゅ", + "pos": "名詞", + "pn": -0.451079 + }, + { + "surface": "飛回る", + "readging": "とびまわる", + "pos": "動詞", + "pn": -0.451105 + }, + { + "surface": "本節", + "readging": "ほんぶし", + "pos": "名詞", + "pn": -0.451109 + }, + { + "surface": "総員", + "readging": "そういん", + "pos": "名詞", + "pn": -0.451126 + }, + { + "surface": "簡", + "readging": "かん", + "pos": "名詞", + "pn": -0.451158 + }, + { + "surface": "サークル", + "readging": "サークル", + "pos": "名詞", + "pn": -0.451159 + }, + { + "surface": "満潮", + "readging": "まんちょう", + "pos": "名詞", + "pn": -0.45117 + }, + { + "surface": "預託", + "readging": "よたく", + "pos": "名詞", + "pn": -0.45118 + }, + { + "surface": "髭題目", + "readging": "ひげだいもく", + "pos": "名詞", + "pn": -0.451189 + }, + { + "surface": "擦切る", + "readging": "すりきる", + "pos": "動詞", + "pn": -0.451205 + }, + { + "surface": "人前", + "readging": "ひとまえ", + "pos": "名詞", + "pn": -0.451222 + }, + { + "surface": "奔走", + "readging": "ほんそう", + "pos": "名詞", + "pn": -0.451229 + }, + { + "surface": "足す", + "readging": "たす", + "pos": "動詞", + "pn": -0.451232 + }, + { + "surface": "就役", + "readging": "しゅうえき", + "pos": "名詞", + "pn": -0.451232 + }, + { + "surface": "漂蕩", + "readging": "ひょうとう", + "pos": "名詞", + "pn": -0.451245 + }, + { + "surface": "木片", + "readging": "もくへん", + "pos": "名詞", + "pn": -0.451278 + }, + { + "surface": "草石蚕", + "readging": "ちょろぎ", + "pos": "名詞", + "pn": -0.451302 + }, + { + "surface": "列記", + "readging": "れっき", + "pos": "名詞", + "pn": -0.451318 + }, + { + "surface": "甘海苔", + "readging": "あまのり", + "pos": "名詞", + "pn": -0.451319 + }, + { + "surface": "家僕", + "readging": "かぼく", + "pos": "名詞", + "pn": -0.451328 + }, + { + "surface": "遺矢", + "readging": "いし", + "pos": "名詞", + "pn": -0.45133 + }, + { + "surface": "詠", + "readging": "えい", + "pos": "名詞", + "pn": -0.451343 + }, + { + "surface": "雨合羽", + "readging": "あまガッパ", + "pos": "名詞", + "pn": -0.451367 + }, + { + "surface": "泣きべそ", + "readging": "なきべそ", + "pos": "名詞", + "pn": -0.451369 + }, + { + "surface": "もげる", + "readging": "もげる", + "pos": "動詞", + "pn": -0.451384 + }, + { + "surface": "アンティーク", + "readging": "アンティーク", + "pos": "名詞", + "pn": -0.45141 + }, + { + "surface": "軽減", + "readging": "けいげん", + "pos": "名詞", + "pn": -0.451411 + }, + { + "surface": "オークション", + "readging": "オークション", + "pos": "名詞", + "pn": -0.451426 + }, + { + "surface": "蒔肥", + "readging": "まきごえ", + "pos": "名詞", + "pn": -0.451427 + }, + { + "surface": "探聞", + "readging": "たんぶん", + "pos": "名詞", + "pn": -0.451458 + }, + { + "surface": "休める", + "readging": "やすめる", + "pos": "動詞", + "pn": -0.451459 + }, + { + "surface": "熟思", + "readging": "じゅくし", + "pos": "名詞", + "pn": -0.451463 + }, + { + "surface": "二重人格", + "readging": "にじゅうじんかく", + "pos": "名詞", + "pn": -0.451464 + }, + { + "surface": "住替える", + "readging": "すみかえる", + "pos": "動詞", + "pn": -0.451474 + }, + { + "surface": "チョーク", + "readging": "チョーク", + "pos": "名詞", + "pn": -0.451478 + }, + { + "surface": "通達", + "readging": "つうたつ", + "pos": "名詞", + "pn": -0.451493 + }, + { + "surface": "河床", + "readging": "かしょう", + "pos": "名詞", + "pn": -0.451503 + }, + { + "surface": "氏素性", + "readging": "うじすじょう", + "pos": "名詞", + "pn": -0.451504 + }, + { + "surface": "来旨", + "readging": "らいし", + "pos": "名詞", + "pn": -0.451513 + }, + { + "surface": "マンホール", + "readging": "マンホール", + "pos": "名詞", + "pn": -0.451519 + }, + { + "surface": "嗅出す", + "readging": "かぎだす", + "pos": "動詞", + "pn": -0.45153 + }, + { + "surface": "爺", + "readging": "や", + "pos": "名詞", + "pn": -0.451536 + }, + { + "surface": "出没", + "readging": "しゅつぼつ", + "pos": "名詞", + "pn": -0.451547 + }, + { + "surface": "一山", + "readging": "ひとやま", + "pos": "名詞", + "pn": -0.451548 + }, + { + "surface": "燐灰石", + "readging": "りんかいせき", + "pos": "名詞", + "pn": -0.45155 + }, + { + "surface": "転嫁", + "readging": "てんか", + "pos": "名詞", + "pn": -0.451561 + }, + { + "surface": "亀卜", + "readging": "きぼく", + "pos": "名詞", + "pn": -0.451677 + }, + { + "surface": "座敷牢", + "readging": "ざしきろう", + "pos": "名詞", + "pn": -0.451679 + }, + { + "surface": "辛み", + "readging": "からみ", + "pos": "名詞", + "pn": -0.451706 + }, + { + "surface": "スープ", + "readging": "スープ", + "pos": "名詞", + "pn": -0.451729 + }, + { + "surface": "表号", + "readging": "ひょうごう", + "pos": "名詞", + "pn": -0.451738 + }, + { + "surface": "白炭", + "readging": "しろずみ", + "pos": "名詞", + "pn": -0.451741 + }, + { + "surface": "産する", + "readging": "さんする", + "pos": "動詞", + "pn": -0.451755 + }, + { + "surface": "児女", + "readging": "じじょ", + "pos": "名詞", + "pn": -0.451766 + }, + { + "surface": "巣", + "readging": "す", + "pos": "名詞", + "pn": -0.45177 + }, + { + "surface": "差回す", + "readging": "さしまわす", + "pos": "動詞", + "pn": -0.451772 + }, + { + "surface": "蕗", + "readging": "ふき", + "pos": "名詞", + "pn": -0.451782 + }, + { + "surface": "半間", + "readging": "はんま", + "pos": "名詞", + "pn": -0.451798 + }, + { + "surface": "カンガルー", + "readging": "カンガルー", + "pos": "名詞", + "pn": -0.451813 + }, + { + "surface": "たんさん泉", + "readging": "たんさんせん", + "pos": "名詞", + "pn": -0.451814 + }, + { + "surface": "葛", + "readging": "かずら", + "pos": "名詞", + "pn": -0.451826 + }, + { + "surface": "足芸", + "readging": "あしげい", + "pos": "名詞", + "pn": -0.451833 + }, + { + "surface": "消息子", + "readging": "しょうそくし", + "pos": "名詞", + "pn": -0.451854 + }, + { + "surface": "先立てる", + "readging": "さきだてる", + "pos": "動詞", + "pn": -0.45186 + }, + { + "surface": "平鍋", + "readging": "ひらなべ", + "pos": "名詞", + "pn": -0.451861 + }, + { + "surface": "願人坊主", + "readging": "がんにんぼうず", + "pos": "名詞", + "pn": -0.451892 + }, + { + "surface": "月下", + "readging": "げっか", + "pos": "名詞", + "pn": -0.451898 + }, + { + "surface": "ナイト", + "readging": "ナイトキャップ", + "pos": "名詞", + "pn": -0.451904 + }, + { + "surface": "兼摂", + "readging": "けんせつ", + "pos": "名詞", + "pn": -0.45193 + }, + { + "surface": "前科", + "readging": "ぜんか", + "pos": "名詞", + "pn": -0.451934 + }, + { + "surface": "昏睡", + "readging": "こんすい", + "pos": "名詞", + "pn": -0.451978 + }, + { + "surface": "手向け草", + "readging": "たむけぐさ", + "pos": "名詞", + "pn": -0.452019 + }, + { + "surface": "刊", + "readging": "かん", + "pos": "名詞", + "pn": -0.452027 + }, + { + "surface": "死罪", + "readging": "しざい", + "pos": "名詞", + "pn": -0.452028 + }, + { + "surface": "山犬", + "readging": "やまいぬ", + "pos": "名詞", + "pn": -0.452033 + }, + { + "surface": "よいとまけ", + "readging": "よいとまけ", + "pos": "名詞", + "pn": -0.45206 + }, + { + "surface": "小競合い", + "readging": "こぜりあい", + "pos": "名詞", + "pn": -0.452073 + }, + { + "surface": "啜り上げる", + "readging": "すすりあげる", + "pos": "動詞", + "pn": -0.452078 + }, + { + "surface": "赤土", + "readging": "あかつち", + "pos": "名詞", + "pn": -0.452169 + }, + { + "surface": "非合理", + "readging": "ひごうり", + "pos": "名詞", + "pn": -0.452171 + }, + { + "surface": "綴織", + "readging": "つづれおり", + "pos": "名詞", + "pn": -0.452174 + }, + { + "surface": "干戈", + "readging": "かんか", + "pos": "名詞", + "pn": -0.45218 + }, + { + "surface": "家相", + "readging": "かそう", + "pos": "名詞", + "pn": -0.452203 + }, + { + "surface": "大掴み", + "readging": "おおづかみ", + "pos": "名詞", + "pn": -0.452212 + }, + { + "surface": "差油", + "readging": "さしあぶら", + "pos": "名詞", + "pn": -0.452214 + }, + { + "surface": "例刻", + "readging": "れいこく", + "pos": "名詞", + "pn": -0.452223 + }, + { + "surface": "棘魚", + "readging": "とげうお", + "pos": "名詞", + "pn": -0.452225 + }, + { + "surface": "六", + "readging": "むつ", + "pos": "名詞", + "pn": -0.452274 + }, + { + "surface": "変り目", + "readging": "かわりめ", + "pos": "名詞", + "pn": -0.452285 + }, + { + "surface": "崩落", + "readging": "ほうらく", + "pos": "名詞", + "pn": -0.452292 + }, + { + "surface": "謹言", + "readging": "きんげん", + "pos": "名詞", + "pn": -0.452314 + }, + { + "surface": "感傷主義", + "readging": "かんしょうしゅぎ", + "pos": "名詞", + "pn": -0.452328 + }, + { + "surface": "御内", + "readging": "おんうち", + "pos": "名詞", + "pn": -0.452343 + }, + { + "surface": "銀筋", + "readging": "ぎんすじ", + "pos": "名詞", + "pn": -0.452349 + }, + { + "surface": "天幕", + "readging": "てんまく", + "pos": "名詞", + "pn": -0.45235 + }, + { + "surface": "検品", + "readging": "けんぴん", + "pos": "名詞", + "pn": -0.452356 + }, + { + "surface": "芽キャベツ", + "readging": "めキャベツ", + "pos": "名詞", + "pn": -0.452382 + }, + { + "surface": "魚網", + "readging": "ぎょもう", + "pos": "名詞", + "pn": -0.452401 + }, + { + "surface": "祈願", + "readging": "きがん", + "pos": "名詞", + "pn": -0.452404 + }, + { + "surface": "モーター", + "readging": "モーター", + "pos": "名詞", + "pn": -0.452415 + }, + { + "surface": "合口", + "readging": "あいくち", + "pos": "名詞", + "pn": -0.452441 + }, + { + "surface": "初", + "readging": "はつ", + "pos": "名詞", + "pn": -0.452451 + }, + { + "surface": "組杯", + "readging": "くみさかずき", + "pos": "名詞", + "pn": -0.452466 + }, + { + "surface": "初孫", + "readging": "ういまご", + "pos": "名詞", + "pn": -0.452467 + }, + { + "surface": "角帯", + "readging": "かくおび", + "pos": "名詞", + "pn": -0.452477 + }, + { + "surface": "手道具", + "readging": "てどうぐ", + "pos": "名詞", + "pn": -0.452498 + }, + { + "surface": "伴僧", + "readging": "ばんそう", + "pos": "名詞", + "pn": -0.452515 + }, + { + "surface": "頭目", + "readging": "とうもく", + "pos": "名詞", + "pn": -0.452518 + }, + { + "surface": "アンダーシャツ", + "readging": "アンダーシャツ", + "pos": "名詞", + "pn": -0.452523 + }, + { + "surface": "退任", + "readging": "たいにん", + "pos": "名詞", + "pn": -0.452528 + }, + { + "surface": "灌腸", + "readging": "かんちょう", + "pos": "名詞", + "pn": -0.45256 + }, + { + "surface": "憑かれる", + "readging": "つかれる", + "pos": "動詞", + "pn": -0.452568 + }, + { + "surface": "大きさ", + "readging": "おおきさ", + "pos": "名詞", + "pn": -0.452607 + }, + { + "surface": "春蘭", + "readging": "しゅんらん", + "pos": "名詞", + "pn": -0.452608 + }, + { + "surface": "搾乳", + "readging": "さくにゅう", + "pos": "名詞", + "pn": -0.452614 + }, + { + "surface": "花林糖", + "readging": "かりんとう", + "pos": "名詞", + "pn": -0.452617 + }, + { + "surface": "大漁貧乏", + "readging": "たいりょうびんぼう", + "pos": "名詞", + "pn": -0.452624 + }, + { + "surface": "外耳", + "readging": "がいじ", + "pos": "名詞", + "pn": -0.452627 + }, + { + "surface": "薄力粉", + "readging": "はくりきこ", + "pos": "名詞", + "pn": -0.452635 + }, + { + "surface": "紙漉き", + "readging": "かみすき", + "pos": "名詞", + "pn": -0.452643 + }, + { + "surface": "農村", + "readging": "のうそん", + "pos": "名詞", + "pn": -0.452661 + }, + { + "surface": "絶やす", + "readging": "たやす", + "pos": "動詞", + "pn": -0.452693 + }, + { + "surface": "偏重", + "readging": "へんちょう", + "pos": "名詞", + "pn": -0.452695 + }, + { + "surface": "三日", + "readging": "みっか", + "pos": "名詞", + "pn": -0.452699 + }, + { + "surface": "吹っ掛ける", + "readging": "ふっかける", + "pos": "動詞", + "pn": -0.452711 + }, + { + "surface": "月食", + "readging": "げっしょく", + "pos": "名詞", + "pn": -0.452723 + }, + { + "surface": "頻る", + "readging": "しきる", + "pos": "動詞", + "pn": -0.452739 + }, + { + "surface": "ベルト", + "readging": "ベルト", + "pos": "名詞", + "pn": -0.452784 + }, + { + "surface": "火夫", + "readging": "かふ", + "pos": "名詞", + "pn": -0.45279 + }, + { + "surface": "武道", + "readging": "ぶどう", + "pos": "名詞", + "pn": -0.452807 + }, + { + "surface": "暴風", + "readging": "ぼうふう", + "pos": "名詞", + "pn": -0.452825 + }, + { + "surface": "常住", + "readging": "じょうじゅう", + "pos": "名詞", + "pn": -0.452868 + }, + { + "surface": "直撃", + "readging": "ちょくげき", + "pos": "名詞", + "pn": -0.452872 + }, + { + "surface": "催促", + "readging": "さいそく", + "pos": "名詞", + "pn": -0.452872 + }, + { + "surface": "朝晩", + "readging": "あさばん", + "pos": "名詞", + "pn": -0.452877 + }, + { + "surface": "歯肉", + "readging": "はにく", + "pos": "名詞", + "pn": -0.452885 + }, + { + "surface": "天涯", + "readging": "てんがい", + "pos": "名詞", + "pn": -0.45289 + }, + { + "surface": "史", + "readging": "し", + "pos": "名詞", + "pn": -0.452891 + }, + { + "surface": "序列", + "readging": "じょれつ", + "pos": "名詞", + "pn": -0.452901 + }, + { + "surface": "境域", + "readging": "きょういき", + "pos": "名詞", + "pn": -0.452907 + }, + { + "surface": "猪", + "readging": "ちょ", + "pos": "名詞", + "pn": -0.452915 + }, + { + "surface": "上がり目", + "readging": "あがりめ", + "pos": "名詞", + "pn": -0.452926 + }, + { + "surface": "灰均し", + "readging": "はいならし", + "pos": "名詞", + "pn": -0.452931 + }, + { + "surface": "再来", + "readging": "さいらい", + "pos": "名詞", + "pn": -0.452944 + }, + { + "surface": "砥の粉", + "readging": "とのこ", + "pos": "名詞", + "pn": -0.452963 + }, + { + "surface": "多難", + "readging": "たなん", + "pos": "名詞", + "pn": -0.452966 + }, + { + "surface": "花合せ", + "readging": "はなあわせ", + "pos": "名詞", + "pn": -0.452974 + }, + { + "surface": "神代杉", + "readging": "じんだいすぎ", + "pos": "名詞", + "pn": -0.45298 + }, + { + "surface": "今日明日", + "readging": "きょうあす", + "pos": "名詞", + "pn": -0.452988 + }, + { + "surface": "第三者", + "readging": "だいさんしゃ", + "pos": "名詞", + "pn": -0.452995 + }, + { + "surface": "機器", + "readging": "きき", + "pos": "名詞", + "pn": -0.453002 + }, + { + "surface": "線香", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.453005 + }, + { + "surface": "年の内", + "readging": "としのうち", + "pos": "名詞", + "pn": -0.453013 + }, + { + "surface": "座標", + "readging": "ざひょう", + "pos": "名詞", + "pn": -0.453022 + }, + { + "surface": "制服", + "readging": "せいふく", + "pos": "名詞", + "pn": -0.453024 + }, + { + "surface": "敷布", + "readging": "しきふ", + "pos": "名詞", + "pn": -0.453038 + }, + { + "surface": "ちゃん", + "readging": "ちゃん", + "pos": "名詞", + "pn": -0.453039 + }, + { + "surface": "浄", + "readging": "じょう", + "pos": "名詞", + "pn": -0.453054 + }, + { + "surface": "夜", + "readging": "よ", + "pos": "名詞", + "pn": -0.453059 + }, + { + "surface": "竹簀", + "readging": "たけす", + "pos": "名詞", + "pn": -0.453069 + }, + { + "surface": "傍聴", + "readging": "ぼうちょう", + "pos": "名詞", + "pn": -0.453077 + }, + { + "surface": "鬼籍", + "readging": "きせき", + "pos": "名詞", + "pn": -0.45308 + }, + { + "surface": "鯨飲", + "readging": "げいいん", + "pos": "名詞", + "pn": -0.453081 + }, + { + "surface": "太夫", + "readging": "たゆう", + "pos": "名詞", + "pn": -0.453089 + }, + { + "surface": "休暇", + "readging": "きゅうか", + "pos": "名詞", + "pn": -0.45309 + }, + { + "surface": "花鰹", + "readging": "はながつお", + "pos": "名詞", + "pn": -0.453119 + }, + { + "surface": "蔓植物", + "readging": "つるしょくぶつ", + "pos": "名詞", + "pn": -0.45312 + }, + { + "surface": "禁じる", + "readging": "きんじる", + "pos": "動詞", + "pn": -0.45312 + }, + { + "surface": "其の他", + "readging": "そのた", + "pos": "名詞", + "pn": -0.453141 + }, + { + "surface": "カーペット", + "readging": "カーペット", + "pos": "名詞", + "pn": -0.453141 + }, + { + "surface": "着丈", + "readging": "きたけ", + "pos": "名詞", + "pn": -0.453162 + }, + { + "surface": "退学", + "readging": "たいがく", + "pos": "名詞", + "pn": -0.453184 + }, + { + "surface": "身性", + "readging": "みじょう", + "pos": "名詞", + "pn": -0.453212 + }, + { + "surface": "ぺちゃくちゃ", + "readging": "ぺちゃくちゃ", + "pos": "副詞", + "pn": -0.453217 + }, + { + "surface": "風俗", + "readging": "ふうぞく", + "pos": "名詞", + "pn": -0.453232 + }, + { + "surface": "吾", + "readging": "ご", + "pos": "名詞", + "pn": -0.453239 + }, + { + "surface": "床入り", + "readging": "とこいり", + "pos": "名詞", + "pn": -0.453242 + }, + { + "surface": "年の暮", + "readging": "としのくれ", + "pos": "名詞", + "pn": -0.453249 + }, + { + "surface": "葡萄色", + "readging": "ぶどういろ", + "pos": "名詞", + "pn": -0.45325 + }, + { + "surface": "絵草紙", + "readging": "えぞうし", + "pos": "名詞", + "pn": -0.453251 + }, + { + "surface": "渣滓", + "readging": "さし", + "pos": "名詞", + "pn": -0.453275 + }, + { + "surface": "補填", + "readging": "ほてん", + "pos": "名詞", + "pn": -0.453287 + }, + { + "surface": "詔", + "readging": "しょう", + "pos": "名詞", + "pn": -0.453293 + }, + { + "surface": "砲丸", + "readging": "ほうがん", + "pos": "名詞", + "pn": -0.453322 + }, + { + "surface": "令夫人", + "readging": "れいふじん", + "pos": "名詞", + "pn": -0.453348 + }, + { + "surface": "機構", + "readging": "きこう", + "pos": "名詞", + "pn": -0.453352 + }, + { + "surface": "合歓", + "readging": "ねぶ", + "pos": "名詞", + "pn": -0.453355 + }, + { + "surface": "所出", + "readging": "しょしゅつ", + "pos": "名詞", + "pn": -0.453362 + }, + { + "surface": "一員", + "readging": "いちいん", + "pos": "名詞", + "pn": -0.45337 + }, + { + "surface": "一式", + "readging": "いっしき", + "pos": "名詞", + "pn": -0.453396 + }, + { + "surface": "用次", + "readging": "ようつぎ", + "pos": "名詞", + "pn": -0.453435 + }, + { + "surface": "冠状", + "readging": "かんじょう", + "pos": "名詞", + "pn": -0.453446 + }, + { + "surface": "ひしひし", + "readging": "ひしひし", + "pos": "副詞", + "pn": -0.45347 + }, + { + "surface": "火切", + "readging": "ひきり", + "pos": "名詞", + "pn": -0.453474 + }, + { + "surface": "跳ね", + "readging": "はね", + "pos": "名詞", + "pn": -0.453492 + }, + { + "surface": "浮島", + "readging": "うきしま", + "pos": "名詞", + "pn": -0.453494 + }, + { + "surface": "砂州", + "readging": "さす", + "pos": "名詞", + "pn": -0.453496 + }, + { + "surface": "捨鐘", + "readging": "すてがね", + "pos": "名詞", + "pn": -0.453511 + }, + { + "surface": "解氷", + "readging": "かいひょう", + "pos": "名詞", + "pn": -0.453519 + }, + { + "surface": "推断", + "readging": "すいだん", + "pos": "名詞", + "pn": -0.453533 + }, + { + "surface": "お眼鏡", + "readging": "おめがね", + "pos": "名詞", + "pn": -0.453533 + }, + { + "surface": "震い付く", + "readging": "ふるいつく", + "pos": "動詞", + "pn": -0.453558 + }, + { + "surface": "濾紙", + "readging": "ろし", + "pos": "名詞", + "pn": -0.453567 + }, + { + "surface": "裏白", + "readging": "うらじろ", + "pos": "名詞", + "pn": -0.453574 + }, + { + "surface": "緯度", + "readging": "いど", + "pos": "名詞", + "pn": -0.453575 + }, + { + "surface": "切落す", + "readging": "きりおとす", + "pos": "動詞", + "pn": -0.453577 + }, + { + "surface": "課業", + "readging": "かぎょう", + "pos": "名詞", + "pn": -0.453606 + }, + { + "surface": "千木", + "readging": "ちぎ", + "pos": "名詞", + "pn": -0.453621 + }, + { + "surface": "夜盗", + "readging": "やとう", + "pos": "名詞", + "pn": -0.453651 + }, + { + "surface": "イクラ", + "readging": "イクラ", + "pos": "名詞", + "pn": -0.453652 + }, + { + "surface": "繻子", + "readging": "しゅす", + "pos": "名詞", + "pn": -0.453657 + }, + { + "surface": "政権", + "readging": "せいけん", + "pos": "名詞", + "pn": -0.453659 + }, + { + "surface": "法界", + "readging": "ほっかい", + "pos": "名詞", + "pn": -0.453661 + }, + { + "surface": "全般", + "readging": "ぜんぱん", + "pos": "名詞", + "pn": -0.453675 + }, + { + "surface": "住替る", + "readging": "すみかわる", + "pos": "動詞", + "pn": -0.453677 + }, + { + "surface": "切炬燵", + "readging": "きりごたつ", + "pos": "名詞", + "pn": -0.453695 + }, + { + "surface": "錦繍", + "readging": "きんしゅう", + "pos": "名詞", + "pn": -0.453704 + }, + { + "surface": "枯野", + "readging": "かれの", + "pos": "名詞", + "pn": -0.453707 + }, + { + "surface": "住成す", + "readging": "すみなす", + "pos": "動詞", + "pn": -0.453741 + }, + { + "surface": "期", + "readging": "ご", + "pos": "名詞", + "pn": -0.453763 + }, + { + "surface": "土間", + "readging": "どま", + "pos": "名詞", + "pn": -0.453797 + }, + { + "surface": "雛形", + "readging": "ひながた", + "pos": "名詞", + "pn": -0.4538 + }, + { + "surface": "日本犬", + "readging": "にほんいぬ", + "pos": "名詞", + "pn": -0.453807 + }, + { + "surface": "コンデンサー", + "readging": "コンデンサー", + "pos": "名詞", + "pn": -0.453809 + }, + { + "surface": "ぶるぶる", + "readging": "ぶるぶる", + "pos": "副詞", + "pn": -0.453816 + }, + { + "surface": "独身", + "readging": "どくしん", + "pos": "名詞", + "pn": -0.453831 + }, + { + "surface": "銀箔", + "readging": "ぎんぱく", + "pos": "名詞", + "pn": -0.453839 + }, + { + "surface": "通俗", + "readging": "つうぞく", + "pos": "名詞", + "pn": -0.453847 + }, + { + "surface": "スナップ", + "readging": "スナップ", + "pos": "名詞", + "pn": -0.453852 + }, + { + "surface": "令嗣", + "readging": "れいし", + "pos": "名詞", + "pn": -0.453855 + }, + { + "surface": "有平糖", + "readging": "アルヘイとう", + "pos": "名詞", + "pn": -0.45386 + }, + { + "surface": "見せしめ", + "readging": "みせしめ", + "pos": "名詞", + "pn": -0.453864 + }, + { + "surface": "奥さん", + "readging": "おくさん", + "pos": "名詞", + "pn": -0.453865 + }, + { + "surface": "塩竈", + "readging": "しおがま", + "pos": "名詞", + "pn": -0.453886 + }, + { + "surface": "学習", + "readging": "がくしゅう", + "pos": "名詞", + "pn": -0.453892 + }, + { + "surface": "響く", + "readging": "ひびく", + "pos": "動詞", + "pn": -0.453906 + }, + { + "surface": "用水", + "readging": "ようすい", + "pos": "名詞", + "pn": -0.453908 + }, + { + "surface": "練炭", + "readging": "れんたん", + "pos": "名詞", + "pn": -0.453934 + }, + { + "surface": "峠", + "readging": "とうげ", + "pos": "名詞", + "pn": -0.453942 + }, + { + "surface": "配列", + "readging": "はいれつ", + "pos": "名詞", + "pn": -0.453954 + }, + { + "surface": "指紋", + "readging": "しもん", + "pos": "名詞", + "pn": -0.45396 + }, + { + "surface": "突飛ばす", + "readging": "つきとばす", + "pos": "動詞", + "pn": -0.453975 + }, + { + "surface": "芝山", + "readging": "しばやま", + "pos": "名詞", + "pn": -0.45398 + }, + { + "surface": "鏡", + "readging": "かがみ", + "pos": "名詞", + "pn": -0.453982 + }, + { + "surface": "突上げる", + "readging": "つきあげる", + "pos": "動詞", + "pn": -0.453983 + }, + { + "surface": "所", + "readging": "ところ", + "pos": "名詞", + "pn": -0.453989 + }, + { + "surface": "ざっくり", + "readging": "ざっくり", + "pos": "副詞", + "pn": -0.453992 + }, + { + "surface": "一籌", + "readging": "いっちゅう", + "pos": "名詞", + "pn": -0.454007 + }, + { + "surface": "放免", + "readging": "ほうめん", + "pos": "名詞", + "pn": -0.454009 + }, + { + "surface": "蟻", + "readging": "あり", + "pos": "名詞", + "pn": -0.454029 + }, + { + "surface": "尾骨", + "readging": "びこつ", + "pos": "名詞", + "pn": -0.454064 + }, + { + "surface": "叢生", + "readging": "そうせい", + "pos": "名詞", + "pn": -0.454075 + }, + { + "surface": "猫足", + "readging": "ねこあし", + "pos": "名詞", + "pn": -0.454096 + }, + { + "surface": "一雨", + "readging": "ひとあめ", + "pos": "名詞", + "pn": -0.454135 + }, + { + "surface": "無茶苦茶", + "readging": "むちゃくちゃ", + "pos": "名詞", + "pn": -0.454149 + }, + { + "surface": "べろんべろん", + "readging": "べろんべろん", + "pos": "名詞", + "pn": -0.454151 + }, + { + "surface": "破壊", + "readging": "はかい", + "pos": "名詞", + "pn": -0.454169 + }, + { + "surface": "取扱う", + "readging": "とりあつかう", + "pos": "動詞", + "pn": -0.454199 + }, + { + "surface": "小座敷", + "readging": "こざしき", + "pos": "名詞", + "pn": -0.454205 + }, + { + "surface": "粉飾", + "readging": "ふんしょく", + "pos": "名詞", + "pn": -0.454209 + }, + { + "surface": "竹矢来", + "readging": "たけやらい", + "pos": "名詞", + "pn": -0.454215 + }, + { + "surface": "君側", + "readging": "くんそく", + "pos": "名詞", + "pn": -0.454228 + }, + { + "surface": "木苺", + "readging": "きいちご", + "pos": "名詞", + "pn": -0.454232 + }, + { + "surface": "とろ", + "readging": "とろ", + "pos": "名詞", + "pn": -0.454238 + }, + { + "surface": "見世物", + "readging": "みせもの", + "pos": "名詞", + "pn": -0.454239 + }, + { + "surface": "引摺回す", + "readging": "ひきずりまわす", + "pos": "動詞", + "pn": -0.454248 + }, + { + "surface": "浅葱", + "readging": "あさぎ", + "pos": "名詞", + "pn": -0.454265 + }, + { + "surface": "直路", + "readging": "ちょくろ", + "pos": "名詞", + "pn": -0.454284 + }, + { + "surface": "腰板", + "readging": "こしいた", + "pos": "名詞", + "pn": -0.454313 + }, + { + "surface": "平曲", + "readging": "へいきょく", + "pos": "名詞", + "pn": -0.454345 + }, + { + "surface": "看貫", + "readging": "かんかん", + "pos": "名詞", + "pn": -0.454356 + }, + { + "surface": "彗星", + "readging": "すいせい", + "pos": "名詞", + "pn": -0.454361 + }, + { + "surface": "門火", + "readging": "かどび", + "pos": "名詞", + "pn": -0.454389 + }, + { + "surface": "乗馬", + "readging": "じょうば", + "pos": "名詞", + "pn": -0.45441 + }, + { + "surface": "宗徒", + "readging": "しゅうと", + "pos": "名詞", + "pn": -0.454411 + }, + { + "surface": "権謀", + "readging": "けんぼう", + "pos": "名詞", + "pn": -0.454424 + }, + { + "surface": "責馬", + "readging": "せめうま", + "pos": "名詞", + "pn": -0.454431 + }, + { + "surface": "赤鼻", + "readging": "あかばな", + "pos": "名詞", + "pn": -0.454443 + }, + { + "surface": "堪忍", + "readging": "かんにん", + "pos": "名詞", + "pn": -0.454446 + }, + { + "surface": "梅擬き", + "readging": "うめもどき", + "pos": "名詞", + "pn": -0.454453 + }, + { + "surface": "爪立つ", + "readging": "つまだつ", + "pos": "動詞", + "pn": -0.454453 + }, + { + "surface": "回り縁", + "readging": "まわりえん", + "pos": "名詞", + "pn": -0.454458 + }, + { + "surface": "箒草", + "readging": "ほうきぐさ", + "pos": "名詞", + "pn": -0.454469 + }, + { + "surface": "敵襲", + "readging": "てきしゅう", + "pos": "名詞", + "pn": -0.454472 + }, + { + "surface": "衆人", + "readging": "しゅうじん", + "pos": "名詞", + "pn": -0.454474 + }, + { + "surface": "スペリング", + "readging": "スペリング", + "pos": "名詞", + "pn": -0.454494 + }, + { + "surface": "青写真", + "readging": "あおじゃしん", + "pos": "名詞", + "pn": -0.454513 + }, + { + "surface": "太陰", + "readging": "たいいん", + "pos": "名詞", + "pn": -0.454528 + }, + { + "surface": "掻い繰る", + "readging": "かいくる", + "pos": "動詞", + "pn": -0.454531 + }, + { + "surface": "即死", + "readging": "そくし", + "pos": "名詞", + "pn": -0.454542 + }, + { + "surface": "洗い上げる", + "readging": "あらいあげる", + "pos": "動詞", + "pn": -0.454589 + }, + { + "surface": "曲弾き", + "readging": "きょくびき", + "pos": "名詞", + "pn": -0.454597 + }, + { + "surface": "目茶苦茶", + "readging": "めちゃくちゃ", + "pos": "名詞", + "pn": -0.454634 + }, + { + "surface": "本場", + "readging": "ほんば", + "pos": "名詞", + "pn": -0.454637 + }, + { + "surface": "貸す", + "readging": "かす", + "pos": "動詞", + "pn": -0.454638 + }, + { + "surface": "絵絹", + "readging": "えぎぬ", + "pos": "名詞", + "pn": -0.454645 + }, + { + "surface": "徒事", + "readging": "とじ", + "pos": "名詞", + "pn": -0.454652 + }, + { + "surface": "吐月峰", + "readging": "とげっぽう", + "pos": "名詞", + "pn": -0.454666 + }, + { + "surface": "残月", + "readging": "ざんげつ", + "pos": "名詞", + "pn": -0.454703 + }, + { + "surface": "コンパイラ", + "readging": "コンパイラ", + "pos": "名詞", + "pn": -0.454717 + }, + { + "surface": "奏法", + "readging": "そうほう", + "pos": "名詞", + "pn": -0.454719 + }, + { + "surface": "眠気", + "readging": "ねむけ", + "pos": "名詞", + "pn": -0.454723 + }, + { + "surface": "生簀", + "readging": "いけす", + "pos": "名詞", + "pn": -0.454724 + }, + { + "surface": "埒", + "readging": "らち", + "pos": "名詞", + "pn": -0.454745 + }, + { + "surface": "実体", + "readging": "じったい", + "pos": "名詞", + "pn": -0.454749 + }, + { + "surface": "揚物", + "readging": "あげもの", + "pos": "名詞", + "pn": -0.454781 + }, + { + "surface": "触接", + "readging": "しょくせつ", + "pos": "名詞", + "pn": -0.454814 + }, + { + "surface": "密封", + "readging": "みっぷう", + "pos": "名詞", + "pn": -0.454845 + }, + { + "surface": "引窓", + "readging": "ひきまど", + "pos": "名詞", + "pn": -0.454857 + }, + { + "surface": "孫太郎虫", + "readging": "まごたろうむし", + "pos": "名詞", + "pn": -0.454875 + }, + { + "surface": "軍略", + "readging": "ぐんりゃく", + "pos": "名詞", + "pn": -0.454879 + }, + { + "surface": "厚手", + "readging": "あつで", + "pos": "名詞", + "pn": -0.454903 + }, + { + "surface": "暮春", + "readging": "ぼしゅん", + "pos": "名詞", + "pn": -0.454937 + }, + { + "surface": "閏", + "readging": "うるう", + "pos": "名詞", + "pn": -0.454939 + }, + { + "surface": "饗する", + "readging": "きょうする", + "pos": "動詞", + "pn": -0.45494 + }, + { + "surface": "追考", + "readging": "ついこう", + "pos": "名詞", + "pn": -0.454965 + }, + { + "surface": "光通信", + "readging": "ひかりつうしん", + "pos": "名詞", + "pn": -0.454995 + }, + { + "surface": "ハイ ヒール", + "readging": "ハイ ヒール", + "pos": "名詞", + "pn": -0.455 + }, + { + "surface": "異存", + "readging": "いぞん", + "pos": "名詞", + "pn": -0.455006 + }, + { + "surface": "糸蚯蚓", + "readging": "いとみみず", + "pos": "名詞", + "pn": -0.455013 + }, + { + "surface": "貞婦", + "readging": "ていふ", + "pos": "名詞", + "pn": -0.45502 + }, + { + "surface": "物笑い", + "readging": "ものわらい", + "pos": "名詞", + "pn": -0.455049 + }, + { + "surface": "補う", + "readging": "おぎなう", + "pos": "動詞", + "pn": -0.455053 + }, + { + "surface": "迂路", + "readging": "うろ", + "pos": "名詞", + "pn": -0.455062 + }, + { + "surface": "花氷", + "readging": "はなごおり", + "pos": "名詞", + "pn": -0.455064 + }, + { + "surface": "スクラム", + "readging": "スクラム", + "pos": "名詞", + "pn": -0.455085 + }, + { + "surface": "在郷", + "readging": "ざいごう", + "pos": "名詞", + "pn": -0.455092 + }, + { + "surface": "眦", + "readging": "まなじり", + "pos": "名詞", + "pn": -0.455103 + }, + { + "surface": "仰臥", + "readging": "ぎょうが", + "pos": "名詞", + "pn": -0.455106 + }, + { + "surface": "殺菌", + "readging": "さっきん", + "pos": "名詞", + "pn": -0.455132 + }, + { + "surface": "泊地", + "readging": "はくち", + "pos": "名詞", + "pn": -0.455141 + }, + { + "surface": "八方睨み", + "readging": "はっぽうにらみ", + "pos": "名詞", + "pn": -0.455148 + }, + { + "surface": "町役", + "readging": "まちやく", + "pos": "名詞", + "pn": -0.455178 + }, + { + "surface": "出猟", + "readging": "しゅつりょう", + "pos": "名詞", + "pn": -0.455192 + }, + { + "surface": "藍", + "readging": "らん", + "pos": "名詞", + "pn": -0.455197 + }, + { + "surface": "縊れる", + "readging": "くびれる", + "pos": "動詞", + "pn": -0.455198 + }, + { + "surface": "札差", + "readging": "ふださし", + "pos": "名詞", + "pn": -0.455206 + }, + { + "surface": "檻", + "readging": "おり", + "pos": "名詞", + "pn": -0.455248 + }, + { + "surface": "跡式", + "readging": "あとしき", + "pos": "名詞", + "pn": -0.45525 + }, + { + "surface": "味噌豆", + "readging": "みそまめ", + "pos": "名詞", + "pn": -0.455269 + }, + { + "surface": "参堂", + "readging": "さんどう", + "pos": "名詞", + "pn": -0.455272 + }, + { + "surface": "扇面", + "readging": "せんめん", + "pos": "名詞", + "pn": -0.455277 + }, + { + "surface": "氷河", + "readging": "ひょうが", + "pos": "名詞", + "pn": -0.455285 + }, + { + "surface": "キャラバン", + "readging": "キャラバン", + "pos": "名詞", + "pn": -0.455312 + }, + { + "surface": "塊割", + "readging": "くれわり", + "pos": "名詞", + "pn": -0.455327 + }, + { + "surface": "秘策", + "readging": "ひさく", + "pos": "名詞", + "pn": -0.455329 + }, + { + "surface": "雌花", + "readging": "めばな", + "pos": "名詞", + "pn": -0.455329 + }, + { + "surface": "トス", + "readging": "トス", + "pos": "名詞", + "pn": -0.455336 + }, + { + "surface": "打違い", + "readging": "うちちがい", + "pos": "名詞", + "pn": -0.455358 + }, + { + "surface": "オープン", + "readging": "オープン", + "pos": "名詞", + "pn": -0.455362 + }, + { + "surface": "末枯れる", + "readging": "うらがれる", + "pos": "動詞", + "pn": -0.455364 + }, + { + "surface": "昨晩", + "readging": "さくばん", + "pos": "名詞", + "pn": -0.455365 + }, + { + "surface": "水銀柱", + "readging": "すいぎんちゅう", + "pos": "名詞", + "pn": -0.455384 + }, + { + "surface": "追肥", + "readging": "おいごえ", + "pos": "名詞", + "pn": -0.455384 + }, + { + "surface": "風蘭", + "readging": "ふうらん", + "pos": "名詞", + "pn": -0.455403 + }, + { + "surface": "万", + "readging": "ばん", + "pos": "副詞", + "pn": -0.455404 + }, + { + "surface": "さら湯", + "readging": "さらゆ", + "pos": "名詞", + "pn": -0.455406 + }, + { + "surface": "ドロップ", + "readging": "ドロップ", + "pos": "名詞", + "pn": -0.455426 + }, + { + "surface": "付", + "readging": "づき", + "pos": "名詞", + "pn": -0.455427 + }, + { + "surface": "空手", + "readging": "そらで", + "pos": "名詞", + "pn": -0.455445 + }, + { + "surface": "風霜", + "readging": "ふうそう", + "pos": "名詞", + "pn": -0.455498 + }, + { + "surface": "口脇", + "readging": "くちわき", + "pos": "名詞", + "pn": -0.455502 + }, + { + "surface": "仏画", + "readging": "ぶつが", + "pos": "名詞", + "pn": -0.455516 + }, + { + "surface": "オーバー", + "readging": "オーバー", + "pos": "名詞", + "pn": -0.455521 + }, + { + "surface": "手箒", + "readging": "てぼうき", + "pos": "名詞", + "pn": -0.455522 + }, + { + "surface": "青黒い", + "readging": "あおぐろい", + "pos": "形容詞", + "pn": -0.455583 + }, + { + "surface": "一半", + "readging": "いっぱん", + "pos": "名詞", + "pn": -0.455595 + }, + { + "surface": "薬舗", + "readging": "やくほ", + "pos": "名詞", + "pn": -0.455619 + }, + { + "surface": "麺", + "readging": "めん", + "pos": "名詞", + "pn": -0.455648 + }, + { + "surface": "約款", + "readging": "やっかん", + "pos": "名詞", + "pn": -0.455662 + }, + { + "surface": "小照", + "readging": "しょうしょう", + "pos": "名詞", + "pn": -0.455671 + }, + { + "surface": "妄断", + "readging": "もうだん", + "pos": "名詞", + "pn": -0.455673 + }, + { + "surface": "党", + "readging": "とう", + "pos": "名詞", + "pn": -0.455691 + }, + { + "surface": "レコード", + "readging": "レコードプレーヤー", + "pos": "名詞", + "pn": -0.455697 + }, + { + "surface": "屯する", + "readging": "たむろする", + "pos": "動詞", + "pn": -0.45571 + }, + { + "surface": "由", + "readging": "よし", + "pos": "名詞", + "pn": -0.455733 + }, + { + "surface": "胴裏", + "readging": "どううら", + "pos": "名詞", + "pn": -0.455745 + }, + { + "surface": "胡桃", + "readging": "くるみ", + "pos": "名詞", + "pn": -0.455828 + }, + { + "surface": "源氏名", + "readging": "げんじな", + "pos": "名詞", + "pn": -0.455844 + }, + { + "surface": "縛り上げる", + "readging": "しばりあげる", + "pos": "動詞", + "pn": -0.455854 + }, + { + "surface": "ヘット", + "readging": "ヘット", + "pos": "名詞", + "pn": -0.455869 + }, + { + "surface": "金屑", + "readging": "かなくず", + "pos": "名詞", + "pn": -0.455881 + }, + { + "surface": "言説", + "readging": "げんせつ", + "pos": "名詞", + "pn": -0.455887 + }, + { + "surface": "トマト", + "readging": "トマト", + "pos": "名詞", + "pn": -0.455904 + }, + { + "surface": "分蘖", + "readging": "ぶんげつ", + "pos": "名詞", + "pn": -0.455935 + }, + { + "surface": "小鼻", + "readging": "こばな", + "pos": "名詞", + "pn": -0.455935 + }, + { + "surface": "通貨", + "readging": "つうか", + "pos": "名詞", + "pn": -0.455936 + }, + { + "surface": "鴫", + "readging": "しぎ", + "pos": "名詞", + "pn": -0.455952 + }, + { + "surface": "作り眉", + "readging": "つくりまゆ", + "pos": "名詞", + "pn": -0.455954 + }, + { + "surface": "勇猛", + "readging": "ゆうもう", + "pos": "名詞", + "pn": -0.455978 + }, + { + "surface": "痴話", + "readging": "ちわ", + "pos": "名詞", + "pn": -0.455979 + }, + { + "surface": "艾", + "readging": "もぐさ", + "pos": "名詞", + "pn": -0.455986 + }, + { + "surface": "デスク", + "readging": "デスクトップ パブリッシング", + "pos": "名詞", + "pn": -0.456005 + }, + { + "surface": "結末", + "readging": "けつまつ", + "pos": "名詞", + "pn": -0.456006 + }, + { + "surface": "戸", + "readging": "こ", + "pos": "名詞", + "pn": -0.45601 + }, + { + "surface": "園芸", + "readging": "えんげい", + "pos": "名詞", + "pn": -0.456016 + }, + { + "surface": "へな猪口", + "readging": "へなちょこ", + "pos": "名詞", + "pn": -0.456025 + }, + { + "surface": "湾口", + "readging": "わんこう", + "pos": "名詞", + "pn": -0.456061 + }, + { + "surface": "明", + "readging": "めい", + "pos": "名詞", + "pn": -0.456078 + }, + { + "surface": "趣意", + "readging": "しゅい", + "pos": "名詞", + "pn": -0.456084 + }, + { + "surface": "陸田", + "readging": "りくでん", + "pos": "名詞", + "pn": -0.456101 + }, + { + "surface": "怪異", + "readging": "かいい", + "pos": "名詞", + "pn": -0.456101 + }, + { + "surface": "漆黒", + "readging": "しっこく", + "pos": "名詞", + "pn": -0.456107 + }, + { + "surface": "管楽器", + "readging": "かんがっき", + "pos": "名詞", + "pn": -0.456124 + }, + { + "surface": "暴発", + "readging": "ぼうはつ", + "pos": "名詞", + "pn": -0.456125 + }, + { + "surface": "硯北", + "readging": "けんぽく", + "pos": "名詞", + "pn": -0.456129 + }, + { + "surface": "散逸", + "readging": "さんいつ", + "pos": "名詞", + "pn": -0.456143 + }, + { + "surface": "母船", + "readging": "ぼせん", + "pos": "名詞", + "pn": -0.456145 + }, + { + "surface": "決り手", + "readging": "きまりて", + "pos": "名詞", + "pn": -0.456152 + }, + { + "surface": "躙る", + "readging": "にじる", + "pos": "動詞", + "pn": -0.456166 + }, + { + "surface": "文書", + "readging": "ぶんしょ", + "pos": "名詞", + "pn": -0.456169 + }, + { + "surface": "息巻く", + "readging": "いきまく", + "pos": "動詞", + "pn": -0.456188 + }, + { + "surface": "表装", + "readging": "ひょうそう", + "pos": "名詞", + "pn": -0.456189 + }, + { + "surface": "農具", + "readging": "のうぐ", + "pos": "名詞", + "pn": -0.45622 + }, + { + "surface": "食い物", + "readging": "くいもの", + "pos": "名詞", + "pn": -0.45623 + }, + { + "surface": "位", + "readging": "い", + "pos": "名詞", + "pn": -0.456238 + }, + { + "surface": "打抜き", + "readging": "うちぬき", + "pos": "名詞", + "pn": -0.456243 + }, + { + "surface": "ロースト", + "readging": "ロースト", + "pos": "名詞", + "pn": -0.456263 + }, + { + "surface": "労災", + "readging": "ろうさい", + "pos": "名詞", + "pn": -0.456282 + }, + { + "surface": "玉虫色", + "readging": "たまむしいろ", + "pos": "名詞", + "pn": -0.456318 + }, + { + "surface": "玉石", + "readging": "たまいし", + "pos": "名詞", + "pn": -0.456318 + }, + { + "surface": "開始", + "readging": "かいし", + "pos": "名詞", + "pn": -0.456324 + }, + { + "surface": "大和", + "readging": "やまとえ", + "pos": "名詞", + "pn": -0.456326 + }, + { + "surface": "ヘリコプター", + "readging": "ヘリコプター", + "pos": "名詞", + "pn": -0.456344 + }, + { + "surface": "山盛り", + "readging": "やまもり", + "pos": "名詞", + "pn": -0.456348 + }, + { + "surface": "反噬", + "readging": "はんぜい", + "pos": "名詞", + "pn": -0.456399 + }, + { + "surface": "油脂", + "readging": "ゆし", + "pos": "名詞", + "pn": -0.456407 + }, + { + "surface": "図星", + "readging": "ずぼし", + "pos": "名詞", + "pn": -0.456418 + }, + { + "surface": "近代国家", + "readging": "きんだいこっか", + "pos": "名詞", + "pn": -0.45643 + }, + { + "surface": "蹴出す", + "readging": "けだす", + "pos": "動詞", + "pn": -0.456435 + }, + { + "surface": "今方", + "readging": "いまがた", + "pos": "名詞", + "pn": -0.456437 + }, + { + "surface": "再検", + "readging": "さいけん", + "pos": "名詞", + "pn": -0.456443 + }, + { + "surface": "冬将軍", + "readging": "ふゆしょうぐん", + "pos": "名詞", + "pn": -0.456453 + }, + { + "surface": "蒼茫", + "readging": "そうぼう", + "pos": "名詞", + "pn": -0.456455 + }, + { + "surface": "部位", + "readging": "ぶい", + "pos": "名詞", + "pn": -0.456468 + }, + { + "surface": "山吹", + "readging": "やまぶき", + "pos": "名詞", + "pn": -0.456475 + }, + { + "surface": "突先", + "readging": "とっさき", + "pos": "名詞", + "pn": -0.456492 + }, + { + "surface": "九寸五分", + "readging": "くすんごぶ", + "pos": "名詞", + "pn": -0.456501 + }, + { + "surface": "さしずめ", + "readging": "さしずめ", + "pos": "副詞", + "pn": -0.456506 + }, + { + "surface": "犬釘", + "readging": "いぬくぎ", + "pos": "名詞", + "pn": -0.456517 + }, + { + "surface": "ブリキ", + "readging": "ブリキ", + "pos": "名詞", + "pn": -0.456518 + }, + { + "surface": "背面", + "readging": "はいめん", + "pos": "名詞", + "pn": -0.456522 + }, + { + "surface": "卸金", + "readging": "おろしがね", + "pos": "名詞", + "pn": -0.456536 + }, + { + "surface": "緊褌", + "readging": "きんこん", + "pos": "名詞", + "pn": -0.45654 + }, + { + "surface": "移", + "readging": "い", + "pos": "名詞", + "pn": -0.456551 + }, + { + "surface": "茶釜", + "readging": "ちゃがま", + "pos": "名詞", + "pn": -0.456552 + }, + { + "surface": "花尽し", + "readging": "はなづくし", + "pos": "名詞", + "pn": -0.456563 + }, + { + "surface": "憚り様", + "readging": "はばかりさま", + "pos": "名詞", + "pn": -0.456598 + }, + { + "surface": "八紘", + "readging": "はっこう", + "pos": "名詞", + "pn": -0.456601 + }, + { + "surface": "四つん這い", + "readging": "よつんばい", + "pos": "名詞", + "pn": -0.456623 + }, + { + "surface": "藜", + "readging": "あかざ", + "pos": "名詞", + "pn": -0.456636 + }, + { + "surface": "検波", + "readging": "けんぱ", + "pos": "名詞", + "pn": -0.456639 + }, + { + "surface": "麻紙", + "readging": "まし", + "pos": "名詞", + "pn": -0.45664 + }, + { + "surface": "竜眼", + "readging": "りゅうがん", + "pos": "名詞", + "pn": -0.456641 + }, + { + "surface": "ラミー", + "readging": "ラミー", + "pos": "名詞", + "pn": -0.456642 + }, + { + "surface": "貰い泣き", + "readging": "もらいなき", + "pos": "名詞", + "pn": -0.456654 + }, + { + "surface": "肉親", + "readging": "にくしん", + "pos": "名詞", + "pn": -0.456667 + }, + { + "surface": "教練", + "readging": "きょうれん", + "pos": "名詞", + "pn": -0.456673 + }, + { + "surface": "杜氏", + "readging": "とうじ", + "pos": "名詞", + "pn": -0.456684 + }, + { + "surface": "ヘルメット", + "readging": "ヘルメット", + "pos": "名詞", + "pn": -0.456695 + }, + { + "surface": "侍女", + "readging": "じじょ", + "pos": "名詞", + "pn": -0.456703 + }, + { + "surface": "上敷", + "readging": "うわしき", + "pos": "名詞", + "pn": -0.45671 + }, + { + "surface": "人魂", + "readging": "ひとだま", + "pos": "名詞", + "pn": -0.456715 + }, + { + "surface": "指人形", + "readging": "ゆびにんぎょう", + "pos": "名詞", + "pn": -0.456716 + }, + { + "surface": "乱倫", + "readging": "らんりん", + "pos": "名詞", + "pn": -0.456745 + }, + { + "surface": "ごみごみ", + "readging": "ごみごみ", + "pos": "名詞", + "pn": -0.456821 + }, + { + "surface": "筒井", + "readging": "つつい", + "pos": "名詞", + "pn": -0.456835 + }, + { + "surface": "大時代", + "readging": "おおじだい", + "pos": "名詞", + "pn": -0.456842 + }, + { + "surface": "烏合", + "readging": "うごう", + "pos": "名詞", + "pn": -0.456846 + }, + { + "surface": "潮頭", + "readging": "しおがしら", + "pos": "名詞", + "pn": -0.456891 + }, + { + "surface": "畚", + "readging": "もっこ", + "pos": "名詞", + "pn": -0.456898 + }, + { + "surface": "布袋", + "readging": "ほてい", + "pos": "名詞", + "pn": -0.456939 + }, + { + "surface": "肉襦袢", + "readging": "にくジバン", + "pos": "名詞", + "pn": -0.456949 + }, + { + "surface": "若し", + "readging": "もし", + "pos": "副詞", + "pn": -0.456959 + }, + { + "surface": "餅肌", + "readging": "もちはだ", + "pos": "名詞", + "pn": -0.456977 + }, + { + "surface": "一人", + "readging": "ひとりぐらし", + "pos": "名詞", + "pn": -0.456982 + }, + { + "surface": "ナイト", + "readging": "ナイトクラブ", + "pos": "名詞", + "pn": -0.456987 + }, + { + "surface": "不肖", + "readging": "ふしょう", + "pos": "名詞", + "pn": -0.456991 + }, + { + "surface": "ガード", + "readging": "ガード", + "pos": "名詞", + "pn": -0.457006 + }, + { + "surface": "邪恋", + "readging": "じゃれん", + "pos": "名詞", + "pn": -0.457009 + }, + { + "surface": "ベッド", + "readging": "ベッドタウン", + "pos": "名詞", + "pn": -0.457039 + }, + { + "surface": "ちょろまかす", + "readging": "ちょろまかす", + "pos": "動詞", + "pn": -0.457041 + }, + { + "surface": "荒立てる", + "readging": "あらだてる", + "pos": "動詞", + "pn": -0.457046 + }, + { + "surface": "雪隠詰", + "readging": "せっちんづめ", + "pos": "名詞", + "pn": -0.45706 + }, + { + "surface": "鞍", + "readging": "あん", + "pos": "名詞", + "pn": -0.457073 + }, + { + "surface": "少しも", + "readging": "すこしも", + "pos": "副詞", + "pn": -0.457075 + }, + { + "surface": "一名", + "readging": "いちめい", + "pos": "名詞", + "pn": -0.457082 + }, + { + "surface": "到頭", + "readging": "とうとう", + "pos": "副詞", + "pn": -0.457083 + }, + { + "surface": "生爪", + "readging": "なまづめ", + "pos": "名詞", + "pn": -0.457089 + }, + { + "surface": "封入", + "readging": "ふうにゅう", + "pos": "名詞", + "pn": -0.457123 + }, + { + "surface": "切戸", + "readging": "きりど", + "pos": "名詞", + "pn": -0.457134 + }, + { + "surface": "利休色", + "readging": "りきゅういろ", + "pos": "名詞", + "pn": -0.457159 + }, + { + "surface": "乗打", + "readging": "のりうち", + "pos": "名詞", + "pn": -0.457161 + }, + { + "surface": "固着", + "readging": "こちゃく", + "pos": "名詞", + "pn": -0.457165 + }, + { + "surface": "肩章", + "readging": "けんしょう", + "pos": "名詞", + "pn": -0.45717 + }, + { + "surface": "垂心", + "readging": "すいしん", + "pos": "名詞", + "pn": -0.457174 + }, + { + "surface": "擦込む", + "readging": "すりこむ", + "pos": "動詞", + "pn": -0.457176 + }, + { + "surface": "オリーブ", + "readging": "オリーブ", + "pos": "名詞", + "pn": -0.457178 + }, + { + "surface": "政綱", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.457191 + }, + { + "surface": "シャボン", + "readging": "シャボン", + "pos": "名詞", + "pn": -0.457207 + }, + { + "surface": "常夜灯", + "readging": "じょうやとう", + "pos": "名詞", + "pn": -0.457223 + }, + { + "surface": "群集", + "readging": "ぐんしゅう", + "pos": "名詞", + "pn": -0.457226 + }, + { + "surface": "人相", + "readging": "にんそう", + "pos": "名詞", + "pn": -0.457246 + }, + { + "surface": "グリップ", + "readging": "グリップ", + "pos": "名詞", + "pn": -0.457257 + }, + { + "surface": "発言", + "readging": "はつげん", + "pos": "名詞", + "pn": -0.457258 + }, + { + "surface": "ラスト", + "readging": "ラスト", + "pos": "名詞", + "pn": -0.457261 + }, + { + "surface": "陳述", + "readging": "ちんじゅつ", + "pos": "名詞", + "pn": -0.457263 + }, + { + "surface": "嚔", + "readging": "くしゃみ", + "pos": "名詞", + "pn": -0.457292 + }, + { + "surface": "プラスチック", + "readging": "プラスチック", + "pos": "名詞", + "pn": -0.457317 + }, + { + "surface": "翁草", + "readging": "おきなぐさ", + "pos": "名詞", + "pn": -0.457326 + }, + { + "surface": "竜骨", + "readging": "りゅうこつ", + "pos": "名詞", + "pn": -0.45735 + }, + { + "surface": "種芋", + "readging": "たねいも", + "pos": "名詞", + "pn": -0.457357 + }, + { + "surface": "里言葉", + "readging": "さとことば", + "pos": "名詞", + "pn": -0.457374 + }, + { + "surface": "藤棚", + "readging": "ふじだな", + "pos": "名詞", + "pn": -0.45739 + }, + { + "surface": "パンの木", + "readging": "パンのき", + "pos": "名詞", + "pn": -0.45739 + }, + { + "surface": "下書", + "readging": "したがき", + "pos": "名詞", + "pn": -0.457396 + }, + { + "surface": "セーター", + "readging": "セーター", + "pos": "名詞", + "pn": -0.457402 + }, + { + "surface": "上絵", + "readging": "うわえ", + "pos": "名詞", + "pn": -0.457419 + }, + { + "surface": "ペンギン", + "readging": "ペンギン", + "pos": "名詞", + "pn": -0.457425 + }, + { + "surface": "投出す", + "readging": "なげだす", + "pos": "動詞", + "pn": -0.457427 + }, + { + "surface": "六日の菖蒲", + "readging": "むいかのあやめ", + "pos": "名詞", + "pn": -0.457437 + }, + { + "surface": "掛時計", + "readging": "かけどけい", + "pos": "名詞", + "pn": -0.457451 + }, + { + "surface": "携行", + "readging": "けいこう", + "pos": "名詞", + "pn": -0.457468 + }, + { + "surface": "ガイガー計数管", + "readging": "ガイガーけいすうかん", + "pos": "名詞", + "pn": -0.45747 + }, + { + "surface": "妖美", + "readging": "ようび", + "pos": "名詞", + "pn": -0.457474 + }, + { + "surface": "献詠", + "readging": "けんえい", + "pos": "名詞", + "pn": -0.457507 + }, + { + "surface": "夜昼", + "readging": "よるひる", + "pos": "名詞", + "pn": -0.457518 + }, + { + "surface": "カット", + "readging": "カットグラス", + "pos": "名詞", + "pn": -0.457519 + }, + { + "surface": "戻梅雨", + "readging": "もどりづゆ", + "pos": "名詞", + "pn": -0.457523 + }, + { + "surface": "バール", + "readging": "バール", + "pos": "名詞", + "pn": -0.457546 + }, + { + "surface": "出端", + "readging": "では", + "pos": "名詞", + "pn": -0.457555 + }, + { + "surface": "排煙", + "readging": "はいえん", + "pos": "名詞", + "pn": -0.45757 + }, + { + "surface": "既報", + "readging": "きほう", + "pos": "名詞", + "pn": -0.457587 + }, + { + "surface": "腋芽", + "readging": "えきが", + "pos": "名詞", + "pn": -0.45759 + }, + { + "surface": "寄算", + "readging": "よせざん", + "pos": "名詞", + "pn": -0.457599 + }, + { + "surface": "縁取る", + "readging": "ふちどる", + "pos": "動詞", + "pn": -0.457599 + }, + { + "surface": "懇請", + "readging": "こんせい", + "pos": "名詞", + "pn": -0.457626 + }, + { + "surface": "縄抜け", + "readging": "なわぬけ", + "pos": "名詞", + "pn": -0.457642 + }, + { + "surface": "謙称", + "readging": "けんしょう", + "pos": "名詞", + "pn": -0.457692 + }, + { + "surface": "イデー", + "readging": "イデー", + "pos": "名詞", + "pn": -0.457696 + }, + { + "surface": "古米", + "readging": "こまい", + "pos": "名詞", + "pn": -0.457732 + }, + { + "surface": "芳香", + "readging": "ほうこう", + "pos": "名詞", + "pn": -0.457737 + }, + { + "surface": "菊戴", + "readging": "きくいただき", + "pos": "名詞", + "pn": -0.457751 + }, + { + "surface": "粃", + "readging": "しいな", + "pos": "名詞", + "pn": -0.457764 + }, + { + "surface": "白状", + "readging": "はくじょう", + "pos": "名詞", + "pn": -0.457779 + }, + { + "surface": "装填", + "readging": "そうてん", + "pos": "名詞", + "pn": -0.457782 + }, + { + "surface": "旅銀", + "readging": "りょぎん", + "pos": "名詞", + "pn": -0.457786 + }, + { + "surface": "ねちねち", + "readging": "ねちねち", + "pos": "副詞", + "pn": -0.457793 + }, + { + "surface": "下男", + "readging": "げなん", + "pos": "名詞", + "pn": -0.457793 + }, + { + "surface": "泥棒", + "readging": "どろぼう", + "pos": "名詞", + "pn": -0.457794 + }, + { + "surface": "貫通", + "readging": "かんつう", + "pos": "名詞", + "pn": -0.457794 + }, + { + "surface": "爆竹", + "readging": "ばくちく", + "pos": "名詞", + "pn": -0.45781 + }, + { + "surface": "立葵", + "readging": "たちあおい", + "pos": "名詞", + "pn": -0.457837 + }, + { + "surface": "簿", + "readging": "ぼ", + "pos": "名詞", + "pn": -0.457838 + }, + { + "surface": "たらの木", + "readging": "たらのき", + "pos": "名詞", + "pn": -0.457844 + }, + { + "surface": "ニコチン", + "readging": "ニコチン", + "pos": "名詞", + "pn": -0.457846 + }, + { + "surface": "小柄", + "readging": "こがら", + "pos": "名詞", + "pn": -0.45792 + }, + { + "surface": "伽", + "readging": "とぎ", + "pos": "名詞", + "pn": -0.457935 + }, + { + "surface": "梓", + "readging": "あずさ", + "pos": "名詞", + "pn": -0.457958 + }, + { + "surface": "墨烏賊", + "readging": "すみいか", + "pos": "名詞", + "pn": -0.458011 + }, + { + "surface": "被さる", + "readging": "かぶさる", + "pos": "動詞", + "pn": -0.458011 + }, + { + "surface": "やんま", + "readging": "やんま", + "pos": "名詞", + "pn": -0.458085 + }, + { + "surface": "資格", + "readging": "しかく", + "pos": "名詞", + "pn": -0.458104 + }, + { + "surface": "八つ", + "readging": "やっつ", + "pos": "名詞", + "pn": -0.458122 + }, + { + "surface": "お河童", + "readging": "おかっぱ", + "pos": "名詞", + "pn": -0.458132 + }, + { + "surface": "ヤク", + "readging": "ヤク", + "pos": "名詞", + "pn": -0.458133 + }, + { + "surface": "節食", + "readging": "せっしょく", + "pos": "名詞", + "pn": -0.458136 + }, + { + "surface": "重奏", + "readging": "じゅうそう", + "pos": "名詞", + "pn": -0.458204 + }, + { + "surface": "優先権", + "readging": "ゆうせんけん", + "pos": "名詞", + "pn": -0.458206 + }, + { + "surface": "賃金", + "readging": "ちんきん", + "pos": "名詞", + "pn": -0.458207 + }, + { + "surface": "伴奏", + "readging": "ばんそう", + "pos": "名詞", + "pn": -0.458208 + }, + { + "surface": "とむね", + "readging": "とむね", + "pos": "名詞", + "pn": -0.458213 + }, + { + "surface": "身請け", + "readging": "みうけ", + "pos": "名詞", + "pn": -0.458217 + }, + { + "surface": "枝垂桜", + "readging": "しだれざくら", + "pos": "名詞", + "pn": -0.458219 + }, + { + "surface": "古狸", + "readging": "ふるだぬき", + "pos": "名詞", + "pn": -0.458224 + }, + { + "surface": "追善", + "readging": "ついぜん", + "pos": "名詞", + "pn": -0.45824 + }, + { + "surface": "わんさガール", + "readging": "わんさガール", + "pos": "名詞", + "pn": -0.458243 + }, + { + "surface": "朱筆", + "readging": "しゅひつ", + "pos": "名詞", + "pn": -0.458244 + }, + { + "surface": "向う", + "readging": "むこう", + "pos": "名詞", + "pn": -0.458278 + }, + { + "surface": "荏の油", + "readging": "えのあぶら", + "pos": "名詞", + "pn": -0.458295 + }, + { + "surface": "征途", + "readging": "せいと", + "pos": "名詞", + "pn": -0.458296 + }, + { + "surface": "行状", + "readging": "ぎょうじょう", + "pos": "名詞", + "pn": -0.458323 + }, + { + "surface": "阻隔", + "readging": "そかく", + "pos": "名詞", + "pn": -0.458362 + }, + { + "surface": "取っ掛り", + "readging": "とっかかり", + "pos": "名詞", + "pn": -0.45837 + }, + { + "surface": "険相", + "readging": "けんそう", + "pos": "名詞", + "pn": -0.45837 + }, + { + "surface": "箝口", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.458381 + }, + { + "surface": "陣笠", + "readging": "じんがさ", + "pos": "名詞", + "pn": -0.458388 + }, + { + "surface": "厚司", + "readging": "アツシ", + "pos": "名詞", + "pn": -0.458408 + }, + { + "surface": "留保", + "readging": "りゅうほ", + "pos": "名詞", + "pn": -0.458408 + }, + { + "surface": "横っ飛び", + "readging": "よこっとび", + "pos": "名詞", + "pn": -0.458422 + }, + { + "surface": "角灯", + "readging": "かくとう", + "pos": "名詞", + "pn": -0.458428 + }, + { + "surface": "台紙", + "readging": "だいし", + "pos": "名詞", + "pn": -0.458431 + }, + { + "surface": "鯣", + "readging": "するめ", + "pos": "名詞", + "pn": -0.458451 + }, + { + "surface": "息遣い", + "readging": "いきづかい", + "pos": "名詞", + "pn": -0.45846 + }, + { + "surface": "焼討", + "readging": "やきうち", + "pos": "名詞", + "pn": -0.458491 + }, + { + "surface": "言", + "readging": "ごん", + "pos": "名詞", + "pn": -0.4585 + }, + { + "surface": "回答", + "readging": "かいとう", + "pos": "名詞", + "pn": -0.458512 + }, + { + "surface": "真空管", + "readging": "しんくうかん", + "pos": "名詞", + "pn": -0.458525 + }, + { + "surface": "神出鬼没", + "readging": "しんしゅつきぼつ", + "pos": "名詞", + "pn": -0.458529 + }, + { + "surface": "布", + "readging": "ぬの", + "pos": "名詞", + "pn": -0.458543 + }, + { + "surface": "確かめる", + "readging": "たしかめる", + "pos": "動詞", + "pn": -0.45857 + }, + { + "surface": "毒腺", + "readging": "どくせん", + "pos": "名詞", + "pn": -0.458575 + }, + { + "surface": "悲哀", + "readging": "ひあい", + "pos": "名詞", + "pn": -0.458607 + }, + { + "surface": "法典", + "readging": "ほうてん", + "pos": "名詞", + "pn": -0.45861 + }, + { + "surface": "ナトリウム", + "readging": "ナトリウム", + "pos": "名詞", + "pn": -0.458614 + }, + { + "surface": "肩代り", + "readging": "かたがわり", + "pos": "名詞", + "pn": -0.458618 + }, + { + "surface": "講談", + "readging": "こうだん", + "pos": "名詞", + "pn": -0.458628 + }, + { + "surface": "七分搗", + "readging": "しちぶづき", + "pos": "名詞", + "pn": -0.458645 + }, + { + "surface": "亡命", + "readging": "ぼうめい", + "pos": "名詞", + "pn": -0.458674 + }, + { + "surface": "霜害", + "readging": "そうがい", + "pos": "名詞", + "pn": -0.458702 + }, + { + "surface": "懸想", + "readging": "けそう", + "pos": "名詞", + "pn": -0.458711 + }, + { + "surface": "風下", + "readging": "かざしも", + "pos": "名詞", + "pn": -0.458728 + }, + { + "surface": "折敷", + "readging": "おしき", + "pos": "名詞", + "pn": -0.458743 + }, + { + "surface": "蟻食", + "readging": "ありくい", + "pos": "名詞", + "pn": -0.458749 + }, + { + "surface": "子株", + "readging": "こかぶ", + "pos": "名詞", + "pn": -0.458753 + }, + { + "surface": "見分ける", + "readging": "みわける", + "pos": "動詞", + "pn": -0.458768 + }, + { + "surface": "箇条書", + "readging": "かじょうがき", + "pos": "名詞", + "pn": -0.458801 + }, + { + "surface": "周航", + "readging": "しゅうこう", + "pos": "名詞", + "pn": -0.458803 + }, + { + "surface": "戦況", + "readging": "せんきょう", + "pos": "名詞", + "pn": -0.458858 + }, + { + "surface": "カラザ", + "readging": "カラザ", + "pos": "名詞", + "pn": -0.458883 + }, + { + "surface": "輓馬", + "readging": "ばんば", + "pos": "名詞", + "pn": -0.458885 + }, + { + "surface": "一望千里", + "readging": "いちぼうせんり", + "pos": "名詞", + "pn": -0.458891 + }, + { + "surface": "塩酸", + "readging": "えんさん", + "pos": "名詞", + "pn": -0.458911 + }, + { + "surface": "囃子方", + "readging": "はやしかた", + "pos": "名詞", + "pn": -0.458936 + }, + { + "surface": "ニッパー", + "readging": "ニッパー", + "pos": "名詞", + "pn": -0.458942 + }, + { + "surface": "還送", + "readging": "かんそう", + "pos": "名詞", + "pn": -0.458952 + }, + { + "surface": "負荷", + "readging": "ふか", + "pos": "名詞", + "pn": -0.458958 + }, + { + "surface": "カレンダー", + "readging": "カレンダー", + "pos": "名詞", + "pn": -0.458963 + }, + { + "surface": "護衛", + "readging": "ごえい", + "pos": "名詞", + "pn": -0.458967 + }, + { + "surface": "伯父}{叔父", + "readging": "おじ", + "pos": "名詞", + "pn": -0.45897 + }, + { + "surface": "敷皮", + "readging": "しきがわ", + "pos": "名詞", + "pn": -0.458995 + }, + { + "surface": "ショート", + "readging": "ショートケーキ", + "pos": "名詞", + "pn": -0.458996 + }, + { + "surface": "参詣", + "readging": "さんけい", + "pos": "名詞", + "pn": -0.459015 + }, + { + "surface": "ルール", + "readging": "ルール", + "pos": "名詞", + "pn": -0.459019 + }, + { + "surface": "密売", + "readging": "みつばい", + "pos": "名詞", + "pn": -0.459025 + }, + { + "surface": "ビーチ パラソル", + "readging": "ビーチ パラソル", + "pos": "名詞", + "pn": -0.459037 + }, + { + "surface": "語源", + "readging": "ごげん", + "pos": "名詞", + "pn": -0.459038 + }, + { + "surface": "貰い手", + "readging": "もらいて", + "pos": "名詞", + "pn": -0.459042 + }, + { + "surface": "算", + "readging": "さん", + "pos": "名詞", + "pn": -0.459072 + }, + { + "surface": "一抱え", + "readging": "ひとかかえ", + "pos": "名詞", + "pn": -0.459098 + }, + { + "surface": "伝統", + "readging": "でんとう", + "pos": "名詞", + "pn": -0.459106 + }, + { + "surface": "廃する", + "readging": "はいする", + "pos": "動詞", + "pn": -0.459115 + }, + { + "surface": "修了", + "readging": "しゅうりょう", + "pos": "名詞", + "pn": -0.459121 + }, + { + "surface": "真鍮", + "readging": "しんちゅう", + "pos": "名詞", + "pn": -0.459132 + }, + { + "surface": "票", + "readging": "ひょう", + "pos": "名詞", + "pn": -0.459146 + }, + { + "surface": "くうき枕", + "readging": "くうきまくら", + "pos": "名詞", + "pn": -0.459178 + }, + { + "surface": "水ガラス", + "readging": "みずガラス", + "pos": "名詞", + "pn": -0.459181 + }, + { + "surface": "濁す", + "readging": "にごす", + "pos": "動詞", + "pn": -0.459183 + }, + { + "surface": "採種", + "readging": "さいしゅ", + "pos": "名詞", + "pn": -0.459187 + }, + { + "surface": "恥骨", + "readging": "ちこつ", + "pos": "名詞", + "pn": -0.459208 + }, + { + "surface": "左巻き", + "readging": "ひだりまき", + "pos": "名詞", + "pn": -0.459245 + }, + { + "surface": "サウナ", + "readging": "サウナ", + "pos": "名詞", + "pn": -0.459249 + }, + { + "surface": "非礼", + "readging": "ひれい", + "pos": "名詞", + "pn": -0.459278 + }, + { + "surface": "赤熱", + "readging": "せきねつ", + "pos": "名詞", + "pn": -0.459283 + }, + { + "surface": "メモ", + "readging": "メモ", + "pos": "名詞", + "pn": -0.459284 + }, + { + "surface": "しゃあしゃあ", + "readging": "しゃあしゃあ", + "pos": "名詞", + "pn": -0.45929 + }, + { + "surface": "客止め", + "readging": "きゃくどめ", + "pos": "名詞", + "pn": -0.459326 + }, + { + "surface": "曲調", + "readging": "きょくちょう", + "pos": "名詞", + "pn": -0.459345 + }, + { + "surface": "移住", + "readging": "いじゅう", + "pos": "名詞", + "pn": -0.459371 + }, + { + "surface": "烈烈", + "readging": "れつれつ", + "pos": "名詞", + "pn": -0.459372 + }, + { + "surface": "ぴっちり", + "readging": "ぴっちり", + "pos": "副詞", + "pn": -0.459372 + }, + { + "surface": "かます", + "readging": "かます", + "pos": "動詞", + "pn": -0.459377 + }, + { + "surface": "幾何", + "readging": "きか", + "pos": "名詞", + "pn": -0.459397 + }, + { + "surface": "風姿", + "readging": "ふうし", + "pos": "名詞", + "pn": -0.459408 + }, + { + "surface": "急峻", + "readging": "きゅうしゅん", + "pos": "名詞", + "pn": -0.459411 + }, + { + "surface": "帳", + "readging": "とばり", + "pos": "名詞", + "pn": -0.459422 + }, + { + "surface": "役替え", + "readging": "やくがえ", + "pos": "名詞", + "pn": -0.459439 + }, + { + "surface": "老い", + "readging": "おい", + "pos": "名詞", + "pn": -0.459441 + }, + { + "surface": "サンデー", + "readging": "サンデー", + "pos": "名詞", + "pn": -0.459443 + }, + { + "surface": "具足", + "readging": "ぐそく", + "pos": "名詞", + "pn": -0.459467 + }, + { + "surface": "精錬", + "readging": "せいれん", + "pos": "名詞", + "pn": -0.459469 + }, + { + "surface": "艇", + "readging": "てい", + "pos": "名詞", + "pn": -0.459475 + }, + { + "surface": "太刀", + "readging": "たちさき", + "pos": "名詞", + "pn": -0.459479 + }, + { + "surface": "解職", + "readging": "かいしょく", + "pos": "名詞", + "pn": -0.459486 + }, + { + "surface": "輪廻", + "readging": "りんね", + "pos": "名詞", + "pn": -0.459491 + }, + { + "surface": "雀色", + "readging": "すずめいろ", + "pos": "名詞", + "pn": -0.459506 + }, + { + "surface": "竜", + "readging": "りゅう", + "pos": "名詞", + "pn": -0.459507 + }, + { + "surface": "死蔵", + "readging": "しぞう", + "pos": "名詞", + "pn": -0.459511 + }, + { + "surface": "河童", + "readging": "かっぱ", + "pos": "名詞", + "pn": -0.459514 + }, + { + "surface": "雪沓", + "readging": "ゆきぐつ", + "pos": "名詞", + "pn": -0.459522 + }, + { + "surface": "河川", + "readging": "かせん", + "pos": "名詞", + "pn": -0.459524 + }, + { + "surface": "炒飯", + "readging": "チャーハン", + "pos": "名詞", + "pn": -0.459527 + }, + { + "surface": "箸置き", + "readging": "はしおき", + "pos": "名詞", + "pn": -0.459537 + }, + { + "surface": "嵌入", + "readging": "かんにゅう", + "pos": "名詞", + "pn": -0.459548 + }, + { + "surface": "改葬", + "readging": "かいそう", + "pos": "名詞", + "pn": -0.459558 + }, + { + "surface": "現実", + "readging": "げんじつ", + "pos": "名詞", + "pn": -0.459565 + }, + { + "surface": "矢来", + "readging": "やらい", + "pos": "名詞", + "pn": -0.459573 + }, + { + "surface": "舟艇", + "readging": "しゅうてい", + "pos": "名詞", + "pn": -0.459575 + }, + { + "surface": "小道", + "readging": "こみち", + "pos": "名詞", + "pn": -0.459576 + }, + { + "surface": "撥", + "readging": "ばち", + "pos": "名詞", + "pn": -0.459621 + }, + { + "surface": "一言", + "readging": "ひとこと", + "pos": "名詞", + "pn": -0.459633 + }, + { + "surface": "本膳", + "readging": "ほんぜん", + "pos": "名詞", + "pn": -0.459645 + }, + { + "surface": "五寸釘", + "readging": "ごすんくぎ", + "pos": "名詞", + "pn": -0.459645 + }, + { + "surface": "訓", + "readging": "くん", + "pos": "名詞", + "pn": -0.459645 + }, + { + "surface": "濯ぎ", + "readging": "すすぎ", + "pos": "名詞", + "pn": -0.459651 + }, + { + "surface": "退ける", + "readging": "どける", + "pos": "動詞", + "pn": -0.459658 + }, + { + "surface": "子孫", + "readging": "しそん", + "pos": "名詞", + "pn": -0.459666 + }, + { + "surface": "翁", + "readging": "おきな", + "pos": "名詞", + "pn": -0.459692 + }, + { + "surface": "轢殺す", + "readging": "ひきころす", + "pos": "動詞", + "pn": -0.4597 + }, + { + "surface": "複写", + "readging": "ふくしゃ", + "pos": "名詞", + "pn": -0.459713 + }, + { + "surface": "諸声", + "readging": "もろごえ", + "pos": "名詞", + "pn": -0.45973 + }, + { + "surface": "養家", + "readging": "ようか", + "pos": "名詞", + "pn": -0.459775 + }, + { + "surface": "枕詞", + "readging": "まくらことば", + "pos": "名詞", + "pn": -0.459789 + }, + { + "surface": "榛の木", + "readging": "はんのき", + "pos": "名詞", + "pn": -0.459791 + }, + { + "surface": "冬ざれ", + "readging": "ふゆざれ", + "pos": "名詞", + "pn": -0.459811 + }, + { + "surface": "じっとり", + "readging": "じっとり", + "pos": "副詞", + "pn": -0.459838 + }, + { + "surface": "リケッチア", + "readging": "リケッチア", + "pos": "名詞", + "pn": -0.459841 + }, + { + "surface": "帰属", + "readging": "きぞく", + "pos": "名詞", + "pn": -0.459842 + }, + { + "surface": "慷慨", + "readging": "こうがい", + "pos": "名詞", + "pn": -0.459858 + }, + { + "surface": "海岸線", + "readging": "かいがんせん", + "pos": "名詞", + "pn": -0.459906 + }, + { + "surface": "負", + "readging": "まけ", + "pos": "名詞", + "pn": -0.45991 + }, + { + "surface": "便秘", + "readging": "べんぴ", + "pos": "名詞", + "pn": -0.459955 + }, + { + "surface": "沙魚", + "readging": "はぜ", + "pos": "名詞", + "pn": -0.459965 + }, + { + "surface": "鼓", + "readging": "つづみ", + "pos": "名詞", + "pn": -0.459966 + }, + { + "surface": "青山", + "readging": "せいざん", + "pos": "名詞", + "pn": -0.459969 + }, + { + "surface": "木馬", + "readging": "もくば", + "pos": "名詞", + "pn": -0.459987 + }, + { + "surface": "平行線", + "readging": "へいこうせん", + "pos": "名詞", + "pn": -0.460006 + }, + { + "surface": "雲霞", + "readging": "うんか", + "pos": "名詞", + "pn": -0.460009 + }, + { + "surface": "略式", + "readging": "りゃくしき", + "pos": "名詞", + "pn": -0.460017 + }, + { + "surface": "論客", + "readging": "ろんかく", + "pos": "名詞", + "pn": -0.460031 + }, + { + "surface": "鰰", + "readging": "はたはた", + "pos": "名詞", + "pn": -0.460059 + }, + { + "surface": "グレープ", + "readging": "グレープ", + "pos": "名詞", + "pn": -0.460083 + }, + { + "surface": "桃割", + "readging": "ももわれ", + "pos": "名詞", + "pn": -0.460105 + }, + { + "surface": "背負投", + "readging": "せおいなげ", + "pos": "名詞", + "pn": -0.460105 + }, + { + "surface": "聞所", + "readging": "ききどころ", + "pos": "名詞", + "pn": -0.460115 + }, + { + "surface": "易行道", + "readging": "いぎょうどう", + "pos": "名詞", + "pn": -0.460122 + }, + { + "surface": "櫛巻", + "readging": "くしまき", + "pos": "名詞", + "pn": -0.460123 + }, + { + "surface": "引絞る", + "readging": "ひきしぼる", + "pos": "動詞", + "pn": -0.460129 + }, + { + "surface": "二人静", + "readging": "ふたりしずか", + "pos": "名詞", + "pn": -0.460132 + }, + { + "surface": "綿繰り車", + "readging": "わたくりぐるま", + "pos": "名詞", + "pn": -0.460137 + }, + { + "surface": "足下", + "readging": "あしもと", + "pos": "名詞", + "pn": -0.460158 + }, + { + "surface": "終末", + "readging": "しゅうまつ", + "pos": "名詞", + "pn": -0.460172 + }, + { + "surface": "口利き", + "readging": "くちきき", + "pos": "名詞", + "pn": -0.460186 + }, + { + "surface": "地蜂", + "readging": "じばち", + "pos": "名詞", + "pn": -0.460194 + }, + { + "surface": "四輪駆動", + "readging": "よんりんくどう", + "pos": "名詞", + "pn": -0.460233 + }, + { + "surface": "白む", + "readging": "しらむ", + "pos": "動詞", + "pn": -0.46024 + }, + { + "surface": "筆記", + "readging": "ひっき", + "pos": "名詞", + "pn": -0.460286 + }, + { + "surface": "ベーコン", + "readging": "ベーコン", + "pos": "名詞", + "pn": -0.460286 + }, + { + "surface": "物語る", + "readging": "ものがたる", + "pos": "動詞", + "pn": -0.460297 + }, + { + "surface": "仕切", + "readging": "しきり", + "pos": "名詞", + "pn": -0.460299 + }, + { + "surface": "塁壁", + "readging": "るいへき", + "pos": "名詞", + "pn": -0.460305 + }, + { + "surface": "燻製", + "readging": "くんせい", + "pos": "名詞", + "pn": -0.460316 + }, + { + "surface": "面面", + "readging": "めんめん", + "pos": "名詞", + "pn": -0.460327 + }, + { + "surface": "筒音", + "readging": "つつおと", + "pos": "名詞", + "pn": -0.460345 + }, + { + "surface": "合気道", + "readging": "あいきどう", + "pos": "名詞", + "pn": -0.460349 + }, + { + "surface": "七重", + "readging": "ななえ", + "pos": "名詞", + "pn": -0.460356 + }, + { + "surface": "一転", + "readging": "いってん", + "pos": "名詞", + "pn": -0.460356 + }, + { + "surface": "迫上げる", + "readging": "せりあげる", + "pos": "動詞", + "pn": -0.460363 + }, + { + "surface": "袋棚", + "readging": "ふくろだな", + "pos": "名詞", + "pn": -0.460363 + }, + { + "surface": "自信", + "readging": "じしん", + "pos": "名詞", + "pn": -0.460393 + }, + { + "surface": "売払う", + "readging": "うりはらう", + "pos": "動詞", + "pn": -0.460397 + }, + { + "surface": "金儲け", + "readging": "かねもうけ", + "pos": "名詞", + "pn": -0.460404 + }, + { + "surface": "菱", + "readging": "ひし", + "pos": "名詞", + "pn": -0.460413 + }, + { + "surface": "焼付く", + "readging": "やきつく", + "pos": "動詞", + "pn": -0.460423 + }, + { + "surface": "磁器", + "readging": "じき", + "pos": "名詞", + "pn": -0.460439 + }, + { + "surface": "交錯", + "readging": "こうさく", + "pos": "名詞", + "pn": -0.460439 + }, + { + "surface": "轢死", + "readging": "れきし", + "pos": "名詞", + "pn": -0.46046 + }, + { + "surface": "どかどか", + "readging": "どかどか", + "pos": "副詞", + "pn": -0.460462 + }, + { + "surface": "蛍火", + "readging": "ほたるび", + "pos": "名詞", + "pn": -0.460468 + }, + { + "surface": "一人", + "readging": "ひとりじめ", + "pos": "名詞", + "pn": -0.460484 + }, + { + "surface": "陸橋", + "readging": "りっきょう", + "pos": "名詞", + "pn": -0.460489 + }, + { + "surface": "着筆", + "readging": "ちゃくひつ", + "pos": "名詞", + "pn": -0.460513 + }, + { + "surface": "吹替え", + "readging": "ふきかえ", + "pos": "名詞", + "pn": -0.46053 + }, + { + "surface": "表通り", + "readging": "おもてどおり", + "pos": "名詞", + "pn": -0.460542 + }, + { + "surface": "営農", + "readging": "えいのう", + "pos": "名詞", + "pn": -0.460559 + }, + { + "surface": "錯簡", + "readging": "さっかん", + "pos": "名詞", + "pn": -0.460589 + }, + { + "surface": "茶筅", + "readging": "ちゃせん", + "pos": "名詞", + "pn": -0.460591 + }, + { + "surface": "夜尿症", + "readging": "やにょうしょう", + "pos": "名詞", + "pn": -0.460597 + }, + { + "surface": "耳飾り", + "readging": "みみかざり", + "pos": "名詞", + "pn": -0.460599 + }, + { + "surface": "井戸端会議", + "readging": "いど", + "pos": "名詞", + "pn": -0.4606 + }, + { + "surface": "担い手", + "readging": "にないて", + "pos": "名詞", + "pn": -0.460616 + }, + { + "surface": "修行", + "readging": "しゅぎょう", + "pos": "名詞", + "pn": -0.460649 + }, + { + "surface": "にやにや", + "readging": "にやにや", + "pos": "副詞", + "pn": -0.460661 + }, + { + "surface": "天蚕糸", + "readging": "てぐす", + "pos": "名詞", + "pn": -0.460662 + }, + { + "surface": "両替", + "readging": "りょうがえ", + "pos": "名詞", + "pn": -0.460666 + }, + { + "surface": "藁屋", + "readging": "わらや", + "pos": "名詞", + "pn": -0.460719 + }, + { + "surface": "複", + "readging": "ふく", + "pos": "名詞", + "pn": -0.460751 + }, + { + "surface": "外観", + "readging": "がいかん", + "pos": "名詞", + "pn": -0.460756 + }, + { + "surface": "石斑魚", + "readging": "うぐい", + "pos": "名詞", + "pn": -0.460785 + }, + { + "surface": "童女", + "readging": "どうじょ", + "pos": "名詞", + "pn": -0.460786 + }, + { + "surface": "海老腰", + "readging": "えびごし", + "pos": "名詞", + "pn": -0.460791 + }, + { + "surface": "一斑", + "readging": "いっぱん", + "pos": "名詞", + "pn": -0.460799 + }, + { + "surface": "目途", + "readging": "もくと", + "pos": "名詞", + "pn": -0.460818 + }, + { + "surface": "媚", + "readging": "び", + "pos": "名詞", + "pn": -0.460825 + }, + { + "surface": "冷かし", + "readging": "ひやかし", + "pos": "名詞", + "pn": -0.460889 + }, + { + "surface": "引下げる", + "readging": "ひきさげる", + "pos": "動詞", + "pn": -0.460905 + }, + { + "surface": "節", + "readging": "ふし", + "pos": "名詞", + "pn": -0.46093 + }, + { + "surface": "キルティング", + "readging": "キルティング", + "pos": "名詞", + "pn": -0.460941 + }, + { + "surface": "轆轤首", + "readging": "ろくろくび", + "pos": "名詞", + "pn": -0.460944 + }, + { + "surface": "挙世", + "readging": "きょせい", + "pos": "名詞", + "pn": -0.460956 + }, + { + "surface": "櫓拍子", + "readging": "ろびょうし", + "pos": "名詞", + "pn": -0.460966 + }, + { + "surface": "貰い笑い", + "readging": "もらいわらい", + "pos": "名詞", + "pn": -0.460973 + }, + { + "surface": "早舟", + "readging": "はやぶね", + "pos": "名詞", + "pn": -0.460982 + }, + { + "surface": "煎餅", + "readging": "せんべい", + "pos": "名詞", + "pn": -0.460989 + }, + { + "surface": "残像", + "readging": "ざんぞう", + "pos": "名詞", + "pn": -0.46099 + }, + { + "surface": "ウエート", + "readging": "ウエートリフティング", + "pos": "名詞", + "pn": -0.460993 + }, + { + "surface": "げんまん", + "readging": "げんまん", + "pos": "名詞", + "pn": -0.460998 + }, + { + "surface": "条件", + "readging": "じょうけん", + "pos": "名詞", + "pn": -0.461011 + }, + { + "surface": "白南風", + "readging": "しらはえ", + "pos": "名詞", + "pn": -0.461049 + }, + { + "surface": "編出す", + "readging": "あみだす", + "pos": "動詞", + "pn": -0.461049 + }, + { + "surface": "盥回し", + "readging": "たらいまわし", + "pos": "名詞", + "pn": -0.461071 + }, + { + "surface": "排卵", + "readging": "はいらん", + "pos": "名詞", + "pn": -0.461081 + }, + { + "surface": "サイズ", + "readging": "サイズ", + "pos": "名詞", + "pn": -0.461088 + }, + { + "surface": "ネクタイ", + "readging": "ネクタイピン", + "pos": "名詞", + "pn": -0.461103 + }, + { + "surface": "譲葉", + "readging": "ゆずりは", + "pos": "名詞", + "pn": -0.461105 + }, + { + "surface": "口裏", + "readging": "くちうら", + "pos": "名詞", + "pn": -0.461117 + }, + { + "surface": "布子", + "readging": "ぬのこ", + "pos": "名詞", + "pn": -0.461131 + }, + { + "surface": "拠", + "readging": "きょ", + "pos": "名詞", + "pn": -0.461136 + }, + { + "surface": "潜水艦", + "readging": "せんすいかん", + "pos": "名詞", + "pn": -0.461156 + }, + { + "surface": "貝柱", + "readging": "かいばしら", + "pos": "名詞", + "pn": -0.461159 + }, + { + "surface": "男帯", + "readging": "おとこおび", + "pos": "名詞", + "pn": -0.46121 + }, + { + "surface": "連結", + "readging": "れんけつ", + "pos": "名詞", + "pn": -0.461211 + }, + { + "surface": "唐橘", + "readging": "からたちばな", + "pos": "名詞", + "pn": -0.461216 + }, + { + "surface": "去月", + "readging": "きょげつ", + "pos": "名詞", + "pn": -0.461219 + }, + { + "surface": "プラグ", + "readging": "プラグ", + "pos": "名詞", + "pn": -0.46122 + }, + { + "surface": "念慮", + "readging": "ねんりょ", + "pos": "名詞", + "pn": -0.461265 + }, + { + "surface": "嬢", + "readging": "じょう", + "pos": "名詞", + "pn": -0.461281 + }, + { + "surface": "問題意識", + "readging": "もんだいいしき", + "pos": "名詞", + "pn": -0.461315 + }, + { + "surface": "木斛", + "readging": "もっこく", + "pos": "名詞", + "pn": -0.461326 + }, + { + "surface": "補任", + "readging": "ほにん", + "pos": "名詞", + "pn": -0.461335 + }, + { + "surface": "遊動円木", + "readging": "ゆうどうえんぼく", + "pos": "名詞", + "pn": -0.461356 + }, + { + "surface": "鑑定", + "readging": "かんてい", + "pos": "名詞", + "pn": -0.461363 + }, + { + "surface": "身柄", + "readging": "みがら", + "pos": "名詞", + "pn": -0.46138 + }, + { + "surface": "胴締", + "readging": "どうじめ", + "pos": "名詞", + "pn": -0.461412 + }, + { + "surface": "問", + "readging": "とい", + "pos": "名詞", + "pn": -0.461421 + }, + { + "surface": "あぎと", + "readging": "あぎと", + "pos": "名詞", + "pn": -0.461451 + }, + { + "surface": "言質", + "readging": "げんち", + "pos": "名詞", + "pn": -0.461458 + }, + { + "surface": "空騒ぎ", + "readging": "からさわぎ", + "pos": "名詞", + "pn": -0.461498 + }, + { + "surface": "竦み上がる", + "readging": "すくみあがる", + "pos": "動詞", + "pn": -0.461502 + }, + { + "surface": "オン ザ ロック", + "readging": "オン ザ ロック", + "pos": "名詞", + "pn": -0.461518 + }, + { + "surface": "カンテラ", + "readging": "カンテラ", + "pos": "名詞", + "pn": -0.461528 + }, + { + "surface": "破風", + "readging": "はふ", + "pos": "名詞", + "pn": -0.46153 + }, + { + "surface": "ポップ アート", + "readging": "ポップ アート", + "pos": "名詞", + "pn": -0.46153 + }, + { + "surface": "合成樹脂", + "readging": "ごうせいじゅし", + "pos": "名詞", + "pn": -0.46154 + }, + { + "surface": "めく", + "readging": "めく", + "pos": "動詞", + "pn": -0.46155 + }, + { + "surface": "羽虫", + "readging": "はむし", + "pos": "名詞", + "pn": -0.461569 + }, + { + "surface": "苺", + "readging": "いちご", + "pos": "名詞", + "pn": -0.461579 + }, + { + "surface": "比翼の鳥", + "readging": "ひよくのとり", + "pos": "名詞", + "pn": -0.461585 + }, + { + "surface": "法被", + "readging": "はっぴ", + "pos": "名詞", + "pn": -0.461621 + }, + { + "surface": "宝尽し", + "readging": "たからづくし", + "pos": "名詞", + "pn": -0.461634 + }, + { + "surface": "丹色", + "readging": "にいろ", + "pos": "名詞", + "pn": -0.461661 + }, + { + "surface": "斟酌", + "readging": "しんしゃく", + "pos": "名詞", + "pn": -0.461666 + }, + { + "surface": "水気", + "readging": "すいき", + "pos": "名詞", + "pn": -0.461674 + }, + { + "surface": "瓦解", + "readging": "がかい", + "pos": "名詞", + "pn": -0.461684 + }, + { + "surface": "利得", + "readging": "りとく", + "pos": "名詞", + "pn": -0.46171 + }, + { + "surface": "桜紙", + "readging": "さくらがみ", + "pos": "名詞", + "pn": -0.461733 + }, + { + "surface": "駐兵", + "readging": "ちゅうへい", + "pos": "名詞", + "pn": -0.461751 + }, + { + "surface": "タイル", + "readging": "タイル", + "pos": "名詞", + "pn": -0.461766 + }, + { + "surface": "日の入り", + "readging": "ひのいり", + "pos": "名詞", + "pn": -0.461778 + }, + { + "surface": "血縁", + "readging": "けつえん", + "pos": "名詞", + "pn": -0.461812 + }, + { + "surface": "陽転", + "readging": "ようてん", + "pos": "名詞", + "pn": -0.461823 + }, + { + "surface": "砂糖大根", + "readging": "さとうだいこん", + "pos": "名詞", + "pn": -0.461825 + }, + { + "surface": "猟", + "readging": "りょう", + "pos": "名詞", + "pn": -0.461864 + }, + { + "surface": "置字", + "readging": "おきじ", + "pos": "名詞", + "pn": -0.46187 + }, + { + "surface": "併有", + "readging": "へいゆう", + "pos": "名詞", + "pn": -0.461872 + }, + { + "surface": "初湯", + "readging": "はつゆ", + "pos": "名詞", + "pn": -0.461874 + }, + { + "surface": "口論", + "readging": "こうろん", + "pos": "名詞", + "pn": -0.461898 + }, + { + "surface": "ラジウム", + "readging": "ラジウム", + "pos": "名詞", + "pn": -0.461901 + }, + { + "surface": "走梅雨", + "readging": "はしりづゆ", + "pos": "名詞", + "pn": -0.461944 + }, + { + "surface": "湾曲", + "readging": "わんきょく", + "pos": "名詞", + "pn": -0.46195 + }, + { + "surface": "薬餌", + "readging": "やくじ", + "pos": "名詞", + "pn": -0.461985 + }, + { + "surface": "消印", + "readging": "けしいん", + "pos": "名詞", + "pn": -0.461989 + }, + { + "surface": "優諚", + "readging": "ゆうじょう", + "pos": "名詞", + "pn": -0.461992 + }, + { + "surface": "言掛り", + "readging": "いいがかり", + "pos": "名詞", + "pn": -0.462007 + }, + { + "surface": "肺腑", + "readging": "はいふ", + "pos": "名詞", + "pn": -0.462009 + }, + { + "surface": "車体", + "readging": "しゃたい", + "pos": "名詞", + "pn": -0.462044 + }, + { + "surface": "落手", + "readging": "らくしゅ", + "pos": "名詞", + "pn": -0.462062 + }, + { + "surface": "穴居", + "readging": "けっきょ", + "pos": "名詞", + "pn": -0.462062 + }, + { + "surface": "淡竹", + "readging": "はちく", + "pos": "名詞", + "pn": -0.462063 + }, + { + "surface": "毛虫", + "readging": "けむし", + "pos": "名詞", + "pn": -0.462063 + }, + { + "surface": "適用", + "readging": "てきよう", + "pos": "名詞", + "pn": -0.462065 + }, + { + "surface": "柳絮", + "readging": "りゅうじょ", + "pos": "名詞", + "pn": -0.462082 + }, + { + "surface": "船室", + "readging": "せんしつ", + "pos": "名詞", + "pn": -0.462085 + }, + { + "surface": "砌", + "readging": "みぎり", + "pos": "名詞", + "pn": -0.462106 + }, + { + "surface": "珈琲", + "readging": "コーヒー", + "pos": "名詞", + "pn": -0.462108 + }, + { + "surface": "葦簾張り", + "readging": "よしずばり", + "pos": "名詞", + "pn": -0.462135 + }, + { + "surface": "キャンデー", + "readging": "キャンデー", + "pos": "名詞", + "pn": -0.462139 + }, + { + "surface": "蚤取り眼", + "readging": "のみとりまなこ", + "pos": "名詞", + "pn": -0.462161 + }, + { + "surface": "代打", + "readging": "だいだ", + "pos": "名詞", + "pn": -0.462172 + }, + { + "surface": "シネラリア", + "readging": "シネラリア", + "pos": "名詞", + "pn": -0.462189 + }, + { + "surface": "地髪", + "readging": "じがみ", + "pos": "名詞", + "pn": -0.462209 + }, + { + "surface": "会同", + "readging": "かいどう", + "pos": "名詞", + "pn": -0.462209 + }, + { + "surface": "一泡", + "readging": "ひとあわ", + "pos": "名詞", + "pn": -0.462221 + }, + { + "surface": "粘体", + "readging": "ねんたい", + "pos": "名詞", + "pn": -0.462222 + }, + { + "surface": "継粉", + "readging": "ままこ", + "pos": "名詞", + "pn": -0.462225 + }, + { + "surface": "原本", + "readging": "げんぽん", + "pos": "名詞", + "pn": -0.462246 + }, + { + "surface": "予感", + "readging": "よかん", + "pos": "名詞", + "pn": -0.46226 + }, + { + "surface": "慮外", + "readging": "りょがい", + "pos": "名詞", + "pn": -0.462269 + }, + { + "surface": "問質す", + "readging": "といただす", + "pos": "動詞", + "pn": -0.462277 + }, + { + "surface": "来襲", + "readging": "らいしゅう", + "pos": "名詞", + "pn": -0.462281 + }, + { + "surface": "棟", + "readging": "とう", + "pos": "名詞", + "pn": -0.462296 + }, + { + "surface": "札", + "readging": "さね", + "pos": "名詞", + "pn": -0.462307 + }, + { + "surface": "自刎", + "readging": "じふん", + "pos": "名詞", + "pn": -0.462343 + }, + { + "surface": "入札", + "readging": "にゅうさつ", + "pos": "名詞", + "pn": -0.462357 + }, + { + "surface": "腹立つ", + "readging": "はらだつ", + "pos": "動詞", + "pn": -0.462376 + }, + { + "surface": "禽獣", + "readging": "きんじゅう", + "pos": "名詞", + "pn": -0.462392 + }, + { + "surface": "挟箱", + "readging": "はさみばこ", + "pos": "名詞", + "pn": -0.462404 + }, + { + "surface": "被覆", + "readging": "ひふく", + "pos": "名詞", + "pn": -0.462413 + }, + { + "surface": "葬り去る", + "readging": "ほうむりさる", + "pos": "動詞", + "pn": -0.462424 + }, + { + "surface": "ステッキ", + "readging": "ステッキ", + "pos": "名詞", + "pn": -0.462428 + }, + { + "surface": "まるで", + "readging": "まるで", + "pos": "副詞", + "pn": -0.462431 + }, + { + "surface": "旋風", + "readging": "つむじかぜ", + "pos": "名詞", + "pn": -0.462465 + }, + { + "surface": "接近", + "readging": "せっきん", + "pos": "名詞", + "pn": -0.462468 + }, + { + "surface": "イディオム", + "readging": "イディオム", + "pos": "名詞", + "pn": -0.462469 + }, + { + "surface": "編目", + "readging": "あみめ", + "pos": "名詞", + "pn": -0.46247 + }, + { + "surface": "備忘録", + "readging": "びぼうろく", + "pos": "名詞", + "pn": -0.46249 + }, + { + "surface": "綴方", + "readging": "つづりかた", + "pos": "名詞", + "pn": -0.462498 + }, + { + "surface": "紆余曲折", + "readging": "うよきょくせつ", + "pos": "名詞", + "pn": -0.462557 + }, + { + "surface": "僧形", + "readging": "そうぎょう", + "pos": "名詞", + "pn": -0.462559 + }, + { + "surface": "牡丹刷毛", + "readging": "ぼたんばけ", + "pos": "名詞", + "pn": -0.462565 + }, + { + "surface": "鞍部", + "readging": "あんぶ", + "pos": "名詞", + "pn": -0.462565 + }, + { + "surface": "酒粕", + "readging": "さけかす", + "pos": "名詞", + "pn": -0.462574 + }, + { + "surface": "揚油", + "readging": "あげあぶら", + "pos": "名詞", + "pn": -0.462601 + }, + { + "surface": "兆", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.462633 + }, + { + "surface": "ちょぼ", + "readging": "ちょぼ", + "pos": "名詞", + "pn": -0.46264 + }, + { + "surface": "湯漬", + "readging": "ゆづけ", + "pos": "名詞", + "pn": -0.462647 + }, + { + "surface": "門衛", + "readging": "もんえい", + "pos": "名詞", + "pn": -0.46265 + }, + { + "surface": "鰊", + "readging": "にしん", + "pos": "名詞", + "pn": -0.462655 + }, + { + "surface": "マニラ麻", + "readging": "マニラあさ", + "pos": "名詞", + "pn": -0.46266 + }, + { + "surface": "干犯", + "readging": "かんぱん", + "pos": "名詞", + "pn": -0.462688 + }, + { + "surface": "ワニス", + "readging": "ワニス", + "pos": "名詞", + "pn": -0.462689 + }, + { + "surface": "無人", + "readging": "ぶにん", + "pos": "名詞", + "pn": -0.462689 + }, + { + "surface": "目移り", + "readging": "めうつり", + "pos": "名詞", + "pn": -0.462708 + }, + { + "surface": "ぐびぐび", + "readging": "ぐびぐび", + "pos": "副詞", + "pn": -0.462727 + }, + { + "surface": "済世", + "readging": "さいせい", + "pos": "名詞", + "pn": -0.462766 + }, + { + "surface": "卜する", + "readging": "ぼくする", + "pos": "動詞", + "pn": -0.462786 + }, + { + "surface": "センター", + "readging": "センター", + "pos": "名詞", + "pn": -0.462824 + }, + { + "surface": "宿直", + "readging": "とのい", + "pos": "名詞", + "pn": -0.462851 + }, + { + "surface": "石", + "readging": "いし", + "pos": "名詞", + "pn": -0.462853 + }, + { + "surface": "五指", + "readging": "ごし", + "pos": "名詞", + "pn": -0.462855 + }, + { + "surface": "早生", + "readging": "わせ", + "pos": "名詞", + "pn": -0.46292 + }, + { + "surface": "固持", + "readging": "こじ", + "pos": "名詞", + "pn": -0.462923 + }, + { + "surface": "議会", + "readging": "ぎかい", + "pos": "名詞", + "pn": -0.462936 + }, + { + "surface": "たわい", + "readging": "たわい", + "pos": "名詞", + "pn": -0.462979 + }, + { + "surface": "茜雲", + "readging": "あかねぐも", + "pos": "名詞", + "pn": -0.462994 + }, + { + "surface": "数の子", + "readging": "かずのこ", + "pos": "名詞", + "pn": -0.463005 + }, + { + "surface": "ワッペン", + "readging": "ワッペン", + "pos": "名詞", + "pn": -0.463028 + }, + { + "surface": "導く", + "readging": "みちびく", + "pos": "動詞", + "pn": -0.463029 + }, + { + "surface": "減俸", + "readging": "げんぽう", + "pos": "名詞", + "pn": -0.463042 + }, + { + "surface": "間然", + "readging": "かんぜん", + "pos": "名詞", + "pn": -0.463059 + }, + { + "surface": "天秤", + "readging": "てんびん", + "pos": "名詞", + "pn": -0.463076 + }, + { + "surface": "峻別", + "readging": "しゅんべつ", + "pos": "名詞", + "pn": -0.463085 + }, + { + "surface": "作り立てる", + "readging": "つくりたてる", + "pos": "動詞", + "pn": -0.463089 + }, + { + "surface": "真菰", + "readging": "まこも", + "pos": "名詞", + "pn": -0.463093 + }, + { + "surface": "鱗粉", + "readging": "りんぷん", + "pos": "名詞", + "pn": -0.463144 + }, + { + "surface": "無用の長物", + "readging": "むようのちょうぶつ", + "pos": "名詞", + "pn": -0.463157 + }, + { + "surface": "没年", + "readging": "ぼつねん", + "pos": "名詞", + "pn": -0.463166 + }, + { + "surface": "同乗", + "readging": "どうじょう", + "pos": "名詞", + "pn": -0.463169 + }, + { + "surface": "同車", + "readging": "どうしゃ", + "pos": "名詞", + "pn": -0.463169 + }, + { + "surface": "察知", + "readging": "さっち", + "pos": "名詞", + "pn": -0.463184 + }, + { + "surface": "着替え", + "readging": "きがえ", + "pos": "名詞", + "pn": -0.463203 + }, + { + "surface": "浮塵子", + "readging": "うんか", + "pos": "名詞", + "pn": -0.463211 + }, + { + "surface": "前前", + "readging": "ぜんぜん", + "pos": "名詞", + "pn": -0.463212 + }, + { + "surface": "弁当", + "readging": "べんとう", + "pos": "名詞", + "pn": -0.463216 + }, + { + "surface": "バルブ", + "readging": "バルブ", + "pos": "名詞", + "pn": -0.463239 + }, + { + "surface": "茶渋", + "readging": "ちゃしぶ", + "pos": "名詞", + "pn": -0.463241 + }, + { + "surface": "壁間", + "readging": "へきかん", + "pos": "名詞", + "pn": -0.463245 + }, + { + "surface": "要黐", + "readging": "かなめもち", + "pos": "名詞", + "pn": -0.463256 + }, + { + "surface": "鬱", + "readging": "うつ", + "pos": "名詞", + "pn": -0.463256 + }, + { + "surface": "手足", + "readging": "しゅそく", + "pos": "名詞", + "pn": -0.463275 + }, + { + "surface": "侵犯", + "readging": "しんぱん", + "pos": "名詞", + "pn": -0.463285 + }, + { + "surface": "土豪劣紳", + "readging": "どごうれっしん", + "pos": "名詞", + "pn": -0.463302 + }, + { + "surface": "相違", + "readging": "そうい", + "pos": "名詞", + "pn": -0.463304 + }, + { + "surface": "かなぐり捨てる", + "readging": "かなぐりすてる", + "pos": "動詞", + "pn": -0.463321 + }, + { + "surface": "綱目", + "readging": "こうもく", + "pos": "名詞", + "pn": -0.463344 + }, + { + "surface": "戒告", + "readging": "かいこく", + "pos": "名詞", + "pn": -0.463356 + }, + { + "surface": "復縁", + "readging": "ふくえん", + "pos": "名詞", + "pn": -0.46336 + }, + { + "surface": "へぎ板", + "readging": "へぎいた", + "pos": "名詞", + "pn": -0.463372 + }, + { + "surface": "書抜", + "readging": "かきぬき", + "pos": "名詞", + "pn": -0.463391 + }, + { + "surface": "水準儀", + "readging": "すいじゅんぎ", + "pos": "名詞", + "pn": -0.463397 + }, + { + "surface": "辞表", + "readging": "じひょう", + "pos": "名詞", + "pn": -0.46342 + }, + { + "surface": "麦", + "readging": "ばく", + "pos": "名詞", + "pn": -0.463426 + }, + { + "surface": "巷", + "readging": "ちまた", + "pos": "名詞", + "pn": -0.463486 + }, + { + "surface": "引綱", + "readging": "ひきづな", + "pos": "名詞", + "pn": -0.463488 + }, + { + "surface": "秋雨", + "readging": "あきさめ", + "pos": "名詞", + "pn": -0.463496 + }, + { + "surface": "債務", + "readging": "さいむ", + "pos": "名詞", + "pn": -0.463498 + }, + { + "surface": "紙切", + "readging": "かみきり", + "pos": "名詞", + "pn": -0.463498 + }, + { + "surface": "家計", + "readging": "かけい", + "pos": "名詞", + "pn": -0.463498 + }, + { + "surface": "珍無類", + "readging": "ちんむるい", + "pos": "名詞", + "pn": -0.463501 + }, + { + "surface": "現代", + "readging": "げんだい", + "pos": "名詞", + "pn": -0.463536 + }, + { + "surface": "多端", + "readging": "たたん", + "pos": "名詞", + "pn": -0.463543 + }, + { + "surface": "片刃", + "readging": "かたは", + "pos": "名詞", + "pn": -0.463544 + }, + { + "surface": "同伴", + "readging": "どうはん", + "pos": "名詞", + "pn": -0.463559 + }, + { + "surface": "切子", + "readging": "きりこ", + "pos": "名詞", + "pn": -0.463571 + }, + { + "surface": "揚", + "readging": "よう", + "pos": "名詞", + "pn": -0.46358 + }, + { + "surface": "頁", + "readging": "ページ", + "pos": "名詞", + "pn": -0.463585 + }, + { + "surface": "疑懼", + "readging": "ぎく", + "pos": "名詞", + "pn": -0.463592 + }, + { + "surface": "猟犬", + "readging": "りょうけん", + "pos": "名詞", + "pn": -0.463598 + }, + { + "surface": "発願", + "readging": "ほつがん", + "pos": "名詞", + "pn": -0.463599 + }, + { + "surface": "昼", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.463626 + }, + { + "surface": "相", + "readging": "あい", + "pos": "名詞", + "pn": -0.463675 + }, + { + "surface": "経験", + "readging": "けいけん", + "pos": "名詞", + "pn": -0.463699 + }, + { + "surface": "枢軸国", + "readging": "すうじくこく", + "pos": "名詞", + "pn": -0.463715 + }, + { + "surface": "教", + "readging": "きょう", + "pos": "名詞", + "pn": -0.463736 + }, + { + "surface": "雑感", + "readging": "ざっかん", + "pos": "名詞", + "pn": -0.463746 + }, + { + "surface": "惑星", + "readging": "わくせい", + "pos": "名詞", + "pn": -0.463749 + }, + { + "surface": "鱗", + "readging": "こけ", + "pos": "名詞", + "pn": -0.463759 + }, + { + "surface": "未央柳", + "readging": "びようやなぎ", + "pos": "名詞", + "pn": -0.46376 + }, + { + "surface": "再三", + "readging": "さいさん", + "pos": "副詞", + "pn": -0.46378 + }, + { + "surface": "結局", + "readging": "けっきょく", + "pos": "名詞", + "pn": -0.463789 + }, + { + "surface": "揺曳", + "readging": "ようえい", + "pos": "名詞", + "pn": -0.463789 + }, + { + "surface": "痕跡", + "readging": "こんせき", + "pos": "名詞", + "pn": -0.46379 + }, + { + "surface": "窺知", + "readging": "きち", + "pos": "名詞", + "pn": -0.463798 + }, + { + "surface": "国内", + "readging": "こくない", + "pos": "名詞", + "pn": -0.463812 + }, + { + "surface": "鴇", + "readging": "とき", + "pos": "名詞", + "pn": -0.463828 + }, + { + "surface": "豊漁", + "readging": "ほうりょう", + "pos": "名詞", + "pn": -0.463847 + }, + { + "surface": "公定価格", + "readging": "こうていかかく", + "pos": "名詞", + "pn": -0.463854 + }, + { + "surface": "挿櫛", + "readging": "さしぐし", + "pos": "名詞", + "pn": -0.463857 + }, + { + "surface": "セルフ タイマー", + "readging": "セルフ タイマー", + "pos": "名詞", + "pn": -0.463893 + }, + { + "surface": "金回り", + "readging": "かねまわり", + "pos": "名詞", + "pn": -0.463901 + }, + { + "surface": "漫言", + "readging": "まんげん", + "pos": "名詞", + "pn": -0.463907 + }, + { + "surface": "生成", + "readging": "せいせい", + "pos": "名詞", + "pn": -0.463919 + }, + { + "surface": "一類", + "readging": "いちるい", + "pos": "名詞", + "pn": -0.463924 + }, + { + "surface": "遺憾", + "readging": "いかん", + "pos": "名詞", + "pn": -0.46394 + }, + { + "surface": "稲作", + "readging": "いなさく", + "pos": "名詞", + "pn": -0.463943 + }, + { + "surface": "唾", + "readging": "つば", + "pos": "名詞", + "pn": -0.463949 + }, + { + "surface": "千紫万紅", + "readging": "せんしばんこう", + "pos": "名詞", + "pn": -0.463949 + }, + { + "surface": "巡邏", + "readging": "じゅんら", + "pos": "名詞", + "pn": -0.463967 + }, + { + "surface": "俗僧", + "readging": "ぞくそう", + "pos": "名詞", + "pn": -0.463985 + }, + { + "surface": "どす", + "readging": "どす", + "pos": "名詞", + "pn": -0.464001 + }, + { + "surface": "常", + "readging": "つね", + "pos": "名詞", + "pn": -0.464021 + }, + { + "surface": "バイオリン", + "readging": "バイオリン", + "pos": "名詞", + "pn": -0.464027 + }, + { + "surface": "音節", + "readging": "おんせつ", + "pos": "名詞", + "pn": -0.464028 + }, + { + "surface": "橘", + "readging": "たちばな", + "pos": "名詞", + "pn": -0.464064 + }, + { + "surface": "巻網", + "readging": "まきあみ", + "pos": "名詞", + "pn": -0.464064 + }, + { + "surface": "喉頭", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.464082 + }, + { + "surface": "なすり付ける", + "readging": "なすりつける", + "pos": "動詞", + "pn": -0.464087 + }, + { + "surface": "助走", + "readging": "じょそう", + "pos": "名詞", + "pn": -0.464099 + }, + { + "surface": "雑貨", + "readging": "ざっか", + "pos": "名詞", + "pn": -0.464114 + }, + { + "surface": "背開き", + "readging": "せびらき", + "pos": "名詞", + "pn": -0.464119 + }, + { + "surface": "ニス", + "readging": "ニス", + "pos": "名詞", + "pn": -0.464137 + }, + { + "surface": "広がり", + "readging": "ひろがり", + "pos": "名詞", + "pn": -0.464145 + }, + { + "surface": "雲煙", + "readging": "うんえん", + "pos": "名詞", + "pn": -0.464169 + }, + { + "surface": "石窟", + "readging": "せっくつ", + "pos": "名詞", + "pn": -0.464173 + }, + { + "surface": "軍陣", + "readging": "ぐんじん", + "pos": "名詞", + "pn": -0.464206 + }, + { + "surface": "収容所", + "readging": "しゅうようじょ", + "pos": "名詞", + "pn": -0.464207 + }, + { + "surface": "紋所", + "readging": "もんどころ", + "pos": "名詞", + "pn": -0.464217 + }, + { + "surface": "大津絵", + "readging": "おおつえ", + "pos": "名詞", + "pn": -0.464218 + }, + { + "surface": "積荷", + "readging": "つみに", + "pos": "名詞", + "pn": -0.464248 + }, + { + "surface": "片脇", + "readging": "かたわき", + "pos": "名詞", + "pn": -0.464263 + }, + { + "surface": "天工", + "readging": "てんこう", + "pos": "名詞", + "pn": -0.464288 + }, + { + "surface": "静穏", + "readging": "せいおん", + "pos": "名詞", + "pn": -0.464293 + }, + { + "surface": "笑劇", + "readging": "しょうげき", + "pos": "名詞", + "pn": -0.464296 + }, + { + "surface": "バスト", + "readging": "バスト", + "pos": "名詞", + "pn": -0.464305 + }, + { + "surface": "バンカー", + "readging": "バンカー", + "pos": "名詞", + "pn": -0.464315 + }, + { + "surface": "マイクロ", + "readging": "マイクロメーター", + "pos": "名詞", + "pn": -0.464359 + }, + { + "surface": "穿鑿", + "readging": "せんさく", + "pos": "名詞", + "pn": -0.464366 + }, + { + "surface": "雷", + "readging": "らい", + "pos": "名詞", + "pn": -0.464378 + }, + { + "surface": "悲劇", + "readging": "ひげき", + "pos": "名詞", + "pn": -0.464394 + }, + { + "surface": "颶風", + "readging": "ぐふう", + "pos": "名詞", + "pn": -0.464419 + }, + { + "surface": "保管", + "readging": "ほかん", + "pos": "名詞", + "pn": -0.46445 + }, + { + "surface": "散骨", + "readging": "さんこつ", + "pos": "名詞", + "pn": -0.46445 + }, + { + "surface": "校本", + "readging": "こうほん", + "pos": "名詞", + "pn": -0.46445 + }, + { + "surface": "たんぽ", + "readging": "たんぽ", + "pos": "名詞", + "pn": -0.464453 + }, + { + "surface": "科白", + "readging": "かはく", + "pos": "名詞", + "pn": -0.464471 + }, + { + "surface": "青ばむ", + "readging": "あおばむ", + "pos": "動詞", + "pn": -0.464475 + }, + { + "surface": "台地", + "readging": "だいち", + "pos": "名詞", + "pn": -0.464483 + }, + { + "surface": "震撼", + "readging": "しんかん", + "pos": "名詞", + "pn": -0.464519 + }, + { + "surface": "受取", + "readging": "うけとり", + "pos": "名詞", + "pn": -0.464525 + }, + { + "surface": "郭", + "readging": "かく", + "pos": "名詞", + "pn": -0.46455 + }, + { + "surface": "羽", + "readging": "は", + "pos": "名詞", + "pn": -0.4646 + }, + { + "surface": "夕映え", + "readging": "ゆうばえ", + "pos": "名詞", + "pn": -0.464602 + }, + { + "surface": "面差", + "readging": "おもざし", + "pos": "名詞", + "pn": -0.464632 + }, + { + "surface": "踏切", + "readging": "ふみきり", + "pos": "名詞", + "pn": -0.464648 + }, + { + "surface": "曲折", + "readging": "きょくせつ", + "pos": "名詞", + "pn": -0.464664 + }, + { + "surface": "ブリザード", + "readging": "ブリザード", + "pos": "名詞", + "pn": -0.464687 + }, + { + "surface": "竜舌蘭", + "readging": "りゅうぜつらん", + "pos": "名詞", + "pn": -0.464691 + }, + { + "surface": "脱色", + "readging": "だっしょく", + "pos": "名詞", + "pn": -0.464733 + }, + { + "surface": "烈震", + "readging": "れっしん", + "pos": "名詞", + "pn": -0.464753 + }, + { + "surface": "御用", + "readging": "ごよう", + "pos": "名詞", + "pn": -0.464755 + }, + { + "surface": "捕物", + "readging": "とりもの", + "pos": "名詞", + "pn": -0.46477 + }, + { + "surface": "臀部", + "readging": "でんぶ", + "pos": "名詞", + "pn": -0.464776 + }, + { + "surface": "注油", + "readging": "ちゅうゆ", + "pos": "名詞", + "pn": -0.46478 + }, + { + "surface": "邏卒", + "readging": "らそつ", + "pos": "名詞", + "pn": -0.464793 + }, + { + "surface": "口不調法", + "readging": "くちぶちょうほう", + "pos": "名詞", + "pn": -0.464794 + }, + { + "surface": "小娘", + "readging": "こむすめ", + "pos": "名詞", + "pn": -0.464811 + }, + { + "surface": "ジョッキ", + "readging": "ジョッキ", + "pos": "名詞", + "pn": -0.464815 + }, + { + "surface": "財貨", + "readging": "ざいか", + "pos": "名詞", + "pn": -0.464829 + }, + { + "surface": "肉池", + "readging": "にくち", + "pos": "名詞", + "pn": -0.464847 + }, + { + "surface": "砥", + "readging": "と", + "pos": "名詞", + "pn": -0.464866 + }, + { + "surface": "屋形", + "readging": "やかた", + "pos": "名詞", + "pn": -0.464867 + }, + { + "surface": "心室", + "readging": "しんしつ", + "pos": "名詞", + "pn": -0.46487 + }, + { + "surface": "万感", + "readging": "ばんかん", + "pos": "名詞", + "pn": -0.464886 + }, + { + "surface": "宿場", + "readging": "しゅくば", + "pos": "名詞", + "pn": -0.464906 + }, + { + "surface": "檀越", + "readging": "だんおち", + "pos": "名詞", + "pn": -0.464913 + }, + { + "surface": "塊茎", + "readging": "かいけい", + "pos": "名詞", + "pn": -0.464933 + }, + { + "surface": "客引き", + "readging": "きゃくひき", + "pos": "名詞", + "pn": -0.464964 + }, + { + "surface": "思考", + "readging": "しこう", + "pos": "名詞", + "pn": -0.464988 + }, + { + "surface": "島", + "readging": "しま", + "pos": "名詞", + "pn": -0.464998 + }, + { + "surface": "桟留", + "readging": "サントメ", + "pos": "名詞", + "pn": -0.465004 + }, + { + "surface": "入内雀", + "readging": "にゅうないすずめ", + "pos": "名詞", + "pn": -0.465015 + }, + { + "surface": "微動", + "readging": "びどう", + "pos": "名詞", + "pn": -0.465039 + }, + { + "surface": "雪割草", + "readging": "ゆきわりそう", + "pos": "名詞", + "pn": -0.465041 + }, + { + "surface": "シャベル", + "readging": "シャベル", + "pos": "名詞", + "pn": -0.465046 + }, + { + "surface": "慾", + "readging": "よく", + "pos": "名詞", + "pn": -0.465051 + }, + { + "surface": "ラック", + "readging": "ラック", + "pos": "名詞", + "pn": -0.465095 + }, + { + "surface": "所思", + "readging": "しょし", + "pos": "名詞", + "pn": -0.465105 + }, + { + "surface": "径庭", + "readging": "けいてい", + "pos": "名詞", + "pn": -0.465114 + }, + { + "surface": "木目", + "readging": "もくめ", + "pos": "名詞", + "pn": -0.465141 + }, + { + "surface": "興味", + "readging": "きょうみ", + "pos": "名詞", + "pn": -0.465142 + }, + { + "surface": "亭主関白", + "readging": "ていしゅかんぱく", + "pos": "名詞", + "pn": -0.465157 + }, + { + "surface": "渡御", + "readging": "とぎょ", + "pos": "名詞", + "pn": -0.465161 + }, + { + "surface": "鍋焼", + "readging": "なべやき", + "pos": "名詞", + "pn": -0.465183 + }, + { + "surface": "利権屋", + "readging": "りけんや", + "pos": "名詞", + "pn": -0.4652 + }, + { + "surface": "明日", + "readging": "あした", + "pos": "名詞", + "pn": -0.4652 + }, + { + "surface": "心願", + "readging": "しんがん", + "pos": "名詞", + "pn": -0.465219 + }, + { + "surface": "礼装", + "readging": "れいそう", + "pos": "名詞", + "pn": -0.465236 + }, + { + "surface": "扮する", + "readging": "ふんする", + "pos": "動詞", + "pn": -0.465277 + }, + { + "surface": "違勅", + "readging": "いちょく", + "pos": "名詞", + "pn": -0.465305 + }, + { + "surface": "自動", + "readging": "じどう", + "pos": "名詞", + "pn": -0.465326 + }, + { + "surface": "粘板岩", + "readging": "ねんばんがん", + "pos": "名詞", + "pn": -0.46536 + }, + { + "surface": "群雀", + "readging": "むらすずめ", + "pos": "名詞", + "pn": -0.465367 + }, + { + "surface": "渋団扇", + "readging": "しぶうちわ", + "pos": "名詞", + "pn": -0.46541 + }, + { + "surface": "北画", + "readging": "ほくが", + "pos": "名詞", + "pn": -0.465447 + }, + { + "surface": "絹地", + "readging": "きぬじ", + "pos": "名詞", + "pn": -0.465452 + }, + { + "surface": "息せき切る", + "readging": "いきせききる", + "pos": "動詞", + "pn": -0.465464 + }, + { + "surface": "薩摩下駄", + "readging": "さつまげた", + "pos": "名詞", + "pn": -0.465481 + }, + { + "surface": "虹鱒", + "readging": "にじます", + "pos": "名詞", + "pn": -0.465507 + }, + { + "surface": "檄する", + "readging": "げきする", + "pos": "動詞", + "pn": -0.465518 + }, + { + "surface": "逐電", + "readging": "ちくでん", + "pos": "名詞", + "pn": -0.465521 + }, + { + "surface": "労賃", + "readging": "ろうちん", + "pos": "名詞", + "pn": -0.465531 + }, + { + "surface": "撞木", + "readging": "しゅもく", + "pos": "名詞", + "pn": -0.465531 + }, + { + "surface": "デッサン", + "readging": "デッサン", + "pos": "名詞", + "pn": -0.465537 + }, + { + "surface": "側用人", + "readging": "そばようにん", + "pos": "名詞", + "pn": -0.465548 + }, + { + "surface": "唸り", + "readging": "うなり", + "pos": "名詞", + "pn": -0.465551 + }, + { + "surface": "スレート", + "readging": "スレート", + "pos": "名詞", + "pn": -0.465555 + }, + { + "surface": "入組む", + "readging": "いりくむ", + "pos": "動詞", + "pn": -0.465577 + }, + { + "surface": "捩切る", + "readging": "ねじきる", + "pos": "動詞", + "pn": -0.465594 + }, + { + "surface": "地区", + "readging": "ちく", + "pos": "名詞", + "pn": -0.46564 + }, + { + "surface": "雲助", + "readging": "くもすけ", + "pos": "名詞", + "pn": -0.465641 + }, + { + "surface": "掻っ切る", + "readging": "かっきる", + "pos": "動詞", + "pn": -0.465645 + }, + { + "surface": "観念", + "readging": "かんねん", + "pos": "名詞", + "pn": -0.465647 + }, + { + "surface": "強弁", + "readging": "きょうべん", + "pos": "名詞", + "pn": -0.465652 + }, + { + "surface": "永久", + "readging": "えいきゅう", + "pos": "名詞", + "pn": -0.465667 + }, + { + "surface": "荷車", + "readging": "にぐるま", + "pos": "名詞", + "pn": -0.465688 + }, + { + "surface": "熾烈", + "readging": "しれつ", + "pos": "名詞", + "pn": -0.465701 + }, + { + "surface": "追儺", + "readging": "おにやらい", + "pos": "名詞", + "pn": -0.465719 + }, + { + "surface": "かっと", + "readging": "かっと", + "pos": "副詞", + "pn": -0.465727 + }, + { + "surface": "お供え", + "readging": "おそなえ", + "pos": "名詞", + "pn": -0.465753 + }, + { + "surface": "スクリーン", + "readging": "スクリーン", + "pos": "名詞", + "pn": -0.465763 + }, + { + "surface": "間作", + "readging": "かんさく", + "pos": "名詞", + "pn": -0.465766 + }, + { + "surface": "思念", + "readging": "しねん", + "pos": "名詞", + "pn": -0.465767 + }, + { + "surface": "敢えて", + "readging": "あえて", + "pos": "副詞", + "pn": -0.465776 + }, + { + "surface": "着倒れ", + "readging": "きだおれ", + "pos": "名詞", + "pn": -0.465786 + }, + { + "surface": "立塩", + "readging": "たてしお", + "pos": "名詞", + "pn": -0.465805 + }, + { + "surface": "煮付ける", + "readging": "につける", + "pos": "動詞", + "pn": -0.465811 + }, + { + "surface": "だく足", + "readging": "だくあし", + "pos": "名詞", + "pn": -0.465813 + }, + { + "surface": "カルテル", + "readging": "カルテル", + "pos": "名詞", + "pn": -0.465815 + }, + { + "surface": "平作", + "readging": "へいさく", + "pos": "名詞", + "pn": -0.465822 + }, + { + "surface": "手繰る", + "readging": "たぐる", + "pos": "動詞", + "pn": -0.465857 + }, + { + "surface": "趣意書", + "readging": "しゅいしょ", + "pos": "名詞", + "pn": -0.465867 + }, + { + "surface": "荊妻", + "readging": "けいさい", + "pos": "名詞", + "pn": -0.46587 + }, + { + "surface": "捨鉢", + "readging": "すてばち", + "pos": "名詞", + "pn": -0.465872 + }, + { + "surface": "滑り出し", + "readging": "すべりだし", + "pos": "名詞", + "pn": -0.465875 + }, + { + "surface": "現官", + "readging": "げんかん", + "pos": "名詞", + "pn": -0.465875 + }, + { + "surface": "餡こ", + "readging": "あんこ", + "pos": "名詞", + "pn": -0.465889 + }, + { + "surface": "実例", + "readging": "じつれい", + "pos": "名詞", + "pn": -0.465893 + }, + { + "surface": "生得", + "readging": "せいとく", + "pos": "名詞", + "pn": -0.465895 + }, + { + "surface": "ぎっくり腰", + "readging": "ぎっくりごし", + "pos": "名詞", + "pn": -0.465907 + }, + { + "surface": "烏有", + "readging": "うゆう", + "pos": "名詞", + "pn": -0.465907 + }, + { + "surface": "横たえる", + "readging": "よこたえる", + "pos": "動詞", + "pn": -0.465917 + }, + { + "surface": "喪服", + "readging": "もふく", + "pos": "名詞", + "pn": -0.465923 + }, + { + "surface": "物価", + "readging": "ぶっか", + "pos": "名詞", + "pn": -0.465933 + }, + { + "surface": "殖える", + "readging": "ふえる", + "pos": "動詞", + "pn": -0.465945 + }, + { + "surface": "川柳", + "readging": "かわやなぎ", + "pos": "名詞", + "pn": -0.465962 + }, + { + "surface": "襲爵", + "readging": "しゅうしゃく", + "pos": "名詞", + "pn": -0.465976 + }, + { + "surface": "仙花紙", + "readging": "せんかし", + "pos": "名詞", + "pn": -0.466001 + }, + { + "surface": "投票", + "readging": "とうひょう", + "pos": "名詞", + "pn": -0.466032 + }, + { + "surface": "頭頂", + "readging": "とうちょう", + "pos": "名詞", + "pn": -0.466055 + }, + { + "surface": "辞令", + "readging": "じれい", + "pos": "名詞", + "pn": -0.466092 + }, + { + "surface": "ホール", + "readging": "ホール", + "pos": "名詞", + "pn": -0.466139 + }, + { + "surface": "競争", + "readging": "きょうそう", + "pos": "名詞", + "pn": -0.466167 + }, + { + "surface": "真鴨", + "readging": "まがも", + "pos": "名詞", + "pn": -0.466172 + }, + { + "surface": "制す", + "readging": "せいす", + "pos": "動詞", + "pn": -0.46619 + }, + { + "surface": "発動", + "readging": "はつどう", + "pos": "名詞", + "pn": -0.466196 + }, + { + "surface": "氷魚", + "readging": "ひお", + "pos": "名詞", + "pn": -0.466214 + }, + { + "surface": "二重唱", + "readging": "にじゅうしょう", + "pos": "名詞", + "pn": -0.466229 + }, + { + "surface": "雁皮", + "readging": "がんぴ", + "pos": "名詞", + "pn": -0.466242 + }, + { + "surface": "追っ掛ける", + "readging": "おっかける", + "pos": "動詞", + "pn": -0.466243 + }, + { + "surface": "異腹", + "readging": "いふく", + "pos": "名詞", + "pn": -0.466265 + }, + { + "surface": "妄説", + "readging": "もうせつ", + "pos": "名詞", + "pn": -0.46627 + }, + { + "surface": "紺飛白", + "readging": "こんがすり", + "pos": "名詞", + "pn": -0.466277 + }, + { + "surface": "ヒッチハイク", + "readging": "ヒッチハイク", + "pos": "名詞", + "pn": -0.466303 + }, + { + "surface": "膝下", + "readging": "しっか", + "pos": "名詞", + "pn": -0.466327 + }, + { + "surface": "天空", + "readging": "てんくう", + "pos": "名詞", + "pn": -0.466368 + }, + { + "surface": "盗人", + "readging": "ぬすっと", + "pos": "名詞", + "pn": -0.466401 + }, + { + "surface": "高張", + "readging": "たかはり", + "pos": "名詞", + "pn": -0.466403 + }, + { + "surface": "行脚", + "readging": "あんぎゃ", + "pos": "名詞", + "pn": -0.466444 + }, + { + "surface": "閑日月", + "readging": "かんじつげつ", + "pos": "名詞", + "pn": -0.466491 + }, + { + "surface": "獣", + "readging": "しし", + "pos": "名詞", + "pn": -0.466528 + }, + { + "surface": "ぐじゃぐじゃ", + "readging": "ぐじゃぐじゃ", + "pos": "副詞", + "pn": -0.466539 + }, + { + "surface": "洋酒", + "readging": "ようしゅ", + "pos": "名詞", + "pn": -0.466564 + }, + { + "surface": "看護", + "readging": "かんご", + "pos": "名詞", + "pn": -0.46659 + }, + { + "surface": "京鹿子", + "readging": "きょうがのこ", + "pos": "名詞", + "pn": -0.466596 + }, + { + "surface": "エンジン", + "readging": "エンジン", + "pos": "名詞", + "pn": -0.466626 + }, + { + "surface": "成立", + "readging": "せいりつ", + "pos": "名詞", + "pn": -0.466635 + }, + { + "surface": "玉箒", + "readging": "たまははき", + "pos": "名詞", + "pn": -0.466649 + }, + { + "surface": "思い余る", + "readging": "おもいあまる", + "pos": "動詞", + "pn": -0.466651 + }, + { + "surface": "署する", + "readging": "しょする", + "pos": "動詞", + "pn": -0.466652 + }, + { + "surface": "売飛ばす", + "readging": "うりとばす", + "pos": "動詞", + "pn": -0.466655 + }, + { + "surface": "貴意", + "readging": "きい", + "pos": "名詞", + "pn": -0.466671 + }, + { + "surface": "玉虫", + "readging": "たまむし", + "pos": "名詞", + "pn": -0.466694 + }, + { + "surface": "ジュート", + "readging": "ジュート", + "pos": "名詞", + "pn": -0.466716 + }, + { + "surface": "苦難", + "readging": "くなん", + "pos": "名詞", + "pn": -0.46673 + }, + { + "surface": "マーク", + "readging": "マーク", + "pos": "名詞", + "pn": -0.466744 + }, + { + "surface": "抄出", + "readging": "しょうしゅつ", + "pos": "名詞", + "pn": -0.466757 + }, + { + "surface": "赤楝蛇", + "readging": "やまかがし", + "pos": "名詞", + "pn": -0.466758 + }, + { + "surface": "話合い", + "readging": "はなしあい", + "pos": "名詞", + "pn": -0.466767 + }, + { + "surface": "粒子", + "readging": "りゅうし", + "pos": "名詞", + "pn": -0.466795 + }, + { + "surface": "桃李", + "readging": "とうり", + "pos": "名詞", + "pn": -0.466812 + }, + { + "surface": "頭", + "readging": "がしら", + "pos": "名詞", + "pn": -0.466818 + }, + { + "surface": "行き戻り", + "readging": "ゆきもどり", + "pos": "名詞", + "pn": -0.46684 + }, + { + "surface": "亡羊", + "readging": "ぼうよう", + "pos": "名詞", + "pn": -0.466851 + }, + { + "surface": "偽称", + "readging": "ぎしょう", + "pos": "名詞", + "pn": -0.466865 + }, + { + "surface": "喫茶店", + "readging": "きっさてん", + "pos": "名詞", + "pn": -0.466945 + }, + { + "surface": "八目鰻", + "readging": "やつめうなぎ", + "pos": "名詞", + "pn": -0.466946 + }, + { + "surface": "令", + "readging": "れい", + "pos": "名詞", + "pn": -0.466953 + }, + { + "surface": "連続", + "readging": "れんぞく", + "pos": "名詞", + "pn": -0.466983 + }, + { + "surface": "埋骨", + "readging": "まいこつ", + "pos": "名詞", + "pn": -0.46699 + }, + { + "surface": "草むら", + "readging": "くさむら", + "pos": "名詞", + "pn": -0.467022 + }, + { + "surface": "婚約", + "readging": "こんやく", + "pos": "名詞", + "pn": -0.467035 + }, + { + "surface": "投宿", + "readging": "とうしゅく", + "pos": "名詞", + "pn": -0.467054 + }, + { + "surface": "踏込む", + "readging": "ふみこむ", + "pos": "動詞", + "pn": -0.467058 + }, + { + "surface": "変則", + "readging": "へんそく", + "pos": "名詞", + "pn": -0.467061 + }, + { + "surface": "うわ言", + "readging": "うわごと", + "pos": "名詞", + "pn": -0.467064 + }, + { + "surface": "増刷", + "readging": "ぞうさつ", + "pos": "名詞", + "pn": -0.467072 + }, + { + "surface": "磁気", + "readging": "じき", + "pos": "名詞", + "pn": -0.46708 + }, + { + "surface": "明く", + "readging": "あく", + "pos": "動詞", + "pn": -0.46714 + }, + { + "surface": "十二指腸", + "readging": "じゅうにしちょう", + "pos": "名詞", + "pn": -0.467143 + }, + { + "surface": "埋立てる", + "readging": "うめたてる", + "pos": "動詞", + "pn": -0.46716 + }, + { + "surface": "霧", + "readging": "きり", + "pos": "名詞", + "pn": -0.467165 + }, + { + "surface": "脛骨", + "readging": "けいこつ", + "pos": "名詞", + "pn": -0.467184 + }, + { + "surface": "弔慰", + "readging": "ちょうい", + "pos": "名詞", + "pn": -0.467187 + }, + { + "surface": "鉄騎", + "readging": "てっき", + "pos": "名詞", + "pn": -0.467189 + }, + { + "surface": "切下げる", + "readging": "きりさげる", + "pos": "動詞", + "pn": -0.467221 + }, + { + "surface": "検する", + "readging": "けんする", + "pos": "動詞", + "pn": -0.467265 + }, + { + "surface": "駅伝", + "readging": "えきでん", + "pos": "名詞", + "pn": -0.467274 + }, + { + "surface": "がらっぱち", + "readging": "がらっぱち", + "pos": "名詞", + "pn": -0.467303 + }, + { + "surface": "平野", + "readging": "へいや", + "pos": "名詞", + "pn": -0.467339 + }, + { + "surface": "飲用", + "readging": "いんよう", + "pos": "名詞", + "pn": -0.467378 + }, + { + "surface": "命綱", + "readging": "いのちづな", + "pos": "名詞", + "pn": -0.467383 + }, + { + "surface": "前文", + "readging": "ぜんぶん", + "pos": "名詞", + "pn": -0.467412 + }, + { + "surface": "味噌っ滓", + "readging": "みそっかす", + "pos": "名詞", + "pn": -0.467444 + }, + { + "surface": "絵暦", + "readging": "えごよみ", + "pos": "名詞", + "pn": -0.46745 + }, + { + "surface": "要撃", + "readging": "ようげき", + "pos": "名詞", + "pn": -0.467455 + }, + { + "surface": "騙し込む", + "readging": "だましこむ", + "pos": "動詞", + "pn": -0.467466 + }, + { + "surface": "万華鏡", + "readging": "まんげきょう", + "pos": "名詞", + "pn": -0.467478 + }, + { + "surface": "近郊", + "readging": "きんこう", + "pos": "名詞", + "pn": -0.467518 + }, + { + "surface": "恒久", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.467518 + }, + { + "surface": "偏流", + "readging": "へんりゅう", + "pos": "名詞", + "pn": -0.467531 + }, + { + "surface": "振払う", + "readging": "ふりはらう", + "pos": "動詞", + "pn": -0.467553 + }, + { + "surface": "筆算", + "readging": "ひっさん", + "pos": "名詞", + "pn": -0.467561 + }, + { + "surface": "凝縮", + "readging": "ぎょうしゅく", + "pos": "名詞", + "pn": -0.467567 + }, + { + "surface": "黄麻", + "readging": "つなそ", + "pos": "名詞", + "pn": -0.467578 + }, + { + "surface": "竿", + "readging": "さお", + "pos": "名詞", + "pn": -0.467587 + }, + { + "surface": "密接", + "readging": "みっせつ", + "pos": "名詞", + "pn": -0.467611 + }, + { + "surface": "常雇", + "readging": "じょうやとい", + "pos": "名詞", + "pn": -0.467651 + }, + { + "surface": "LDK", + "readging": "エルディーケー", + "pos": "名詞", + "pn": -0.467652 + }, + { + "surface": "灯台", + "readging": "とうだい", + "pos": "名詞", + "pn": -0.467664 + }, + { + "surface": "蛭巻", + "readging": "ひるまき", + "pos": "名詞", + "pn": -0.46767 + }, + { + "surface": "仕掛花火", + "readging": "しかけはなび", + "pos": "名詞", + "pn": -0.467687 + }, + { + "surface": "保", + "readging": "ほ", + "pos": "名詞", + "pn": -0.467704 + }, + { + "surface": "唐胡麻", + "readging": "とうごま", + "pos": "名詞", + "pn": -0.467705 + }, + { + "surface": "生半", + "readging": "なまなか", + "pos": "副詞", + "pn": -0.467709 + }, + { + "surface": "罰点", + "readging": "ばってん", + "pos": "名詞", + "pn": -0.46772 + }, + { + "surface": "見境", + "readging": "みさかい", + "pos": "名詞", + "pn": -0.46772 + }, + { + "surface": "体操", + "readging": "たいそう", + "pos": "名詞", + "pn": -0.467723 + }, + { + "surface": "こなす", + "readging": "こなす", + "pos": "動詞", + "pn": -0.46774 + }, + { + "surface": "漢奸", + "readging": "かんかん", + "pos": "名詞", + "pn": -0.467771 + }, + { + "surface": "銃器", + "readging": "じゅうき", + "pos": "名詞", + "pn": -0.467783 + }, + { + "surface": "腐れる", + "readging": "くされる", + "pos": "動詞", + "pn": -0.467791 + }, + { + "surface": "血の巡り", + "readging": "ちのめぐり", + "pos": "名詞", + "pn": -0.467804 + }, + { + "surface": "いんちき", + "readging": "いんちき", + "pos": "名詞", + "pn": -0.467821 + }, + { + "surface": "アナウンス", + "readging": "アナウンス", + "pos": "名詞", + "pn": -0.467833 + }, + { + "surface": "身長", + "readging": "しんちょう", + "pos": "名詞", + "pn": -0.467836 + }, + { + "surface": "赤血球", + "readging": "せっけっきゅう", + "pos": "名詞", + "pn": -0.467843 + }, + { + "surface": "ペア", + "readging": "ペア", + "pos": "名詞", + "pn": -0.467848 + }, + { + "surface": "抗言", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.467848 + }, + { + "surface": "魚油", + "readging": "ぎょゆ", + "pos": "名詞", + "pn": -0.467854 + }, + { + "surface": "更衣", + "readging": "こうい", + "pos": "名詞", + "pn": -0.467872 + }, + { + "surface": "陪食", + "readging": "ばいしょく", + "pos": "名詞", + "pn": -0.467885 + }, + { + "surface": "羽団扇", + "readging": "はうちわ", + "pos": "名詞", + "pn": -0.467889 + }, + { + "surface": "近寄せる", + "readging": "ちかよせる", + "pos": "動詞", + "pn": -0.46789 + }, + { + "surface": "回礼", + "readging": "かいれい", + "pos": "名詞", + "pn": -0.467897 + }, + { + "surface": "鯰", + "readging": "なまず", + "pos": "名詞", + "pn": -0.467916 + }, + { + "surface": "作為", + "readging": "さくい", + "pos": "名詞", + "pn": -0.467918 + }, + { + "surface": "下げ潮", + "readging": "さげしお", + "pos": "名詞", + "pn": -0.467923 + }, + { + "surface": "白桃", + "readging": "はくとう", + "pos": "名詞", + "pn": -0.467927 + }, + { + "surface": "不帰", + "readging": "ふき", + "pos": "名詞", + "pn": -0.467931 + }, + { + "surface": "係船", + "readging": "けいせん", + "pos": "名詞", + "pn": -0.467965 + }, + { + "surface": "炎上", + "readging": "えんじょう", + "pos": "名詞", + "pn": -0.467984 + }, + { + "surface": "脛巾", + "readging": "はばき", + "pos": "名詞", + "pn": -0.467987 + }, + { + "surface": "胸突八丁", + "readging": "むなつきはっちょう", + "pos": "名詞", + "pn": -0.468001 + }, + { + "surface": "陸上競技", + "readging": "りくじょうきょうぎ", + "pos": "名詞", + "pn": -0.468004 + }, + { + "surface": "回国", + "readging": "かいこく", + "pos": "名詞", + "pn": -0.468011 + }, + { + "surface": "お呼ばれ", + "readging": "およばれ", + "pos": "名詞", + "pn": -0.468026 + }, + { + "surface": "遠路", + "readging": "えんろ", + "pos": "名詞", + "pn": -0.468053 + }, + { + "surface": "釣針", + "readging": "つりばり", + "pos": "名詞", + "pn": -0.468072 + }, + { + "surface": "端女", + "readging": "はしため", + "pos": "名詞", + "pn": -0.468081 + }, + { + "surface": "芽", + "readging": "が", + "pos": "名詞", + "pn": -0.468081 + }, + { + "surface": "真帆", + "readging": "まほ", + "pos": "名詞", + "pn": -0.468088 + }, + { + "surface": "台木", + "readging": "だいぎ", + "pos": "名詞", + "pn": -0.468092 + }, + { + "surface": "チャーム", + "readging": "チャーム", + "pos": "名詞", + "pn": -0.468099 + }, + { + "surface": "右舷", + "readging": "うげん", + "pos": "名詞", + "pn": -0.468116 + }, + { + "surface": "人質", + "readging": "ひとじち", + "pos": "名詞", + "pn": -0.468127 + }, + { + "surface": "余所者", + "readging": "よそもの", + "pos": "名詞", + "pn": -0.468157 + }, + { + "surface": "突合せる", + "readging": "つきあわせる", + "pos": "動詞", + "pn": -0.468158 + }, + { + "surface": "夜光虫", + "readging": "やこうちゅう", + "pos": "名詞", + "pn": -0.468169 + }, + { + "surface": "踏段", + "readging": "ふみだん", + "pos": "名詞", + "pn": -0.468169 + }, + { + "surface": "祝儀", + "readging": "しゅうぎ", + "pos": "名詞", + "pn": -0.468201 + }, + { + "surface": "翩翻", + "readging": "へんぽん", + "pos": "名詞", + "pn": -0.468211 + }, + { + "surface": "磯辺", + "readging": "いそべ", + "pos": "名詞", + "pn": -0.468222 + }, + { + "surface": "四竹", + "readging": "よつだけ", + "pos": "名詞", + "pn": -0.468224 + }, + { + "surface": "角地", + "readging": "かどち", + "pos": "名詞", + "pn": -0.468228 + }, + { + "surface": "戯評", + "readging": "ぎひょう", + "pos": "名詞", + "pn": -0.468238 + }, + { + "surface": "待遇", + "readging": "たいぐう", + "pos": "名詞", + "pn": -0.468244 + }, + { + "surface": "理髪", + "readging": "りはつ", + "pos": "名詞", + "pn": -0.468254 + }, + { + "surface": "蛸壺", + "readging": "たこつぼ", + "pos": "名詞", + "pn": -0.468294 + }, + { + "surface": "ジャム", + "readging": "ジャム", + "pos": "名詞", + "pn": -0.468315 + }, + { + "surface": "蒼氓", + "readging": "そうぼう", + "pos": "名詞", + "pn": -0.468349 + }, + { + "surface": "金砂子", + "readging": "きんすなご", + "pos": "名詞", + "pn": -0.468361 + }, + { + "surface": "採掘", + "readging": "さいくつ", + "pos": "名詞", + "pn": -0.468375 + }, + { + "surface": "チーズ", + "readging": "チーズ", + "pos": "名詞", + "pn": -0.468381 + }, + { + "surface": "和毛", + "readging": "にこげ", + "pos": "名詞", + "pn": -0.468382 + }, + { + "surface": "笑む", + "readging": "えむ", + "pos": "動詞", + "pn": -0.468411 + }, + { + "surface": "僭上", + "readging": "せんじょう", + "pos": "名詞", + "pn": -0.468417 + }, + { + "surface": "割下", + "readging": "わりした", + "pos": "名詞", + "pn": -0.468418 + }, + { + "surface": "所作", + "readging": "しょさ", + "pos": "名詞", + "pn": -0.468433 + }, + { + "surface": "羽蟻", + "readging": "はあり", + "pos": "名詞", + "pn": -0.468475 + }, + { + "surface": "未解決", + "readging": "みかいけつ", + "pos": "名詞", + "pn": -0.468496 + }, + { + "surface": "蛇の目", + "readging": "じゃのめ", + "pos": "名詞", + "pn": -0.468506 + }, + { + "surface": "山鳥", + "readging": "やまどり", + "pos": "名詞", + "pn": -0.468517 + }, + { + "surface": "指さす", + "readging": "ゆびさす", + "pos": "動詞", + "pn": -0.468524 + }, + { + "surface": "天際", + "readging": "てんさい", + "pos": "名詞", + "pn": -0.468529 + }, + { + "surface": "来聴", + "readging": "らいちょう", + "pos": "名詞", + "pn": -0.468573 + }, + { + "surface": "荘園", + "readging": "しょうえん", + "pos": "名詞", + "pn": -0.468578 + }, + { + "surface": "夜回り", + "readging": "よまわり", + "pos": "名詞", + "pn": -0.46858 + }, + { + "surface": "磨き粉", + "readging": "みがきこ", + "pos": "名詞", + "pn": -0.468619 + }, + { + "surface": "たって", + "readging": "たって", + "pos": "副詞", + "pn": -0.468642 + }, + { + "surface": "章程", + "readging": "しょうてい", + "pos": "名詞", + "pn": -0.468647 + }, + { + "surface": "米穀", + "readging": "べいこく", + "pos": "名詞", + "pn": -0.468654 + }, + { + "surface": "巻", + "readging": "まき", + "pos": "名詞", + "pn": -0.468665 + }, + { + "surface": "大和", + "readging": "やまと", + "pos": "名詞", + "pn": -0.468667 + }, + { + "surface": "藪柑子", + "readging": "やぶこうじ", + "pos": "名詞", + "pn": -0.468681 + }, + { + "surface": "巡航", + "readging": "じゅんこう", + "pos": "名詞", + "pn": -0.468695 + }, + { + "surface": "頬杖", + "readging": "ほおづえ", + "pos": "名詞", + "pn": -0.468698 + }, + { + "surface": "在所", + "readging": "ざいしょ", + "pos": "名詞", + "pn": -0.468713 + }, + { + "surface": "砧", + "readging": "きぬた", + "pos": "名詞", + "pn": -0.468714 + }, + { + "surface": "経机", + "readging": "きょうづくえ", + "pos": "名詞", + "pn": -0.468728 + }, + { + "surface": "一議", + "readging": "いちぎ", + "pos": "名詞", + "pn": -0.468731 + }, + { + "surface": "法医学", + "readging": "ほういがく", + "pos": "名詞", + "pn": -0.468739 + }, + { + "surface": "任地", + "readging": "にんち", + "pos": "名詞", + "pn": -0.468743 + }, + { + "surface": "無線", + "readging": "むせん", + "pos": "名詞", + "pn": -0.468772 + }, + { + "surface": "白雲", + "readging": "しらくも", + "pos": "名詞", + "pn": -0.468776 + }, + { + "surface": "石菖", + "readging": "せきしょう", + "pos": "名詞", + "pn": -0.468778 + }, + { + "surface": "頃合", + "readging": "ころあい", + "pos": "名詞", + "pn": -0.468798 + }, + { + "surface": "次男", + "readging": "じなん", + "pos": "名詞", + "pn": -0.468829 + }, + { + "surface": "炙り出し", + "readging": "あぶりだし", + "pos": "名詞", + "pn": -0.468832 + }, + { + "surface": "校正", + "readging": "こうせい", + "pos": "名詞", + "pn": -0.468858 + }, + { + "surface": "青物", + "readging": "あおもの", + "pos": "名詞", + "pn": -0.46887 + }, + { + "surface": "八橋", + "readging": "やつはし", + "pos": "名詞", + "pn": -0.468872 + }, + { + "surface": "はったい", + "readging": "はったい", + "pos": "名詞", + "pn": -0.468876 + }, + { + "surface": "サルビア", + "readging": "サルビア", + "pos": "名詞", + "pn": -0.468877 + }, + { + "surface": "修験者", + "readging": "しゅげんじゃ", + "pos": "名詞", + "pn": -0.468891 + }, + { + "surface": "外輪", + "readging": "そとわ", + "pos": "名詞", + "pn": -0.468905 + }, + { + "surface": "蹄鉄", + "readging": "ていてつ", + "pos": "名詞", + "pn": -0.468915 + }, + { + "surface": "減作", + "readging": "げんさく", + "pos": "名詞", + "pn": -0.468917 + }, + { + "surface": "指切り", + "readging": "ゆびきり", + "pos": "名詞", + "pn": -0.468935 + }, + { + "surface": "皺腹", + "readging": "しわばら", + "pos": "名詞", + "pn": -0.468938 + }, + { + "surface": "量刑", + "readging": "りょうけい", + "pos": "名詞", + "pn": -0.468946 + }, + { + "surface": "縅す", + "readging": "おどす", + "pos": "動詞", + "pn": -0.469005 + }, + { + "surface": "店卸", + "readging": "たなおろし", + "pos": "名詞", + "pn": -0.469013 + }, + { + "surface": "儲け", + "readging": "もうけ", + "pos": "名詞", + "pn": -0.469029 + }, + { + "surface": "製糸", + "readging": "せいし", + "pos": "名詞", + "pn": -0.469038 + }, + { + "surface": "沼地", + "readging": "ぬまち", + "pos": "名詞", + "pn": -0.469047 + }, + { + "surface": "親父", + "readging": "おやじ", + "pos": "名詞", + "pn": -0.469057 + }, + { + "surface": "女敵", + "readging": "めがたき", + "pos": "名詞", + "pn": -0.469059 + }, + { + "surface": "土用干", + "readging": "どようぼし", + "pos": "名詞", + "pn": -0.469077 + }, + { + "surface": "踪跡", + "readging": "そうせき", + "pos": "名詞", + "pn": -0.469115 + }, + { + "surface": "相客", + "readging": "あいきゃく", + "pos": "名詞", + "pn": -0.469115 + }, + { + "surface": "分れ道", + "readging": "わかれみち", + "pos": "名詞", + "pn": -0.469127 + }, + { + "surface": "面食らう", + "readging": "めんくらう", + "pos": "動詞", + "pn": -0.469156 + }, + { + "surface": "居常", + "readging": "きょじょう", + "pos": "名詞", + "pn": -0.469157 + }, + { + "surface": "路地", + "readging": "ろじ", + "pos": "名詞", + "pn": -0.46917 + }, + { + "surface": "真名鶴", + "readging": "まなづる", + "pos": "名詞", + "pn": -0.469175 + }, + { + "surface": "肩掛", + "readging": "かたかけ", + "pos": "名詞", + "pn": -0.469193 + }, + { + "surface": "失効", + "readging": "しっこう", + "pos": "名詞", + "pn": -0.469197 + }, + { + "surface": "大和", + "readging": "やまといも", + "pos": "名詞", + "pn": -0.469222 + }, + { + "surface": "お針", + "readging": "おはり", + "pos": "名詞", + "pn": -0.469227 + }, + { + "surface": "流し", + "readging": "ながし", + "pos": "名詞", + "pn": -0.46923 + }, + { + "surface": "門柳", + "readging": "もんりゅう", + "pos": "名詞", + "pn": -0.469243 + }, + { + "surface": "オリエント", + "readging": "オリエント", + "pos": "名詞", + "pn": -0.469243 + }, + { + "surface": "対照", + "readging": "たいしょう", + "pos": "名詞", + "pn": -0.46928 + }, + { + "surface": "血液型", + "readging": "けつえきがた", + "pos": "名詞", + "pn": -0.469289 + }, + { + "surface": "一応", + "readging": "いちおう", + "pos": "副詞", + "pn": -0.4693 + }, + { + "surface": "ちょぼくれ", + "readging": "ちょぼくれ", + "pos": "名詞", + "pn": -0.469309 + }, + { + "surface": "川原}{河原乞食", + "readging": "かわら", + "pos": "名詞", + "pn": -0.469352 + }, + { + "surface": "意図", + "readging": "いと", + "pos": "名詞", + "pn": -0.469369 + }, + { + "surface": "晦日", + "readging": "みそか", + "pos": "名詞", + "pn": -0.469384 + }, + { + "surface": "野茨", + "readging": "のいばら", + "pos": "名詞", + "pn": -0.469388 + }, + { + "surface": "杏子", + "readging": "あんず", + "pos": "名詞", + "pn": -0.469403 + }, + { + "surface": "待侘びる", + "readging": "まちわびる", + "pos": "動詞", + "pn": -0.469411 + }, + { + "surface": "置屋", + "readging": "おきや", + "pos": "名詞", + "pn": -0.469418 + }, + { + "surface": "集中", + "readging": "しゅうちゅう", + "pos": "名詞", + "pn": -0.469418 + }, + { + "surface": "非行", + "readging": "ひこう", + "pos": "名詞", + "pn": -0.469421 + }, + { + "surface": "襟章", + "readging": "えりしょう", + "pos": "名詞", + "pn": -0.469437 + }, + { + "surface": "寸前", + "readging": "すんぜん", + "pos": "名詞", + "pn": -0.46944 + }, + { + "surface": "マッチ", + "readging": "マッチ", + "pos": "名詞", + "pn": -0.46944 + }, + { + "surface": "灯", + "readging": "ともし", + "pos": "名詞", + "pn": -0.469441 + }, + { + "surface": "突傷", + "readging": "つききず", + "pos": "名詞", + "pn": -0.469454 + }, + { + "surface": "上下", + "readging": "うえした", + "pos": "名詞", + "pn": -0.469467 + }, + { + "surface": "余波", + "readging": "なごり", + "pos": "名詞", + "pn": -0.469481 + }, + { + "surface": "カフェイン", + "readging": "カフェイン", + "pos": "名詞", + "pn": -0.469488 + }, + { + "surface": "転転", + "readging": "てんてん", + "pos": "名詞", + "pn": -0.469495 + }, + { + "surface": "社殿", + "readging": "しゃでん", + "pos": "名詞", + "pn": -0.469504 + }, + { + "surface": "首切り", + "readging": "くびきり", + "pos": "名詞", + "pn": -0.469542 + }, + { + "surface": "和風", + "readging": "わふう", + "pos": "名詞", + "pn": -0.469575 + }, + { + "surface": "腰痛", + "readging": "ようつう", + "pos": "名詞", + "pn": -0.469587 + }, + { + "surface": "同盟", + "readging": "どうめい", + "pos": "名詞", + "pn": -0.469588 + }, + { + "surface": "茶漬", + "readging": "ちゃづけ", + "pos": "名詞", + "pn": -0.469622 + }, + { + "surface": "代償", + "readging": "だいしょう", + "pos": "名詞", + "pn": -0.469627 + }, + { + "surface": "設計", + "readging": "せっけい", + "pos": "名詞", + "pn": -0.469638 + }, + { + "surface": "鷲掴み", + "readging": "わしづかみ", + "pos": "名詞", + "pn": -0.469649 + }, + { + "surface": "さめざめ", + "readging": "さめざめ", + "pos": "副詞", + "pn": -0.469679 + }, + { + "surface": "和琴", + "readging": "わごん", + "pos": "名詞", + "pn": -0.469681 + }, + { + "surface": "転げる", + "readging": "ころげる", + "pos": "動詞", + "pn": -0.469682 + }, + { + "surface": "詩碑", + "readging": "しひ", + "pos": "名詞", + "pn": -0.46969 + }, + { + "surface": "ジオラマ", + "readging": "ジオラマ", + "pos": "名詞", + "pn": -0.469697 + }, + { + "surface": "遺品", + "readging": "いひん", + "pos": "名詞", + "pn": -0.4697 + }, + { + "surface": "遅刻", + "readging": "ちこく", + "pos": "名詞", + "pn": -0.469703 + }, + { + "surface": "埋葬", + "readging": "まいそう", + "pos": "名詞", + "pn": -0.469709 + }, + { + "surface": "切れ込む", + "readging": "きれこむ", + "pos": "動詞", + "pn": -0.469711 + }, + { + "surface": "魔法使", + "readging": "まほうつかい", + "pos": "名詞", + "pn": -0.469734 + }, + { + "surface": "シルエット", + "readging": "シルエット", + "pos": "名詞", + "pn": -0.469741 + }, + { + "surface": "場末", + "readging": "ばすえ", + "pos": "名詞", + "pn": -0.469748 + }, + { + "surface": "薄ら", + "readging": "うすら", + "pos": "名詞", + "pn": -0.469771 + }, + { + "surface": "内約", + "readging": "ないやく", + "pos": "名詞", + "pn": -0.469787 + }, + { + "surface": "ライ麦", + "readging": "ライむぎ", + "pos": "名詞", + "pn": -0.469807 + }, + { + "surface": "堪える", + "readging": "たえる", + "pos": "動詞", + "pn": -0.46981 + }, + { + "surface": "ランク", + "readging": "ランク", + "pos": "名詞", + "pn": -0.469814 + }, + { + "surface": "ケーブル", + "readging": "ケーブルカー", + "pos": "名詞", + "pn": -0.469821 + }, + { + "surface": "番手", + "readging": "ばんて", + "pos": "名詞", + "pn": -0.469855 + }, + { + "surface": "羽化", + "readging": "うか", + "pos": "名詞", + "pn": -0.46986 + }, + { + "surface": "逝去", + "readging": "せいきょ", + "pos": "名詞", + "pn": -0.469872 + }, + { + "surface": "入来", + "readging": "にゅうらい", + "pos": "名詞", + "pn": -0.469882 + }, + { + "surface": "脱皮", + "readging": "だっぴ", + "pos": "名詞", + "pn": -0.469912 + }, + { + "surface": "ロック", + "readging": "ロックアウト", + "pos": "名詞", + "pn": -0.469915 + }, + { + "surface": "カラメル", + "readging": "カラメル", + "pos": "名詞", + "pn": -0.469939 + }, + { + "surface": "卵巣", + "readging": "らんそう", + "pos": "名詞", + "pn": -0.469942 + }, + { + "surface": "交声", + "readging": "こうせい", + "pos": "名詞", + "pn": -0.469986 + }, + { + "surface": "タグ", + "readging": "タグ", + "pos": "名詞", + "pn": -0.470002 + }, + { + "surface": "余威", + "readging": "よい", + "pos": "名詞", + "pn": -0.470028 + }, + { + "surface": "親戚", + "readging": "しんせき", + "pos": "名詞", + "pn": -0.470029 + }, + { + "surface": "フラット", + "readging": "フラット", + "pos": "名詞", + "pn": -0.470033 + }, + { + "surface": "毎毎", + "readging": "まいまい", + "pos": "名詞", + "pn": -0.47005 + }, + { + "surface": "評決", + "readging": "ひょうけつ", + "pos": "名詞", + "pn": -0.470062 + }, + { + "surface": "尻っぱしょり", + "readging": "しりっぱしょり", + "pos": "名詞", + "pn": -0.470064 + }, + { + "surface": "魔境", + "readging": "まきょう", + "pos": "名詞", + "pn": -0.470086 + }, + { + "surface": "琉金", + "readging": "りゅうきん", + "pos": "名詞", + "pn": -0.470088 + }, + { + "surface": "試練", + "readging": "しれん", + "pos": "名詞", + "pn": -0.470088 + }, + { + "surface": "固め", + "readging": "かため", + "pos": "名詞", + "pn": -0.470124 + }, + { + "surface": "襲撃", + "readging": "しゅうげき", + "pos": "名詞", + "pn": -0.470144 + }, + { + "surface": "手飼", + "readging": "てがい", + "pos": "名詞", + "pn": -0.470151 + }, + { + "surface": "南京", + "readging": "なんきん", + "pos": "名詞", + "pn": -0.470153 + }, + { + "surface": "鯨", + "readging": "げい", + "pos": "名詞", + "pn": -0.470157 + }, + { + "surface": "家庭", + "readging": "かてい", + "pos": "名詞", + "pn": -0.470174 + }, + { + "surface": "風疹", + "readging": "ふうしん", + "pos": "名詞", + "pn": -0.470185 + }, + { + "surface": "抜殻", + "readging": "ぬけがら", + "pos": "名詞", + "pn": -0.470189 + }, + { + "surface": "旅", + "readging": "たび", + "pos": "名詞", + "pn": -0.47025 + }, + { + "surface": "短時日", + "readging": "たんじじつ", + "pos": "名詞", + "pn": -0.470333 + }, + { + "surface": "虚辞", + "readging": "きょじ", + "pos": "名詞", + "pn": -0.470334 + }, + { + "surface": "沐猴", + "readging": "もっこう", + "pos": "名詞", + "pn": -0.470346 + }, + { + "surface": "島田崩し", + "readging": "しまだくずし", + "pos": "名詞", + "pn": -0.470346 + }, + { + "surface": "鬼蜘蛛", + "readging": "おにぐも", + "pos": "名詞", + "pn": -0.470354 + }, + { + "surface": "中空", + "readging": "なかぞら", + "pos": "名詞", + "pn": -0.47036 + }, + { + "surface": "差金", + "readging": "さきん", + "pos": "名詞", + "pn": -0.470369 + }, + { + "surface": "夷", + "readging": "えびす", + "pos": "名詞", + "pn": -0.470428 + }, + { + "surface": "言付かる", + "readging": "いいつかる", + "pos": "動詞", + "pn": -0.470455 + }, + { + "surface": "細作り", + "readging": "ほそづくり", + "pos": "名詞", + "pn": -0.470486 + }, + { + "surface": "我執", + "readging": "がしゅう", + "pos": "名詞", + "pn": -0.470489 + }, + { + "surface": "覚醒", + "readging": "かくせい", + "pos": "名詞", + "pn": -0.470497 + }, + { + "surface": "キー", + "readging": "キー", + "pos": "名詞", + "pn": -0.470509 + }, + { + "surface": "漫ろ", + "readging": "そぞろ", + "pos": "副詞", + "pn": -0.470537 + }, + { + "surface": "座り", + "readging": "すわり", + "pos": "名詞", + "pn": -0.47054 + }, + { + "surface": "バック", + "readging": "バック", + "pos": "名詞", + "pn": -0.470547 + }, + { + "surface": "雪崩れる", + "readging": "なだれる", + "pos": "動詞", + "pn": -0.470551 + }, + { + "surface": "跋", + "readging": "ばつ", + "pos": "名詞", + "pn": -0.470553 + }, + { + "surface": "出所", + "readging": "しゅっしょ", + "pos": "名詞", + "pn": -0.470553 + }, + { + "surface": "直し", + "readging": "なおし", + "pos": "名詞", + "pn": -0.470639 + }, + { + "surface": "臓器", + "readging": "ぞうき", + "pos": "名詞", + "pn": -0.470646 + }, + { + "surface": "編物", + "readging": "あみもの", + "pos": "名詞", + "pn": -0.470662 + }, + { + "surface": "山", + "readging": "さん", + "pos": "名詞", + "pn": -0.470701 + }, + { + "surface": "副腎", + "readging": "ふくじん", + "pos": "名詞", + "pn": -0.470705 + }, + { + "surface": "寝殿造", + "readging": "しんでんづくり", + "pos": "名詞", + "pn": -0.47073 + }, + { + "surface": "饅頭笠", + "readging": "まんじゅうがさ", + "pos": "名詞", + "pn": -0.470762 + }, + { + "surface": "供待ち", + "readging": "ともまち", + "pos": "名詞", + "pn": -0.470782 + }, + { + "surface": "字", + "readging": "あざな", + "pos": "名詞", + "pn": -0.470789 + }, + { + "surface": "太物", + "readging": "ふともの", + "pos": "名詞", + "pn": -0.470835 + }, + { + "surface": "墓参り", + "readging": "はかまいり", + "pos": "名詞", + "pn": -0.470844 + }, + { + "surface": "心得違い", + "readging": "こころえちがい", + "pos": "名詞", + "pn": -0.470847 + }, + { + "surface": "黄み", + "readging": "きみ", + "pos": "名詞", + "pn": -0.470853 + }, + { + "surface": "箸箱", + "readging": "はしばこ", + "pos": "名詞", + "pn": -0.470891 + }, + { + "surface": "初", + "readging": "しょ", + "pos": "名詞", + "pn": -0.470901 + }, + { + "surface": "胡麻擂り", + "readging": "ごますり", + "pos": "名詞", + "pn": -0.47091 + }, + { + "surface": "熱燗", + "readging": "あつかん", + "pos": "名詞", + "pn": -0.470914 + }, + { + "surface": "小粒", + "readging": "こつぶ", + "pos": "名詞", + "pn": -0.470922 + }, + { + "surface": "春日", + "readging": "しゅんじつ", + "pos": "名詞", + "pn": -0.470927 + }, + { + "surface": "粥", + "readging": "かゆ", + "pos": "名詞", + "pn": -0.470928 + }, + { + "surface": "手数料", + "readging": "てすうりょう", + "pos": "名詞", + "pn": -0.470929 + }, + { + "surface": "善隣", + "readging": "ぜんりん", + "pos": "名詞", + "pn": -0.470959 + }, + { + "surface": "啄木鳥", + "readging": "きつつき", + "pos": "名詞", + "pn": -0.470997 + }, + { + "surface": "搾め滓", + "readging": "しめかす", + "pos": "名詞", + "pn": -0.47104 + }, + { + "surface": "繁繁", + "readging": "しげしげ", + "pos": "副詞", + "pn": -0.471075 + }, + { + "surface": "氷枕", + "readging": "こおりまくら", + "pos": "名詞", + "pn": -0.471106 + }, + { + "surface": "天の川", + "readging": "あまのがわ", + "pos": "名詞", + "pn": -0.471115 + }, + { + "surface": "鏑矢", + "readging": "かぶらや", + "pos": "名詞", + "pn": -0.471134 + }, + { + "surface": "養嗣子", + "readging": "ようしし", + "pos": "名詞", + "pn": -0.471141 + }, + { + "surface": "ひしと", + "readging": "ひしと", + "pos": "副詞", + "pn": -0.47115 + }, + { + "surface": "任命", + "readging": "にんめい", + "pos": "名詞", + "pn": -0.47116 + }, + { + "surface": "一筋", + "readging": "ひとすじ", + "pos": "名詞", + "pn": -0.471163 + }, + { + "surface": "袞竜の袖", + "readging": "こんりょうのそで", + "pos": "名詞", + "pn": -0.471185 + }, + { + "surface": "双肩", + "readging": "そうけん", + "pos": "名詞", + "pn": -0.471188 + }, + { + "surface": "酸漿提灯", + "readging": "ほおずき", + "pos": "名詞", + "pn": -0.471213 + }, + { + "surface": "鏡板", + "readging": "かがみいた", + "pos": "名詞", + "pn": -0.471218 + }, + { + "surface": "疎林", + "readging": "そりん", + "pos": "名詞", + "pn": -0.471222 + }, + { + "surface": "座り胼胝", + "readging": "すわりだこ", + "pos": "名詞", + "pn": -0.471233 + }, + { + "surface": "沈降", + "readging": "ちんこう", + "pos": "名詞", + "pn": -0.471258 + }, + { + "surface": "平原", + "readging": "へいげん", + "pos": "名詞", + "pn": -0.47126 + }, + { + "surface": "騰貴", + "readging": "とうき", + "pos": "名詞", + "pn": -0.471264 + }, + { + "surface": "停頓", + "readging": "ていとん", + "pos": "名詞", + "pn": -0.471266 + }, + { + "surface": "間", + "readging": "かん", + "pos": "名詞", + "pn": -0.471268 + }, + { + "surface": "オーバー", + "readging": "オーバーワーク", + "pos": "名詞", + "pn": -0.471275 + }, + { + "surface": "短刀", + "readging": "たんとう", + "pos": "名詞", + "pn": -0.471278 + }, + { + "surface": "錦蛇", + "readging": "にしきへび", + "pos": "名詞", + "pn": -0.471278 + }, + { + "surface": "唯", + "readging": "ゆい", + "pos": "名詞", + "pn": -0.471291 + }, + { + "surface": "騾馬", + "readging": "らば", + "pos": "名詞", + "pn": -0.471329 + }, + { + "surface": "洋綴", + "readging": "ようとじ", + "pos": "名詞", + "pn": -0.471332 + }, + { + "surface": "ごみ浚い", + "readging": "ごみさらい", + "pos": "名詞", + "pn": -0.471334 + }, + { + "surface": "道火", + "readging": "みちび", + "pos": "名詞", + "pn": -0.471335 + }, + { + "surface": "天花粉", + "readging": "てんかふん", + "pos": "名詞", + "pn": -0.471348 + }, + { + "surface": "ヒップ", + "readging": "ヒップ", + "pos": "名詞", + "pn": -0.471368 + }, + { + "surface": "ツェツェ蠅", + "readging": "ツェツェばえ", + "pos": "名詞", + "pn": -0.471391 + }, + { + "surface": "腹掛", + "readging": "はらがけ", + "pos": "名詞", + "pn": -0.471392 + }, + { + "surface": "下疳", + "readging": "げかん", + "pos": "名詞", + "pn": -0.471399 + }, + { + "surface": "もりもり", + "readging": "もりもり", + "pos": "副詞", + "pn": -0.471421 + }, + { + "surface": "頬擦り", + "readging": "ほおずり", + "pos": "名詞", + "pn": -0.471424 + }, + { + "surface": "落下傘", + "readging": "らっかさん", + "pos": "名詞", + "pn": -0.471426 + }, + { + "surface": "来意", + "readging": "らいい", + "pos": "名詞", + "pn": -0.47144 + }, + { + "surface": "油層", + "readging": "ゆそう", + "pos": "名詞", + "pn": -0.471446 + }, + { + "surface": "蹴込む", + "readging": "けこむ", + "pos": "動詞", + "pn": -0.471473 + }, + { + "surface": "井", + "readging": "せい", + "pos": "名詞", + "pn": -0.471474 + }, + { + "surface": "ビュッフェ", + "readging": "ビュッフェ", + "pos": "名詞", + "pn": -0.471475 + }, + { + "surface": "放り込む", + "readging": "ほうりこむ", + "pos": "動詞", + "pn": -0.471487 + }, + { + "surface": "音叉", + "readging": "おんさ", + "pos": "名詞", + "pn": -0.471496 + }, + { + "surface": "体系", + "readging": "たいけい", + "pos": "名詞", + "pn": -0.471506 + }, + { + "surface": "人差指", + "readging": "ひとさしゆび", + "pos": "名詞", + "pn": -0.471515 + }, + { + "surface": "歯磨", + "readging": "はみがき", + "pos": "名詞", + "pn": -0.471542 + }, + { + "surface": "立待の月", + "readging": "たちまちのつき", + "pos": "名詞", + "pn": -0.471566 + }, + { + "surface": "供人", + "readging": "ともびと", + "pos": "名詞", + "pn": -0.471571 + }, + { + "surface": "バー", + "readging": "バーコード", + "pos": "名詞", + "pn": -0.471633 + }, + { + "surface": "手の裏", + "readging": "てのうら", + "pos": "名詞", + "pn": -0.471641 + }, + { + "surface": "集い", + "readging": "つどい", + "pos": "名詞", + "pn": -0.471656 + }, + { + "surface": "突きのめす", + "readging": "つきのめす", + "pos": "動詞", + "pn": -0.471662 + }, + { + "surface": "伝来", + "readging": "でんらい", + "pos": "名詞", + "pn": -0.471722 + }, + { + "surface": "兼", + "readging": "けん", + "pos": "名詞", + "pn": -0.471727 + }, + { + "surface": "巻物", + "readging": "まきもの", + "pos": "名詞", + "pn": -0.471759 + }, + { + "surface": "リアス式海岸", + "readging": "リアスしきかいがん", + "pos": "名詞", + "pn": -0.471812 + }, + { + "surface": "トランプ", + "readging": "トランプ", + "pos": "名詞", + "pn": -0.47182 + }, + { + "surface": "捻り出す", + "readging": "ひねりだす", + "pos": "動詞", + "pn": -0.47183 + }, + { + "surface": "茶利", + "readging": "ちゃり", + "pos": "名詞", + "pn": -0.471839 + }, + { + "surface": "任用", + "readging": "にんよう", + "pos": "名詞", + "pn": -0.471847 + }, + { + "surface": "統合", + "readging": "とうごう", + "pos": "名詞", + "pn": -0.471858 + }, + { + "surface": "他意", + "readging": "たい", + "pos": "名詞", + "pn": -0.471886 + }, + { + "surface": "首脳", + "readging": "しゅのう", + "pos": "名詞", + "pn": -0.471887 + }, + { + "surface": "空谷", + "readging": "くうこく", + "pos": "名詞", + "pn": -0.471896 + }, + { + "surface": "蕩尽", + "readging": "とうじん", + "pos": "名詞", + "pn": -0.471924 + }, + { + "surface": "一夜作り", + "readging": "いちやづくり", + "pos": "名詞", + "pn": -0.471943 + }, + { + "surface": "巡業", + "readging": "じゅんぎょう", + "pos": "名詞", + "pn": -0.471944 + }, + { + "surface": "二六時中", + "readging": "にろくじちゅう", + "pos": "名詞", + "pn": -0.471946 + }, + { + "surface": "法廷", + "readging": "ほうてい", + "pos": "名詞", + "pn": -0.471959 + }, + { + "surface": "鬘", + "readging": "かつら", + "pos": "名詞", + "pn": -0.471961 + }, + { + "surface": "辻君", + "readging": "つじぎみ", + "pos": "名詞", + "pn": -0.472004 + }, + { + "surface": "敷地", + "readging": "しきち", + "pos": "名詞", + "pn": -0.472029 + }, + { + "surface": "山東菜", + "readging": "さんとうな", + "pos": "名詞", + "pn": -0.472057 + }, + { + "surface": "農家", + "readging": "のうか", + "pos": "名詞", + "pn": -0.472058 + }, + { + "surface": "項目", + "readging": "こうもく", + "pos": "名詞", + "pn": -0.472073 + }, + { + "surface": "山鉾", + "readging": "やまぼこ", + "pos": "名詞", + "pn": -0.472083 + }, + { + "surface": "フェスティバル", + "readging": "フェスティバル", + "pos": "名詞", + "pn": -0.472103 + }, + { + "surface": "疫学", + "readging": "えきがく", + "pos": "名詞", + "pn": -0.472123 + }, + { + "surface": "派閥", + "readging": "はばつ", + "pos": "名詞", + "pn": -0.472125 + }, + { + "surface": "湯銭", + "readging": "ゆせん", + "pos": "名詞", + "pn": -0.472127 + }, + { + "surface": "一段落", + "readging": "いちだんらく", + "pos": "名詞", + "pn": -0.472133 + }, + { + "surface": "シクラメン", + "readging": "シクラメン", + "pos": "名詞", + "pn": -0.472155 + }, + { + "surface": "独力", + "readging": "どくりょく", + "pos": "名詞", + "pn": -0.472172 + }, + { + "surface": "随徳寺", + "readging": "ずいとくじ", + "pos": "名詞", + "pn": -0.472188 + }, + { + "surface": "山妻", + "readging": "さんさい", + "pos": "名詞", + "pn": -0.472216 + }, + { + "surface": "波打ち際", + "readging": "なみうちぎわ", + "pos": "名詞", + "pn": -0.472231 + }, + { + "surface": "生漬", + "readging": "なまづけ", + "pos": "名詞", + "pn": -0.472232 + }, + { + "surface": "財産刑", + "readging": "ざいさんけい", + "pos": "名詞", + "pn": -0.472233 + }, + { + "surface": "大昔", + "readging": "おおむかし", + "pos": "名詞", + "pn": -0.472248 + }, + { + "surface": "仮す", + "readging": "かす", + "pos": "動詞", + "pn": -0.472248 + }, + { + "surface": "捩向ける", + "readging": "ねじむける", + "pos": "動詞", + "pn": -0.472265 + }, + { + "surface": "塩分", + "readging": "えんぶん", + "pos": "名詞", + "pn": -0.47227 + }, + { + "surface": "手明き", + "readging": "てあき", + "pos": "名詞", + "pn": -0.47228 + }, + { + "surface": "泌尿器", + "readging": "ひにょうき", + "pos": "名詞", + "pn": -0.472283 + }, + { + "surface": "海苔巻", + "readging": "のりまき", + "pos": "名詞", + "pn": -0.472284 + }, + { + "surface": "取戻す", + "readging": "とりもどす", + "pos": "動詞", + "pn": -0.472287 + }, + { + "surface": "性癖", + "readging": "せいへき", + "pos": "名詞", + "pn": -0.472328 + }, + { + "surface": "水浴び", + "readging": "みずあび", + "pos": "名詞", + "pn": -0.472331 + }, + { + "surface": "外事", + "readging": "がいじ", + "pos": "名詞", + "pn": -0.472372 + }, + { + "surface": "精霊流し", + "readging": "しょうりょうながし", + "pos": "名詞", + "pn": -0.472374 + }, + { + "surface": "円卓", + "readging": "えんたく", + "pos": "名詞", + "pn": -0.472394 + }, + { + "surface": "検痰", + "readging": "けんたん", + "pos": "名詞", + "pn": -0.472418 + }, + { + "surface": "アラビア ゴム", + "readging": "アラビア ゴム", + "pos": "名詞", + "pn": -0.47244 + }, + { + "surface": "試験", + "readging": "しけん", + "pos": "名詞", + "pn": -0.472446 + }, + { + "surface": "掻っ込む", + "readging": "かっこむ", + "pos": "動詞", + "pn": -0.472463 + }, + { + "surface": "庇い立て", + "readging": "かばいだて", + "pos": "名詞", + "pn": -0.472482 + }, + { + "surface": "加法", + "readging": "かほう", + "pos": "名詞", + "pn": -0.472483 + }, + { + "surface": "麻薬", + "readging": "まやく", + "pos": "名詞", + "pn": -0.472519 + }, + { + "surface": "コットン", + "readging": "コットン", + "pos": "名詞", + "pn": -0.47252 + }, + { + "surface": "子女", + "readging": "しじょ", + "pos": "名詞", + "pn": -0.472523 + }, + { + "surface": "火桶", + "readging": "ひおけ", + "pos": "名詞", + "pn": -0.47255 + }, + { + "surface": "輸贏", + "readging": "ゆえい", + "pos": "名詞", + "pn": -0.472565 + }, + { + "surface": "鼬ごっこ", + "readging": "いたちごっこ", + "pos": "名詞", + "pn": -0.472579 + }, + { + "surface": "棒縞", + "readging": "ぼうじま", + "pos": "名詞", + "pn": -0.472586 + }, + { + "surface": "捺印", + "readging": "なついん", + "pos": "名詞", + "pn": -0.47266 + }, + { + "surface": "没薬", + "readging": "もつやく", + "pos": "名詞", + "pn": -0.472662 + }, + { + "surface": "面影", + "readging": "おもかげ", + "pos": "名詞", + "pn": -0.472663 + }, + { + "surface": "合する", + "readging": "がっする", + "pos": "動詞", + "pn": -0.472668 + }, + { + "surface": "殴り込み", + "readging": "なぐりこみ", + "pos": "名詞", + "pn": -0.472698 + }, + { + "surface": "羽虱", + "readging": "はじらみ", + "pos": "名詞", + "pn": -0.472706 + }, + { + "surface": "委任", + "readging": "いにん", + "pos": "名詞", + "pn": -0.472714 + }, + { + "surface": "装い", + "readging": "よそおい", + "pos": "名詞", + "pn": -0.472733 + }, + { + "surface": "おめおめ", + "readging": "おめおめ", + "pos": "副詞", + "pn": -0.472749 + }, + { + "surface": "紙帳", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.47275 + }, + { + "surface": "花台", + "readging": "かだい", + "pos": "名詞", + "pn": -0.472782 + }, + { + "surface": "雑報", + "readging": "ざっぽう", + "pos": "名詞", + "pn": -0.472783 + }, + { + "surface": "永代", + "readging": "えいたい", + "pos": "名詞", + "pn": -0.472812 + }, + { + "surface": "奉職", + "readging": "ほうしょく", + "pos": "名詞", + "pn": -0.472822 + }, + { + "surface": "連翹", + "readging": "れんぎょう", + "pos": "名詞", + "pn": -0.472828 + }, + { + "surface": "精子", + "readging": "せいし", + "pos": "名詞", + "pn": -0.472831 + }, + { + "surface": "篤信", + "readging": "とくしん", + "pos": "名詞", + "pn": -0.472837 + }, + { + "surface": "三板", + "readging": "サンパン", + "pos": "名詞", + "pn": -0.47285 + }, + { + "surface": "唐松", + "readging": "からまつ", + "pos": "名詞", + "pn": -0.472879 + }, + { + "surface": "人口", + "readging": "じんこう", + "pos": "名詞", + "pn": -0.472883 + }, + { + "surface": "部類", + "readging": "ぶるい", + "pos": "名詞", + "pn": -0.472894 + }, + { + "surface": "体感", + "readging": "たいかん", + "pos": "名詞", + "pn": -0.472905 + }, + { + "surface": "乱雲", + "readging": "らんうん", + "pos": "名詞", + "pn": -0.472906 + }, + { + "surface": "トップ", + "readging": "トップマネージメント", + "pos": "名詞", + "pn": -0.472922 + }, + { + "surface": "帰化", + "readging": "きか", + "pos": "名詞", + "pn": -0.47293 + }, + { + "surface": "肘", + "readging": "ひじ", + "pos": "名詞", + "pn": -0.472944 + }, + { + "surface": "仕出す", + "readging": "しだす", + "pos": "動詞", + "pn": -0.472947 + }, + { + "surface": "薄氷", + "readging": "はくひょう", + "pos": "名詞", + "pn": -0.472955 + }, + { + "surface": "船首", + "readging": "せんしゅ", + "pos": "名詞", + "pn": -0.472999 + }, + { + "surface": "纏綿", + "readging": "てんめん", + "pos": "名詞", + "pn": -0.473024 + }, + { + "surface": "落飾", + "readging": "らくしょく", + "pos": "名詞", + "pn": -0.473046 + }, + { + "surface": "稼業", + "readging": "かぎょう", + "pos": "名詞", + "pn": -0.473051 + }, + { + "surface": "乗り降り", + "readging": "のりおり", + "pos": "名詞", + "pn": -0.47308 + }, + { + "surface": "重ね重ね", + "readging": "かさねがさね", + "pos": "副詞", + "pn": -0.473106 + }, + { + "surface": "バリケード", + "readging": "バリケード", + "pos": "名詞", + "pn": -0.473116 + }, + { + "surface": "加熱", + "readging": "かねつ", + "pos": "名詞", + "pn": -0.47312 + }, + { + "surface": "肉食", + "readging": "にくしょく", + "pos": "名詞", + "pn": -0.473144 + }, + { + "surface": "種籾", + "readging": "たねもみ", + "pos": "名詞", + "pn": -0.473172 + }, + { + "surface": "昼行灯", + "readging": "ひるあんどん", + "pos": "名詞", + "pn": -0.473178 + }, + { + "surface": "束縛", + "readging": "そくばく", + "pos": "名詞", + "pn": -0.473189 + }, + { + "surface": "抗する", + "readging": "こうする", + "pos": "動詞", + "pn": -0.473223 + }, + { + "surface": "抜き差し", + "readging": "ぬきさし", + "pos": "名詞", + "pn": -0.473247 + }, + { + "surface": "横切る", + "readging": "よこぎる", + "pos": "動詞", + "pn": -0.473269 + }, + { + "surface": "木賊", + "readging": "とくさ", + "pos": "名詞", + "pn": -0.473297 + }, + { + "surface": "空欄", + "readging": "くうらん", + "pos": "名詞", + "pn": -0.473307 + }, + { + "surface": "箒", + "readging": "ほうき", + "pos": "名詞", + "pn": -0.473326 + }, + { + "surface": "映像", + "readging": "えいぞう", + "pos": "名詞", + "pn": -0.473339 + }, + { + "surface": "沈沈", + "readging": "ちんちん", + "pos": "名詞", + "pn": -0.473353 + }, + { + "surface": "星眼", + "readging": "ほしめ", + "pos": "名詞", + "pn": -0.473382 + }, + { + "surface": "腐敗", + "readging": "ふはい", + "pos": "名詞", + "pn": -0.473382 + }, + { + "surface": "津津浦浦", + "readging": "つつうらうら", + "pos": "名詞", + "pn": -0.473406 + }, + { + "surface": "骨絡み", + "readging": "ほねがらみ", + "pos": "名詞", + "pn": -0.473407 + }, + { + "surface": "帯磁", + "readging": "たいじ", + "pos": "名詞", + "pn": -0.473413 + }, + { + "surface": "塩類泉", + "readging": "えんるいせん", + "pos": "名詞", + "pn": -0.473417 + }, + { + "surface": "ふつふつ", + "readging": "ふつふつ", + "pos": "副詞", + "pn": -0.473422 + }, + { + "surface": "面変り", + "readging": "おもがわり", + "pos": "名詞", + "pn": -0.473428 + }, + { + "surface": "鱗翅類", + "readging": "りんしるい", + "pos": "名詞", + "pn": -0.473431 + }, + { + "surface": "ファシズム", + "readging": "ファシズム", + "pos": "名詞", + "pn": -0.473432 + }, + { + "surface": "生糸", + "readging": "きいと", + "pos": "名詞", + "pn": -0.473466 + }, + { + "surface": "石膏", + "readging": "せっこう", + "pos": "名詞", + "pn": -0.473469 + }, + { + "surface": "飲", + "readging": "いん", + "pos": "名詞", + "pn": -0.473486 + }, + { + "surface": "簀子", + "readging": "すのこ", + "pos": "名詞", + "pn": -0.473494 + }, + { + "surface": "葦手書", + "readging": "あしでがき", + "pos": "名詞", + "pn": -0.473498 + }, + { + "surface": "公共", + "readging": "こうきょう", + "pos": "名詞", + "pn": -0.473509 + }, + { + "surface": "笙", + "readging": "しょう", + "pos": "名詞", + "pn": -0.47351 + }, + { + "surface": "日脚", + "readging": "ひあし", + "pos": "名詞", + "pn": -0.473526 + }, + { + "surface": "世話人", + "readging": "せわにん", + "pos": "名詞", + "pn": -0.473548 + }, + { + "surface": "鶺鴒", + "readging": "せきれい", + "pos": "名詞", + "pn": -0.473555 + }, + { + "surface": "摂政", + "readging": "せっしょう", + "pos": "名詞", + "pn": -0.473569 + }, + { + "surface": "干物", + "readging": "ひもの", + "pos": "名詞", + "pn": -0.473578 + }, + { + "surface": "茶道", + "readging": "ちゃどう", + "pos": "名詞", + "pn": -0.473582 + }, + { + "surface": "ボウリング", + "readging": "ボウリング", + "pos": "名詞", + "pn": -0.473602 + }, + { + "surface": "無関係", + "readging": "むかんけい", + "pos": "名詞", + "pn": -0.473602 + }, + { + "surface": "ゲシュタルト", + "readging": "ゲシュタルト", + "pos": "名詞", + "pn": -0.47362 + }, + { + "surface": "城郭", + "readging": "じょうかく", + "pos": "名詞", + "pn": -0.473621 + }, + { + "surface": "脱俗", + "readging": "だつぞく", + "pos": "名詞", + "pn": -0.473635 + }, + { + "surface": "堅パン", + "readging": "かたパン", + "pos": "名詞", + "pn": -0.47364 + }, + { + "surface": "妊産婦", + "readging": "にんさんぷ", + "pos": "名詞", + "pn": -0.473641 + }, + { + "surface": "鳥の子餅", + "readging": "とりのこもち", + "pos": "名詞", + "pn": -0.473644 + }, + { + "surface": "牙", + "readging": "きば", + "pos": "名詞", + "pn": -0.473662 + }, + { + "surface": "日章旗", + "readging": "にっしょうき", + "pos": "名詞", + "pn": -0.473669 + }, + { + "surface": "象", + "readging": "しょう", + "pos": "名詞", + "pn": -0.473671 + }, + { + "surface": "諡号", + "readging": "しごう", + "pos": "名詞", + "pn": -0.473675 + }, + { + "surface": "新モス", + "readging": "しんモス", + "pos": "名詞", + "pn": -0.473685 + }, + { + "surface": "方", + "readging": "かた", + "pos": "名詞", + "pn": -0.473732 + }, + { + "surface": "図書", + "readging": "としょ", + "pos": "名詞", + "pn": -0.473755 + }, + { + "surface": "二枚舌", + "readging": "にまいじた", + "pos": "名詞", + "pn": -0.473772 + }, + { + "surface": "侍大将", + "readging": "さむらいだいしょう", + "pos": "名詞", + "pn": -0.473783 + }, + { + "surface": "掛り合う", + "readging": "かかりあう", + "pos": "動詞", + "pn": -0.473794 + }, + { + "surface": "船台", + "readging": "せんだい", + "pos": "名詞", + "pn": -0.473801 + }, + { + "surface": "訛る", + "readging": "なまる", + "pos": "動詞", + "pn": -0.473807 + }, + { + "surface": "ギャング", + "readging": "ギャング", + "pos": "名詞", + "pn": -0.473825 + }, + { + "surface": "見栄坊", + "readging": "みえぼう", + "pos": "名詞", + "pn": -0.473841 + }, + { + "surface": "作り物", + "readging": "つくりもの", + "pos": "名詞", + "pn": -0.473857 + }, + { + "surface": "牧童", + "readging": "ぼくどう", + "pos": "名詞", + "pn": -0.473888 + }, + { + "surface": "儒艮", + "readging": "じゅごん", + "pos": "名詞", + "pn": -0.473893 + }, + { + "surface": "西瓜", + "readging": "すいか", + "pos": "名詞", + "pn": -0.473903 + }, + { + "surface": "垂んとする", + "readging": "なんなんとする", + "pos": "動詞", + "pn": -0.473916 + }, + { + "surface": "肥育", + "readging": "ひいく", + "pos": "名詞", + "pn": -0.473926 + }, + { + "surface": "落葉", + "readging": "おちば", + "pos": "名詞", + "pn": -0.473951 + }, + { + "surface": "届け出る", + "readging": "とどけでる", + "pos": "動詞", + "pn": -0.473956 + }, + { + "surface": "代掻き", + "readging": "しろかき", + "pos": "名詞", + "pn": -0.473961 + }, + { + "surface": "全幅", + "readging": "ぜんぷく", + "pos": "名詞", + "pn": -0.473969 + }, + { + "surface": "甘納豆", + "readging": "あまなっとう", + "pos": "名詞", + "pn": -0.473976 + }, + { + "surface": "答", + "readging": "とう", + "pos": "名詞", + "pn": -0.473982 + }, + { + "surface": "余剰", + "readging": "よじょう", + "pos": "名詞", + "pn": -0.473985 + }, + { + "surface": "マグマ", + "readging": "マグマ", + "pos": "名詞", + "pn": -0.473986 + }, + { + "surface": "四隅", + "readging": "よすみ", + "pos": "名詞", + "pn": -0.474024 + }, + { + "surface": "ホース", + "readging": "ホース", + "pos": "名詞", + "pn": -0.474029 + }, + { + "surface": "題名", + "readging": "だいめい", + "pos": "名詞", + "pn": -0.474044 + }, + { + "surface": "金打", + "readging": "きんちょう", + "pos": "名詞", + "pn": -0.474046 + }, + { + "surface": "紋御召", + "readging": "もんおめし", + "pos": "名詞", + "pn": -0.474068 + }, + { + "surface": "席入", + "readging": "せきいり", + "pos": "名詞", + "pn": -0.474081 + }, + { + "surface": "変形", + "readging": "へんけい", + "pos": "名詞", + "pn": -0.474082 + }, + { + "surface": "優姿", + "readging": "やさすがた", + "pos": "名詞", + "pn": -0.474107 + }, + { + "surface": "回遊", + "readging": "かいゆう", + "pos": "名詞", + "pn": -0.474122 + }, + { + "surface": "サンドイッチ", + "readging": "サンドイッチ", + "pos": "名詞", + "pn": -0.474161 + }, + { + "surface": "お貰い", + "readging": "おもらい", + "pos": "名詞", + "pn": -0.474192 + }, + { + "surface": "マネキン", + "readging": "マネキン", + "pos": "名詞", + "pn": -0.474206 + }, + { + "surface": "麻黄", + "readging": "まおう", + "pos": "名詞", + "pn": -0.474222 + }, + { + "surface": "徒手空拳", + "readging": "としゅくうけん", + "pos": "名詞", + "pn": -0.474231 + }, + { + "surface": "依存", + "readging": "いそん", + "pos": "名詞", + "pn": -0.47424 + }, + { + "surface": "鱈", + "readging": "たら", + "pos": "名詞", + "pn": -0.474284 + }, + { + "surface": "博徒", + "readging": "ばくと", + "pos": "名詞", + "pn": -0.474315 + }, + { + "surface": "ハイフン", + "readging": "ハイフン", + "pos": "名詞", + "pn": -0.474317 + }, + { + "surface": "鋼鉄", + "readging": "こうてつ", + "pos": "名詞", + "pn": -0.474335 + }, + { + "surface": "流氷", + "readging": "りゅうひょう", + "pos": "名詞", + "pn": -0.474357 + }, + { + "surface": "ぺらぺら", + "readging": "ぺらぺら", + "pos": "副詞", + "pn": -0.474371 + }, + { + "surface": "莫大小", + "readging": "メリヤス", + "pos": "名詞", + "pn": -0.474396 + }, + { + "surface": "餅網", + "readging": "もちあみ", + "pos": "名詞", + "pn": -0.47442 + }, + { + "surface": "持運ぶ", + "readging": "もちはこぶ", + "pos": "動詞", + "pn": -0.47443 + }, + { + "surface": "銃眼", + "readging": "じゅうがん", + "pos": "名詞", + "pn": -0.474471 + }, + { + "surface": "促進", + "readging": "そくしん", + "pos": "名詞", + "pn": -0.474478 + }, + { + "surface": "木端微塵", + "readging": "こっぱみじん", + "pos": "名詞", + "pn": -0.474516 + }, + { + "surface": "畷", + "readging": "なわて", + "pos": "名詞", + "pn": -0.47456 + }, + { + "surface": "脳震盪", + "readging": "のうしんとう", + "pos": "名詞", + "pn": -0.474586 + }, + { + "surface": "思い遣る", + "readging": "おもいやる", + "pos": "動詞", + "pn": -0.474617 + }, + { + "surface": "髪結", + "readging": "かみゆい", + "pos": "名詞", + "pn": -0.474626 + }, + { + "surface": "山頂", + "readging": "さんちょう", + "pos": "名詞", + "pn": -0.474628 + }, + { + "surface": "注釈", + "readging": "ちゅうしゃく", + "pos": "名詞", + "pn": -0.47464 + }, + { + "surface": "流星", + "readging": "ながれぼし", + "pos": "名詞", + "pn": -0.474673 + }, + { + "surface": "油単", + "readging": "ゆたん", + "pos": "名詞", + "pn": -0.474673 + }, + { + "surface": "紗", + "readging": "しゃ", + "pos": "名詞", + "pn": -0.474687 + }, + { + "surface": "栄養失調", + "readging": "えいようしっちょう", + "pos": "名詞", + "pn": -0.47469 + }, + { + "surface": "痰吐き", + "readging": "たんはき", + "pos": "名詞", + "pn": -0.474716 + }, + { + "surface": "金紋", + "readging": "きんもん", + "pos": "名詞", + "pn": -0.474722 + }, + { + "surface": "爆撃", + "readging": "ばくげき", + "pos": "名詞", + "pn": -0.474746 + }, + { + "surface": "ポロ", + "readging": "ポロシャツ", + "pos": "名詞", + "pn": -0.474753 + }, + { + "surface": "掩蔽", + "readging": "えんぺい", + "pos": "名詞", + "pn": -0.474773 + }, + { + "surface": "来書", + "readging": "らいしょ", + "pos": "名詞", + "pn": -0.474776 + }, + { + "surface": "立去る", + "readging": "たちさる", + "pos": "動詞", + "pn": -0.474821 + }, + { + "surface": "分散", + "readging": "ぶんさん", + "pos": "名詞", + "pn": -0.474834 + }, + { + "surface": "御籤", + "readging": "おみくじ", + "pos": "名詞", + "pn": -0.474834 + }, + { + "surface": "甘草", + "readging": "かんぞう", + "pos": "名詞", + "pn": -0.474869 + }, + { + "surface": "西日", + "readging": "にしび", + "pos": "名詞", + "pn": -0.474871 + }, + { + "surface": "色眼鏡", + "readging": "いろめがね", + "pos": "名詞", + "pn": -0.474872 + }, + { + "surface": "炭塵", + "readging": "たんじん", + "pos": "名詞", + "pn": -0.474878 + }, + { + "surface": "屈折", + "readging": "くっせつ", + "pos": "名詞", + "pn": -0.474888 + }, + { + "surface": "飛込み", + "readging": "とびこみ", + "pos": "名詞", + "pn": -0.474912 + }, + { + "surface": "埴輪", + "readging": "はにわ", + "pos": "名詞", + "pn": -0.474958 + }, + { + "surface": "補足", + "readging": "ほそく", + "pos": "名詞", + "pn": -0.474961 + }, + { + "surface": "製粉", + "readging": "せいふん", + "pos": "名詞", + "pn": -0.474966 + }, + { + "surface": "武術", + "readging": "ぶじゅつ", + "pos": "名詞", + "pn": -0.474983 + }, + { + "surface": "気団", + "readging": "きだん", + "pos": "名詞", + "pn": -0.474994 + }, + { + "surface": "乱打", + "readging": "らんだ", + "pos": "名詞", + "pn": -0.475007 + }, + { + "surface": "窮迫", + "readging": "きゅうはく", + "pos": "名詞", + "pn": -0.475014 + }, + { + "surface": "暗算", + "readging": "あんざん", + "pos": "名詞", + "pn": -0.475035 + }, + { + "surface": "バラエティー", + "readging": "バラエティー", + "pos": "名詞", + "pn": -0.475045 + }, + { + "surface": "馬連", + "readging": "ばれん", + "pos": "名詞", + "pn": -0.475048 + }, + { + "surface": "自ずから", + "readging": "おのずから", + "pos": "副詞", + "pn": -0.475049 + }, + { + "surface": "袖章", + "readging": "そでしょう", + "pos": "名詞", + "pn": -0.475054 + }, + { + "surface": "背筋", + "readging": "せすじ", + "pos": "名詞", + "pn": -0.475065 + }, + { + "surface": "門柱", + "readging": "もんちゅう", + "pos": "名詞", + "pn": -0.47513 + }, + { + "surface": "躯", + "readging": "むくろ", + "pos": "名詞", + "pn": -0.47513 + }, + { + "surface": "物尽し", + "readging": "ものづくし", + "pos": "名詞", + "pn": -0.475138 + }, + { + "surface": "コマンド", + "readging": "コマンド", + "pos": "名詞", + "pn": -0.475198 + }, + { + "surface": "ぽつんと", + "readging": "ぽつんと", + "pos": "副詞", + "pn": -0.475204 + }, + { + "surface": "朱欒", + "readging": "ザボン", + "pos": "名詞", + "pn": -0.475211 + }, + { + "surface": "罹災", + "readging": "りさい", + "pos": "名詞", + "pn": -0.475215 + }, + { + "surface": "引出す", + "readging": "ひきだす", + "pos": "動詞", + "pn": -0.475238 + }, + { + "surface": "行く先", + "readging": "ゆくさき", + "pos": "名詞", + "pn": -0.475239 + }, + { + "surface": "廃品", + "readging": "はいひん", + "pos": "名詞", + "pn": -0.475252 + }, + { + "surface": "台詞", + "readging": "だいし", + "pos": "名詞", + "pn": -0.475256 + }, + { + "surface": "エッチング", + "readging": "エッチング", + "pos": "名詞", + "pn": -0.475264 + }, + { + "surface": "かなぶん", + "readging": "かなぶん", + "pos": "名詞", + "pn": -0.475296 + }, + { + "surface": "収用", + "readging": "しゅうよう", + "pos": "名詞", + "pn": -0.475298 + }, + { + "surface": "浮ドック", + "readging": "うきドック", + "pos": "名詞", + "pn": -0.475299 + }, + { + "surface": "蜻蛉返り", + "readging": "とんぼがえり", + "pos": "名詞", + "pn": -0.4753 + }, + { + "surface": "立退く", + "readging": "たちのく", + "pos": "動詞", + "pn": -0.475309 + }, + { + "surface": "振翳す", + "readging": "ふりかざす", + "pos": "動詞", + "pn": -0.475345 + }, + { + "surface": "泡沫", + "readging": "うたかた", + "pos": "名詞", + "pn": -0.475353 + }, + { + "surface": "挂錫", + "readging": "かしゃく", + "pos": "名詞", + "pn": -0.475354 + }, + { + "surface": "高楼", + "readging": "こうろう", + "pos": "名詞", + "pn": -0.475354 + }, + { + "surface": "お付", + "readging": "おつき", + "pos": "名詞", + "pn": -0.475375 + }, + { + "surface": "卵子", + "readging": "らんし", + "pos": "名詞", + "pn": -0.475379 + }, + { + "surface": "絆創膏", + "readging": "ばんそうこう", + "pos": "名詞", + "pn": -0.475404 + }, + { + "surface": "火糞", + "readging": "ほくそ", + "pos": "名詞", + "pn": -0.475431 + }, + { + "surface": "コレラ", + "readging": "コレラ", + "pos": "名詞", + "pn": -0.475438 + }, + { + "surface": "偽金", + "readging": "にせがね", + "pos": "名詞", + "pn": -0.475439 + }, + { + "surface": "鼻水", + "readging": "はなみず", + "pos": "名詞", + "pn": -0.475451 + }, + { + "surface": "お作り", + "readging": "おつくり", + "pos": "名詞", + "pn": -0.4755 + }, + { + "surface": "腹水", + "readging": "ふくすい", + "pos": "名詞", + "pn": -0.475511 + }, + { + "surface": "順次", + "readging": "じゅんじ", + "pos": "副詞", + "pn": -0.475518 + }, + { + "surface": "ぐりぐり", + "readging": "ぐりぐり", + "pos": "副詞", + "pn": -0.47552 + }, + { + "surface": "愁嘆場", + "readging": "しゅうたんば", + "pos": "名詞", + "pn": -0.475538 + }, + { + "surface": "水銀", + "readging": "すいぎん", + "pos": "名詞", + "pn": -0.475552 + }, + { + "surface": "バリウム", + "readging": "バリウム", + "pos": "名詞", + "pn": -0.47556 + }, + { + "surface": "割譲", + "readging": "かつじょう", + "pos": "名詞", + "pn": -0.475592 + }, + { + "surface": "差毛", + "readging": "さしげ", + "pos": "名詞", + "pn": -0.475594 + }, + { + "surface": "さほど", + "readging": "さほど", + "pos": "副詞", + "pn": -0.475602 + }, + { + "surface": "出帰り", + "readging": "でがえり", + "pos": "名詞", + "pn": -0.475616 + }, + { + "surface": "段位", + "readging": "だんい", + "pos": "名詞", + "pn": -0.475617 + }, + { + "surface": "ショップ", + "readging": "ショップ", + "pos": "名詞", + "pn": -0.475629 + }, + { + "surface": "紅紫", + "readging": "こうし", + "pos": "名詞", + "pn": -0.47563 + }, + { + "surface": "ギフト", + "readging": "ギフトチェック", + "pos": "名詞", + "pn": -0.475646 + }, + { + "surface": "お流れ", + "readging": "おながれ", + "pos": "名詞", + "pn": -0.475652 + }, + { + "surface": "金主", + "readging": "きんしゅ", + "pos": "名詞", + "pn": -0.475693 + }, + { + "surface": "会場", + "readging": "かいじょう", + "pos": "名詞", + "pn": -0.475726 + }, + { + "surface": "用紙", + "readging": "ようし", + "pos": "名詞", + "pn": -0.475726 + }, + { + "surface": "退蔵", + "readging": "たいぞう", + "pos": "名詞", + "pn": -0.475755 + }, + { + "surface": "宿", + "readging": "しゅく", + "pos": "名詞", + "pn": -0.475763 + }, + { + "surface": "髢", + "readging": "かもじ", + "pos": "名詞", + "pn": -0.475784 + }, + { + "surface": "分岐", + "readging": "ぶんき", + "pos": "名詞", + "pn": -0.475848 + }, + { + "surface": "流会", + "readging": "りゅうかい", + "pos": "名詞", + "pn": -0.475849 + }, + { + "surface": "渡台詞", + "readging": "わたりぜりふ", + "pos": "名詞", + "pn": -0.475855 + }, + { + "surface": "礼譲", + "readging": "れいじょう", + "pos": "名詞", + "pn": -0.475874 + }, + { + "surface": "罪状", + "readging": "ざいじょう", + "pos": "名詞", + "pn": -0.475875 + }, + { + "surface": "大衆", + "readging": "たいしゅう", + "pos": "名詞", + "pn": -0.475887 + }, + { + "surface": "及び腰", + "readging": "およびごし", + "pos": "名詞", + "pn": -0.475888 + }, + { + "surface": "接待", + "readging": "せったい", + "pos": "名詞", + "pn": -0.4759 + }, + { + "surface": "慟哭", + "readging": "どうこく", + "pos": "名詞", + "pn": -0.47593 + }, + { + "surface": "打抜く", + "readging": "うちぬく", + "pos": "動詞", + "pn": -0.475949 + }, + { + "surface": "長櫃", + "readging": "ながびつ", + "pos": "名詞", + "pn": -0.475974 + }, + { + "surface": "メニュー", + "readging": "メニュー", + "pos": "名詞", + "pn": -0.475988 + }, + { + "surface": "荷厄介", + "readging": "にやっかい", + "pos": "名詞", + "pn": -0.475993 + }, + { + "surface": "雨止み", + "readging": "あまやみ", + "pos": "名詞", + "pn": -0.476017 + }, + { + "surface": "ずれ込む", + "readging": "ずれこむ", + "pos": "動詞", + "pn": -0.476018 + }, + { + "surface": "古びる", + "readging": "ふるびる", + "pos": "動詞", + "pn": -0.476023 + }, + { + "surface": "廃墟", + "readging": "はいきょ", + "pos": "名詞", + "pn": -0.476033 + }, + { + "surface": "中絶", + "readging": "ちゅうぜつ", + "pos": "名詞", + "pn": -0.476109 + }, + { + "surface": "弟", + "readging": "てい", + "pos": "名詞", + "pn": -0.476113 + }, + { + "surface": "筒", + "readging": "つつ", + "pos": "名詞", + "pn": -0.476118 + }, + { + "surface": "変異", + "readging": "へんい", + "pos": "名詞", + "pn": -0.47612 + }, + { + "surface": "緑肥", + "readging": "りょくひ", + "pos": "名詞", + "pn": -0.476133 + }, + { + "surface": "長袴", + "readging": "ながばかま", + "pos": "名詞", + "pn": -0.476139 + }, + { + "surface": "艮", + "readging": "うしとら", + "pos": "名詞", + "pn": -0.476139 + }, + { + "surface": "異姓", + "readging": "いせい", + "pos": "名詞", + "pn": -0.47617 + }, + { + "surface": "振替", + "readging": "ふりかえ", + "pos": "名詞", + "pn": -0.476178 + }, + { + "surface": "見定め", + "readging": "みさだめ", + "pos": "名詞", + "pn": -0.476181 + }, + { + "surface": "立花", + "readging": "りっか", + "pos": "名詞", + "pn": -0.476183 + }, + { + "surface": "万年筆", + "readging": "まんねんひつ", + "pos": "名詞", + "pn": -0.476217 + }, + { + "surface": "印伝", + "readging": "いんでん", + "pos": "名詞", + "pn": -0.476218 + }, + { + "surface": "舌たるい", + "readging": "したたるい", + "pos": "形容詞", + "pn": -0.476223 + }, + { + "surface": "糖類", + "readging": "とうるい", + "pos": "名詞", + "pn": -0.476248 + }, + { + "surface": "頼み込む", + "readging": "たのみこむ", + "pos": "動詞", + "pn": -0.476263 + }, + { + "surface": "逆臣", + "readging": "ぎゃくしん", + "pos": "名詞", + "pn": -0.476276 + }, + { + "surface": "金石", + "readging": "きんせき", + "pos": "名詞", + "pn": -0.476282 + }, + { + "surface": "装束", + "readging": "しょうぞく", + "pos": "名詞", + "pn": -0.476286 + }, + { + "surface": "生子壁", + "readging": "なまこかべ", + "pos": "名詞", + "pn": -0.476286 + }, + { + "surface": "黙秘", + "readging": "もくひ", + "pos": "名詞", + "pn": -0.476294 + }, + { + "surface": "経常", + "readging": "けいじょう", + "pos": "名詞", + "pn": -0.476294 + }, + { + "surface": "岬", + "readging": "みさき", + "pos": "名詞", + "pn": -0.476306 + }, + { + "surface": "毒ガス", + "readging": "どくガス", + "pos": "名詞", + "pn": -0.476311 + }, + { + "surface": "夜具", + "readging": "やぐ", + "pos": "名詞", + "pn": -0.476314 + }, + { + "surface": "深慮", + "readging": "しんりょ", + "pos": "名詞", + "pn": -0.476314 + }, + { + "surface": "楼台", + "readging": "ろうだい", + "pos": "名詞", + "pn": -0.476381 + }, + { + "surface": "騒音", + "readging": "そうおん", + "pos": "名詞", + "pn": -0.476382 + }, + { + "surface": "回り合せ", + "readging": "まわりあわせ", + "pos": "名詞", + "pn": -0.476385 + }, + { + "surface": "燗冷まし", + "readging": "かんざまし", + "pos": "名詞", + "pn": -0.476403 + }, + { + "surface": "鼻面", + "readging": "はなづら", + "pos": "名詞", + "pn": -0.47642 + }, + { + "surface": "年忌", + "readging": "ねんき", + "pos": "名詞", + "pn": -0.476453 + }, + { + "surface": "並足", + "readging": "なみあし", + "pos": "名詞", + "pn": -0.476478 + }, + { + "surface": "地物", + "readging": "ちぶつ", + "pos": "名詞", + "pn": -0.476506 + }, + { + "surface": "蒼鉛剤", + "readging": "そうえんざい", + "pos": "名詞", + "pn": -0.476508 + }, + { + "surface": "テント", + "readging": "テント", + "pos": "名詞", + "pn": -0.476517 + }, + { + "surface": "鎮痛", + "readging": "ちんつう", + "pos": "名詞", + "pn": -0.476535 + }, + { + "surface": "湯帷子", + "readging": "ゆかたびら", + "pos": "名詞", + "pn": -0.476541 + }, + { + "surface": "船渡し", + "readging": "ふなわたし", + "pos": "名詞", + "pn": -0.476554 + }, + { + "surface": "ベランダ", + "readging": "ベランダ", + "pos": "名詞", + "pn": -0.476555 + }, + { + "surface": "開口", + "readging": "かいこう", + "pos": "名詞", + "pn": -0.476583 + }, + { + "surface": "取敢えず", + "readging": "とりあえず", + "pos": "副詞", + "pn": -0.476601 + }, + { + "surface": "非理", + "readging": "ひり", + "pos": "名詞", + "pn": -0.47661 + }, + { + "surface": "読みさす", + "readging": "よみさす", + "pos": "動詞", + "pn": -0.476613 + }, + { + "surface": "ロンド", + "readging": "ロンド", + "pos": "名詞", + "pn": -0.476629 + }, + { + "surface": "ほろほろ", + "readging": "ほろほろ", + "pos": "副詞", + "pn": -0.476633 + }, + { + "surface": "ペーパー", + "readging": "ペーパープラン", + "pos": "名詞", + "pn": -0.476635 + }, + { + "surface": "次第", + "readging": "しだい", + "pos": "名詞", + "pn": -0.476635 + }, + { + "surface": "木犀", + "readging": "もくせい", + "pos": "名詞", + "pn": -0.476641 + }, + { + "surface": "レーダー", + "readging": "レーダー", + "pos": "名詞", + "pn": -0.476651 + }, + { + "surface": "書体", + "readging": "しょたい", + "pos": "名詞", + "pn": -0.476661 + }, + { + "surface": "百日草", + "readging": "ひゃくにちそう", + "pos": "名詞", + "pn": -0.476691 + }, + { + "surface": "詰", + "readging": "つみ", + "pos": "名詞", + "pn": -0.476696 + }, + { + "surface": "用立てる", + "readging": "ようだてる", + "pos": "動詞", + "pn": -0.476711 + }, + { + "surface": "先立つ", + "readging": "さきだつ", + "pos": "動詞", + "pn": -0.476742 + }, + { + "surface": "金曜", + "readging": "きんよう", + "pos": "名詞", + "pn": -0.476743 + }, + { + "surface": "鎖骨", + "readging": "さこつ", + "pos": "名詞", + "pn": -0.476747 + }, + { + "surface": "散髪", + "readging": "さんぱつ", + "pos": "名詞", + "pn": -0.476752 + }, + { + "surface": "凝固", + "readging": "ぎょうこ", + "pos": "名詞", + "pn": -0.476764 + }, + { + "surface": "囮", + "readging": "おとり", + "pos": "名詞", + "pn": -0.476797 + }, + { + "surface": "フィアンセ", + "readging": "フィアンセ", + "pos": "名詞", + "pn": -0.476824 + }, + { + "surface": "ごつい", + "readging": "ごつい", + "pos": "形容詞", + "pn": -0.47683 + }, + { + "surface": "事端", + "readging": "じたん", + "pos": "名詞", + "pn": -0.47683 + }, + { + "surface": "崩", + "readging": "ほう", + "pos": "名詞", + "pn": -0.476831 + }, + { + "surface": "科目", + "readging": "かもく", + "pos": "名詞", + "pn": -0.476846 + }, + { + "surface": "後陣", + "readging": "ごじん", + "pos": "名詞", + "pn": -0.476848 + }, + { + "surface": "芥子", + "readging": "からし", + "pos": "名詞", + "pn": -0.476848 + }, + { + "surface": "血清", + "readging": "けっせい", + "pos": "名詞", + "pn": -0.476869 + }, + { + "surface": "引延す", + "readging": "ひきのばす", + "pos": "動詞", + "pn": -0.476873 + }, + { + "surface": "跳ねっ返り", + "readging": "はねっかえり", + "pos": "名詞", + "pn": -0.476882 + }, + { + "surface": "身形", + "readging": "みなり", + "pos": "名詞", + "pn": -0.476909 + }, + { + "surface": "傷跡", + "readging": "きずあと", + "pos": "名詞", + "pn": -0.476912 + }, + { + "surface": "扼殺", + "readging": "やくさつ", + "pos": "名詞", + "pn": -0.476931 + }, + { + "surface": "髭", + "readging": "ひげ", + "pos": "名詞", + "pn": -0.476953 + }, + { + "surface": "云云", + "readging": "うんぬん", + "pos": "名詞", + "pn": -0.476959 + }, + { + "surface": "陣所", + "readging": "じんしょ", + "pos": "名詞", + "pn": -0.476974 + }, + { + "surface": "雲路", + "readging": "くもじ", + "pos": "名詞", + "pn": -0.476991 + }, + { + "surface": "介添", + "readging": "かいぞえ", + "pos": "名詞", + "pn": -0.476996 + }, + { + "surface": "序論", + "readging": "じょろん", + "pos": "名詞", + "pn": -0.477001 + }, + { + "surface": "使者", + "readging": "ししゃ", + "pos": "名詞", + "pn": -0.477032 + }, + { + "surface": "隣保", + "readging": "りんぽ", + "pos": "名詞", + "pn": -0.477059 + }, + { + "surface": "刺さる", + "readging": "ささる", + "pos": "動詞", + "pn": -0.477072 + }, + { + "surface": "水杯", + "readging": "みずさかずき", + "pos": "名詞", + "pn": -0.477083 + }, + { + "surface": "取組む", + "readging": "とりくむ", + "pos": "動詞", + "pn": -0.477097 + }, + { + "surface": "品玉", + "readging": "しなだま", + "pos": "名詞", + "pn": -0.477115 + }, + { + "surface": "帯芯", + "readging": "おびしん", + "pos": "名詞", + "pn": -0.477138 + }, + { + "surface": "厄前", + "readging": "やくまえ", + "pos": "名詞", + "pn": -0.477147 + }, + { + "surface": "陸揚げ", + "readging": "りくあげ", + "pos": "名詞", + "pn": -0.477147 + }, + { + "surface": "帆立貝", + "readging": "ほたてがい", + "pos": "名詞", + "pn": -0.477153 + }, + { + "surface": "衝動", + "readging": "しょうどう", + "pos": "名詞", + "pn": -0.477201 + }, + { + "surface": "肝", + "readging": "かん", + "pos": "名詞", + "pn": -0.477208 + }, + { + "surface": "旗竿", + "readging": "はたざお", + "pos": "名詞", + "pn": -0.477214 + }, + { + "surface": "混成", + "readging": "こんせい", + "pos": "名詞", + "pn": -0.477222 + }, + { + "surface": "移牒", + "readging": "いちょう", + "pos": "名詞", + "pn": -0.47723 + }, + { + "surface": "引込み", + "readging": "ひっこみ", + "pos": "名詞", + "pn": -0.477234 + }, + { + "surface": "格納庫", + "readging": "かくのうこ", + "pos": "名詞", + "pn": -0.47724 + }, + { + "surface": "糖化", + "readging": "とうか", + "pos": "名詞", + "pn": -0.477245 + }, + { + "surface": "バット", + "readging": "バット", + "pos": "名詞", + "pn": -0.477256 + }, + { + "surface": "収拾", + "readging": "しゅうしゅう", + "pos": "名詞", + "pn": -0.477282 + }, + { + "surface": "鳶色", + "readging": "とびいろ", + "pos": "名詞", + "pn": -0.477286 + }, + { + "surface": "中綿", + "readging": "なかわた", + "pos": "名詞", + "pn": -0.477293 + }, + { + "surface": "謄写", + "readging": "とうしゃ", + "pos": "名詞", + "pn": -0.47731 + }, + { + "surface": "韻律", + "readging": "いんりつ", + "pos": "名詞", + "pn": -0.477314 + }, + { + "surface": "音吐", + "readging": "おんと", + "pos": "名詞", + "pn": -0.47732 + }, + { + "surface": "ひったくる", + "readging": "ひったくる", + "pos": "動詞", + "pn": -0.477327 + }, + { + "surface": "縦", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.477336 + }, + { + "surface": "築山", + "readging": "つきやま", + "pos": "名詞", + "pn": -0.477351 + }, + { + "surface": "依拠", + "readging": "いきょ", + "pos": "名詞", + "pn": -0.477373 + }, + { + "surface": "りんさん石灰", + "readging": "りんさんせっかい", + "pos": "名詞", + "pn": -0.477381 + }, + { + "surface": "老年", + "readging": "ろうねん", + "pos": "名詞", + "pn": -0.477382 + }, + { + "surface": "本法", + "readging": "ほんぽう", + "pos": "名詞", + "pn": -0.477392 + }, + { + "surface": "一時逃れ", + "readging": "いっときのがれ", + "pos": "名詞", + "pn": -0.477421 + }, + { + "surface": "流れ歩く", + "readging": "ながれあるく", + "pos": "動詞", + "pn": -0.477428 + }, + { + "surface": "貯蓄", + "readging": "ちょちく", + "pos": "名詞", + "pn": -0.477433 + }, + { + "surface": "因る", + "readging": "よる", + "pos": "動詞", + "pn": -0.477444 + }, + { + "surface": "山気", + "readging": "やまけ", + "pos": "名詞", + "pn": -0.477472 + }, + { + "surface": "習性", + "readging": "しゅうせい", + "pos": "名詞", + "pn": -0.477501 + }, + { + "surface": "計数", + "readging": "けいすう", + "pos": "名詞", + "pn": -0.477503 + }, + { + "surface": "経絡", + "readging": "けいらく", + "pos": "名詞", + "pn": -0.47751 + }, + { + "surface": "先方", + "readging": "せんぽう", + "pos": "名詞", + "pn": -0.477538 + }, + { + "surface": "着背長", + "readging": "きせなが", + "pos": "名詞", + "pn": -0.477576 + }, + { + "surface": "桐", + "readging": "とう", + "pos": "名詞", + "pn": -0.477584 + }, + { + "surface": "略記", + "readging": "りゃっき", + "pos": "名詞", + "pn": -0.477586 + }, + { + "surface": "家業", + "readging": "かぎょう", + "pos": "名詞", + "pn": -0.477591 + }, + { + "surface": "沿路", + "readging": "えんろ", + "pos": "名詞", + "pn": -0.477603 + }, + { + "surface": "共襟", + "readging": "ともえり", + "pos": "名詞", + "pn": -0.477606 + }, + { + "surface": "硬度", + "readging": "こうど", + "pos": "名詞", + "pn": -0.477628 + }, + { + "surface": "未完成", + "readging": "みかんせい", + "pos": "名詞", + "pn": -0.477631 + }, + { + "surface": "目薬", + "readging": "めぐすり", + "pos": "名詞", + "pn": -0.477633 + }, + { + "surface": "掻巻", + "readging": "かいまき", + "pos": "名詞", + "pn": -0.477661 + }, + { + "surface": "バニラ", + "readging": "バニラ", + "pos": "名詞", + "pn": -0.477665 + }, + { + "surface": "独", + "readging": "どく", + "pos": "名詞", + "pn": -0.477674 + }, + { + "surface": "焙烙", + "readging": "ほうろく", + "pos": "名詞", + "pn": -0.477692 + }, + { + "surface": "所属", + "readging": "しょぞく", + "pos": "名詞", + "pn": -0.477708 + }, + { + "surface": "屋台", + "readging": "やたい", + "pos": "名詞", + "pn": -0.477709 + }, + { + "surface": "紀", + "readging": "き", + "pos": "名詞", + "pn": -0.477709 + }, + { + "surface": "着類", + "readging": "きるい", + "pos": "名詞", + "pn": -0.477719 + }, + { + "surface": "操行", + "readging": "そうこう", + "pos": "名詞", + "pn": -0.477745 + }, + { + "surface": "倶利迦羅紋紋", + "readging": "くりからもんもん", + "pos": "名詞", + "pn": -0.477746 + }, + { + "surface": "諸侯", + "readging": "しょこう", + "pos": "名詞", + "pn": -0.47776 + }, + { + "surface": "乳化", + "readging": "にゅうか", + "pos": "名詞", + "pn": -0.47776 + }, + { + "surface": "仏事", + "readging": "ぶつじ", + "pos": "名詞", + "pn": -0.477775 + }, + { + "surface": "即行", + "readging": "そっこう", + "pos": "名詞", + "pn": -0.477798 + }, + { + "surface": "ローテーション", + "readging": "ローテーション", + "pos": "名詞", + "pn": -0.477801 + }, + { + "surface": "鶯", + "readging": "うぐいす", + "pos": "名詞", + "pn": -0.477802 + }, + { + "surface": "来任", + "readging": "らいにん", + "pos": "名詞", + "pn": -0.477824 + }, + { + "surface": "真", + "readging": "まっ", + "pos": "名詞", + "pn": -0.477837 + }, + { + "surface": "在席", + "readging": "ざいせき", + "pos": "名詞", + "pn": -0.477855 + }, + { + "surface": "板金", + "readging": "いたがね", + "pos": "名詞", + "pn": -0.477864 + }, + { + "surface": "測量", + "readging": "そくりょう", + "pos": "名詞", + "pn": -0.477888 + }, + { + "surface": "釣銭", + "readging": "つりせん", + "pos": "名詞", + "pn": -0.477904 + }, + { + "surface": "戸車", + "readging": "とぐるま", + "pos": "名詞", + "pn": -0.477905 + }, + { + "surface": "几帳", + "readging": "きちょう", + "pos": "名詞", + "pn": -0.477915 + }, + { + "surface": "包括", + "readging": "ほうかつ", + "pos": "名詞", + "pn": -0.477918 + }, + { + "surface": "奴凧", + "readging": "やっこだこ", + "pos": "名詞", + "pn": -0.477924 + }, + { + "surface": "ショット", + "readging": "ショット", + "pos": "名詞", + "pn": -0.477939 + }, + { + "surface": "逆毛", + "readging": "さかげ", + "pos": "名詞", + "pn": -0.477956 + }, + { + "surface": "綾取り", + "readging": "あやとり", + "pos": "名詞", + "pn": -0.478006 + }, + { + "surface": "幻灯", + "readging": "げんとう", + "pos": "名詞", + "pn": -0.478013 + }, + { + "surface": "美術", + "readging": "びじゅつ", + "pos": "名詞", + "pn": -0.478017 + }, + { + "surface": "ねんねこ", + "readging": "ねんねこ", + "pos": "名詞", + "pn": -0.478023 + }, + { + "surface": "著録", + "readging": "ちょろく", + "pos": "名詞", + "pn": -0.47804 + }, + { + "surface": "節婦", + "readging": "せっぷ", + "pos": "名詞", + "pn": -0.47805 + }, + { + "surface": "掲揚", + "readging": "けいよう", + "pos": "名詞", + "pn": -0.478053 + }, + { + "surface": "割箸", + "readging": "わりばし", + "pos": "名詞", + "pn": -0.478056 + }, + { + "surface": "砂遊び", + "readging": "すなあそび", + "pos": "名詞", + "pn": -0.478102 + }, + { + "surface": "直ちに", + "readging": "ただちに", + "pos": "副詞", + "pn": -0.478105 + }, + { + "surface": "人力車", + "readging": "じんりきしゃ", + "pos": "名詞", + "pn": -0.478133 + }, + { + "surface": "半玉", + "readging": "はんぎょく", + "pos": "名詞", + "pn": -0.47814 + }, + { + "surface": "ステーキ", + "readging": "ステーキ", + "pos": "名詞", + "pn": -0.478154 + }, + { + "surface": "捻る", + "readging": "ひねる", + "pos": "動詞", + "pn": -0.478182 + }, + { + "surface": "引払う", + "readging": "ひきはらう", + "pos": "動詞", + "pn": -0.478198 + }, + { + "surface": "精麦", + "readging": "せいばく", + "pos": "名詞", + "pn": -0.47822 + }, + { + "surface": "点薬", + "readging": "てんやく", + "pos": "名詞", + "pn": -0.478227 + }, + { + "surface": "ぶらりと", + "readging": "ぶらりと", + "pos": "副詞", + "pn": -0.478228 + }, + { + "surface": "形成", + "readging": "けいせい", + "pos": "名詞", + "pn": -0.478234 + }, + { + "surface": "樋", + "readging": "とい", + "pos": "名詞", + "pn": -0.478239 + }, + { + "surface": "浸剤", + "readging": "しんざい", + "pos": "名詞", + "pn": -0.478257 + }, + { + "surface": "ぽっと出", + "readging": "ぽっとで", + "pos": "名詞", + "pn": -0.478267 + }, + { + "surface": "遺尿", + "readging": "いにょう", + "pos": "名詞", + "pn": -0.478279 + }, + { + "surface": "小腸", + "readging": "しょうちょう", + "pos": "名詞", + "pn": -0.478283 + }, + { + "surface": "他郷", + "readging": "たきょう", + "pos": "名詞", + "pn": -0.4783 + }, + { + "surface": "童顔", + "readging": "どうがん", + "pos": "名詞", + "pn": -0.478316 + }, + { + "surface": "秘事", + "readging": "ひじ", + "pos": "名詞", + "pn": -0.47833 + }, + { + "surface": "歌曲", + "readging": "かきょく", + "pos": "名詞", + "pn": -0.478365 + }, + { + "surface": "女子", + "readging": "おなご", + "pos": "名詞", + "pn": -0.47838 + }, + { + "surface": "脊柱", + "readging": "せきちゅう", + "pos": "名詞", + "pn": -0.478394 + }, + { + "surface": "上調子", + "readging": "うわぢょうし", + "pos": "名詞", + "pn": -0.478399 + }, + { + "surface": "海綿", + "readging": "かいめん", + "pos": "名詞", + "pn": -0.478413 + }, + { + "surface": "ひよめき", + "readging": "ひよめき", + "pos": "名詞", + "pn": -0.478414 + }, + { + "surface": "凍み", + "readging": "しみ", + "pos": "名詞", + "pn": -0.478415 + }, + { + "surface": "鬣", + "readging": "たてがみ", + "pos": "名詞", + "pn": -0.478434 + }, + { + "surface": "如簾", + "readging": "じょれん", + "pos": "名詞", + "pn": -0.478436 + }, + { + "surface": "印鑑", + "readging": "いんかん", + "pos": "名詞", + "pn": -0.478437 + }, + { + "surface": "葦登", + "readging": "よしのぼり", + "pos": "名詞", + "pn": -0.478444 + }, + { + "surface": "添付", + "readging": "てんぷ", + "pos": "名詞", + "pn": -0.478445 + }, + { + "surface": "水脈", + "readging": "みお", + "pos": "名詞", + "pn": -0.478462 + }, + { + "surface": "米搗き飛蝗", + "readging": "こめつきばった", + "pos": "名詞", + "pn": -0.478465 + }, + { + "surface": "羽", + "readging": "う", + "pos": "名詞", + "pn": -0.478492 + }, + { + "surface": "バンジョー", + "readging": "バンジョー", + "pos": "名詞", + "pn": -0.478493 + }, + { + "surface": "鋪", + "readging": "しき", + "pos": "名詞", + "pn": -0.478508 + }, + { + "surface": "伝達", + "readging": "でんたつ", + "pos": "名詞", + "pn": -0.478513 + }, + { + "surface": "鹿子斑", + "readging": "かのこまだら", + "pos": "名詞", + "pn": -0.478516 + }, + { + "surface": "のっぺり", + "readging": "のっぺり", + "pos": "名詞", + "pn": -0.478526 + }, + { + "surface": "桑", + "readging": "くわ", + "pos": "名詞", + "pn": -0.478538 + }, + { + "surface": "損傷", + "readging": "そんしょう", + "pos": "名詞", + "pn": -0.478585 + }, + { + "surface": "昔話", + "readging": "むかしばなし", + "pos": "名詞", + "pn": -0.478599 + }, + { + "surface": "弁護士", + "readging": "べんごし", + "pos": "名詞", + "pn": -0.478609 + }, + { + "surface": "後妻", + "readging": "ごさい", + "pos": "名詞", + "pn": -0.478656 + }, + { + "surface": "今年", + "readging": "ことし", + "pos": "名詞", + "pn": -0.478704 + }, + { + "surface": "根回し", + "readging": "ねまわし", + "pos": "名詞", + "pn": -0.478722 + }, + { + "surface": "舞", + "readging": "ぶ", + "pos": "名詞", + "pn": -0.478726 + }, + { + "surface": "ナンセンス", + "readging": "ナンセンス", + "pos": "名詞", + "pn": -0.478736 + }, + { + "surface": "とばっちり", + "readging": "とばっちり", + "pos": "名詞", + "pn": -0.478743 + }, + { + "surface": "製鉄", + "readging": "せいてつ", + "pos": "名詞", + "pn": -0.478743 + }, + { + "surface": "オミット", + "readging": "オミット", + "pos": "名詞", + "pn": -0.478756 + }, + { + "surface": "阿片", + "readging": "あへん", + "pos": "名詞", + "pn": -0.478765 + }, + { + "surface": "血迷う", + "readging": "ちまよう", + "pos": "動詞", + "pn": -0.47877 + }, + { + "surface": "届ける", + "readging": "とどける", + "pos": "動詞", + "pn": -0.478773 + }, + { + "surface": "点数", + "readging": "てんすう", + "pos": "名詞", + "pn": -0.478782 + }, + { + "surface": "手の筋", + "readging": "てのすじ", + "pos": "名詞", + "pn": -0.478793 + }, + { + "surface": "塩素", + "readging": "えんそ", + "pos": "名詞", + "pn": -0.478839 + }, + { + "surface": "指図", + "readging": "さしず", + "pos": "名詞", + "pn": -0.47884 + }, + { + "surface": "本船", + "readging": "ほんせん", + "pos": "名詞", + "pn": -0.478842 + }, + { + "surface": "布帛", + "readging": "ふはく", + "pos": "名詞", + "pn": -0.47885 + }, + { + "surface": "おちゃっぴい", + "readging": "おちゃっぴい", + "pos": "名詞", + "pn": -0.478856 + }, + { + "surface": "沙門", + "readging": "しゃもん", + "pos": "名詞", + "pn": -0.478868 + }, + { + "surface": "にたりと", + "readging": "にたりと", + "pos": "副詞", + "pn": -0.478869 + }, + { + "surface": "影", + "readging": "かげ", + "pos": "名詞", + "pn": -0.478898 + }, + { + "surface": "断橋", + "readging": "だんきょう", + "pos": "名詞", + "pn": -0.478912 + }, + { + "surface": "鴻毛", + "readging": "こうもう", + "pos": "名詞", + "pn": -0.478919 + }, + { + "surface": "摘み", + "readging": "つまみ", + "pos": "名詞", + "pn": -0.478924 + }, + { + "surface": "据付ける", + "readging": "すえつける", + "pos": "動詞", + "pn": -0.478945 + }, + { + "surface": "檳榔樹", + "readging": "びんろうじゅ", + "pos": "名詞", + "pn": -0.478951 + }, + { + "surface": "吸殻", + "readging": "すいがら", + "pos": "名詞", + "pn": -0.478956 + }, + { + "surface": "晩年", + "readging": "ばんねん", + "pos": "名詞", + "pn": -0.478966 + }, + { + "surface": "源", + "readging": "げん", + "pos": "名詞", + "pn": -0.47897 + }, + { + "surface": "絶する", + "readging": "ぜっする", + "pos": "動詞", + "pn": -0.478979 + }, + { + "surface": "転轍機", + "readging": "てんてつき", + "pos": "名詞", + "pn": -0.47903 + }, + { + "surface": "ハープ", + "readging": "ハープ", + "pos": "名詞", + "pn": -0.479032 + }, + { + "surface": "進退", + "readging": "しんたい", + "pos": "名詞", + "pn": -0.479055 + }, + { + "surface": "零墨", + "readging": "れいぼく", + "pos": "名詞", + "pn": -0.479082 + }, + { + "surface": "パンタグラフ", + "readging": "パンタグラフ", + "pos": "名詞", + "pn": -0.479132 + }, + { + "surface": "風采", + "readging": "ふうさい", + "pos": "名詞", + "pn": -0.479181 + }, + { + "surface": "言い分", + "readging": "いいぶん", + "pos": "名詞", + "pn": -0.479188 + }, + { + "surface": "浅漬", + "readging": "あさづけ", + "pos": "名詞", + "pn": -0.479194 + }, + { + "surface": "景況", + "readging": "けいきょう", + "pos": "名詞", + "pn": -0.479198 + }, + { + "surface": "たまゆら", + "readging": "たまゆら", + "pos": "副詞", + "pn": -0.479206 + }, + { + "surface": "枸杞", + "readging": "くこ", + "pos": "名詞", + "pn": -0.479216 + }, + { + "surface": "プレゼント", + "readging": "プレゼント", + "pos": "名詞", + "pn": -0.479217 + }, + { + "surface": "手筈", + "readging": "てはず", + "pos": "名詞", + "pn": -0.479233 + }, + { + "surface": "訳注", + "readging": "やくちゅう", + "pos": "名詞", + "pn": -0.479244 + }, + { + "surface": "バラスト", + "readging": "バラスト", + "pos": "名詞", + "pn": -0.479261 + }, + { + "surface": "チェンジ", + "readging": "チェンジ", + "pos": "名詞", + "pn": -0.479271 + }, + { + "surface": "居合腰", + "readging": "いあい", + "pos": "名詞", + "pn": -0.479286 + }, + { + "surface": "砲", + "readging": "ほう", + "pos": "名詞", + "pn": -0.479291 + }, + { + "surface": "用度", + "readging": "ようど", + "pos": "名詞", + "pn": -0.479292 + }, + { + "surface": "銃声", + "readging": "じゅうせい", + "pos": "名詞", + "pn": -0.479296 + }, + { + "surface": "ワッフル", + "readging": "ワッフル", + "pos": "名詞", + "pn": -0.479309 + }, + { + "surface": "仏者", + "readging": "ぶっしゃ", + "pos": "名詞", + "pn": -0.479314 + }, + { + "surface": "庭石", + "readging": "にわいし", + "pos": "名詞", + "pn": -0.479328 + }, + { + "surface": "鷹", + "readging": "たか", + "pos": "名詞", + "pn": -0.479344 + }, + { + "surface": "記載", + "readging": "きさい", + "pos": "名詞", + "pn": -0.479348 + }, + { + "surface": "焼太刀", + "readging": "やきだち", + "pos": "名詞", + "pn": -0.479368 + }, + { + "surface": "胸当", + "readging": "むねあて", + "pos": "名詞", + "pn": -0.47939 + }, + { + "surface": "誣告", + "readging": "ぶこく", + "pos": "名詞", + "pn": -0.479407 + }, + { + "surface": "生業", + "readging": "なりわい", + "pos": "名詞", + "pn": -0.479414 + }, + { + "surface": "心腹", + "readging": "しんぷく", + "pos": "名詞", + "pn": -0.479418 + }, + { + "surface": "獣身", + "readging": "じゅうしん", + "pos": "名詞", + "pn": -0.479425 + }, + { + "surface": "生計費", + "readging": "せいけいひ", + "pos": "名詞", + "pn": -0.479432 + }, + { + "surface": "娑羅", + "readging": "さら", + "pos": "名詞", + "pn": -0.479457 + }, + { + "surface": "這いずる", + "readging": "はいずる", + "pos": "動詞", + "pn": -0.479468 + }, + { + "surface": "コンディション", + "readging": "コンディション", + "pos": "名詞", + "pn": -0.479475 + }, + { + "surface": "侍史", + "readging": "じし", + "pos": "名詞", + "pn": -0.479484 + }, + { + "surface": "高足", + "readging": "たかあし", + "pos": "名詞", + "pn": -0.479517 + }, + { + "surface": "金箔", + "readging": "きんぱく", + "pos": "名詞", + "pn": -0.479545 + }, + { + "surface": "さく", + "readging": "さく", + "pos": "名詞", + "pn": -0.479555 + }, + { + "surface": "釈家", + "readging": "しゃっけ", + "pos": "名詞", + "pn": -0.479559 + }, + { + "surface": "纓", + "readging": "えい", + "pos": "名詞", + "pn": -0.479567 + }, + { + "surface": "巌", + "readging": "がん", + "pos": "名詞", + "pn": -0.479579 + }, + { + "surface": "拝聴", + "readging": "はいちょう", + "pos": "名詞", + "pn": -0.47958 + }, + { + "surface": "年寄", + "readging": "としより", + "pos": "名詞", + "pn": -0.479594 + }, + { + "surface": "山麓", + "readging": "さんろく", + "pos": "名詞", + "pn": -0.4796 + }, + { + "surface": "交番", + "readging": "こうばん", + "pos": "名詞", + "pn": -0.47963 + }, + { + "surface": "野路", + "readging": "のじ", + "pos": "名詞", + "pn": -0.479631 + }, + { + "surface": "副食物", + "readging": "ふくしょくぶつ", + "pos": "名詞", + "pn": -0.479636 + }, + { + "surface": "灰塵", + "readging": "かいじん", + "pos": "名詞", + "pn": -0.479653 + }, + { + "surface": "物差", + "readging": "ものさし", + "pos": "名詞", + "pn": -0.479674 + }, + { + "surface": "川尻", + "readging": "かわじり", + "pos": "名詞", + "pn": -0.47968 + }, + { + "surface": "一個人", + "readging": "いっこじん", + "pos": "名詞", + "pn": -0.47968 + }, + { + "surface": "サック", + "readging": "サック", + "pos": "名詞", + "pn": -0.479694 + }, + { + "surface": "偏愛", + "readging": "へんあい", + "pos": "名詞", + "pn": -0.479715 + }, + { + "surface": "放れ馬", + "readging": "はなれうま", + "pos": "名詞", + "pn": -0.479727 + }, + { + "surface": "辞職", + "readging": "じしょく", + "pos": "名詞", + "pn": -0.479728 + }, + { + "surface": "うとうと", + "readging": "うとうと", + "pos": "副詞", + "pn": -0.479739 + }, + { + "surface": "淀", + "readging": "よど", + "pos": "名詞", + "pn": -0.479768 + }, + { + "surface": "ライト", + "readging": "ライトアップ", + "pos": "名詞", + "pn": -0.47978 + }, + { + "surface": "塗立てる", + "readging": "ぬりたてる", + "pos": "動詞", + "pn": -0.479784 + }, + { + "surface": "八専", + "readging": "はっせん", + "pos": "名詞", + "pn": -0.479793 + }, + { + "surface": "頭蓋骨", + "readging": "ずがいこつ", + "pos": "名詞", + "pn": -0.479815 + }, + { + "surface": "屠蘇散", + "readging": "とそさん", + "pos": "名詞", + "pn": -0.479861 + }, + { + "surface": "書付ける", + "readging": "かきつける", + "pos": "動詞", + "pn": -0.479863 + }, + { + "surface": "隣邦", + "readging": "りんぽう", + "pos": "名詞", + "pn": -0.479865 + }, + { + "surface": "山芋", + "readging": "やまいも", + "pos": "名詞", + "pn": -0.479885 + }, + { + "surface": "バチルス", + "readging": "バチルス", + "pos": "名詞", + "pn": -0.479892 + }, + { + "surface": "淡湖", + "readging": "たんこ", + "pos": "名詞", + "pn": -0.479895 + }, + { + "surface": "小我", + "readging": "しょうが", + "pos": "名詞", + "pn": -0.479915 + }, + { + "surface": "荷崩れ", + "readging": "にくずれ", + "pos": "名詞", + "pn": -0.479923 + }, + { + "surface": "差等", + "readging": "さとう", + "pos": "名詞", + "pn": -0.479927 + }, + { + "surface": "群千鳥", + "readging": "むらちどり", + "pos": "名詞", + "pn": -0.479934 + }, + { + "surface": "水球", + "readging": "すいきゅう", + "pos": "名詞", + "pn": -0.479937 + }, + { + "surface": "湯巻", + "readging": "ゆまき", + "pos": "名詞", + "pn": -0.479959 + }, + { + "surface": "横車", + "readging": "よこぐるま", + "pos": "名詞", + "pn": -0.479961 + }, + { + "surface": "最早", + "readging": "もはや", + "pos": "副詞", + "pn": -0.479961 + }, + { + "surface": "一足違い", + "readging": "ひとあしちがい", + "pos": "名詞", + "pn": -0.479981 + }, + { + "surface": "ランキング", + "readging": "ランキング", + "pos": "名詞", + "pn": -0.480012 + }, + { + "surface": "祖母", + "readging": "そぼ", + "pos": "名詞", + "pn": -0.480014 + }, + { + "surface": "針子", + "readging": "はりこ", + "pos": "名詞", + "pn": -0.480104 + }, + { + "surface": "見過す", + "readging": "みすごす", + "pos": "動詞", + "pn": -0.480114 + }, + { + "surface": "差掛る", + "readging": "さしかかる", + "pos": "動詞", + "pn": -0.480129 + }, + { + "surface": "マロニエ", + "readging": "マロニエ", + "pos": "名詞", + "pn": -0.480136 + }, + { + "surface": "鶏頭", + "readging": "けいとう", + "pos": "名詞", + "pn": -0.480142 + }, + { + "surface": "ゾンデ", + "readging": "ゾンデ", + "pos": "名詞", + "pn": -0.480144 + }, + { + "surface": "押し込める", + "readging": "おしこめる", + "pos": "動詞", + "pn": -0.480169 + }, + { + "surface": "率いる", + "readging": "ひきいる", + "pos": "動詞", + "pn": -0.480185 + }, + { + "surface": "焼石膏", + "readging": "しょうせっこう", + "pos": "名詞", + "pn": -0.480188 + }, + { + "surface": "僧家", + "readging": "そうけ", + "pos": "名詞", + "pn": -0.480214 + }, + { + "surface": "斬奸状", + "readging": "ざんかんじょう", + "pos": "名詞", + "pn": -0.480225 + }, + { + "surface": "辛うじて", + "readging": "かろうじて", + "pos": "副詞", + "pn": -0.480243 + }, + { + "surface": "ぼうっと", + "readging": "ぼうっと", + "pos": "副詞", + "pn": -0.480277 + }, + { + "surface": "名字帯刀御免", + "readging": "みょうじたいとうごめん", + "pos": "名詞", + "pn": -0.480285 + }, + { + "surface": "毎朝", + "readging": "まいあさ", + "pos": "名詞", + "pn": -0.480316 + }, + { + "surface": "毒蛾", + "readging": "どくが", + "pos": "名詞", + "pn": -0.480354 + }, + { + "surface": "鼾", + "readging": "いびき", + "pos": "名詞", + "pn": -0.480368 + }, + { + "surface": "芽接ぎ", + "readging": "めつぎ", + "pos": "名詞", + "pn": -0.48037 + }, + { + "surface": "下拵え", + "readging": "したごしらえ", + "pos": "名詞", + "pn": -0.480375 + }, + { + "surface": "提案", + "readging": "ていあん", + "pos": "名詞", + "pn": -0.480376 + }, + { + "surface": "干割れ", + "readging": "ひわれ", + "pos": "名詞", + "pn": -0.480384 + }, + { + "surface": "偶感", + "readging": "ぐうかん", + "pos": "名詞", + "pn": -0.48039 + }, + { + "surface": "金色", + "readging": "こんじき", + "pos": "名詞", + "pn": -0.480406 + }, + { + "surface": "軟着陸", + "readging": "なんちゃくりく", + "pos": "名詞", + "pn": -0.480449 + }, + { + "surface": "鎮火", + "readging": "ちんか", + "pos": "名詞", + "pn": -0.480464 + }, + { + "surface": "崎", + "readging": "さき", + "pos": "名詞", + "pn": -0.480486 + }, + { + "surface": "撤収", + "readging": "てっしゅう", + "pos": "名詞", + "pn": -0.480507 + }, + { + "surface": "半時", + "readging": "はんとき", + "pos": "名詞", + "pn": -0.480508 + }, + { + "surface": "トリル", + "readging": "トリル", + "pos": "名詞", + "pn": -0.480517 + }, + { + "surface": "拭込む", + "readging": "ふきこむ", + "pos": "動詞", + "pn": -0.480529 + }, + { + "surface": "警蹕", + "readging": "けいひつ", + "pos": "名詞", + "pn": -0.480541 + }, + { + "surface": "雑件", + "readging": "ざっけん", + "pos": "名詞", + "pn": -0.48056 + }, + { + "surface": "総状", + "readging": "そうじょう", + "pos": "名詞", + "pn": -0.480568 + }, + { + "surface": "日当", + "readging": "にっとう", + "pos": "名詞", + "pn": -0.480591 + }, + { + "surface": "安全装置", + "readging": "あんぜんそうち", + "pos": "名詞", + "pn": -0.480594 + }, + { + "surface": "眼孔", + "readging": "がんこう", + "pos": "名詞", + "pn": -0.480607 + }, + { + "surface": "斜文", + "readging": "しゃもん", + "pos": "名詞", + "pn": -0.480613 + }, + { + "surface": "筬", + "readging": "おさ", + "pos": "名詞", + "pn": -0.480618 + }, + { + "surface": "幼君", + "readging": "ようくん", + "pos": "名詞", + "pn": -0.480632 + }, + { + "surface": "四本柱", + "readging": "しほんばしら", + "pos": "名詞", + "pn": -0.48064 + }, + { + "surface": "居室", + "readging": "きょしつ", + "pos": "名詞", + "pn": -0.480665 + }, + { + "surface": "鶸", + "readging": "ひわ", + "pos": "名詞", + "pn": -0.480666 + }, + { + "surface": "視力", + "readging": "しりょく", + "pos": "名詞", + "pn": -0.480674 + }, + { + "surface": "古物", + "readging": "こぶつ", + "pos": "名詞", + "pn": -0.480678 + }, + { + "surface": "添乗", + "readging": "てんじょう", + "pos": "名詞", + "pn": -0.480689 + }, + { + "surface": "研", + "readging": "けん", + "pos": "名詞", + "pn": -0.480694 + }, + { + "surface": "酌婦", + "readging": "しゃくふ", + "pos": "名詞", + "pn": -0.480695 + }, + { + "surface": "小倉", + "readging": "こくら", + "pos": "名詞", + "pn": -0.480737 + }, + { + "surface": "荒海", + "readging": "あらうみ", + "pos": "名詞", + "pn": -0.480742 + }, + { + "surface": "空白", + "readging": "くうはく", + "pos": "名詞", + "pn": -0.48075 + }, + { + "surface": "ライター", + "readging": "ライター", + "pos": "名詞", + "pn": -0.480753 + }, + { + "surface": "内玄関", + "readging": "うちげんかん", + "pos": "名詞", + "pn": -0.480777 + }, + { + "surface": "丸木舟", + "readging": "まるきぶね", + "pos": "名詞", + "pn": -0.480779 + }, + { + "surface": "十字架", + "readging": "じゅうじか", + "pos": "名詞", + "pn": -0.480794 + }, + { + "surface": "コイル", + "readging": "コイル", + "pos": "名詞", + "pn": -0.480811 + }, + { + "surface": "海辺", + "readging": "うみべ", + "pos": "名詞", + "pn": -0.480813 + }, + { + "surface": "スクラップ", + "readging": "スクラップブック", + "pos": "名詞", + "pn": -0.480818 + }, + { + "surface": "唐草", + "readging": "からくさ", + "pos": "名詞", + "pn": -0.480826 + }, + { + "surface": "焼鏝", + "readging": "やきごて", + "pos": "名詞", + "pn": -0.480848 + }, + { + "surface": "見通し", + "readging": "みとおし", + "pos": "名詞", + "pn": -0.480857 + }, + { + "surface": "旅嚢", + "readging": "りょのう", + "pos": "名詞", + "pn": -0.480869 + }, + { + "surface": "前世", + "readging": "ぜんせい", + "pos": "名詞", + "pn": -0.480887 + }, + { + "surface": "穀", + "readging": "こく", + "pos": "名詞", + "pn": -0.48089 + }, + { + "surface": "傀儡師", + "readging": "かいらいし", + "pos": "名詞", + "pn": -0.48091 + }, + { + "surface": "粗密", + "readging": "そみつ", + "pos": "名詞", + "pn": -0.480942 + }, + { + "surface": "院", + "readging": "いん", + "pos": "名詞", + "pn": -0.480963 + }, + { + "surface": "多様", + "readging": "たよう", + "pos": "名詞", + "pn": -0.480971 + }, + { + "surface": "殿様芸", + "readging": "とのさまげい", + "pos": "名詞", + "pn": -0.48098 + }, + { + "surface": "回読", + "readging": "かいどく", + "pos": "名詞", + "pn": -0.480986 + }, + { + "surface": "ひらりと", + "readging": "ひらりと", + "pos": "副詞", + "pn": -0.480991 + }, + { + "surface": "顔面", + "readging": "がんめん", + "pos": "名詞", + "pn": -0.480996 + }, + { + "surface": "潜心", + "readging": "せんしん", + "pos": "名詞", + "pn": -0.481002 + }, + { + "surface": "心事", + "readging": "しんじ", + "pos": "名詞", + "pn": -0.481012 + }, + { + "surface": "童心", + "readging": "どうしん", + "pos": "名詞", + "pn": -0.481039 + }, + { + "surface": "蕨", + "readging": "わらび", + "pos": "名詞", + "pn": -0.48105 + }, + { + "surface": "閲する", + "readging": "けみする", + "pos": "動詞", + "pn": -0.481063 + }, + { + "surface": "蝸牛", + "readging": "かぎゅう", + "pos": "名詞", + "pn": -0.481073 + }, + { + "surface": "白鳥", + "readging": "はくちょう", + "pos": "名詞", + "pn": -0.481081 + }, + { + "surface": "激変", + "readging": "げきへん", + "pos": "名詞", + "pn": -0.4811 + }, + { + "surface": "金棒", + "readging": "かなぼう", + "pos": "名詞", + "pn": -0.481102 + }, + { + "surface": "スケート", + "readging": "スケート", + "pos": "名詞", + "pn": -0.48113 + }, + { + "surface": "クレヨン", + "readging": "クレヨン", + "pos": "名詞", + "pn": -0.48114 + }, + { + "surface": "ボギー車", + "readging": "ボギーしゃ", + "pos": "名詞", + "pn": -0.481148 + }, + { + "surface": "明晩", + "readging": "みょうばん", + "pos": "名詞", + "pn": -0.481158 + }, + { + "surface": "脳天", + "readging": "のうてん", + "pos": "名詞", + "pn": -0.481173 + }, + { + "surface": "すぱすぱ", + "readging": "すぱすぱ", + "pos": "副詞", + "pn": -0.481179 + }, + { + "surface": "柚子", + "readging": "ゆず", + "pos": "名詞", + "pn": -0.481196 + }, + { + "surface": "ターミナル", + "readging": "ターミナル", + "pos": "名詞", + "pn": -0.481242 + }, + { + "surface": "昼顔", + "readging": "ひるがお", + "pos": "名詞", + "pn": -0.481251 + }, + { + "surface": "光り物", + "readging": "ひかりもの", + "pos": "名詞", + "pn": -0.481262 + }, + { + "surface": "尺取虫", + "readging": "しゃくとりむし", + "pos": "名詞", + "pn": -0.481265 + }, + { + "surface": "酢貝", + "readging": "すがい", + "pos": "名詞", + "pn": -0.481302 + }, + { + "surface": "陰電子", + "readging": "いんでんし", + "pos": "名詞", + "pn": -0.481302 + }, + { + "surface": "ニックネーム", + "readging": "ニックネーム", + "pos": "名詞", + "pn": -0.481321 + }, + { + "surface": "一環", + "readging": "いっかん", + "pos": "名詞", + "pn": -0.481328 + }, + { + "surface": "滑り込む", + "readging": "すべりこむ", + "pos": "動詞", + "pn": -0.481366 + }, + { + "surface": "号", + "readging": "ごう", + "pos": "名詞", + "pn": -0.48137 + }, + { + "surface": "足軽", + "readging": "あしがる", + "pos": "名詞", + "pn": -0.481378 + }, + { + "surface": "理性", + "readging": "りせい", + "pos": "名詞", + "pn": -0.481379 + }, + { + "surface": "還元", + "readging": "かんげん", + "pos": "名詞", + "pn": -0.481407 + }, + { + "surface": "反訳", + "readging": "はんやく", + "pos": "名詞", + "pn": -0.481441 + }, + { + "surface": "満干", + "readging": "みちひ", + "pos": "名詞", + "pn": -0.481445 + }, + { + "surface": "ドリル", + "readging": "ドリル", + "pos": "名詞", + "pn": -0.481453 + }, + { + "surface": "切論", + "readging": "せつろん", + "pos": "名詞", + "pn": -0.481458 + }, + { + "surface": "螺子切", + "readging": "ねじきり", + "pos": "名詞", + "pn": -0.481467 + }, + { + "surface": "踏台", + "readging": "ふみだい", + "pos": "名詞", + "pn": -0.481484 + }, + { + "surface": "一審", + "readging": "いっしん", + "pos": "名詞", + "pn": -0.481513 + }, + { + "surface": "幹部", + "readging": "かんぶ", + "pos": "名詞", + "pn": -0.48153 + }, + { + "surface": "別途", + "readging": "べっと", + "pos": "副詞", + "pn": -0.481561 + }, + { + "surface": "抜染", + "readging": "ばっせん", + "pos": "名詞", + "pn": -0.481578 + }, + { + "surface": "割台詞", + "readging": "わりぜりふ", + "pos": "名詞", + "pn": -0.481603 + }, + { + "surface": "歯痛", + "readging": "はいた", + "pos": "名詞", + "pn": -0.48161 + }, + { + "surface": "加算", + "readging": "かさん", + "pos": "名詞", + "pn": -0.481615 + }, + { + "surface": "人工呼吸", + "readging": "じんこうこきゅう", + "pos": "名詞", + "pn": -0.481619 + }, + { + "surface": "笑話", + "readging": "しょうわ", + "pos": "名詞", + "pn": -0.481628 + }, + { + "surface": "ツベルクリン", + "readging": "ツベルクリン", + "pos": "名詞", + "pn": -0.481636 + }, + { + "surface": "訳合", + "readging": "わけあい", + "pos": "名詞", + "pn": -0.481637 + }, + { + "surface": "銃猟", + "readging": "じゅうりょう", + "pos": "名詞", + "pn": -0.481695 + }, + { + "surface": "論結", + "readging": "ろんけつ", + "pos": "名詞", + "pn": -0.481697 + }, + { + "surface": "諒する", + "readging": "りょうする", + "pos": "動詞", + "pn": -0.481704 + }, + { + "surface": "十六大角豆", + "readging": "じゅうろくささげ", + "pos": "名詞", + "pn": -0.481762 + }, + { + "surface": "握り", + "readging": "にぎり", + "pos": "名詞", + "pn": -0.481774 + }, + { + "surface": "町村", + "readging": "ちょうそん", + "pos": "名詞", + "pn": -0.481777 + }, + { + "surface": "砂地", + "readging": "すなち", + "pos": "名詞", + "pn": -0.481777 + }, + { + "surface": "清算", + "readging": "せいさん", + "pos": "名詞", + "pn": -0.481788 + }, + { + "surface": "逆手", + "readging": "ぎゃくて", + "pos": "名詞", + "pn": -0.481807 + }, + { + "surface": "帰り車", + "readging": "かえりぐるま", + "pos": "名詞", + "pn": -0.481808 + }, + { + "surface": "滑石", + "readging": "かっせき", + "pos": "名詞", + "pn": -0.481815 + }, + { + "surface": "座中", + "readging": "ざちゅう", + "pos": "名詞", + "pn": -0.481826 + }, + { + "surface": "白樺", + "readging": "しらかば", + "pos": "名詞", + "pn": -0.481832 + }, + { + "surface": "圧縮", + "readging": "あっしゅく", + "pos": "名詞", + "pn": -0.481839 + }, + { + "surface": "青銅", + "readging": "せいどう", + "pos": "名詞", + "pn": -0.481855 + }, + { + "surface": "さらけ出す", + "readging": "さらけだす", + "pos": "動詞", + "pn": -0.481869 + }, + { + "surface": "見地", + "readging": "けんち", + "pos": "名詞", + "pn": -0.481871 + }, + { + "surface": "腰蓑", + "readging": "こしみの", + "pos": "名詞", + "pn": -0.481872 + }, + { + "surface": "振舞", + "readging": "ふるまい", + "pos": "名詞", + "pn": -0.481882 + }, + { + "surface": "別宅", + "readging": "べったく", + "pos": "名詞", + "pn": -0.481889 + }, + { + "surface": "まるっきり", + "readging": "まるっきり", + "pos": "副詞", + "pn": -0.481896 + }, + { + "surface": "細字", + "readging": "さいじ", + "pos": "名詞", + "pn": -0.481913 + }, + { + "surface": "丸材", + "readging": "まるざい", + "pos": "名詞", + "pn": -0.48195 + }, + { + "surface": "月影", + "readging": "つきかげ", + "pos": "名詞", + "pn": -0.481954 + }, + { + "surface": "麦芽", + "readging": "ばくが", + "pos": "名詞", + "pn": -0.481965 + }, + { + "surface": "旗色", + "readging": "はたいろ", + "pos": "名詞", + "pn": -0.481966 + }, + { + "surface": "罨法", + "readging": "あんぽう", + "pos": "名詞", + "pn": -0.481985 + }, + { + "surface": "海水浴", + "readging": "かいすいよく", + "pos": "名詞", + "pn": -0.481991 + }, + { + "surface": "黄鶲", + "readging": "きびたき", + "pos": "名詞", + "pn": -0.481993 + }, + { + "surface": "パピルス", + "readging": "パピルス", + "pos": "名詞", + "pn": -0.482039 + }, + { + "surface": "輻射", + "readging": "ふくしゃ", + "pos": "名詞", + "pn": -0.482043 + }, + { + "surface": "家事", + "readging": "かじ", + "pos": "名詞", + "pn": -0.482047 + }, + { + "surface": "頼信紙", + "readging": "らいしんし", + "pos": "名詞", + "pn": -0.482048 + }, + { + "surface": "拳法", + "readging": "けんぽう", + "pos": "名詞", + "pn": -0.482059 + }, + { + "surface": "忘失", + "readging": "ぼうしつ", + "pos": "名詞", + "pn": -0.482069 + }, + { + "surface": "走高跳", + "readging": "はしりたかとび", + "pos": "名詞", + "pn": -0.482079 + }, + { + "surface": "山高帽子", + "readging": "やまたかぼうし", + "pos": "名詞", + "pn": -0.482095 + }, + { + "surface": "馬追虫", + "readging": "うまおい", + "pos": "名詞", + "pn": -0.48211 + }, + { + "surface": "迂回", + "readging": "うかい", + "pos": "名詞", + "pn": -0.482125 + }, + { + "surface": "統括", + "readging": "とうかつ", + "pos": "名詞", + "pn": -0.482128 + }, + { + "surface": "机辺", + "readging": "きへん", + "pos": "名詞", + "pn": -0.482135 + }, + { + "surface": "金玉糖", + "readging": "きんぎょくとう", + "pos": "名詞", + "pn": -0.482136 + }, + { + "surface": "空釣", + "readging": "からづり", + "pos": "名詞", + "pn": -0.482147 + }, + { + "surface": "戦局", + "readging": "せんきょく", + "pos": "名詞", + "pn": -0.482149 + }, + { + "surface": "プリズム", + "readging": "プリズム", + "pos": "名詞", + "pn": -0.482171 + }, + { + "surface": "潮路", + "readging": "しおじ", + "pos": "名詞", + "pn": -0.482173 + }, + { + "surface": "白頭", + "readging": "はくとう", + "pos": "名詞", + "pn": -0.482183 + }, + { + "surface": "破談", + "readging": "はだん", + "pos": "名詞", + "pn": -0.482196 + }, + { + "surface": "脳下垂体", + "readging": "のうかすいたい", + "pos": "名詞", + "pn": -0.482198 + }, + { + "surface": "端山", + "readging": "はやま", + "pos": "名詞", + "pn": -0.482211 + }, + { + "surface": "彫金", + "readging": "ちょうきん", + "pos": "名詞", + "pn": -0.482212 + }, + { + "surface": "岸壁", + "readging": "がんぺき", + "pos": "名詞", + "pn": -0.482214 + }, + { + "surface": "保つ", + "readging": "たもつ", + "pos": "動詞", + "pn": -0.482217 + }, + { + "surface": "傍流", + "readging": "ぼうりゅう", + "pos": "名詞", + "pn": -0.482219 + }, + { + "surface": "吸物", + "readging": "すいもの", + "pos": "名詞", + "pn": -0.482242 + }, + { + "surface": "俸禄", + "readging": "ほうろく", + "pos": "名詞", + "pn": -0.482245 + }, + { + "surface": "手透き", + "readging": "てすき", + "pos": "名詞", + "pn": -0.482245 + }, + { + "surface": "剥き出し", + "readging": "むきだし", + "pos": "名詞", + "pn": -0.48225 + }, + { + "surface": "肩幅", + "readging": "かたはば", + "pos": "名詞", + "pn": -0.482251 + }, + { + "surface": "揚り屋", + "readging": "あがりや", + "pos": "名詞", + "pn": -0.482259 + }, + { + "surface": "出向", + "readging": "しゅっこう", + "pos": "名詞", + "pn": -0.482261 + }, + { + "surface": "ヒドラ", + "readging": "ヒドラ", + "pos": "名詞", + "pn": -0.482266 + }, + { + "surface": "兎の毛", + "readging": "うのけ", + "pos": "名詞", + "pn": -0.482318 + }, + { + "surface": "後後", + "readging": "のちのち", + "pos": "名詞", + "pn": -0.48232 + }, + { + "surface": "伸長", + "readging": "しんちょう", + "pos": "名詞", + "pn": -0.482329 + }, + { + "surface": "草稿", + "readging": "そうこう", + "pos": "名詞", + "pn": -0.482377 + }, + { + "surface": "水害", + "readging": "すいがい", + "pos": "名詞", + "pn": -0.482385 + }, + { + "surface": "上の空", + "readging": "うわのそら", + "pos": "名詞", + "pn": -0.482391 + }, + { + "surface": "雲呑", + "readging": "ワンタン", + "pos": "名詞", + "pn": -0.482398 + }, + { + "surface": "検挙", + "readging": "けんきょ", + "pos": "名詞", + "pn": -0.482406 + }, + { + "surface": "陶画", + "readging": "とうが", + "pos": "名詞", + "pn": -0.482409 + }, + { + "surface": "御神灯", + "readging": "ごしんとう", + "pos": "名詞", + "pn": -0.482435 + }, + { + "surface": "立話", + "readging": "たちばなし", + "pos": "名詞", + "pn": -0.482447 + }, + { + "surface": "石筆", + "readging": "せきひつ", + "pos": "名詞", + "pn": -0.482456 + }, + { + "surface": "ウイスキー", + "readging": "ウイスキー", + "pos": "名詞", + "pn": -0.482468 + }, + { + "surface": "ふっと", + "readging": "ふっと", + "pos": "副詞", + "pn": -0.482469 + }, + { + "surface": "虎杖", + "readging": "いたどり", + "pos": "名詞", + "pn": -0.482498 + }, + { + "surface": "傍注", + "readging": "ぼうちゅう", + "pos": "名詞", + "pn": -0.482514 + }, + { + "surface": "幻影", + "readging": "げんえい", + "pos": "名詞", + "pn": -0.482524 + }, + { + "surface": "際涯", + "readging": "さいがい", + "pos": "名詞", + "pn": -0.482536 + }, + { + "surface": "口八丁手八丁", + "readging": "くちはっちょうてはっちょう", + "pos": "名詞", + "pn": -0.482569 + }, + { + "surface": "アスパラガス", + "readging": "アスパラガス", + "pos": "名詞", + "pn": -0.482578 + }, + { + "surface": "綿帽子", + "readging": "わたぼうし", + "pos": "名詞", + "pn": -0.482588 + }, + { + "surface": "エプロン", + "readging": "エプロン", + "pos": "名詞", + "pn": -0.482619 + }, + { + "surface": "倭", + "readging": "わ", + "pos": "名詞", + "pn": -0.482634 + }, + { + "surface": "屑鉄", + "readging": "くずてつ", + "pos": "名詞", + "pn": -0.482652 + }, + { + "surface": "穂状", + "readging": "すいじょう", + "pos": "名詞", + "pn": -0.482679 + }, + { + "surface": "峻嶺", + "readging": "しゅんれい", + "pos": "名詞", + "pn": -0.482724 + }, + { + "surface": "遺伝", + "readging": "いでん", + "pos": "名詞", + "pn": -0.48277 + }, + { + "surface": "訂", + "readging": "てい", + "pos": "名詞", + "pn": -0.482774 + }, + { + "surface": "縁海", + "readging": "えんかい", + "pos": "名詞", + "pn": -0.482777 + }, + { + "surface": "潮流", + "readging": "ちょうりゅう", + "pos": "名詞", + "pn": -0.482779 + }, + { + "surface": "煎餅布団", + "readging": "せんべいぶとん", + "pos": "名詞", + "pn": -0.48283 + }, + { + "surface": "首桶", + "readging": "くびおけ", + "pos": "名詞", + "pn": -0.482832 + }, + { + "surface": "無き者", + "readging": "なきもの", + "pos": "名詞", + "pn": -0.482843 + }, + { + "surface": "側目", + "readging": "そばめ", + "pos": "名詞", + "pn": -0.482848 + }, + { + "surface": "懐抱", + "readging": "かいほう", + "pos": "名詞", + "pn": -0.482863 + }, + { + "surface": "比翼塚", + "readging": "ひよくづか", + "pos": "名詞", + "pn": -0.482876 + }, + { + "surface": "曾孫", + "readging": "そうそん", + "pos": "名詞", + "pn": -0.482887 + }, + { + "surface": "散弾", + "readging": "さんだん", + "pos": "名詞", + "pn": -0.482887 + }, + { + "surface": "余", + "readging": "よ", + "pos": "名詞", + "pn": -0.482916 + }, + { + "surface": "弁膜", + "readging": "べんまく", + "pos": "名詞", + "pn": -0.482917 + }, + { + "surface": "濾紙", + "readging": "こしがみ", + "pos": "名詞", + "pn": -0.482926 + }, + { + "surface": "太陽系", + "readging": "たいようけい", + "pos": "名詞", + "pn": -0.482936 + }, + { + "surface": "蛍烏賊", + "readging": "ほたるいか", + "pos": "名詞", + "pn": -0.482938 + }, + { + "surface": "次次", + "readging": "つぎつぎ", + "pos": "名詞", + "pn": -0.482941 + }, + { + "surface": "海苔", + "readging": "のり", + "pos": "名詞", + "pn": -0.482949 + }, + { + "surface": "軽犯罪", + "readging": "けいはんざい", + "pos": "名詞", + "pn": -0.48297 + }, + { + "surface": "不行儀", + "readging": "ふぎょうぎ", + "pos": "名詞", + "pn": -0.482997 + }, + { + "surface": "ピラフ", + "readging": "ピラフ", + "pos": "名詞", + "pn": -0.48301 + }, + { + "surface": "常住不断", + "readging": "じょうじゅうふだん", + "pos": "名詞", + "pn": -0.483016 + }, + { + "surface": "一纏め", + "readging": "ひとまとめ", + "pos": "名詞", + "pn": -0.483018 + }, + { + "surface": "小荷物", + "readging": "こにもつ", + "pos": "名詞", + "pn": -0.483019 + }, + { + "surface": "苜蓿", + "readging": "うまごやし", + "pos": "名詞", + "pn": -0.483025 + }, + { + "surface": "師走", + "readging": "しわす", + "pos": "名詞", + "pn": -0.483031 + }, + { + "surface": "容疑", + "readging": "ようぎ", + "pos": "名詞", + "pn": -0.483053 + }, + { + "surface": "侍坐", + "readging": "じざ", + "pos": "名詞", + "pn": -0.483072 + }, + { + "surface": "光沢", + "readging": "こうたく", + "pos": "名詞", + "pn": -0.483086 + }, + { + "surface": "収縮", + "readging": "しゅうしゅく", + "pos": "名詞", + "pn": -0.48312 + }, + { + "surface": "起伏", + "readging": "きふく", + "pos": "名詞", + "pn": -0.483127 + }, + { + "surface": "見付かる", + "readging": "みつかる", + "pos": "動詞", + "pn": -0.483127 + }, + { + "surface": "プリーツ", + "readging": "プリーツ", + "pos": "名詞", + "pn": -0.483151 + }, + { + "surface": "流動", + "readging": "りゅうどう", + "pos": "名詞", + "pn": -0.483161 + }, + { + "surface": "北斗星", + "readging": "ほくとせい", + "pos": "名詞", + "pn": -0.483167 + }, + { + "surface": "引縄", + "readging": "ひきなわ", + "pos": "名詞", + "pn": -0.483175 + }, + { + "surface": "辰", + "readging": "たつ", + "pos": "名詞", + "pn": -0.483184 + }, + { + "surface": "肥後守", + "readging": "ひごのかみ", + "pos": "名詞", + "pn": -0.483207 + }, + { + "surface": "夜警", + "readging": "やけい", + "pos": "名詞", + "pn": -0.483214 + }, + { + "surface": "水入り", + "readging": "みずいり", + "pos": "名詞", + "pn": -0.483228 + }, + { + "surface": "心底", + "readging": "しんてい", + "pos": "名詞", + "pn": -0.483261 + }, + { + "surface": "石庭", + "readging": "せきてい", + "pos": "名詞", + "pn": -0.483264 + }, + { + "surface": "節榑立つ", + "readging": "ふしくれだつ", + "pos": "動詞", + "pn": -0.483271 + }, + { + "surface": "山猿", + "readging": "やまざる", + "pos": "名詞", + "pn": -0.483277 + }, + { + "surface": "調子者", + "readging": "ちょうしもの", + "pos": "名詞", + "pn": -0.483313 + }, + { + "surface": "おはしょり", + "readging": "おはしょり", + "pos": "名詞", + "pn": -0.483339 + }, + { + "surface": "産室", + "readging": "さんしつ", + "pos": "名詞", + "pn": -0.483364 + }, + { + "surface": "種馬", + "readging": "たねうま", + "pos": "名詞", + "pn": -0.48337 + }, + { + "surface": "がっかり", + "readging": "がっかり", + "pos": "副詞", + "pn": -0.483386 + }, + { + "surface": "取潰す", + "readging": "とりつぶす", + "pos": "動詞", + "pn": -0.483397 + }, + { + "surface": "脚本", + "readging": "きゃくほん", + "pos": "名詞", + "pn": -0.483403 + }, + { + "surface": "ぎっしり", + "readging": "ぎっしり", + "pos": "副詞", + "pn": -0.483438 + }, + { + "surface": "無印", + "readging": "むじるし", + "pos": "名詞", + "pn": -0.483458 + }, + { + "surface": "夜鷹蕎麦", + "readging": "よたかそば", + "pos": "名詞", + "pn": -0.483504 + }, + { + "surface": "草屋", + "readging": "そうおく", + "pos": "名詞", + "pn": -0.483507 + }, + { + "surface": "虎の巻", + "readging": "とらのまき", + "pos": "名詞", + "pn": -0.48351 + }, + { + "surface": "クルップ", + "readging": "クルップ", + "pos": "名詞", + "pn": -0.483535 + }, + { + "surface": "転宅", + "readging": "てんたく", + "pos": "名詞", + "pn": -0.483568 + }, + { + "surface": "油状", + "readging": "ゆじょう", + "pos": "名詞", + "pn": -0.483572 + }, + { + "surface": "腰湯", + "readging": "こしゆ", + "pos": "名詞", + "pn": -0.483595 + }, + { + "surface": "海老根", + "readging": "えびね", + "pos": "名詞", + "pn": -0.483602 + }, + { + "surface": "引離す", + "readging": "ひきはなす", + "pos": "動詞", + "pn": -0.483646 + }, + { + "surface": "称する", + "readging": "しょうする", + "pos": "動詞", + "pn": -0.483672 + }, + { + "surface": "右筆", + "readging": "ゆうひつ", + "pos": "名詞", + "pn": -0.483674 + }, + { + "surface": "取乱す", + "readging": "とりみだす", + "pos": "動詞", + "pn": -0.483674 + }, + { + "surface": "アンカー", + "readging": "アンカー", + "pos": "名詞", + "pn": -0.483683 + }, + { + "surface": "女誑し", + "readging": "おんなたらし", + "pos": "名詞", + "pn": -0.483684 + }, + { + "surface": "青天白日", + "readging": "せいてんはくじつ", + "pos": "名詞", + "pn": -0.483687 + }, + { + "surface": "波の穂", + "readging": "なみのほ", + "pos": "名詞", + "pn": -0.483695 + }, + { + "surface": "器械体操", + "readging": "きかいたいそう", + "pos": "名詞", + "pn": -0.483697 + }, + { + "surface": "出来立", + "readging": "できたて", + "pos": "名詞", + "pn": -0.4837 + }, + { + "surface": "鳩信", + "readging": "きゅうしん", + "pos": "名詞", + "pn": -0.48375 + }, + { + "surface": "拙詠", + "readging": "せつえい", + "pos": "名詞", + "pn": -0.483751 + }, + { + "surface": "甘受", + "readging": "かんじゅ", + "pos": "名詞", + "pn": -0.483757 + }, + { + "surface": "乗っ取る", + "readging": "のっとる", + "pos": "動詞", + "pn": -0.483789 + }, + { + "surface": "連舞", + "readging": "つれまい", + "pos": "名詞", + "pn": -0.483801 + }, + { + "surface": "飛鳥", + "readging": "ひちょう", + "pos": "名詞", + "pn": -0.483824 + }, + { + "surface": "寂静", + "readging": "じゃくじょう", + "pos": "名詞", + "pn": -0.483824 + }, + { + "surface": "がらみ", + "readging": "がらみ", + "pos": "名詞", + "pn": -0.483852 + }, + { + "surface": "鶲", + "readging": "ひたき", + "pos": "名詞", + "pn": -0.483878 + }, + { + "surface": "創立", + "readging": "そうりつ", + "pos": "名詞", + "pn": -0.483891 + }, + { + "surface": "石竹", + "readging": "せきちく", + "pos": "名詞", + "pn": -0.483919 + }, + { + "surface": "お供", + "readging": "おとも", + "pos": "名詞", + "pn": -0.483921 + }, + { + "surface": "在勤", + "readging": "ざいきん", + "pos": "名詞", + "pn": -0.483929 + }, + { + "surface": "穀粉", + "readging": "こくふん", + "pos": "名詞", + "pn": -0.483931 + }, + { + "surface": "爆薬", + "readging": "ばくやく", + "pos": "名詞", + "pn": -0.483932 + }, + { + "surface": "分ち", + "readging": "わかち", + "pos": "名詞", + "pn": -0.483935 + }, + { + "surface": "ヘア", + "readging": "ヘア", + "pos": "名詞", + "pn": -0.483955 + }, + { + "surface": "千姿万態", + "readging": "せんしばんたい", + "pos": "名詞", + "pn": -0.483976 + }, + { + "surface": "食い込む", + "readging": "くいこむ", + "pos": "動詞", + "pn": -0.483991 + }, + { + "surface": "陀羅尼", + "readging": "だらに", + "pos": "名詞", + "pn": -0.484006 + }, + { + "surface": "呼吸器", + "readging": "こきゅうき", + "pos": "名詞", + "pn": -0.48401 + }, + { + "surface": "一本槍", + "readging": "いっぽんやり", + "pos": "名詞", + "pn": -0.484035 + }, + { + "surface": "取縋る", + "readging": "とりすがる", + "pos": "動詞", + "pn": -0.48405 + }, + { + "surface": "火口", + "readging": "ひぐち", + "pos": "名詞", + "pn": -0.484059 + }, + { + "surface": "中手", + "readging": "なかて", + "pos": "名詞", + "pn": -0.484069 + }, + { + "surface": "木枯し", + "readging": "こがらし", + "pos": "名詞", + "pn": -0.484089 + }, + { + "surface": "椎", + "readging": "つい", + "pos": "名詞", + "pn": -0.484103 + }, + { + "surface": "気温", + "readging": "きおん", + "pos": "名詞", + "pn": -0.484107 + }, + { + "surface": "蛇紋", + "readging": "じゃもん", + "pos": "名詞", + "pn": -0.48412 + }, + { + "surface": "金盥", + "readging": "かなだらい", + "pos": "名詞", + "pn": -0.484122 + }, + { + "surface": "色彩", + "readging": "しきさい", + "pos": "名詞", + "pn": -0.48413 + }, + { + "surface": "懐中", + "readging": "かいちゅう", + "pos": "名詞", + "pn": -0.48414 + }, + { + "surface": "毛筆", + "readging": "もうひつ", + "pos": "名詞", + "pn": -0.484146 + }, + { + "surface": "穿孔", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.484148 + }, + { + "surface": "御者", + "readging": "ぎょしゃ", + "pos": "名詞", + "pn": -0.484153 + }, + { + "surface": "明記", + "readging": "めいき", + "pos": "名詞", + "pn": -0.484178 + }, + { + "surface": "もたつく", + "readging": "もたつく", + "pos": "動詞", + "pn": -0.484205 + }, + { + "surface": "瀬戸", + "readging": "せと", + "pos": "名詞", + "pn": -0.484228 + }, + { + "surface": "風知草", + "readging": "かぜしりぐさ", + "pos": "名詞", + "pn": -0.484232 + }, + { + "surface": "晩冬", + "readging": "ばんとう", + "pos": "名詞", + "pn": -0.484255 + }, + { + "surface": "塞く", + "readging": "せく", + "pos": "動詞", + "pn": -0.48428 + }, + { + "surface": "挽歌", + "readging": "ばんか", + "pos": "名詞", + "pn": -0.484287 + }, + { + "surface": "戦火", + "readging": "せんか", + "pos": "名詞", + "pn": -0.484293 + }, + { + "surface": "ブレーキ", + "readging": "ブレーキ", + "pos": "名詞", + "pn": -0.484313 + }, + { + "surface": "おさおさ", + "readging": "おさおさ", + "pos": "副詞", + "pn": -0.484322 + }, + { + "surface": "紙巻", + "readging": "かみまき", + "pos": "名詞", + "pn": -0.484332 + }, + { + "surface": "堅い", + "readging": "かたい", + "pos": "形容詞", + "pn": -0.484352 + }, + { + "surface": "雑踏", + "readging": "ざっとう", + "pos": "名詞", + "pn": -0.484366 + }, + { + "surface": "痛論", + "readging": "つうろん", + "pos": "名詞", + "pn": -0.484372 + }, + { + "surface": "一匹", + "readging": "いっぴき", + "pos": "名詞", + "pn": -0.484389 + }, + { + "surface": "自恃", + "readging": "じじ", + "pos": "名詞", + "pn": -0.484418 + }, + { + "surface": "幕開き", + "readging": "まくあき", + "pos": "名詞", + "pn": -0.484462 + }, + { + "surface": "隷属", + "readging": "れいぞく", + "pos": "名詞", + "pn": -0.484493 + }, + { + "surface": "食言", + "readging": "しょくげん", + "pos": "名詞", + "pn": -0.4845 + }, + { + "surface": "橘", + "readging": "きつ", + "pos": "名詞", + "pn": -0.484526 + }, + { + "surface": "大麻", + "readging": "たいま", + "pos": "名詞", + "pn": -0.484533 + }, + { + "surface": "プラム", + "readging": "プラム", + "pos": "名詞", + "pn": -0.484535 + }, + { + "surface": "冷奴", + "readging": "ひややっこ", + "pos": "名詞", + "pn": -0.484552 + }, + { + "surface": "油差", + "readging": "あぶらさし", + "pos": "名詞", + "pn": -0.484556 + }, + { + "surface": "燭", + "readging": "しょく", + "pos": "名詞", + "pn": -0.484601 + }, + { + "surface": "虎視", + "readging": "こし", + "pos": "名詞", + "pn": -0.484626 + }, + { + "surface": "黒目", + "readging": "くろめ", + "pos": "名詞", + "pn": -0.484627 + }, + { + "surface": "謡言", + "readging": "ようげん", + "pos": "名詞", + "pn": -0.484629 + }, + { + "surface": "義足", + "readging": "ぎそく", + "pos": "名詞", + "pn": -0.484632 + }, + { + "surface": "献立", + "readging": "こんだて", + "pos": "名詞", + "pn": -0.48464 + }, + { + "surface": "消灯", + "readging": "しょうとう", + "pos": "名詞", + "pn": -0.484643 + }, + { + "surface": "妥協", + "readging": "だきょう", + "pos": "名詞", + "pn": -0.484658 + }, + { + "surface": "政情", + "readging": "せいじょう", + "pos": "名詞", + "pn": -0.484666 + }, + { + "surface": "水鳥", + "readging": "みずとり", + "pos": "名詞", + "pn": -0.484667 + }, + { + "surface": "稔", + "readging": "ねん", + "pos": "名詞", + "pn": -0.484719 + }, + { + "surface": "数珠繋ぎ", + "readging": "じゅずつなぎ", + "pos": "名詞", + "pn": -0.484733 + }, + { + "surface": "偏在", + "readging": "へんざい", + "pos": "名詞", + "pn": -0.484738 + }, + { + "surface": "七つ", + "readging": "ななつ", + "pos": "名詞", + "pn": -0.48476 + }, + { + "surface": "どうも", + "readging": "どうも", + "pos": "副詞", + "pn": -0.484764 + }, + { + "surface": "出刃包丁", + "readging": "でばぼうちょう", + "pos": "名詞", + "pn": -0.484767 + }, + { + "surface": "平", + "readging": "ひら", + "pos": "名詞", + "pn": -0.484788 + }, + { + "surface": "トラック", + "readging": "トラック", + "pos": "名詞", + "pn": -0.48481 + }, + { + "surface": "弓弦", + "readging": "ゆづる", + "pos": "名詞", + "pn": -0.484825 + }, + { + "surface": "津波", + "readging": "つなみ", + "pos": "名詞", + "pn": -0.484838 + }, + { + "surface": "ジギタリス", + "readging": "ジギタリス", + "pos": "名詞", + "pn": -0.484842 + }, + { + "surface": "扁平", + "readging": "へんぺい", + "pos": "名詞", + "pn": -0.484856 + }, + { + "surface": "臓腑", + "readging": "ぞうふ", + "pos": "名詞", + "pn": -0.484879 + }, + { + "surface": "来歴", + "readging": "らいれき", + "pos": "名詞", + "pn": -0.484881 + }, + { + "surface": "最寄り", + "readging": "もより", + "pos": "名詞", + "pn": -0.484894 + }, + { + "surface": "むかつく", + "readging": "むかつく", + "pos": "動詞", + "pn": -0.484938 + }, + { + "surface": "ディスク", + "readging": "ディスクジョッキー", + "pos": "名詞", + "pn": -0.484947 + }, + { + "surface": "煮転がし", + "readging": "にころがし", + "pos": "名詞", + "pn": -0.484954 + }, + { + "surface": "海獣", + "readging": "かいじゅう", + "pos": "名詞", + "pn": -0.484972 + }, + { + "surface": "胸郭", + "readging": "きょうかく", + "pos": "名詞", + "pn": -0.484978 + }, + { + "surface": "縁由", + "readging": "えんゆ", + "pos": "名詞", + "pn": -0.485034 + }, + { + "surface": "菖蒲酒", + "readging": "しょうぶざけ", + "pos": "名詞", + "pn": -0.485048 + }, + { + "surface": "墨色", + "readging": "すみいろ", + "pos": "名詞", + "pn": -0.48506 + }, + { + "surface": "追詰める", + "readging": "おいつめる", + "pos": "動詞", + "pn": -0.485075 + }, + { + "surface": "睡眠", + "readging": "すいみん", + "pos": "名詞", + "pn": -0.485085 + }, + { + "surface": "画筆", + "readging": "がひつ", + "pos": "名詞", + "pn": -0.485138 + }, + { + "surface": "麦芽糖", + "readging": "ばくがとう", + "pos": "名詞", + "pn": -0.485146 + }, + { + "surface": "チャーター", + "readging": "チャーター", + "pos": "名詞", + "pn": -0.485157 + }, + { + "surface": "石垣", + "readging": "いしがき", + "pos": "名詞", + "pn": -0.48516 + }, + { + "surface": "男妾", + "readging": "だんしょう", + "pos": "名詞", + "pn": -0.485167 + }, + { + "surface": "有する", + "readging": "ゆうする", + "pos": "動詞", + "pn": -0.485171 + }, + { + "surface": "四百余州", + "readging": "しひゃくよしゅう", + "pos": "名詞", + "pn": -0.485233 + }, + { + "surface": "渡", + "readging": "と", + "pos": "名詞", + "pn": -0.485252 + }, + { + "surface": "洞門", + "readging": "どうもん", + "pos": "名詞", + "pn": -0.485258 + }, + { + "surface": "バッティング", + "readging": "バッティング", + "pos": "名詞", + "pn": -0.485267 + }, + { + "surface": "諸刃", + "readging": "もろは", + "pos": "名詞", + "pn": -0.48531 + }, + { + "surface": "寒波", + "readging": "かんぱ", + "pos": "名詞", + "pn": -0.485345 + }, + { + "surface": "縁", + "readging": "ふち", + "pos": "名詞", + "pn": -0.485352 + }, + { + "surface": "口座", + "readging": "こうざ", + "pos": "名詞", + "pn": -0.485395 + }, + { + "surface": "末枯れる", + "readging": "すがれる", + "pos": "動詞", + "pn": -0.485408 + }, + { + "surface": "角張る", + "readging": "かどばる", + "pos": "動詞", + "pn": -0.485463 + }, + { + "surface": "生殺し", + "readging": "なまごろし", + "pos": "名詞", + "pn": -0.485478 + }, + { + "surface": "輾転", + "readging": "てんてん", + "pos": "名詞", + "pn": -0.485488 + }, + { + "surface": "クレープ", + "readging": "クレープ", + "pos": "名詞", + "pn": -0.485503 + }, + { + "surface": "場景", + "readging": "じょうけい", + "pos": "名詞", + "pn": -0.485508 + }, + { + "surface": "推移", + "readging": "すいい", + "pos": "名詞", + "pn": -0.485527 + }, + { + "surface": "畔", + "readging": "くろ", + "pos": "名詞", + "pn": -0.48553 + }, + { + "surface": "帯揚", + "readging": "おびあげ", + "pos": "名詞", + "pn": -0.485542 + }, + { + "surface": "密葬", + "readging": "みっそう", + "pos": "名詞", + "pn": -0.48555 + }, + { + "surface": "亜鈴", + "readging": "あれい", + "pos": "名詞", + "pn": -0.485579 + }, + { + "surface": "廃家", + "readging": "はいか", + "pos": "名詞", + "pn": -0.485584 + }, + { + "surface": "白瓜", + "readging": "しろうり", + "pos": "名詞", + "pn": -0.485597 + }, + { + "surface": "蕩かす", + "readging": "とろかす", + "pos": "動詞", + "pn": -0.485647 + }, + { + "surface": "釉薬", + "readging": "ゆうやく", + "pos": "名詞", + "pn": -0.485659 + }, + { + "surface": "認識", + "readging": "にんしき", + "pos": "名詞", + "pn": -0.485695 + }, + { + "surface": "天窓", + "readging": "てんまど", + "pos": "名詞", + "pn": -0.485752 + }, + { + "surface": "粗薦", + "readging": "あらごも", + "pos": "名詞", + "pn": -0.485767 + }, + { + "surface": "狩", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.485773 + }, + { + "surface": "むかむか", + "readging": "むかむか", + "pos": "名詞", + "pn": -0.485806 + }, + { + "surface": "親芋", + "readging": "おやいも", + "pos": "名詞", + "pn": -0.485876 + }, + { + "surface": "尻当", + "readging": "しりあて", + "pos": "名詞", + "pn": -0.485879 + }, + { + "surface": "唐辛子", + "readging": "とうがらし", + "pos": "名詞", + "pn": -0.485887 + }, + { + "surface": "陰雲", + "readging": "いんうん", + "pos": "名詞", + "pn": -0.485907 + }, + { + "surface": "突抜ける", + "readging": "つきぬける", + "pos": "動詞", + "pn": -0.485915 + }, + { + "surface": "綿棒", + "readging": "めんぼう", + "pos": "名詞", + "pn": -0.485917 + }, + { + "surface": "血反吐", + "readging": "ちへど", + "pos": "名詞", + "pn": -0.485923 + }, + { + "surface": "コレステロール", + "readging": "コレステロール", + "pos": "名詞", + "pn": -0.485937 + }, + { + "surface": "史筆", + "readging": "しひつ", + "pos": "名詞", + "pn": -0.485956 + }, + { + "surface": "調度", + "readging": "ちょうど", + "pos": "名詞", + "pn": -0.485982 + }, + { + "surface": "懐中電灯", + "readging": "かいちゅうでんとう", + "pos": "名詞", + "pn": -0.485996 + }, + { + "surface": "花梨", + "readging": "かりん", + "pos": "名詞", + "pn": -0.486031 + }, + { + "surface": "御簾", + "readging": "みす", + "pos": "名詞", + "pn": -0.486041 + }, + { + "surface": "通報", + "readging": "つうほう", + "pos": "名詞", + "pn": -0.486047 + }, + { + "surface": "チェーン", + "readging": "チェーンストア", + "pos": "名詞", + "pn": -0.486052 + }, + { + "surface": "蓴菜", + "readging": "じゅんさい", + "pos": "名詞", + "pn": -0.486058 + }, + { + "surface": "鯒", + "readging": "こち", + "pos": "名詞", + "pn": -0.486065 + }, + { + "surface": "風聞", + "readging": "ふうぶん", + "pos": "名詞", + "pn": -0.486085 + }, + { + "surface": "来貢", + "readging": "らいこう", + "pos": "名詞", + "pn": -0.486086 + }, + { + "surface": "鬼打豆", + "readging": "おにうちまめ", + "pos": "名詞", + "pn": -0.486107 + }, + { + "surface": "肋", + "readging": "ろく", + "pos": "名詞", + "pn": -0.486137 + }, + { + "surface": "袋物", + "readging": "ふくろもの", + "pos": "名詞", + "pn": -0.486183 + }, + { + "surface": "白玉粉", + "readging": "しらたまこ", + "pos": "名詞", + "pn": -0.486186 + }, + { + "surface": "関係付ける", + "readging": "かんけいづける", + "pos": "動詞", + "pn": -0.486191 + }, + { + "surface": "律令制", + "readging": "りつりょうせい", + "pos": "名詞", + "pn": -0.486207 + }, + { + "surface": "チキン", + "readging": "チキンライス", + "pos": "名詞", + "pn": -0.486218 + }, + { + "surface": "掣肘", + "readging": "せいちゅう", + "pos": "名詞", + "pn": -0.486218 + }, + { + "surface": "金城湯池", + "readging": "きんじょうとうち", + "pos": "名詞", + "pn": -0.486231 + }, + { + "surface": "手蔓", + "readging": "てづる", + "pos": "名詞", + "pn": -0.486252 + }, + { + "surface": "背節", + "readging": "せぶし", + "pos": "名詞", + "pn": -0.486287 + }, + { + "surface": "コバルト", + "readging": "コバルト", + "pos": "名詞", + "pn": -0.486307 + }, + { + "surface": "下船", + "readging": "げせん", + "pos": "名詞", + "pn": -0.486316 + }, + { + "surface": "蛇籠", + "readging": "じゃかご", + "pos": "名詞", + "pn": -0.486324 + }, + { + "surface": "斬首", + "readging": "ざんしゅ", + "pos": "名詞", + "pn": -0.486335 + }, + { + "surface": "程", + "readging": "てい", + "pos": "名詞", + "pn": -0.486352 + }, + { + "surface": "なけなし", + "readging": "なけなし", + "pos": "名詞", + "pn": -0.486379 + }, + { + "surface": "茎", + "readging": "くき", + "pos": "名詞", + "pn": -0.486401 + }, + { + "surface": "一日", + "readging": "いちじつ", + "pos": "名詞", + "pn": -0.486401 + }, + { + "surface": "事由", + "readging": "じゆう", + "pos": "名詞", + "pn": -0.486409 + }, + { + "surface": "視神経", + "readging": "ししんけい", + "pos": "名詞", + "pn": -0.486413 + }, + { + "surface": "砲声", + "readging": "ほうせい", + "pos": "名詞", + "pn": -0.486424 + }, + { + "surface": "狭間", + "readging": "はざま", + "pos": "名詞", + "pn": -0.486463 + }, + { + "surface": "五臓", + "readging": "ごぞう", + "pos": "名詞", + "pn": -0.486496 + }, + { + "surface": "発汗", + "readging": "はっかん", + "pos": "名詞", + "pn": -0.486497 + }, + { + "surface": "紅鱒", + "readging": "べにます", + "pos": "名詞", + "pn": -0.486525 + }, + { + "surface": "葛折", + "readging": "つづらおり", + "pos": "名詞", + "pn": -0.486535 + }, + { + "surface": "逆転", + "readging": "ぎゃくてん", + "pos": "名詞", + "pn": -0.486542 + }, + { + "surface": "六つ", + "readging": "むっつ", + "pos": "名詞", + "pn": -0.48655 + }, + { + "surface": "びくつく", + "readging": "びくつく", + "pos": "動詞", + "pn": -0.486552 + }, + { + "surface": "女形", + "readging": "おやま", + "pos": "名詞", + "pn": -0.486567 + }, + { + "surface": "むら気", + "readging": "むらぎ", + "pos": "名詞", + "pn": -0.486571 + }, + { + "surface": "塩基", + "readging": "えんき", + "pos": "名詞", + "pn": -0.486619 + }, + { + "surface": "素首", + "readging": "そくび", + "pos": "名詞", + "pn": -0.486663 + }, + { + "surface": "減資", + "readging": "げんし", + "pos": "名詞", + "pn": -0.486668 + }, + { + "surface": "善知鳥", + "readging": "うとう", + "pos": "名詞", + "pn": -0.486672 + }, + { + "surface": "崖道", + "readging": "がけみち", + "pos": "名詞", + "pn": -0.486677 + }, + { + "surface": "休眠", + "readging": "きゅうみん", + "pos": "名詞", + "pn": -0.486679 + }, + { + "surface": "曇天", + "readging": "どんてん", + "pos": "名詞", + "pn": -0.486692 + }, + { + "surface": "郡", + "readging": "こおり", + "pos": "名詞", + "pn": -0.486765 + }, + { + "surface": "落下", + "readging": "らっか", + "pos": "名詞", + "pn": -0.486806 + }, + { + "surface": "孤高", + "readging": "ここう", + "pos": "名詞", + "pn": -0.486808 + }, + { + "surface": "どら焼", + "readging": "どらやき", + "pos": "名詞", + "pn": -0.486815 + }, + { + "surface": "番付", + "readging": "ばんづけ", + "pos": "名詞", + "pn": -0.486828 + }, + { + "surface": "所感", + "readging": "しょかん", + "pos": "名詞", + "pn": -0.486834 + }, + { + "surface": "守刀", + "readging": "まもりがたな", + "pos": "名詞", + "pn": -0.486853 + }, + { + "surface": "啓", + "readging": "けい", + "pos": "名詞", + "pn": -0.486857 + }, + { + "surface": "白地", + "readging": "しろじ", + "pos": "名詞", + "pn": -0.486876 + }, + { + "surface": "届出", + "readging": "とどけいで", + "pos": "名詞", + "pn": -0.486904 + }, + { + "surface": "小学校", + "readging": "しょうがっこう", + "pos": "名詞", + "pn": -0.48692 + }, + { + "surface": "閉経期", + "readging": "へいけいき", + "pos": "名詞", + "pn": -0.486927 + }, + { + "surface": "名乗", + "readging": "なのり", + "pos": "名詞", + "pn": -0.486928 + }, + { + "surface": "難船", + "readging": "なんせん", + "pos": "名詞", + "pn": -0.486931 + }, + { + "surface": "山掛", + "readging": "やまかけ", + "pos": "名詞", + "pn": -0.486949 + }, + { + "surface": "慮り", + "readging": "おもんぱかり", + "pos": "名詞", + "pn": -0.486991 + }, + { + "surface": "蚕糸", + "readging": "さんし", + "pos": "名詞", + "pn": -0.486999 + }, + { + "surface": "罷り出る", + "readging": "まかりでる", + "pos": "動詞", + "pn": -0.487001 + }, + { + "surface": "呉絽", + "readging": "ゴロ", + "pos": "名詞", + "pn": -0.487016 + }, + { + "surface": "奔馬", + "readging": "ほんば", + "pos": "名詞", + "pn": -0.487019 + }, + { + "surface": "公然", + "readging": "こうぜん", + "pos": "名詞", + "pn": -0.487039 + }, + { + "surface": "膾炙", + "readging": "かいしゃ", + "pos": "名詞", + "pn": -0.487039 + }, + { + "surface": "作り上げる", + "readging": "つくりあげる", + "pos": "動詞", + "pn": -0.487044 + }, + { + "surface": "顔ばせ", + "readging": "かおばせ", + "pos": "名詞", + "pn": -0.487062 + }, + { + "surface": "捨石", + "readging": "すていし", + "pos": "名詞", + "pn": -0.487073 + }, + { + "surface": "ハンター", + "readging": "ハンター", + "pos": "名詞", + "pn": -0.487077 + }, + { + "surface": "氷結", + "readging": "ひょうけつ", + "pos": "名詞", + "pn": -0.487091 + }, + { + "surface": "開扉", + "readging": "かいひ", + "pos": "名詞", + "pn": -0.487126 + }, + { + "surface": "サンルーム", + "readging": "サンルーム", + "pos": "名詞", + "pn": -0.48713 + }, + { + "surface": "ひょろひょろ", + "readging": "ひょろひょろ", + "pos": "副詞", + "pn": -0.487145 + }, + { + "surface": "詐欺師", + "readging": "さぎし", + "pos": "名詞", + "pn": -0.487153 + }, + { + "surface": "賺す", + "readging": "すかす", + "pos": "動詞", + "pn": -0.487162 + }, + { + "surface": "支払", + "readging": "しはらい", + "pos": "名詞", + "pn": -0.487169 + }, + { + "surface": "十干", + "readging": "じっかん", + "pos": "名詞", + "pn": -0.487196 + }, + { + "surface": "雪辱", + "readging": "せつじょく", + "pos": "名詞", + "pn": -0.487198 + }, + { + "surface": "荷札", + "readging": "にふだ", + "pos": "名詞", + "pn": -0.487215 + }, + { + "surface": "提子", + "readging": "ひさげ", + "pos": "名詞", + "pn": -0.487255 + }, + { + "surface": "鏡開き", + "readging": "かがみびらき", + "pos": "名詞", + "pn": -0.487265 + }, + { + "surface": "山腹", + "readging": "さんぷく", + "pos": "名詞", + "pn": -0.48728 + }, + { + "surface": "女人", + "readging": "にょにん", + "pos": "名詞", + "pn": -0.487288 + }, + { + "surface": "賊臣", + "readging": "ぞくしん", + "pos": "名詞", + "pn": -0.487289 + }, + { + "surface": "日数", + "readging": "ひかず", + "pos": "名詞", + "pn": -0.487294 + }, + { + "surface": "勘案", + "readging": "かんあん", + "pos": "名詞", + "pn": -0.487295 + }, + { + "surface": "腕骨", + "readging": "わんこつ", + "pos": "名詞", + "pn": -0.487305 + }, + { + "surface": "生活費", + "readging": "せいかつひ", + "pos": "名詞", + "pn": -0.487312 + }, + { + "surface": "平水", + "readging": "へいすい", + "pos": "名詞", + "pn": -0.487333 + }, + { + "surface": "鬆", + "readging": "す", + "pos": "名詞", + "pn": -0.487341 + }, + { + "surface": "扇子", + "readging": "せんす", + "pos": "名詞", + "pn": -0.487355 + }, + { + "surface": "脱衣", + "readging": "だつい", + "pos": "名詞", + "pn": -0.487373 + }, + { + "surface": "牛肉", + "readging": "ぎゅうにく", + "pos": "名詞", + "pn": -0.487393 + }, + { + "surface": "お通し", + "readging": "おとおし", + "pos": "名詞", + "pn": -0.487402 + }, + { + "surface": "着眼", + "readging": "ちゃくがん", + "pos": "名詞", + "pn": -0.487426 + }, + { + "surface": "下名", + "readging": "かめい", + "pos": "名詞", + "pn": -0.487447 + }, + { + "surface": "了見", + "readging": "りょうけん", + "pos": "名詞", + "pn": -0.487461 + }, + { + "surface": "宗教", + "readging": "しゅうきょう", + "pos": "名詞", + "pn": -0.487469 + }, + { + "surface": "入場", + "readging": "にゅうじょう", + "pos": "名詞", + "pn": -0.48748 + }, + { + "surface": "揚戸", + "readging": "あげど", + "pos": "名詞", + "pn": -0.487488 + }, + { + "surface": "かも", + "readging": "かも", + "pos": "名詞", + "pn": -0.487505 + }, + { + "surface": "船繰り", + "readging": "ふなぐり", + "pos": "名詞", + "pn": -0.487513 + }, + { + "surface": "孟", + "readging": "もう", + "pos": "名詞", + "pn": -0.487524 + }, + { + "surface": "板紙", + "readging": "いたがみ", + "pos": "名詞", + "pn": -0.487535 + }, + { + "surface": "ベージュ", + "readging": "ベージュ", + "pos": "名詞", + "pn": -0.487543 + }, + { + "surface": "枝豆", + "readging": "えだまめ", + "pos": "名詞", + "pn": -0.48755 + }, + { + "surface": "ゴール", + "readging": "ゴールキーパー", + "pos": "名詞", + "pn": -0.487566 + }, + { + "surface": "自閉症", + "readging": "じへいしょう", + "pos": "名詞", + "pn": -0.487578 + }, + { + "surface": "じろりと", + "readging": "じろりと", + "pos": "副詞", + "pn": -0.487597 + }, + { + "surface": "寝静まる", + "readging": "ねしずまる", + "pos": "動詞", + "pn": -0.487597 + }, + { + "surface": "板締", + "readging": "いたじめ", + "pos": "名詞", + "pn": -0.487607 + }, + { + "surface": "立札", + "readging": "たてふだ", + "pos": "名詞", + "pn": -0.487615 + }, + { + "surface": "暇乞い", + "readging": "いとまごい", + "pos": "名詞", + "pn": -0.487631 + }, + { + "surface": "予測", + "readging": "よそく", + "pos": "名詞", + "pn": -0.487635 + }, + { + "surface": "設立", + "readging": "せつりつ", + "pos": "名詞", + "pn": -0.487636 + }, + { + "surface": "雑筆", + "readging": "ざっぴつ", + "pos": "名詞", + "pn": -0.487638 + }, + { + "surface": "各", + "readging": "おのおの", + "pos": "名詞", + "pn": -0.487647 + }, + { + "surface": "科学", + "readging": "かがく", + "pos": "名詞", + "pn": -0.487657 + }, + { + "surface": "埋合せる", + "readging": "うめあわせる", + "pos": "動詞", + "pn": -0.487668 + }, + { + "surface": "上陸", + "readging": "じょうりく", + "pos": "名詞", + "pn": -0.487671 + }, + { + "surface": "事大", + "readging": "じだい", + "pos": "名詞", + "pn": -0.487673 + }, + { + "surface": "三尺", + "readging": "さんじゃく", + "pos": "名詞", + "pn": -0.487677 + }, + { + "surface": "糸作り", + "readging": "いとづくり", + "pos": "名詞", + "pn": -0.487708 + }, + { + "surface": "反抗", + "readging": "はんこう", + "pos": "名詞", + "pn": -0.487718 + }, + { + "surface": "山襞", + "readging": "やまひだ", + "pos": "名詞", + "pn": -0.487755 + }, + { + "surface": "象", + "readging": "ぞう", + "pos": "名詞", + "pn": -0.487763 + }, + { + "surface": "来航", + "readging": "らいこう", + "pos": "名詞", + "pn": -0.487767 + }, + { + "surface": "脱腸", + "readging": "だっちょう", + "pos": "名詞", + "pn": -0.487769 + }, + { + "surface": "片側", + "readging": "かたがわ", + "pos": "名詞", + "pn": -0.487769 + }, + { + "surface": "トロイカ", + "readging": "トロイカ", + "pos": "名詞", + "pn": -0.487773 + }, + { + "surface": "回送", + "readging": "かいそう", + "pos": "名詞", + "pn": -0.487814 + }, + { + "surface": "因", + "readging": "いん", + "pos": "名詞", + "pn": -0.487818 + }, + { + "surface": "偽首", + "readging": "にせくび", + "pos": "名詞", + "pn": -0.487821 + }, + { + "surface": "家並", + "readging": "やなみ", + "pos": "名詞", + "pn": -0.487821 + }, + { + "surface": "丸薬", + "readging": "がんやく", + "pos": "名詞", + "pn": -0.487831 + }, + { + "surface": "橋懸", + "readging": "はしがかり", + "pos": "名詞", + "pn": -0.487833 + }, + { + "surface": "肩当", + "readging": "かたあて", + "pos": "名詞", + "pn": -0.487841 + }, + { + "surface": "夕煙", + "readging": "ゆうけむり", + "pos": "名詞", + "pn": -0.487847 + }, + { + "surface": "旧習", + "readging": "きゅうしゅう", + "pos": "名詞", + "pn": -0.487852 + }, + { + "surface": "月光", + "readging": "げっこう", + "pos": "名詞", + "pn": -0.487866 + }, + { + "surface": "極地", + "readging": "きょくち", + "pos": "名詞", + "pn": -0.487889 + }, + { + "surface": "地峡", + "readging": "ちきょう", + "pos": "名詞", + "pn": -0.487894 + }, + { + "surface": "誘い", + "readging": "さそい", + "pos": "名詞", + "pn": -0.487899 + }, + { + "surface": "火山岩", + "readging": "かざんがん", + "pos": "名詞", + "pn": -0.487902 + }, + { + "surface": "隷下", + "readging": "れいか", + "pos": "名詞", + "pn": -0.487902 + }, + { + "surface": "抜身", + "readging": "ぬきみ", + "pos": "名詞", + "pn": -0.487921 + }, + { + "surface": "長須鯨", + "readging": "ながすくじら", + "pos": "名詞", + "pn": -0.487941 + }, + { + "surface": "近親", + "readging": "きんしん", + "pos": "名詞", + "pn": -0.487952 + }, + { + "surface": "違犯", + "readging": "いはん", + "pos": "名詞", + "pn": -0.487971 + }, + { + "surface": "真横", + "readging": "まよこ", + "pos": "名詞", + "pn": -0.487992 + }, + { + "surface": "手前", + "readging": "てめえ", + "pos": "名詞", + "pn": -0.488013 + }, + { + "surface": "下下", + "readging": "げげ", + "pos": "名詞", + "pn": -0.488026 + }, + { + "surface": "外交", + "readging": "がいこう", + "pos": "名詞", + "pn": -0.488044 + }, + { + "surface": "洗礼", + "readging": "せんれい", + "pos": "名詞", + "pn": -0.488053 + }, + { + "surface": "閑地", + "readging": "かんち", + "pos": "名詞", + "pn": -0.488077 + }, + { + "surface": "睨み", + "readging": "にらみ", + "pos": "名詞", + "pn": -0.488084 + }, + { + "surface": "デング熱", + "readging": "デングねつ", + "pos": "名詞", + "pn": -0.488094 + }, + { + "surface": "手間賃", + "readging": "てまちん", + "pos": "名詞", + "pn": -0.488104 + }, + { + "surface": "和名", + "readging": "わめい", + "pos": "名詞", + "pn": -0.488104 + }, + { + "surface": "落雷", + "readging": "らくらい", + "pos": "名詞", + "pn": -0.488143 + }, + { + "surface": "タッチ", + "readging": "タッチアウト", + "pos": "名詞", + "pn": -0.488167 + }, + { + "surface": "親族", + "readging": "しんぞく", + "pos": "名詞", + "pn": -0.488178 + }, + { + "surface": "自己", + "readging": "じこ", + "pos": "名詞", + "pn": -0.488185 + }, + { + "surface": "婚礼", + "readging": "こんれい", + "pos": "名詞", + "pn": -0.488192 + }, + { + "surface": "科する", + "readging": "かする", + "pos": "動詞", + "pn": -0.488202 + }, + { + "surface": "凝り", + "readging": "こり", + "pos": "名詞", + "pn": -0.488213 + }, + { + "surface": "平泳", + "readging": "ひらおよぎ", + "pos": "名詞", + "pn": -0.488215 + }, + { + "surface": "帷幄", + "readging": "いあく", + "pos": "名詞", + "pn": -0.488226 + }, + { + "surface": "小刻み", + "readging": "こきざみ", + "pos": "名詞", + "pn": -0.488239 + }, + { + "surface": "峨峨", + "readging": "がが", + "pos": "名詞", + "pn": -0.488247 + }, + { + "surface": "醸す", + "readging": "かもす", + "pos": "動詞", + "pn": -0.488261 + }, + { + "surface": "チーフ", + "readging": "チーフ", + "pos": "名詞", + "pn": -0.488262 + }, + { + "surface": "頓挫", + "readging": "とんざ", + "pos": "名詞", + "pn": -0.488265 + }, + { + "surface": "画する", + "readging": "かくする", + "pos": "動詞", + "pn": -0.488283 + }, + { + "surface": "差当る", + "readging": "さしあたる", + "pos": "動詞", + "pn": -0.488307 + }, + { + "surface": "金", + "readging": "きん", + "pos": "名詞", + "pn": -0.488309 + }, + { + "surface": "鶴首", + "readging": "かくしゅ", + "pos": "名詞", + "pn": -0.48831 + }, + { + "surface": "回り", + "readging": "かえり", + "pos": "名詞", + "pn": -0.488341 + }, + { + "surface": "紙入れ", + "readging": "かみいれ", + "pos": "名詞", + "pn": -0.488368 + }, + { + "surface": "敗因", + "readging": "はいいん", + "pos": "名詞", + "pn": -0.48838 + }, + { + "surface": "児童", + "readging": "じどう", + "pos": "名詞", + "pn": -0.488384 + }, + { + "surface": "クラッカー", + "readging": "クラッカー", + "pos": "名詞", + "pn": -0.488391 + }, + { + "surface": "帯同", + "readging": "たいどう", + "pos": "名詞", + "pn": -0.488394 + }, + { + "surface": "本分", + "readging": "ほんぶん", + "pos": "名詞", + "pn": -0.48841 + }, + { + "surface": "透視画法", + "readging": "とうしがほう", + "pos": "名詞", + "pn": -0.488411 + }, + { + "surface": "遠眼鏡", + "readging": "とおめがね", + "pos": "名詞", + "pn": -0.488427 + }, + { + "surface": "胸間", + "readging": "きょうかん", + "pos": "名詞", + "pn": -0.488459 + }, + { + "surface": "一目", + "readging": "ひとめ", + "pos": "名詞", + "pn": -0.488472 + }, + { + "surface": "退行", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.488474 + }, + { + "surface": "誘因", + "readging": "ゆういん", + "pos": "名詞", + "pn": -0.488504 + }, + { + "surface": "やたけ心", + "readging": "やたけごころ", + "pos": "名詞", + "pn": -0.488543 + }, + { + "surface": "兵役", + "readging": "へいえき", + "pos": "名詞", + "pn": -0.488556 + }, + { + "surface": "場所入り", + "readging": "ばしょいり", + "pos": "名詞", + "pn": -0.488556 + }, + { + "surface": "引け際", + "readging": "ひけぎわ", + "pos": "名詞", + "pn": -0.48856 + }, + { + "surface": "河船", + "readging": "かせん", + "pos": "名詞", + "pn": -0.488567 + }, + { + "surface": "打裂羽織", + "readging": "ぶっさきばおり", + "pos": "名詞", + "pn": -0.488589 + }, + { + "surface": "初め", + "readging": "ぞめ", + "pos": "名詞", + "pn": -0.488595 + }, + { + "surface": "女結び", + "readging": "おんなむすび", + "pos": "名詞", + "pn": -0.488602 + }, + { + "surface": "肉叢", + "readging": "ししむら", + "pos": "名詞", + "pn": -0.488611 + }, + { + "surface": "初茸", + "readging": "はつたけ", + "pos": "名詞", + "pn": -0.488646 + }, + { + "surface": "とぐろ", + "readging": "とぐろ", + "pos": "名詞", + "pn": -0.488646 + }, + { + "surface": "種族", + "readging": "しゅぞく", + "pos": "名詞", + "pn": -0.488649 + }, + { + "surface": "紛れ込む", + "readging": "まぎれこむ", + "pos": "動詞", + "pn": -0.488686 + }, + { + "surface": "水鶏", + "readging": "くいな", + "pos": "名詞", + "pn": -0.488702 + }, + { + "surface": "童話", + "readging": "どうわ", + "pos": "名詞", + "pn": -0.488713 + }, + { + "surface": "粗野", + "readging": "そや", + "pos": "名詞", + "pn": -0.488718 + }, + { + "surface": "軍法", + "readging": "ぐんぽう", + "pos": "名詞", + "pn": -0.488737 + }, + { + "surface": "兵法", + "readging": "へいほう", + "pos": "名詞", + "pn": -0.488747 + }, + { + "surface": "鼓腸", + "readging": "こちょう", + "pos": "名詞", + "pn": -0.488749 + }, + { + "surface": "急かせる", + "readging": "せかせる", + "pos": "動詞", + "pn": -0.48879 + }, + { + "surface": "袖付", + "readging": "そでつけ", + "pos": "名詞", + "pn": -0.488806 + }, + { + "surface": "毒茸", + "readging": "どくたけ", + "pos": "名詞", + "pn": -0.488818 + }, + { + "surface": "爪痕", + "readging": "つめあと", + "pos": "名詞", + "pn": -0.488826 + }, + { + "surface": "女官", + "readging": "にょかん", + "pos": "名詞", + "pn": -0.488836 + }, + { + "surface": "張込む", + "readging": "はりこむ", + "pos": "動詞", + "pn": -0.488839 + }, + { + "surface": "孟母", + "readging": "もうぼ", + "pos": "名詞", + "pn": -0.488841 + }, + { + "surface": "符丁", + "readging": "ふちょう", + "pos": "名詞", + "pn": -0.488859 + }, + { + "surface": "遣る瀬ない", + "readging": "やるせない", + "pos": "形容詞", + "pn": -0.488864 + }, + { + "surface": "千筋", + "readging": "せんすじ", + "pos": "名詞", + "pn": -0.488876 + }, + { + "surface": "緇衣", + "readging": "しえ", + "pos": "名詞", + "pn": -0.488894 + }, + { + "surface": "水時計", + "readging": "みずどけい", + "pos": "名詞", + "pn": -0.488917 + }, + { + "surface": "採寸", + "readging": "さいすん", + "pos": "名詞", + "pn": -0.488944 + }, + { + "surface": "酢", + "readging": "さく", + "pos": "名詞", + "pn": -0.488947 + }, + { + "surface": "忍び込む", + "readging": "しのびこむ", + "pos": "動詞", + "pn": -0.488966 + }, + { + "surface": "画工", + "readging": "がこう", + "pos": "名詞", + "pn": -0.489015 + }, + { + "surface": "木口", + "readging": "きぐち", + "pos": "名詞", + "pn": -0.489028 + }, + { + "surface": "法規", + "readging": "ほうき", + "pos": "名詞", + "pn": -0.48908 + }, + { + "surface": "州", + "readging": "す", + "pos": "名詞", + "pn": -0.489117 + }, + { + "surface": "潮干狩", + "readging": "しおひ", + "pos": "名詞", + "pn": -0.489122 + }, + { + "surface": "拝礼", + "readging": "はいれい", + "pos": "名詞", + "pn": -0.48914 + }, + { + "surface": "世態", + "readging": "せたい", + "pos": "名詞", + "pn": -0.489153 + }, + { + "surface": "チャレンジ", + "readging": "チャレンジ", + "pos": "名詞", + "pn": -0.489155 + }, + { + "surface": "札束", + "readging": "さつたば", + "pos": "名詞", + "pn": -0.489191 + }, + { + "surface": "約める", + "readging": "つづめる", + "pos": "動詞", + "pn": -0.489198 + }, + { + "surface": "広める", + "readging": "ひろめる", + "pos": "動詞", + "pn": -0.489214 + }, + { + "surface": "鋤返す", + "readging": "すきかえす", + "pos": "動詞", + "pn": -0.489237 + }, + { + "surface": "鼻先", + "readging": "はなさき", + "pos": "名詞", + "pn": -0.489238 + }, + { + "surface": "謬見", + "readging": "びゅうけん", + "pos": "名詞", + "pn": -0.489282 + }, + { + "surface": "借問", + "readging": "しゃもん", + "pos": "名詞", + "pn": -0.489303 + }, + { + "surface": "いなか味噌", + "readging": "いなか", + "pos": "名詞", + "pn": -0.489326 + }, + { + "surface": "浮気", + "readging": "うわき", + "pos": "名詞", + "pn": -0.489337 + }, + { + "surface": "テール", + "readging": "テールライト", + "pos": "名詞", + "pn": -0.48935 + }, + { + "surface": "刹那", + "readging": "せつな", + "pos": "名詞", + "pn": -0.489359 + }, + { + "surface": "出っ張る", + "readging": "でっぱる", + "pos": "動詞", + "pn": -0.489359 + }, + { + "surface": "ちらりほらり", + "readging": "ちらりほらり", + "pos": "副詞", + "pn": -0.489382 + }, + { + "surface": "籤", + "readging": "くじ", + "pos": "名詞", + "pn": -0.489397 + }, + { + "surface": "袋", + "readging": "たい", + "pos": "名詞", + "pn": -0.489423 + }, + { + "surface": "銀杏", + "readging": "いちょう", + "pos": "名詞", + "pn": -0.489423 + }, + { + "surface": "花道", + "readging": "はなみち", + "pos": "名詞", + "pn": -0.48944 + }, + { + "surface": "鹿子絞り", + "readging": "かのこしぼり", + "pos": "名詞", + "pn": -0.489455 + }, + { + "surface": "御忌", + "readging": "ごき", + "pos": "名詞", + "pn": -0.489459 + }, + { + "surface": "連署", + "readging": "れんしょ", + "pos": "名詞", + "pn": -0.48947 + }, + { + "surface": "漁", + "readging": "ぎょ", + "pos": "名詞", + "pn": -0.489485 + }, + { + "surface": "モザイク", + "readging": "モザイク", + "pos": "名詞", + "pn": -0.489487 + }, + { + "surface": "作り字", + "readging": "つくりじ", + "pos": "名詞", + "pn": -0.489488 + }, + { + "surface": "鉛筆", + "readging": "えんぴつ", + "pos": "名詞", + "pn": -0.489488 + }, + { + "surface": "スフィンクス", + "readging": "スフィンクス", + "pos": "名詞", + "pn": -0.489489 + }, + { + "surface": "梟木", + "readging": "きょうぼく", + "pos": "名詞", + "pn": -0.489502 + }, + { + "surface": "凛", + "readging": "りん", + "pos": "名詞", + "pn": -0.489519 + }, + { + "surface": "好悪", + "readging": "こうお", + "pos": "名詞", + "pn": -0.489525 + }, + { + "surface": "慰める", + "readging": "なぐさめる", + "pos": "動詞", + "pn": -0.489532 + }, + { + "surface": "摘み菜", + "readging": "つまみな", + "pos": "名詞", + "pn": -0.489555 + }, + { + "surface": "肩口", + "readging": "かたぐち", + "pos": "名詞", + "pn": -0.489557 + }, + { + "surface": "一発", + "readging": "いっぱつ", + "pos": "名詞", + "pn": -0.489563 + }, + { + "surface": "警報", + "readging": "けいほう", + "pos": "名詞", + "pn": -0.489564 + }, + { + "surface": "棘", + "readging": "おどろ", + "pos": "名詞", + "pn": -0.489566 + }, + { + "surface": "測定", + "readging": "そくてい", + "pos": "名詞", + "pn": -0.489572 + }, + { + "surface": "渡り合う", + "readging": "わたりあう", + "pos": "動詞", + "pn": -0.489573 + }, + { + "surface": "蟹", + "readging": "かに", + "pos": "名詞", + "pn": -0.489593 + }, + { + "surface": "ストライキ", + "readging": "ストライキ", + "pos": "名詞", + "pn": -0.489608 + }, + { + "surface": "秋霜烈日", + "readging": "しゅうそうれつじつ", + "pos": "名詞", + "pn": -0.489608 + }, + { + "surface": "びりびり", + "readging": "びりびり", + "pos": "副詞", + "pn": -0.489639 + }, + { + "surface": "淋疾", + "readging": "りんしつ", + "pos": "名詞", + "pn": -0.489649 + }, + { + "surface": "万年青", + "readging": "おもと", + "pos": "名詞", + "pn": -0.489651 + }, + { + "surface": "夾竹桃", + "readging": "きょうちくとう", + "pos": "名詞", + "pn": -0.48966 + }, + { + "surface": "線画", + "readging": "せんが", + "pos": "名詞", + "pn": -0.489662 + }, + { + "surface": "農道", + "readging": "のうどう", + "pos": "名詞", + "pn": -0.489669 + }, + { + "surface": "回船", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.489671 + }, + { + "surface": "客席", + "readging": "きゃくせき", + "pos": "名詞", + "pn": -0.489697 + }, + { + "surface": "成立つ", + "readging": "なりたつ", + "pos": "動詞", + "pn": -0.489718 + }, + { + "surface": "川向う", + "readging": "かわむこう", + "pos": "名詞", + "pn": -0.48972 + }, + { + "surface": "火矢", + "readging": "ひや", + "pos": "名詞", + "pn": -0.489721 + }, + { + "surface": "白鼠", + "readging": "しろねずみ", + "pos": "名詞", + "pn": -0.489738 + }, + { + "surface": "結納", + "readging": "ゆいのう", + "pos": "名詞", + "pn": -0.489766 + }, + { + "surface": "詰将棋", + "readging": "つめしょうぎ", + "pos": "名詞", + "pn": -0.489782 + }, + { + "surface": "掻口説く", + "readging": "かきくどく", + "pos": "動詞", + "pn": -0.489785 + }, + { + "surface": "旱", + "readging": "かん", + "pos": "名詞", + "pn": -0.489812 + }, + { + "surface": "現に", + "readging": "げんに", + "pos": "副詞", + "pn": -0.489819 + }, + { + "surface": "営利", + "readging": "えいり", + "pos": "名詞", + "pn": -0.489822 + }, + { + "surface": "床框", + "readging": "とこがまち", + "pos": "名詞", + "pn": -0.489826 + }, + { + "surface": "御伽", + "readging": "おとぎ", + "pos": "名詞", + "pn": -0.489837 + }, + { + "surface": "采の目", + "readging": "さいのめ", + "pos": "名詞", + "pn": -0.489837 + }, + { + "surface": "足溜り", + "readging": "あしだまり", + "pos": "名詞", + "pn": -0.489844 + }, + { + "surface": "モビル油", + "readging": "モビルゆ", + "pos": "名詞", + "pn": -0.489856 + }, + { + "surface": "表徴", + "readging": "ひょうちょう", + "pos": "名詞", + "pn": -0.489867 + }, + { + "surface": "力業", + "readging": "ちからわざ", + "pos": "名詞", + "pn": -0.489869 + }, + { + "surface": "激突", + "readging": "げきとつ", + "pos": "名詞", + "pn": -0.489872 + }, + { + "surface": "三番叟", + "readging": "さんばそう", + "pos": "名詞", + "pn": -0.489878 + }, + { + "surface": "色目", + "readging": "いろめ", + "pos": "名詞", + "pn": -0.489895 + }, + { + "surface": "住処", + "readging": "すみか", + "pos": "名詞", + "pn": -0.489905 + }, + { + "surface": "御覧じろ", + "readging": "ごろうじろ", + "pos": "名詞", + "pn": -0.489909 + }, + { + "surface": "胞子", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.489946 + }, + { + "surface": "丁字", + "readging": "ていじ", + "pos": "名詞", + "pn": -0.489947 + }, + { + "surface": "軌跡", + "readging": "きせき", + "pos": "名詞", + "pn": -0.489993 + }, + { + "surface": "栃の木", + "readging": "とちのき", + "pos": "名詞", + "pn": -0.490044 + }, + { + "surface": "序文", + "readging": "じょぶん", + "pos": "名詞", + "pn": -0.490045 + }, + { + "surface": "魔法", + "readging": "まほう", + "pos": "名詞", + "pn": -0.490066 + }, + { + "surface": "食合せ", + "readging": "くいあわせ", + "pos": "名詞", + "pn": -0.490066 + }, + { + "surface": "海驢", + "readging": "あしか", + "pos": "名詞", + "pn": -0.490073 + }, + { + "surface": "メジャー", + "readging": "メジャー", + "pos": "名詞", + "pn": -0.490075 + }, + { + "surface": "衛星", + "readging": "えいせい", + "pos": "名詞", + "pn": -0.490077 + }, + { + "surface": "水流", + "readging": "すいりゅう", + "pos": "名詞", + "pn": -0.490097 + }, + { + "surface": "見習", + "readging": "みならい", + "pos": "名詞", + "pn": -0.490104 + }, + { + "surface": "角目立つ", + "readging": "つのめだつ", + "pos": "動詞", + "pn": -0.490137 + }, + { + "surface": "推察", + "readging": "すいさつ", + "pos": "名詞", + "pn": -0.49014 + }, + { + "surface": "日中", + "readging": "ひなか", + "pos": "名詞", + "pn": -0.490164 + }, + { + "surface": "各位", + "readging": "かくい", + "pos": "名詞", + "pn": -0.490168 + }, + { + "surface": "降り注ぐ", + "readging": "ふりそそぐ", + "pos": "動詞", + "pn": -0.490182 + }, + { + "surface": "かせ糸", + "readging": "かせいと", + "pos": "名詞", + "pn": -0.490211 + }, + { + "surface": "しゃぶりつく", + "readging": "しゃぶりつく", + "pos": "動詞", + "pn": -0.490213 + }, + { + "surface": "人穴", + "readging": "ひとあな", + "pos": "名詞", + "pn": -0.490219 + }, + { + "surface": "体制", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.49022 + }, + { + "surface": "晴らす", + "readging": "はらす", + "pos": "動詞", + "pn": -0.49022 + }, + { + "surface": "言伝", + "readging": "ことづて", + "pos": "名詞", + "pn": -0.490232 + }, + { + "surface": "鉗子", + "readging": "かんし", + "pos": "名詞", + "pn": -0.490249 + }, + { + "surface": "尿", + "readging": "いばり", + "pos": "名詞", + "pn": -0.490254 + }, + { + "surface": "雪焼け", + "readging": "ゆきやけ", + "pos": "名詞", + "pn": -0.490281 + }, + { + "surface": "己がじし", + "readging": "おのがじし", + "pos": "副詞", + "pn": -0.490297 + }, + { + "surface": "コンバート", + "readging": "コンバート", + "pos": "名詞", + "pn": -0.490302 + }, + { + "surface": "行く手", + "readging": "ゆくて", + "pos": "名詞", + "pn": -0.490334 + }, + { + "surface": "劣等感", + "readging": "れっとうかん", + "pos": "名詞", + "pn": -0.490338 + }, + { + "surface": "荒立つ", + "readging": "あらだつ", + "pos": "動詞", + "pn": -0.490346 + }, + { + "surface": "野暮", + "readging": "やぼ", + "pos": "名詞", + "pn": -0.490375 + }, + { + "surface": "鍼医", + "readging": "はりい", + "pos": "名詞", + "pn": -0.490397 + }, + { + "surface": "精神病", + "readging": "せいしんびょう", + "pos": "名詞", + "pn": -0.490398 + }, + { + "surface": "隻影", + "readging": "せきえい", + "pos": "名詞", + "pn": -0.490399 + }, + { + "surface": "暖炉", + "readging": "だんろ", + "pos": "名詞", + "pn": -0.490409 + }, + { + "surface": "お茶", + "readging": "おちゃ", + "pos": "名詞", + "pn": -0.490422 + }, + { + "surface": "親掛り", + "readging": "おやがかり", + "pos": "名詞", + "pn": -0.490429 + }, + { + "surface": "ちんちん", + "readging": "ちんちん", + "pos": "名詞", + "pn": -0.49043 + }, + { + "surface": "磁場", + "readging": "じば", + "pos": "名詞", + "pn": -0.490438 + }, + { + "surface": "献上", + "readging": "けんじょう", + "pos": "名詞", + "pn": -0.490463 + }, + { + "surface": "丁", + "readging": "てい", + "pos": "名詞", + "pn": -0.490463 + }, + { + "surface": "持家", + "readging": "もちいえ", + "pos": "名詞", + "pn": -0.490476 + }, + { + "surface": "住民", + "readging": "じゅうみん", + "pos": "名詞", + "pn": -0.490481 + }, + { + "surface": "毛氈苔", + "readging": "もうせんごけ", + "pos": "名詞", + "pn": -0.490494 + }, + { + "surface": "銀鼠", + "readging": "ぎんねず", + "pos": "名詞", + "pn": -0.490521 + }, + { + "surface": "経緯", + "readging": "たてぬき", + "pos": "名詞", + "pn": -0.49054 + }, + { + "surface": "拝み撃ち", + "readging": "おがみうち", + "pos": "名詞", + "pn": -0.490543 + }, + { + "surface": "中子", + "readging": "なかご", + "pos": "名詞", + "pn": -0.490557 + }, + { + "surface": "手の甲", + "readging": "てのこう", + "pos": "名詞", + "pn": -0.490563 + }, + { + "surface": "係", + "readging": "けい", + "pos": "名詞", + "pn": -0.490563 + }, + { + "surface": "起立", + "readging": "きりつ", + "pos": "名詞", + "pn": -0.490611 + }, + { + "surface": "万代", + "readging": "よろずよ", + "pos": "名詞", + "pn": -0.490614 + }, + { + "surface": "シュラーフザック", + "readging": "シュラーフザック", + "pos": "名詞", + "pn": -0.49064 + }, + { + "surface": "臑当", + "readging": "すねあて", + "pos": "名詞", + "pn": -0.490643 + }, + { + "surface": "さるとりいばら", + "readging": "さるとりいばら", + "pos": "名詞", + "pn": -0.490672 + }, + { + "surface": "厚地", + "readging": "あつじ", + "pos": "名詞", + "pn": -0.490677 + }, + { + "surface": "賊徒", + "readging": "ぞくと", + "pos": "名詞", + "pn": -0.490691 + }, + { + "surface": "煙幕", + "readging": "えんまく", + "pos": "名詞", + "pn": -0.490694 + }, + { + "surface": "バイト", + "readging": "バイト", + "pos": "名詞", + "pn": -0.490702 + }, + { + "surface": "気泡", + "readging": "きほう", + "pos": "名詞", + "pn": -0.490712 + }, + { + "surface": "初める", + "readging": "そめる", + "pos": "動詞", + "pn": -0.490736 + }, + { + "surface": "課金", + "readging": "かきん", + "pos": "名詞", + "pn": -0.490739 + }, + { + "surface": "オブラート", + "readging": "オブラート", + "pos": "名詞", + "pn": -0.490745 + }, + { + "surface": "火急", + "readging": "かきゅう", + "pos": "名詞", + "pn": -0.490746 + }, + { + "surface": "モーター", + "readging": "モーターボート", + "pos": "名詞", + "pn": -0.490761 + }, + { + "surface": "油剤", + "readging": "ゆざい", + "pos": "名詞", + "pn": -0.490773 + }, + { + "surface": "前立", + "readging": "まえだて", + "pos": "名詞", + "pn": -0.490777 + }, + { + "surface": "晩餐", + "readging": "ばんさん", + "pos": "名詞", + "pn": -0.490784 + }, + { + "surface": "僧都", + "readging": "そうづ", + "pos": "名詞", + "pn": -0.490814 + }, + { + "surface": "妹", + "readging": "まい", + "pos": "名詞", + "pn": -0.490843 + }, + { + "surface": "一言半句", + "readging": "いちごんはんく", + "pos": "名詞", + "pn": -0.490862 + }, + { + "surface": "ペリカン", + "readging": "ペリカン", + "pos": "名詞", + "pn": -0.490874 + }, + { + "surface": "為遂げる", + "readging": "しとげる", + "pos": "動詞", + "pn": -0.49092 + }, + { + "surface": "竹の子", + "readging": "たけのこ", + "pos": "名詞", + "pn": -0.490932 + }, + { + "surface": "寝藁", + "readging": "ねわら", + "pos": "名詞", + "pn": -0.490938 + }, + { + "surface": "浅草海苔", + "readging": "あさくさのり", + "pos": "名詞", + "pn": -0.490951 + }, + { + "surface": "産所", + "readging": "さんじょ", + "pos": "名詞", + "pn": -0.490968 + }, + { + "surface": "無駄骨", + "readging": "むだぼね", + "pos": "名詞", + "pn": -0.490985 + }, + { + "surface": "煤色", + "readging": "すすいろ", + "pos": "名詞", + "pn": -0.491019 + }, + { + "surface": "昼下り", + "readging": "ひるさがり", + "pos": "名詞", + "pn": -0.491033 + }, + { + "surface": "上程", + "readging": "じょうてい", + "pos": "名詞", + "pn": -0.491071 + }, + { + "surface": "僧家", + "readging": "そうか", + "pos": "名詞", + "pn": -0.491072 + }, + { + "surface": "客臘", + "readging": "かくろう", + "pos": "名詞", + "pn": -0.491104 + }, + { + "surface": "頭巾", + "readging": "ずきん", + "pos": "名詞", + "pn": -0.491115 + }, + { + "surface": "揺れ", + "readging": "ゆれ", + "pos": "名詞", + "pn": -0.491115 + }, + { + "surface": "出処進退", + "readging": "しゅっしょしんたい", + "pos": "名詞", + "pn": -0.491119 + }, + { + "surface": "鼻白む", + "readging": "はなじろむ", + "pos": "動詞", + "pn": -0.491131 + }, + { + "surface": "弓箭", + "readging": "きゅうせん", + "pos": "名詞", + "pn": -0.491134 + }, + { + "surface": "げんのしょうこ", + "readging": "げんのしょうこ", + "pos": "名詞", + "pn": -0.491163 + }, + { + "surface": "鯉", + "readging": "こい", + "pos": "名詞", + "pn": -0.491176 + }, + { + "surface": "施主", + "readging": "せしゅ", + "pos": "名詞", + "pn": -0.491215 + }, + { + "surface": "食い掛け", + "readging": "くいかけ", + "pos": "名詞", + "pn": -0.491231 + }, + { + "surface": "体積", + "readging": "たいせき", + "pos": "名詞", + "pn": -0.491236 + }, + { + "surface": "翼状", + "readging": "よくじょう", + "pos": "名詞", + "pn": -0.491266 + }, + { + "surface": "欺瞞", + "readging": "ぎまん", + "pos": "名詞", + "pn": -0.491276 + }, + { + "surface": "一角", + "readging": "いっかく", + "pos": "名詞", + "pn": -0.491276 + }, + { + "surface": "帆走", + "readging": "はんそう", + "pos": "名詞", + "pn": -0.491277 + }, + { + "surface": "調査", + "readging": "ちょうさ", + "pos": "名詞", + "pn": -0.491338 + }, + { + "surface": "独裁", + "readging": "どくさい", + "pos": "名詞", + "pn": -0.491348 + }, + { + "surface": "球菌", + "readging": "きゅうきん", + "pos": "名詞", + "pn": -0.491351 + }, + { + "surface": "マフラー", + "readging": "マフラー", + "pos": "名詞", + "pn": -0.491357 + }, + { + "surface": "暁闇", + "readging": "あかつきやみ", + "pos": "名詞", + "pn": -0.491363 + }, + { + "surface": "朗読", + "readging": "ろうどく", + "pos": "名詞", + "pn": -0.491387 + }, + { + "surface": "嗜む", + "readging": "たしなむ", + "pos": "動詞", + "pn": -0.491395 + }, + { + "surface": "キュロット", + "readging": "キュロット", + "pos": "名詞", + "pn": -0.491419 + }, + { + "surface": "偏執狂", + "readging": "へんしゅうきょう", + "pos": "名詞", + "pn": -0.491423 + }, + { + "surface": "力瘤", + "readging": "ちからこぶ", + "pos": "名詞", + "pn": -0.491428 + }, + { + "surface": "ともすると", + "readging": "ともすると", + "pos": "副詞", + "pn": -0.491435 + }, + { + "surface": "連れ", + "readging": "つれ", + "pos": "名詞", + "pn": -0.491447 + }, + { + "surface": "風葬", + "readging": "ふうそう", + "pos": "名詞", + "pn": -0.491462 + }, + { + "surface": "野点", + "readging": "のだて", + "pos": "名詞", + "pn": -0.491469 + }, + { + "surface": "コルク", + "readging": "コルク", + "pos": "名詞", + "pn": -0.491469 + }, + { + "surface": "野伏", + "readging": "のぶせり", + "pos": "名詞", + "pn": -0.491476 + }, + { + "surface": "鋼索", + "readging": "こうさく", + "pos": "名詞", + "pn": -0.491477 + }, + { + "surface": "ジャケット", + "readging": "ジャケット", + "pos": "名詞", + "pn": -0.491506 + }, + { + "surface": "聞物", + "readging": "ききもの", + "pos": "名詞", + "pn": -0.491517 + }, + { + "surface": "供養", + "readging": "くよう", + "pos": "名詞", + "pn": -0.491543 + }, + { + "surface": "食い溜め", + "readging": "くいだめ", + "pos": "名詞", + "pn": -0.491574 + }, + { + "surface": "はばたく", + "readging": "はばたく", + "pos": "動詞", + "pn": -0.491574 + }, + { + "surface": "学科", + "readging": "がっか", + "pos": "名詞", + "pn": -0.491576 + }, + { + "surface": "揉合う", + "readging": "もみあう", + "pos": "動詞", + "pn": -0.491586 + }, + { + "surface": "タブー", + "readging": "タブー", + "pos": "名詞", + "pn": -0.491589 + }, + { + "surface": "棚雲", + "readging": "たなぐも", + "pos": "名詞", + "pn": -0.491615 + }, + { + "surface": "小手", + "readging": "こて", + "pos": "名詞", + "pn": -0.491639 + }, + { + "surface": "殿軍", + "readging": "でんぐん", + "pos": "名詞", + "pn": -0.491646 + }, + { + "surface": "葎", + "readging": "むぐら", + "pos": "名詞", + "pn": -0.49165 + }, + { + "surface": "山僧", + "readging": "さんそう", + "pos": "名詞", + "pn": -0.491664 + }, + { + "surface": "誘う", + "readging": "いざなう", + "pos": "動詞", + "pn": -0.491701 + }, + { + "surface": "操業", + "readging": "そうぎょう", + "pos": "名詞", + "pn": -0.491724 + }, + { + "surface": "鳥屋", + "readging": "とや", + "pos": "名詞", + "pn": -0.491742 + }, + { + "surface": "不定", + "readging": "ふてい", + "pos": "名詞", + "pn": -0.49175 + }, + { + "surface": "競売", + "readging": "せりうり", + "pos": "名詞", + "pn": -0.491799 + }, + { + "surface": "小振り", + "readging": "こぶり", + "pos": "名詞", + "pn": -0.491817 + }, + { + "surface": "輜重", + "readging": "しちょう", + "pos": "名詞", + "pn": -0.491821 + }, + { + "surface": "レスリング", + "readging": "レスリング", + "pos": "名詞", + "pn": -0.491887 + }, + { + "surface": "客来", + "readging": "きゃくらい", + "pos": "名詞", + "pn": -0.49191 + }, + { + "surface": "トレモロ", + "readging": "トレモロ", + "pos": "名詞", + "pn": -0.491931 + }, + { + "surface": "心心", + "readging": "こころごころ", + "pos": "名詞", + "pn": -0.491948 + }, + { + "surface": "非国民", + "readging": "ひこくみん", + "pos": "名詞", + "pn": -0.491949 + }, + { + "surface": "窒息", + "readging": "ちっそく", + "pos": "名詞", + "pn": -0.49195 + }, + { + "surface": "マンゴー", + "readging": "マンゴー", + "pos": "名詞", + "pn": -0.491952 + }, + { + "surface": "梶", + "readging": "かじ", + "pos": "名詞", + "pn": -0.491958 + }, + { + "surface": "防除", + "readging": "ぼうじょ", + "pos": "名詞", + "pn": -0.491966 + }, + { + "surface": "キャラコ", + "readging": "キャラコ", + "pos": "名詞", + "pn": -0.49197 + }, + { + "surface": "乾坤", + "readging": "けんこん", + "pos": "名詞", + "pn": -0.491976 + }, + { + "surface": "別掲", + "readging": "べっけい", + "pos": "名詞", + "pn": -0.492056 + }, + { + "surface": "海鼠餅", + "readging": "なまこもち", + "pos": "名詞", + "pn": -0.492071 + }, + { + "surface": "寸尺", + "readging": "すんしゃく", + "pos": "名詞", + "pn": -0.49209 + }, + { + "surface": "揚鍋", + "readging": "あげなべ", + "pos": "名詞", + "pn": -0.492093 + }, + { + "surface": "分列式", + "readging": "ぶんれつしき", + "pos": "名詞", + "pn": -0.492102 + }, + { + "surface": "取入れる", + "readging": "とりいれる", + "pos": "動詞", + "pn": -0.492119 + }, + { + "surface": "遣り口", + "readging": "やりくち", + "pos": "名詞", + "pn": -0.492131 + }, + { + "surface": "騎虎", + "readging": "きこ", + "pos": "名詞", + "pn": -0.492146 + }, + { + "surface": "サッシ", + "readging": "サッシ", + "pos": "名詞", + "pn": -0.492163 + }, + { + "surface": "六十六部", + "readging": "ろくじゅうろくぶ", + "pos": "名詞", + "pn": -0.492167 + }, + { + "surface": "時鳥", + "readging": "ほととぎす", + "pos": "名詞", + "pn": -0.492174 + }, + { + "surface": "背格好", + "readging": "せいかっこう", + "pos": "名詞", + "pn": -0.492178 + }, + { + "surface": "シュプール", + "readging": "シュプール", + "pos": "名詞", + "pn": -0.492179 + }, + { + "surface": "山気", + "readging": "やまき", + "pos": "名詞", + "pn": -0.492195 + }, + { + "surface": "概括", + "readging": "がいかつ", + "pos": "名詞", + "pn": -0.492196 + }, + { + "surface": "榊", + "readging": "さかき", + "pos": "名詞", + "pn": -0.492197 + }, + { + "surface": "誌", + "readging": "し", + "pos": "名詞", + "pn": -0.49222 + }, + { + "surface": "比率", + "readging": "ひりつ", + "pos": "名詞", + "pn": -0.492232 + }, + { + "surface": "銀将", + "readging": "ぎんしょう", + "pos": "名詞", + "pn": -0.492238 + }, + { + "surface": "形状", + "readging": "けいじょう", + "pos": "名詞", + "pn": -0.492282 + }, + { + "surface": "軽焼", + "readging": "かるやき", + "pos": "名詞", + "pn": -0.492289 + }, + { + "surface": "耕す", + "readging": "たがやす", + "pos": "動詞", + "pn": -0.492289 + }, + { + "surface": "細螺", + "readging": "きさご", + "pos": "名詞", + "pn": -0.492294 + }, + { + "surface": "萱草", + "readging": "かんぞう", + "pos": "名詞", + "pn": -0.492304 + }, + { + "surface": "擦る", + "readging": "する", + "pos": "動詞", + "pn": -0.492314 + }, + { + "surface": "馬簾", + "readging": "ばれん", + "pos": "名詞", + "pn": -0.492319 + }, + { + "surface": "分", + "readging": "ぶ", + "pos": "名詞", + "pn": -0.49232 + }, + { + "surface": "局面", + "readging": "きょくめん", + "pos": "名詞", + "pn": -0.492331 + }, + { + "surface": "張物", + "readging": "はりもの", + "pos": "名詞", + "pn": -0.492343 + }, + { + "surface": "生酒", + "readging": "きざけ", + "pos": "名詞", + "pn": -0.492344 + }, + { + "surface": "ぽちゃぽちゃ", + "readging": "ぽちゃぽちゃ", + "pos": "副詞", + "pn": -0.492349 + }, + { + "surface": "ビードロ", + "readging": "ビードロ", + "pos": "名詞", + "pn": -0.492362 + }, + { + "surface": "埴生", + "readging": "はにゅう", + "pos": "名詞", + "pn": -0.492372 + }, + { + "surface": "含める", + "readging": "ふくめる", + "pos": "動詞", + "pn": -0.492384 + }, + { + "surface": "紛議", + "readging": "ふんぎ", + "pos": "名詞", + "pn": -0.4924 + }, + { + "surface": "パテ", + "readging": "パテ", + "pos": "名詞", + "pn": -0.492412 + }, + { + "surface": "百日", + "readging": "ひゃくにち", + "pos": "名詞", + "pn": -0.492415 + }, + { + "surface": "曲技", + "readging": "きょくぎ", + "pos": "名詞", + "pn": -0.492422 + }, + { + "surface": "情死", + "readging": "じょうし", + "pos": "名詞", + "pn": -0.492425 + }, + { + "surface": "暗影", + "readging": "あんえい", + "pos": "名詞", + "pn": -0.492438 + }, + { + "surface": "誤報", + "readging": "ごほう", + "pos": "名詞", + "pn": -0.492451 + }, + { + "surface": "廃棄", + "readging": "はいき", + "pos": "名詞", + "pn": -0.492451 + }, + { + "surface": "世紀末", + "readging": "せいきまつ", + "pos": "名詞", + "pn": -0.492469 + }, + { + "surface": "葡萄糖", + "readging": "ぶどうとう", + "pos": "名詞", + "pn": -0.492474 + }, + { + "surface": "陽", + "readging": "よう", + "pos": "名詞", + "pn": -0.492477 + }, + { + "surface": "敷布団", + "readging": "しきぶとん", + "pos": "名詞", + "pn": -0.49248 + }, + { + "surface": "取次", + "readging": "とりつぎ", + "pos": "名詞", + "pn": -0.492528 + }, + { + "surface": "大銀杏", + "readging": "おおいちょう", + "pos": "名詞", + "pn": -0.492538 + }, + { + "surface": "伝説", + "readging": "でんせつ", + "pos": "名詞", + "pn": -0.492555 + }, + { + "surface": "織女", + "readging": "しょくじょ", + "pos": "名詞", + "pn": -0.492561 + }, + { + "surface": "衣", + "readging": "い", + "pos": "名詞", + "pn": -0.492564 + }, + { + "surface": "捜し当てる", + "readging": "さがしあてる", + "pos": "動詞", + "pn": -0.492567 + }, + { + "surface": "装備", + "readging": "そうび", + "pos": "名詞", + "pn": -0.492584 + }, + { + "surface": "毒液", + "readging": "どくえき", + "pos": "名詞", + "pn": -0.492588 + }, + { + "surface": "落ち合う", + "readging": "おちあう", + "pos": "動詞", + "pn": -0.492601 + }, + { + "surface": "メンチ ボール", + "readging": "メンチ ボール", + "pos": "名詞", + "pn": -0.492607 + }, + { + "surface": "寝技", + "readging": "ねわざ", + "pos": "名詞", + "pn": -0.492623 + }, + { + "surface": "中表", + "readging": "なかおもて", + "pos": "名詞", + "pn": -0.492633 + }, + { + "surface": "前古", + "readging": "ぜんこ", + "pos": "名詞", + "pn": -0.492658 + }, + { + "surface": "サイド", + "readging": "サイドカー", + "pos": "名詞", + "pn": -0.492692 + }, + { + "surface": "雨気", + "readging": "あまけ", + "pos": "名詞", + "pn": -0.492698 + }, + { + "surface": "追って", + "readging": "おって", + "pos": "副詞", + "pn": -0.492707 + }, + { + "surface": "桑門", + "readging": "そうもん", + "pos": "名詞", + "pn": -0.492725 + }, + { + "surface": "鍔際", + "readging": "つばぎわ", + "pos": "名詞", + "pn": -0.492728 + }, + { + "surface": "オレンジ", + "readging": "オレンジ", + "pos": "名詞", + "pn": -0.492746 + }, + { + "surface": "貯金", + "readging": "ちょきん", + "pos": "名詞", + "pn": -0.492756 + }, + { + "surface": "不合理", + "readging": "ふごうり", + "pos": "名詞", + "pn": -0.492771 + }, + { + "surface": "ダブる", + "readging": "ダブる", + "pos": "動詞", + "pn": -0.492786 + }, + { + "surface": "玄奥", + "readging": "げんおう", + "pos": "名詞", + "pn": -0.492791 + }, + { + "surface": "和らげる", + "readging": "やわらげる", + "pos": "動詞", + "pn": -0.492798 + }, + { + "surface": "署名", + "readging": "しょめい", + "pos": "名詞", + "pn": -0.492847 + }, + { + "surface": "チーム", + "readging": "チームワーク", + "pos": "名詞", + "pn": -0.492859 + }, + { + "surface": "しこ", + "readging": "しこ", + "pos": "名詞", + "pn": -0.492859 + }, + { + "surface": "碁盤", + "readging": "ごばん", + "pos": "名詞", + "pn": -0.492865 + }, + { + "surface": "縫直し", + "readging": "ぬいなおし", + "pos": "名詞", + "pn": -0.492874 + }, + { + "surface": "糖蜜", + "readging": "とうみつ", + "pos": "名詞", + "pn": -0.492877 + }, + { + "surface": "報酬", + "readging": "ほうしゅう", + "pos": "名詞", + "pn": -0.492898 + }, + { + "surface": "出立つ", + "readging": "いでたつ", + "pos": "動詞", + "pn": -0.492899 + }, + { + "surface": "身丈", + "readging": "みたけ", + "pos": "名詞", + "pn": -0.492919 + }, + { + "surface": "突っ返す", + "readging": "つっかえす", + "pos": "動詞", + "pn": -0.492926 + }, + { + "surface": "風袋", + "readging": "ふうたい", + "pos": "名詞", + "pn": -0.492948 + }, + { + "surface": "炭窯", + "readging": "すみがま", + "pos": "名詞", + "pn": -0.492953 + }, + { + "surface": "釉薬", + "readging": "うわぐすり", + "pos": "名詞", + "pn": -0.492972 + }, + { + "surface": "犇めく", + "readging": "ひしめく", + "pos": "動詞", + "pn": -0.492981 + }, + { + "surface": "所有権", + "readging": "しょゆうけん", + "pos": "名詞", + "pn": -0.493013 + }, + { + "surface": "屋", + "readging": "おく", + "pos": "名詞", + "pn": -0.493018 + }, + { + "surface": "走り抜ける", + "readging": "はしりぬける", + "pos": "動詞", + "pn": -0.493042 + }, + { + "surface": "簡略", + "readging": "かんりゃく", + "pos": "名詞", + "pn": -0.493074 + }, + { + "surface": "頁岩", + "readging": "けつがん", + "pos": "名詞", + "pn": -0.49308 + }, + { + "surface": "尽日", + "readging": "じんじつ", + "pos": "名詞", + "pn": -0.493097 + }, + { + "surface": "聞損なう", + "readging": "ききそこなう", + "pos": "動詞", + "pn": -0.493119 + }, + { + "surface": "問屋", + "readging": "といや", + "pos": "名詞", + "pn": -0.493131 + }, + { + "surface": "本山", + "readging": "ほんざん", + "pos": "名詞", + "pn": -0.493134 + }, + { + "surface": "ロック", + "readging": "ロック", + "pos": "名詞", + "pn": -0.493141 + }, + { + "surface": "水槽", + "readging": "すいそう", + "pos": "名詞", + "pn": -0.493163 + }, + { + "surface": "鼻茸", + "readging": "はなたけ", + "pos": "名詞", + "pn": -0.493178 + }, + { + "surface": "軽率", + "readging": "けいそつ", + "pos": "名詞", + "pn": -0.493187 + }, + { + "surface": "雄蕊", + "readging": "おしべ", + "pos": "名詞", + "pn": -0.493199 + }, + { + "surface": "漂白", + "readging": "ひょうはく", + "pos": "名詞", + "pn": -0.493201 + }, + { + "surface": "幼女", + "readging": "ようじょ", + "pos": "名詞", + "pn": -0.493221 + }, + { + "surface": "トラクター", + "readging": "トラクター", + "pos": "名詞", + "pn": -0.493242 + }, + { + "surface": "哀話", + "readging": "あいわ", + "pos": "名詞", + "pn": -0.493247 + }, + { + "surface": "総立ち", + "readging": "そうだち", + "pos": "名詞", + "pn": -0.49325 + }, + { + "surface": "異性", + "readging": "いせい", + "pos": "名詞", + "pn": -0.493262 + }, + { + "surface": "店構", + "readging": "みせがまえ", + "pos": "名詞", + "pn": -0.493272 + }, + { + "surface": "軟便", + "readging": "なんべん", + "pos": "名詞", + "pn": -0.493279 + }, + { + "surface": "離乳", + "readging": "りにゅう", + "pos": "名詞", + "pn": -0.493286 + }, + { + "surface": "鞄", + "readging": "かばん", + "pos": "名詞", + "pn": -0.493296 + }, + { + "surface": "濡縁", + "readging": "ぬれえん", + "pos": "名詞", + "pn": -0.493301 + }, + { + "surface": "度度", + "readging": "よりより", + "pos": "副詞", + "pn": -0.493303 + }, + { + "surface": "手真似", + "readging": "てまね", + "pos": "名詞", + "pn": -0.493309 + }, + { + "surface": "納骨", + "readging": "のうこつ", + "pos": "名詞", + "pn": -0.493311 + }, + { + "surface": "濡手", + "readging": "ぬれて", + "pos": "名詞", + "pn": -0.493318 + }, + { + "surface": "ちゃんぽん", + "readging": "ちゃんぽん", + "pos": "名詞", + "pn": -0.493328 + }, + { + "surface": "供給", + "readging": "きょうきゅう", + "pos": "名詞", + "pn": -0.493351 + }, + { + "surface": "スイッチ", + "readging": "スイッチ", + "pos": "名詞", + "pn": -0.493361 + }, + { + "surface": "油蝉", + "readging": "あぶらぜみ", + "pos": "名詞", + "pn": -0.493399 + }, + { + "surface": "内議", + "readging": "ないぎ", + "pos": "名詞", + "pn": -0.493412 + }, + { + "surface": "多謝", + "readging": "たしゃ", + "pos": "名詞", + "pn": -0.49342 + }, + { + "surface": "中弛み", + "readging": "なかだるみ", + "pos": "名詞", + "pn": -0.493435 + }, + { + "surface": "追録", + "readging": "ついろく", + "pos": "名詞", + "pn": -0.493446 + }, + { + "surface": "比喩", + "readging": "ひゆ", + "pos": "名詞", + "pn": -0.493458 + }, + { + "surface": "利欲", + "readging": "りよく", + "pos": "名詞", + "pn": -0.49346 + }, + { + "surface": "煙たがる", + "readging": "けむたがる", + "pos": "動詞", + "pn": -0.49348 + }, + { + "surface": "上世", + "readging": "じょうせい", + "pos": "名詞", + "pn": -0.493524 + }, + { + "surface": "手順", + "readging": "てじゅん", + "pos": "名詞", + "pn": -0.493538 + }, + { + "surface": "髪", + "readging": "かみ", + "pos": "名詞", + "pn": -0.493569 + }, + { + "surface": "遠隔", + "readging": "えんかく", + "pos": "名詞", + "pn": -0.49359 + }, + { + "surface": "臼歯", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.493595 + }, + { + "surface": "凡例", + "readging": "はんれい", + "pos": "名詞", + "pn": -0.493599 + }, + { + "surface": "書契", + "readging": "しょけい", + "pos": "名詞", + "pn": -0.49361 + }, + { + "surface": "鳥銃", + "readging": "ちょうじゅう", + "pos": "名詞", + "pn": -0.493615 + }, + { + "surface": "牆壁", + "readging": "しょうへき", + "pos": "名詞", + "pn": -0.493633 + }, + { + "surface": "瀬切る", + "readging": "せぎる", + "pos": "動詞", + "pn": -0.493662 + }, + { + "surface": "宮入貝", + "readging": "みやいりがい", + "pos": "名詞", + "pn": -0.493667 + }, + { + "surface": "ちびちび", + "readging": "ちびちび", + "pos": "副詞", + "pn": -0.493667 + }, + { + "surface": "漏刻", + "readging": "ろうこく", + "pos": "名詞", + "pn": -0.493684 + }, + { + "surface": "慈姑頭", + "readging": "くわい", + "pos": "名詞", + "pn": -0.493694 + }, + { + "surface": "見え", + "readging": "みえ", + "pos": "名詞", + "pn": -0.493707 + }, + { + "surface": "揺らす", + "readging": "ゆらす", + "pos": "動詞", + "pn": -0.493712 + }, + { + "surface": "踏躙る", + "readging": "ふみにじる", + "pos": "動詞", + "pn": -0.493752 + }, + { + "surface": "もやもや", + "readging": "もやもや", + "pos": "副詞", + "pn": -0.493757 + }, + { + "surface": "高閣", + "readging": "こうかく", + "pos": "名詞", + "pn": -0.493771 + }, + { + "surface": "雪雪崩", + "readging": "ゆきなだれ", + "pos": "名詞", + "pn": -0.493774 + }, + { + "surface": "二枚貝", + "readging": "にまいがい", + "pos": "名詞", + "pn": -0.493786 + }, + { + "surface": "永世", + "readging": "えいせい", + "pos": "名詞", + "pn": -0.493804 + }, + { + "surface": "韋編", + "readging": "いへん", + "pos": "名詞", + "pn": -0.49382 + }, + { + "surface": "一昨昨日", + "readging": "さきおととい", + "pos": "名詞", + "pn": -0.493825 + }, + { + "surface": "負債", + "readging": "ふさい", + "pos": "名詞", + "pn": -0.493832 + }, + { + "surface": "潜める", + "readging": "ひそめる", + "pos": "動詞", + "pn": -0.493843 + }, + { + "surface": "ギター", + "readging": "ギター", + "pos": "名詞", + "pn": -0.493858 + }, + { + "surface": "輸入", + "readging": "ゆにゅう", + "pos": "名詞", + "pn": -0.493868 + }, + { + "surface": "ビリケン", + "readging": "ビリケン", + "pos": "名詞", + "pn": -0.493892 + }, + { + "surface": "音調", + "readging": "おんちょう", + "pos": "名詞", + "pn": -0.493904 + }, + { + "surface": "親父", + "readging": "しんぷ", + "pos": "名詞", + "pn": -0.493906 + }, + { + "surface": "冬空", + "readging": "ふゆぞら", + "pos": "名詞", + "pn": -0.493913 + }, + { + "surface": "ケーブル", + "readging": "ケーブル", + "pos": "名詞", + "pn": -0.49393 + }, + { + "surface": "鋳造", + "readging": "ちゅうぞう", + "pos": "名詞", + "pn": -0.493934 + }, + { + "surface": "真暗", + "readging": "まっくら", + "pos": "名詞", + "pn": -0.493945 + }, + { + "surface": "古ぼける", + "readging": "ふるぼける", + "pos": "動詞", + "pn": -0.493967 + }, + { + "surface": "テーブル", + "readging": "テーブルセンター", + "pos": "名詞", + "pn": -0.493967 + }, + { + "surface": "折助", + "readging": "おりすけ", + "pos": "名詞", + "pn": -0.49397 + }, + { + "surface": "あしらう", + "readging": "あしらう", + "pos": "動詞", + "pn": -0.493976 + }, + { + "surface": "チーフ", + "readging": "チーフメート", + "pos": "名詞", + "pn": -0.493985 + }, + { + "surface": "結髪", + "readging": "けっぱつ", + "pos": "名詞", + "pn": -0.493988 + }, + { + "surface": "戯画", + "readging": "ぎが", + "pos": "名詞", + "pn": -0.494002 + }, + { + "surface": "刑余", + "readging": "けいよ", + "pos": "名詞", + "pn": -0.494013 + }, + { + "surface": "付箋", + "readging": "ふせん", + "pos": "名詞", + "pn": -0.494016 + }, + { + "surface": "野外", + "readging": "やがい", + "pos": "名詞", + "pn": -0.49404 + }, + { + "surface": "乳酸", + "readging": "にゅうさん", + "pos": "名詞", + "pn": -0.494048 + }, + { + "surface": "細目", + "readging": "ほそめ", + "pos": "名詞", + "pn": -0.49405 + }, + { + "surface": "妓楼", + "readging": "ぎろう", + "pos": "名詞", + "pn": -0.494064 + }, + { + "surface": "秋波", + "readging": "しゅうは", + "pos": "名詞", + "pn": -0.4941 + }, + { + "surface": "雨戸", + "readging": "あまど", + "pos": "名詞", + "pn": -0.494105 + }, + { + "surface": "献杯", + "readging": "けんぱい", + "pos": "名詞", + "pn": -0.494155 + }, + { + "surface": "尻切れ", + "readging": "しりきれ", + "pos": "名詞", + "pn": -0.49416 + }, + { + "surface": "破籠", + "readging": "わりご", + "pos": "名詞", + "pn": -0.49416 + }, + { + "surface": "銃座", + "readging": "じゅうざ", + "pos": "名詞", + "pn": -0.494168 + }, + { + "surface": "木槿", + "readging": "むくげ", + "pos": "名詞", + "pn": -0.494176 + }, + { + "surface": "蠅取り", + "readging": "はいとり", + "pos": "名詞", + "pn": -0.494184 + }, + { + "surface": "投機", + "readging": "とうき", + "pos": "名詞", + "pn": -0.494187 + }, + { + "surface": "憫察", + "readging": "びんさつ", + "pos": "名詞", + "pn": -0.4942 + }, + { + "surface": "木皮", + "readging": "もくひ", + "pos": "名詞", + "pn": -0.494209 + }, + { + "surface": "長引く", + "readging": "ながびく", + "pos": "動詞", + "pn": -0.494217 + }, + { + "surface": "隠微", + "readging": "いんび", + "pos": "名詞", + "pn": -0.494222 + }, + { + "surface": "パンヤ", + "readging": "パンヤ", + "pos": "名詞", + "pn": -0.494224 + }, + { + "surface": "擦付ける", + "readging": "すりつける", + "pos": "動詞", + "pn": -0.494228 + }, + { + "surface": "全霊", + "readging": "ぜんれい", + "pos": "名詞", + "pn": -0.494258 + }, + { + "surface": "心電図", + "readging": "しんでんず", + "pos": "名詞", + "pn": -0.494267 + }, + { + "surface": "秘伝", + "readging": "ひでん", + "pos": "名詞", + "pn": -0.494276 + }, + { + "surface": "独り占い", + "readging": "ひとりうらない", + "pos": "名詞", + "pn": -0.494366 + }, + { + "surface": "詭弁", + "readging": "きべん", + "pos": "名詞", + "pn": -0.494372 + }, + { + "surface": "洗足", + "readging": "せんそく", + "pos": "名詞", + "pn": -0.494399 + }, + { + "surface": "息む", + "readging": "いきむ", + "pos": "動詞", + "pn": -0.494416 + }, + { + "surface": "児戯", + "readging": "じぎ", + "pos": "名詞", + "pn": -0.494417 + }, + { + "surface": "見取り算", + "readging": "みとりざん", + "pos": "名詞", + "pn": -0.494419 + }, + { + "surface": "お次", + "readging": "おつぎ", + "pos": "名詞", + "pn": -0.494422 + }, + { + "surface": "体刑", + "readging": "たいけい", + "pos": "名詞", + "pn": -0.494453 + }, + { + "surface": "礎", + "readging": "いしずえ", + "pos": "名詞", + "pn": -0.494473 + }, + { + "surface": "終夜灯", + "readging": "しゅうやとう", + "pos": "名詞", + "pn": -0.494502 + }, + { + "surface": "波動", + "readging": "はどう", + "pos": "名詞", + "pn": -0.494505 + }, + { + "surface": "割振る", + "readging": "わりふる", + "pos": "動詞", + "pn": -0.494509 + }, + { + "surface": "転居", + "readging": "てんきょ", + "pos": "名詞", + "pn": -0.494527 + }, + { + "surface": "頼み", + "readging": "たのみ", + "pos": "名詞", + "pn": -0.494531 + }, + { + "surface": "塗装", + "readging": "とそう", + "pos": "名詞", + "pn": -0.494564 + }, + { + "surface": "罪跡", + "readging": "ざいせき", + "pos": "名詞", + "pn": -0.494565 + }, + { + "surface": "両分", + "readging": "りょうぶん", + "pos": "名詞", + "pn": -0.494587 + }, + { + "surface": "遊里", + "readging": "ゆうり", + "pos": "名詞", + "pn": -0.49462 + }, + { + "surface": "個体", + "readging": "こたい", + "pos": "名詞", + "pn": -0.494635 + }, + { + "surface": "落筆", + "readging": "らくひつ", + "pos": "名詞", + "pn": -0.494643 + }, + { + "surface": "医薬", + "readging": "いやく", + "pos": "名詞", + "pn": -0.494666 + }, + { + "surface": "引去る", + "readging": "ひきさる", + "pos": "動詞", + "pn": -0.494723 + }, + { + "surface": "すぐり", + "readging": "すぐり", + "pos": "名詞", + "pn": -0.494737 + }, + { + "surface": "蚊取線香", + "readging": "かとりせんこう", + "pos": "名詞", + "pn": -0.494749 + }, + { + "surface": "クリスチャン", + "readging": "クリスチャンネーム", + "pos": "名詞", + "pn": -0.494755 + }, + { + "surface": "郡", + "readging": "ぐん", + "pos": "名詞", + "pn": -0.49476 + }, + { + "surface": "陣地", + "readging": "じんち", + "pos": "名詞", + "pn": -0.494765 + }, + { + "surface": "水垢", + "readging": "みずあか", + "pos": "名詞", + "pn": -0.494797 + }, + { + "surface": "情", + "readging": "なさけ", + "pos": "名詞", + "pn": -0.494827 + }, + { + "surface": "倒伏", + "readging": "とうふく", + "pos": "名詞", + "pn": -0.494848 + }, + { + "surface": "墓誌", + "readging": "ぼし", + "pos": "名詞", + "pn": -0.49485 + }, + { + "surface": "投石", + "readging": "とうせき", + "pos": "名詞", + "pn": -0.494853 + }, + { + "surface": "屋根裏", + "readging": "やねうら", + "pos": "名詞", + "pn": -0.494878 + }, + { + "surface": "内密", + "readging": "ないみつ", + "pos": "名詞", + "pn": -0.494926 + }, + { + "surface": "毎度", + "readging": "まいど", + "pos": "名詞", + "pn": -0.494966 + }, + { + "surface": "振鼓", + "readging": "ふりつづみ", + "pos": "名詞", + "pn": -0.494983 + }, + { + "surface": "予備", + "readging": "よび", + "pos": "名詞", + "pn": -0.495007 + }, + { + "surface": "三脚", + "readging": "さんきゃく", + "pos": "名詞", + "pn": -0.495032 + }, + { + "surface": "逆捩じ", + "readging": "さかねじ", + "pos": "名詞", + "pn": -0.495033 + }, + { + "surface": "蚕", + "readging": "さん", + "pos": "名詞", + "pn": -0.495062 + }, + { + "surface": "裳裾", + "readging": "もすそ", + "pos": "名詞", + "pn": -0.495076 + }, + { + "surface": "片栗粉", + "readging": "かたくりこ", + "pos": "名詞", + "pn": -0.495077 + }, + { + "surface": "売言葉", + "readging": "うりことば", + "pos": "名詞", + "pn": -0.495106 + }, + { + "surface": "街娼", + "readging": "がいしょう", + "pos": "名詞", + "pn": -0.495141 + }, + { + "surface": "才槌頭", + "readging": "さいづちあたま", + "pos": "名詞", + "pn": -0.495147 + }, + { + "surface": "葉書", + "readging": "はがき", + "pos": "名詞", + "pn": -0.495183 + }, + { + "surface": "頂門", + "readging": "ちょうもん", + "pos": "名詞", + "pn": -0.495196 + }, + { + "surface": "外来", + "readging": "がいらい", + "pos": "名詞", + "pn": -0.495198 + }, + { + "surface": "熟す", + "readging": "じゅくす", + "pos": "動詞", + "pn": -0.495216 + }, + { + "surface": "折重ねる", + "readging": "おりかさねる", + "pos": "動詞", + "pn": -0.495233 + }, + { + "surface": "復路", + "readging": "ふくろ", + "pos": "名詞", + "pn": -0.495235 + }, + { + "surface": "やっとこ", + "readging": "やっとこ", + "pos": "副詞", + "pn": -0.495241 + }, + { + "surface": "乗合せる", + "readging": "のりあわせる", + "pos": "動詞", + "pn": -0.495251 + }, + { + "surface": "乳飲み子", + "readging": "ちのみご", + "pos": "名詞", + "pn": -0.495271 + }, + { + "surface": "段落", + "readging": "だんらく", + "pos": "名詞", + "pn": -0.495278 + }, + { + "surface": "蹉跌", + "readging": "さてつ", + "pos": "名詞", + "pn": -0.495281 + }, + { + "surface": "与り知る", + "readging": "あずかりしる", + "pos": "動詞", + "pn": -0.495282 + }, + { + "surface": "巻藁", + "readging": "まきわら", + "pos": "名詞", + "pn": -0.495318 + }, + { + "surface": "アイ シャドー", + "readging": "アイ シャドー", + "pos": "名詞", + "pn": -0.495353 + }, + { + "surface": "催す", + "readging": "もよおす", + "pos": "動詞", + "pn": -0.495362 + }, + { + "surface": "霊長", + "readging": "れいちょう", + "pos": "名詞", + "pn": -0.495363 + }, + { + "surface": "灯火", + "readging": "とうか", + "pos": "名詞", + "pn": -0.495404 + }, + { + "surface": "押し通す", + "readging": "おしとおす", + "pos": "動詞", + "pn": -0.495406 + }, + { + "surface": "口癖", + "readging": "くちぐせ", + "pos": "名詞", + "pn": -0.495427 + }, + { + "surface": "玉蜀黍", + "readging": "とうもろこし", + "pos": "名詞", + "pn": -0.495456 + }, + { + "surface": "孟浪", + "readging": "まんらん", + "pos": "名詞", + "pn": -0.495459 + }, + { + "surface": "唱和", + "readging": "しょうわ", + "pos": "名詞", + "pn": -0.495471 + }, + { + "surface": "筒井筒", + "readging": "つつい", + "pos": "名詞", + "pn": -0.495501 + }, + { + "surface": "判官贔屓", + "readging": "ほうがんびいき", + "pos": "名詞", + "pn": -0.495519 + }, + { + "surface": "長長", + "readging": "ながなが", + "pos": "副詞", + "pn": -0.495521 + }, + { + "surface": "欄間", + "readging": "らんま", + "pos": "名詞", + "pn": -0.495534 + }, + { + "surface": "携わる", + "readging": "たずさわる", + "pos": "動詞", + "pn": -0.495545 + }, + { + "surface": "鼠落し", + "readging": "ねずみおとし", + "pos": "名詞", + "pn": -0.495548 + }, + { + "surface": "パンク", + "readging": "パンク", + "pos": "名詞", + "pn": -0.495557 + }, + { + "surface": "日曜", + "readging": "にちよう", + "pos": "名詞", + "pn": -0.495565 + }, + { + "surface": "畳表", + "readging": "たたみおもて", + "pos": "名詞", + "pn": -0.495572 + }, + { + "surface": "一過", + "readging": "いっか", + "pos": "名詞", + "pn": -0.495578 + }, + { + "surface": "世継", + "readging": "よつぎ", + "pos": "名詞", + "pn": -0.495595 + }, + { + "surface": "ゼリー", + "readging": "ゼリー", + "pos": "名詞", + "pn": -0.495602 + }, + { + "surface": "ハンチング", + "readging": "ハンチング", + "pos": "名詞", + "pn": -0.495603 + }, + { + "surface": "笹葺", + "readging": "ささぶき", + "pos": "名詞", + "pn": -0.495615 + }, + { + "surface": "マーガリン", + "readging": "マーガリン", + "pos": "名詞", + "pn": -0.495655 + }, + { + "surface": "棗", + "readging": "なつめ", + "pos": "名詞", + "pn": -0.495675 + }, + { + "surface": "地固め", + "readging": "じがため", + "pos": "名詞", + "pn": -0.495675 + }, + { + "surface": "希薄", + "readging": "きはく", + "pos": "名詞", + "pn": -0.495699 + }, + { + "surface": "僚船", + "readging": "りょうせん", + "pos": "名詞", + "pn": -0.495719 + }, + { + "surface": "差翳す", + "readging": "さしかざす", + "pos": "動詞", + "pn": -0.495724 + }, + { + "surface": "婦女", + "readging": "ふじょ", + "pos": "名詞", + "pn": -0.49574 + }, + { + "surface": "朽葉", + "readging": "くちば", + "pos": "名詞", + "pn": -0.495741 + }, + { + "surface": "陸釣", + "readging": "おかづり", + "pos": "名詞", + "pn": -0.495777 + }, + { + "surface": "間近", + "readging": "まぢか", + "pos": "名詞", + "pn": -0.495799 + }, + { + "surface": "道祖神", + "readging": "どうそじん", + "pos": "名詞", + "pn": -0.495809 + }, + { + "surface": "翠黛", + "readging": "すいたい", + "pos": "名詞", + "pn": -0.495821 + }, + { + "surface": "無能", + "readging": "むのう", + "pos": "名詞", + "pn": -0.495823 + }, + { + "surface": "固目", + "readging": "かため", + "pos": "名詞", + "pn": -0.495837 + }, + { + "surface": "御髪", + "readging": "みぐし", + "pos": "名詞", + "pn": -0.495841 + }, + { + "surface": "夜桜", + "readging": "よざくら", + "pos": "名詞", + "pn": -0.495849 + }, + { + "surface": "朝暮", + "readging": "ちょうぼ", + "pos": "名詞", + "pn": -0.495861 + }, + { + "surface": "童謡", + "readging": "どうよう", + "pos": "名詞", + "pn": -0.495871 + }, + { + "surface": "追分節", + "readging": "おいわけ", + "pos": "名詞", + "pn": -0.495942 + }, + { + "surface": "ルーム", + "readging": "ルーム", + "pos": "名詞", + "pn": -0.495944 + }, + { + "surface": "千歳飴", + "readging": "ちとせあめ", + "pos": "名詞", + "pn": -0.49596 + }, + { + "surface": "魚", + "readging": "うお", + "pos": "名詞", + "pn": -0.495972 + }, + { + "surface": "蛍", + "readging": "ほたる", + "pos": "名詞", + "pn": -0.495978 + }, + { + "surface": "ハンドバッグ", + "readging": "ハンドバッグ", + "pos": "名詞", + "pn": -0.495984 + }, + { + "surface": "奴", + "readging": "やっこ", + "pos": "名詞", + "pn": -0.496003 + }, + { + "surface": "参ずる", + "readging": "さんずる", + "pos": "動詞", + "pn": -0.496023 + }, + { + "surface": "無人", + "readging": "むにん", + "pos": "名詞", + "pn": -0.496026 + }, + { + "surface": "戒め", + "readging": "いましめ", + "pos": "名詞", + "pn": -0.496031 + }, + { + "surface": "棒鱈", + "readging": "ぼうだら", + "pos": "名詞", + "pn": -0.496033 + }, + { + "surface": "他流", + "readging": "たりゅう", + "pos": "名詞", + "pn": -0.496041 + }, + { + "surface": "蛇", + "readging": "くちなわ", + "pos": "名詞", + "pn": -0.496058 + }, + { + "surface": "摘む", + "readging": "つむ", + "pos": "動詞", + "pn": -0.496061 + }, + { + "surface": "判", + "readging": "ばん", + "pos": "名詞", + "pn": -0.496073 + }, + { + "surface": "コーチゾン", + "readging": "コーチゾン", + "pos": "名詞", + "pn": -0.496077 + }, + { + "surface": "一六", + "readging": "いちろく", + "pos": "名詞", + "pn": -0.496105 + }, + { + "surface": "難曲", + "readging": "なんきょく", + "pos": "名詞", + "pn": -0.496128 + }, + { + "surface": "オートバイ", + "readging": "オートバイ", + "pos": "名詞", + "pn": -0.496134 + }, + { + "surface": "手向け", + "readging": "たむけ", + "pos": "名詞", + "pn": -0.496147 + }, + { + "surface": "愚息", + "readging": "ぐそく", + "pos": "名詞", + "pn": -0.496148 + }, + { + "surface": "青木", + "readging": "あおき", + "pos": "名詞", + "pn": -0.496158 + }, + { + "surface": "石灰岩", + "readging": "せっかいがん", + "pos": "名詞", + "pn": -0.496162 + }, + { + "surface": "秤量", + "readging": "ひょうりょう", + "pos": "名詞", + "pn": -0.496166 + }, + { + "surface": "筏", + "readging": "いかだ", + "pos": "名詞", + "pn": -0.496185 + }, + { + "surface": "許婚", + "readging": "きょこん", + "pos": "名詞", + "pn": -0.496187 + }, + { + "surface": "支度", + "readging": "したく", + "pos": "名詞", + "pn": -0.496194 + }, + { + "surface": "禿鷲", + "readging": "はげわし", + "pos": "名詞", + "pn": -0.496201 + }, + { + "surface": "修", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.496222 + }, + { + "surface": "スコッチ", + "readging": "スコッチ", + "pos": "名詞", + "pn": -0.496226 + }, + { + "surface": "カーブ", + "readging": "カーブ", + "pos": "名詞", + "pn": -0.496228 + }, + { + "surface": "角立てる", + "readging": "かどだてる", + "pos": "動詞", + "pn": -0.496236 + }, + { + "surface": "果し合い", + "readging": "はたしあい", + "pos": "名詞", + "pn": -0.496237 + }, + { + "surface": "塵芥", + "readging": "じんかい", + "pos": "名詞", + "pn": -0.496246 + }, + { + "surface": "庵室", + "readging": "あんしつ", + "pos": "名詞", + "pn": -0.496271 + }, + { + "surface": "水菓子", + "readging": "みずがし", + "pos": "名詞", + "pn": -0.496279 + }, + { + "surface": "水天", + "readging": "すいてん", + "pos": "名詞", + "pn": -0.496281 + }, + { + "surface": "肥厚", + "readging": "ひこう", + "pos": "名詞", + "pn": -0.496285 + }, + { + "surface": "オーラミン", + "readging": "オーラミン", + "pos": "名詞", + "pn": -0.496289 + }, + { + "surface": "ウインチ", + "readging": "ウインチ", + "pos": "名詞", + "pn": -0.4963 + }, + { + "surface": "獣", + "readging": "けもの", + "pos": "名詞", + "pn": -0.496303 + }, + { + "surface": "如何様", + "readging": "いかさま", + "pos": "副詞", + "pn": -0.496309 + }, + { + "surface": "藤", + "readging": "とう", + "pos": "名詞", + "pn": -0.496312 + }, + { + "surface": "乾電池", + "readging": "かんでんち", + "pos": "名詞", + "pn": -0.496316 + }, + { + "surface": "勘違い", + "readging": "かんちがい", + "pos": "名詞", + "pn": -0.496317 + }, + { + "surface": "振い落す", + "readging": "ふるいおとす", + "pos": "動詞", + "pn": -0.496324 + }, + { + "surface": "職員", + "readging": "しょくいん", + "pos": "名詞", + "pn": -0.496333 + }, + { + "surface": "鋳物", + "readging": "いもの", + "pos": "名詞", + "pn": -0.496346 + }, + { + "surface": "牛痘", + "readging": "ぎゅうとう", + "pos": "名詞", + "pn": -0.496357 + }, + { + "surface": "起き伏し", + "readging": "おきふし", + "pos": "名詞", + "pn": -0.496361 + }, + { + "surface": "総監", + "readging": "そうかん", + "pos": "名詞", + "pn": -0.496385 + }, + { + "surface": "枡形", + "readging": "ますがた", + "pos": "名詞", + "pn": -0.496395 + }, + { + "surface": "基底", + "readging": "きてい", + "pos": "名詞", + "pn": -0.496406 + }, + { + "surface": "ぶすぶす", + "readging": "ぶすぶす", + "pos": "副詞", + "pn": -0.496417 + }, + { + "surface": "フルーツ", + "readging": "フルーツパーラー", + "pos": "名詞", + "pn": -0.49642 + }, + { + "surface": "這纏る", + "readging": "はいまつわる", + "pos": "動詞", + "pn": -0.496432 + }, + { + "surface": "挨拶", + "readging": "あいさつ", + "pos": "名詞", + "pn": -0.496452 + }, + { + "surface": "ガソリン", + "readging": "ガソリン", + "pos": "名詞", + "pn": -0.496459 + }, + { + "surface": "ヨーク", + "readging": "ヨーク", + "pos": "名詞", + "pn": -0.496467 + }, + { + "surface": "最大", + "readging": "さいだい", + "pos": "名詞", + "pn": -0.49647 + }, + { + "surface": "白膠木", + "readging": "ぬるで", + "pos": "名詞", + "pn": -0.496494 + }, + { + "surface": "葦", + "readging": "よし", + "pos": "名詞", + "pn": -0.496496 + }, + { + "surface": "調停", + "readging": "ちょうてい", + "pos": "名詞", + "pn": -0.496511 + }, + { + "surface": "吸収", + "readging": "きゅうしゅう", + "pos": "名詞", + "pn": -0.496575 + }, + { + "surface": "差控える", + "readging": "さしひかえる", + "pos": "動詞", + "pn": -0.496579 + }, + { + "surface": "奇聞", + "readging": "きぶん", + "pos": "名詞", + "pn": -0.496584 + }, + { + "surface": "づける", + "readging": "づける", + "pos": "動詞", + "pn": -0.496591 + }, + { + "surface": "梳る", + "readging": "くしけずる", + "pos": "動詞", + "pn": -0.496595 + }, + { + "surface": "しゃっちょこ張る", + "readging": "しゃっちょこばる", + "pos": "動詞", + "pn": -0.496616 + }, + { + "surface": "話題", + "readging": "わだい", + "pos": "名詞", + "pn": -0.496628 + }, + { + "surface": "議事", + "readging": "ぎじ", + "pos": "名詞", + "pn": -0.49663 + }, + { + "surface": "腓腹筋", + "readging": "ひふくきん", + "pos": "名詞", + "pn": -0.496638 + }, + { + "surface": "基幹", + "readging": "きかん", + "pos": "名詞", + "pn": -0.496665 + }, + { + "surface": "屡次", + "readging": "るじ", + "pos": "名詞", + "pn": -0.496718 + }, + { + "surface": "羽交", + "readging": "はがい", + "pos": "名詞", + "pn": -0.496718 + }, + { + "surface": "雨蛙", + "readging": "あまがえる", + "pos": "名詞", + "pn": -0.496744 + }, + { + "surface": "ジグソー パズル", + "readging": "ジグソー パズル", + "pos": "名詞", + "pn": -0.496746 + }, + { + "surface": "吾妻下駄", + "readging": "あずまげた", + "pos": "名詞", + "pn": -0.496779 + }, + { + "surface": "灰掻き", + "readging": "はいかき", + "pos": "名詞", + "pn": -0.496805 + }, + { + "surface": "箕", + "readging": "み", + "pos": "名詞", + "pn": -0.496816 + }, + { + "surface": "雑文", + "readging": "ざつぶん", + "pos": "名詞", + "pn": -0.496867 + }, + { + "surface": "短日月", + "readging": "たんじつげつ", + "pos": "名詞", + "pn": -0.496869 + }, + { + "surface": "計算書", + "readging": "けいさんしょ", + "pos": "名詞", + "pn": -0.496901 + }, + { + "surface": "ホスピス", + "readging": "ホスピス", + "pos": "名詞", + "pn": -0.496911 + }, + { + "surface": "掻い摘む", + "readging": "かいつまむ", + "pos": "動詞", + "pn": -0.496922 + }, + { + "surface": "浪人", + "readging": "ろうにん", + "pos": "名詞", + "pn": -0.496923 + }, + { + "surface": "小僧っ子", + "readging": "こぞっこ", + "pos": "名詞", + "pn": -0.496933 + }, + { + "surface": "ずっと", + "readging": "ずっと", + "pos": "副詞", + "pn": -0.496938 + }, + { + "surface": "旌旗", + "readging": "せいき", + "pos": "名詞", + "pn": -0.496968 + }, + { + "surface": "進貢", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.496971 + }, + { + "surface": "アイス", + "readging": "アイスクリーム", + "pos": "名詞", + "pn": -0.496989 + }, + { + "surface": "袷", + "readging": "あわせ", + "pos": "名詞", + "pn": -0.496995 + }, + { + "surface": "拾う", + "readging": "ひろう", + "pos": "動詞", + "pn": -0.496998 + }, + { + "surface": "献上博多", + "readging": "けんじょうはかた", + "pos": "名詞", + "pn": -0.497 + }, + { + "surface": "波戸場", + "readging": "はとば", + "pos": "名詞", + "pn": -0.497015 + }, + { + "surface": "唖", + "readging": "おし", + "pos": "名詞", + "pn": -0.497016 + }, + { + "surface": "入母屋", + "readging": "いりもや", + "pos": "名詞", + "pn": -0.497029 + }, + { + "surface": "捩り", + "readging": "もじり", + "pos": "名詞", + "pn": -0.497037 + }, + { + "surface": "音曲", + "readging": "おんぎょく", + "pos": "名詞", + "pn": -0.497091 + }, + { + "surface": "ラスト", + "readging": "ラストスパート", + "pos": "名詞", + "pn": -0.497095 + }, + { + "surface": "若芽", + "readging": "わかめ", + "pos": "名詞", + "pn": -0.497113 + }, + { + "surface": "併用", + "readging": "へいよう", + "pos": "名詞", + "pn": -0.497116 + }, + { + "surface": "お初穂", + "readging": "おはつお", + "pos": "名詞", + "pn": -0.497161 + }, + { + "surface": "アーケード", + "readging": "アーケード", + "pos": "名詞", + "pn": -0.497177 + }, + { + "surface": "昇進", + "readging": "しょうしん", + "pos": "名詞", + "pn": -0.497193 + }, + { + "surface": "考え事", + "readging": "かんがえごと", + "pos": "名詞", + "pn": -0.497195 + }, + { + "surface": "驚", + "readging": "きょう", + "pos": "名詞", + "pn": -0.497204 + }, + { + "surface": "春めく", + "readging": "はるめく", + "pos": "動詞", + "pn": -0.497204 + }, + { + "surface": "立向かう", + "readging": "たちむかう", + "pos": "動詞", + "pn": -0.49721 + }, + { + "surface": "栄進", + "readging": "えいしん", + "pos": "名詞", + "pn": -0.497228 + }, + { + "surface": "密集", + "readging": "みっしゅう", + "pos": "名詞", + "pn": -0.497229 + }, + { + "surface": "ブルドッグ", + "readging": "ブルドッグ", + "pos": "名詞", + "pn": -0.497257 + }, + { + "surface": "猶猶", + "readging": "なおなお", + "pos": "副詞", + "pn": -0.497284 + }, + { + "surface": "つけ板", + "readging": "つけいた", + "pos": "名詞", + "pn": -0.49729 + }, + { + "surface": "歯痛", + "readging": "しつう", + "pos": "名詞", + "pn": -0.497305 + }, + { + "surface": "仮借", + "readging": "かしゃく", + "pos": "名詞", + "pn": -0.49731 + }, + { + "surface": "先走る", + "readging": "さきばしる", + "pos": "動詞", + "pn": -0.497317 + }, + { + "surface": "馬刀貝", + "readging": "まてがい", + "pos": "名詞", + "pn": -0.497344 + }, + { + "surface": "公務員", + "readging": "こうむいん", + "pos": "名詞", + "pn": -0.497347 + }, + { + "surface": "鼠", + "readging": "ねず", + "pos": "名詞", + "pn": -0.497372 + }, + { + "surface": "台辞", + "readging": "だいじ", + "pos": "名詞", + "pn": -0.497376 + }, + { + "surface": "紙芝居", + "readging": "かみしばい", + "pos": "名詞", + "pn": -0.497404 + }, + { + "surface": "櫂", + "readging": "かい", + "pos": "名詞", + "pn": -0.497427 + }, + { + "surface": "切髪", + "readging": "きりかみ", + "pos": "名詞", + "pn": -0.497486 + }, + { + "surface": "河口", + "readging": "かこう", + "pos": "名詞", + "pn": -0.497487 + }, + { + "surface": "挿頭", + "readging": "かざし", + "pos": "名詞", + "pn": -0.497505 + }, + { + "surface": "換価", + "readging": "かんか", + "pos": "名詞", + "pn": -0.497526 + }, + { + "surface": "娑羅双樹", + "readging": "さらそうじゅ", + "pos": "名詞", + "pn": -0.497552 + }, + { + "surface": "翌朝", + "readging": "よくちょう", + "pos": "名詞", + "pn": -0.497563 + }, + { + "surface": "蹂躙", + "readging": "じゅうりん", + "pos": "名詞", + "pn": -0.497586 + }, + { + "surface": "入費", + "readging": "にゅうひ", + "pos": "名詞", + "pn": -0.497592 + }, + { + "surface": "クレンジング クリーム", + "readging": "クレンジング クリーム", + "pos": "名詞", + "pn": -0.497605 + }, + { + "surface": "鍬", + "readging": "くわ", + "pos": "名詞", + "pn": -0.497626 + }, + { + "surface": "戸長", + "readging": "こちょう", + "pos": "名詞", + "pn": -0.497683 + }, + { + "surface": "報復", + "readging": "ほうふく", + "pos": "名詞", + "pn": -0.497684 + }, + { + "surface": "ビタミン", + "readging": "ビタミン", + "pos": "名詞", + "pn": -0.497684 + }, + { + "surface": "陸稲", + "readging": "おかぼ", + "pos": "名詞", + "pn": -0.497705 + }, + { + "surface": "専有", + "readging": "せんゆう", + "pos": "名詞", + "pn": -0.497707 + }, + { + "surface": "入来", + "readging": "じゅらい", + "pos": "名詞", + "pn": -0.497796 + }, + { + "surface": "巡演", + "readging": "じゅんえん", + "pos": "名詞", + "pn": -0.497813 + }, + { + "surface": "恫喝", + "readging": "どうかつ", + "pos": "名詞", + "pn": -0.497869 + }, + { + "surface": "連呼", + "readging": "れんこ", + "pos": "名詞", + "pn": -0.497873 + }, + { + "surface": "傭兵", + "readging": "ようへい", + "pos": "名詞", + "pn": -0.497879 + }, + { + "surface": "ごかし", + "readging": "ごかし", + "pos": "名詞", + "pn": -0.497906 + }, + { + "surface": "鐚一文", + "readging": "びたいちもん", + "pos": "名詞", + "pn": -0.497911 + }, + { + "surface": "闖入", + "readging": "ちんにゅう", + "pos": "名詞", + "pn": -0.497936 + }, + { + "surface": "開帳", + "readging": "かいちょう", + "pos": "名詞", + "pn": -0.497949 + }, + { + "surface": "忠言", + "readging": "ちゅうげん", + "pos": "名詞", + "pn": -0.497968 + }, + { + "surface": "無能力", + "readging": "むのうりょく", + "pos": "名詞", + "pn": -0.497971 + }, + { + "surface": "雑録", + "readging": "ざつろく", + "pos": "名詞", + "pn": -0.497972 + }, + { + "surface": "鳥威し", + "readging": "とりおどし", + "pos": "名詞", + "pn": -0.498054 + }, + { + "surface": "山桃", + "readging": "やまもも", + "pos": "名詞", + "pn": -0.498068 + }, + { + "surface": "隣室", + "readging": "りんしつ", + "pos": "名詞", + "pn": -0.498075 + }, + { + "surface": "明け離れる", + "readging": "あけはなれる", + "pos": "動詞", + "pn": -0.498101 + }, + { + "surface": "葉柄", + "readging": "ようへい", + "pos": "名詞", + "pn": -0.498113 + }, + { + "surface": "雲母", + "readging": "うんも", + "pos": "名詞", + "pn": -0.498129 + }, + { + "surface": "荷縄", + "readging": "になわ", + "pos": "名詞", + "pn": -0.498133 + }, + { + "surface": "鶫", + "readging": "つぐみ", + "pos": "名詞", + "pn": -0.498142 + }, + { + "surface": "上がり端", + "readging": "あがりはな", + "pos": "名詞", + "pn": -0.498158 + }, + { + "surface": "心入れ", + "readging": "こころいれ", + "pos": "名詞", + "pn": -0.49825 + }, + { + "surface": "両蓋", + "readging": "りょうぶた", + "pos": "名詞", + "pn": -0.498255 + }, + { + "surface": "端末", + "readging": "たんまつ", + "pos": "名詞", + "pn": -0.498258 + }, + { + "surface": "缶詰", + "readging": "かんづめ", + "pos": "名詞", + "pn": -0.498274 + }, + { + "surface": "斎", + "readging": "さい", + "pos": "名詞", + "pn": -0.498277 + }, + { + "surface": "板葺", + "readging": "いたぶき", + "pos": "名詞", + "pn": -0.498289 + }, + { + "surface": "製図", + "readging": "せいず", + "pos": "名詞", + "pn": -0.498314 + }, + { + "surface": "ヘロイン", + "readging": "ヘロイン", + "pos": "名詞", + "pn": -0.49832 + }, + { + "surface": "実行", + "readging": "じっこう", + "pos": "名詞", + "pn": -0.498324 + }, + { + "surface": "火口", + "readging": "かこう", + "pos": "名詞", + "pn": -0.49833 + }, + { + "surface": "簓", + "readging": "ささら", + "pos": "名詞", + "pn": -0.498333 + }, + { + "surface": "鼻紙", + "readging": "はながみ", + "pos": "名詞", + "pn": -0.498364 + }, + { + "surface": "連吟", + "readging": "れんぎん", + "pos": "名詞", + "pn": -0.498367 + }, + { + "surface": "掻曇る", + "readging": "かきくもる", + "pos": "動詞", + "pn": -0.498379 + }, + { + "surface": "抱腹", + "readging": "ほうふく", + "pos": "名詞", + "pn": -0.498397 + }, + { + "surface": "飛行", + "readging": "ひこう", + "pos": "名詞", + "pn": -0.498398 + }, + { + "surface": "山川", + "readging": "やまがわ", + "pos": "名詞", + "pn": -0.498403 + }, + { + "surface": "舞子", + "readging": "まいこ", + "pos": "名詞", + "pn": -0.498408 + }, + { + "surface": "ピント", + "readging": "ピント", + "pos": "名詞", + "pn": -0.498417 + }, + { + "surface": "まざまざ", + "readging": "まざまざ", + "pos": "副詞", + "pn": -0.498427 + }, + { + "surface": "遊覧", + "readging": "ゆうらん", + "pos": "名詞", + "pn": -0.498427 + }, + { + "surface": "鋼", + "readging": "はがね", + "pos": "名詞", + "pn": -0.498433 + }, + { + "surface": "厨房", + "readging": "ちゅうぼう", + "pos": "名詞", + "pn": -0.498446 + }, + { + "surface": "榛", + "readging": "はしばみ", + "pos": "名詞", + "pn": -0.498482 + }, + { + "surface": "割印", + "readging": "わりいん", + "pos": "名詞", + "pn": -0.498507 + }, + { + "surface": "縁取", + "readging": "へりとり", + "pos": "名詞", + "pn": -0.498514 + }, + { + "surface": "薄片", + "readging": "はくへん", + "pos": "名詞", + "pn": -0.498523 + }, + { + "surface": "後刻", + "readging": "ごこく", + "pos": "名詞", + "pn": -0.498525 + }, + { + "surface": "麝香鹿", + "readging": "じゃこうじか", + "pos": "名詞", + "pn": -0.498533 + }, + { + "surface": "検算", + "readging": "けんざん", + "pos": "名詞", + "pn": -0.498539 + }, + { + "surface": "和解", + "readging": "わかい", + "pos": "名詞", + "pn": -0.498544 + }, + { + "surface": "冷水", + "readging": "ひやみず", + "pos": "名詞", + "pn": -0.498558 + }, + { + "surface": "判定", + "readging": "はんてい", + "pos": "名詞", + "pn": -0.498573 + }, + { + "surface": "おでこ", + "readging": "おでこ", + "pos": "名詞", + "pn": -0.498576 + }, + { + "surface": "夜着", + "readging": "よぎ", + "pos": "名詞", + "pn": -0.498592 + }, + { + "surface": "府", + "readging": "ふ", + "pos": "名詞", + "pn": -0.498595 + }, + { + "surface": "無駄口", + "readging": "むだぐち", + "pos": "名詞", + "pn": -0.498629 + }, + { + "surface": "電極", + "readging": "でんきょく", + "pos": "名詞", + "pn": -0.498635 + }, + { + "surface": "葉緑素", + "readging": "ようりょくそ", + "pos": "名詞", + "pn": -0.498639 + }, + { + "surface": "小袖", + "readging": "こそで", + "pos": "名詞", + "pn": -0.49864 + }, + { + "surface": "眷顧", + "readging": "けんこ", + "pos": "名詞", + "pn": -0.498645 + }, + { + "surface": "十分条件", + "readging": "じゅうぶんじょうけん", + "pos": "名詞", + "pn": -0.498646 + }, + { + "surface": "蹼", + "readging": "みずかき", + "pos": "名詞", + "pn": -0.498682 + }, + { + "surface": "未だ未だ", + "readging": "まだまだ", + "pos": "副詞", + "pn": -0.498685 + }, + { + "surface": "涙痕", + "readging": "るいこん", + "pos": "名詞", + "pn": -0.498702 + }, + { + "surface": "挫傷", + "readging": "ざしょう", + "pos": "名詞", + "pn": -0.498719 + }, + { + "surface": "堆積", + "readging": "たいせき", + "pos": "名詞", + "pn": -0.498726 + }, + { + "surface": "防雪", + "readging": "ぼうせつ", + "pos": "名詞", + "pn": -0.498734 + }, + { + "surface": "参拝", + "readging": "さんぱい", + "pos": "名詞", + "pn": -0.498741 + }, + { + "surface": "すか", + "readging": "すか", + "pos": "名詞", + "pn": -0.498757 + }, + { + "surface": "唐竹割", + "readging": "からたけわり", + "pos": "名詞", + "pn": -0.498767 + }, + { + "surface": "蚕卵紙", + "readging": "さんらんし", + "pos": "名詞", + "pn": -0.498819 + }, + { + "surface": "骨堂", + "readging": "こつどう", + "pos": "名詞", + "pn": -0.498858 + }, + { + "surface": "引っ越す", + "readging": "ひっこす", + "pos": "動詞", + "pn": -0.498876 + }, + { + "surface": "リレー", + "readging": "リレーレース", + "pos": "名詞", + "pn": -0.498899 + }, + { + "surface": "情状酌量", + "readging": "じょうじょうしゃくりょう", + "pos": "名詞", + "pn": -0.498909 + }, + { + "surface": "逆茂木", + "readging": "さかもぎ", + "pos": "名詞", + "pn": -0.498918 + }, + { + "surface": "火熨斗", + "readging": "ひのし", + "pos": "名詞", + "pn": -0.498926 + }, + { + "surface": "咽ぶ", + "readging": "むせぶ", + "pos": "動詞", + "pn": -0.498936 + }, + { + "surface": "渋", + "readging": "しぶ", + "pos": "名詞", + "pn": -0.498937 + }, + { + "surface": "万代", + "readging": "ばんだい", + "pos": "名詞", + "pn": -0.498952 + }, + { + "surface": "宅", + "readging": "たく", + "pos": "名詞", + "pn": -0.498954 + }, + { + "surface": "赤黒い", + "readging": "あかぐろい", + "pos": "形容詞", + "pn": -0.498963 + }, + { + "surface": "地形", + "readging": "ちけい", + "pos": "名詞", + "pn": -0.498969 + }, + { + "surface": "規律", + "readging": "きりつ", + "pos": "名詞", + "pn": -0.498984 + }, + { + "surface": "思案", + "readging": "しあん", + "pos": "名詞", + "pn": -0.498993 + }, + { + "surface": "経歴", + "readging": "けいれき", + "pos": "名詞", + "pn": -0.499007 + }, + { + "surface": "話", + "readging": "はなし", + "pos": "名詞", + "pn": -0.499008 + }, + { + "surface": "坤", + "readging": "こん", + "pos": "名詞", + "pn": -0.499017 + }, + { + "surface": "世離れる", + "readging": "よばなれる", + "pos": "動詞", + "pn": -0.499035 + }, + { + "surface": "埴土", + "readging": "へなつち", + "pos": "名詞", + "pn": -0.499046 + }, + { + "surface": "喪失", + "readging": "そうしつ", + "pos": "名詞", + "pn": -0.499146 + }, + { + "surface": "平椀", + "readging": "ひらわん", + "pos": "名詞", + "pn": -0.49915 + }, + { + "surface": "各員", + "readging": "かくいん", + "pos": "名詞", + "pn": -0.499155 + }, + { + "surface": "私語", + "readging": "ささめごと", + "pos": "名詞", + "pn": -0.499167 + }, + { + "surface": "旅籠銭", + "readging": "はたごせん", + "pos": "名詞", + "pn": -0.499203 + }, + { + "surface": "山の端", + "readging": "やまのは", + "pos": "名詞", + "pn": -0.499208 + }, + { + "surface": "当面", + "readging": "とうめん", + "pos": "名詞", + "pn": -0.499241 + }, + { + "surface": "引取る", + "readging": "ひきとる", + "pos": "動詞", + "pn": -0.499277 + }, + { + "surface": "敷", + "readging": "ふ", + "pos": "名詞", + "pn": -0.49929 + }, + { + "surface": "モザイク病", + "readging": "モザイクびょう", + "pos": "名詞", + "pn": -0.499305 + }, + { + "surface": "ガス", + "readging": "ガスマスク", + "pos": "名詞", + "pn": -0.499373 + }, + { + "surface": "相役", + "readging": "あいやく", + "pos": "名詞", + "pn": -0.499387 + }, + { + "surface": "鉱脈", + "readging": "こうみゃく", + "pos": "名詞", + "pn": -0.499396 + }, + { + "surface": "お手付き", + "readging": "おてつき", + "pos": "名詞", + "pn": -0.499431 + }, + { + "surface": "半月", + "readging": "はんつき", + "pos": "名詞", + "pn": -0.499444 + }, + { + "surface": "燃えさし", + "readging": "もえさし", + "pos": "名詞", + "pn": -0.49945 + }, + { + "surface": "仮題", + "readging": "かだい", + "pos": "名詞", + "pn": -0.499457 + }, + { + "surface": "根基", + "readging": "こんき", + "pos": "名詞", + "pn": -0.499461 + }, + { + "surface": "胸奥", + "readging": "きょうおう", + "pos": "名詞", + "pn": -0.499466 + }, + { + "surface": "秤", + "readging": "はかり", + "pos": "名詞", + "pn": -0.499466 + }, + { + "surface": "娶る", + "readging": "めとる", + "pos": "動詞", + "pn": -0.49947 + }, + { + "surface": "乗換える", + "readging": "のりかえる", + "pos": "動詞", + "pn": -0.499492 + }, + { + "surface": "肘掛", + "readging": "ひじかけ", + "pos": "名詞", + "pn": -0.499511 + }, + { + "surface": "捷径", + "readging": "しょうけい", + "pos": "名詞", + "pn": -0.499522 + }, + { + "surface": "洋紙", + "readging": "ようし", + "pos": "名詞", + "pn": -0.499524 + }, + { + "surface": "枕木", + "readging": "まくらぎ", + "pos": "名詞", + "pn": -0.499544 + }, + { + "surface": "衣紋竿", + "readging": "えもんざお", + "pos": "名詞", + "pn": -0.499581 + }, + { + "surface": "武辺", + "readging": "ぶへん", + "pos": "名詞", + "pn": -0.499599 + }, + { + "surface": "軽", + "readging": "けい", + "pos": "名詞", + "pn": -0.499613 + }, + { + "surface": "全壊", + "readging": "ぜんかい", + "pos": "名詞", + "pn": -0.499656 + }, + { + "surface": "末期", + "readging": "まつご", + "pos": "名詞", + "pn": -0.499661 + }, + { + "surface": "家移り", + "readging": "やうつり", + "pos": "名詞", + "pn": -0.499727 + }, + { + "surface": "竹篦", + "readging": "たけべら", + "pos": "名詞", + "pn": -0.499731 + }, + { + "surface": "塩梅", + "readging": "あんばい", + "pos": "名詞", + "pn": -0.499735 + }, + { + "surface": "獅子鼻", + "readging": "ししばな", + "pos": "名詞", + "pn": -0.49975 + }, + { + "surface": "再拝", + "readging": "さいはい", + "pos": "名詞", + "pn": -0.499757 + }, + { + "surface": "打紐", + "readging": "うちひも", + "pos": "名詞", + "pn": -0.499768 + }, + { + "surface": "打緒", + "readging": "うちお", + "pos": "名詞", + "pn": -0.499768 + }, + { + "surface": "仮名遣", + "readging": "かなづかい", + "pos": "名詞", + "pn": -0.499802 + }, + { + "surface": "早合点", + "readging": "はやがてん", + "pos": "名詞", + "pn": -0.499835 + }, + { + "surface": "蟷螂", + "readging": "とうろう", + "pos": "名詞", + "pn": -0.499835 + }, + { + "surface": "鯨油", + "readging": "げいゆ", + "pos": "名詞", + "pn": -0.499875 + }, + { + "surface": "蝗", + "readging": "いなご", + "pos": "名詞", + "pn": -0.499925 + }, + { + "surface": "断定", + "readging": "だんてい", + "pos": "名詞", + "pn": -0.499946 + }, + { + "surface": "見守る", + "readging": "みまもる", + "pos": "動詞", + "pn": -0.499949 + }, + { + "surface": "手探り", + "readging": "てさぐり", + "pos": "名詞", + "pn": -0.499964 + }, + { + "surface": "かじき", + "readging": "かじき", + "pos": "名詞", + "pn": -0.499972 + }, + { + "surface": "届", + "readging": "とどけ", + "pos": "名詞", + "pn": -0.499974 + }, + { + "surface": "あて名", + "readging": "あてな", + "pos": "名詞", + "pn": -0.499975 + }, + { + "surface": "覆輪", + "readging": "ふくりん", + "pos": "名詞", + "pn": -0.49998 + }, + { + "surface": "誓文", + "readging": "せいもん", + "pos": "名詞", + "pn": -0.499987 + }, + { + "surface": "猛獣", + "readging": "もうじゅう", + "pos": "名詞", + "pn": -0.499993 + }, + { + "surface": "山男", + "readging": "やまおとこ", + "pos": "名詞", + "pn": -0.50001 + }, + { + "surface": "水底", + "readging": "みなそこ", + "pos": "名詞", + "pn": -0.500046 + }, + { + "surface": "預金", + "readging": "よきん", + "pos": "名詞", + "pn": -0.500051 + }, + { + "surface": "このしろ", + "readging": "このしろ", + "pos": "名詞", + "pn": -0.500066 + }, + { + "surface": "重量", + "readging": "じゅうりょう", + "pos": "名詞", + "pn": -0.500068 + }, + { + "surface": "ごっこ", + "readging": "ごっこ", + "pos": "名詞", + "pn": -0.500075 + }, + { + "surface": "ハート", + "readging": "ハート", + "pos": "名詞", + "pn": -0.500083 + }, + { + "surface": "灰篩", + "readging": "はいふるい", + "pos": "名詞", + "pn": -0.50013 + }, + { + "surface": "文学", + "readging": "ぶんがく", + "pos": "名詞", + "pn": -0.500141 + }, + { + "surface": "前説", + "readging": "ぜんせつ", + "pos": "名詞", + "pn": -0.500179 + }, + { + "surface": "船乗り", + "readging": "ふなのり", + "pos": "名詞", + "pn": -0.500196 + }, + { + "surface": "捕食", + "readging": "ほしょく", + "pos": "名詞", + "pn": -0.500208 + }, + { + "surface": "肘木", + "readging": "ひじき", + "pos": "名詞", + "pn": -0.500215 + }, + { + "surface": "永久", + "readging": "とわ", + "pos": "名詞", + "pn": -0.500218 + }, + { + "surface": "転がり込む", + "readging": "ころがりこむ", + "pos": "動詞", + "pn": -0.500221 + }, + { + "surface": "俗用", + "readging": "ぞくよう", + "pos": "名詞", + "pn": -0.500237 + }, + { + "surface": "皮下", + "readging": "ひか", + "pos": "名詞", + "pn": -0.500252 + }, + { + "surface": "名札", + "readging": "なふだ", + "pos": "名詞", + "pn": -0.500265 + }, + { + "surface": "机", + "readging": "き", + "pos": "名詞", + "pn": -0.500267 + }, + { + "surface": "一門", + "readging": "いちもん", + "pos": "名詞", + "pn": -0.500282 + }, + { + "surface": "反発", + "readging": "はんぱつ", + "pos": "名詞", + "pn": -0.500296 + }, + { + "surface": "様態", + "readging": "ようたい", + "pos": "名詞", + "pn": -0.500319 + }, + { + "surface": "玉葱", + "readging": "たまねぎ", + "pos": "名詞", + "pn": -0.50037 + }, + { + "surface": "鳥追", + "readging": "とりおい", + "pos": "名詞", + "pn": -0.500431 + }, + { + "surface": "茅", + "readging": "かや", + "pos": "名詞", + "pn": -0.500459 + }, + { + "surface": "烏麦", + "readging": "からすむぎ", + "pos": "名詞", + "pn": -0.5005 + }, + { + "surface": "うつ伏せる", + "readging": "うつぶせる", + "pos": "動詞", + "pn": -0.500503 + }, + { + "surface": "如法暗夜", + "readging": "にょほうあんや", + "pos": "名詞", + "pn": -0.500529 + }, + { + "surface": "格", + "readging": "かく", + "pos": "名詞", + "pn": -0.500555 + }, + { + "surface": "模範", + "readging": "もはん", + "pos": "名詞", + "pn": -0.500583 + }, + { + "surface": "ドラム缶", + "readging": "ドラムかん", + "pos": "名詞", + "pn": -0.50059 + }, + { + "surface": "うろうろ", + "readging": "うろうろ", + "pos": "副詞", + "pn": -0.500595 + }, + { + "surface": "幼時", + "readging": "ようじ", + "pos": "名詞", + "pn": -0.500652 + }, + { + "surface": "降任", + "readging": "こうにん", + "pos": "名詞", + "pn": -0.500652 + }, + { + "surface": "俗歌", + "readging": "ぞっか", + "pos": "名詞", + "pn": -0.50069 + }, + { + "surface": "ホット", + "readging": "ホットケーキ", + "pos": "名詞", + "pn": -0.500698 + }, + { + "surface": "パイプ", + "readging": "パイプ", + "pos": "名詞", + "pn": -0.5007 + }, + { + "surface": "クレー", + "readging": "クレー", + "pos": "名詞", + "pn": -0.500707 + }, + { + "surface": "昔年", + "readging": "せきねん", + "pos": "名詞", + "pn": -0.500728 + }, + { + "surface": "白兵", + "readging": "はくへい", + "pos": "名詞", + "pn": -0.500738 + }, + { + "surface": "天壌", + "readging": "てんじょう", + "pos": "名詞", + "pn": -0.500751 + }, + { + "surface": "放電", + "readging": "ほうでん", + "pos": "名詞", + "pn": -0.50076 + }, + { + "surface": "城壁", + "readging": "じょうへき", + "pos": "名詞", + "pn": -0.500768 + }, + { + "surface": "人擦れ", + "readging": "ひとずれ", + "pos": "名詞", + "pn": -0.500778 + }, + { + "surface": "弔銃", + "readging": "ちょうじゅう", + "pos": "名詞", + "pn": -0.500788 + }, + { + "surface": "本当", + "readging": "ほんとう", + "pos": "名詞", + "pn": -0.500804 + }, + { + "surface": "陰毛", + "readging": "いんもう", + "pos": "名詞", + "pn": -0.500806 + }, + { + "surface": "高下", + "readging": "こうげ", + "pos": "名詞", + "pn": -0.500824 + }, + { + "surface": "凹面", + "readging": "おうめん", + "pos": "名詞", + "pn": -0.500871 + }, + { + "surface": "赤ら顔", + "readging": "あからがお", + "pos": "名詞", + "pn": -0.500889 + }, + { + "surface": "大群", + "readging": "たいぐん", + "pos": "名詞", + "pn": -0.500901 + }, + { + "surface": "引札", + "readging": "ひきふだ", + "pos": "名詞", + "pn": -0.500906 + }, + { + "surface": "ワン マン", + "readging": "ワン マン", + "pos": "名詞", + "pn": -0.500918 + }, + { + "surface": "蚕種", + "readging": "さんしゅ", + "pos": "名詞", + "pn": -0.500943 + }, + { + "surface": "糸蒟蒻", + "readging": "いとごんにゃく", + "pos": "名詞", + "pn": -0.500954 + }, + { + "surface": "即ち", + "readging": "すなわち", + "pos": "副詞", + "pn": -0.500969 + }, + { + "surface": "ちくちく", + "readging": "ちくちく", + "pos": "副詞", + "pn": -0.501 + }, + { + "surface": "医学", + "readging": "いがく", + "pos": "名詞", + "pn": -0.50102 + }, + { + "surface": "木の葉木菟", + "readging": "このはずく", + "pos": "名詞", + "pn": -0.50104 + }, + { + "surface": "箇条", + "readging": "かじょう", + "pos": "名詞", + "pn": -0.501045 + }, + { + "surface": "捷路", + "readging": "しょうろ", + "pos": "名詞", + "pn": -0.501054 + }, + { + "surface": "含羞草", + "readging": "おじぎそう", + "pos": "名詞", + "pn": -0.501067 + }, + { + "surface": "燕雀", + "readging": "えんじゃく", + "pos": "名詞", + "pn": -0.501076 + }, + { + "surface": "旧套", + "readging": "きゅうとう", + "pos": "名詞", + "pn": -0.501086 + }, + { + "surface": "樺の木", + "readging": "かばのき", + "pos": "名詞", + "pn": -0.501137 + }, + { + "surface": "ぞろりと", + "readging": "ぞろりと", + "pos": "副詞", + "pn": -0.501143 + }, + { + "surface": "先口", + "readging": "せんくち", + "pos": "名詞", + "pn": -0.501157 + }, + { + "surface": "退官", + "readging": "たいかん", + "pos": "名詞", + "pn": -0.5012 + }, + { + "surface": "矢車草", + "readging": "やぐるまそう", + "pos": "名詞", + "pn": -0.501207 + }, + { + "surface": "前借り", + "readging": "まえがり", + "pos": "名詞", + "pn": -0.501219 + }, + { + "surface": "向い火", + "readging": "むかいび", + "pos": "名詞", + "pn": -0.50122 + }, + { + "surface": "追散らす", + "readging": "おいちらす", + "pos": "動詞", + "pn": -0.501225 + }, + { + "surface": "油紙", + "readging": "あぶらがみ", + "pos": "名詞", + "pn": -0.501227 + }, + { + "surface": "田園", + "readging": "でんえん", + "pos": "名詞", + "pn": -0.501234 + }, + { + "surface": "蛇管", + "readging": "じゃかん", + "pos": "名詞", + "pn": -0.501235 + }, + { + "surface": "懸垂", + "readging": "けんすい", + "pos": "名詞", + "pn": -0.501236 + }, + { + "surface": "製本", + "readging": "せいほん", + "pos": "名詞", + "pn": -0.501302 + }, + { + "surface": "尺度", + "readging": "しゃくど", + "pos": "名詞", + "pn": -0.50132 + }, + { + "surface": "元金", + "readging": "もときん", + "pos": "名詞", + "pn": -0.501322 + }, + { + "surface": "縁付く", + "readging": "えんづく", + "pos": "動詞", + "pn": -0.501335 + }, + { + "surface": "嶄然", + "readging": "ざんぜん", + "pos": "名詞", + "pn": -0.501336 + }, + { + "surface": "冷肉", + "readging": "れいにく", + "pos": "名詞", + "pn": -0.501346 + }, + { + "surface": "目鼻立ち", + "readging": "めはなだち", + "pos": "名詞", + "pn": -0.501352 + }, + { + "surface": "輦台", + "readging": "れんだい", + "pos": "名詞", + "pn": -0.50136 + }, + { + "surface": "ゲルトナー菌", + "readging": "ゲルトナーきん", + "pos": "名詞", + "pn": -0.501401 + }, + { + "surface": "日済し", + "readging": "ひなし", + "pos": "名詞", + "pn": -0.501414 + }, + { + "surface": "渦", + "readging": "うず", + "pos": "名詞", + "pn": -0.501418 + }, + { + "surface": "充用", + "readging": "じゅうよう", + "pos": "名詞", + "pn": -0.501446 + }, + { + "surface": "声音", + "readging": "せいおん", + "pos": "名詞", + "pn": -0.501448 + }, + { + "surface": "無道", + "readging": "ぶどう", + "pos": "名詞", + "pn": -0.501465 + }, + { + "surface": "大広間", + "readging": "おおひろま", + "pos": "名詞", + "pn": -0.501469 + }, + { + "surface": "選手", + "readging": "せんしゅ", + "pos": "名詞", + "pn": -0.501477 + }, + { + "surface": "内閣", + "readging": "ないかく", + "pos": "名詞", + "pn": -0.501496 + }, + { + "surface": "流造", + "readging": "ながれづくり", + "pos": "名詞", + "pn": -0.501504 + }, + { + "surface": "誓う", + "readging": "ちかう", + "pos": "動詞", + "pn": -0.501509 + }, + { + "surface": "引証", + "readging": "いんしょう", + "pos": "名詞", + "pn": -0.501514 + }, + { + "surface": "隅隅", + "readging": "すみずみ", + "pos": "名詞", + "pn": -0.501525 + }, + { + "surface": "引戸", + "readging": "ひきど", + "pos": "名詞", + "pn": -0.501527 + }, + { + "surface": "南天", + "readging": "なんてん", + "pos": "名詞", + "pn": -0.50153 + }, + { + "surface": "四声", + "readging": "しせい", + "pos": "名詞", + "pn": -0.50153 + }, + { + "surface": "古記", + "readging": "こき", + "pos": "名詞", + "pn": -0.501555 + }, + { + "surface": "土俵入", + "readging": "どひょういり", + "pos": "名詞", + "pn": -0.501558 + }, + { + "surface": "漆負け", + "readging": "うるしまけ", + "pos": "名詞", + "pn": -0.501564 + }, + { + "surface": "金輪際", + "readging": "こんりんざい", + "pos": "副詞", + "pn": -0.501581 + }, + { + "surface": "気球", + "readging": "ききゅう", + "pos": "名詞", + "pn": -0.501587 + }, + { + "surface": "烏口", + "readging": "からすぐち", + "pos": "名詞", + "pn": -0.501602 + }, + { + "surface": "りゅうさん紙", + "readging": "りゅうさんし", + "pos": "名詞", + "pn": -0.501606 + }, + { + "surface": "分与", + "readging": "ぶんよ", + "pos": "名詞", + "pn": -0.501661 + }, + { + "surface": "リキュール", + "readging": "リキュール", + "pos": "名詞", + "pn": -0.501668 + }, + { + "surface": "漫芸", + "readging": "まんげい", + "pos": "名詞", + "pn": -0.50167 + }, + { + "surface": "目当て", + "readging": "めあて", + "pos": "名詞", + "pn": -0.50168 + }, + { + "surface": "思い出す", + "readging": "おもいだす", + "pos": "動詞", + "pn": -0.50169 + }, + { + "surface": "拡大", + "readging": "かくだい", + "pos": "名詞", + "pn": -0.501697 + }, + { + "surface": "筆端", + "readging": "ひったん", + "pos": "名詞", + "pn": -0.501729 + }, + { + "surface": "溜り", + "readging": "たまり", + "pos": "名詞", + "pn": -0.501764 + }, + { + "surface": "固形", + "readging": "こけい", + "pos": "名詞", + "pn": -0.501783 + }, + { + "surface": "ファイル", + "readging": "ファイル", + "pos": "名詞", + "pn": -0.501786 + }, + { + "surface": "寸莎", + "readging": "すさ", + "pos": "名詞", + "pn": -0.501792 + }, + { + "surface": "家壁蝨", + "readging": "いえだに", + "pos": "名詞", + "pn": -0.501848 + }, + { + "surface": "金売", + "readging": "かねうり", + "pos": "名詞", + "pn": -0.501861 + }, + { + "surface": "水練", + "readging": "すいれん", + "pos": "名詞", + "pn": -0.501906 + }, + { + "surface": "居座る", + "readging": "いすわる", + "pos": "動詞", + "pn": -0.501921 + }, + { + "surface": "芋虫", + "readging": "いもむし", + "pos": "名詞", + "pn": -0.501926 + }, + { + "surface": "ライフル銃", + "readging": "ライフルじゅう", + "pos": "名詞", + "pn": -0.501934 + }, + { + "surface": "相宿", + "readging": "あいやど", + "pos": "名詞", + "pn": -0.501937 + }, + { + "surface": "首", + "readging": "こうべ", + "pos": "名詞", + "pn": -0.501953 + }, + { + "surface": "刺股", + "readging": "さすまた", + "pos": "名詞", + "pn": -0.501977 + }, + { + "surface": "七つ道具", + "readging": "ななつどうぐ", + "pos": "名詞", + "pn": -0.502032 + }, + { + "surface": "精神分析", + "readging": "せいしんぶんせき", + "pos": "名詞", + "pn": -0.502033 + }, + { + "surface": "木の下", + "readging": "このした", + "pos": "名詞", + "pn": -0.502038 + }, + { + "surface": "抗体", + "readging": "こうたい", + "pos": "名詞", + "pn": -0.502052 + }, + { + "surface": "主題", + "readging": "しゅだい", + "pos": "名詞", + "pn": -0.502063 + }, + { + "surface": "笹縁", + "readging": "ささべり", + "pos": "名詞", + "pn": -0.502097 + }, + { + "surface": "つらつら", + "readging": "つらつら", + "pos": "副詞", + "pn": -0.502128 + }, + { + "surface": "束子", + "readging": "たわし", + "pos": "名詞", + "pn": -0.502133 + }, + { + "surface": "限り", + "readging": "かぎり", + "pos": "名詞", + "pn": -0.502149 + }, + { + "surface": "居続け", + "readging": "いつづけ", + "pos": "名詞", + "pn": -0.502153 + }, + { + "surface": "試す", + "readging": "ためす", + "pos": "動詞", + "pn": -0.502165 + }, + { + "surface": "片田舎", + "readging": "かたいなか", + "pos": "名詞", + "pn": -0.502197 + }, + { + "surface": "取払う", + "readging": "とりはらう", + "pos": "動詞", + "pn": -0.502207 + }, + { + "surface": "マトン", + "readging": "マトン", + "pos": "名詞", + "pn": -0.502222 + }, + { + "surface": "下婢", + "readging": "かひ", + "pos": "名詞", + "pn": -0.502259 + }, + { + "surface": "金時", + "readging": "きんとき", + "pos": "名詞", + "pn": -0.502273 + }, + { + "surface": "指箴", + "readging": "ししん", + "pos": "名詞", + "pn": -0.502275 + }, + { + "surface": "流行らせる", + "readging": "はやらせる", + "pos": "動詞", + "pn": -0.502279 + }, + { + "surface": "文言", + "readging": "もんごん", + "pos": "名詞", + "pn": -0.502301 + }, + { + "surface": "スラング", + "readging": "スラング", + "pos": "名詞", + "pn": -0.502304 + }, + { + "surface": "苧", + "readging": "からむし", + "pos": "名詞", + "pn": -0.502309 + }, + { + "surface": "民法", + "readging": "みんぽう", + "pos": "名詞", + "pn": -0.50237 + }, + { + "surface": "脱出", + "readging": "だっしゅつ", + "pos": "名詞", + "pn": -0.502379 + }, + { + "surface": "序開き", + "readging": "じょびらき", + "pos": "名詞", + "pn": -0.502383 + }, + { + "surface": "余毒", + "readging": "よどく", + "pos": "名詞", + "pn": -0.502448 + }, + { + "surface": "手箱", + "readging": "てばこ", + "pos": "名詞", + "pn": -0.502475 + }, + { + "surface": "密告", + "readging": "みっこく", + "pos": "名詞", + "pn": -0.502494 + }, + { + "surface": "共寝", + "readging": "ともね", + "pos": "名詞", + "pn": -0.502498 + }, + { + "surface": "見積る", + "readging": "みつもる", + "pos": "動詞", + "pn": -0.502506 + }, + { + "surface": "寒稽古", + "readging": "かんげいこ", + "pos": "名詞", + "pn": -0.502517 + }, + { + "surface": "仏手柑", + "readging": "ぶしゅかん", + "pos": "名詞", + "pn": -0.502519 + }, + { + "surface": "途次", + "readging": "とじ", + "pos": "名詞", + "pn": -0.502543 + }, + { + "surface": "雑種", + "readging": "ざっしゅ", + "pos": "名詞", + "pn": -0.502551 + }, + { + "surface": "隠居", + "readging": "いんきょ", + "pos": "名詞", + "pn": -0.502553 + }, + { + "surface": "引っ掛る", + "readging": "ひっかかる", + "pos": "動詞", + "pn": -0.502554 + }, + { + "surface": "はだかる", + "readging": "はだかる", + "pos": "動詞", + "pn": -0.502558 + }, + { + "surface": "索", + "readging": "さく", + "pos": "名詞", + "pn": -0.502574 + }, + { + "surface": "子宮", + "readging": "しきゅう", + "pos": "名詞", + "pn": -0.502596 + }, + { + "surface": "半跏思惟", + "readging": "はんかしい", + "pos": "名詞", + "pn": -0.502614 + }, + { + "surface": "鳳仙花", + "readging": "ほうせんか", + "pos": "名詞", + "pn": -0.502629 + }, + { + "surface": "湖岸", + "readging": "こがん", + "pos": "名詞", + "pn": -0.502631 + }, + { + "surface": "パラソル", + "readging": "パラソル", + "pos": "名詞", + "pn": -0.502681 + }, + { + "surface": "汗顔", + "readging": "かんがん", + "pos": "名詞", + "pn": -0.502713 + }, + { + "surface": "資産", + "readging": "しさん", + "pos": "名詞", + "pn": -0.502722 + }, + { + "surface": "戸口", + "readging": "とぐち", + "pos": "名詞", + "pn": -0.502742 + }, + { + "surface": "ランデブー", + "readging": "ランデブー", + "pos": "名詞", + "pn": -0.502756 + }, + { + "surface": "乾田", + "readging": "かんでん", + "pos": "名詞", + "pn": -0.502792 + }, + { + "surface": "精霊舟", + "readging": "しょうりょうぶね", + "pos": "名詞", + "pn": -0.502795 + }, + { + "surface": "パートナー", + "readging": "パートナー", + "pos": "名詞", + "pn": -0.502796 + }, + { + "surface": "暦日", + "readging": "れきじつ", + "pos": "名詞", + "pn": -0.502806 + }, + { + "surface": "海坊主", + "readging": "うみぼうず", + "pos": "名詞", + "pn": -0.502845 + }, + { + "surface": "オール", + "readging": "オールバック", + "pos": "名詞", + "pn": -0.502852 + }, + { + "surface": "醜名", + "readging": "しこな", + "pos": "名詞", + "pn": -0.502858 + }, + { + "surface": "吃り", + "readging": "どもり", + "pos": "名詞", + "pn": -0.502863 + }, + { + "surface": "熱気", + "readging": "ねっき", + "pos": "名詞", + "pn": -0.502869 + }, + { + "surface": "珪酸", + "readging": "けいさん", + "pos": "名詞", + "pn": -0.50287 + }, + { + "surface": "褶襞", + "readging": "しゅうへき", + "pos": "名詞", + "pn": -0.50289 + }, + { + "surface": "見積り", + "readging": "みつもり", + "pos": "名詞", + "pn": -0.502903 + }, + { + "surface": "日用", + "readging": "にちよう", + "pos": "名詞", + "pn": -0.502925 + }, + { + "surface": "不自由", + "readging": "ふじゆう", + "pos": "名詞", + "pn": -0.502937 + }, + { + "surface": "正貨", + "readging": "せいか", + "pos": "名詞", + "pn": -0.502952 + }, + { + "surface": "金紗", + "readging": "きんしゃ", + "pos": "名詞", + "pn": -0.502955 + }, + { + "surface": "不相応", + "readging": "ふそうおう", + "pos": "名詞", + "pn": -0.502976 + }, + { + "surface": "輪状", + "readging": "りんじょう", + "pos": "名詞", + "pn": -0.503008 + }, + { + "surface": "孵す", + "readging": "かえす", + "pos": "動詞", + "pn": -0.50301 + }, + { + "surface": "のさばる", + "readging": "のさばる", + "pos": "動詞", + "pn": -0.503053 + }, + { + "surface": "歩み寄る", + "readging": "あゆみよる", + "pos": "動詞", + "pn": -0.503068 + }, + { + "surface": "衣料", + "readging": "いりょう", + "pos": "名詞", + "pn": -0.503072 + }, + { + "surface": "自儘", + "readging": "じまま", + "pos": "名詞", + "pn": -0.503095 + }, + { + "surface": "飛歩く", + "readging": "とびあるく", + "pos": "動詞", + "pn": -0.503097 + }, + { + "surface": "飯台", + "readging": "はんだい", + "pos": "名詞", + "pn": -0.503101 + }, + { + "surface": "蔓", + "readging": "つる", + "pos": "名詞", + "pn": -0.503113 + }, + { + "surface": "明け渡る", + "readging": "あけわたる", + "pos": "動詞", + "pn": -0.503114 + }, + { + "surface": "熟慮", + "readging": "じゅくりょ", + "pos": "名詞", + "pn": -0.503142 + }, + { + "surface": "どんぐり", + "readging": "どんぐり", + "pos": "名詞", + "pn": -0.503145 + }, + { + "surface": "貝杓子", + "readging": "かいじゃくし", + "pos": "名詞", + "pn": -0.503165 + }, + { + "surface": "性交", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.503172 + }, + { + "surface": "縮緬皺", + "readging": "ちりめんじわ", + "pos": "名詞", + "pn": -0.503174 + }, + { + "surface": "愚僧", + "readging": "ぐそう", + "pos": "名詞", + "pn": -0.503196 + }, + { + "surface": "震幅", + "readging": "しんぷく", + "pos": "名詞", + "pn": -0.503208 + }, + { + "surface": "便座", + "readging": "べんざ", + "pos": "名詞", + "pn": -0.50323 + }, + { + "surface": "配達", + "readging": "はいたつ", + "pos": "名詞", + "pn": -0.503245 + }, + { + "surface": "中古", + "readging": "ちゅうぶる", + "pos": "名詞", + "pn": -0.503267 + }, + { + "surface": "メドレー", + "readging": "メドレー", + "pos": "名詞", + "pn": -0.503283 + }, + { + "surface": "絢爛", + "readging": "けんらん", + "pos": "名詞", + "pn": -0.503298 + }, + { + "surface": "逆徒", + "readging": "ぎゃくと", + "pos": "名詞", + "pn": -0.503301 + }, + { + "surface": "愈", + "readging": "いよいよ", + "pos": "副詞", + "pn": -0.50333 + }, + { + "surface": "向き合う", + "readging": "むきあう", + "pos": "動詞", + "pn": -0.503377 + }, + { + "surface": "宿賃", + "readging": "やどちん", + "pos": "名詞", + "pn": -0.503446 + }, + { + "surface": "伝記", + "readging": "でんき", + "pos": "名詞", + "pn": -0.50345 + }, + { + "surface": "指針", + "readging": "ししん", + "pos": "名詞", + "pn": -0.503473 + }, + { + "surface": "汚損", + "readging": "おそん", + "pos": "名詞", + "pn": -0.503502 + }, + { + "surface": "降臨", + "readging": "こうりん", + "pos": "名詞", + "pn": -0.503505 + }, + { + "surface": "忠告", + "readging": "ちゅうこく", + "pos": "名詞", + "pn": -0.503507 + }, + { + "surface": "郷", + "readging": "きょう", + "pos": "名詞", + "pn": -0.503519 + }, + { + "surface": "見本", + "readging": "みほん", + "pos": "名詞", + "pn": -0.503539 + }, + { + "surface": "血染め", + "readging": "ちぞめ", + "pos": "名詞", + "pn": -0.503559 + }, + { + "surface": "摺切り", + "readging": "すりきり", + "pos": "名詞", + "pn": -0.503586 + }, + { + "surface": "アルミニウム", + "readging": "アルミニウム", + "pos": "名詞", + "pn": -0.5036 + }, + { + "surface": "証券", + "readging": "しょうけん", + "pos": "名詞", + "pn": -0.503607 + }, + { + "surface": "なめこ", + "readging": "なめこ", + "pos": "名詞", + "pn": -0.50361 + }, + { + "surface": "当籤", + "readging": "とうせん", + "pos": "名詞", + "pn": -0.503617 + }, + { + "surface": "受忍", + "readging": "じゅにん", + "pos": "名詞", + "pn": -0.503617 + }, + { + "surface": "打出し", + "readging": "うちだし", + "pos": "名詞", + "pn": -0.50362 + }, + { + "surface": "節博士", + "readging": "ふしはかせ", + "pos": "名詞", + "pn": -0.503622 + }, + { + "surface": "御家人", + "readging": "ごけにん", + "pos": "名詞", + "pn": -0.503642 + }, + { + "surface": "嫉視", + "readging": "しっし", + "pos": "名詞", + "pn": -0.503653 + }, + { + "surface": "燃焼", + "readging": "ねんしょう", + "pos": "名詞", + "pn": -0.50366 + }, + { + "surface": "旅商い", + "readging": "たびあきない", + "pos": "名詞", + "pn": -0.503663 + }, + { + "surface": "連歌", + "readging": "れんが", + "pos": "名詞", + "pn": -0.50372 + }, + { + "surface": "貰い湯", + "readging": "もらいゆ", + "pos": "名詞", + "pn": -0.503723 + }, + { + "surface": "突端", + "readging": "とっぱな", + "pos": "名詞", + "pn": -0.503749 + }, + { + "surface": "代価", + "readging": "だいか", + "pos": "名詞", + "pn": -0.503767 + }, + { + "surface": "顴骨", + "readging": "けんこつ", + "pos": "名詞", + "pn": -0.503769 + }, + { + "surface": "木耳", + "readging": "きくらげ", + "pos": "名詞", + "pn": -0.503781 + }, + { + "surface": "開店", + "readging": "かいてん", + "pos": "名詞", + "pn": -0.503792 + }, + { + "surface": "外套", + "readging": "がいとう", + "pos": "名詞", + "pn": -0.503802 + }, + { + "surface": "鬼哭", + "readging": "きこく", + "pos": "名詞", + "pn": -0.503808 + }, + { + "surface": "モルヒネ", + "readging": "モルヒネ", + "pos": "名詞", + "pn": -0.503843 + }, + { + "surface": "天球", + "readging": "てんきゅう", + "pos": "名詞", + "pn": -0.503853 + }, + { + "surface": "溜める", + "readging": "ためる", + "pos": "動詞", + "pn": -0.503859 + }, + { + "surface": "汚濁", + "readging": "おだく", + "pos": "名詞", + "pn": -0.503878 + }, + { + "surface": "地図", + "readging": "ちず", + "pos": "名詞", + "pn": -0.503893 + }, + { + "surface": "故紙", + "readging": "こし", + "pos": "名詞", + "pn": -0.503895 + }, + { + "surface": "ぽんぽん", + "readging": "ぽんぽん", + "pos": "副詞", + "pn": -0.503905 + }, + { + "surface": "詠唱", + "readging": "えいしょう", + "pos": "名詞", + "pn": -0.503923 + }, + { + "surface": "取替える", + "readging": "とりかえる", + "pos": "動詞", + "pn": -0.503931 + }, + { + "surface": "浜辺", + "readging": "はまべ", + "pos": "名詞", + "pn": -0.503953 + }, + { + "surface": "根切虫", + "readging": "ねきりむし", + "pos": "名詞", + "pn": -0.503968 + }, + { + "surface": "妖艶", + "readging": "ようえん", + "pos": "名詞", + "pn": -0.503968 + }, + { + "surface": "白百合", + "readging": "しらゆり", + "pos": "名詞", + "pn": -0.503972 + }, + { + "surface": "汲取る", + "readging": "くみとる", + "pos": "動詞", + "pn": -0.504003 + }, + { + "surface": "測鉛", + "readging": "そくえん", + "pos": "名詞", + "pn": -0.504014 + }, + { + "surface": "手古舞", + "readging": "てこまい", + "pos": "名詞", + "pn": -0.504038 + }, + { + "surface": "茶園", + "readging": "さえん", + "pos": "名詞", + "pn": -0.504043 + }, + { + "surface": "思いの外", + "readging": "おもいのほか", + "pos": "名詞", + "pn": -0.504044 + }, + { + "surface": "象虫", + "readging": "ぞうむし", + "pos": "名詞", + "pn": -0.504065 + }, + { + "surface": "投手", + "readging": "とうしゅ", + "pos": "名詞", + "pn": -0.50409 + }, + { + "surface": "葦簾", + "readging": "よしず", + "pos": "名詞", + "pn": -0.504095 + }, + { + "surface": "接ぎ合せる", + "readging": "はぎあわせる", + "pos": "動詞", + "pn": -0.504125 + }, + { + "surface": "侍する", + "readging": "じする", + "pos": "動詞", + "pn": -0.504146 + }, + { + "surface": "均", + "readging": "きん", + "pos": "名詞", + "pn": -0.504161 + }, + { + "surface": "木陰", + "readging": "こかげ", + "pos": "名詞", + "pn": -0.504185 + }, + { + "surface": "近海", + "readging": "きんかい", + "pos": "名詞", + "pn": -0.50419 + }, + { + "surface": "繁殖", + "readging": "はんしょく", + "pos": "名詞", + "pn": -0.504199 + }, + { + "surface": "舞文曲筆", + "readging": "ぶぶんきょくひつ", + "pos": "名詞", + "pn": -0.50423 + }, + { + "surface": "糅飯", + "readging": "かてめし", + "pos": "名詞", + "pn": -0.504232 + }, + { + "surface": "無双窓", + "readging": "むそうまど", + "pos": "名詞", + "pn": -0.504238 + }, + { + "surface": "北辺", + "readging": "ほくへん", + "pos": "名詞", + "pn": -0.504251 + }, + { + "surface": "球技", + "readging": "きゅうぎ", + "pos": "名詞", + "pn": -0.504256 + }, + { + "surface": "収斂", + "readging": "しゅうれん", + "pos": "名詞", + "pn": -0.504256 + }, + { + "surface": "丸打", + "readging": "まるうち", + "pos": "名詞", + "pn": -0.504281 + }, + { + "surface": "叩き", + "readging": "たたき", + "pos": "名詞", + "pn": -0.504284 + }, + { + "surface": "焼香", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.504289 + }, + { + "surface": "仏身", + "readging": "ぶっしん", + "pos": "名詞", + "pn": -0.504293 + }, + { + "surface": "検察官", + "readging": "けんさつかん", + "pos": "名詞", + "pn": -0.504308 + }, + { + "surface": "日付変更線", + "readging": "ひづけへんこうせん", + "pos": "名詞", + "pn": -0.504348 + }, + { + "surface": "兵仗", + "readging": "ひょうじょう", + "pos": "名詞", + "pn": -0.504373 + }, + { + "surface": "偃月刀", + "readging": "えんげつとう", + "pos": "名詞", + "pn": -0.504377 + }, + { + "surface": "前膊", + "readging": "ぜんはく", + "pos": "名詞", + "pn": -0.504383 + }, + { + "surface": "塁審", + "readging": "るいしん", + "pos": "名詞", + "pn": -0.504397 + }, + { + "surface": "箱枕", + "readging": "はこまくら", + "pos": "名詞", + "pn": -0.504431 + }, + { + "surface": "本部", + "readging": "ほんぶ", + "pos": "名詞", + "pn": -0.50444 + }, + { + "surface": "隣席", + "readging": "りんせき", + "pos": "名詞", + "pn": -0.504455 + }, + { + "surface": "雅楽", + "readging": "ががく", + "pos": "名詞", + "pn": -0.504472 + }, + { + "surface": "霞網", + "readging": "かすみあみ", + "pos": "名詞", + "pn": -0.504484 + }, + { + "surface": "竹の子生活", + "readging": "たけのこせいかつ", + "pos": "名詞", + "pn": -0.504486 + }, + { + "surface": "弔歌", + "readging": "ちょうか", + "pos": "名詞", + "pn": -0.504503 + }, + { + "surface": "スクーナー", + "readging": "スクーナー", + "pos": "名詞", + "pn": -0.504512 + }, + { + "surface": "根瘤", + "readging": "ねこぶ", + "pos": "名詞", + "pn": -0.504515 + }, + { + "surface": "避難", + "readging": "ひなん", + "pos": "名詞", + "pn": -0.504523 + }, + { + "surface": "口三味線", + "readging": "くちじゃみせん", + "pos": "名詞", + "pn": -0.504538 + }, + { + "surface": "父", + "readging": "とと", + "pos": "名詞", + "pn": -0.504543 + }, + { + "surface": "父", + "readging": "てて", + "pos": "名詞", + "pn": -0.504543 + }, + { + "surface": "粘い", + "readging": "ねばい", + "pos": "形容詞", + "pn": -0.504564 + }, + { + "surface": "操作卓", + "readging": "そうさたく", + "pos": "名詞", + "pn": -0.504568 + }, + { + "surface": "ランドセル", + "readging": "ランドセル", + "pos": "名詞", + "pn": -0.504571 + }, + { + "surface": "我が物顔", + "readging": "わがものがお", + "pos": "名詞", + "pn": -0.504589 + }, + { + "surface": "折合い", + "readging": "おりあい", + "pos": "名詞", + "pn": -0.504609 + }, + { + "surface": "越後獅子", + "readging": "えちごじし", + "pos": "名詞", + "pn": -0.504611 + }, + { + "surface": "核", + "readging": "かく", + "pos": "名詞", + "pn": -0.50462 + }, + { + "surface": "仇討", + "readging": "あだうち", + "pos": "名詞", + "pn": -0.504621 + }, + { + "surface": "未了", + "readging": "みりょう", + "pos": "名詞", + "pn": -0.504678 + }, + { + "surface": "孵化", + "readging": "ふか", + "pos": "名詞", + "pn": -0.504683 + }, + { + "surface": "諸矢", + "readging": "もろや", + "pos": "名詞", + "pn": -0.504688 + }, + { + "surface": "旗本", + "readging": "はたもと", + "pos": "名詞", + "pn": -0.504697 + }, + { + "surface": "大悟", + "readging": "たいご", + "pos": "名詞", + "pn": -0.504701 + }, + { + "surface": "素行", + "readging": "そこう", + "pos": "名詞", + "pn": -0.504702 + }, + { + "surface": "拷問", + "readging": "ごうもん", + "pos": "名詞", + "pn": -0.504724 + }, + { + "surface": "寒念仏", + "readging": "かんねんぶつ", + "pos": "名詞", + "pn": -0.504747 + }, + { + "surface": "端端", + "readging": "はしばし", + "pos": "名詞", + "pn": -0.50476 + }, + { + "surface": "コンプレックス", + "readging": "コンプレックス", + "pos": "名詞", + "pn": -0.504777 + }, + { + "surface": "腹当", + "readging": "はらあて", + "pos": "名詞", + "pn": -0.504779 + }, + { + "surface": "敬譲", + "readging": "けいじょう", + "pos": "名詞", + "pn": -0.504782 + }, + { + "surface": "副葬", + "readging": "ふくそう", + "pos": "名詞", + "pn": -0.504783 + }, + { + "surface": "匕首", + "readging": "ひしゅ", + "pos": "名詞", + "pn": -0.504793 + }, + { + "surface": "絆される", + "readging": "ほだされる", + "pos": "動詞", + "pn": -0.504818 + }, + { + "surface": "一回り", + "readging": "ひとまわり", + "pos": "名詞", + "pn": -0.50484 + }, + { + "surface": "洋妾", + "readging": "ラシャめん", + "pos": "名詞", + "pn": -0.504853 + }, + { + "surface": "うっちゃらかす", + "readging": "うっちゃらかす", + "pos": "動詞", + "pn": -0.50487 + }, + { + "surface": "紅葉", + "readging": "もみじあおい", + "pos": "名詞", + "pn": -0.504886 + }, + { + "surface": "千六本", + "readging": "せんろっぽん", + "pos": "名詞", + "pn": -0.504886 + }, + { + "surface": "両様", + "readging": "りょうよう", + "pos": "名詞", + "pn": -0.504912 + }, + { + "surface": "骨組", + "readging": "ほねぐみ", + "pos": "名詞", + "pn": -0.504941 + }, + { + "surface": "帳", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.504983 + }, + { + "surface": "弾性", + "readging": "だんせい", + "pos": "名詞", + "pn": -0.505001 + }, + { + "surface": "玄米", + "readging": "げんまい", + "pos": "名詞", + "pn": -0.505005 + }, + { + "surface": "引続き", + "readging": "ひきつづき", + "pos": "副詞", + "pn": -0.505014 + }, + { + "surface": "ペンキ", + "readging": "ペンキ", + "pos": "名詞", + "pn": -0.505018 + }, + { + "surface": "油粕", + "readging": "あぶらかす", + "pos": "名詞", + "pn": -0.505032 + }, + { + "surface": "継端", + "readging": "つぎは", + "pos": "名詞", + "pn": -0.505044 + }, + { + "surface": "抜き取る", + "readging": "ぬきとる", + "pos": "動詞", + "pn": -0.505061 + }, + { + "surface": "観客", + "readging": "かんきゃく", + "pos": "名詞", + "pn": -0.505063 + }, + { + "surface": "尻尾", + "readging": "しっぽ", + "pos": "名詞", + "pn": -0.505072 + }, + { + "surface": "飛魚", + "readging": "とびうお", + "pos": "名詞", + "pn": -0.505092 + }, + { + "surface": "守役", + "readging": "もりやく", + "pos": "名詞", + "pn": -0.5051 + }, + { + "surface": "乗遅れる", + "readging": "のりおくれる", + "pos": "動詞", + "pn": -0.505127 + }, + { + "surface": "目一杯", + "readging": "めいっぱい", + "pos": "副詞", + "pn": -0.505142 + }, + { + "surface": "管状", + "readging": "かんじょう", + "pos": "名詞", + "pn": -0.505163 + }, + { + "surface": "運搬", + "readging": "うんぱん", + "pos": "名詞", + "pn": -0.505186 + }, + { + "surface": "有触れる", + "readging": "ありふれる", + "pos": "動詞", + "pn": -0.505189 + }, + { + "surface": "羽交締", + "readging": "はがい", + "pos": "名詞", + "pn": -0.505192 + }, + { + "surface": "常住坐臥", + "readging": "じょうじゅうざが", + "pos": "名詞", + "pn": -0.505201 + }, + { + "surface": "裸", + "readging": "ら", + "pos": "名詞", + "pn": -0.505203 + }, + { + "surface": "素っ裸", + "readging": "すっぱだか", + "pos": "名詞", + "pn": -0.505244 + }, + { + "surface": "孤児", + "readging": "こじ", + "pos": "名詞", + "pn": -0.505244 + }, + { + "surface": "閉籠る", + "readging": "とじこもる", + "pos": "動詞", + "pn": -0.505276 + }, + { + "surface": "階梯", + "readging": "かいてい", + "pos": "名詞", + "pn": -0.505293 + }, + { + "surface": "糧", + "readging": "かて", + "pos": "名詞", + "pn": -0.505311 + }, + { + "surface": "代用", + "readging": "だいよう", + "pos": "名詞", + "pn": -0.505337 + }, + { + "surface": "後進", + "readging": "こうしん", + "pos": "名詞", + "pn": -0.505352 + }, + { + "surface": "どんでん返し", + "readging": "どんでんがえし", + "pos": "名詞", + "pn": -0.505358 + }, + { + "surface": "諳んずる", + "readging": "そらんずる", + "pos": "動詞", + "pn": -0.505373 + }, + { + "surface": "組成", + "readging": "そせい", + "pos": "名詞", + "pn": -0.505384 + }, + { + "surface": "境地", + "readging": "きょうち", + "pos": "名詞", + "pn": -0.50539 + }, + { + "surface": "せかせか", + "readging": "せかせか", + "pos": "副詞", + "pn": -0.505395 + }, + { + "surface": "価", + "readging": "あたい", + "pos": "名詞", + "pn": -0.505437 + }, + { + "surface": "五つ", + "readging": "いつつ", + "pos": "名詞", + "pn": -0.505447 + }, + { + "surface": "投捨てる", + "readging": "なげすてる", + "pos": "動詞", + "pn": -0.505475 + }, + { + "surface": "水嚢", + "readging": "すいのう", + "pos": "名詞", + "pn": -0.505478 + }, + { + "surface": "布目", + "readging": "ぬのめ", + "pos": "名詞", + "pn": -0.505487 + }, + { + "surface": "曰く", + "readging": "のたまわく", + "pos": "名詞", + "pn": -0.505514 + }, + { + "surface": "溝渠", + "readging": "こうきょ", + "pos": "名詞", + "pn": -0.50553 + }, + { + "surface": "コンパス", + "readging": "コンパス", + "pos": "名詞", + "pn": -0.505566 + }, + { + "surface": "論ずる", + "readging": "ろんずる", + "pos": "動詞", + "pn": -0.505584 + }, + { + "surface": "骨幹", + "readging": "こっかん", + "pos": "名詞", + "pn": -0.505588 + }, + { + "surface": "ダム", + "readging": "ダム", + "pos": "名詞", + "pn": -0.505607 + }, + { + "surface": "東方", + "readging": "ひがしがた", + "pos": "名詞", + "pn": -0.505646 + }, + { + "surface": "針術", + "readging": "しんじゅつ", + "pos": "名詞", + "pn": -0.50568 + }, + { + "surface": "樒", + "readging": "しきみ", + "pos": "名詞", + "pn": -0.5057 + }, + { + "surface": "窮鼠", + "readging": "きゅうそ", + "pos": "名詞", + "pn": -0.505713 + }, + { + "surface": "平安", + "readging": "へいあん", + "pos": "名詞", + "pn": -0.505714 + }, + { + "surface": "吐き気", + "readging": "はきけ", + "pos": "名詞", + "pn": -0.505718 + }, + { + "surface": "通り魔", + "readging": "とおりま", + "pos": "名詞", + "pn": -0.505721 + }, + { + "surface": "不動明王", + "readging": "ふどうみょうおう", + "pos": "名詞", + "pn": -0.505742 + }, + { + "surface": "剃る", + "readging": "そる", + "pos": "動詞", + "pn": -0.505765 + }, + { + "surface": "邸宅", + "readging": "ていたく", + "pos": "名詞", + "pn": -0.50577 + }, + { + "surface": "罰", + "readging": "ばち", + "pos": "名詞", + "pn": -0.505776 + }, + { + "surface": "葵", + "readging": "あおい", + "pos": "名詞", + "pn": -0.505791 + }, + { + "surface": "暈す", + "readging": "ぼかす", + "pos": "動詞", + "pn": -0.505797 + }, + { + "surface": "噴火口", + "readging": "ふんかこう", + "pos": "名詞", + "pn": -0.505819 + }, + { + "surface": "がら紡", + "readging": "がらぼう", + "pos": "名詞", + "pn": -0.505839 + }, + { + "surface": "迎接", + "readging": "げいせつ", + "pos": "名詞", + "pn": -0.50584 + }, + { + "surface": "ポンポン ダリア", + "readging": "ポンポン ダリア", + "pos": "名詞", + "pn": -0.505865 + }, + { + "surface": "かさかさ", + "readging": "かさかさ", + "pos": "副詞", + "pn": -0.505881 + }, + { + "surface": "大根卸", + "readging": "だいこんおろし", + "pos": "名詞", + "pn": -0.505893 + }, + { + "surface": "消費", + "readging": "しょうひ", + "pos": "名詞", + "pn": -0.505906 + }, + { + "surface": "懐妊", + "readging": "かいにん", + "pos": "名詞", + "pn": -0.505919 + }, + { + "surface": "暗夜", + "readging": "あんや", + "pos": "名詞", + "pn": -0.50592 + }, + { + "surface": "杓子", + "readging": "しゃくし", + "pos": "名詞", + "pn": -0.505925 + }, + { + "surface": "近隣", + "readging": "きんりん", + "pos": "名詞", + "pn": -0.505988 + }, + { + "surface": "折鞄", + "readging": "おりかばん", + "pos": "名詞", + "pn": -0.506013 + }, + { + "surface": "寒紅", + "readging": "かんべに", + "pos": "名詞", + "pn": -0.506028 + }, + { + "surface": "旗振り", + "readging": "はたふり", + "pos": "名詞", + "pn": -0.506035 + }, + { + "surface": "榎", + "readging": "えのき", + "pos": "名詞", + "pn": -0.506048 + }, + { + "surface": "一理", + "readging": "いちり", + "pos": "名詞", + "pn": -0.506052 + }, + { + "surface": "歯屎", + "readging": "はくそ", + "pos": "名詞", + "pn": -0.506056 + }, + { + "surface": "船路", + "readging": "ふなじ", + "pos": "名詞", + "pn": -0.506058 + }, + { + "surface": "鉄面皮", + "readging": "てつめんぴ", + "pos": "名詞", + "pn": -0.5061 + }, + { + "surface": "ぬめぬめ", + "readging": "ぬめぬめ", + "pos": "副詞", + "pn": -0.506136 + }, + { + "surface": "鳥羽絵", + "readging": "とばえ", + "pos": "名詞", + "pn": -0.506144 + }, + { + "surface": "種蒔", + "readging": "たねまき", + "pos": "名詞", + "pn": -0.506152 + }, + { + "surface": "浮腰", + "readging": "うきごし", + "pos": "名詞", + "pn": -0.506172 + }, + { + "surface": "田地", + "readging": "でんち", + "pos": "名詞", + "pn": -0.506173 + }, + { + "surface": "異形", + "readging": "いぎょう", + "pos": "名詞", + "pn": -0.506206 + }, + { + "surface": "透く", + "readging": "すく", + "pos": "動詞", + "pn": -0.506206 + }, + { + "surface": "筒袖", + "readging": "つつそで", + "pos": "名詞", + "pn": -0.50621 + }, + { + "surface": "切立つ", + "readging": "きりたつ", + "pos": "動詞", + "pn": -0.506232 + }, + { + "surface": "プログラム", + "readging": "プログラム", + "pos": "名詞", + "pn": -0.506238 + }, + { + "surface": "びっしり", + "readging": "びっしり", + "pos": "副詞", + "pn": -0.506245 + }, + { + "surface": "迎", + "readging": "げい", + "pos": "名詞", + "pn": -0.506252 + }, + { + "surface": "独楽", + "readging": "こま", + "pos": "名詞", + "pn": -0.506259 + }, + { + "surface": "撫斬り", + "readging": "なでぎり", + "pos": "名詞", + "pn": -0.506265 + }, + { + "surface": "造言", + "readging": "ぞうげん", + "pos": "名詞", + "pn": -0.506274 + }, + { + "surface": "ハスキー", + "readging": "ハスキー", + "pos": "名詞", + "pn": -0.506278 + }, + { + "surface": "密事", + "readging": "みつじ", + "pos": "名詞", + "pn": -0.506291 + }, + { + "surface": "突端", + "readging": "とったん", + "pos": "名詞", + "pn": -0.506293 + }, + { + "surface": "秘鑰", + "readging": "ひやく", + "pos": "名詞", + "pn": -0.506331 + }, + { + "surface": "洗い晒し", + "readging": "あらいざらし", + "pos": "名詞", + "pn": -0.506353 + }, + { + "surface": "皆済", + "readging": "かいさい", + "pos": "名詞", + "pn": -0.506356 + }, + { + "surface": "芹", + "readging": "せり", + "pos": "名詞", + "pn": -0.506367 + }, + { + "surface": "微塵", + "readging": "みじん", + "pos": "名詞", + "pn": -0.506384 + }, + { + "surface": "乳飲料", + "readging": "にゅういんりょう", + "pos": "名詞", + "pn": -0.506395 + }, + { + "surface": "巾", + "readging": "きん", + "pos": "名詞", + "pn": -0.506412 + }, + { + "surface": "どんちゃん騒ぎ", + "readging": "どんちゃんさわぎ", + "pos": "名詞", + "pn": -0.506459 + }, + { + "surface": "心棒", + "readging": "しんぼう", + "pos": "名詞", + "pn": -0.506472 + }, + { + "surface": "軍", + "readging": "ぐん", + "pos": "名詞", + "pn": -0.506476 + }, + { + "surface": "兵戈", + "readging": "へいか", + "pos": "名詞", + "pn": -0.506523 + }, + { + "surface": "公害", + "readging": "こうがい", + "pos": "名詞", + "pn": -0.50653 + }, + { + "surface": "檄", + "readging": "げき", + "pos": "名詞", + "pn": -0.506558 + }, + { + "surface": "天心", + "readging": "てんしん", + "pos": "名詞", + "pn": -0.506578 + }, + { + "surface": "蝦夷菊", + "readging": "えぞぎく", + "pos": "名詞", + "pn": -0.506587 + }, + { + "surface": "付け届け", + "readging": "つけとどけ", + "pos": "名詞", + "pn": -0.506596 + }, + { + "surface": "中入", + "readging": "なかいり", + "pos": "名詞", + "pn": -0.506606 + }, + { + "surface": "闘魚", + "readging": "とうぎょ", + "pos": "名詞", + "pn": -0.506609 + }, + { + "surface": "同行", + "readging": "どうこう", + "pos": "名詞", + "pn": -0.506611 + }, + { + "surface": "寒卵", + "readging": "かんたまご", + "pos": "名詞", + "pn": -0.506618 + }, + { + "surface": "被告", + "readging": "ひこく", + "pos": "名詞", + "pn": -0.506631 + }, + { + "surface": "決壊", + "readging": "けっかい", + "pos": "名詞", + "pn": -0.506679 + }, + { + "surface": "波状", + "readging": "はじょう", + "pos": "名詞", + "pn": -0.506683 + }, + { + "surface": "組重", + "readging": "くみじゅう", + "pos": "名詞", + "pn": -0.506689 + }, + { + "surface": "中啓", + "readging": "ちゅうけい", + "pos": "名詞", + "pn": -0.506719 + }, + { + "surface": "歯並び", + "readging": "はならび", + "pos": "名詞", + "pn": -0.506726 + }, + { + "surface": "絵羽模様", + "readging": "えばもよう", + "pos": "名詞", + "pn": -0.506727 + }, + { + "surface": "燻", + "readging": "いぶし", + "pos": "名詞", + "pn": -0.506731 + }, + { + "surface": "厄落し", + "readging": "やくおとし", + "pos": "名詞", + "pn": -0.506738 + }, + { + "surface": "留", + "readging": "りゅう", + "pos": "名詞", + "pn": -0.506753 + }, + { + "surface": "油絵", + "readging": "あぶらえ", + "pos": "名詞", + "pn": -0.506753 + }, + { + "surface": "号砲", + "readging": "ごうほう", + "pos": "名詞", + "pn": -0.506768 + }, + { + "surface": "右顧左眄", + "readging": "うこさべん", + "pos": "名詞", + "pn": -0.506775 + }, + { + "surface": "脱線", + "readging": "だっせん", + "pos": "名詞", + "pn": -0.506807 + }, + { + "surface": "巡遊", + "readging": "じゅんゆう", + "pos": "名詞", + "pn": -0.506837 + }, + { + "surface": "生茹で", + "readging": "なまゆで", + "pos": "名詞", + "pn": -0.506849 + }, + { + "surface": "擽る", + "readging": "くすぐる", + "pos": "動詞", + "pn": -0.50685 + }, + { + "surface": "足取り", + "readging": "あしどり", + "pos": "名詞", + "pn": -0.506885 + }, + { + "surface": "築堤", + "readging": "ちくてい", + "pos": "名詞", + "pn": -0.506901 + }, + { + "surface": "中指", + "readging": "なかゆび", + "pos": "名詞", + "pn": -0.506963 + }, + { + "surface": "俗世", + "readging": "ぞくせ", + "pos": "名詞", + "pn": -0.506965 + }, + { + "surface": "甘ったれる", + "readging": "あまったれる", + "pos": "動詞", + "pn": -0.506968 + }, + { + "surface": "彰", + "readging": "しょう", + "pos": "名詞", + "pn": -0.506979 + }, + { + "surface": "先駆け", + "readging": "さきがけ", + "pos": "名詞", + "pn": -0.506987 + }, + { + "surface": "奏でる", + "readging": "かなでる", + "pos": "動詞", + "pn": -0.507011 + }, + { + "surface": "放す", + "readging": "ほかす", + "pos": "動詞", + "pn": -0.507031 + }, + { + "surface": "とろりと", + "readging": "とろりと", + "pos": "副詞", + "pn": -0.507046 + }, + { + "surface": "高温", + "readging": "こうおん", + "pos": "名詞", + "pn": -0.507059 + }, + { + "surface": "粗目", + "readging": "ざらめ", + "pos": "名詞", + "pn": -0.50709 + }, + { + "surface": "はばき", + "readging": "はばき", + "pos": "名詞", + "pn": -0.5071 + }, + { + "surface": "ぺてん", + "readging": "ぺてん", + "pos": "名詞", + "pn": -0.507125 + }, + { + "surface": "合板", + "readging": "ごうはん", + "pos": "名詞", + "pn": -0.507142 + }, + { + "surface": "毬栗", + "readging": "いがぐり", + "pos": "名詞", + "pn": -0.507148 + }, + { + "surface": "破墨", + "readging": "はぼく", + "pos": "名詞", + "pn": -0.507156 + }, + { + "surface": "港湾", + "readging": "こうわん", + "pos": "名詞", + "pn": -0.507159 + }, + { + "surface": "計", + "readging": "けい", + "pos": "名詞", + "pn": -0.507169 + }, + { + "surface": "非常識", + "readging": "ひじょうしき", + "pos": "名詞", + "pn": -0.507176 + }, + { + "surface": "黙想", + "readging": "もくそう", + "pos": "名詞", + "pn": -0.507178 + }, + { + "surface": "塊根", + "readging": "かいこん", + "pos": "名詞", + "pn": -0.507208 + }, + { + "surface": "退治", + "readging": "たいじ", + "pos": "名詞", + "pn": -0.50721 + }, + { + "surface": "酸性", + "readging": "さんせい", + "pos": "名詞", + "pn": -0.507239 + }, + { + "surface": "ずく", + "readging": "ずく", + "pos": "名詞", + "pn": -0.507246 + }, + { + "surface": "動静", + "readging": "どうせい", + "pos": "名詞", + "pn": -0.50726 + }, + { + "surface": "小書き", + "readging": "こがき", + "pos": "名詞", + "pn": -0.507284 + }, + { + "surface": "波路", + "readging": "なみじ", + "pos": "名詞", + "pn": -0.507305 + }, + { + "surface": "アスベスト", + "readging": "アスベスト", + "pos": "名詞", + "pn": -0.507324 + }, + { + "surface": "蒸焼", + "readging": "むしやき", + "pos": "名詞", + "pn": -0.507345 + }, + { + "surface": "黒っぽい", + "readging": "くろっぽい", + "pos": "形容詞", + "pn": -0.507346 + }, + { + "surface": "ずくめ", + "readging": "ずくめ", + "pos": "名詞", + "pn": -0.507348 + }, + { + "surface": "衣桁", + "readging": "いこう", + "pos": "名詞", + "pn": -0.507385 + }, + { + "surface": "白滝", + "readging": "しらたき", + "pos": "名詞", + "pn": -0.507397 + }, + { + "surface": "アフターケア", + "readging": "アフターケア", + "pos": "名詞", + "pn": -0.507398 + }, + { + "surface": "線条", + "readging": "せんじょう", + "pos": "名詞", + "pn": -0.507411 + }, + { + "surface": "わいわい", + "readging": "わいわい", + "pos": "副詞", + "pn": -0.507426 + }, + { + "surface": "足跡", + "readging": "そくせき", + "pos": "名詞", + "pn": -0.507427 + }, + { + "surface": "島抜け", + "readging": "しまぬけ", + "pos": "名詞", + "pn": -0.507437 + }, + { + "surface": "乗客", + "readging": "じょうきゃく", + "pos": "名詞", + "pn": -0.507438 + }, + { + "surface": "若書き", + "readging": "わかがき", + "pos": "名詞", + "pn": -0.507443 + }, + { + "surface": "廊下", + "readging": "ろうか", + "pos": "名詞", + "pn": -0.507451 + }, + { + "surface": "根茎", + "readging": "こんけい", + "pos": "名詞", + "pn": -0.507453 + }, + { + "surface": "貸借", + "readging": "たいしゃく", + "pos": "名詞", + "pn": -0.507454 + }, + { + "surface": "鎮痙剤", + "readging": "ちんけいざい", + "pos": "名詞", + "pn": -0.50746 + }, + { + "surface": "上板", + "readging": "あげいた", + "pos": "名詞", + "pn": -0.507482 + }, + { + "surface": "行程", + "readging": "こうてい", + "pos": "名詞", + "pn": -0.507508 + }, + { + "surface": "ウイング", + "readging": "ウイング", + "pos": "名詞", + "pn": -0.507563 + }, + { + "surface": "ちょっかい", + "readging": "ちょっかい", + "pos": "名詞", + "pn": -0.507571 + }, + { + "surface": "楽屋", + "readging": "がくや", + "pos": "名詞", + "pn": -0.507572 + }, + { + "surface": "女王蜂", + "readging": "じょおうばち", + "pos": "名詞", + "pn": -0.507578 + }, + { + "surface": "ホールド アップ", + "readging": "ホールド アップ", + "pos": "名詞", + "pn": -0.507591 + }, + { + "surface": "洗い立てる", + "readging": "あらいたてる", + "pos": "動詞", + "pn": -0.507601 + }, + { + "surface": "猿猴", + "readging": "えんこう", + "pos": "名詞", + "pn": -0.50761 + }, + { + "surface": "憤激", + "readging": "ふんげき", + "pos": "名詞", + "pn": -0.507628 + }, + { + "surface": "俯く", + "readging": "うつむく", + "pos": "動詞", + "pn": -0.507642 + }, + { + "surface": "煮凝り", + "readging": "にこごり", + "pos": "名詞", + "pn": -0.507663 + }, + { + "surface": "バリュー", + "readging": "バリュー", + "pos": "名詞", + "pn": -0.507714 + }, + { + "surface": "計器", + "readging": "けいき", + "pos": "名詞", + "pn": -0.507719 + }, + { + "surface": "賽", + "readging": "さい", + "pos": "名詞", + "pn": -0.507763 + }, + { + "surface": "背任", + "readging": "はいにん", + "pos": "名詞", + "pn": -0.507779 + }, + { + "surface": "施す", + "readging": "ほどこす", + "pos": "動詞", + "pn": -0.507798 + }, + { + "surface": "一人", + "readging": "ひとりでんか", + "pos": "名詞", + "pn": -0.507817 + }, + { + "surface": "割烹着", + "readging": "かっぽうぎ", + "pos": "名詞", + "pn": -0.507825 + }, + { + "surface": "ギヤマン", + "readging": "ギヤマン", + "pos": "名詞", + "pn": -0.507827 + }, + { + "surface": "待合せる", + "readging": "まちあわせる", + "pos": "動詞", + "pn": -0.507854 + }, + { + "surface": "奪還", + "readging": "だっかん", + "pos": "名詞", + "pn": -0.507861 + }, + { + "surface": "軽はずみ", + "readging": "かるはずみ", + "pos": "名詞", + "pn": -0.507862 + }, + { + "surface": "僭する", + "readging": "せんする", + "pos": "動詞", + "pn": -0.507867 + }, + { + "surface": "月曜", + "readging": "げつよう", + "pos": "名詞", + "pn": -0.507868 + }, + { + "surface": "満了", + "readging": "まんりょう", + "pos": "名詞", + "pn": -0.507943 + }, + { + "surface": "攻究", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.507953 + }, + { + "surface": "成因", + "readging": "せいいん", + "pos": "名詞", + "pn": -0.507953 + }, + { + "surface": "溶炉", + "readging": "ようろ", + "pos": "名詞", + "pn": -0.507977 + }, + { + "surface": "ほろ蚊帳", + "readging": "ほろがや", + "pos": "名詞", + "pn": -0.507978 + }, + { + "surface": "納棺", + "readging": "のうかん", + "pos": "名詞", + "pn": -0.50799 + }, + { + "surface": "霧中", + "readging": "むちゅう", + "pos": "名詞", + "pn": -0.507995 + }, + { + "surface": "毟る", + "readging": "むしる", + "pos": "動詞", + "pn": -0.508007 + }, + { + "surface": "九官鳥", + "readging": "きゅうかんちょう", + "pos": "名詞", + "pn": -0.508008 + }, + { + "surface": "書熨斗", + "readging": "かきのし", + "pos": "名詞", + "pn": -0.508081 + }, + { + "surface": "山幸", + "readging": "やまさち", + "pos": "名詞", + "pn": -0.508099 + }, + { + "surface": "中性紙", + "readging": "ちゅうせいし", + "pos": "名詞", + "pn": -0.50811 + }, + { + "surface": "種牛", + "readging": "たねうし", + "pos": "名詞", + "pn": -0.508121 + }, + { + "surface": "形作る", + "readging": "かたちづくる", + "pos": "動詞", + "pn": -0.508128 + }, + { + "surface": "水絵具", + "readging": "みずえのぐ", + "pos": "名詞", + "pn": -0.508144 + }, + { + "surface": "欲しがる", + "readging": "ほしがる", + "pos": "動詞", + "pn": -0.508158 + }, + { + "surface": "旗幟", + "readging": "きし", + "pos": "名詞", + "pn": -0.508181 + }, + { + "surface": "橄欖", + "readging": "かんらん", + "pos": "名詞", + "pn": -0.508194 + }, + { + "surface": "切餅", + "readging": "きりもち", + "pos": "名詞", + "pn": -0.508194 + }, + { + "surface": "押し込む", + "readging": "おしこむ", + "pos": "動詞", + "pn": -0.508215 + }, + { + "surface": "雇人", + "readging": "やといにん", + "pos": "名詞", + "pn": -0.508247 + }, + { + "surface": "取結ぶ", + "readging": "とりむすぶ", + "pos": "動詞", + "pn": -0.508253 + }, + { + "surface": "金瘡", + "readging": "きんそう", + "pos": "名詞", + "pn": -0.508262 + }, + { + "surface": "詰物", + "readging": "つめもの", + "pos": "名詞", + "pn": -0.508279 + }, + { + "surface": "叢", + "readging": "そう", + "pos": "名詞", + "pn": -0.508289 + }, + { + "surface": "不振", + "readging": "ふしん", + "pos": "名詞", + "pn": -0.508311 + }, + { + "surface": "年少", + "readging": "ねんしょう", + "pos": "名詞", + "pn": -0.508321 + }, + { + "surface": "韻", + "readging": "いん", + "pos": "名詞", + "pn": -0.508327 + }, + { + "surface": "バインダー", + "readging": "バインダー", + "pos": "名詞", + "pn": -0.508329 + }, + { + "surface": "エキストラ", + "readging": "エキストラ", + "pos": "名詞", + "pn": -0.508342 + }, + { + "surface": "刈萱", + "readging": "かるかや", + "pos": "名詞", + "pn": -0.508348 + }, + { + "surface": "横たわる", + "readging": "よこたわる", + "pos": "動詞", + "pn": -0.508366 + }, + { + "surface": "江湖", + "readging": "こうこ", + "pos": "名詞", + "pn": -0.508367 + }, + { + "surface": "ほっぺた", + "readging": "ほっぺた", + "pos": "名詞", + "pn": -0.508368 + }, + { + "surface": "二十四気", + "readging": "にじゅうしき", + "pos": "名詞", + "pn": -0.508407 + }, + { + "surface": "服役", + "readging": "ふくえき", + "pos": "名詞", + "pn": -0.508431 + }, + { + "surface": "発散", + "readging": "はっさん", + "pos": "名詞", + "pn": -0.508435 + }, + { + "surface": "段取り", + "readging": "だんどり", + "pos": "名詞", + "pn": -0.508436 + }, + { + "surface": "潮煮", + "readging": "うしおに", + "pos": "名詞", + "pn": -0.508449 + }, + { + "surface": "体温計", + "readging": "たいおんけい", + "pos": "名詞", + "pn": -0.508459 + }, + { + "surface": "木瓜", + "readging": "ぼけ", + "pos": "名詞", + "pn": -0.508461 + }, + { + "surface": "土曜", + "readging": "どよう", + "pos": "名詞", + "pn": -0.508475 + }, + { + "surface": "聳やかす", + "readging": "そびやかす", + "pos": "動詞", + "pn": -0.508487 + }, + { + "surface": "丸首", + "readging": "まるくび", + "pos": "名詞", + "pn": -0.508488 + }, + { + "surface": "序言", + "readging": "じょげん", + "pos": "名詞", + "pn": -0.508501 + }, + { + "surface": "模する", + "readging": "もする", + "pos": "動詞", + "pn": -0.508507 + }, + { + "surface": "なぞる", + "readging": "なぞる", + "pos": "動詞", + "pn": -0.508513 + }, + { + "surface": "関門", + "readging": "かんもん", + "pos": "名詞", + "pn": -0.508519 + }, + { + "surface": "周", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.508531 + }, + { + "surface": "上演", + "readging": "じょうえん", + "pos": "名詞", + "pn": -0.508539 + }, + { + "surface": "現世", + "readging": "げんせい", + "pos": "名詞", + "pn": -0.508562 + }, + { + "surface": "提供", + "readging": "ていきょう", + "pos": "名詞", + "pn": -0.508562 + }, + { + "surface": "裏紋", + "readging": "うらもん", + "pos": "名詞", + "pn": -0.50857 + }, + { + "surface": "根幹", + "readging": "こんかん", + "pos": "名詞", + "pn": -0.508581 + }, + { + "surface": "朧昆布", + "readging": "おぼろこぶ", + "pos": "名詞", + "pn": -0.508581 + }, + { + "surface": "鑑", + "readging": "かん", + "pos": "名詞", + "pn": -0.508598 + }, + { + "surface": "コーン", + "readging": "コーン", + "pos": "名詞", + "pn": -0.508613 + }, + { + "surface": "動", + "readging": "どう", + "pos": "名詞", + "pn": -0.508618 + }, + { + "surface": "旅愁", + "readging": "りょしゅう", + "pos": "名詞", + "pn": -0.50862 + }, + { + "surface": "通り雨", + "readging": "とおりあめ", + "pos": "名詞", + "pn": -0.508623 + }, + { + "surface": "書机", + "readging": "しょづくえ", + "pos": "名詞", + "pn": -0.508631 + }, + { + "surface": "少憩", + "readging": "しょうけい", + "pos": "名詞", + "pn": -0.508639 + }, + { + "surface": "えんこ", + "readging": "えんこ", + "pos": "名詞", + "pn": -0.508643 + }, + { + "surface": "下露", + "readging": "したつゆ", + "pos": "名詞", + "pn": -0.508671 + }, + { + "surface": "串柿", + "readging": "くしがき", + "pos": "名詞", + "pn": -0.508673 + }, + { + "surface": "問屋場", + "readging": "とんやば", + "pos": "名詞", + "pn": -0.508685 + }, + { + "surface": "一躍", + "readging": "いちやく", + "pos": "名詞", + "pn": -0.508714 + }, + { + "surface": "ドロップ", + "readging": "ドロップアウト", + "pos": "名詞", + "pn": -0.508716 + }, + { + "surface": "甲虫", + "readging": "かぶとむし", + "pos": "名詞", + "pn": -0.508753 + }, + { + "surface": "解ける", + "readging": "ほどける", + "pos": "動詞", + "pn": -0.508759 + }, + { + "surface": "推算", + "readging": "すいさん", + "pos": "名詞", + "pn": -0.508774 + }, + { + "surface": "船蔵", + "readging": "ふなぐら", + "pos": "名詞", + "pn": -0.508795 + }, + { + "surface": "足回り", + "readging": "あしまわり", + "pos": "名詞", + "pn": -0.508823 + }, + { + "surface": "許嫁", + "readging": "いいなずけ", + "pos": "名詞", + "pn": -0.508856 + }, + { + "surface": "ふらつく", + "readging": "ふらつく", + "pos": "動詞", + "pn": -0.508873 + }, + { + "surface": "故郷", + "readging": "こきょう", + "pos": "名詞", + "pn": -0.508876 + }, + { + "surface": "藺", + "readging": "い", + "pos": "名詞", + "pn": -0.508889 + }, + { + "surface": "氷柱", + "readging": "つらら", + "pos": "名詞", + "pn": -0.508904 + }, + { + "surface": "会計", + "readging": "かいけい", + "pos": "名詞", + "pn": -0.508916 + }, + { + "surface": "冷飯", + "readging": "ひやめし", + "pos": "名詞", + "pn": -0.508928 + }, + { + "surface": "欠食", + "readging": "けっしょく", + "pos": "名詞", + "pn": -0.508941 + }, + { + "surface": "マシュマロ", + "readging": "マシュマロ", + "pos": "名詞", + "pn": -0.508943 + }, + { + "surface": "串", + "readging": "くし", + "pos": "名詞", + "pn": -0.508957 + }, + { + "surface": "長葱", + "readging": "ながねぎ", + "pos": "名詞", + "pn": -0.50897 + }, + { + "surface": "平に", + "readging": "ひらに", + "pos": "副詞", + "pn": -0.508976 + }, + { + "surface": "だれる", + "readging": "だれる", + "pos": "動詞", + "pn": -0.508982 + }, + { + "surface": "冒頭", + "readging": "ぼうとう", + "pos": "名詞", + "pn": -0.509012 + }, + { + "surface": "鎮定", + "readging": "ちんてい", + "pos": "名詞", + "pn": -0.509016 + }, + { + "surface": "亡君", + "readging": "ぼうくん", + "pos": "名詞", + "pn": -0.509027 + }, + { + "surface": "広縁", + "readging": "ひろえん", + "pos": "名詞", + "pn": -0.509032 + }, + { + "surface": "恥じらう", + "readging": "はじらう", + "pos": "動詞", + "pn": -0.509063 + }, + { + "surface": "カラン", + "readging": "カラン", + "pos": "名詞", + "pn": -0.509071 + }, + { + "surface": "守る", + "readging": "もる", + "pos": "動詞", + "pn": -0.509074 + }, + { + "surface": "礼式", + "readging": "れいしき", + "pos": "名詞", + "pn": -0.509075 + }, + { + "surface": "風骨", + "readging": "ふうこつ", + "pos": "名詞", + "pn": -0.509086 + }, + { + "surface": "染髪", + "readging": "せんぱつ", + "pos": "名詞", + "pn": -0.509092 + }, + { + "surface": "コロンブスの卵", + "readging": "コロンブスのたまご", + "pos": "名詞", + "pn": -0.509095 + }, + { + "surface": "出掛ける", + "readging": "でかける", + "pos": "動詞", + "pn": -0.509096 + }, + { + "surface": "水澄し", + "readging": "みずすまし", + "pos": "名詞", + "pn": -0.509108 + }, + { + "surface": "浮袋", + "readging": "うきぶくろ", + "pos": "名詞", + "pn": -0.509111 + }, + { + "surface": "文", + "readging": "ぶん", + "pos": "名詞", + "pn": -0.509112 + }, + { + "surface": "高言", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.509133 + }, + { + "surface": "言寄る", + "readging": "いいよる", + "pos": "動詞", + "pn": -0.509135 + }, + { + "surface": "トン", + "readging": "トン", + "pos": "名詞", + "pn": -0.509144 + }, + { + "surface": "石蕗", + "readging": "つわぶき", + "pos": "名詞", + "pn": -0.509178 + }, + { + "surface": "風車", + "readging": "ふうしゃ", + "pos": "名詞", + "pn": -0.509179 + }, + { + "surface": "投影", + "readging": "とうえい", + "pos": "名詞", + "pn": -0.509188 + }, + { + "surface": "兎", + "readging": "う", + "pos": "名詞", + "pn": -0.509189 + }, + { + "surface": "留桶", + "readging": "とめおけ", + "pos": "名詞", + "pn": -0.509193 + }, + { + "surface": "粉剤", + "readging": "ふんざい", + "pos": "名詞", + "pn": -0.509194 + }, + { + "surface": "鐙", + "readging": "あぶみ", + "pos": "名詞", + "pn": -0.509202 + }, + { + "surface": "掛金", + "readging": "かけがね", + "pos": "名詞", + "pn": -0.509209 + }, + { + "surface": "星章", + "readging": "せいしょう", + "pos": "名詞", + "pn": -0.509262 + }, + { + "surface": "むり算段", + "readging": "むりさんだん", + "pos": "名詞", + "pn": -0.509263 + }, + { + "surface": "我", + "readging": "われ", + "pos": "名詞", + "pn": -0.509267 + }, + { + "surface": "耕土", + "readging": "こうど", + "pos": "名詞", + "pn": -0.509268 + }, + { + "surface": "歩合", + "readging": "ぶあい", + "pos": "名詞", + "pn": -0.509274 + }, + { + "surface": "人形", + "readging": "にんぎょう", + "pos": "名詞", + "pn": -0.509284 + }, + { + "surface": "弥蔵", + "readging": "やぞう", + "pos": "名詞", + "pn": -0.509288 + }, + { + "surface": "法", + "readging": "のり", + "pos": "名詞", + "pn": -0.509306 + }, + { + "surface": "一瞬", + "readging": "いっしゅん", + "pos": "名詞", + "pn": -0.509319 + }, + { + "surface": "損害保険", + "readging": "そんがいほけん", + "pos": "名詞", + "pn": -0.509337 + }, + { + "surface": "哮り立つ", + "readging": "たけりたつ", + "pos": "動詞", + "pn": -0.509363 + }, + { + "surface": "御膳汁粉", + "readging": "ごぜんじるこ", + "pos": "名詞", + "pn": -0.509363 + }, + { + "surface": "張出す", + "readging": "はりだす", + "pos": "動詞", + "pn": -0.509367 + }, + { + "surface": "悪血", + "readging": "あくち", + "pos": "名詞", + "pn": -0.509383 + }, + { + "surface": "脱営", + "readging": "だつえい", + "pos": "名詞", + "pn": -0.509409 + }, + { + "surface": "輸送", + "readging": "ゆそう", + "pos": "名詞", + "pn": -0.509446 + }, + { + "surface": "接合", + "readging": "せつごう", + "pos": "名詞", + "pn": -0.509467 + }, + { + "surface": "釣果", + "readging": "ちょうか", + "pos": "名詞", + "pn": -0.50948 + }, + { + "surface": "テンペラ", + "readging": "テンペラ", + "pos": "名詞", + "pn": -0.509487 + }, + { + "surface": "簾", + "readging": "すだれ", + "pos": "名詞", + "pn": -0.509551 + }, + { + "surface": "律動", + "readging": "りつどう", + "pos": "名詞", + "pn": -0.509557 + }, + { + "surface": "電", + "readging": "でん", + "pos": "名詞", + "pn": -0.509558 + }, + { + "surface": "薄様", + "readging": "うすよう", + "pos": "名詞", + "pn": -0.509565 + }, + { + "surface": "窯業", + "readging": "ようぎょう", + "pos": "名詞", + "pn": -0.509588 + }, + { + "surface": "満月", + "readging": "まんげつ", + "pos": "名詞", + "pn": -0.509588 + }, + { + "surface": "例外", + "readging": "れいがい", + "pos": "名詞", + "pn": -0.509612 + }, + { + "surface": "音物", + "readging": "いんもつ", + "pos": "名詞", + "pn": -0.509627 + }, + { + "surface": "見習う", + "readging": "みならう", + "pos": "動詞", + "pn": -0.50963 + }, + { + "surface": "略画", + "readging": "りゃくが", + "pos": "名詞", + "pn": -0.509632 + }, + { + "surface": "火口湖", + "readging": "かこうこ", + "pos": "名詞", + "pn": -0.509666 + }, + { + "surface": "火箭", + "readging": "かせん", + "pos": "名詞", + "pn": -0.509678 + }, + { + "surface": "太古", + "readging": "たいこ", + "pos": "名詞", + "pn": -0.5097 + }, + { + "surface": "張詰める", + "readging": "はりつめる", + "pos": "動詞", + "pn": -0.509757 + }, + { + "surface": "付け人", + "readging": "つけびと", + "pos": "名詞", + "pn": -0.509757 + }, + { + "surface": "端午", + "readging": "たんご", + "pos": "名詞", + "pn": -0.509757 + }, + { + "surface": "交差", + "readging": "こうさ", + "pos": "名詞", + "pn": -0.509765 + }, + { + "surface": "展開", + "readging": "てんかい", + "pos": "名詞", + "pn": -0.509787 + }, + { + "surface": "度量衡", + "readging": "どりょうこう", + "pos": "名詞", + "pn": -0.509796 + }, + { + "surface": "実見", + "readging": "じっけん", + "pos": "名詞", + "pn": -0.509825 + }, + { + "surface": "ぱくる", + "readging": "ぱくる", + "pos": "動詞", + "pn": -0.509847 + }, + { + "surface": "濡髪", + "readging": "ぬれがみ", + "pos": "名詞", + "pn": -0.509874 + }, + { + "surface": "根太", + "readging": "ねだ", + "pos": "名詞", + "pn": -0.509881 + }, + { + "surface": "船倉", + "readging": "せんそう", + "pos": "名詞", + "pn": -0.509884 + }, + { + "surface": "揣摩", + "readging": "しま", + "pos": "名詞", + "pn": -0.509887 + }, + { + "surface": "命じる", + "readging": "めいじる", + "pos": "動詞", + "pn": -0.509892 + }, + { + "surface": "車前草", + "readging": "おおばこ", + "pos": "名詞", + "pn": -0.509897 + }, + { + "surface": "兵仗", + "readging": "へいじょう", + "pos": "名詞", + "pn": -0.509906 + }, + { + "surface": "基層", + "readging": "きそう", + "pos": "名詞", + "pn": -0.509915 + }, + { + "surface": "麩", + "readging": "ふ", + "pos": "名詞", + "pn": -0.509922 + }, + { + "surface": "一場", + "readging": "いちじょう", + "pos": "名詞", + "pn": -0.509928 + }, + { + "surface": "前額", + "readging": "ぜんがく", + "pos": "名詞", + "pn": -0.50995 + }, + { + "surface": "アロハ", + "readging": "アロハ", + "pos": "名詞", + "pn": -0.509972 + }, + { + "surface": "真鰯", + "readging": "まいわし", + "pos": "名詞", + "pn": -0.50998 + }, + { + "surface": "濁世", + "readging": "じょくせ", + "pos": "名詞", + "pn": -0.509983 + }, + { + "surface": "重心", + "readging": "じゅうしん", + "pos": "名詞", + "pn": -0.509987 + }, + { + "surface": "別人", + "readging": "べつじん", + "pos": "名詞", + "pn": -0.510016 + }, + { + "surface": "保証", + "readging": "ほしょう", + "pos": "名詞", + "pn": -0.510022 + }, + { + "surface": "角膜", + "readging": "かくまく", + "pos": "名詞", + "pn": -0.510022 + }, + { + "surface": "コンセプト", + "readging": "コンセプト", + "pos": "名詞", + "pn": -0.510024 + }, + { + "surface": "注射", + "readging": "ちゅうしゃ", + "pos": "名詞", + "pn": -0.510038 + }, + { + "surface": "火定", + "readging": "かじょう", + "pos": "名詞", + "pn": -0.510048 + }, + { + "surface": "叩き", + "readging": "はたき", + "pos": "名詞", + "pn": -0.510052 + }, + { + "surface": "引延し", + "readging": "ひきのばし", + "pos": "名詞", + "pn": -0.51006 + }, + { + "surface": "視線", + "readging": "しせん", + "pos": "名詞", + "pn": -0.510066 + }, + { + "surface": "デス マッチ", + "readging": "デス マッチ", + "pos": "名詞", + "pn": -0.510078 + }, + { + "surface": "木魚", + "readging": "もくぎょ", + "pos": "名詞", + "pn": -0.51009 + }, + { + "surface": "茸", + "readging": "たけ", + "pos": "名詞", + "pn": -0.51011 + }, + { + "surface": "行平", + "readging": "ゆきひら", + "pos": "名詞", + "pn": -0.510133 + }, + { + "surface": "分節", + "readging": "ぶんせつ", + "pos": "名詞", + "pn": -0.51015 + }, + { + "surface": "上布", + "readging": "じょうふ", + "pos": "名詞", + "pn": -0.510164 + }, + { + "surface": "海豹", + "readging": "あざらし", + "pos": "名詞", + "pn": -0.510166 + }, + { + "surface": "マンモス", + "readging": "マンモス", + "pos": "名詞", + "pn": -0.510174 + }, + { + "surface": "兎", + "readging": "と", + "pos": "名詞", + "pn": -0.51018 + }, + { + "surface": "辺地", + "readging": "へんち", + "pos": "名詞", + "pn": -0.510263 + }, + { + "surface": "軒灯", + "readging": "けんとう", + "pos": "名詞", + "pn": -0.510267 + }, + { + "surface": "錐", + "readging": "すい", + "pos": "名詞", + "pn": -0.510275 + }, + { + "surface": "尻餅", + "readging": "しりもち", + "pos": "名詞", + "pn": -0.510298 + }, + { + "surface": "古鉄", + "readging": "ふるかね", + "pos": "名詞", + "pn": -0.510358 + }, + { + "surface": "立て込める", + "readging": "たてこめる", + "pos": "動詞", + "pn": -0.51036 + }, + { + "surface": "先陣", + "readging": "せんじん", + "pos": "名詞", + "pn": -0.510368 + }, + { + "surface": "就業", + "readging": "しゅうぎょう", + "pos": "名詞", + "pn": -0.510408 + }, + { + "surface": "心外", + "readging": "しんがい", + "pos": "名詞", + "pn": -0.51042 + }, + { + "surface": "膨らます", + "readging": "ふくらます", + "pos": "動詞", + "pn": -0.510435 + }, + { + "surface": "隅", + "readging": "ぐう", + "pos": "名詞", + "pn": -0.510449 + }, + { + "surface": "がっつく", + "readging": "がっつく", + "pos": "動詞", + "pn": -0.510454 + }, + { + "surface": "焼鳥", + "readging": "やきとり", + "pos": "名詞", + "pn": -0.510464 + }, + { + "surface": "山里", + "readging": "やまざと", + "pos": "名詞", + "pn": -0.510471 + }, + { + "surface": "丹", + "readging": "たん", + "pos": "名詞", + "pn": -0.510496 + }, + { + "surface": "導火線", + "readging": "どうかせん", + "pos": "名詞", + "pn": -0.510496 + }, + { + "surface": "コース", + "readging": "コース", + "pos": "名詞", + "pn": -0.510505 + }, + { + "surface": "喉笛", + "readging": "のどぶえ", + "pos": "名詞", + "pn": -0.510507 + }, + { + "surface": "歯軋り", + "readging": "はぎしり", + "pos": "名詞", + "pn": -0.510523 + }, + { + "surface": "歯車", + "readging": "はぐるま", + "pos": "名詞", + "pn": -0.510533 + }, + { + "surface": "湿り半", + "readging": "しめりばん", + "pos": "名詞", + "pn": -0.510546 + }, + { + "surface": "心地", + "readging": "しんじ", + "pos": "名詞", + "pn": -0.510548 + }, + { + "surface": "捕縄", + "readging": "とりなわ", + "pos": "名詞", + "pn": -0.510566 + }, + { + "surface": "宣う", + "readging": "のたまう", + "pos": "動詞", + "pn": -0.510578 + }, + { + "surface": "火傷", + "readging": "かしょう", + "pos": "名詞", + "pn": -0.510583 + }, + { + "surface": "下層", + "readging": "かそう", + "pos": "名詞", + "pn": -0.510633 + }, + { + "surface": "叉手網", + "readging": "さであみ", + "pos": "名詞", + "pn": -0.510655 + }, + { + "surface": "旋毛", + "readging": "せんもう", + "pos": "名詞", + "pn": -0.510663 + }, + { + "surface": "明け払う", + "readging": "あけはらう", + "pos": "動詞", + "pn": -0.510666 + }, + { + "surface": "決死", + "readging": "けっし", + "pos": "名詞", + "pn": -0.510685 + }, + { + "surface": "休み", + "readging": "やすみ", + "pos": "名詞", + "pn": -0.510697 + }, + { + "surface": "基盤", + "readging": "きばん", + "pos": "名詞", + "pn": -0.510703 + }, + { + "surface": "文飾", + "readging": "ぶんしょく", + "pos": "名詞", + "pn": -0.510708 + }, + { + "surface": "謄写版", + "readging": "とうしゃばん", + "pos": "名詞", + "pn": -0.510718 + }, + { + "surface": "弱腰", + "readging": "よわごし", + "pos": "名詞", + "pn": -0.510748 + }, + { + "surface": "見舞う", + "readging": "みまう", + "pos": "動詞", + "pn": -0.510771 + }, + { + "surface": "日陰", + "readging": "ひかげ", + "pos": "名詞", + "pn": -0.510777 + }, + { + "surface": "凶器", + "readging": "きょうき", + "pos": "名詞", + "pn": -0.510779 + }, + { + "surface": "紐帯", + "readging": "ちゅうたい", + "pos": "名詞", + "pn": -0.510806 + }, + { + "surface": "編目", + "readging": "へんもく", + "pos": "名詞", + "pn": -0.510811 + }, + { + "surface": "刺客", + "readging": "しかく", + "pos": "名詞", + "pn": -0.510814 + }, + { + "surface": "粉乳", + "readging": "ふんにゅう", + "pos": "名詞", + "pn": -0.5109 + }, + { + "surface": "謂", + "readging": "いい", + "pos": "名詞", + "pn": -0.510908 + }, + { + "surface": "茶宇", + "readging": "チャウ", + "pos": "名詞", + "pn": -0.510938 + }, + { + "surface": "製糖", + "readging": "せいとう", + "pos": "名詞", + "pn": -0.510948 + }, + { + "surface": "釘隠し", + "readging": "くぎかくし", + "pos": "名詞", + "pn": -0.510953 + }, + { + "surface": "こける", + "readging": "こける", + "pos": "動詞", + "pn": -0.510961 + }, + { + "surface": "高上り", + "readging": "たかあがり", + "pos": "名詞", + "pn": -0.510973 + }, + { + "surface": "習わす", + "readging": "ならわす", + "pos": "動詞", + "pn": -0.510992 + }, + { + "surface": "スカル", + "readging": "スカル", + "pos": "名詞", + "pn": -0.510992 + }, + { + "surface": "屑糸", + "readging": "くずいと", + "pos": "名詞", + "pn": -0.511013 + }, + { + "surface": "一泊", + "readging": "いっぱく", + "pos": "名詞", + "pn": -0.511022 + }, + { + "surface": "ノイローゼ", + "readging": "ノイローゼ", + "pos": "名詞", + "pn": -0.511027 + }, + { + "surface": "図絵", + "readging": "ずえ", + "pos": "名詞", + "pn": -0.511072 + }, + { + "surface": "義膜", + "readging": "ぎまく", + "pos": "名詞", + "pn": -0.511087 + }, + { + "surface": "種畜", + "readging": "しゅちく", + "pos": "名詞", + "pn": -0.511114 + }, + { + "surface": "ゲラ", + "readging": "ゲラ", + "pos": "名詞", + "pn": -0.511117 + }, + { + "surface": "不要", + "readging": "ふよう", + "pos": "名詞", + "pn": -0.511122 + }, + { + "surface": "紫蘭", + "readging": "しらん", + "pos": "名詞", + "pn": -0.511124 + }, + { + "surface": "既述", + "readging": "きじゅつ", + "pos": "名詞", + "pn": -0.511129 + }, + { + "surface": "山風", + "readging": "やまかぜ", + "pos": "名詞", + "pn": -0.511141 + }, + { + "surface": "噴門", + "readging": "ふんもん", + "pos": "名詞", + "pn": -0.511191 + }, + { + "surface": "踏抜く", + "readging": "ふみぬく", + "pos": "動詞", + "pn": -0.511192 + }, + { + "surface": "静粛", + "readging": "せいしゅく", + "pos": "名詞", + "pn": -0.511198 + }, + { + "surface": "分け前", + "readging": "わけまえ", + "pos": "名詞", + "pn": -0.511202 + }, + { + "surface": "スライド", + "readging": "スライド", + "pos": "名詞", + "pn": -0.511225 + }, + { + "surface": "規", + "readging": "き", + "pos": "名詞", + "pn": -0.511228 + }, + { + "surface": "行嚢", + "readging": "こうのう", + "pos": "名詞", + "pn": -0.511263 + }, + { + "surface": "走馬灯", + "readging": "そうまとう", + "pos": "名詞", + "pn": -0.511303 + }, + { + "surface": "高下駄", + "readging": "たかげた", + "pos": "名詞", + "pn": -0.511314 + }, + { + "surface": "水口", + "readging": "みずぐち", + "pos": "名詞", + "pn": -0.511345 + }, + { + "surface": "包囲", + "readging": "ほうい", + "pos": "名詞", + "pn": -0.511383 + }, + { + "surface": "住居", + "readging": "じゅうきょ", + "pos": "名詞", + "pn": -0.511417 + }, + { + "surface": "ぽっぽ", + "readging": "ぽっぽ", + "pos": "名詞", + "pn": -0.511425 + }, + { + "surface": "絹篩", + "readging": "きぬぶるい", + "pos": "名詞", + "pn": -0.511439 + }, + { + "surface": "欲心", + "readging": "よくしん", + "pos": "名詞", + "pn": -0.511489 + }, + { + "surface": "心理", + "readging": "しんり", + "pos": "名詞", + "pn": -0.511504 + }, + { + "surface": "防風", + "readging": "ぼうふう", + "pos": "名詞", + "pn": -0.511529 + }, + { + "surface": "連添う", + "readging": "つれそう", + "pos": "動詞", + "pn": -0.511533 + }, + { + "surface": "透かす", + "readging": "すかす", + "pos": "動詞", + "pn": -0.51154 + }, + { + "surface": "同種", + "readging": "どうしゅ", + "pos": "名詞", + "pn": -0.511547 + }, + { + "surface": "クッション", + "readging": "クッション", + "pos": "名詞", + "pn": -0.511548 + }, + { + "surface": "鶴", + "readging": "かく", + "pos": "名詞", + "pn": -0.511551 + }, + { + "surface": "友", + "readging": "とも", + "pos": "名詞", + "pn": -0.511554 + }, + { + "surface": "初穂", + "readging": "はつほ", + "pos": "名詞", + "pn": -0.511595 + }, + { + "surface": "傾く", + "readging": "かたむく", + "pos": "動詞", + "pn": -0.5116 + }, + { + "surface": "貞女", + "readging": "ていじょ", + "pos": "名詞", + "pn": -0.511601 + }, + { + "surface": "沸騰", + "readging": "ふっとう", + "pos": "名詞", + "pn": -0.511608 + }, + { + "surface": "加減", + "readging": "かげん", + "pos": "名詞", + "pn": -0.51162 + }, + { + "surface": "寄付く", + "readging": "よりつく", + "pos": "動詞", + "pn": -0.511638 + }, + { + "surface": "雛", + "readging": "ひな", + "pos": "名詞", + "pn": -0.511644 + }, + { + "surface": "潮汲み", + "readging": "しおくみ", + "pos": "名詞", + "pn": -0.511654 + }, + { + "surface": "元三", + "readging": "がんざん", + "pos": "名詞", + "pn": -0.511686 + }, + { + "surface": "でれ助", + "readging": "でれすけ", + "pos": "名詞", + "pn": -0.511698 + }, + { + "surface": "追肥", + "readging": "ついひ", + "pos": "名詞", + "pn": -0.511707 + }, + { + "surface": "略す", + "readging": "りゃくす", + "pos": "動詞", + "pn": -0.511708 + }, + { + "surface": "衰残", + "readging": "すいざん", + "pos": "名詞", + "pn": -0.511708 + }, + { + "surface": "夜鳴き", + "readging": "よなき", + "pos": "名詞", + "pn": -0.511739 + }, + { + "surface": "時日", + "readging": "じじつ", + "pos": "名詞", + "pn": -0.511742 + }, + { + "surface": "尻上り", + "readging": "しりあがり", + "pos": "名詞", + "pn": -0.51175 + }, + { + "surface": "アメリカ白火取", + "readging": "アメリカしろひとり", + "pos": "名詞", + "pn": -0.511762 + }, + { + "surface": "直角", + "readging": "ちょっかく", + "pos": "名詞", + "pn": -0.511823 + }, + { + "surface": "襟", + "readging": "きん", + "pos": "名詞", + "pn": -0.511856 + }, + { + "surface": "サンドペーパー", + "readging": "サンドペーパー", + "pos": "名詞", + "pn": -0.511916 + }, + { + "surface": "仕上げ", + "readging": "しあげ", + "pos": "名詞", + "pn": -0.511941 + }, + { + "surface": "縮織", + "readging": "ちぢみおり", + "pos": "名詞", + "pn": -0.51196 + }, + { + "surface": "浮荷", + "readging": "うきに", + "pos": "名詞", + "pn": -0.511961 + }, + { + "surface": "飯炊き", + "readging": "めしたき", + "pos": "名詞", + "pn": -0.511969 + }, + { + "surface": "鬼神", + "readging": "きしん", + "pos": "名詞", + "pn": -0.511979 + }, + { + "surface": "エンタシス", + "readging": "エンタシス", + "pos": "名詞", + "pn": -0.512017 + }, + { + "surface": "動脈", + "readging": "どうみゃく", + "pos": "名詞", + "pn": -0.512017 + }, + { + "surface": "前立腺", + "readging": "ぜんりつせん", + "pos": "名詞", + "pn": -0.512018 + }, + { + "surface": "深謝", + "readging": "しんしゃ", + "pos": "名詞", + "pn": -0.512021 + }, + { + "surface": "休憩", + "readging": "きゅうけい", + "pos": "名詞", + "pn": -0.512023 + }, + { + "surface": "面皰", + "readging": "にきび", + "pos": "名詞", + "pn": -0.512053 + }, + { + "surface": "潜望鏡", + "readging": "せんぼうきょう", + "pos": "名詞", + "pn": -0.51206 + }, + { + "surface": "氏", + "readging": "し", + "pos": "名詞", + "pn": -0.512065 + }, + { + "surface": "湯豆腐", + "readging": "ゆどうふ", + "pos": "名詞", + "pn": -0.512066 + }, + { + "surface": "円周", + "readging": "えんしゅう", + "pos": "名詞", + "pn": -0.512068 + }, + { + "surface": "虻", + "readging": "あぶ", + "pos": "名詞", + "pn": -0.512073 + }, + { + "surface": "山苞", + "readging": "やまづと", + "pos": "名詞", + "pn": -0.51209 + }, + { + "surface": "添え木", + "readging": "そえぎ", + "pos": "名詞", + "pn": -0.512094 + }, + { + "surface": "伸し歩く", + "readging": "のしあるく", + "pos": "動詞", + "pn": -0.512119 + }, + { + "surface": "大祓", + "readging": "おおはらい", + "pos": "名詞", + "pn": -0.512126 + }, + { + "surface": "変奏曲", + "readging": "へんそうきょく", + "pos": "名詞", + "pn": -0.512137 + }, + { + "surface": "停車", + "readging": "ていしゃ", + "pos": "名詞", + "pn": -0.512138 + }, + { + "surface": "シャッター", + "readging": "シャッター", + "pos": "名詞", + "pn": -0.512164 + }, + { + "surface": "計略", + "readging": "けいりゃく", + "pos": "名詞", + "pn": -0.512167 + }, + { + "surface": "下獄", + "readging": "げごく", + "pos": "名詞", + "pn": -0.512178 + }, + { + "surface": "延", + "readging": "のべ", + "pos": "名詞", + "pn": -0.512191 + }, + { + "surface": "山彦", + "readging": "やまびこ", + "pos": "名詞", + "pn": -0.512208 + }, + { + "surface": "煙突", + "readging": "えんとつ", + "pos": "名詞", + "pn": -0.512223 + }, + { + "surface": "ももんじい", + "readging": "ももんじい", + "pos": "名詞", + "pn": -0.51223 + }, + { + "surface": "福豆", + "readging": "ふくまめ", + "pos": "名詞", + "pn": -0.512256 + }, + { + "surface": "寒蘭", + "readging": "かんらん", + "pos": "名詞", + "pn": -0.512263 + }, + { + "surface": "余り物", + "readging": "あまりもの", + "pos": "名詞", + "pn": -0.512264 + }, + { + "surface": "髪切虫", + "readging": "かみきりむし", + "pos": "名詞", + "pn": -0.512268 + }, + { + "surface": "本陣", + "readging": "ほんじん", + "pos": "名詞", + "pn": -0.512278 + }, + { + "surface": "リヤカー", + "readging": "リヤカー", + "pos": "名詞", + "pn": -0.512298 + }, + { + "surface": "公衆", + "readging": "こうしゅう", + "pos": "名詞", + "pn": -0.512298 + }, + { + "surface": "甲冑", + "readging": "かっちゅう", + "pos": "名詞", + "pn": -0.512299 + }, + { + "surface": "職名", + "readging": "しょくめい", + "pos": "名詞", + "pn": -0.512301 + }, + { + "surface": "立て付け", + "readging": "たてつけ", + "pos": "名詞", + "pn": -0.512307 + }, + { + "surface": "仙人", + "readging": "せんにん", + "pos": "名詞", + "pn": -0.512307 + }, + { + "surface": "茶焙じ", + "readging": "ちゃほうじ", + "pos": "名詞", + "pn": -0.512317 + }, + { + "surface": "軟膏", + "readging": "なんこう", + "pos": "名詞", + "pn": -0.512343 + }, + { + "surface": "曾祖母", + "readging": "そうそぼ", + "pos": "名詞", + "pn": -0.512353 + }, + { + "surface": "雛罌粟", + "readging": "ひなげし", + "pos": "名詞", + "pn": -0.512354 + }, + { + "surface": "立言", + "readging": "りつげん", + "pos": "名詞", + "pn": -0.512372 + }, + { + "surface": "盗塁", + "readging": "とうるい", + "pos": "名詞", + "pn": -0.512407 + }, + { + "surface": "影絵", + "readging": "かげえ", + "pos": "名詞", + "pn": -0.512424 + }, + { + "surface": "管", + "readging": "かん", + "pos": "名詞", + "pn": -0.512425 + }, + { + "surface": "乳歯", + "readging": "にゅうし", + "pos": "名詞", + "pn": -0.512471 + }, + { + "surface": "ポイント", + "readging": "ポイント", + "pos": "名詞", + "pn": -0.512475 + }, + { + "surface": "取り分", + "readging": "とりぶん", + "pos": "名詞", + "pn": -0.512478 + }, + { + "surface": "波長", + "readging": "はちょう", + "pos": "名詞", + "pn": -0.512495 + }, + { + "surface": "人身攻撃", + "readging": "じんしんこうげき", + "pos": "名詞", + "pn": -0.512504 + }, + { + "surface": "近接", + "readging": "きんせつ", + "pos": "名詞", + "pn": -0.512527 + }, + { + "surface": "括り付ける", + "readging": "くくりつける", + "pos": "動詞", + "pn": -0.51253 + }, + { + "surface": "磁性", + "readging": "じせい", + "pos": "名詞", + "pn": -0.512554 + }, + { + "surface": "着意", + "readging": "ちゃくい", + "pos": "名詞", + "pn": -0.512568 + }, + { + "surface": "浮ぶ", + "readging": "うかぶ", + "pos": "動詞", + "pn": -0.512569 + }, + { + "surface": "山師", + "readging": "やまし", + "pos": "名詞", + "pn": -0.512598 + }, + { + "surface": "湿疹", + "readging": "しっしん", + "pos": "名詞", + "pn": -0.512611 + }, + { + "surface": "ペン", + "readging": "ペンフレンド", + "pos": "名詞", + "pn": -0.512613 + }, + { + "surface": "取下げる", + "readging": "とりさげる", + "pos": "動詞", + "pn": -0.512637 + }, + { + "surface": "翻", + "readging": "こぼし", + "pos": "名詞", + "pn": -0.512666 + }, + { + "surface": "筋合", + "readging": "すじあい", + "pos": "名詞", + "pn": -0.512676 + }, + { + "surface": "急信", + "readging": "きゅうしん", + "pos": "名詞", + "pn": -0.512681 + }, + { + "surface": "印判", + "readging": "いんばん", + "pos": "名詞", + "pn": -0.512716 + }, + { + "surface": "道中", + "readging": "どうちゅう", + "pos": "名詞", + "pn": -0.51277 + }, + { + "surface": "音", + "readging": "おと", + "pos": "名詞", + "pn": -0.512781 + }, + { + "surface": "落差", + "readging": "らくさ", + "pos": "名詞", + "pn": -0.512794 + }, + { + "surface": "こだわる", + "readging": "こだわる", + "pos": "動詞", + "pn": -0.512844 + }, + { + "surface": "焙炉", + "readging": "ほいろ", + "pos": "名詞", + "pn": -0.512861 + }, + { + "surface": "歳晩", + "readging": "さいばん", + "pos": "名詞", + "pn": -0.512865 + }, + { + "surface": "先月", + "readging": "せんげつ", + "pos": "名詞", + "pn": -0.512919 + }, + { + "surface": "白金", + "readging": "はっきん", + "pos": "名詞", + "pn": -0.512922 + }, + { + "surface": "万国旗", + "readging": "ばんこくき", + "pos": "名詞", + "pn": -0.512927 + }, + { + "surface": "弱震", + "readging": "じゃくしん", + "pos": "名詞", + "pn": -0.512929 + }, + { + "surface": "前略", + "readging": "ぜんりゃく", + "pos": "名詞", + "pn": -0.51296 + }, + { + "surface": "千代", + "readging": "ちよ", + "pos": "名詞", + "pn": -0.512963 + }, + { + "surface": "一寸", + "readging": "いっすん", + "pos": "名詞", + "pn": -0.51298 + }, + { + "surface": "進物", + "readging": "しんもつ", + "pos": "名詞", + "pn": -0.512983 + }, + { + "surface": "記", + "readging": "き", + "pos": "名詞", + "pn": -0.512985 + }, + { + "surface": "蔓菜", + "readging": "つるな", + "pos": "名詞", + "pn": -0.512991 + }, + { + "surface": "始終", + "readging": "しじゅう", + "pos": "副詞", + "pn": -0.513002 + }, + { + "surface": "田楽焼", + "readging": "でんがくやき", + "pos": "名詞", + "pn": -0.513008 + }, + { + "surface": "臨時", + "readging": "りんじ", + "pos": "名詞", + "pn": -0.513037 + }, + { + "surface": "アルギン酸", + "readging": "アルギンさん", + "pos": "名詞", + "pn": -0.513061 + }, + { + "surface": "衾", + "readging": "ふすま", + "pos": "名詞", + "pn": -0.513083 + }, + { + "surface": "転宿", + "readging": "てんしゅく", + "pos": "名詞", + "pn": -0.513084 + }, + { + "surface": "酸敗", + "readging": "さんぱい", + "pos": "名詞", + "pn": -0.513089 + }, + { + "surface": "替玉", + "readging": "かえだま", + "pos": "名詞", + "pn": -0.513094 + }, + { + "surface": "クロス", + "readging": "クロスワード", + "pos": "名詞", + "pn": -0.513095 + }, + { + "surface": "練物", + "readging": "ねりもの", + "pos": "名詞", + "pn": -0.513107 + }, + { + "surface": "移乗", + "readging": "いじょう", + "pos": "名詞", + "pn": -0.513123 + }, + { + "surface": "ずり落ちる", + "readging": "ずりおちる", + "pos": "動詞", + "pn": -0.513124 + }, + { + "surface": "揺らぐ", + "readging": "ゆらぐ", + "pos": "動詞", + "pn": -0.513137 + }, + { + "surface": "逼塞", + "readging": "ひっそく", + "pos": "名詞", + "pn": -0.513139 + }, + { + "surface": "霜枯れる", + "readging": "しもがれる", + "pos": "動詞", + "pn": -0.51314 + }, + { + "surface": "顔色", + "readging": "かおいろ", + "pos": "名詞", + "pn": -0.513177 + }, + { + "surface": "金串", + "readging": "かなぐし", + "pos": "名詞", + "pn": -0.513189 + }, + { + "surface": "当", + "readging": "とう", + "pos": "名詞", + "pn": -0.513194 + }, + { + "surface": "突拍子", + "readging": "とっぴょうし", + "pos": "名詞", + "pn": -0.513205 + }, + { + "surface": "兵団", + "readging": "へいだん", + "pos": "名詞", + "pn": -0.513212 + }, + { + "surface": "船具", + "readging": "せんぐ", + "pos": "名詞", + "pn": -0.513214 + }, + { + "surface": "霊媒", + "readging": "れいばい", + "pos": "名詞", + "pn": -0.513224 + }, + { + "surface": "羊蹄", + "readging": "ぎしぎし", + "pos": "名詞", + "pn": -0.51323 + }, + { + "surface": "はいすい", + "readging": "はいすいトン", + "pos": "形容詞", + "pn": -0.513264 + }, + { + "surface": "鞭打つ", + "readging": "むちうつ", + "pos": "動詞", + "pn": -0.513267 + }, + { + "surface": "居眠り", + "readging": "いねむり", + "pos": "名詞", + "pn": -0.513272 + }, + { + "surface": "家臣", + "readging": "かしん", + "pos": "名詞", + "pn": -0.513273 + }, + { + "surface": "暁闇", + "readging": "ぎょうあん", + "pos": "名詞", + "pn": -0.513297 + }, + { + "surface": "はにかむ", + "readging": "はにかむ", + "pos": "動詞", + "pn": -0.513348 + }, + { + "surface": "綴蓋", + "readging": "とじぶた", + "pos": "名詞", + "pn": -0.513348 + }, + { + "surface": "斑文", + "readging": "はんもん", + "pos": "名詞", + "pn": -0.513353 + }, + { + "surface": "不面目", + "readging": "ふめんぼく", + "pos": "名詞", + "pn": -0.513424 + }, + { + "surface": "抗弁", + "readging": "こうべん", + "pos": "名詞", + "pn": -0.513426 + }, + { + "surface": "頭", + "readging": "あたま", + "pos": "名詞", + "pn": -0.513451 + }, + { + "surface": "折敷", + "readging": "おりしき", + "pos": "名詞", + "pn": -0.513456 + }, + { + "surface": "坊主持ち", + "readging": "ぼうずもち", + "pos": "名詞", + "pn": -0.51347 + }, + { + "surface": "湿す", + "readging": "しめす", + "pos": "動詞", + "pn": -0.513487 + }, + { + "surface": "春泥", + "readging": "しゅんでい", + "pos": "名詞", + "pn": -0.513493 + }, + { + "surface": "水鏡", + "readging": "みずかがみ", + "pos": "名詞", + "pn": -0.513493 + }, + { + "surface": "解約", + "readging": "かいやく", + "pos": "名詞", + "pn": -0.513499 + }, + { + "surface": "真魚鰹", + "readging": "まながつお", + "pos": "名詞", + "pn": -0.513523 + }, + { + "surface": "縁定め", + "readging": "えんさだめ", + "pos": "名詞", + "pn": -0.513529 + }, + { + "surface": "モーター", + "readging": "モータープール", + "pos": "名詞", + "pn": -0.513566 + }, + { + "surface": "届く", + "readging": "とどく", + "pos": "動詞", + "pn": -0.513573 + }, + { + "surface": "万世", + "readging": "ばんせい", + "pos": "名詞", + "pn": -0.51358 + }, + { + "surface": "進路", + "readging": "しんろ", + "pos": "名詞", + "pn": -0.51358 + }, + { + "surface": "強請", + "readging": "ごうせい", + "pos": "名詞", + "pn": -0.513582 + }, + { + "surface": "水芭蕉", + "readging": "みずばしょう", + "pos": "名詞", + "pn": -0.513583 + }, + { + "surface": "筋骨", + "readging": "きんこつ", + "pos": "名詞", + "pn": -0.513627 + }, + { + "surface": "上方", + "readging": "じょうほう", + "pos": "名詞", + "pn": -0.513737 + }, + { + "surface": "老生", + "readging": "ろうせい", + "pos": "名詞", + "pn": -0.513737 + }, + { + "surface": "居待の月", + "readging": "いまちのつき", + "pos": "名詞", + "pn": -0.513785 + }, + { + "surface": "零余子", + "readging": "むかご", + "pos": "名詞", + "pn": -0.513809 + }, + { + "surface": "弥", + "readging": "み", + "pos": "名詞", + "pn": -0.513812 + }, + { + "surface": "大将", + "readging": "だいしょう", + "pos": "名詞", + "pn": -0.513817 + }, + { + "surface": "鉄桶", + "readging": "てっとう", + "pos": "名詞", + "pn": -0.513822 + }, + { + "surface": "人頭税", + "readging": "じんとうぜい", + "pos": "名詞", + "pn": -0.513837 + }, + { + "surface": "水仙", + "readging": "すいせん", + "pos": "名詞", + "pn": -0.513842 + }, + { + "surface": "脇腹", + "readging": "わきばら", + "pos": "名詞", + "pn": -0.513849 + }, + { + "surface": "うつうつ", + "readging": "うつうつ", + "pos": "副詞", + "pn": -0.513851 + }, + { + "surface": "焼戻し", + "readging": "やきもどし", + "pos": "名詞", + "pn": -0.513867 + }, + { + "surface": "カレー", + "readging": "カレーライス", + "pos": "名詞", + "pn": -0.513869 + }, + { + "surface": "かれこれ", + "readging": "かれこれ", + "pos": "副詞", + "pn": -0.513878 + }, + { + "surface": "サンバイザー", + "readging": "サンバイザー", + "pos": "名詞", + "pn": -0.513878 + }, + { + "surface": "服地", + "readging": "ふくじ", + "pos": "名詞", + "pn": -0.513883 + }, + { + "surface": "電位", + "readging": "でんい", + "pos": "名詞", + "pn": -0.513893 + }, + { + "surface": "集合", + "readging": "しゅうごう", + "pos": "名詞", + "pn": -0.513933 + }, + { + "surface": "前書", + "readging": "まえがき", + "pos": "名詞", + "pn": -0.513937 + }, + { + "surface": "米作", + "readging": "べいさく", + "pos": "名詞", + "pn": -0.513954 + }, + { + "surface": "出っ歯", + "readging": "でっぱ", + "pos": "名詞", + "pn": -0.51396 + }, + { + "surface": "モッブ", + "readging": "モッブ", + "pos": "名詞", + "pn": -0.514 + }, + { + "surface": "腹の虫", + "readging": "はらのむし", + "pos": "名詞", + "pn": -0.514015 + }, + { + "surface": "銀狐", + "readging": "ぎんぎつね", + "pos": "名詞", + "pn": -0.514064 + }, + { + "surface": "むしゃぶりつく", + "readging": "むしゃぶりつく", + "pos": "動詞", + "pn": -0.514067 + }, + { + "surface": "ラジオ", + "readging": "ラジオゾンデ", + "pos": "名詞", + "pn": -0.514067 + }, + { + "surface": "赤禍", + "readging": "せっか", + "pos": "名詞", + "pn": -0.514101 + }, + { + "surface": "欲求", + "readging": "よっきゅう", + "pos": "名詞", + "pn": -0.51415 + }, + { + "surface": "徘徊", + "readging": "はいかい", + "pos": "名詞", + "pn": -0.514154 + }, + { + "surface": "段ボール", + "readging": "だんボール", + "pos": "名詞", + "pn": -0.514156 + }, + { + "surface": "歌詞", + "readging": "かし", + "pos": "名詞", + "pn": -0.514184 + }, + { + "surface": "鏑", + "readging": "かぶら", + "pos": "名詞", + "pn": -0.514185 + }, + { + "surface": "口取", + "readging": "くちとり", + "pos": "名詞", + "pn": -0.514199 + }, + { + "surface": "仏家", + "readging": "ぶっけ", + "pos": "名詞", + "pn": -0.514207 + }, + { + "surface": "狂れる", + "readging": "ふれる", + "pos": "動詞", + "pn": -0.514218 + }, + { + "surface": "紅葉", + "readging": "もみじがり", + "pos": "名詞", + "pn": -0.514224 + }, + { + "surface": "魂魄", + "readging": "こんぱく", + "pos": "名詞", + "pn": -0.514238 + }, + { + "surface": "出所", + "readging": "でどころ", + "pos": "名詞", + "pn": -0.514239 + }, + { + "surface": "如鱗木", + "readging": "じょりんもく", + "pos": "名詞", + "pn": -0.514242 + }, + { + "surface": "出産", + "readging": "しゅっさん", + "pos": "名詞", + "pn": -0.514255 + }, + { + "surface": "馬橇", + "readging": "ばそり", + "pos": "名詞", + "pn": -0.514258 + }, + { + "surface": "三の膳", + "readging": "さんのぜん", + "pos": "名詞", + "pn": -0.514316 + }, + { + "surface": "根城", + "readging": "ねじろ", + "pos": "名詞", + "pn": -0.514326 + }, + { + "surface": "領域", + "readging": "りょういき", + "pos": "名詞", + "pn": -0.514336 + }, + { + "surface": "酒肴", + "readging": "しゅこう", + "pos": "名詞", + "pn": -0.514339 + }, + { + "surface": "毫も", + "readging": "ごうも", + "pos": "副詞", + "pn": -0.51435 + }, + { + "surface": "抉る", + "readging": "くじる", + "pos": "動詞", + "pn": -0.514375 + }, + { + "surface": "洋式", + "readging": "ようしき", + "pos": "名詞", + "pn": -0.514375 + }, + { + "surface": "裏地", + "readging": "うらじ", + "pos": "名詞", + "pn": -0.5144 + }, + { + "surface": "救い主", + "readging": "すくいぬし", + "pos": "名詞", + "pn": -0.514411 + }, + { + "surface": "蹴鞠", + "readging": "けまり", + "pos": "名詞", + "pn": -0.51444 + }, + { + "surface": "肩上げ", + "readging": "かたあげ", + "pos": "名詞", + "pn": -0.514498 + }, + { + "surface": "親子", + "readging": "おやこ", + "pos": "名詞", + "pn": -0.514551 + }, + { + "surface": "口約束", + "readging": "くちやくそく", + "pos": "名詞", + "pn": -0.51456 + }, + { + "surface": "マイナス", + "readging": "マイナス", + "pos": "名詞", + "pn": -0.514569 + }, + { + "surface": "猟奇", + "readging": "りょうき", + "pos": "名詞", + "pn": -0.514576 + }, + { + "surface": "勢子", + "readging": "せこ", + "pos": "名詞", + "pn": -0.514635 + }, + { + "surface": "兵児帯", + "readging": "へこおび", + "pos": "名詞", + "pn": -0.514648 + }, + { + "surface": "片一方", + "readging": "かたいっぽう", + "pos": "名詞", + "pn": -0.514661 + }, + { + "surface": "茶化す", + "readging": "ちゃかす", + "pos": "動詞", + "pn": -0.514662 + }, + { + "surface": "美女桜", + "readging": "びじょざくら", + "pos": "名詞", + "pn": -0.514684 + }, + { + "surface": "身持ち", + "readging": "みもち", + "pos": "名詞", + "pn": -0.514699 + }, + { + "surface": "御する", + "readging": "ぎょする", + "pos": "動詞", + "pn": -0.514721 + }, + { + "surface": "石組", + "readging": "いしぐみ", + "pos": "名詞", + "pn": -0.514769 + }, + { + "surface": "一夜さ", + "readging": "ひとよさ", + "pos": "名詞", + "pn": -0.514783 + }, + { + "surface": "白絣", + "readging": "しろがすり", + "pos": "名詞", + "pn": -0.514785 + }, + { + "surface": "窘める", + "readging": "たしなめる", + "pos": "動詞", + "pn": -0.514819 + }, + { + "surface": "竜頭鷁首", + "readging": "りょうとうげきしゅ", + "pos": "名詞", + "pn": -0.514822 + }, + { + "surface": "念", + "readging": "ねん", + "pos": "名詞", + "pn": -0.514825 + }, + { + "surface": "稽古", + "readging": "けいこ", + "pos": "名詞", + "pn": -0.514832 + }, + { + "surface": "白眼", + "readging": "はくがん", + "pos": "名詞", + "pn": -0.514842 + }, + { + "surface": "六道銭", + "readging": "ろくどうせん", + "pos": "名詞", + "pn": -0.514843 + }, + { + "surface": "釈氏", + "readging": "しゃくし", + "pos": "名詞", + "pn": -0.514857 + }, + { + "surface": "買置き", + "readging": "かいおき", + "pos": "名詞", + "pn": -0.514872 + }, + { + "surface": "篦", + "readging": "へら", + "pos": "名詞", + "pn": -0.514892 + }, + { + "surface": "ほつす", + "readging": "ほつす", + "pos": "動詞", + "pn": -0.514893 + }, + { + "surface": "払子", + "readging": "ほっす", + "pos": "名詞", + "pn": -0.514915 + }, + { + "surface": "灯明", + "readging": "とうみょう", + "pos": "名詞", + "pn": -0.514934 + }, + { + "surface": "毛蟹", + "readging": "けがに", + "pos": "名詞", + "pn": -0.514955 + }, + { + "surface": "鳩時計", + "readging": "はとどけい", + "pos": "名詞", + "pn": -0.515003 + }, + { + "surface": "下り物", + "readging": "おりもの", + "pos": "名詞", + "pn": -0.515005 + }, + { + "surface": "宙乗り", + "readging": "ちゅうのり", + "pos": "名詞", + "pn": -0.515013 + }, + { + "surface": "お絞り", + "readging": "おしぼり", + "pos": "名詞", + "pn": -0.515035 + }, + { + "surface": "おくび", + "readging": "おくび", + "pos": "名詞", + "pn": -0.515049 + }, + { + "surface": "芋蔓式", + "readging": "いもづるしき", + "pos": "名詞", + "pn": -0.515066 + }, + { + "surface": "由緒", + "readging": "ゆいしょ", + "pos": "名詞", + "pn": -0.515075 + }, + { + "surface": "緩衝", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.515078 + }, + { + "surface": "兎唇", + "readging": "いぐち", + "pos": "名詞", + "pn": -0.515094 + }, + { + "surface": "拠点", + "readging": "きょてん", + "pos": "名詞", + "pn": -0.515127 + }, + { + "surface": "補聴器", + "readging": "ほちょうき", + "pos": "名詞", + "pn": -0.515143 + }, + { + "surface": "溶接", + "readging": "ようせつ", + "pos": "名詞", + "pn": -0.515167 + }, + { + "surface": "システム", + "readging": "システム", + "pos": "名詞", + "pn": -0.515168 + }, + { + "surface": "意中", + "readging": "いちゅう", + "pos": "名詞", + "pn": -0.515179 + }, + { + "surface": "陰火", + "readging": "いんか", + "pos": "名詞", + "pn": -0.515187 + }, + { + "surface": "降伏", + "readging": "ごうぶく", + "pos": "名詞", + "pn": -0.5152 + }, + { + "surface": "糸操", + "readging": "いとあやつり", + "pos": "名詞", + "pn": -0.515222 + }, + { + "surface": "稲妻", + "readging": "いなずま", + "pos": "名詞", + "pn": -0.51523 + }, + { + "surface": "掛目", + "readging": "かけめ", + "pos": "名詞", + "pn": -0.515233 + }, + { + "surface": "歩み板", + "readging": "あゆみいた", + "pos": "名詞", + "pn": -0.515247 + }, + { + "surface": "他出", + "readging": "たしゅつ", + "pos": "名詞", + "pn": -0.515248 + }, + { + "surface": "泥砂", + "readging": "でいさ", + "pos": "名詞", + "pn": -0.51531 + }, + { + "surface": "見せ掛ける", + "readging": "みせかける", + "pos": "動詞", + "pn": -0.515319 + }, + { + "surface": "恋", + "readging": "れん", + "pos": "名詞", + "pn": -0.515352 + }, + { + "surface": "前夜", + "readging": "ぜんや", + "pos": "名詞", + "pn": -0.515358 + }, + { + "surface": "馬蹄", + "readging": "ばてい", + "pos": "名詞", + "pn": -0.515387 + }, + { + "surface": "沈没", + "readging": "ちんぼつ", + "pos": "名詞", + "pn": -0.515433 + }, + { + "surface": "宇宙", + "readging": "うちゅう", + "pos": "名詞", + "pn": -0.515475 + }, + { + "surface": "お釣", + "readging": "おつり", + "pos": "名詞", + "pn": -0.515477 + }, + { + "surface": "膃肭臍", + "readging": "おっとせい", + "pos": "名詞", + "pn": -0.51551 + }, + { + "surface": "着色", + "readging": "ちゃくしょく", + "pos": "名詞", + "pn": -0.515515 + }, + { + "surface": "三世相", + "readging": "さんぜそう", + "pos": "名詞", + "pn": -0.515516 + }, + { + "surface": "氷室", + "readging": "ひょうしつ", + "pos": "名詞", + "pn": -0.515517 + }, + { + "surface": "引返し", + "readging": "ひきかえし", + "pos": "名詞", + "pn": -0.515523 + }, + { + "surface": "鍾愛", + "readging": "しょうあい", + "pos": "名詞", + "pn": -0.515542 + }, + { + "surface": "多勢", + "readging": "たぜい", + "pos": "名詞", + "pn": -0.515546 + }, + { + "surface": "出入", + "readging": "しゅつにゅう", + "pos": "名詞", + "pn": -0.515548 + }, + { + "surface": "橋渡し", + "readging": "はしわたし", + "pos": "名詞", + "pn": -0.51555 + }, + { + "surface": "所作事", + "readging": "しょさごと", + "pos": "名詞", + "pn": -0.515551 + }, + { + "surface": "訓戒", + "readging": "くんかい", + "pos": "名詞", + "pn": -0.515559 + }, + { + "surface": "目貫", + "readging": "めぬき", + "pos": "名詞", + "pn": -0.515585 + }, + { + "surface": "夢占", + "readging": "ゆめうら", + "pos": "名詞", + "pn": -0.515605 + }, + { + "surface": "プロンプター", + "readging": "プロンプター", + "pos": "名詞", + "pn": -0.515608 + }, + { + "surface": "五加", + "readging": "うこぎ", + "pos": "名詞", + "pn": -0.515614 + }, + { + "surface": "夜伽", + "readging": "よとぎ", + "pos": "名詞", + "pn": -0.515647 + }, + { + "surface": "後段", + "readging": "こうだん", + "pos": "名詞", + "pn": -0.515661 + }, + { + "surface": "証拠立てる", + "readging": "しょうこだてる", + "pos": "動詞", + "pn": -0.515664 + }, + { + "surface": "山脈", + "readging": "さんみゃく", + "pos": "名詞", + "pn": -0.515676 + }, + { + "surface": "放漫", + "readging": "ほうまん", + "pos": "名詞", + "pn": -0.515701 + }, + { + "surface": "放浪", + "readging": "ほうろう", + "pos": "名詞", + "pn": -0.515706 + }, + { + "surface": "小", + "readging": "こ", + "pos": "名詞", + "pn": -0.515709 + }, + { + "surface": "昔", + "readging": "せき", + "pos": "名詞", + "pn": -0.515741 + }, + { + "surface": "押し殺す", + "readging": "おしころす", + "pos": "動詞", + "pn": -0.515766 + }, + { + "surface": "多角", + "readging": "たかく", + "pos": "名詞", + "pn": -0.515769 + }, + { + "surface": "波浪", + "readging": "はろう", + "pos": "名詞", + "pn": -0.515776 + }, + { + "surface": "蒸器", + "readging": "むしき", + "pos": "名詞", + "pn": -0.51581 + }, + { + "surface": "スパナ", + "readging": "スパナ", + "pos": "名詞", + "pn": -0.515818 + }, + { + "surface": "絵詞", + "readging": "えことば", + "pos": "名詞", + "pn": -0.515842 + }, + { + "surface": "繋げる", + "readging": "つなげる", + "pos": "動詞", + "pn": -0.515846 + }, + { + "surface": "鱗形", + "readging": "りんけい", + "pos": "名詞", + "pn": -0.515884 + }, + { + "surface": "雑音", + "readging": "ざつおん", + "pos": "名詞", + "pn": -0.515889 + }, + { + "surface": "落後", + "readging": "らくご", + "pos": "名詞", + "pn": -0.515916 + }, + { + "surface": "穀倉", + "readging": "こくぐら", + "pos": "名詞", + "pn": -0.515919 + }, + { + "surface": "スカーフ", + "readging": "スカーフ", + "pos": "名詞", + "pn": -0.515945 + }, + { + "surface": "一六勝負", + "readging": "いちろくしょうぶ", + "pos": "名詞", + "pn": -0.515971 + }, + { + "surface": "第四階級", + "readging": "だいしかいきゅう", + "pos": "名詞", + "pn": -0.515996 + }, + { + "surface": "配属", + "readging": "はいぞく", + "pos": "名詞", + "pn": -0.515999 + }, + { + "surface": "照尺", + "readging": "しょうしゃく", + "pos": "名詞", + "pn": -0.515999 + }, + { + "surface": "ジャージー", + "readging": "ジャージー", + "pos": "名詞", + "pn": -0.516002 + }, + { + "surface": "茶盆", + "readging": "ちゃぼん", + "pos": "名詞", + "pn": -0.516008 + }, + { + "surface": "紡毛", + "readging": "ぼうもう", + "pos": "名詞", + "pn": -0.516021 + }, + { + "surface": "風化", + "readging": "ふうか", + "pos": "名詞", + "pn": -0.516072 + }, + { + "surface": "拓本", + "readging": "たくほん", + "pos": "名詞", + "pn": -0.516074 + }, + { + "surface": "謙譲", + "readging": "けんじょう", + "pos": "名詞", + "pn": -0.51609 + }, + { + "surface": "弊履", + "readging": "へいり", + "pos": "名詞", + "pn": -0.516095 + }, + { + "surface": "橙", + "readging": "だいだい", + "pos": "名詞", + "pn": -0.516096 + }, + { + "surface": "梅雨", + "readging": "つゆ", + "pos": "名詞", + "pn": -0.516107 + }, + { + "surface": "翌日", + "readging": "よくじつ", + "pos": "名詞", + "pn": -0.516111 + }, + { + "surface": "寒晒し", + "readging": "かんざらし", + "pos": "名詞", + "pn": -0.516114 + }, + { + "surface": "高姿勢", + "readging": "こうしせい", + "pos": "名詞", + "pn": -0.516135 + }, + { + "surface": "凌ぎ", + "readging": "しのぎ", + "pos": "名詞", + "pn": -0.516137 + }, + { + "surface": "菖蒲", + "readging": "しょうぶ", + "pos": "名詞", + "pn": -0.516159 + }, + { + "surface": "開襟", + "readging": "かいきん", + "pos": "名詞", + "pn": -0.516172 + }, + { + "surface": "唐鍬", + "readging": "とうが", + "pos": "名詞", + "pn": -0.516189 + }, + { + "surface": "沸上がる", + "readging": "わきあがる", + "pos": "動詞", + "pn": -0.516209 + }, + { + "surface": "コスメチック", + "readging": "コスメチック", + "pos": "名詞", + "pn": -0.516215 + }, + { + "surface": "秋思", + "readging": "しゅうし", + "pos": "名詞", + "pn": -0.516233 + }, + { + "surface": "老成", + "readging": "ろうせい", + "pos": "名詞", + "pn": -0.516271 + }, + { + "surface": "弓矢", + "readging": "ゆみや", + "pos": "名詞", + "pn": -0.516276 + }, + { + "surface": "陵辱", + "readging": "りょうじょく", + "pos": "名詞", + "pn": -0.516288 + }, + { + "surface": "反響", + "readging": "はんきょう", + "pos": "名詞", + "pn": -0.516293 + }, + { + "surface": "旅宿", + "readging": "りょしゅく", + "pos": "名詞", + "pn": -0.516307 + }, + { + "surface": "遊歴", + "readging": "ゆうれき", + "pos": "名詞", + "pn": -0.516316 + }, + { + "surface": "急襲", + "readging": "きゅうしゅう", + "pos": "名詞", + "pn": -0.516332 + }, + { + "surface": "神木", + "readging": "しんぼく", + "pos": "名詞", + "pn": -0.516335 + }, + { + "surface": "出稽古", + "readging": "でげいこ", + "pos": "名詞", + "pn": -0.516361 + }, + { + "surface": "小判鮫", + "readging": "こばんざめ", + "pos": "名詞", + "pn": -0.516375 + }, + { + "surface": "手触り", + "readging": "てざわり", + "pos": "名詞", + "pn": -0.51639 + }, + { + "surface": "烏", + "readging": "からす", + "pos": "名詞", + "pn": -0.516394 + }, + { + "surface": "他事", + "readging": "たじ", + "pos": "名詞", + "pn": -0.516406 + }, + { + "surface": "土下座", + "readging": "どげざ", + "pos": "名詞", + "pn": -0.516417 + }, + { + "surface": "後架", + "readging": "こうか", + "pos": "名詞", + "pn": -0.516506 + }, + { + "surface": "虚無", + "readging": "きょむ", + "pos": "名詞", + "pn": -0.516517 + }, + { + "surface": "和歌", + "readging": "わか", + "pos": "名詞", + "pn": -0.516525 + }, + { + "surface": "砂礫", + "readging": "されき", + "pos": "名詞", + "pn": -0.516534 + }, + { + "surface": "側", + "readging": "がわ", + "pos": "名詞", + "pn": -0.516545 + }, + { + "surface": "嘗物", + "readging": "なめもの", + "pos": "名詞", + "pn": -0.516545 + }, + { + "surface": "豆撒き", + "readging": "まめまき", + "pos": "名詞", + "pn": -0.516568 + }, + { + "surface": "永住", + "readging": "えいじゅう", + "pos": "名詞", + "pn": -0.516572 + }, + { + "surface": "ごと", + "readging": "ごと", + "pos": "名詞", + "pn": -0.5166 + }, + { + "surface": "角", + "readging": "かく", + "pos": "名詞", + "pn": -0.516601 + }, + { + "surface": "水攻め", + "readging": "みずぜめ", + "pos": "名詞", + "pn": -0.516629 + }, + { + "surface": "蜂鳥", + "readging": "はちどり", + "pos": "名詞", + "pn": -0.51663 + }, + { + "surface": "物資", + "readging": "ぶっし", + "pos": "名詞", + "pn": -0.516646 + }, + { + "surface": "靫葛", + "readging": "うつぼかずら", + "pos": "名詞", + "pn": -0.516655 + }, + { + "surface": "薄縁", + "readging": "うすべり", + "pos": "名詞", + "pn": -0.516664 + }, + { + "surface": "触感", + "readging": "しょっかん", + "pos": "名詞", + "pn": -0.516673 + }, + { + "surface": "飛竜頭", + "readging": "ひりょうず", + "pos": "名詞", + "pn": -0.516673 + }, + { + "surface": "故意", + "readging": "こい", + "pos": "名詞", + "pn": -0.516711 + }, + { + "surface": "礼者", + "readging": "れいしゃ", + "pos": "名詞", + "pn": -0.516712 + }, + { + "surface": "軒輊", + "readging": "けんち", + "pos": "名詞", + "pn": -0.516822 + }, + { + "surface": "揚縁", + "readging": "あげえん", + "pos": "名詞", + "pn": -0.516859 + }, + { + "surface": "部", + "readging": "ぶ", + "pos": "名詞", + "pn": -0.51686 + }, + { + "surface": "子房", + "readging": "しぼう", + "pos": "名詞", + "pn": -0.516894 + }, + { + "surface": "実妹", + "readging": "じつまい", + "pos": "名詞", + "pn": -0.516948 + }, + { + "surface": "取込む", + "readging": "とりこむ", + "pos": "動詞", + "pn": -0.516949 + }, + { + "surface": "義手", + "readging": "ぎしゅ", + "pos": "名詞", + "pn": -0.516955 + }, + { + "surface": "梅醤", + "readging": "うめびしお", + "pos": "名詞", + "pn": -0.516962 + }, + { + "surface": "至近", + "readging": "しきん", + "pos": "名詞", + "pn": -0.516979 + }, + { + "surface": "経緯", + "readging": "いきさつ", + "pos": "名詞", + "pn": -0.516984 + }, + { + "surface": "欲火", + "readging": "よっか", + "pos": "名詞", + "pn": -0.51699 + }, + { + "surface": "パップ", + "readging": "パップ", + "pos": "名詞", + "pn": -0.517001 + }, + { + "surface": "散華", + "readging": "さんげ", + "pos": "名詞", + "pn": -0.517002 + }, + { + "surface": "イリジウム", + "readging": "イリジウム", + "pos": "名詞", + "pn": -0.517006 + }, + { + "surface": "託", + "readging": "たく", + "pos": "名詞", + "pn": -0.517011 + }, + { + "surface": "水成岩", + "readging": "すいせいがん", + "pos": "名詞", + "pn": -0.517022 + }, + { + "surface": "縁付ける", + "readging": "えんづける", + "pos": "動詞", + "pn": -0.517039 + }, + { + "surface": "水溶液", + "readging": "すいようえき", + "pos": "名詞", + "pn": -0.517105 + }, + { + "surface": "中位", + "readging": "ちゅうい", + "pos": "名詞", + "pn": -0.517177 + }, + { + "surface": "見返し", + "readging": "みかえし", + "pos": "名詞", + "pn": -0.517204 + }, + { + "surface": "カツレツ", + "readging": "カツレツ", + "pos": "名詞", + "pn": -0.517205 + }, + { + "surface": "湖", + "readging": "こ", + "pos": "名詞", + "pn": -0.517246 + }, + { + "surface": "空泣き", + "readging": "そらなき", + "pos": "名詞", + "pn": -0.51725 + }, + { + "surface": "百日紅", + "readging": "さるすべり", + "pos": "名詞", + "pn": -0.517255 + }, + { + "surface": "スイング", + "readging": "スイング", + "pos": "名詞", + "pn": -0.517277 + }, + { + "surface": "建値", + "readging": "たてね", + "pos": "名詞", + "pn": -0.517289 + }, + { + "surface": "紬糸", + "readging": "つむぎいと", + "pos": "名詞", + "pn": -0.51729 + }, + { + "surface": "折合う", + "readging": "おりあう", + "pos": "動詞", + "pn": -0.5173 + }, + { + "surface": "和船", + "readging": "わせん", + "pos": "名詞", + "pn": -0.517302 + }, + { + "surface": "素っ破抜く", + "readging": "すっぱぬく", + "pos": "動詞", + "pn": -0.517303 + }, + { + "surface": "柳", + "readging": "やなぎ", + "pos": "名詞", + "pn": -0.517328 + }, + { + "surface": "グローブ", + "readging": "グローブ", + "pos": "名詞", + "pn": -0.517334 + }, + { + "surface": "戸締り", + "readging": "とじまり", + "pos": "名詞", + "pn": -0.517365 + }, + { + "surface": "書状", + "readging": "しょじょう", + "pos": "名詞", + "pn": -0.517369 + }, + { + "surface": "低劣", + "readging": "ていれつ", + "pos": "名詞", + "pn": -0.517378 + }, + { + "surface": "軒先", + "readging": "のきさき", + "pos": "名詞", + "pn": -0.517385 + }, + { + "surface": "船棚", + "readging": "ふなだな", + "pos": "名詞", + "pn": -0.517392 + }, + { + "surface": "華鬘", + "readging": "けまん", + "pos": "名詞", + "pn": -0.51742 + }, + { + "surface": "口頭", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.517428 + }, + { + "surface": "虚偽", + "readging": "きょぎ", + "pos": "名詞", + "pn": -0.517434 + }, + { + "surface": "ローラー", + "readging": "ローラースケート", + "pos": "名詞", + "pn": -0.517462 + }, + { + "surface": "昔日", + "readging": "せきじつ", + "pos": "名詞", + "pn": -0.517467 + }, + { + "surface": "流灯会", + "readging": "りゅうとうえ", + "pos": "名詞", + "pn": -0.517489 + }, + { + "surface": "瘡", + "readging": "そう", + "pos": "名詞", + "pn": -0.517506 + }, + { + "surface": "徴する", + "readging": "ちょうする", + "pos": "動詞", + "pn": -0.517508 + }, + { + "surface": "拳", + "readging": "けん", + "pos": "名詞", + "pn": -0.517513 + }, + { + "surface": "千思万考", + "readging": "せんしばんこう", + "pos": "名詞", + "pn": -0.517529 + }, + { + "surface": "立代る", + "readging": "たちかわる", + "pos": "動詞", + "pn": -0.517586 + }, + { + "surface": "煙管", + "readging": "えんかん", + "pos": "名詞", + "pn": -0.517597 + }, + { + "surface": "無意識", + "readging": "むいしき", + "pos": "名詞", + "pn": -0.517625 + }, + { + "surface": "泡立つ", + "readging": "あわだつ", + "pos": "動詞", + "pn": -0.517648 + }, + { + "surface": "旦暮", + "readging": "たんぼ", + "pos": "名詞", + "pn": -0.517649 + }, + { + "surface": "挟", + "readging": "きょう", + "pos": "名詞", + "pn": -0.517651 + }, + { + "surface": "攀登る", + "readging": "よじのぼる", + "pos": "動詞", + "pn": -0.517656 + }, + { + "surface": "火種", + "readging": "ひだね", + "pos": "名詞", + "pn": -0.517657 + }, + { + "surface": "遣り繰り算段", + "readging": "やりくりさんだん", + "pos": "名詞", + "pn": -0.517683 + }, + { + "surface": "平均", + "readging": "へいきん", + "pos": "名詞", + "pn": -0.517703 + }, + { + "surface": "剣", + "readging": "けん", + "pos": "名詞", + "pn": -0.517705 + }, + { + "surface": "紙鑢", + "readging": "かみやすり", + "pos": "名詞", + "pn": -0.51778 + }, + { + "surface": "反魂香", + "readging": "はんごんこう", + "pos": "名詞", + "pn": -0.517858 + }, + { + "surface": "延縄", + "readging": "はえなわ", + "pos": "名詞", + "pn": -0.517864 + }, + { + "surface": "猿おがせ", + "readging": "さるおがせ", + "pos": "名詞", + "pn": -0.517893 + }, + { + "surface": "歳末", + "readging": "さいまつ", + "pos": "名詞", + "pn": -0.517911 + }, + { + "surface": "枕探し", + "readging": "まくらさがし", + "pos": "名詞", + "pn": -0.517954 + }, + { + "surface": "的", + "readging": "てき", + "pos": "名詞", + "pn": -0.517964 + }, + { + "surface": "タクシー", + "readging": "タクシー", + "pos": "名詞", + "pn": -0.517965 + }, + { + "surface": "お世話", + "readging": "おせわ", + "pos": "名詞", + "pn": -0.517969 + }, + { + "surface": "耕作", + "readging": "こうさく", + "pos": "名詞", + "pn": -0.517996 + }, + { + "surface": "自力", + "readging": "じりき", + "pos": "名詞", + "pn": -0.518 + }, + { + "surface": "投与", + "readging": "とうよ", + "pos": "名詞", + "pn": -0.518001 + }, + { + "surface": "疼痛", + "readging": "とうつう", + "pos": "名詞", + "pn": -0.518003 + }, + { + "surface": "鋳型", + "readging": "いがた", + "pos": "名詞", + "pn": -0.518004 + }, + { + "surface": "登載", + "readging": "とうさい", + "pos": "名詞", + "pn": -0.518006 + }, + { + "surface": "仕儀", + "readging": "しぎ", + "pos": "名詞", + "pn": -0.518009 + }, + { + "surface": "腰", + "readging": "こし", + "pos": "名詞", + "pn": -0.518057 + }, + { + "surface": "数値", + "readging": "すうち", + "pos": "名詞", + "pn": -0.518072 + }, + { + "surface": "普天", + "readging": "ふてん", + "pos": "名詞", + "pn": -0.518081 + }, + { + "surface": "夢", + "readging": "む", + "pos": "名詞", + "pn": -0.51812 + }, + { + "surface": "思い付き", + "readging": "おもいつき", + "pos": "名詞", + "pn": -0.518125 + }, + { + "surface": "方略", + "readging": "ほうりゃく", + "pos": "名詞", + "pn": -0.518149 + }, + { + "surface": "熊鷹", + "readging": "くまたか", + "pos": "名詞", + "pn": -0.518152 + }, + { + "surface": "売国", + "readging": "ばいこく", + "pos": "名詞", + "pn": -0.518153 + }, + { + "surface": "多弁", + "readging": "たべん", + "pos": "名詞", + "pn": -0.518157 + }, + { + "surface": "喚起", + "readging": "かんき", + "pos": "名詞", + "pn": -0.518168 + }, + { + "surface": "伊勢蝦", + "readging": "いせえび", + "pos": "名詞", + "pn": -0.518183 + }, + { + "surface": "福神漬", + "readging": "ふくじんづけ", + "pos": "名詞", + "pn": -0.518189 + }, + { + "surface": "兵", + "readging": "へい", + "pos": "名詞", + "pn": -0.518211 + }, + { + "surface": "黒熊", + "readging": "くろくま", + "pos": "名詞", + "pn": -0.518216 + }, + { + "surface": "硬化", + "readging": "こうか", + "pos": "名詞", + "pn": -0.518216 + }, + { + "surface": "チーク", + "readging": "チーク", + "pos": "名詞", + "pn": -0.518238 + }, + { + "surface": "鉄砲玉", + "readging": "てっぽうだま", + "pos": "名詞", + "pn": -0.518262 + }, + { + "surface": "収まる", + "readging": "おさまる", + "pos": "動詞", + "pn": -0.518276 + }, + { + "surface": "最中", + "readging": "もなか", + "pos": "名詞", + "pn": -0.518285 + }, + { + "surface": "違棚", + "readging": "ちがいだな", + "pos": "名詞", + "pn": -0.518291 + }, + { + "surface": "統率", + "readging": "とうそつ", + "pos": "名詞", + "pn": -0.518304 + }, + { + "surface": "限度", + "readging": "げんど", + "pos": "名詞", + "pn": -0.518321 + }, + { + "surface": "渉禽類", + "readging": "しょうきんるい", + "pos": "名詞", + "pn": -0.518324 + }, + { + "surface": "工面", + "readging": "くめん", + "pos": "名詞", + "pn": -0.518327 + }, + { + "surface": "弓形", + "readging": "ゆみがた", + "pos": "名詞", + "pn": -0.518389 + }, + { + "surface": "所蔵", + "readging": "しょぞう", + "pos": "名詞", + "pn": -0.518422 + }, + { + "surface": "毛黴", + "readging": "けかび", + "pos": "名詞", + "pn": -0.518422 + }, + { + "surface": "アノラック", + "readging": "アノラック", + "pos": "名詞", + "pn": -0.518422 + }, + { + "surface": "刺客", + "readging": "せっかく", + "pos": "名詞", + "pn": -0.518431 + }, + { + "surface": "反収", + "readging": "たんしゅう", + "pos": "名詞", + "pn": -0.518439 + }, + { + "surface": "幼生", + "readging": "ようせい", + "pos": "名詞", + "pn": -0.51845 + }, + { + "surface": "スピロヘータ", + "readging": "スピロヘータ", + "pos": "名詞", + "pn": -0.518477 + }, + { + "surface": "糠", + "readging": "ぬか", + "pos": "名詞", + "pn": -0.518513 + }, + { + "surface": "照れ隠し", + "readging": "てれかくし", + "pos": "名詞", + "pn": -0.518555 + }, + { + "surface": "蚋", + "readging": "ぶよ", + "pos": "名詞", + "pn": -0.518558 + }, + { + "surface": "山元", + "readging": "やまもと", + "pos": "名詞", + "pn": -0.51857 + }, + { + "surface": "日除", + "readging": "ひよけ", + "pos": "名詞", + "pn": -0.518573 + }, + { + "surface": "染筆", + "readging": "せんぴつ", + "pos": "名詞", + "pn": -0.518583 + }, + { + "surface": "公", + "readging": "おおやけ", + "pos": "名詞", + "pn": -0.518585 + }, + { + "surface": "伏籠", + "readging": "ふせご", + "pos": "名詞", + "pn": -0.518607 + }, + { + "surface": "降り込む", + "readging": "ふりこむ", + "pos": "動詞", + "pn": -0.518664 + }, + { + "surface": "段梯子", + "readging": "だんばしご", + "pos": "名詞", + "pn": -0.518666 + }, + { + "surface": "コンビーフ", + "readging": "コンビーフ", + "pos": "名詞", + "pn": -0.518682 + }, + { + "surface": "乱心", + "readging": "らんしん", + "pos": "名詞", + "pn": -0.518688 + }, + { + "surface": "取越苦労", + "readging": "とりこしぐろう", + "pos": "名詞", + "pn": -0.518702 + }, + { + "surface": "ラワン", + "readging": "ラワン", + "pos": "名詞", + "pn": -0.518715 + }, + { + "surface": "火山灰", + "readging": "かざんばい", + "pos": "名詞", + "pn": -0.518722 + }, + { + "surface": "ホップ", + "readging": "ホップ", + "pos": "名詞", + "pn": -0.51876 + }, + { + "surface": "横綱", + "readging": "よこづな", + "pos": "名詞", + "pn": -0.518776 + }, + { + "surface": "スーツ", + "readging": "スーツケース", + "pos": "名詞", + "pn": -0.51881 + }, + { + "surface": "箏曲", + "readging": "そうきょく", + "pos": "名詞", + "pn": -0.518817 + }, + { + "surface": "群生", + "readging": "ぐんせい", + "pos": "名詞", + "pn": -0.518832 + }, + { + "surface": "片手桶", + "readging": "かたておけ", + "pos": "名詞", + "pn": -0.518843 + }, + { + "surface": "乱筆", + "readging": "らんぴつ", + "pos": "名詞", + "pn": -0.518863 + }, + { + "surface": "鰐口", + "readging": "わにぐち", + "pos": "名詞", + "pn": -0.518974 + }, + { + "surface": "手摺", + "readging": "てすり", + "pos": "名詞", + "pn": -0.519029 + }, + { + "surface": "薄紙", + "readging": "うすがみ", + "pos": "名詞", + "pn": -0.519054 + }, + { + "surface": "世柄", + "readging": "よがら", + "pos": "名詞", + "pn": -0.519073 + }, + { + "surface": "叺", + "readging": "かます", + "pos": "名詞", + "pn": -0.519073 + }, + { + "surface": "おしくら", + "readging": "おしくら", + "pos": "名詞", + "pn": -0.519085 + }, + { + "surface": "夢想", + "readging": "むそう", + "pos": "名詞", + "pn": -0.519151 + }, + { + "surface": "建前", + "readging": "たてまえ", + "pos": "名詞", + "pn": -0.51916 + }, + { + "surface": "ぽんつく", + "readging": "ぽんつく", + "pos": "名詞", + "pn": -0.519181 + }, + { + "surface": "酒乱", + "readging": "しゅらん", + "pos": "名詞", + "pn": -0.519197 + }, + { + "surface": "ビーズ", + "readging": "ビーズ", + "pos": "名詞", + "pn": -0.5192 + }, + { + "surface": "鷹狩", + "readging": "たかがり", + "pos": "名詞", + "pn": -0.5192 + }, + { + "surface": "胡乱", + "readging": "うろん", + "pos": "名詞", + "pn": -0.519221 + }, + { + "surface": "冗句", + "readging": "じょうく", + "pos": "名詞", + "pn": -0.519225 + }, + { + "surface": "内借", + "readging": "ないしゃく", + "pos": "名詞", + "pn": -0.519252 + }, + { + "surface": "ポシェット", + "readging": "ポシェット", + "pos": "名詞", + "pn": -0.519257 + }, + { + "surface": "大綱", + "readging": "おおづな", + "pos": "名詞", + "pn": -0.519318 + }, + { + "surface": "路線", + "readging": "ろせん", + "pos": "名詞", + "pn": -0.519349 + }, + { + "surface": "穀類", + "readging": "こくるい", + "pos": "名詞", + "pn": -0.519373 + }, + { + "surface": "野辺", + "readging": "のべ", + "pos": "名詞", + "pn": -0.519374 + }, + { + "surface": "ダーツ", + "readging": "ダーツ", + "pos": "名詞", + "pn": -0.519398 + }, + { + "surface": "紡績", + "readging": "ぼうせき", + "pos": "名詞", + "pn": -0.519422 + }, + { + "surface": "つるつる", + "readging": "つるつる", + "pos": "副詞", + "pn": -0.519458 + }, + { + "surface": "押取り刀", + "readging": "おっとりがたな", + "pos": "名詞", + "pn": -0.51946 + }, + { + "surface": "鹿", + "readging": "しか", + "pos": "名詞", + "pn": -0.519471 + }, + { + "surface": "ドライバー", + "readging": "ドライバー", + "pos": "名詞", + "pn": -0.519476 + }, + { + "surface": "貝爪", + "readging": "かいづめ", + "pos": "名詞", + "pn": -0.519493 + }, + { + "surface": "信玄袋", + "readging": "しんげんぶくろ", + "pos": "名詞", + "pn": -0.519524 + }, + { + "surface": "断滅", + "readging": "だんめつ", + "pos": "名詞", + "pn": -0.519536 + }, + { + "surface": "漿液", + "readging": "しょうえき", + "pos": "名詞", + "pn": -0.519546 + }, + { + "surface": "目打", + "readging": "めうち", + "pos": "名詞", + "pn": -0.519555 + }, + { + "surface": "鯱", + "readging": "しゃち", + "pos": "名詞", + "pn": -0.51956 + }, + { + "surface": "銀泥", + "readging": "ぎんでい", + "pos": "名詞", + "pn": -0.519562 + }, + { + "surface": "私家", + "readging": "しか", + "pos": "名詞", + "pn": -0.519563 + }, + { + "surface": "牝牡", + "readging": "ひんぼ", + "pos": "名詞", + "pn": -0.519567 + }, + { + "surface": "内鰐", + "readging": "うちわに", + "pos": "名詞", + "pn": -0.519598 + }, + { + "surface": "廟堂", + "readging": "びょうどう", + "pos": "名詞", + "pn": -0.519613 + }, + { + "surface": "お手玉", + "readging": "おてだま", + "pos": "名詞", + "pn": -0.51963 + }, + { + "surface": "触診", + "readging": "しょくしん", + "pos": "名詞", + "pn": -0.519632 + }, + { + "surface": "不器量", + "readging": "ぶきりょう", + "pos": "名詞", + "pn": -0.519634 + }, + { + "surface": "想", + "readging": "そう", + "pos": "名詞", + "pn": -0.519655 + }, + { + "surface": "蝋纈", + "readging": "ろうけつ", + "pos": "名詞", + "pn": -0.519667 + }, + { + "surface": "入れ違う", + "readging": "いれちがう", + "pos": "動詞", + "pn": -0.51968 + }, + { + "surface": "世上", + "readging": "せじょう", + "pos": "名詞", + "pn": -0.519703 + }, + { + "surface": "悲傷", + "readging": "ひしょう", + "pos": "名詞", + "pn": -0.519727 + }, + { + "surface": "芭蕉", + "readging": "ばしょう", + "pos": "名詞", + "pn": -0.519729 + }, + { + "surface": "上下", + "readging": "かみしも", + "pos": "名詞", + "pn": -0.51974 + }, + { + "surface": "マグネシウム", + "readging": "マグネシウム", + "pos": "名詞", + "pn": -0.519745 + }, + { + "surface": "半周", + "readging": "はんしゅう", + "pos": "名詞", + "pn": -0.519769 + }, + { + "surface": "足枷", + "readging": "あしかせ", + "pos": "名詞", + "pn": -0.519779 + }, + { + "surface": "編棒", + "readging": "あみぼう", + "pos": "名詞", + "pn": -0.519784 + }, + { + "surface": "活劇", + "readging": "かつげき", + "pos": "名詞", + "pn": -0.51979 + }, + { + "surface": "子中", + "readging": "こなか", + "pos": "名詞", + "pn": -0.519799 + }, + { + "surface": "爪弾き", + "readging": "つまはじき", + "pos": "名詞", + "pn": -0.519799 + }, + { + "surface": "臆見", + "readging": "おっけん", + "pos": "名詞", + "pn": -0.51981 + }, + { + "surface": "ちえ負け", + "readging": "ちえまけ", + "pos": "名詞", + "pn": -0.51982 + }, + { + "surface": "幻妖", + "readging": "げんよう", + "pos": "名詞", + "pn": -0.519838 + }, + { + "surface": "切目", + "readging": "きりめ", + "pos": "名詞", + "pn": -0.519842 + }, + { + "surface": "捨印", + "readging": "すていん", + "pos": "名詞", + "pn": -0.519848 + }, + { + "surface": "生ごみ", + "readging": "なまごみ", + "pos": "名詞", + "pn": -0.519865 + }, + { + "surface": "亡国", + "readging": "ぼうこく", + "pos": "名詞", + "pn": -0.519903 + }, + { + "surface": "後任", + "readging": "こうにん", + "pos": "名詞", + "pn": -0.519938 + }, + { + "surface": "用件", + "readging": "ようけん", + "pos": "名詞", + "pn": -0.519942 + }, + { + "surface": "流下", + "readging": "りゅうか", + "pos": "名詞", + "pn": -0.519983 + }, + { + "surface": "木目込", + "readging": "きめこみ", + "pos": "名詞", + "pn": -0.519995 + }, + { + "surface": "槌", + "readging": "つち", + "pos": "名詞", + "pn": -0.520004 + }, + { + "surface": "打合せる", + "readging": "うちあわせる", + "pos": "動詞", + "pn": -0.520007 + }, + { + "surface": "臨界", + "readging": "りんかい", + "pos": "名詞", + "pn": -0.520011 + }, + { + "surface": "突返す", + "readging": "つきかえす", + "pos": "動詞", + "pn": -0.520031 + }, + { + "surface": "火の粉", + "readging": "ひのこ", + "pos": "名詞", + "pn": -0.520065 + }, + { + "surface": "サンタ", + "readging": "サンタクローズ", + "pos": "名詞", + "pn": -0.520072 + }, + { + "surface": "デッドロック", + "readging": "デッドロック", + "pos": "名詞", + "pn": -0.520082 + }, + { + "surface": "廟", + "readging": "びょう", + "pos": "名詞", + "pn": -0.520083 + }, + { + "surface": "桑子", + "readging": "くわご", + "pos": "名詞", + "pn": -0.520093 + }, + { + "surface": "アウトライン", + "readging": "アウトライン", + "pos": "名詞", + "pn": -0.520094 + }, + { + "surface": "火成岩", + "readging": "かせいがん", + "pos": "名詞", + "pn": -0.520104 + }, + { + "surface": "濁流", + "readging": "だくりゅう", + "pos": "名詞", + "pn": -0.520104 + }, + { + "surface": "愛惜", + "readging": "あいせき", + "pos": "名詞", + "pn": -0.520115 + }, + { + "surface": "燐火", + "readging": "りんか", + "pos": "名詞", + "pn": -0.520116 + }, + { + "surface": "日暮", + "readging": "ひぐれ", + "pos": "名詞", + "pn": -0.520119 + }, + { + "surface": "手駒", + "readging": "てごま", + "pos": "名詞", + "pn": -0.520119 + }, + { + "surface": "五体", + "readging": "ごたい", + "pos": "名詞", + "pn": -0.520164 + }, + { + "surface": "狐格子", + "readging": "きつねごうし", + "pos": "名詞", + "pn": -0.520188 + }, + { + "surface": "伏屋", + "readging": "ふせや", + "pos": "名詞", + "pn": -0.520189 + }, + { + "surface": "日取り", + "readging": "ひどり", + "pos": "名詞", + "pn": -0.520213 + }, + { + "surface": "脱党", + "readging": "だっとう", + "pos": "名詞", + "pn": -0.520266 + }, + { + "surface": "頭状花", + "readging": "とうじょうか", + "pos": "名詞", + "pn": -0.520266 + }, + { + "surface": "蓄積", + "readging": "ちくせき", + "pos": "名詞", + "pn": -0.520277 + }, + { + "surface": "掛布団", + "readging": "かけぶとん", + "pos": "名詞", + "pn": -0.520282 + }, + { + "surface": "蜷", + "readging": "にな", + "pos": "名詞", + "pn": -0.520292 + }, + { + "surface": "見掛ける", + "readging": "みかける", + "pos": "動詞", + "pn": -0.520298 + }, + { + "surface": "モール", + "readging": "モール", + "pos": "名詞", + "pn": -0.520307 + }, + { + "surface": "ばら斑", + "readging": "ばらふ", + "pos": "名詞", + "pn": -0.52032 + }, + { + "surface": "疣鯛", + "readging": "いぼだい", + "pos": "名詞", + "pn": -0.520326 + }, + { + "surface": "間欠泉", + "readging": "かんけつせん", + "pos": "名詞", + "pn": -0.520328 + }, + { + "surface": "波の花", + "readging": "なみのはな", + "pos": "名詞", + "pn": -0.52033 + }, + { + "surface": "スタンド", + "readging": "スタンド", + "pos": "名詞", + "pn": -0.520358 + }, + { + "surface": "守宮", + "readging": "やもり", + "pos": "名詞", + "pn": -0.52036 + }, + { + "surface": "捲し上げる", + "readging": "まくしあげる", + "pos": "動詞", + "pn": -0.520363 + }, + { + "surface": "押し隠す", + "readging": "おしかくす", + "pos": "動詞", + "pn": -0.520373 + }, + { + "surface": "敗者", + "readging": "はいしゃ", + "pos": "名詞", + "pn": -0.520379 + }, + { + "surface": "代名詞", + "readging": "だいめいし", + "pos": "名詞", + "pn": -0.520396 + }, + { + "surface": "他行", + "readging": "たぎょう", + "pos": "名詞", + "pn": -0.520416 + }, + { + "surface": "御覧", + "readging": "ごらん", + "pos": "名詞", + "pn": -0.520418 + }, + { + "surface": "振子", + "readging": "ふりこ", + "pos": "名詞", + "pn": -0.52043 + }, + { + "surface": "自給肥料", + "readging": "じきゅうひりょう", + "pos": "名詞", + "pn": -0.520448 + }, + { + "surface": "法会", + "readging": "ほうえ", + "pos": "名詞", + "pn": -0.520493 + }, + { + "surface": "連座", + "readging": "れんざ", + "pos": "名詞", + "pn": -0.520499 + }, + { + "surface": "射影", + "readging": "しゃえい", + "pos": "名詞", + "pn": -0.52052 + }, + { + "surface": "腫れ", + "readging": "はれ", + "pos": "名詞", + "pn": -0.520585 + }, + { + "surface": "クリーク", + "readging": "クリーク", + "pos": "名詞", + "pn": -0.520604 + }, + { + "surface": "唐", + "readging": "とう", + "pos": "名詞", + "pn": -0.520608 + }, + { + "surface": "カルメラ", + "readging": "カルメラ", + "pos": "名詞", + "pn": -0.520615 + }, + { + "surface": "窓", + "readging": "そう", + "pos": "名詞", + "pn": -0.520621 + }, + { + "surface": "誘い出す", + "readging": "さそいだす", + "pos": "動詞", + "pn": -0.520621 + }, + { + "surface": "痛事", + "readging": "いたごと", + "pos": "名詞", + "pn": -0.520627 + }, + { + "surface": "雪解け", + "readging": "ゆきどけ", + "pos": "名詞", + "pn": -0.520643 + }, + { + "surface": "尻重", + "readging": "しりおも", + "pos": "名詞", + "pn": -0.520645 + }, + { + "surface": "逆", + "readging": "ぎゃく", + "pos": "名詞", + "pn": -0.520676 + }, + { + "surface": "クレーター", + "readging": "クレーター", + "pos": "名詞", + "pn": -0.520678 + }, + { + "surface": "しけ織", + "readging": "しけおり", + "pos": "名詞", + "pn": -0.520679 + }, + { + "surface": "溜込む", + "readging": "ためこむ", + "pos": "動詞", + "pn": -0.520731 + }, + { + "surface": "槍烏賊", + "readging": "やりいか", + "pos": "名詞", + "pn": -0.520746 + }, + { + "surface": "呷る", + "readging": "あおる", + "pos": "動詞", + "pn": -0.520771 + }, + { + "surface": "紋付", + "readging": "もんつき", + "pos": "名詞", + "pn": -0.520778 + }, + { + "surface": "カンバス", + "readging": "カンバス", + "pos": "名詞", + "pn": -0.520808 + }, + { + "surface": "歳", + "readging": "さい", + "pos": "名詞", + "pn": -0.52083 + }, + { + "surface": "廃車", + "readging": "はいしゃ", + "pos": "名詞", + "pn": -0.520839 + }, + { + "surface": "刻み目", + "readging": "きざみめ", + "pos": "名詞", + "pn": -0.520855 + }, + { + "surface": "廃業", + "readging": "はいぎょう", + "pos": "名詞", + "pn": -0.520868 + }, + { + "surface": "像", + "readging": "ぞう", + "pos": "名詞", + "pn": -0.520872 + }, + { + "surface": "現任", + "readging": "げんにん", + "pos": "名詞", + "pn": -0.520898 + }, + { + "surface": "竹光", + "readging": "たけみつ", + "pos": "名詞", + "pn": -0.5209 + }, + { + "surface": "境界", + "readging": "きょうがい", + "pos": "名詞", + "pn": -0.520962 + }, + { + "surface": "リムジン", + "readging": "リムジン", + "pos": "名詞", + "pn": -0.52097 + }, + { + "surface": "合す", + "readging": "あわす", + "pos": "動詞", + "pn": -0.52099 + }, + { + "surface": "小人", + "readging": "こびと", + "pos": "名詞", + "pn": -0.520991 + }, + { + "surface": "署", + "readging": "しょ", + "pos": "名詞", + "pn": -0.520999 + }, + { + "surface": "間食い", + "readging": "あいだぐい", + "pos": "名詞", + "pn": -0.521021 + }, + { + "surface": "証", + "readging": "しょう", + "pos": "名詞", + "pn": -0.521029 + }, + { + "surface": "屯営", + "readging": "とんえい", + "pos": "名詞", + "pn": -0.521042 + }, + { + "surface": "珪藻", + "readging": "けいそう", + "pos": "名詞", + "pn": -0.521046 + }, + { + "surface": "利食い", + "readging": "りぐい", + "pos": "名詞", + "pn": -0.521049 + }, + { + "surface": "調味料", + "readging": "ちょうみりょう", + "pos": "名詞", + "pn": -0.521054 + }, + { + "surface": "バック", + "readging": "バックミラー", + "pos": "名詞", + "pn": -0.52106 + }, + { + "surface": "浴びせる", + "readging": "あびせる", + "pos": "動詞", + "pn": -0.521072 + }, + { + "surface": "鵜飼", + "readging": "うかい", + "pos": "名詞", + "pn": -0.521088 + }, + { + "surface": "ふさふさ", + "readging": "ふさふさ", + "pos": "副詞", + "pn": -0.521091 + }, + { + "surface": "送り仮名", + "readging": "おくりがな", + "pos": "名詞", + "pn": -0.521111 + }, + { + "surface": "一子", + "readging": "いっし", + "pos": "名詞", + "pn": -0.521141 + }, + { + "surface": "露悪", + "readging": "ろあく", + "pos": "名詞", + "pn": -0.521191 + }, + { + "surface": "下腹", + "readging": "したはら", + "pos": "名詞", + "pn": -0.5212 + }, + { + "surface": "状箱", + "readging": "じょうばこ", + "pos": "名詞", + "pn": -0.52123 + }, + { + "surface": "小川", + "readging": "おがわ", + "pos": "名詞", + "pn": -0.521292 + }, + { + "surface": "今一", + "readging": "いまいち", + "pos": "名詞", + "pn": -0.521311 + }, + { + "surface": "柵", + "readging": "さく", + "pos": "名詞", + "pn": -0.521357 + }, + { + "surface": "魔法瓶", + "readging": "まほうびん", + "pos": "名詞", + "pn": -0.521387 + }, + { + "surface": "梯子酒", + "readging": "はしござけ", + "pos": "名詞", + "pn": -0.521393 + }, + { + "surface": "路上", + "readging": "ろじょう", + "pos": "名詞", + "pn": -0.521416 + }, + { + "surface": "白土", + "readging": "しらつち", + "pos": "名詞", + "pn": -0.521423 + }, + { + "surface": "鞭", + "readging": "べん", + "pos": "名詞", + "pn": -0.521434 + }, + { + "surface": "紫煙", + "readging": "しえん", + "pos": "名詞", + "pn": -0.521445 + }, + { + "surface": "瀬戸引", + "readging": "せとびき", + "pos": "名詞", + "pn": -0.521448 + }, + { + "surface": "仕種", + "readging": "しぐさ", + "pos": "名詞", + "pn": -0.521459 + }, + { + "surface": "駆出す", + "readging": "かけだす", + "pos": "動詞", + "pn": -0.52146 + }, + { + "surface": "湯壺", + "readging": "ゆつぼ", + "pos": "名詞", + "pn": -0.521464 + }, + { + "surface": "やご", + "readging": "やご", + "pos": "名詞", + "pn": -0.521474 + }, + { + "surface": "来島", + "readging": "らいとう", + "pos": "名詞", + "pn": -0.521476 + }, + { + "surface": "目脂", + "readging": "めやに", + "pos": "名詞", + "pn": -0.521496 + }, + { + "surface": "喉仏", + "readging": "のどぼとけ", + "pos": "名詞", + "pn": -0.521499 + }, + { + "surface": "君子蘭", + "readging": "くんしらん", + "pos": "名詞", + "pn": -0.521507 + }, + { + "surface": "万", + "readging": "ばん", + "pos": "名詞", + "pn": -0.521509 + }, + { + "surface": "未決", + "readging": "みけつ", + "pos": "名詞", + "pn": -0.521536 + }, + { + "surface": "金モール", + "readging": "きんモール", + "pos": "名詞", + "pn": -0.521549 + }, + { + "surface": "海産", + "readging": "かいさん", + "pos": "名詞", + "pn": -0.521613 + }, + { + "surface": "空虚", + "readging": "くうきょ", + "pos": "名詞", + "pn": -0.521638 + }, + { + "surface": "副木", + "readging": "ふくぼく", + "pos": "名詞", + "pn": -0.52164 + }, + { + "surface": "桁", + "readging": "けた", + "pos": "名詞", + "pn": -0.521642 + }, + { + "surface": "大角豆", + "readging": "ささげ", + "pos": "名詞", + "pn": -0.521646 + }, + { + "surface": "洞", + "readging": "どう", + "pos": "名詞", + "pn": -0.521679 + }, + { + "surface": "遮光", + "readging": "しゃこう", + "pos": "名詞", + "pn": -0.5217 + }, + { + "surface": "サイホン", + "readging": "サイホン", + "pos": "名詞", + "pn": -0.521711 + }, + { + "surface": "草の根", + "readging": "くさのね", + "pos": "名詞", + "pn": -0.521711 + }, + { + "surface": "表紙", + "readging": "ひょうし", + "pos": "名詞", + "pn": -0.521711 + }, + { + "surface": "担当", + "readging": "たんとう", + "pos": "名詞", + "pn": -0.521717 + }, + { + "surface": "パンプス", + "readging": "パンプス", + "pos": "名詞", + "pn": -0.521732 + }, + { + "surface": "銘銘皿", + "readging": "めいめいざら", + "pos": "名詞", + "pn": -0.521732 + }, + { + "surface": "代理", + "readging": "だいり", + "pos": "名詞", + "pn": -0.521756 + }, + { + "surface": "逮捕", + "readging": "たいほ", + "pos": "名詞", + "pn": -0.521789 + }, + { + "surface": "雪隠", + "readging": "せっちん", + "pos": "名詞", + "pn": -0.52179 + }, + { + "surface": "三宝柑", + "readging": "さんぼうかん", + "pos": "名詞", + "pn": -0.521794 + }, + { + "surface": "吊橋", + "readging": "つりばし", + "pos": "名詞", + "pn": -0.52182 + }, + { + "surface": "論究", + "readging": "ろんきゅう", + "pos": "名詞", + "pn": -0.521831 + }, + { + "surface": "競う", + "readging": "きおう", + "pos": "動詞", + "pn": -0.521833 + }, + { + "surface": "刃物三昧", + "readging": "はものざんまい", + "pos": "名詞", + "pn": -0.521834 + }, + { + "surface": "生臭物", + "readging": "なまぐさもの", + "pos": "名詞", + "pn": -0.521839 + }, + { + "surface": "争議", + "readging": "そうぎ", + "pos": "名詞", + "pn": -0.521839 + }, + { + "surface": "百姓", + "readging": "ひゃくせい", + "pos": "名詞", + "pn": -0.521882 + }, + { + "surface": "温灸", + "readging": "おんきゅう", + "pos": "名詞", + "pn": -0.521886 + }, + { + "surface": "殺ぎ板", + "readging": "そぎいた", + "pos": "名詞", + "pn": -0.521912 + }, + { + "surface": "鳥の子", + "readging": "とりのこ", + "pos": "名詞", + "pn": -0.521939 + }, + { + "surface": "板目紙", + "readging": "いためがみ", + "pos": "名詞", + "pn": -0.521961 + }, + { + "surface": "櫛目", + "readging": "くしめ", + "pos": "名詞", + "pn": -0.521978 + }, + { + "surface": "脱力", + "readging": "だつりょく", + "pos": "名詞", + "pn": -0.521983 + }, + { + "surface": "塵払い", + "readging": "ちりはらい", + "pos": "名詞", + "pn": -0.522009 + }, + { + "surface": "腓返り", + "readging": "こむらがえり", + "pos": "名詞", + "pn": -0.522009 + }, + { + "surface": "跨げる", + "readging": "またげる", + "pos": "動詞", + "pn": -0.522039 + }, + { + "surface": "取入る", + "readging": "とりいる", + "pos": "動詞", + "pn": -0.522043 + }, + { + "surface": "塚", + "readging": "つか", + "pos": "名詞", + "pn": -0.522045 + }, + { + "surface": "鼻薬", + "readging": "はなぐすり", + "pos": "名詞", + "pn": -0.52205 + }, + { + "surface": "離合", + "readging": "りごう", + "pos": "名詞", + "pn": -0.522069 + }, + { + "surface": "突抜く", + "readging": "つきぬく", + "pos": "動詞", + "pn": -0.522091 + }, + { + "surface": "ツンドラ", + "readging": "ツンドラ", + "pos": "名詞", + "pn": -0.522115 + }, + { + "surface": "皮肉る", + "readging": "ひにくる", + "pos": "動詞", + "pn": -0.522119 + }, + { + "surface": "俵", + "readging": "ひょう", + "pos": "名詞", + "pn": -0.52212 + }, + { + "surface": "楓", + "readging": "かえで", + "pos": "名詞", + "pn": -0.522129 + }, + { + "surface": "銃身", + "readging": "じゅうしん", + "pos": "名詞", + "pn": -0.522143 + }, + { + "surface": "役員", + "readging": "やくいん", + "pos": "名詞", + "pn": -0.52216 + }, + { + "surface": "猿", + "readging": "ましら", + "pos": "名詞", + "pn": -0.522162 + }, + { + "surface": "返し", + "readging": "かえし", + "pos": "名詞", + "pn": -0.522181 + }, + { + "surface": "抑揚", + "readging": "よくよう", + "pos": "名詞", + "pn": -0.522203 + }, + { + "surface": "節付け", + "readging": "ふしづけ", + "pos": "名詞", + "pn": -0.522221 + }, + { + "surface": "おぶう", + "readging": "おぶう", + "pos": "動詞", + "pn": -0.522224 + }, + { + "surface": "真贋", + "readging": "しんがん", + "pos": "名詞", + "pn": -0.522231 + }, + { + "surface": "片棒", + "readging": "かたぼう", + "pos": "名詞", + "pn": -0.522233 + }, + { + "surface": "扈従", + "readging": "こじゅう", + "pos": "名詞", + "pn": -0.522241 + }, + { + "surface": "鑢紙", + "readging": "やすりがみ", + "pos": "名詞", + "pn": -0.522248 + }, + { + "surface": "屑米", + "readging": "くずまい", + "pos": "名詞", + "pn": -0.522252 + }, + { + "surface": "礼参り", + "readging": "れいまいり", + "pos": "名詞", + "pn": -0.52227 + }, + { + "surface": "恋歌", + "readging": "こいか", + "pos": "名詞", + "pn": -0.522297 + }, + { + "surface": "所論", + "readging": "しょろん", + "pos": "名詞", + "pn": -0.522304 + }, + { + "surface": "風向", + "readging": "ふうこう", + "pos": "名詞", + "pn": -0.52231 + }, + { + "surface": "ぬかずく", + "readging": "ぬかずく", + "pos": "動詞", + "pn": -0.522353 + }, + { + "surface": "都度", + "readging": "つど", + "pos": "名詞", + "pn": -0.522372 + }, + { + "surface": "果てし", + "readging": "はてし", + "pos": "名詞", + "pn": -0.522397 + }, + { + "surface": "撥ね付ける", + "readging": "はねつける", + "pos": "動詞", + "pn": -0.522431 + }, + { + "surface": "湖水", + "readging": "こすい", + "pos": "名詞", + "pn": -0.522462 + }, + { + "surface": "零れる", + "readging": "こぼれる", + "pos": "動詞", + "pn": -0.522487 + }, + { + "surface": "しょっちゅう", + "readging": "しょっちゅう", + "pos": "副詞", + "pn": -0.522492 + }, + { + "surface": "グループ", + "readging": "グループ", + "pos": "名詞", + "pn": -0.52253 + }, + { + "surface": "甲羅", + "readging": "こうら", + "pos": "名詞", + "pn": -0.522597 + }, + { + "surface": "板の間稼ぎ", + "readging": "いたのまかせぎ", + "pos": "名詞", + "pn": -0.522608 + }, + { + "surface": "建仁寺垣", + "readging": "けんにんじがき", + "pos": "名詞", + "pn": -0.522616 + }, + { + "surface": "木鐸", + "readging": "ぼくたく", + "pos": "名詞", + "pn": -0.522619 + }, + { + "surface": "椀盛", + "readging": "わんもり", + "pos": "名詞", + "pn": -0.52264 + }, + { + "surface": "装身具", + "readging": "そうしんぐ", + "pos": "名詞", + "pn": -0.522663 + }, + { + "surface": "くど", + "readging": "くど", + "pos": "名詞", + "pn": -0.522667 + }, + { + "surface": "芋刺し", + "readging": "いもざし", + "pos": "名詞", + "pn": -0.522686 + }, + { + "surface": "身元", + "readging": "みもと", + "pos": "名詞", + "pn": -0.522706 + }, + { + "surface": "忍冬", + "readging": "すいかずら", + "pos": "名詞", + "pn": -0.522707 + }, + { + "surface": "白癜", + "readging": "しろなまず", + "pos": "名詞", + "pn": -0.522717 + }, + { + "surface": "断碑", + "readging": "だんぴ", + "pos": "名詞", + "pn": -0.522747 + }, + { + "surface": "レンチ", + "readging": "レンチ", + "pos": "名詞", + "pn": -0.522765 + }, + { + "surface": "妾宅", + "readging": "しょうたく", + "pos": "名詞", + "pn": -0.522765 + }, + { + "surface": "洲", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.52277 + }, + { + "surface": "鐘声", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.522825 + }, + { + "surface": "創", + "readging": "そう", + "pos": "名詞", + "pn": -0.522894 + }, + { + "surface": "干瓢", + "readging": "かんぴょう", + "pos": "名詞", + "pn": -0.522896 + }, + { + "surface": "蛋白", + "readging": "たんぱく", + "pos": "名詞", + "pn": -0.522933 + }, + { + "surface": "懐柔", + "readging": "かいじゅう", + "pos": "名詞", + "pn": -0.522936 + }, + { + "surface": "羅紗紙", + "readging": "ラシャがみ", + "pos": "名詞", + "pn": -0.522942 + }, + { + "surface": "蛇苺", + "readging": "へびいちご", + "pos": "名詞", + "pn": -0.522961 + }, + { + "surface": "唯", + "readging": "ただ", + "pos": "名詞", + "pn": -0.522963 + }, + { + "surface": "碾茶", + "readging": "ひきちゃ", + "pos": "名詞", + "pn": -0.522966 + }, + { + "surface": "防水", + "readging": "ぼうすい", + "pos": "名詞", + "pn": -0.523017 + }, + { + "surface": "マンドリン", + "readging": "マンドリン", + "pos": "名詞", + "pn": -0.523017 + }, + { + "surface": "縁", + "readging": "へり", + "pos": "名詞", + "pn": -0.523025 + }, + { + "surface": "叩き付ける", + "readging": "たたきつける", + "pos": "動詞", + "pn": -0.523074 + }, + { + "surface": "腰帯", + "readging": "こしおび", + "pos": "名詞", + "pn": -0.523141 + }, + { + "surface": "書立てる", + "readging": "かきたてる", + "pos": "動詞", + "pn": -0.523165 + }, + { + "surface": "廃物", + "readging": "はいぶつ", + "pos": "名詞", + "pn": -0.523217 + }, + { + "surface": "題目", + "readging": "だいもく", + "pos": "名詞", + "pn": -0.523225 + }, + { + "surface": "月の輪熊", + "readging": "つきのわぐま", + "pos": "名詞", + "pn": -0.523237 + }, + { + "surface": "随行", + "readging": "ずいこう", + "pos": "名詞", + "pn": -0.523266 + }, + { + "surface": "水腹", + "readging": "みずばら", + "pos": "名詞", + "pn": -0.523333 + }, + { + "surface": "肉色", + "readging": "にくいろ", + "pos": "名詞", + "pn": -0.523344 + }, + { + "surface": "槐", + "readging": "えんじゅ", + "pos": "名詞", + "pn": -0.523346 + }, + { + "surface": "弓引く", + "readging": "ゆみひく", + "pos": "動詞", + "pn": -0.523353 + }, + { + "surface": "けじめ", + "readging": "けじめ", + "pos": "名詞", + "pn": -0.523353 + }, + { + "surface": "相対", + "readging": "そうたい", + "pos": "名詞", + "pn": -0.523371 + }, + { + "surface": "透", + "readging": "とう", + "pos": "名詞", + "pn": -0.523376 + }, + { + "surface": "算盤", + "readging": "そろばん", + "pos": "名詞", + "pn": -0.523391 + }, + { + "surface": "火の玉", + "readging": "ひのたま", + "pos": "名詞", + "pn": -0.523393 + }, + { + "surface": "船頭", + "readging": "せんどう", + "pos": "名詞", + "pn": -0.523446 + }, + { + "surface": "ポリオ", + "readging": "ポリオ", + "pos": "名詞", + "pn": -0.523463 + }, + { + "surface": "風潮", + "readging": "ふうちょう", + "pos": "名詞", + "pn": -0.523472 + }, + { + "surface": "ちんぷんかん", + "readging": "ちんぷんかん", + "pos": "名詞", + "pn": -0.523545 + }, + { + "surface": "声調", + "readging": "せいちょう", + "pos": "名詞", + "pn": -0.523546 + }, + { + "surface": "煙筒", + "readging": "えんとう", + "pos": "名詞", + "pn": -0.523546 + }, + { + "surface": "取締り", + "readging": "とりしまり", + "pos": "名詞", + "pn": -0.523593 + }, + { + "surface": "綿抜き", + "readging": "わたぬき", + "pos": "名詞", + "pn": -0.523626 + }, + { + "surface": "小腹", + "readging": "こばら", + "pos": "名詞", + "pn": -0.52363 + }, + { + "surface": "ももんが", + "readging": "ももんが", + "pos": "名詞", + "pn": -0.523634 + }, + { + "surface": "哄笑", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.523637 + }, + { + "surface": "解頤", + "readging": "かいい", + "pos": "名詞", + "pn": -0.523637 + }, + { + "surface": "組合", + "readging": "くみあい", + "pos": "名詞", + "pn": -0.523644 + }, + { + "surface": "鼻歌", + "readging": "はなうた", + "pos": "名詞", + "pn": -0.523648 + }, + { + "surface": "夜明け", + "readging": "よあけ", + "pos": "名詞", + "pn": -0.523658 + }, + { + "surface": "釣出す", + "readging": "つりだす", + "pos": "動詞", + "pn": -0.523678 + }, + { + "surface": "塩水", + "readging": "しおみず", + "pos": "名詞", + "pn": -0.523692 + }, + { + "surface": "点灯", + "readging": "てんとう", + "pos": "名詞", + "pn": -0.523695 + }, + { + "surface": "切離す", + "readging": "きりはなす", + "pos": "動詞", + "pn": -0.523712 + }, + { + "surface": "傷兵", + "readging": "しょうへい", + "pos": "名詞", + "pn": -0.523715 + }, + { + "surface": "女郎花", + "readging": "おみなえし", + "pos": "名詞", + "pn": -0.523728 + }, + { + "surface": "ゾーン", + "readging": "ゾーン", + "pos": "名詞", + "pn": -0.523728 + }, + { + "surface": "降雨", + "readging": "こうう", + "pos": "名詞", + "pn": -0.523739 + }, + { + "surface": "猛毒", + "readging": "もうどく", + "pos": "名詞", + "pn": -0.523745 + }, + { + "surface": "国訓", + "readging": "こっくん", + "pos": "名詞", + "pn": -0.523766 + }, + { + "surface": "茶庭", + "readging": "ちゃてい", + "pos": "名詞", + "pn": -0.523829 + }, + { + "surface": "何ぞ", + "readging": "なんぞ", + "pos": "副詞", + "pn": -0.523851 + }, + { + "surface": "遅滞", + "readging": "ちたい", + "pos": "名詞", + "pn": -0.523859 + }, + { + "surface": "下見", + "readging": "したみ", + "pos": "名詞", + "pn": -0.52386 + }, + { + "surface": "古墳", + "readging": "こふん", + "pos": "名詞", + "pn": -0.523868 + }, + { + "surface": "排する", + "readging": "はいする", + "pos": "動詞", + "pn": -0.5239 + }, + { + "surface": "所行", + "readging": "しょぎょう", + "pos": "名詞", + "pn": -0.523919 + }, + { + "surface": "押出し", + "readging": "おしだし", + "pos": "名詞", + "pn": -0.523947 + }, + { + "surface": "変乱", + "readging": "へんらん", + "pos": "名詞", + "pn": -0.524015 + }, + { + "surface": "禊", + "readging": "みそぎ", + "pos": "名詞", + "pn": -0.524024 + }, + { + "surface": "お下げ", + "readging": "おさげ", + "pos": "名詞", + "pn": -0.524026 + }, + { + "surface": "中形", + "readging": "ちゅうがた", + "pos": "名詞", + "pn": -0.524032 + }, + { + "surface": "抓る", + "readging": "つめる", + "pos": "動詞", + "pn": -0.524055 + }, + { + "surface": "もんどり", + "readging": "もんどり", + "pos": "名詞", + "pn": -0.52406 + }, + { + "surface": "占筮", + "readging": "せんぜい", + "pos": "名詞", + "pn": -0.524084 + }, + { + "surface": "プラカード", + "readging": "プラカード", + "pos": "名詞", + "pn": -0.524089 + }, + { + "surface": "堵列", + "readging": "とれつ", + "pos": "名詞", + "pn": -0.524134 + }, + { + "surface": "愛妾", + "readging": "あいしょう", + "pos": "名詞", + "pn": -0.524135 + }, + { + "surface": "百日鬘", + "readging": "ひゃくにちかずら", + "pos": "名詞", + "pn": -0.524137 + }, + { + "surface": "手鉤", + "readging": "てかぎ", + "pos": "名詞", + "pn": -0.524149 + }, + { + "surface": "灰白色", + "readging": "かいはくしょく", + "pos": "名詞", + "pn": -0.524186 + }, + { + "surface": "尺八", + "readging": "しゃくはち", + "pos": "名詞", + "pn": -0.524197 + }, + { + "surface": "急き立てる", + "readging": "せきたてる", + "pos": "動詞", + "pn": -0.524205 + }, + { + "surface": "猪", + "readging": "いのしし", + "pos": "名詞", + "pn": -0.524208 + }, + { + "surface": "無反", + "readging": "むぞり", + "pos": "名詞", + "pn": -0.524217 + }, + { + "surface": "侍者", + "readging": "じしゃ", + "pos": "名詞", + "pn": -0.524274 + }, + { + "surface": "節制", + "readging": "せっせい", + "pos": "名詞", + "pn": -0.524279 + }, + { + "surface": "播種", + "readging": "はしゅ", + "pos": "名詞", + "pn": -0.524282 + }, + { + "surface": "言出しっ屁", + "readging": "いいだしっぺ", + "pos": "名詞", + "pn": -0.524286 + }, + { + "surface": "刑事", + "readging": "けいじ", + "pos": "名詞", + "pn": -0.524297 + }, + { + "surface": "順養子", + "readging": "じゅんようし", + "pos": "名詞", + "pn": -0.524308 + }, + { + "surface": "櫓", + "readging": "ろ", + "pos": "名詞", + "pn": -0.524357 + }, + { + "surface": "築地", + "readging": "ついじ", + "pos": "名詞", + "pn": -0.524363 + }, + { + "surface": "くさや", + "readging": "くさや", + "pos": "名詞", + "pn": -0.524376 + }, + { + "surface": "葱", + "readging": "ねぎ", + "pos": "名詞", + "pn": -0.52438 + }, + { + "surface": "鈴蘭灯", + "readging": "すずらんとう", + "pos": "名詞", + "pn": -0.524396 + }, + { + "surface": "意向", + "readging": "いこう", + "pos": "名詞", + "pn": -0.524396 + }, + { + "surface": "捨台詞", + "readging": "すてぜりふ", + "pos": "名詞", + "pn": -0.524418 + }, + { + "surface": "流伝", + "readging": "りゅうでん", + "pos": "名詞", + "pn": -0.524422 + }, + { + "surface": "定斎", + "readging": "じょうさい", + "pos": "名詞", + "pn": -0.524446 + }, + { + "surface": "梳く", + "readging": "すく", + "pos": "動詞", + "pn": -0.524499 + }, + { + "surface": "首鼠", + "readging": "しゅそ", + "pos": "名詞", + "pn": -0.524518 + }, + { + "surface": "口真似", + "readging": "くちまね", + "pos": "名詞", + "pn": -0.524522 + }, + { + "surface": "研出し蒔絵", + "readging": "とぎだしまきえ", + "pos": "名詞", + "pn": -0.524525 + }, + { + "surface": "捲る", + "readging": "めくる", + "pos": "動詞", + "pn": -0.524526 + }, + { + "surface": "数字", + "readging": "すうじ", + "pos": "名詞", + "pn": -0.524532 + }, + { + "surface": "封じ込める", + "readging": "ふうじこめる", + "pos": "動詞", + "pn": -0.52455 + }, + { + "surface": "矛", + "readging": "む", + "pos": "名詞", + "pn": -0.524615 + }, + { + "surface": "盤台", + "readging": "ばんだい", + "pos": "名詞", + "pn": -0.524632 + }, + { + "surface": "放射", + "readging": "ほうしゃ", + "pos": "名詞", + "pn": -0.524632 + }, + { + "surface": "馬鹿貝", + "readging": "ばかがい", + "pos": "名詞", + "pn": -0.524646 + }, + { + "surface": "前書", + "readging": "ぜんしょ", + "pos": "名詞", + "pn": -0.524653 + }, + { + "surface": "婦女子", + "readging": "ふじょし", + "pos": "名詞", + "pn": -0.524701 + }, + { + "surface": "網", + "readging": "あみ", + "pos": "名詞", + "pn": -0.524714 + }, + { + "surface": "七草粥", + "readging": "ななくさがゆ", + "pos": "名詞", + "pn": -0.524759 + }, + { + "surface": "人真似", + "readging": "ひとまね", + "pos": "名詞", + "pn": -0.524767 + }, + { + "surface": "裁判官", + "readging": "さいばんかん", + "pos": "名詞", + "pn": -0.52477 + }, + { + "surface": "水色", + "readging": "みずいろ", + "pos": "名詞", + "pn": -0.524782 + }, + { + "surface": "隼人", + "readging": "はやと", + "pos": "名詞", + "pn": -0.524806 + }, + { + "surface": "終身官", + "readging": "しゅうしんかん", + "pos": "名詞", + "pn": -0.524829 + }, + { + "surface": "粒立つ", + "readging": "つぶだつ", + "pos": "動詞", + "pn": -0.52484 + }, + { + "surface": "流木", + "readging": "りゅうぼく", + "pos": "名詞", + "pn": -0.524857 + }, + { + "surface": "書痙", + "readging": "しょけい", + "pos": "名詞", + "pn": -0.524869 + }, + { + "surface": "茗荷", + "readging": "みょうが", + "pos": "名詞", + "pn": -0.524877 + }, + { + "surface": "ロッカー", + "readging": "ロッカー", + "pos": "名詞", + "pn": -0.524883 + }, + { + "surface": "寒空", + "readging": "さむぞら", + "pos": "名詞", + "pn": -0.524886 + }, + { + "surface": "将来", + "readging": "しょうらい", + "pos": "名詞", + "pn": -0.524894 + }, + { + "surface": "鮫肌", + "readging": "さめはだ", + "pos": "名詞", + "pn": -0.524898 + }, + { + "surface": "別墅", + "readging": "べっしょ", + "pos": "名詞", + "pn": -0.524899 + }, + { + "surface": "葉鶏頭", + "readging": "はげいとう", + "pos": "名詞", + "pn": -0.524906 + }, + { + "surface": "こせこせ", + "readging": "こせこせ", + "pos": "名詞", + "pn": -0.524922 + }, + { + "surface": "書付", + "readging": "かきつけ", + "pos": "名詞", + "pn": -0.524923 + }, + { + "surface": "憫笑", + "readging": "びんしょう", + "pos": "名詞", + "pn": -0.524946 + }, + { + "surface": "下履", + "readging": "したばき", + "pos": "名詞", + "pn": -0.52497 + }, + { + "surface": "逓伝", + "readging": "ていでん", + "pos": "名詞", + "pn": -0.524975 + }, + { + "surface": "真紅", + "readging": "しんく", + "pos": "名詞", + "pn": -0.525019 + }, + { + "surface": "胸紐", + "readging": "むなひも", + "pos": "名詞", + "pn": -0.52503 + }, + { + "surface": "法螺貝", + "readging": "ほらがい", + "pos": "名詞", + "pn": -0.525042 + }, + { + "surface": "麹", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.525048 + }, + { + "surface": "監察", + "readging": "かんさつ", + "pos": "名詞", + "pn": -0.525056 + }, + { + "surface": "身の回り", + "readging": "みのまわり", + "pos": "名詞", + "pn": -0.525073 + }, + { + "surface": "毛細管", + "readging": "もうさいかん", + "pos": "名詞", + "pn": -0.525089 + }, + { + "surface": "やって来る", + "readging": "やってくる", + "pos": "動詞", + "pn": -0.525095 + }, + { + "surface": "ちょこまか", + "readging": "ちょこまか", + "pos": "副詞", + "pn": -0.525127 + }, + { + "surface": "法師", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.525142 + }, + { + "surface": "古昔", + "readging": "こせき", + "pos": "名詞", + "pn": -0.525164 + }, + { + "surface": "一文字", + "readging": "いちもんじ", + "pos": "名詞", + "pn": -0.525173 + }, + { + "surface": "煽り", + "readging": "あおり", + "pos": "名詞", + "pn": -0.525174 + }, + { + "surface": "丈六", + "readging": "じょうろく", + "pos": "名詞", + "pn": -0.525183 + }, + { + "surface": "赤道", + "readging": "せきどう", + "pos": "名詞", + "pn": -0.525183 + }, + { + "surface": "人非人", + "readging": "にんぴにん", + "pos": "名詞", + "pn": -0.525197 + }, + { + "surface": "末流", + "readging": "まつりゅう", + "pos": "名詞", + "pn": -0.525237 + }, + { + "surface": "手塩皿", + "readging": "てしお", + "pos": "名詞", + "pn": -0.525254 + }, + { + "surface": "茶屋", + "readging": "ちゃや", + "pos": "名詞", + "pn": -0.525286 + }, + { + "surface": "遁走", + "readging": "とんそう", + "pos": "名詞", + "pn": -0.525295 + }, + { + "surface": "ストーム", + "readging": "ストーム", + "pos": "名詞", + "pn": -0.52532 + }, + { + "surface": "湯屋", + "readging": "ゆや", + "pos": "名詞", + "pn": -0.525336 + }, + { + "surface": "沽券", + "readging": "こけん", + "pos": "名詞", + "pn": -0.525341 + }, + { + "surface": "泥水", + "readging": "どろみず", + "pos": "名詞", + "pn": -0.525365 + }, + { + "surface": "桜飯", + "readging": "さくらめし", + "pos": "名詞", + "pn": -0.525393 + }, + { + "surface": "縛する", + "readging": "ばくする", + "pos": "動詞", + "pn": -0.525399 + }, + { + "surface": "成れの果", + "readging": "なれのはて", + "pos": "名詞", + "pn": -0.52543 + }, + { + "surface": "厭離", + "readging": "えんり", + "pos": "名詞", + "pn": -0.525434 + }, + { + "surface": "終焉", + "readging": "しゅうえん", + "pos": "名詞", + "pn": -0.52546 + }, + { + "surface": "見澄ます", + "readging": "みすます", + "pos": "動詞", + "pn": -0.525483 + }, + { + "surface": "浮き", + "readging": "うき", + "pos": "名詞", + "pn": -0.525516 + }, + { + "surface": "カー", + "readging": "カーポート", + "pos": "名詞", + "pn": -0.525537 + }, + { + "surface": "居直る", + "readging": "いなおる", + "pos": "動詞", + "pn": -0.525563 + }, + { + "surface": "嫁する", + "readging": "かする", + "pos": "動詞", + "pn": -0.525568 + }, + { + "surface": "代案", + "readging": "だいあん", + "pos": "名詞", + "pn": -0.525593 + }, + { + "surface": "指導", + "readging": "しどう", + "pos": "名詞", + "pn": -0.525597 + }, + { + "surface": "合従", + "readging": "がっしょう", + "pos": "名詞", + "pn": -0.525604 + }, + { + "surface": "噛みしだく", + "readging": "かみしだく", + "pos": "動詞", + "pn": -0.525604 + }, + { + "surface": "空想", + "readging": "くうそう", + "pos": "名詞", + "pn": -0.525605 + }, + { + "surface": "皇考", + "readging": "こうこう", + "pos": "名詞", + "pn": -0.52561 + }, + { + "surface": "閲読", + "readging": "えつどく", + "pos": "名詞", + "pn": -0.525616 + }, + { + "surface": "動機", + "readging": "どうき", + "pos": "名詞", + "pn": -0.525618 + }, + { + "surface": "雀蜂", + "readging": "すずめばち", + "pos": "名詞", + "pn": -0.525622 + }, + { + "surface": "和訓", + "readging": "わくん", + "pos": "名詞", + "pn": -0.525632 + }, + { + "surface": "樹", + "readging": "じゅ", + "pos": "名詞", + "pn": -0.525637 + }, + { + "surface": "節約", + "readging": "せつやく", + "pos": "名詞", + "pn": -0.525672 + }, + { + "surface": "綿ビロード", + "readging": "めんビロード", + "pos": "名詞", + "pn": -0.525679 + }, + { + "surface": "産毛", + "readging": "うぶげ", + "pos": "名詞", + "pn": -0.525681 + }, + { + "surface": "ツイード", + "readging": "ツイード", + "pos": "名詞", + "pn": -0.525706 + }, + { + "surface": "水泡", + "readging": "すいほう", + "pos": "名詞", + "pn": -0.525708 + }, + { + "surface": "色里", + "readging": "いろざと", + "pos": "名詞", + "pn": -0.525711 + }, + { + "surface": "市松模様", + "readging": "いちまつもよう", + "pos": "名詞", + "pn": -0.525716 + }, + { + "surface": "陸軍", + "readging": "りくぐん", + "pos": "名詞", + "pn": -0.525732 + }, + { + "surface": "廊", + "readging": "ろう", + "pos": "名詞", + "pn": -0.525735 + }, + { + "surface": "栄螺", + "readging": "さざえ", + "pos": "名詞", + "pn": -0.525744 + }, + { + "surface": "右", + "readging": "みぎ", + "pos": "名詞", + "pn": -0.525752 + }, + { + "surface": "源五郎", + "readging": "げんごろう", + "pos": "名詞", + "pn": -0.525837 + }, + { + "surface": "舂く", + "readging": "うすずく", + "pos": "動詞", + "pn": -0.525845 + }, + { + "surface": "坩堝", + "readging": "るつぼ", + "pos": "名詞", + "pn": -0.525897 + }, + { + "surface": "秘事", + "readging": "ひめごと", + "pos": "名詞", + "pn": -0.525902 + }, + { + "surface": "小夜", + "readging": "さよ", + "pos": "名詞", + "pn": -0.525906 + }, + { + "surface": "衣魚", + "readging": "しみ", + "pos": "名詞", + "pn": -0.525927 + }, + { + "surface": "吸盤", + "readging": "きゅうばん", + "pos": "名詞", + "pn": -0.525942 + }, + { + "surface": "境界", + "readging": "きょうかい", + "pos": "名詞", + "pn": -0.525951 + }, + { + "surface": "泉石", + "readging": "せんせき", + "pos": "名詞", + "pn": -0.525958 + }, + { + "surface": "収容", + "readging": "しゅうよう", + "pos": "名詞", + "pn": -0.525959 + }, + { + "surface": "酪農", + "readging": "らくのう", + "pos": "名詞", + "pn": -0.525978 + }, + { + "surface": "潜幸", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.52598 + }, + { + "surface": "後口", + "readging": "あとくち", + "pos": "名詞", + "pn": -0.526037 + }, + { + "surface": "迂闊", + "readging": "うかつ", + "pos": "名詞", + "pn": -0.526042 + }, + { + "surface": "骨違い", + "readging": "ほねちがい", + "pos": "名詞", + "pn": -0.526051 + }, + { + "surface": "扱く", + "readging": "こく", + "pos": "動詞", + "pn": -0.526058 + }, + { + "surface": "ボーリング", + "readging": "ボーリング", + "pos": "名詞", + "pn": -0.526062 + }, + { + "surface": "手傷", + "readging": "てきず", + "pos": "名詞", + "pn": -0.526082 + }, + { + "surface": "外鰐", + "readging": "そとわに", + "pos": "名詞", + "pn": -0.526098 + }, + { + "surface": "省", + "readging": "せい", + "pos": "名詞", + "pn": -0.52611 + }, + { + "surface": "血の涙", + "readging": "ちのなみだ", + "pos": "名詞", + "pn": -0.526115 + }, + { + "surface": "腸", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.526121 + }, + { + "surface": "剃髪", + "readging": "ていはつ", + "pos": "名詞", + "pn": -0.526173 + }, + { + "surface": "間食", + "readging": "かんしょく", + "pos": "名詞", + "pn": -0.526301 + }, + { + "surface": "過料", + "readging": "かりょう", + "pos": "名詞", + "pn": -0.526327 + }, + { + "surface": "不浄", + "readging": "ふじょう", + "pos": "名詞", + "pn": -0.526328 + }, + { + "surface": "黄泉", + "readging": "よみ", + "pos": "名詞", + "pn": -0.526399 + }, + { + "surface": "偏狭", + "readging": "へんきょう", + "pos": "名詞", + "pn": -0.52641 + }, + { + "surface": "梟", + "readging": "ふくろう", + "pos": "名詞", + "pn": -0.526424 + }, + { + "surface": "にべ", + "readging": "にべ", + "pos": "名詞", + "pn": -0.526443 + }, + { + "surface": "総統", + "readging": "そうとう", + "pos": "名詞", + "pn": -0.526451 + }, + { + "surface": "記事", + "readging": "きじ", + "pos": "名詞", + "pn": -0.526464 + }, + { + "surface": "染まる", + "readging": "そまる", + "pos": "動詞", + "pn": -0.526478 + }, + { + "surface": "本直し", + "readging": "ほんなおし", + "pos": "名詞", + "pn": -0.526485 + }, + { + "surface": "ちょいちょい", + "readging": "ちょいちょい", + "pos": "副詞", + "pn": -0.526513 + }, + { + "surface": "矢車", + "readging": "やぐるま", + "pos": "名詞", + "pn": -0.526529 + }, + { + "surface": "預かる", + "readging": "あずかる", + "pos": "動詞", + "pn": -0.526546 + }, + { + "surface": "又又", + "readging": "またまた", + "pos": "副詞", + "pn": -0.526555 + }, + { + "surface": "袖搦み", + "readging": "そでがらみ", + "pos": "名詞", + "pn": -0.526569 + }, + { + "surface": "パイプ", + "readging": "パイプオルガン", + "pos": "名詞", + "pn": -0.52657 + }, + { + "surface": "軸物", + "readging": "じくもの", + "pos": "名詞", + "pn": -0.52657 + }, + { + "surface": "照準", + "readging": "しょうじゅん", + "pos": "名詞", + "pn": -0.526581 + }, + { + "surface": "隼", + "readging": "はやぶさ", + "pos": "名詞", + "pn": -0.526623 + }, + { + "surface": "付け紐", + "readging": "つけひも", + "pos": "名詞", + "pn": -0.526624 + }, + { + "surface": "ばらす", + "readging": "ばらす", + "pos": "動詞", + "pn": -0.526625 + }, + { + "surface": "頭韻", + "readging": "とういん", + "pos": "名詞", + "pn": -0.526662 + }, + { + "surface": "腕白", + "readging": "わんぱく", + "pos": "名詞", + "pn": -0.526667 + }, + { + "surface": "血", + "readging": "けつ", + "pos": "名詞", + "pn": -0.526678 + }, + { + "surface": "仏門", + "readging": "ぶつもん", + "pos": "名詞", + "pn": -0.526716 + }, + { + "surface": "裂け目", + "readging": "さけめ", + "pos": "名詞", + "pn": -0.526731 + }, + { + "surface": "強ばる", + "readging": "こわばる", + "pos": "動詞", + "pn": -0.526738 + }, + { + "surface": "造作", + "readging": "ぞうさく", + "pos": "名詞", + "pn": -0.526739 + }, + { + "surface": "容積", + "readging": "ようせき", + "pos": "名詞", + "pn": -0.526745 + }, + { + "surface": "塩辛蜻蛉", + "readging": "しおから", + "pos": "名詞", + "pn": -0.526753 + }, + { + "surface": "撃止める", + "readging": "うちとめる", + "pos": "動詞", + "pn": -0.52676 + }, + { + "surface": "レバー", + "readging": "レバー", + "pos": "名詞", + "pn": -0.526786 + }, + { + "surface": "後程", + "readging": "のちほど", + "pos": "副詞", + "pn": -0.526786 + }, + { + "surface": "推理", + "readging": "すいり", + "pos": "名詞", + "pn": -0.526797 + }, + { + "surface": "調べ", + "readging": "しらべ", + "pos": "名詞", + "pn": -0.526801 + }, + { + "surface": "毎年", + "readging": "まいねん", + "pos": "名詞", + "pn": -0.526812 + }, + { + "surface": "年末", + "readging": "ねんまつ", + "pos": "名詞", + "pn": -0.526821 + }, + { + "surface": "縄跳び", + "readging": "なわとび", + "pos": "名詞", + "pn": -0.526827 + }, + { + "surface": "医師", + "readging": "いし", + "pos": "名詞", + "pn": -0.526839 + }, + { + "surface": "給料", + "readging": "きゅうりょう", + "pos": "名詞", + "pn": -0.526839 + }, + { + "surface": "埋れる", + "readging": "うもれる", + "pos": "動詞", + "pn": -0.526876 + }, + { + "surface": "パンタロン", + "readging": "パンタロン", + "pos": "名詞", + "pn": -0.526884 + }, + { + "surface": "口ずさむ", + "readging": "くちずさむ", + "pos": "動詞", + "pn": -0.526901 + }, + { + "surface": "幾許", + "readging": "いくばく", + "pos": "副詞", + "pn": -0.526913 + }, + { + "surface": "神楽", + "readging": "かぐら", + "pos": "名詞", + "pn": -0.526985 + }, + { + "surface": "さい莢", + "readging": "さいかち", + "pos": "名詞", + "pn": -0.527013 + }, + { + "surface": "書架", + "readging": "しょか", + "pos": "名詞", + "pn": -0.52702 + }, + { + "surface": "エックス線", + "readging": "エックスせん", + "pos": "名詞", + "pn": -0.527037 + }, + { + "surface": "骨接ぎ", + "readging": "ほねつぎ", + "pos": "名詞", + "pn": -0.527042 + }, + { + "surface": "復する", + "readging": "ふくする", + "pos": "動詞", + "pn": -0.527058 + }, + { + "surface": "蜜蜂", + "readging": "みつばち", + "pos": "名詞", + "pn": -0.527059 + }, + { + "surface": "経師屋", + "readging": "きょうじや", + "pos": "名詞", + "pn": -0.527066 + }, + { + "surface": "丸め込む", + "readging": "まるめこむ", + "pos": "動詞", + "pn": -0.527103 + }, + { + "surface": "蒸菓子", + "readging": "むしがし", + "pos": "名詞", + "pn": -0.527115 + }, + { + "surface": "上腿", + "readging": "じょうたい", + "pos": "名詞", + "pn": -0.527128 + }, + { + "surface": "無くなす", + "readging": "なくなす", + "pos": "動詞", + "pn": -0.527154 + }, + { + "surface": "元服", + "readging": "げんぶく", + "pos": "名詞", + "pn": -0.527154 + }, + { + "surface": "鎧う", + "readging": "よろう", + "pos": "動詞", + "pn": -0.527164 + }, + { + "surface": "血膿", + "readging": "ちうみ", + "pos": "名詞", + "pn": -0.527165 + }, + { + "surface": "衰滅", + "readging": "すいめつ", + "pos": "名詞", + "pn": -0.527198 + }, + { + "surface": "見物", + "readging": "みもの", + "pos": "名詞", + "pn": -0.5272 + }, + { + "surface": "チェック", + "readging": "チェック", + "pos": "名詞", + "pn": -0.5272 + }, + { + "surface": "水魔", + "readging": "すいま", + "pos": "名詞", + "pn": -0.527237 + }, + { + "surface": "渦紋", + "readging": "かもん", + "pos": "名詞", + "pn": -0.527239 + }, + { + "surface": "赤出し", + "readging": "あかだし", + "pos": "名詞", + "pn": -0.52724 + }, + { + "surface": "山峡", + "readging": "さんきょう", + "pos": "名詞", + "pn": -0.527243 + }, + { + "surface": "掩蓋", + "readging": "えんがい", + "pos": "名詞", + "pn": -0.527262 + }, + { + "surface": "調書", + "readging": "ちょうしょ", + "pos": "名詞", + "pn": -0.527267 + }, + { + "surface": "穴熊", + "readging": "あなぐま", + "pos": "名詞", + "pn": -0.527296 + }, + { + "surface": "末席", + "readging": "まっせき", + "pos": "名詞", + "pn": -0.527297 + }, + { + "surface": "ラバー", + "readging": "ラバー", + "pos": "名詞", + "pn": -0.527321 + }, + { + "surface": "数学", + "readging": "すうがく", + "pos": "名詞", + "pn": -0.527349 + }, + { + "surface": "右", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.527372 + }, + { + "surface": "轍", + "readging": "てつ", + "pos": "名詞", + "pn": -0.527373 + }, + { + "surface": "ズボン下", + "readging": "ズボンした", + "pos": "名詞", + "pn": -0.527374 + }, + { + "surface": "口先", + "readging": "くちさき", + "pos": "名詞", + "pn": -0.527377 + }, + { + "surface": "吸出し", + "readging": "すいだし", + "pos": "名詞", + "pn": -0.5274 + }, + { + "surface": "幔幕", + "readging": "まんまく", + "pos": "名詞", + "pn": -0.527403 + }, + { + "surface": "工芸", + "readging": "こうげい", + "pos": "名詞", + "pn": -0.527405 + }, + { + "surface": "績む", + "readging": "うむ", + "pos": "動詞", + "pn": -0.527458 + }, + { + "surface": "号泣", + "readging": "ごうきゅう", + "pos": "名詞", + "pn": -0.527485 + }, + { + "surface": "買溜め", + "readging": "かいだめ", + "pos": "名詞", + "pn": -0.527515 + }, + { + "surface": "スプーン", + "readging": "スプーンレース", + "pos": "名詞", + "pn": -0.527532 + }, + { + "surface": "健胃剤", + "readging": "けんいざい", + "pos": "名詞", + "pn": -0.527547 + }, + { + "surface": "鈴生り", + "readging": "すずなり", + "pos": "名詞", + "pn": -0.527559 + }, + { + "surface": "冠", + "readging": "かむり", + "pos": "名詞", + "pn": -0.527572 + }, + { + "surface": "耳輪", + "readging": "みみわ", + "pos": "名詞", + "pn": -0.527577 + }, + { + "surface": "図画", + "readging": "ずが", + "pos": "名詞", + "pn": -0.527589 + }, + { + "surface": "鱗片", + "readging": "りんぺん", + "pos": "名詞", + "pn": -0.527591 + }, + { + "surface": "早春", + "readging": "そうしゅん", + "pos": "名詞", + "pn": -0.527592 + }, + { + "surface": "茶席", + "readging": "ちゃせき", + "pos": "名詞", + "pn": -0.527593 + }, + { + "surface": "順", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.527604 + }, + { + "surface": "労務者", + "readging": "ろうむしゃ", + "pos": "名詞", + "pn": -0.527631 + }, + { + "surface": "双球菌", + "readging": "そうきゅうきん", + "pos": "名詞", + "pn": -0.527668 + }, + { + "surface": "既習", + "readging": "きしゅう", + "pos": "名詞", + "pn": -0.527675 + }, + { + "surface": "飾", + "readging": "しょく", + "pos": "名詞", + "pn": -0.527684 + }, + { + "surface": "蛤", + "readging": "はまぐり", + "pos": "名詞", + "pn": -0.527685 + }, + { + "surface": "同類項", + "readging": "どうるいこう", + "pos": "名詞", + "pn": -0.527718 + }, + { + "surface": "パラグライダー", + "readging": "パラグライダー", + "pos": "名詞", + "pn": -0.527732 + }, + { + "surface": "額面", + "readging": "がくめん", + "pos": "名詞", + "pn": -0.527733 + }, + { + "surface": "禅刹", + "readging": "ぜんさつ", + "pos": "名詞", + "pn": -0.527737 + }, + { + "surface": "ラッセル", + "readging": "ラッセル", + "pos": "名詞", + "pn": -0.527804 + }, + { + "surface": "陰晴", + "readging": "いんせい", + "pos": "名詞", + "pn": -0.527816 + }, + { + "surface": "紙幣", + "readging": "しへい", + "pos": "名詞", + "pn": -0.527844 + }, + { + "surface": "接続", + "readging": "せつぞく", + "pos": "名詞", + "pn": -0.527853 + }, + { + "surface": "拇印", + "readging": "ぼいん", + "pos": "名詞", + "pn": -0.527856 + }, + { + "surface": "覆る", + "readging": "くつがえる", + "pos": "動詞", + "pn": -0.527863 + }, + { + "surface": "絨毯", + "readging": "じゅうたん", + "pos": "名詞", + "pn": -0.527867 + }, + { + "surface": "車座", + "readging": "くるまざ", + "pos": "名詞", + "pn": -0.527881 + }, + { + "surface": "牛疫", + "readging": "ぎゅうえき", + "pos": "名詞", + "pn": -0.527932 + }, + { + "surface": "毒虫", + "readging": "どくむし", + "pos": "名詞", + "pn": -0.52796 + }, + { + "surface": "峡谷", + "readging": "きょうこく", + "pos": "名詞", + "pn": -0.527965 + }, + { + "surface": "綿菓子", + "readging": "わたがし", + "pos": "名詞", + "pn": -0.527982 + }, + { + "surface": "指輪", + "readging": "ゆびわ", + "pos": "名詞", + "pn": -0.528002 + }, + { + "surface": "袖無", + "readging": "そでなし", + "pos": "名詞", + "pn": -0.528002 + }, + { + "surface": "べた", + "readging": "べた", + "pos": "名詞", + "pn": -0.528018 + }, + { + "surface": "凝脂", + "readging": "ぎょうし", + "pos": "名詞", + "pn": -0.528019 + }, + { + "surface": "墓所", + "readging": "はかどころ", + "pos": "名詞", + "pn": -0.528038 + }, + { + "surface": "豆板", + "readging": "まめいた", + "pos": "名詞", + "pn": -0.52805 + }, + { + "surface": "敗色", + "readging": "はいしょく", + "pos": "名詞", + "pn": -0.528068 + }, + { + "surface": "素麺", + "readging": "そうめん", + "pos": "名詞", + "pn": -0.528088 + }, + { + "surface": "必ず", + "readging": "かならず", + "pos": "副詞", + "pn": -0.528095 + }, + { + "surface": "鉛版", + "readging": "えんばん", + "pos": "名詞", + "pn": -0.528108 + }, + { + "surface": "袖畳み", + "readging": "そでだたみ", + "pos": "名詞", + "pn": -0.528113 + }, + { + "surface": "海浜", + "readging": "かいひん", + "pos": "名詞", + "pn": -0.528136 + }, + { + "surface": "綴り", + "readging": "つづり", + "pos": "名詞", + "pn": -0.528153 + }, + { + "surface": "床下", + "readging": "ゆかした", + "pos": "名詞", + "pn": -0.528169 + }, + { + "surface": "沿海", + "readging": "えんかい", + "pos": "名詞", + "pn": -0.528169 + }, + { + "surface": "海酸漿", + "readging": "うみほおずき", + "pos": "名詞", + "pn": -0.528182 + }, + { + "surface": "鴨の嘴", + "readging": "かものはし", + "pos": "名詞", + "pn": -0.528184 + }, + { + "surface": "鰭", + "readging": "ひれ", + "pos": "名詞", + "pn": -0.528205 + }, + { + "surface": "厠", + "readging": "かわや", + "pos": "名詞", + "pn": -0.528207 + }, + { + "surface": "遍在", + "readging": "へんざい", + "pos": "名詞", + "pn": -0.528256 + }, + { + "surface": "通り", + "readging": "とおり", + "pos": "名詞", + "pn": -0.528264 + }, + { + "surface": "羈絆", + "readging": "きはん", + "pos": "名詞", + "pn": -0.528277 + }, + { + "surface": "研鑽", + "readging": "けんさん", + "pos": "名詞", + "pn": -0.528308 + }, + { + "surface": "幅跳", + "readging": "はばとび", + "pos": "名詞", + "pn": -0.528316 + }, + { + "surface": "出放題", + "readging": "でほうだい", + "pos": "名詞", + "pn": -0.52834 + }, + { + "surface": "塩辛声", + "readging": "しおから", + "pos": "名詞", + "pn": -0.528356 + }, + { + "surface": "喫する", + "readging": "きっする", + "pos": "動詞", + "pn": -0.528363 + }, + { + "surface": "延べる", + "readging": "のべる", + "pos": "動詞", + "pn": -0.528373 + }, + { + "surface": "刺繍", + "readging": "ししゅう", + "pos": "名詞", + "pn": -0.528384 + }, + { + "surface": "未来永劫", + "readging": "みらいえいごう", + "pos": "名詞", + "pn": -0.528391 + }, + { + "surface": "纏わる", + "readging": "まつわる", + "pos": "動詞", + "pn": -0.528402 + }, + { + "surface": "独立", + "readging": "どくりつ", + "pos": "名詞", + "pn": -0.528411 + }, + { + "surface": "注連飾", + "readging": "しめかざり", + "pos": "名詞", + "pn": -0.528426 + }, + { + "surface": "狭める", + "readging": "せばめる", + "pos": "動詞", + "pn": -0.528434 + }, + { + "surface": "帰り", + "readging": "かえり", + "pos": "名詞", + "pn": -0.528449 + }, + { + "surface": "茨", + "readging": "いばら", + "pos": "名詞", + "pn": -0.528462 + }, + { + "surface": "支出", + "readging": "ししゅつ", + "pos": "名詞", + "pn": -0.528466 + }, + { + "surface": "黴", + "readging": "かび", + "pos": "名詞", + "pn": -0.528468 + }, + { + "surface": "瀉剤", + "readging": "しゃざい", + "pos": "名詞", + "pn": -0.52848 + }, + { + "surface": "任免", + "readging": "にんめん", + "pos": "名詞", + "pn": -0.5285 + }, + { + "surface": "紅白粉", + "readging": "べにおしろい", + "pos": "名詞", + "pn": -0.528507 + }, + { + "surface": "脂粉", + "readging": "しふん", + "pos": "名詞", + "pn": -0.528507 + }, + { + "surface": "肩凝り", + "readging": "かたこり", + "pos": "名詞", + "pn": -0.528508 + }, + { + "surface": "常人", + "readging": "じょうじん", + "pos": "名詞", + "pn": -0.528529 + }, + { + "surface": "体貌", + "readging": "たいぼう", + "pos": "名詞", + "pn": -0.528537 + }, + { + "surface": "二股膏薬", + "readging": "ふたまたごうやく", + "pos": "名詞", + "pn": -0.528546 + }, + { + "surface": "采配", + "readging": "さいはい", + "pos": "名詞", + "pn": -0.52855 + }, + { + "surface": "退化", + "readging": "たいか", + "pos": "名詞", + "pn": -0.528558 + }, + { + "surface": "抱く", + "readging": "だく", + "pos": "動詞", + "pn": -0.528561 + }, + { + "surface": "ほっつく", + "readging": "ほっつく", + "pos": "動詞", + "pn": -0.528575 + }, + { + "surface": "石ころ", + "readging": "いしころ", + "pos": "名詞", + "pn": -0.528581 + }, + { + "surface": "おすべらかし", + "readging": "おすべらかし", + "pos": "名詞", + "pn": -0.528615 + }, + { + "surface": "鵜", + "readging": "う", + "pos": "名詞", + "pn": -0.52862 + }, + { + "surface": "噛む", + "readging": "かむ", + "pos": "動詞", + "pn": -0.528725 + }, + { + "surface": "食", + "readging": "しょく", + "pos": "名詞", + "pn": -0.52873 + }, + { + "surface": "歯科", + "readging": "しか", + "pos": "名詞", + "pn": -0.528737 + }, + { + "surface": "雪袴", + "readging": "ゆきばかま", + "pos": "名詞", + "pn": -0.528739 + }, + { + "surface": "体格", + "readging": "たいかく", + "pos": "名詞", + "pn": -0.52874 + }, + { + "surface": "煤払い", + "readging": "すすはらい", + "pos": "名詞", + "pn": -0.528774 + }, + { + "surface": "おまじり", + "readging": "おまじり", + "pos": "名詞", + "pn": -0.528779 + }, + { + "surface": "終点", + "readging": "しゅうてん", + "pos": "名詞", + "pn": -0.528807 + }, + { + "surface": "きわどい", + "readging": "きわどい", + "pos": "形容詞", + "pn": -0.528814 + }, + { + "surface": "お里", + "readging": "おさと", + "pos": "名詞", + "pn": -0.528821 + }, + { + "surface": "一条", + "readging": "いちじょう", + "pos": "名詞", + "pn": -0.528821 + }, + { + "surface": "天然", + "readging": "てんねん", + "pos": "名詞", + "pn": -0.52884 + }, + { + "surface": "巡査", + "readging": "じゅんさ", + "pos": "名詞", + "pn": -0.528844 + }, + { + "surface": "雪の下", + "readging": "ゆきのした", + "pos": "名詞", + "pn": -0.528848 + }, + { + "surface": "店仕舞", + "readging": "みせじまい", + "pos": "名詞", + "pn": -0.528873 + }, + { + "surface": "側役", + "readging": "そばやく", + "pos": "名詞", + "pn": -0.528894 + }, + { + "surface": "交換手", + "readging": "こうかんしゅ", + "pos": "名詞", + "pn": -0.5289 + }, + { + "surface": "賦課", + "readging": "ふか", + "pos": "名詞", + "pn": -0.528923 + }, + { + "surface": "純美", + "readging": "じゅんび", + "pos": "名詞", + "pn": -0.528923 + }, + { + "surface": "摘記", + "readging": "てっき", + "pos": "名詞", + "pn": -0.52893 + }, + { + "surface": "胸糞", + "readging": "むなくそ", + "pos": "名詞", + "pn": -0.528935 + }, + { + "surface": "手配", + "readging": "てはい", + "pos": "名詞", + "pn": -0.528967 + }, + { + "surface": "継台", + "readging": "つぎだい", + "pos": "名詞", + "pn": -0.529006 + }, + { + "surface": "行進", + "readging": "こうしん", + "pos": "名詞", + "pn": -0.529007 + }, + { + "surface": "抹殺", + "readging": "まっさつ", + "pos": "名詞", + "pn": -0.529011 + }, + { + "surface": "目潰し", + "readging": "めつぶし", + "pos": "名詞", + "pn": -0.529016 + }, + { + "surface": "推当て", + "readging": "おしあて", + "pos": "名詞", + "pn": -0.529029 + }, + { + "surface": "スリップ", + "readging": "スリップ", + "pos": "名詞", + "pn": -0.529047 + }, + { + "surface": "照星", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.529073 + }, + { + "surface": "ボイラー", + "readging": "ボイラー", + "pos": "名詞", + "pn": -0.529074 + }, + { + "surface": "事相", + "readging": "じそう", + "pos": "名詞", + "pn": -0.529085 + }, + { + "surface": "水薬", + "readging": "すいやく", + "pos": "名詞", + "pn": -0.529141 + }, + { + "surface": "炒り粉", + "readging": "いりこ", + "pos": "名詞", + "pn": -0.529159 + }, + { + "surface": "過当", + "readging": "かとう", + "pos": "名詞", + "pn": -0.529179 + }, + { + "surface": "摘芽", + "readging": "てきが", + "pos": "名詞", + "pn": -0.529179 + }, + { + "surface": "鼻声", + "readging": "はなごえ", + "pos": "名詞", + "pn": -0.529222 + }, + { + "surface": "油膜", + "readging": "ゆまく", + "pos": "名詞", + "pn": -0.529225 + }, + { + "surface": "随", + "readging": "ずい", + "pos": "名詞", + "pn": -0.529256 + }, + { + "surface": "前触れ", + "readging": "まえぶれ", + "pos": "名詞", + "pn": -0.529258 + }, + { + "surface": "高曇", + "readging": "たかぐもり", + "pos": "名詞", + "pn": -0.529289 + }, + { + "surface": "釜茹で", + "readging": "かまゆで", + "pos": "名詞", + "pn": -0.529293 + }, + { + "surface": "出し抜く", + "readging": "だしぬく", + "pos": "動詞", + "pn": -0.529311 + }, + { + "surface": "胸骨", + "readging": "きょうこつ", + "pos": "名詞", + "pn": -0.529315 + }, + { + "surface": "年代", + "readging": "ねんだい", + "pos": "名詞", + "pn": -0.529328 + }, + { + "surface": "仮植", + "readging": "かしょく", + "pos": "名詞", + "pn": -0.529332 + }, + { + "surface": "刺し", + "readging": "さし", + "pos": "名詞", + "pn": -0.529349 + }, + { + "surface": "倉", + "readging": "そう", + "pos": "名詞", + "pn": -0.529372 + }, + { + "surface": "山荒し", + "readging": "やまあらし", + "pos": "名詞", + "pn": -0.529399 + }, + { + "surface": "望む", + "readging": "のぞむ", + "pos": "動詞", + "pn": -0.529414 + }, + { + "surface": "矢立", + "readging": "やたて", + "pos": "名詞", + "pn": -0.529445 + }, + { + "surface": "繰回す", + "readging": "くりまわす", + "pos": "動詞", + "pn": -0.52945 + }, + { + "surface": "ペニシリン", + "readging": "ペニシリン", + "pos": "名詞", + "pn": -0.529454 + }, + { + "surface": "計り減り", + "readging": "はかりべり", + "pos": "名詞", + "pn": -0.52949 + }, + { + "surface": "上半身", + "readging": "じょうはんしん", + "pos": "名詞", + "pn": -0.529494 + }, + { + "surface": "うっすら", + "readging": "うっすら", + "pos": "副詞", + "pn": -0.52953 + }, + { + "surface": "白墨", + "readging": "はくぼく", + "pos": "名詞", + "pn": -0.529536 + }, + { + "surface": "荒縄", + "readging": "あらなわ", + "pos": "名詞", + "pn": -0.529556 + }, + { + "surface": "懲罰", + "readging": "ちょうばつ", + "pos": "名詞", + "pn": -0.529571 + }, + { + "surface": "白茶", + "readging": "しらちゃ", + "pos": "名詞", + "pn": -0.529574 + }, + { + "surface": "行政", + "readging": "ぎょうせい", + "pos": "名詞", + "pn": -0.529592 + }, + { + "surface": "マスク", + "readging": "マスク", + "pos": "名詞", + "pn": -0.529611 + }, + { + "surface": "豚", + "readging": "とん", + "pos": "名詞", + "pn": -0.529634 + }, + { + "surface": "草画", + "readging": "そうが", + "pos": "名詞", + "pn": -0.529638 + }, + { + "surface": "世路", + "readging": "せろ", + "pos": "名詞", + "pn": -0.529663 + }, + { + "surface": "砂かぶり", + "readging": "すなかぶり", + "pos": "名詞", + "pn": -0.529674 + }, + { + "surface": "傷心", + "readging": "しょうしん", + "pos": "名詞", + "pn": -0.529694 + }, + { + "surface": "冗漫", + "readging": "じょうまん", + "pos": "名詞", + "pn": -0.529696 + }, + { + "surface": "食卓", + "readging": "しょくたく", + "pos": "名詞", + "pn": -0.529704 + }, + { + "surface": "皮綴", + "readging": "かわとじ", + "pos": "名詞", + "pn": -0.52976 + }, + { + "surface": "造", + "readging": "ぞう", + "pos": "名詞", + "pn": -0.529776 + }, + { + "surface": "睾丸", + "readging": "こうがん", + "pos": "名詞", + "pn": -0.529801 + }, + { + "surface": "元禄袖", + "readging": "げんろくそで", + "pos": "名詞", + "pn": -0.529802 + }, + { + "surface": "ちらほら", + "readging": "ちらほら", + "pos": "副詞", + "pn": -0.529805 + }, + { + "surface": "渇する", + "readging": "かっする", + "pos": "動詞", + "pn": -0.529806 + }, + { + "surface": "丼", + "readging": "どん", + "pos": "名詞", + "pn": -0.529832 + }, + { + "surface": "薄羽蜉蝣", + "readging": "うすばかげろう", + "pos": "名詞", + "pn": -0.529839 + }, + { + "surface": "立て込む", + "readging": "たてこむ", + "pos": "動詞", + "pn": -0.529845 + }, + { + "surface": "機織虫", + "readging": "はたおりむし", + "pos": "名詞", + "pn": -0.529846 + }, + { + "surface": "次回", + "readging": "じかい", + "pos": "名詞", + "pn": -0.529872 + }, + { + "surface": "雀羅", + "readging": "じゃくら", + "pos": "名詞", + "pn": -0.529901 + }, + { + "surface": "人種", + "readging": "じんしゅ", + "pos": "名詞", + "pn": -0.529953 + }, + { + "surface": "逆撫で", + "readging": "さかなで", + "pos": "名詞", + "pn": -0.529964 + }, + { + "surface": "賃銭", + "readging": "ちんせん", + "pos": "名詞", + "pn": -0.529985 + }, + { + "surface": "社頭", + "readging": "しゃとう", + "pos": "名詞", + "pn": -0.530022 + }, + { + "surface": "座職", + "readging": "ざしょく", + "pos": "名詞", + "pn": -0.530034 + }, + { + "surface": "勤まる", + "readging": "つとまる", + "pos": "動詞", + "pn": -0.530041 + }, + { + "surface": "毛細血管", + "readging": "もうさいけっかん", + "pos": "名詞", + "pn": -0.530069 + }, + { + "surface": "唐丸籠", + "readging": "とうまるかご", + "pos": "名詞", + "pn": -0.530094 + }, + { + "surface": "棉", + "readging": "めん", + "pos": "名詞", + "pn": -0.530102 + }, + { + "surface": "トレース", + "readging": "トレース", + "pos": "名詞", + "pn": -0.530106 + }, + { + "surface": "萎える", + "readging": "なえる", + "pos": "動詞", + "pn": -0.530114 + }, + { + "surface": "さすらい", + "readging": "さすらい", + "pos": "名詞", + "pn": -0.530114 + }, + { + "surface": "仮縫い", + "readging": "かりぬい", + "pos": "名詞", + "pn": -0.53013 + }, + { + "surface": "残余", + "readging": "ざんよ", + "pos": "名詞", + "pn": -0.530135 + }, + { + "surface": "絶句", + "readging": "ぜっく", + "pos": "名詞", + "pn": -0.530171 + }, + { + "surface": "形体", + "readging": "けいたい", + "pos": "名詞", + "pn": -0.53018 + }, + { + "surface": "薊", + "readging": "あざみ", + "pos": "名詞", + "pn": -0.53018 + }, + { + "surface": "尾", + "readging": "お", + "pos": "名詞", + "pn": -0.530191 + }, + { + "surface": "突棒", + "readging": "つくぼう", + "pos": "名詞", + "pn": -0.530209 + }, + { + "surface": "アルカロイド", + "readging": "アルカロイド", + "pos": "名詞", + "pn": -0.530213 + }, + { + "surface": "コンドーム", + "readging": "コンドーム", + "pos": "名詞", + "pn": -0.530214 + }, + { + "surface": "日本猿", + "readging": "にほんざる", + "pos": "名詞", + "pn": -0.530228 + }, + { + "surface": "豚肉", + "readging": "とんにく", + "pos": "名詞", + "pn": -0.530236 + }, + { + "surface": "遥拝", + "readging": "ようはい", + "pos": "名詞", + "pn": -0.530237 + }, + { + "surface": "型付", + "readging": "かたつき", + "pos": "名詞", + "pn": -0.530242 + }, + { + "surface": "街角", + "readging": "まちかど", + "pos": "名詞", + "pn": -0.530257 + }, + { + "surface": "希望", + "readging": "きぼう", + "pos": "名詞", + "pn": -0.530267 + }, + { + "surface": "薬包紙", + "readging": "やくほうし", + "pos": "名詞", + "pn": -0.530273 + }, + { + "surface": "跨ぐ", + "readging": "またぐ", + "pos": "動詞", + "pn": -0.530275 + }, + { + "surface": "長唄", + "readging": "ながうた", + "pos": "名詞", + "pn": -0.53028 + }, + { + "surface": "躁急", + "readging": "そうきゅう", + "pos": "名詞", + "pn": -0.53028 + }, + { + "surface": "レモン", + "readging": "レモンスカッシュ", + "pos": "名詞", + "pn": -0.5303 + }, + { + "surface": "召す", + "readging": "めす", + "pos": "動詞", + "pn": -0.530316 + }, + { + "surface": "鬢", + "readging": "びん", + "pos": "名詞", + "pn": -0.530337 + }, + { + "surface": "蓮華草", + "readging": "れんげそう", + "pos": "名詞", + "pn": -0.530343 + }, + { + "surface": "崩壊", + "readging": "ほうかい", + "pos": "名詞", + "pn": -0.530343 + }, + { + "surface": "領", + "readging": "りょう", + "pos": "名詞", + "pn": -0.530353 + }, + { + "surface": "楢", + "readging": "なら", + "pos": "名詞", + "pn": -0.530355 + }, + { + "surface": "藁葺", + "readging": "わらぶき", + "pos": "名詞", + "pn": -0.530375 + }, + { + "surface": "靴下", + "readging": "くつした", + "pos": "名詞", + "pn": -0.530424 + }, + { + "surface": "侮蔑", + "readging": "ぶべつ", + "pos": "名詞", + "pn": -0.530433 + }, + { + "surface": "刻み煙草", + "readging": "きざみタバコ", + "pos": "名詞", + "pn": -0.530462 + }, + { + "surface": "優劣", + "readging": "ゆうれつ", + "pos": "名詞", + "pn": -0.530556 + }, + { + "surface": "煩わす", + "readging": "わずらわす", + "pos": "動詞", + "pn": -0.530569 + }, + { + "surface": "指示", + "readging": "しじ", + "pos": "名詞", + "pn": -0.53058 + }, + { + "surface": "歴史的仮名遣", + "readging": "れきしてきかなづかい", + "pos": "名詞", + "pn": -0.530587 + }, + { + "surface": "ボストン バッグ", + "readging": "ボストン バッグ", + "pos": "名詞", + "pn": -0.530588 + }, + { + "surface": "頭陀袋", + "readging": "ずだぶくろ", + "pos": "名詞", + "pn": -0.530609 + }, + { + "surface": "航海", + "readging": "こうかい", + "pos": "名詞", + "pn": -0.530624 + }, + { + "surface": "喫水線", + "readging": "きっすいせん", + "pos": "名詞", + "pn": -0.530642 + }, + { + "surface": "致し方", + "readging": "いたしかた", + "pos": "名詞", + "pn": -0.530661 + }, + { + "surface": "取仕切る", + "readging": "とりしきる", + "pos": "動詞", + "pn": -0.530673 + }, + { + "surface": "しらちゃ", + "readging": "しらちゃける", + "pos": "動詞", + "pn": -0.530682 + }, + { + "surface": "家人", + "readging": "けにん", + "pos": "名詞", + "pn": -0.530688 + }, + { + "surface": "開", + "readging": "かい", + "pos": "名詞", + "pn": -0.530713 + }, + { + "surface": "零", + "readging": "れい", + "pos": "名詞", + "pn": -0.530717 + }, + { + "surface": "げっぷ", + "readging": "げっぷ", + "pos": "名詞", + "pn": -0.530729 + }, + { + "surface": "アウトロー", + "readging": "アウトロー", + "pos": "名詞", + "pn": -0.530731 + }, + { + "surface": "カーディガン", + "readging": "カーディガン", + "pos": "名詞", + "pn": -0.530738 + }, + { + "surface": "際", + "readging": "きわ", + "pos": "名詞", + "pn": -0.530755 + }, + { + "surface": "諸諸", + "readging": "もろもろ", + "pos": "名詞", + "pn": -0.530755 + }, + { + "surface": "凝視", + "readging": "ぎょうし", + "pos": "名詞", + "pn": -0.530767 + }, + { + "surface": "栓塞", + "readging": "せんそく", + "pos": "名詞", + "pn": -0.530812 + }, + { + "surface": "瓦斯", + "readging": "ガス", + "pos": "名詞", + "pn": -0.530821 + }, + { + "surface": "石碑", + "readging": "せきひ", + "pos": "名詞", + "pn": -0.530823 + }, + { + "surface": "胴親", + "readging": "どうおや", + "pos": "名詞", + "pn": -0.530838 + }, + { + "surface": "やしゃご", + "readging": "やしゃご", + "pos": "名詞", + "pn": -0.530882 + }, + { + "surface": "化生", + "readging": "かせい", + "pos": "名詞", + "pn": -0.530908 + }, + { + "surface": "癜", + "readging": "なまず", + "pos": "名詞", + "pn": -0.530928 + }, + { + "surface": "私宅", + "readging": "したく", + "pos": "名詞", + "pn": -0.53096 + }, + { + "surface": "モルタル", + "readging": "モルタル", + "pos": "名詞", + "pn": -0.530964 + }, + { + "surface": "虫押え", + "readging": "むしおさえ", + "pos": "名詞", + "pn": -0.530964 + }, + { + "surface": "合力", + "readging": "ごうりき", + "pos": "名詞", + "pn": -0.530969 + }, + { + "surface": "思わず", + "readging": "おもわず", + "pos": "副詞", + "pn": -0.531011 + }, + { + "surface": "流感", + "readging": "りゅうかん", + "pos": "名詞", + "pn": -0.531023 + }, + { + "surface": "財布", + "readging": "さいふ", + "pos": "名詞", + "pn": -0.531039 + }, + { + "surface": "両成敗", + "readging": "りょうせいばい", + "pos": "名詞", + "pn": -0.531056 + }, + { + "surface": "皇族", + "readging": "こうぞく", + "pos": "名詞", + "pn": -0.531065 + }, + { + "surface": "入れ目", + "readging": "いれめ", + "pos": "名詞", + "pn": -0.531098 + }, + { + "surface": "セ氏", + "readging": "セし", + "pos": "名詞", + "pn": -0.531113 + }, + { + "surface": "筋炎", + "readging": "きんえん", + "pos": "名詞", + "pn": -0.531115 + }, + { + "surface": "鸚鵡", + "readging": "おうむ", + "pos": "名詞", + "pn": -0.531133 + }, + { + "surface": "陣痛", + "readging": "じんつう", + "pos": "名詞", + "pn": -0.531136 + }, + { + "surface": "ばる", + "readging": "ばる", + "pos": "動詞", + "pn": -0.531143 + }, + { + "surface": "下肥", + "readging": "しもごえ", + "pos": "名詞", + "pn": -0.531162 + }, + { + "surface": "独りでに", + "readging": "ひとりでに", + "pos": "副詞", + "pn": -0.531163 + }, + { + "surface": "風船", + "readging": "ふうせん", + "pos": "名詞", + "pn": -0.531183 + }, + { + "surface": "頬髭", + "readging": "ほおひげ", + "pos": "名詞", + "pn": -0.531202 + }, + { + "surface": "故障", + "readging": "こしょう", + "pos": "名詞", + "pn": -0.531256 + }, + { + "surface": "半弓", + "readging": "はんきゅう", + "pos": "名詞", + "pn": -0.531274 + }, + { + "surface": "節句働き", + "readging": "せっくばたらき", + "pos": "名詞", + "pn": -0.531288 + }, + { + "surface": "綿毛", + "readging": "わたげ", + "pos": "名詞", + "pn": -0.531298 + }, + { + "surface": "風通し", + "readging": "かぜとおし", + "pos": "名詞", + "pn": -0.531305 + }, + { + "surface": "干潟", + "readging": "ひがた", + "pos": "名詞", + "pn": -0.531318 + }, + { + "surface": "毒蛇", + "readging": "どくじゃ", + "pos": "名詞", + "pn": -0.531331 + }, + { + "surface": "下味", + "readging": "したあじ", + "pos": "名詞", + "pn": -0.531345 + }, + { + "surface": "熟語", + "readging": "じゅくご", + "pos": "名詞", + "pn": -0.531421 + }, + { + "surface": "一人", + "readging": "ひとりしずか", + "pos": "名詞", + "pn": -0.531423 + }, + { + "surface": "木通", + "readging": "あけび", + "pos": "名詞", + "pn": -0.53144 + }, + { + "surface": "注連縄", + "readging": "しめなわ", + "pos": "名詞", + "pn": -0.531447 + }, + { + "surface": "紙片", + "readging": "しへん", + "pos": "名詞", + "pn": -0.531457 + }, + { + "surface": "糸枠", + "readging": "いとわく", + "pos": "名詞", + "pn": -0.531487 + }, + { + "surface": "実質", + "readging": "じっしつ", + "pos": "名詞", + "pn": -0.531506 + }, + { + "surface": "たも網", + "readging": "たもあみ", + "pos": "名詞", + "pn": -0.53158 + }, + { + "surface": "取的", + "readging": "とりてき", + "pos": "名詞", + "pn": -0.531602 + }, + { + "surface": "上がり段", + "readging": "あがりだん", + "pos": "名詞", + "pn": -0.531608 + }, + { + "surface": "押し詰る", + "readging": "おしつまる", + "pos": "動詞", + "pn": -0.531613 + }, + { + "surface": "物申す", + "readging": "ものもうす", + "pos": "動詞", + "pn": -0.531616 + }, + { + "surface": "贅沢", + "readging": "ぜいたく", + "pos": "名詞", + "pn": -0.531626 + }, + { + "surface": "独り決め", + "readging": "ひとりぎめ", + "pos": "名詞", + "pn": -0.531654 + }, + { + "surface": "削り節", + "readging": "けずりぶし", + "pos": "名詞", + "pn": -0.53167 + }, + { + "surface": "釣瓶", + "readging": "つるべ", + "pos": "名詞", + "pn": -0.531695 + }, + { + "surface": "終止符", + "readging": "しゅうしふ", + "pos": "名詞", + "pn": -0.531696 + }, + { + "surface": "梅雨", + "readging": "ばいう", + "pos": "名詞", + "pn": -0.531704 + }, + { + "surface": "他門", + "readging": "たもん", + "pos": "名詞", + "pn": -0.531756 + }, + { + "surface": "お酌", + "readging": "おしゃく", + "pos": "名詞", + "pn": -0.531762 + }, + { + "surface": "工夫", + "readging": "こうふ", + "pos": "名詞", + "pn": -0.531764 + }, + { + "surface": "赤み", + "readging": "あかみ", + "pos": "名詞", + "pn": -0.531788 + }, + { + "surface": "萼", + "readging": "がく", + "pos": "名詞", + "pn": -0.531832 + }, + { + "surface": "膝蓋骨", + "readging": "しつがいこつ", + "pos": "名詞", + "pn": -0.531845 + }, + { + "surface": "シガレット", + "readging": "シガレット", + "pos": "名詞", + "pn": -0.531907 + }, + { + "surface": "猿戸", + "readging": "さるど", + "pos": "名詞", + "pn": -0.531923 + }, + { + "surface": "おさんどん", + "readging": "おさんどん", + "pos": "名詞", + "pn": -0.531956 + }, + { + "surface": "狩る", + "readging": "かる", + "pos": "動詞", + "pn": -0.531959 + }, + { + "surface": "根元", + "readging": "こんげん", + "pos": "名詞", + "pn": -0.531965 + }, + { + "surface": "黄蜀葵", + "readging": "おうしょっき", + "pos": "名詞", + "pn": -0.531967 + }, + { + "surface": "頽齢", + "readging": "たいれい", + "pos": "名詞", + "pn": -0.531982 + }, + { + "surface": "堤防", + "readging": "ていぼう", + "pos": "名詞", + "pn": -0.531991 + }, + { + "surface": "胡坐", + "readging": "こざ", + "pos": "名詞", + "pn": -0.532003 + }, + { + "surface": "側妻", + "readging": "そばめ", + "pos": "名詞", + "pn": -0.532008 + }, + { + "surface": "御用聞", + "readging": "ごようきき", + "pos": "名詞", + "pn": -0.532027 + }, + { + "surface": "捻り回す", + "readging": "ひねりまわす", + "pos": "動詞", + "pn": -0.532032 + }, + { + "surface": "師", + "readging": "し", + "pos": "名詞", + "pn": -0.532034 + }, + { + "surface": "ぼうぼう", + "readging": "ぼうぼう", + "pos": "副詞", + "pn": -0.532059 + }, + { + "surface": "蠕動", + "readging": "ぜんどう", + "pos": "名詞", + "pn": -0.532059 + }, + { + "surface": "まんじりと", + "readging": "まんじりと", + "pos": "副詞", + "pn": -0.532064 + }, + { + "surface": "梯子段", + "readging": "はしごだん", + "pos": "名詞", + "pn": -0.532079 + }, + { + "surface": "雛鳥", + "readging": "ひなどり", + "pos": "名詞", + "pn": -0.532104 + }, + { + "surface": "滑る", + "readging": "ぬめる", + "pos": "動詞", + "pn": -0.532131 + }, + { + "surface": "挙止", + "readging": "きょし", + "pos": "名詞", + "pn": -0.532149 + }, + { + "surface": "五十日", + "readging": "ごとおび", + "pos": "名詞", + "pn": -0.532162 + }, + { + "surface": "骨灰", + "readging": "こっかい", + "pos": "名詞", + "pn": -0.532164 + }, + { + "surface": "乾漆", + "readging": "かんしつ", + "pos": "名詞", + "pn": -0.532226 + }, + { + "surface": "水脈", + "readging": "すいみゃく", + "pos": "名詞", + "pn": -0.532238 + }, + { + "surface": "今後", + "readging": "こんご", + "pos": "名詞", + "pn": -0.532239 + }, + { + "surface": "官", + "readging": "かん", + "pos": "名詞", + "pn": -0.532265 + }, + { + "surface": "就眠", + "readging": "しゅうみん", + "pos": "名詞", + "pn": -0.532266 + }, + { + "surface": "逆浪", + "readging": "ぎゃくろう", + "pos": "名詞", + "pn": -0.532307 + }, + { + "surface": "グリセリン", + "readging": "グリセリン", + "pos": "名詞", + "pn": -0.532312 + }, + { + "surface": "水痘", + "readging": "すいとう", + "pos": "名詞", + "pn": -0.532322 + }, + { + "surface": "掬する", + "readging": "きくする", + "pos": "動詞", + "pn": -0.532332 + }, + { + "surface": "下命", + "readging": "かめい", + "pos": "名詞", + "pn": -0.532346 + }, + { + "surface": "頬白", + "readging": "ほおじろ", + "pos": "名詞", + "pn": -0.532353 + }, + { + "surface": "巻狩", + "readging": "まきがり", + "pos": "名詞", + "pn": -0.532361 + }, + { + "surface": "放つ", + "readging": "はなつ", + "pos": "動詞", + "pn": -0.532364 + }, + { + "surface": "林泉", + "readging": "りんせん", + "pos": "名詞", + "pn": -0.532366 + }, + { + "surface": "語句", + "readging": "ごく", + "pos": "名詞", + "pn": -0.532383 + }, + { + "surface": "残火", + "readging": "ざんか", + "pos": "名詞", + "pn": -0.532405 + }, + { + "surface": "訪客", + "readging": "ほうきゃく", + "pos": "名詞", + "pn": -0.532443 + }, + { + "surface": "川越し", + "readging": "かわごし", + "pos": "名詞", + "pn": -0.532449 + }, + { + "surface": "打楽器", + "readging": "だがっき", + "pos": "名詞", + "pn": -0.532459 + }, + { + "surface": "口抜き", + "readging": "くちぬき", + "pos": "名詞", + "pn": -0.532496 + }, + { + "surface": "隣国", + "readging": "りんごく", + "pos": "名詞", + "pn": -0.532497 + }, + { + "surface": "人橋", + "readging": "ひとばし", + "pos": "名詞", + "pn": -0.532516 + }, + { + "surface": "括約筋", + "readging": "かつやくきん", + "pos": "名詞", + "pn": -0.532518 + }, + { + "surface": "杖", + "readging": "つえ", + "pos": "名詞", + "pn": -0.532525 + }, + { + "surface": "付", + "readging": "つけたり", + "pos": "名詞", + "pn": -0.532572 + }, + { + "surface": "一計", + "readging": "いっけい", + "pos": "名詞", + "pn": -0.532575 + }, + { + "surface": "仮面", + "readging": "かめん", + "pos": "名詞", + "pn": -0.532602 + }, + { + "surface": "うっちゃる", + "readging": "うっちゃる", + "pos": "動詞", + "pn": -0.532603 + }, + { + "surface": "鋳潰す", + "readging": "いつぶす", + "pos": "動詞", + "pn": -0.532613 + }, + { + "surface": "養う", + "readging": "やしなう", + "pos": "動詞", + "pn": -0.532616 + }, + { + "surface": "撞球", + "readging": "どうきゅう", + "pos": "名詞", + "pn": -0.532632 + }, + { + "surface": "根っこ", + "readging": "ねっこ", + "pos": "名詞", + "pn": -0.532647 + }, + { + "surface": "浦島太郎", + "readging": "うらしまたろう", + "pos": "名詞", + "pn": -0.532662 + }, + { + "surface": "砂糖黍", + "readging": "さとうきび", + "pos": "名詞", + "pn": -0.532674 + }, + { + "surface": "終日", + "readging": "しゅうじつ", + "pos": "名詞", + "pn": -0.532696 + }, + { + "surface": "ねぎま", + "readging": "ねぎま", + "pos": "名詞", + "pn": -0.532782 + }, + { + "surface": "版木", + "readging": "はんぎ", + "pos": "名詞", + "pn": -0.532794 + }, + { + "surface": "強風", + "readging": "きょうふう", + "pos": "名詞", + "pn": -0.532805 + }, + { + "surface": "待", + "readging": "たい", + "pos": "名詞", + "pn": -0.532807 + }, + { + "surface": "片っ端", + "readging": "かたっぱし", + "pos": "名詞", + "pn": -0.532816 + }, + { + "surface": "黒枠", + "readging": "くろわく", + "pos": "名詞", + "pn": -0.532879 + }, + { + "surface": "雛菊", + "readging": "ひなぎく", + "pos": "名詞", + "pn": -0.532909 + }, + { + "surface": "相貌", + "readging": "そうぼう", + "pos": "名詞", + "pn": -0.532924 + }, + { + "surface": "断腸", + "readging": "だんちょう", + "pos": "名詞", + "pn": -0.532982 + }, + { + "surface": "羊毛", + "readging": "ようもう", + "pos": "名詞", + "pn": -0.533012 + }, + { + "surface": "旗本奴", + "readging": "はたもとやっこ", + "pos": "名詞", + "pn": -0.53304 + }, + { + "surface": "齢", + "readging": "よわい", + "pos": "名詞", + "pn": -0.533042 + }, + { + "surface": "派遣", + "readging": "はけん", + "pos": "名詞", + "pn": -0.533097 + }, + { + "surface": "アレゴリー", + "readging": "アレゴリー", + "pos": "名詞", + "pn": -0.533099 + }, + { + "surface": "趣", + "readging": "おもむき", + "pos": "名詞", + "pn": -0.533108 + }, + { + "surface": "容顔", + "readging": "ようがん", + "pos": "名詞", + "pn": -0.533125 + }, + { + "surface": "混ずる", + "readging": "こんずる", + "pos": "動詞", + "pn": -0.533149 + }, + { + "surface": "土鍋", + "readging": "どなべ", + "pos": "名詞", + "pn": -0.533156 + }, + { + "surface": "古武士", + "readging": "こぶし", + "pos": "名詞", + "pn": -0.533168 + }, + { + "surface": "姿態", + "readging": "したい", + "pos": "名詞", + "pn": -0.533174 + }, + { + "surface": "納戸", + "readging": "なんど", + "pos": "名詞", + "pn": -0.533179 + }, + { + "surface": "お平", + "readging": "おひら", + "pos": "名詞", + "pn": -0.533219 + }, + { + "surface": "トリック", + "readging": "トリック", + "pos": "名詞", + "pn": -0.533221 + }, + { + "surface": "心頭", + "readging": "しんとう", + "pos": "名詞", + "pn": -0.533224 + }, + { + "surface": "砲火", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.533227 + }, + { + "surface": "パロディー", + "readging": "パロディー", + "pos": "名詞", + "pn": -0.533246 + }, + { + "surface": "濃度", + "readging": "のうど", + "pos": "名詞", + "pn": -0.533251 + }, + { + "surface": "結城紬", + "readging": "ゆうき", + "pos": "名詞", + "pn": -0.533253 + }, + { + "surface": "暫時", + "readging": "ざんじ", + "pos": "名詞", + "pn": -0.533258 + }, + { + "surface": "写絵", + "readging": "うつしえ", + "pos": "名詞", + "pn": -0.533277 + }, + { + "surface": "男結び", + "readging": "おとこむすび", + "pos": "名詞", + "pn": -0.53328 + }, + { + "surface": "ルーレット", + "readging": "ルーレット", + "pos": "名詞", + "pn": -0.533299 + }, + { + "surface": "屋台囃子", + "readging": "やたいばやし", + "pos": "名詞", + "pn": -0.53331 + }, + { + "surface": "内含", + "readging": "ないがん", + "pos": "名詞", + "pn": -0.533335 + }, + { + "surface": "寸刻", + "readging": "すんこく", + "pos": "名詞", + "pn": -0.533339 + }, + { + "surface": "無駄話", + "readging": "むだばなし", + "pos": "名詞", + "pn": -0.533404 + }, + { + "surface": "創傷", + "readging": "そうしょう", + "pos": "名詞", + "pn": -0.533438 + }, + { + "surface": "怪火", + "readging": "かいか", + "pos": "名詞", + "pn": -0.533473 + }, + { + "surface": "カゼイン", + "readging": "カゼイン", + "pos": "名詞", + "pn": -0.533494 + }, + { + "surface": "揺らめく", + "readging": "ゆらめく", + "pos": "動詞", + "pn": -0.53353 + }, + { + "surface": "腹帯", + "readging": "はらおび", + "pos": "名詞", + "pn": -0.533564 + }, + { + "surface": "錐揉み", + "readging": "きりもみ", + "pos": "名詞", + "pn": -0.533579 + }, + { + "surface": "別記", + "readging": "べっき", + "pos": "名詞", + "pn": -0.5336 + }, + { + "surface": "湯船", + "readging": "ゆぶね", + "pos": "名詞", + "pn": -0.533615 + }, + { + "surface": "貝殻虫", + "readging": "かいがら", + "pos": "名詞", + "pn": -0.533621 + }, + { + "surface": "真竹", + "readging": "まだけ", + "pos": "名詞", + "pn": -0.533672 + }, + { + "surface": "結", + "readging": "ゆい", + "pos": "名詞", + "pn": -0.533674 + }, + { + "surface": "反りくり返る", + "readging": "そりくりかえる", + "pos": "動詞", + "pn": -0.533692 + }, + { + "surface": "寺入り", + "readging": "てらいり", + "pos": "名詞", + "pn": -0.533709 + }, + { + "surface": "戸袋", + "readging": "とぶくろ", + "pos": "名詞", + "pn": -0.533727 + }, + { + "surface": "コンタクト", + "readging": "コンタクトレンズ", + "pos": "名詞", + "pn": -0.533746 + }, + { + "surface": "半鐘", + "readging": "はんしょう", + "pos": "名詞", + "pn": -0.533747 + }, + { + "surface": "糸", + "readging": "いと", + "pos": "名詞", + "pn": -0.53386 + }, + { + "surface": "尿", + "readging": "ばり", + "pos": "名詞", + "pn": -0.533862 + }, + { + "surface": "テーブル", + "readging": "テーブルクロース", + "pos": "名詞", + "pn": -0.533878 + }, + { + "surface": "戒飭", + "readging": "かいちょく", + "pos": "名詞", + "pn": -0.533888 + }, + { + "surface": "顔料", + "readging": "がんりょう", + "pos": "名詞", + "pn": -0.533897 + }, + { + "surface": "セルロイド", + "readging": "セルロイド", + "pos": "名詞", + "pn": -0.5339 + }, + { + "surface": "火気", + "readging": "かき", + "pos": "名詞", + "pn": -0.533926 + }, + { + "surface": "叱咤", + "readging": "しった", + "pos": "名詞", + "pn": -0.533949 + }, + { + "surface": "キャッチ", + "readging": "キャッチボール", + "pos": "名詞", + "pn": -0.533982 + }, + { + "surface": "くるめる", + "readging": "くるめる", + "pos": "動詞", + "pn": -0.534008 + }, + { + "surface": "茶臼", + "readging": "ちゃうす", + "pos": "名詞", + "pn": -0.534024 + }, + { + "surface": "部落", + "readging": "ぶらく", + "pos": "名詞", + "pn": -0.534033 + }, + { + "surface": "浅見", + "readging": "せんけん", + "pos": "名詞", + "pn": -0.534069 + }, + { + "surface": "金巾", + "readging": "カナキン", + "pos": "名詞", + "pn": -0.534082 + }, + { + "surface": "糞虫", + "readging": "くそむし", + "pos": "名詞", + "pn": -0.534083 + }, + { + "surface": "垂示", + "readging": "すいし", + "pos": "名詞", + "pn": -0.534083 + }, + { + "surface": "淋巴管", + "readging": "リンパかん", + "pos": "名詞", + "pn": -0.534117 + }, + { + "surface": "庖厨", + "readging": "ほうちゅう", + "pos": "名詞", + "pn": -0.534129 + }, + { + "surface": "我意", + "readging": "がい", + "pos": "名詞", + "pn": -0.53413 + }, + { + "surface": "薬湯", + "readging": "くすりゆ", + "pos": "名詞", + "pn": -0.534136 + }, + { + "surface": "黐竿", + "readging": "もちざお", + "pos": "名詞", + "pn": -0.53414 + }, + { + "surface": "妊婦", + "readging": "にんぷ", + "pos": "名詞", + "pn": -0.534173 + }, + { + "surface": "工船", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.534204 + }, + { + "surface": "流水", + "readging": "りゅうすい", + "pos": "名詞", + "pn": -0.534226 + }, + { + "surface": "目分量", + "readging": "めぶんりょう", + "pos": "名詞", + "pn": -0.534249 + }, + { + "surface": "鎖鎌", + "readging": "くさりがま", + "pos": "名詞", + "pn": -0.534258 + }, + { + "surface": "取紛れる", + "readging": "とりまぎれる", + "pos": "動詞", + "pn": -0.534273 + }, + { + "surface": "真丸", + "readging": "まんまる", + "pos": "名詞", + "pn": -0.534278 + }, + { + "surface": "老い木", + "readging": "おいき", + "pos": "名詞", + "pn": -0.534294 + }, + { + "surface": "冗文", + "readging": "じょうぶん", + "pos": "名詞", + "pn": -0.534303 + }, + { + "surface": "本船", + "readging": "もとぶね", + "pos": "名詞", + "pn": -0.534333 + }, + { + "surface": "鉄の肺", + "readging": "てつのはい", + "pos": "名詞", + "pn": -0.534375 + }, + { + "surface": "七色", + "readging": "しちしょく", + "pos": "名詞", + "pn": -0.534387 + }, + { + "surface": "留置", + "readging": "りゅうち", + "pos": "名詞", + "pn": -0.53441 + }, + { + "surface": "堆い", + "readging": "うずたかい", + "pos": "形容詞", + "pn": -0.534433 + }, + { + "surface": "金平", + "readging": "きんぴら", + "pos": "名詞", + "pn": -0.534474 + }, + { + "surface": "ヘビー", + "readging": "ヘビー", + "pos": "名詞", + "pn": -0.534481 + }, + { + "surface": "溶鉱炉", + "readging": "ようこうろ", + "pos": "名詞", + "pn": -0.534485 + }, + { + "surface": "意馬心猿", + "readging": "いばしんえん", + "pos": "名詞", + "pn": -0.534489 + }, + { + "surface": "醂す", + "readging": "さわす", + "pos": "動詞", + "pn": -0.534494 + }, + { + "surface": "写", + "readging": "うつし", + "pos": "名詞", + "pn": -0.534505 + }, + { + "surface": "プレス", + "readging": "プレスコード", + "pos": "名詞", + "pn": -0.534506 + }, + { + "surface": "七変化", + "readging": "しちへんげ", + "pos": "名詞", + "pn": -0.534532 + }, + { + "surface": "苞", + "readging": "つと", + "pos": "名詞", + "pn": -0.534537 + }, + { + "surface": "靴擦れ", + "readging": "くつずれ", + "pos": "名詞", + "pn": -0.534554 + }, + { + "surface": "安楽椅子", + "readging": "あんらくいす", + "pos": "名詞", + "pn": -0.534561 + }, + { + "surface": "迎え撃つ", + "readging": "むかえうつ", + "pos": "動詞", + "pn": -0.534563 + }, + { + "surface": "肩つき", + "readging": "かたつき", + "pos": "名詞", + "pn": -0.534587 + }, + { + "surface": "冷水摩擦", + "readging": "れいすいまさつ", + "pos": "名詞", + "pn": -0.534598 + }, + { + "surface": "頭", + "readging": "ず", + "pos": "名詞", + "pn": -0.534602 + }, + { + "surface": "でんぐり返る", + "readging": "でんぐりがえる", + "pos": "動詞", + "pn": -0.534609 + }, + { + "surface": "背景", + "readging": "はいけい", + "pos": "名詞", + "pn": -0.534631 + }, + { + "surface": "僧徒", + "readging": "そうと", + "pos": "名詞", + "pn": -0.534633 + }, + { + "surface": "水兵服", + "readging": "すいへいふく", + "pos": "名詞", + "pn": -0.534646 + }, + { + "surface": "行水", + "readging": "ぎょうずい", + "pos": "名詞", + "pn": -0.534656 + }, + { + "surface": "断片", + "readging": "だんぺん", + "pos": "名詞", + "pn": -0.534735 + }, + { + "surface": "食肉", + "readging": "しょくにく", + "pos": "名詞", + "pn": -0.534744 + }, + { + "surface": "佃煮", + "readging": "つくだに", + "pos": "名詞", + "pn": -0.534755 + }, + { + "surface": "酒肴", + "readging": "さけさかな", + "pos": "名詞", + "pn": -0.534764 + }, + { + "surface": "熊手", + "readging": "くまで", + "pos": "名詞", + "pn": -0.534774 + }, + { + "surface": "渾然", + "readging": "こんぜん", + "pos": "名詞", + "pn": -0.534777 + }, + { + "surface": "松虫", + "readging": "まつむし", + "pos": "名詞", + "pn": -0.534779 + }, + { + "surface": "事項", + "readging": "じこう", + "pos": "名詞", + "pn": -0.534781 + }, + { + "surface": "放物線", + "readging": "ほうぶつせん", + "pos": "名詞", + "pn": -0.534789 + }, + { + "surface": "出鼻", + "readging": "でばな", + "pos": "名詞", + "pn": -0.534807 + }, + { + "surface": "夜さり", + "readging": "よさり", + "pos": "名詞", + "pn": -0.534823 + }, + { + "surface": "梶の木", + "readging": "かじのき", + "pos": "名詞", + "pn": -0.53485 + }, + { + "surface": "棟瓦", + "readging": "むながわら", + "pos": "名詞", + "pn": -0.534859 + }, + { + "surface": "漢", + "readging": "かん", + "pos": "名詞", + "pn": -0.53487 + }, + { + "surface": "悪食", + "readging": "あくじき", + "pos": "名詞", + "pn": -0.534898 + }, + { + "surface": "翻す", + "readging": "ひるがえす", + "pos": "動詞", + "pn": -0.534922 + }, + { + "surface": "信管", + "readging": "しんかん", + "pos": "名詞", + "pn": -0.534929 + }, + { + "surface": "捜索", + "readging": "そうさく", + "pos": "名詞", + "pn": -0.53496 + }, + { + "surface": "井の中の蛙", + "readging": "いのなかのかわず", + "pos": "名詞", + "pn": -0.534964 + }, + { + "surface": "糠味噌", + "readging": "ぬかみそ", + "pos": "名詞", + "pn": -0.534979 + }, + { + "surface": "胴突き", + "readging": "どうづき", + "pos": "名詞", + "pn": -0.53498 + }, + { + "surface": "繰下げる", + "readging": "くりさげる", + "pos": "動詞", + "pn": -0.534981 + }, + { + "surface": "水辺", + "readging": "すいへん", + "pos": "名詞", + "pn": -0.534988 + }, + { + "surface": "一目", + "readging": "いちもく", + "pos": "名詞", + "pn": -0.534997 + }, + { + "surface": "腕時計", + "readging": "うでどけい", + "pos": "名詞", + "pn": -0.535021 + }, + { + "surface": "齎す", + "readging": "もたらす", + "pos": "動詞", + "pn": -0.535043 + }, + { + "surface": "空合", + "readging": "そらあい", + "pos": "名詞", + "pn": -0.535111 + }, + { + "surface": "袖珍", + "readging": "しゅうちん", + "pos": "名詞", + "pn": -0.535113 + }, + { + "surface": "ベール", + "readging": "ベール", + "pos": "名詞", + "pn": -0.535114 + }, + { + "surface": "怒張", + "readging": "どちょう", + "pos": "名詞", + "pn": -0.535147 + }, + { + "surface": "蒙古斑", + "readging": "もうこはん", + "pos": "名詞", + "pn": -0.535173 + }, + { + "surface": "封印", + "readging": "ふういん", + "pos": "名詞", + "pn": -0.53518 + }, + { + "surface": "走狗", + "readging": "そうく", + "pos": "名詞", + "pn": -0.535211 + }, + { + "surface": "盟", + "readging": "めい", + "pos": "名詞", + "pn": -0.535224 + }, + { + "surface": "度度", + "readging": "どど", + "pos": "副詞", + "pn": -0.535226 + }, + { + "surface": "産む", + "readging": "うむ", + "pos": "動詞", + "pn": -0.535233 + }, + { + "surface": "源泉", + "readging": "げんせん", + "pos": "名詞", + "pn": -0.535242 + }, + { + "surface": "森林", + "readging": "しんりん", + "pos": "名詞", + "pn": -0.535247 + }, + { + "surface": "覆土", + "readging": "ふくど", + "pos": "名詞", + "pn": -0.535249 + }, + { + "surface": "廓", + "readging": "かく", + "pos": "名詞", + "pn": -0.53525 + }, + { + "surface": "乾性油", + "readging": "かんせいゆ", + "pos": "名詞", + "pn": -0.535252 + }, + { + "surface": "インターバル", + "readging": "インターバル", + "pos": "名詞", + "pn": -0.535254 + }, + { + "surface": "レシーバー", + "readging": "レシーバー", + "pos": "名詞", + "pn": -0.535275 + }, + { + "surface": "浮標", + "readging": "ふひょう", + "pos": "名詞", + "pn": -0.535286 + }, + { + "surface": "検問", + "readging": "けんもん", + "pos": "名詞", + "pn": -0.535347 + }, + { + "surface": "画板", + "readging": "がばん", + "pos": "名詞", + "pn": -0.535352 + }, + { + "surface": "東西屋", + "readging": "とうざいや", + "pos": "名詞", + "pn": -0.535398 + }, + { + "surface": "羅宇", + "readging": "ラオ", + "pos": "名詞", + "pn": -0.535407 + }, + { + "surface": "心房", + "readging": "しんぼう", + "pos": "名詞", + "pn": -0.535419 + }, + { + "surface": "系", + "readging": "けい", + "pos": "名詞", + "pn": -0.535421 + }, + { + "surface": "真平", + "readging": "まっぴら", + "pos": "副詞", + "pn": -0.535469 + }, + { + "surface": "間仕切", + "readging": "まじきり", + "pos": "名詞", + "pn": -0.535474 + }, + { + "surface": "七曜", + "readging": "しちよう", + "pos": "名詞", + "pn": -0.535491 + }, + { + "surface": "ボトル", + "readging": "ボトル", + "pos": "名詞", + "pn": -0.535501 + }, + { + "surface": "圏点", + "readging": "けんてん", + "pos": "名詞", + "pn": -0.535541 + }, + { + "surface": "むささび", + "readging": "むささび", + "pos": "名詞", + "pn": -0.53555 + }, + { + "surface": "節句", + "readging": "せっく", + "pos": "名詞", + "pn": -0.535556 + }, + { + "surface": "トルコ帽", + "readging": "トルコぼう", + "pos": "名詞", + "pn": -0.535669 + }, + { + "surface": "やいのやいの", + "readging": "やいのやいの", + "pos": "副詞", + "pn": -0.535717 + }, + { + "surface": "花吹雪", + "readging": "はなふぶき", + "pos": "名詞", + "pn": -0.535741 + }, + { + "surface": "突通る", + "readging": "つきとおる", + "pos": "動詞", + "pn": -0.53575 + }, + { + "surface": "幕間", + "readging": "まくあい", + "pos": "名詞", + "pn": -0.535788 + }, + { + "surface": "蚊燻し", + "readging": "かいぶし", + "pos": "名詞", + "pn": -0.535789 + }, + { + "surface": "寸時", + "readging": "すんじ", + "pos": "名詞", + "pn": -0.535819 + }, + { + "surface": "誘拐", + "readging": "ゆうかい", + "pos": "名詞", + "pn": -0.535859 + }, + { + "surface": "タイプライター", + "readging": "タイプライター", + "pos": "名詞", + "pn": -0.535871 + }, + { + "surface": "柱", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.53588 + }, + { + "surface": "極所", + "readging": "きょくしょ", + "pos": "名詞", + "pn": -0.535889 + }, + { + "surface": "浜", + "readging": "はま", + "pos": "名詞", + "pn": -0.535891 + }, + { + "surface": "銀髪", + "readging": "ぎんぱつ", + "pos": "名詞", + "pn": -0.535892 + }, + { + "surface": "蕎麦滓", + "readging": "そばかす", + "pos": "名詞", + "pn": -0.535919 + }, + { + "surface": "どろどろ", + "readging": "どろどろ", + "pos": "副詞", + "pn": -0.535943 + }, + { + "surface": "豆腐殻", + "readging": "とうふがら", + "pos": "名詞", + "pn": -0.535964 + }, + { + "surface": "街道", + "readging": "かいどう", + "pos": "名詞", + "pn": -0.53597 + }, + { + "surface": "清算取引", + "readging": "せいさんとりひき", + "pos": "名詞", + "pn": -0.535978 + }, + { + "surface": "追記", + "readging": "ついき", + "pos": "名詞", + "pn": -0.535999 + }, + { + "surface": "湧水", + "readging": "ゆうすい", + "pos": "名詞", + "pn": -0.536013 + }, + { + "surface": "巻", + "readging": "かん", + "pos": "名詞", + "pn": -0.536024 + }, + { + "surface": "回し", + "readging": "まわし", + "pos": "名詞", + "pn": -0.536026 + }, + { + "surface": "ネグる", + "readging": "ネグる", + "pos": "動詞", + "pn": -0.536044 + }, + { + "surface": "護身", + "readging": "ごしん", + "pos": "名詞", + "pn": -0.536049 + }, + { + "surface": "首筋", + "readging": "くびすじ", + "pos": "名詞", + "pn": -0.536058 + }, + { + "surface": "低回", + "readging": "ていかい", + "pos": "名詞", + "pn": -0.536091 + }, + { + "surface": "楽屋話", + "readging": "がくやばなし", + "pos": "名詞", + "pn": -0.536103 + }, + { + "surface": "片手", + "readging": "かたて", + "pos": "名詞", + "pn": -0.536109 + }, + { + "surface": "松毬", + "readging": "まつかさ", + "pos": "名詞", + "pn": -0.536111 + }, + { + "surface": "秒", + "readging": "びょう", + "pos": "名詞", + "pn": -0.536165 + }, + { + "surface": "ライラック", + "readging": "ライラック", + "pos": "名詞", + "pn": -0.536183 + }, + { + "surface": "牢記", + "readging": "ろうき", + "pos": "名詞", + "pn": -0.536187 + }, + { + "surface": "輪なり", + "readging": "わなり", + "pos": "名詞", + "pn": -0.536189 + }, + { + "surface": "そうけだつ", + "readging": "そうけだつ", + "pos": "動詞", + "pn": -0.536189 + }, + { + "surface": "白銀", + "readging": "はくぎん", + "pos": "名詞", + "pn": -0.536192 + }, + { + "surface": "起毛", + "readging": "きもう", + "pos": "名詞", + "pn": -0.536195 + }, + { + "surface": "引手", + "readging": "ひきて", + "pos": "名詞", + "pn": -0.536204 + }, + { + "surface": "巴", + "readging": "ともえ", + "pos": "名詞", + "pn": -0.536232 + }, + { + "surface": "封ずる", + "readging": "ふうずる", + "pos": "動詞", + "pn": -0.536234 + }, + { + "surface": "生意気", + "readging": "なまいき", + "pos": "名詞", + "pn": -0.536282 + }, + { + "surface": "一くさり", + "readging": "ひとくさり", + "pos": "名詞", + "pn": -0.536307 + }, + { + "surface": "下草", + "readging": "したくさ", + "pos": "名詞", + "pn": -0.536326 + }, + { + "surface": "手遅れ", + "readging": "ておくれ", + "pos": "名詞", + "pn": -0.536338 + }, + { + "surface": "水涸れ", + "readging": "みずがれ", + "pos": "名詞", + "pn": -0.536339 + }, + { + "surface": "軍旅", + "readging": "ぐんりょ", + "pos": "名詞", + "pn": -0.536352 + }, + { + "surface": "二酸化炭素", + "readging": "にさんかたんそ", + "pos": "名詞", + "pn": -0.536359 + }, + { + "surface": "節倹", + "readging": "せっけん", + "pos": "名詞", + "pn": -0.536374 + }, + { + "surface": "湯", + "readging": "とう", + "pos": "名詞", + "pn": -0.536383 + }, + { + "surface": "貫く", + "readging": "つらぬく", + "pos": "動詞", + "pn": -0.536426 + }, + { + "surface": "謡", + "readging": "よう", + "pos": "名詞", + "pn": -0.536461 + }, + { + "surface": "肉置き", + "readging": "ししおき", + "pos": "名詞", + "pn": -0.536517 + }, + { + "surface": "扱ぐ", + "readging": "こぐ", + "pos": "動詞", + "pn": -0.536525 + }, + { + "surface": "往復", + "readging": "おうふく", + "pos": "名詞", + "pn": -0.536527 + }, + { + "surface": "籠目", + "readging": "かごめ", + "pos": "名詞", + "pn": -0.536534 + }, + { + "surface": "応対", + "readging": "おうたい", + "pos": "名詞", + "pn": -0.536545 + }, + { + "surface": "鍾乳洞", + "readging": "しょうにゅうどう", + "pos": "名詞", + "pn": -0.536562 + }, + { + "surface": "薄茶", + "readging": "うすちゃ", + "pos": "名詞", + "pn": -0.53657 + }, + { + "surface": "捜査", + "readging": "そうさ", + "pos": "名詞", + "pn": -0.536584 + }, + { + "surface": "氷釈", + "readging": "ひょうしゃく", + "pos": "名詞", + "pn": -0.536603 + }, + { + "surface": "横座り", + "readging": "よこずわり", + "pos": "名詞", + "pn": -0.536607 + }, + { + "surface": "直後", + "readging": "ちょくご", + "pos": "名詞", + "pn": -0.536615 + }, + { + "surface": "臆面", + "readging": "おくめん", + "pos": "名詞", + "pn": -0.536661 + }, + { + "surface": "三方", + "readging": "さんぼう", + "pos": "名詞", + "pn": -0.536664 + }, + { + "surface": "出発", + "readging": "しゅっぱつ", + "pos": "名詞", + "pn": -0.536674 + }, + { + "surface": "岩組", + "readging": "いわぐみ", + "pos": "名詞", + "pn": -0.536695 + }, + { + "surface": "根底", + "readging": "こんてい", + "pos": "名詞", + "pn": -0.536707 + }, + { + "surface": "等", + "readging": "ら", + "pos": "名詞", + "pn": -0.536724 + }, + { + "surface": "藻", + "readging": "そう", + "pos": "名詞", + "pn": -0.536728 + }, + { + "surface": "撥音", + "readging": "はつおん", + "pos": "名詞", + "pn": -0.536732 + }, + { + "surface": "軍配", + "readging": "ぐんばい", + "pos": "名詞", + "pn": -0.536743 + }, + { + "surface": "油揚", + "readging": "あぶらげ", + "pos": "名詞", + "pn": -0.536744 + }, + { + "surface": "逐日", + "readging": "ちくじつ", + "pos": "副詞", + "pn": -0.536757 + }, + { + "surface": "壺皿", + "readging": "つぼざら", + "pos": "名詞", + "pn": -0.536773 + }, + { + "surface": "対顔", + "readging": "たいがん", + "pos": "名詞", + "pn": -0.536774 + }, + { + "surface": "御霊屋", + "readging": "みたまや", + "pos": "名詞", + "pn": -0.536789 + }, + { + "surface": "詰合せ", + "readging": "つめあわせ", + "pos": "名詞", + "pn": -0.536794 + }, + { + "surface": "概", + "readging": "がい", + "pos": "名詞", + "pn": -0.536802 + }, + { + "surface": "自説", + "readging": "じせつ", + "pos": "名詞", + "pn": -0.536802 + }, + { + "surface": "文庫", + "readging": "ぶんこ", + "pos": "名詞", + "pn": -0.53682 + }, + { + "surface": "赤本", + "readging": "あかほん", + "pos": "名詞", + "pn": -0.536837 + }, + { + "surface": "モーター", + "readging": "モーターバイク", + "pos": "名詞", + "pn": -0.536839 + }, + { + "surface": "悉く", + "readging": "ことごとく", + "pos": "副詞", + "pn": -0.53687 + }, + { + "surface": "宿銭", + "readging": "やどせん", + "pos": "名詞", + "pn": -0.536902 + }, + { + "surface": "湯痩せ", + "readging": "ゆやせ", + "pos": "名詞", + "pn": -0.536904 + }, + { + "surface": "羞恥", + "readging": "しゅうち", + "pos": "名詞", + "pn": -0.536915 + }, + { + "surface": "煙雨", + "readging": "えんう", + "pos": "名詞", + "pn": -0.536939 + }, + { + "surface": "睥睨", + "readging": "へいげい", + "pos": "名詞", + "pn": -0.536959 + }, + { + "surface": "どぶ漬", + "readging": "どぶづけ", + "pos": "名詞", + "pn": -0.536996 + }, + { + "surface": "薬味", + "readging": "やくみ", + "pos": "名詞", + "pn": -0.536997 + }, + { + "surface": "千日紅", + "readging": "せんにちこう", + "pos": "名詞", + "pn": -0.537 + }, + { + "surface": "血道", + "readging": "ちみち", + "pos": "名詞", + "pn": -0.537016 + }, + { + "surface": "白歯", + "readging": "しらは", + "pos": "名詞", + "pn": -0.537061 + }, + { + "surface": "起点", + "readging": "きてん", + "pos": "名詞", + "pn": -0.537099 + }, + { + "surface": "前線", + "readging": "ぜんせん", + "pos": "名詞", + "pn": -0.537101 + }, + { + "surface": "空豆", + "readging": "そらまめ", + "pos": "名詞", + "pn": -0.537119 + }, + { + "surface": "引渡す", + "readging": "ひきわたす", + "pos": "動詞", + "pn": -0.537133 + }, + { + "surface": "ティー", + "readging": "ティースプーン", + "pos": "名詞", + "pn": -0.537136 + }, + { + "surface": "トイレット", + "readging": "トイレット", + "pos": "名詞", + "pn": -0.537152 + }, + { + "surface": "押し詰める", + "readging": "おしつめる", + "pos": "動詞", + "pn": -0.537161 + }, + { + "surface": "融通", + "readging": "ゆずう", + "pos": "名詞", + "pn": -0.537173 + }, + { + "surface": "蒔絵", + "readging": "まきえ", + "pos": "名詞", + "pn": -0.537198 + }, + { + "surface": "中核", + "readging": "ちゅうかく", + "pos": "名詞", + "pn": -0.5372 + }, + { + "surface": "粗筋", + "readging": "あらすじ", + "pos": "名詞", + "pn": -0.537211 + }, + { + "surface": "曜日", + "readging": "ようび", + "pos": "名詞", + "pn": -0.537231 + }, + { + "surface": "村八分", + "readging": "むらはちぶ", + "pos": "名詞", + "pn": -0.537231 + }, + { + "surface": "立居", + "readging": "たちい", + "pos": "名詞", + "pn": -0.537234 + }, + { + "surface": "文箱", + "readging": "ふばこ", + "pos": "名詞", + "pn": -0.537252 + }, + { + "surface": "泥除け", + "readging": "どろよけ", + "pos": "名詞", + "pn": -0.537254 + }, + { + "surface": "晩成", + "readging": "ばんせい", + "pos": "名詞", + "pn": -0.537258 + }, + { + "surface": "長火鉢", + "readging": "ながひばち", + "pos": "名詞", + "pn": -0.537299 + }, + { + "surface": "農薬", + "readging": "のうやく", + "pos": "名詞", + "pn": -0.537299 + }, + { + "surface": "産業", + "readging": "さんぎょう", + "pos": "名詞", + "pn": -0.537324 + }, + { + "surface": "書写", + "readging": "しょしゃ", + "pos": "名詞", + "pn": -0.537362 + }, + { + "surface": "一日", + "readging": "ひとひ", + "pos": "名詞", + "pn": -0.537374 + }, + { + "surface": "際", + "readging": "ぎわ", + "pos": "名詞", + "pn": -0.537406 + }, + { + "surface": "副書", + "readging": "ふくしょ", + "pos": "名詞", + "pn": -0.537409 + }, + { + "surface": "浴", + "readging": "よく", + "pos": "名詞", + "pn": -0.537418 + }, + { + "surface": "詐術", + "readging": "さじゅつ", + "pos": "名詞", + "pn": -0.537427 + }, + { + "surface": "連立つ", + "readging": "つれだつ", + "pos": "動詞", + "pn": -0.537433 + }, + { + "surface": "引っ繰り返る", + "readging": "ひっくりかえる", + "pos": "動詞", + "pn": -0.537436 + }, + { + "surface": "痛烈", + "readging": "つうれつ", + "pos": "名詞", + "pn": -0.537468 + }, + { + "surface": "汚染", + "readging": "おせん", + "pos": "名詞", + "pn": -0.537485 + }, + { + "surface": "墓穴", + "readging": "ぼけつ", + "pos": "名詞", + "pn": -0.537516 + }, + { + "surface": "結膜", + "readging": "けつまく", + "pos": "名詞", + "pn": -0.537521 + }, + { + "surface": "東洋", + "readging": "とうよう", + "pos": "名詞", + "pn": -0.537523 + }, + { + "surface": "のめる", + "readging": "のめる", + "pos": "動詞", + "pn": -0.537576 + }, + { + "surface": "せきせいいんこ", + "readging": "せきせいいんこ", + "pos": "名詞", + "pn": -0.537579 + }, + { + "surface": "目縁", + "readging": "まぶち", + "pos": "名詞", + "pn": -0.537609 + }, + { + "surface": "耳下腺", + "readging": "じかせん", + "pos": "名詞", + "pn": -0.537611 + }, + { + "surface": "方便", + "readging": "ほうべん", + "pos": "名詞", + "pn": -0.537632 + }, + { + "surface": "兵士", + "readging": "へいし", + "pos": "名詞", + "pn": -0.537646 + }, + { + "surface": "魚", + "readging": "ぎょ", + "pos": "名詞", + "pn": -0.537653 + }, + { + "surface": "卒中", + "readging": "そっちゅう", + "pos": "名詞", + "pn": -0.537671 + }, + { + "surface": "仕向ける", + "readging": "しむける", + "pos": "動詞", + "pn": -0.537677 + }, + { + "surface": "詩吟", + "readging": "しぎん", + "pos": "名詞", + "pn": -0.537698 + }, + { + "surface": "黒曜石", + "readging": "こくようせき", + "pos": "名詞", + "pn": -0.537717 + }, + { + "surface": "がらがら蛇", + "readging": "がらがらへび", + "pos": "名詞", + "pn": -0.537732 + }, + { + "surface": "小皺", + "readging": "こじわ", + "pos": "名詞", + "pn": -0.537746 + }, + { + "surface": "賁臨", + "readging": "ふんりん", + "pos": "名詞", + "pn": -0.537757 + }, + { + "surface": "互先", + "readging": "たがいせん", + "pos": "名詞", + "pn": -0.537772 + }, + { + "surface": "仏の座", + "readging": "ほとけのざ", + "pos": "名詞", + "pn": -0.537774 + }, + { + "surface": "遅れ", + "readging": "おくれ", + "pos": "名詞", + "pn": -0.537797 + }, + { + "surface": "架線", + "readging": "かせん", + "pos": "名詞", + "pn": -0.537799 + }, + { + "surface": "墨汁", + "readging": "ぼくじゅう", + "pos": "名詞", + "pn": -0.537816 + }, + { + "surface": "即席", + "readging": "そくせき", + "pos": "名詞", + "pn": -0.537836 + }, + { + "surface": "リスト", + "readging": "リスト", + "pos": "名詞", + "pn": -0.537843 + }, + { + "surface": "廻", + "readging": "かい", + "pos": "名詞", + "pn": -0.537843 + }, + { + "surface": "重曹", + "readging": "じゅうそう", + "pos": "名詞", + "pn": -0.537847 + }, + { + "surface": "タップ", + "readging": "タップ", + "pos": "名詞", + "pn": -0.53786 + }, + { + "surface": "青み", + "readging": "あおみ", + "pos": "名詞", + "pn": -0.537871 + }, + { + "surface": "天秤棒", + "readging": "てんびんぼう", + "pos": "名詞", + "pn": -0.537892 + }, + { + "surface": "皇儲", + "readging": "こうちょ", + "pos": "名詞", + "pn": -0.537932 + }, + { + "surface": "でんぐり返し", + "readging": "でんぐりがえし", + "pos": "名詞", + "pn": -0.537938 + }, + { + "surface": "楊柳", + "readging": "ようりゅう", + "pos": "名詞", + "pn": -0.537967 + }, + { + "surface": "篦棒", + "readging": "べらぼう", + "pos": "名詞", + "pn": -0.538014 + }, + { + "surface": "日付", + "readging": "ひづけ", + "pos": "名詞", + "pn": -0.53802 + }, + { + "surface": "密計", + "readging": "みっけい", + "pos": "名詞", + "pn": -0.538024 + }, + { + "surface": "コーヒー", + "readging": "コーヒーポット", + "pos": "名詞", + "pn": -0.53803 + }, + { + "surface": "膳部", + "readging": "ぜんぶ", + "pos": "名詞", + "pn": -0.538046 + }, + { + "surface": "水上", + "readging": "すいじょう", + "pos": "名詞", + "pn": -0.538085 + }, + { + "surface": "軽挙", + "readging": "けいきょ", + "pos": "名詞", + "pn": -0.538088 + }, + { + "surface": "仮渡し", + "readging": "かりわたし", + "pos": "名詞", + "pn": -0.538124 + }, + { + "surface": "パネル", + "readging": "パネル", + "pos": "名詞", + "pn": -0.538127 + }, + { + "surface": "鬼百合", + "readging": "おにゆり", + "pos": "名詞", + "pn": -0.538141 + }, + { + "surface": "並並", + "readging": "なみなみ", + "pos": "名詞", + "pn": -0.538148 + }, + { + "surface": "紫露草", + "readging": "むらさきつゆくさ", + "pos": "名詞", + "pn": -0.538148 + }, + { + "surface": "撫ぜる", + "readging": "なぜる", + "pos": "動詞", + "pn": -0.538166 + }, + { + "surface": "洞穴", + "readging": "ほらあな", + "pos": "名詞", + "pn": -0.538169 + }, + { + "surface": "常時", + "readging": "じょうじ", + "pos": "名詞", + "pn": -0.538196 + }, + { + "surface": "午前", + "readging": "ごぜん", + "pos": "名詞", + "pn": -0.538263 + }, + { + "surface": "辞任", + "readging": "じにん", + "pos": "名詞", + "pn": -0.53827 + }, + { + "surface": "一儲け", + "readging": "ひともうけ", + "pos": "名詞", + "pn": -0.538307 + }, + { + "surface": "換地", + "readging": "かんち", + "pos": "名詞", + "pn": -0.538308 + }, + { + "surface": "療法", + "readging": "りょうほう", + "pos": "名詞", + "pn": -0.538318 + }, + { + "surface": "雷火", + "readging": "らいか", + "pos": "名詞", + "pn": -0.538328 + }, + { + "surface": "月", + "readging": "げつ", + "pos": "名詞", + "pn": -0.538336 + }, + { + "surface": "童画", + "readging": "どうが", + "pos": "名詞", + "pn": -0.538347 + }, + { + "surface": "競", + "readging": "せり", + "pos": "名詞", + "pn": -0.538354 + }, + { + "surface": "誰何", + "readging": "すいか", + "pos": "名詞", + "pn": -0.538358 + }, + { + "surface": "留男", + "readging": "とめおとこ", + "pos": "名詞", + "pn": -0.538368 + }, + { + "surface": "其の上", + "readging": "そのうえ", + "pos": "名詞", + "pn": -0.53838 + }, + { + "surface": "画架", + "readging": "がか", + "pos": "名詞", + "pn": -0.5384 + }, + { + "surface": "小", + "readging": "しょう", + "pos": "名詞", + "pn": -0.53843 + }, + { + "surface": "エコー", + "readging": "エコー", + "pos": "名詞", + "pn": -0.538444 + }, + { + "surface": "粗砥", + "readging": "あらと", + "pos": "名詞", + "pn": -0.538461 + }, + { + "surface": "御召", + "readging": "おめし", + "pos": "名詞", + "pn": -0.538466 + }, + { + "surface": "石盤", + "readging": "せきばん", + "pos": "名詞", + "pn": -0.538473 + }, + { + "surface": "監視", + "readging": "かんし", + "pos": "名詞", + "pn": -0.538474 + }, + { + "surface": "ロープ", + "readging": "ロープウエー", + "pos": "名詞", + "pn": -0.538479 + }, + { + "surface": "乱舞", + "readging": "らんぶ", + "pos": "名詞", + "pn": -0.538481 + }, + { + "surface": "男の子", + "readging": "おとこのこ", + "pos": "名詞", + "pn": -0.538487 + }, + { + "surface": "雨模様", + "readging": "あめもよう", + "pos": "名詞", + "pn": -0.538493 + }, + { + "surface": "長石", + "readging": "ちょうせき", + "pos": "名詞", + "pn": -0.538509 + }, + { + "surface": "入れ替る", + "readging": "いれかわる", + "pos": "動詞", + "pn": -0.538512 + }, + { + "surface": "ボート", + "readging": "ボート", + "pos": "名詞", + "pn": -0.538525 + }, + { + "surface": "水餅", + "readging": "みずもち", + "pos": "名詞", + "pn": -0.538544 + }, + { + "surface": "書簡箋", + "readging": "しょかんせん", + "pos": "名詞", + "pn": -0.538544 + }, + { + "surface": "烏", + "readging": "う", + "pos": "名詞", + "pn": -0.538554 + }, + { + "surface": "釣籠", + "readging": "つりかご", + "pos": "名詞", + "pn": -0.538555 + }, + { + "surface": "両度", + "readging": "りょうど", + "pos": "名詞", + "pn": -0.538559 + }, + { + "surface": "繰る", + "readging": "くる", + "pos": "動詞", + "pn": -0.538567 + }, + { + "surface": "浸出", + "readging": "しんしゅつ", + "pos": "名詞", + "pn": -0.538605 + }, + { + "surface": "可動", + "readging": "かどう", + "pos": "名詞", + "pn": -0.538618 + }, + { + "surface": "呑口", + "readging": "のみぐち", + "pos": "名詞", + "pn": -0.538643 + }, + { + "surface": "見縊る", + "readging": "みくびる", + "pos": "動詞", + "pn": -0.538647 + }, + { + "surface": "少時", + "readging": "しょうじ", + "pos": "名詞", + "pn": -0.538654 + }, + { + "surface": "昇降", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.538658 + }, + { + "surface": "ずんぐりむっくり", + "readging": "ずんぐりむっくり", + "pos": "副詞", + "pn": -0.538673 + }, + { + "surface": "チューブ", + "readging": "チューブ", + "pos": "名詞", + "pn": -0.538677 + }, + { + "surface": "触手", + "readging": "しょくしゅ", + "pos": "名詞", + "pn": -0.5387 + }, + { + "surface": "曾祖母", + "readging": "ひばば", + "pos": "名詞", + "pn": -0.538738 + }, + { + "surface": "科の木", + "readging": "しなのき", + "pos": "名詞", + "pn": -0.538763 + }, + { + "surface": "発破", + "readging": "はっぱ", + "pos": "名詞", + "pn": -0.53877 + }, + { + "surface": "紅花", + "readging": "べにばな", + "pos": "名詞", + "pn": -0.538785 + }, + { + "surface": "婚", + "readging": "こん", + "pos": "名詞", + "pn": -0.538806 + }, + { + "surface": "峻厳", + "readging": "しゅんげん", + "pos": "名詞", + "pn": -0.538822 + }, + { + "surface": "小麦", + "readging": "こむぎ", + "pos": "名詞", + "pn": -0.538828 + }, + { + "surface": "狼", + "readging": "おおかみ", + "pos": "名詞", + "pn": -0.538846 + }, + { + "surface": "奈良漬", + "readging": "ならづけ", + "pos": "名詞", + "pn": -0.538859 + }, + { + "surface": "甚平", + "readging": "じんべい", + "pos": "名詞", + "pn": -0.538876 + }, + { + "surface": "海面", + "readging": "かいめん", + "pos": "名詞", + "pn": -0.538895 + }, + { + "surface": "下向", + "readging": "げこう", + "pos": "名詞", + "pn": -0.538914 + }, + { + "surface": "侘寝", + "readging": "わびね", + "pos": "名詞", + "pn": -0.538934 + }, + { + "surface": "豆板銀", + "readging": "まめいたぎん", + "pos": "名詞", + "pn": -0.538961 + }, + { + "surface": "修習", + "readging": "しゅうしゅう", + "pos": "名詞", + "pn": -0.539026 + }, + { + "surface": "昏倒", + "readging": "こんとう", + "pos": "名詞", + "pn": -0.539026 + }, + { + "surface": "分離", + "readging": "ぶんり", + "pos": "名詞", + "pn": -0.539031 + }, + { + "surface": "鈴蘭", + "readging": "すずらん", + "pos": "名詞", + "pn": -0.539065 + }, + { + "surface": "灰汁洗い", + "readging": "あくあらい", + "pos": "名詞", + "pn": -0.539071 + }, + { + "surface": "蘇芳", + "readging": "すおう", + "pos": "名詞", + "pn": -0.539076 + }, + { + "surface": "寓する", + "readging": "ぐうする", + "pos": "動詞", + "pn": -0.539103 + }, + { + "surface": "トースト", + "readging": "トースト", + "pos": "名詞", + "pn": -0.539119 + }, + { + "surface": "工作", + "readging": "こうさく", + "pos": "名詞", + "pn": -0.539128 + }, + { + "surface": "釣棚", + "readging": "つりだな", + "pos": "名詞", + "pn": -0.539154 + }, + { + "surface": "贈物", + "readging": "おくりもの", + "pos": "名詞", + "pn": -0.53916 + }, + { + "surface": "皇后", + "readging": "こうごう", + "pos": "名詞", + "pn": -0.539163 + }, + { + "surface": "火口", + "readging": "ほくち", + "pos": "名詞", + "pn": -0.539179 + }, + { + "surface": "朔", + "readging": "さく", + "pos": "名詞", + "pn": -0.539186 + }, + { + "surface": "乳汁", + "readging": "にゅうじゅう", + "pos": "名詞", + "pn": -0.539211 + }, + { + "surface": "緒論", + "readging": "しょろん", + "pos": "名詞", + "pn": -0.53923 + }, + { + "surface": "目の敵", + "readging": "めのかたき", + "pos": "名詞", + "pn": -0.539249 + }, + { + "surface": "握鮨", + "readging": "にぎりずし", + "pos": "名詞", + "pn": -0.539278 + }, + { + "surface": "一敗", + "readging": "いっぱい", + "pos": "名詞", + "pn": -0.539288 + }, + { + "surface": "仄暗い", + "readging": "ほのぐらい", + "pos": "形容詞", + "pn": -0.53929 + }, + { + "surface": "謝礼", + "readging": "しゃれい", + "pos": "名詞", + "pn": -0.539336 + }, + { + "surface": "札", + "readging": "さつ", + "pos": "名詞", + "pn": -0.539342 + }, + { + "surface": "筒抜け", + "readging": "つつぬけ", + "pos": "名詞", + "pn": -0.539361 + }, + { + "surface": "分陰", + "readging": "ふんいん", + "pos": "名詞", + "pn": -0.539387 + }, + { + "surface": "離郷", + "readging": "りきょう", + "pos": "名詞", + "pn": -0.539395 + }, + { + "surface": "烏蛇", + "readging": "からすへび", + "pos": "名詞", + "pn": -0.539409 + }, + { + "surface": "頭", + "readging": "つむり", + "pos": "名詞", + "pn": -0.539412 + }, + { + "surface": "知覚", + "readging": "ちかく", + "pos": "名詞", + "pn": -0.53942 + }, + { + "surface": "念頭", + "readging": "ねんとう", + "pos": "名詞", + "pn": -0.539443 + }, + { + "surface": "尋", + "readging": "じん", + "pos": "名詞", + "pn": -0.539444 + }, + { + "surface": "蟋蟀", + "readging": "こおろぎ", + "pos": "名詞", + "pn": -0.539465 + }, + { + "surface": "沖", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.539484 + }, + { + "surface": "凋む", + "readging": "しぼむ", + "pos": "動詞", + "pn": -0.539508 + }, + { + "surface": "胸臆", + "readging": "きょうおく", + "pos": "名詞", + "pn": -0.53952 + }, + { + "surface": "錐", + "readging": "きり", + "pos": "名詞", + "pn": -0.539567 + }, + { + "surface": "前髪", + "readging": "まえがみ", + "pos": "名詞", + "pn": -0.539649 + }, + { + "surface": "ごしごし", + "readging": "ごしごし", + "pos": "副詞", + "pn": -0.539661 + }, + { + "surface": "贈賄", + "readging": "ぞうわい", + "pos": "名詞", + "pn": -0.539663 + }, + { + "surface": "生け捕る", + "readging": "いけどる", + "pos": "動詞", + "pn": -0.539698 + }, + { + "surface": "走者", + "readging": "そうしゃ", + "pos": "名詞", + "pn": -0.539702 + }, + { + "surface": "踏外す", + "readging": "ふみはずす", + "pos": "動詞", + "pn": -0.539715 + }, + { + "surface": "頭角", + "readging": "とうかく", + "pos": "名詞", + "pn": -0.539719 + }, + { + "surface": "冷水", + "readging": "れいすい", + "pos": "名詞", + "pn": -0.539721 + }, + { + "surface": "粘土", + "readging": "ねばつち", + "pos": "名詞", + "pn": -0.539746 + }, + { + "surface": "時局", + "readging": "じきょく", + "pos": "名詞", + "pn": -0.53975 + }, + { + "surface": "敬礼", + "readging": "けいれい", + "pos": "名詞", + "pn": -0.539759 + }, + { + "surface": "要約", + "readging": "ようやく", + "pos": "名詞", + "pn": -0.53977 + }, + { + "surface": "カフス", + "readging": "カフスボタン", + "pos": "名詞", + "pn": -0.539818 + }, + { + "surface": "拗らす", + "readging": "こじらす", + "pos": "動詞", + "pn": -0.539821 + }, + { + "surface": "寓話", + "readging": "ぐうわ", + "pos": "名詞", + "pn": -0.539828 + }, + { + "surface": "認印", + "readging": "みとめいん", + "pos": "名詞", + "pn": -0.539829 + }, + { + "surface": "淫乱", + "readging": "いんらん", + "pos": "名詞", + "pn": -0.539841 + }, + { + "surface": "アンチモン", + "readging": "アンチモン", + "pos": "名詞", + "pn": -0.539859 + }, + { + "surface": "せんすべない", + "readging": "せんすべない", + "pos": "形容詞", + "pn": -0.53987 + }, + { + "surface": "鰓", + "readging": "えら", + "pos": "名詞", + "pn": -0.539935 + }, + { + "surface": "山勘", + "readging": "やまかん", + "pos": "名詞", + "pn": -0.539949 + }, + { + "surface": "結城木綿", + "readging": "ゆうき", + "pos": "名詞", + "pn": -0.53995 + }, + { + "surface": "遠流", + "readging": "おんる", + "pos": "名詞", + "pn": -0.539976 + }, + { + "surface": "米食虫", + "readging": "こめくいむし", + "pos": "名詞", + "pn": -0.539999 + }, + { + "surface": "火蓋", + "readging": "ひぶた", + "pos": "名詞", + "pn": -0.540033 + }, + { + "surface": "廃山", + "readging": "はいざん", + "pos": "名詞", + "pn": -0.540036 + }, + { + "surface": "馬追", + "readging": "うまおい", + "pos": "名詞", + "pn": -0.540049 + }, + { + "surface": "挟む", + "readging": "さしはさむ", + "pos": "動詞", + "pn": -0.540065 + }, + { + "surface": "懐勘定", + "readging": "ふところかんじょう", + "pos": "名詞", + "pn": -0.540067 + }, + { + "surface": "亜鉛", + "readging": "あえん", + "pos": "名詞", + "pn": -0.5401 + }, + { + "surface": "部品", + "readging": "ぶひん", + "pos": "名詞", + "pn": -0.540115 + }, + { + "surface": "揺さぶる", + "readging": "ゆさぶる", + "pos": "動詞", + "pn": -0.540122 + }, + { + "surface": "山茶花", + "readging": "さざんか", + "pos": "名詞", + "pn": -0.540137 + }, + { + "surface": "述", + "readging": "じゅつ", + "pos": "名詞", + "pn": -0.540199 + }, + { + "surface": "骨張る", + "readging": "ほねばる", + "pos": "動詞", + "pn": -0.540223 + }, + { + "surface": "控え目", + "readging": "ひかえめ", + "pos": "名詞", + "pn": -0.540226 + }, + { + "surface": "蒼鉛", + "readging": "そうえん", + "pos": "名詞", + "pn": -0.540281 + }, + { + "surface": "思しい", + "readging": "おぼしい", + "pos": "形容詞", + "pn": -0.540295 + }, + { + "surface": "じっくり", + "readging": "じっくり", + "pos": "副詞", + "pn": -0.540316 + }, + { + "surface": "巻込む", + "readging": "まきこむ", + "pos": "動詞", + "pn": -0.540332 + }, + { + "surface": "腎盂", + "readging": "じんう", + "pos": "名詞", + "pn": -0.540341 + }, + { + "surface": "沐浴", + "readging": "もくよく", + "pos": "名詞", + "pn": -0.540343 + }, + { + "surface": "ワイパー", + "readging": "ワイパー", + "pos": "名詞", + "pn": -0.540351 + }, + { + "surface": "天金", + "readging": "てんきん", + "pos": "名詞", + "pn": -0.540374 + }, + { + "surface": "後逸", + "readging": "こういつ", + "pos": "名詞", + "pn": -0.540383 + }, + { + "surface": "宿す", + "readging": "しゅくす", + "pos": "動詞", + "pn": -0.540405 + }, + { + "surface": "骨格", + "readging": "こっかく", + "pos": "名詞", + "pn": -0.540415 + }, + { + "surface": "送球", + "readging": "そうきゅう", + "pos": "名詞", + "pn": -0.540432 + }, + { + "surface": "四つ", + "readging": "よっつ", + "pos": "名詞", + "pn": -0.540435 + }, + { + "surface": "街路", + "readging": "がいろ", + "pos": "名詞", + "pn": -0.540473 + }, + { + "surface": "膝詰め", + "readging": "ひざづめ", + "pos": "名詞", + "pn": -0.540503 + }, + { + "surface": "途方", + "readging": "とほう", + "pos": "名詞", + "pn": -0.540506 + }, + { + "surface": "化身", + "readging": "けしん", + "pos": "名詞", + "pn": -0.540516 + }, + { + "surface": "回数", + "readging": "かいすう", + "pos": "名詞", + "pn": -0.54052 + }, + { + "surface": "印綬", + "readging": "いんじゅ", + "pos": "名詞", + "pn": -0.540523 + }, + { + "surface": "挿画", + "readging": "そうが", + "pos": "名詞", + "pn": -0.540536 + }, + { + "surface": "末末", + "readging": "すえずえ", + "pos": "名詞", + "pn": -0.540554 + }, + { + "surface": "帰途", + "readging": "きと", + "pos": "名詞", + "pn": -0.540558 + }, + { + "surface": "孫", + "readging": "まご", + "pos": "名詞", + "pn": -0.540563 + }, + { + "surface": "胎便", + "readging": "たいべん", + "pos": "名詞", + "pn": -0.540567 + }, + { + "surface": "奏する", + "readging": "そうする", + "pos": "動詞", + "pn": -0.540601 + }, + { + "surface": "得てして", + "readging": "えてして", + "pos": "副詞", + "pn": -0.540607 + }, + { + "surface": "死屍", + "readging": "しし", + "pos": "名詞", + "pn": -0.540613 + }, + { + "surface": "花軸", + "readging": "かじく", + "pos": "名詞", + "pn": -0.540628 + }, + { + "surface": "砦", + "readging": "とりで", + "pos": "名詞", + "pn": -0.540639 + }, + { + "surface": "料", + "readging": "りょう", + "pos": "名詞", + "pn": -0.540639 + }, + { + "surface": "種種", + "readging": "くさぐさ", + "pos": "名詞", + "pn": -0.540649 + }, + { + "surface": "鳥黐", + "readging": "とりもち", + "pos": "名詞", + "pn": -0.540666 + }, + { + "surface": "鶏糞", + "readging": "けいふん", + "pos": "名詞", + "pn": -0.540721 + }, + { + "surface": "本拠", + "readging": "ほんきょ", + "pos": "名詞", + "pn": -0.540725 + }, + { + "surface": "汗知らず", + "readging": "あせしらず", + "pos": "名詞", + "pn": -0.540731 + }, + { + "surface": "文房具", + "readging": "ぶんぼうぐ", + "pos": "名詞", + "pn": -0.540734 + }, + { + "surface": "歳暮", + "readging": "さいぼ", + "pos": "名詞", + "pn": -0.540734 + }, + { + "surface": "貫", + "readging": "かん", + "pos": "名詞", + "pn": -0.540736 + }, + { + "surface": "脂", + "readging": "し", + "pos": "名詞", + "pn": -0.540743 + }, + { + "surface": "哀悼", + "readging": "あいとう", + "pos": "名詞", + "pn": -0.540755 + }, + { + "surface": "振切る", + "readging": "ふりきる", + "pos": "動詞", + "pn": -0.540756 + }, + { + "surface": "灰皿", + "readging": "はいざら", + "pos": "名詞", + "pn": -0.540757 + }, + { + "surface": "割札", + "readging": "わりふだ", + "pos": "名詞", + "pn": -0.540763 + }, + { + "surface": "流星", + "readging": "りゅうせい", + "pos": "名詞", + "pn": -0.540784 + }, + { + "surface": "標", + "readging": "ひょう", + "pos": "名詞", + "pn": -0.540786 + }, + { + "surface": "昇", + "readging": "しょう", + "pos": "名詞", + "pn": -0.540795 + }, + { + "surface": "尻暗い観音", + "readging": "しりくらいかんのん", + "pos": "名詞", + "pn": -0.540826 + }, + { + "surface": "開闢", + "readging": "かいびゃく", + "pos": "名詞", + "pn": -0.540858 + }, + { + "surface": "廃園", + "readging": "はいえん", + "pos": "名詞", + "pn": -0.540873 + }, + { + "surface": "仕立", + "readging": "したて", + "pos": "名詞", + "pn": -0.540878 + }, + { + "surface": "気孔", + "readging": "きこう", + "pos": "名詞", + "pn": -0.540892 + }, + { + "surface": "広袖", + "readging": "ひろそで", + "pos": "名詞", + "pn": -0.540934 + }, + { + "surface": "サッカー", + "readging": "サッカー", + "pos": "名詞", + "pn": -0.540935 + }, + { + "surface": "ばったり", + "readging": "ばったり", + "pos": "副詞", + "pn": -0.540938 + }, + { + "surface": "お玉杓子", + "readging": "おたまじゃくし", + "pos": "名詞", + "pn": -0.540944 + }, + { + "surface": "胴回り", + "readging": "どうまわり", + "pos": "名詞", + "pn": -0.540984 + }, + { + "surface": "はしょる", + "readging": "はしょる", + "pos": "動詞", + "pn": -0.54104 + }, + { + "surface": "紙挟み", + "readging": "かみばさみ", + "pos": "名詞", + "pn": -0.54104 + }, + { + "surface": "霊柩", + "readging": "れいきゅう", + "pos": "名詞", + "pn": -0.541066 + }, + { + "surface": "張飛ばす", + "readging": "はりとばす", + "pos": "動詞", + "pn": -0.541088 + }, + { + "surface": "家路", + "readging": "いえじ", + "pos": "名詞", + "pn": -0.541102 + }, + { + "surface": "エボナイト", + "readging": "エボナイト", + "pos": "名詞", + "pn": -0.54111 + }, + { + "surface": "角髪", + "readging": "みずら", + "pos": "名詞", + "pn": -0.541124 + }, + { + "surface": "重", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.541126 + }, + { + "surface": "海難", + "readging": "かいなん", + "pos": "名詞", + "pn": -0.541148 + }, + { + "surface": "襦袢", + "readging": "ジバン", + "pos": "名詞", + "pn": -0.54117 + }, + { + "surface": "堂", + "readging": "どう", + "pos": "名詞", + "pn": -0.541189 + }, + { + "surface": "シングル", + "readging": "シングル", + "pos": "名詞", + "pn": -0.541204 + }, + { + "surface": "望", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.541216 + }, + { + "surface": "時雨れる", + "readging": "しぐれる", + "pos": "動詞", + "pn": -0.541225 + }, + { + "surface": "坐臥", + "readging": "ざが", + "pos": "名詞", + "pn": -0.54127 + }, + { + "surface": "通り道", + "readging": "とおりみち", + "pos": "名詞", + "pn": -0.541288 + }, + { + "surface": "支える", + "readging": "ささえる", + "pos": "動詞", + "pn": -0.5413 + }, + { + "surface": "兵馬", + "readging": "へいば", + "pos": "名詞", + "pn": -0.541304 + }, + { + "surface": "欄外", + "readging": "らんがい", + "pos": "名詞", + "pn": -0.541313 + }, + { + "surface": "朧雲", + "readging": "おぼろぐも", + "pos": "名詞", + "pn": -0.541333 + }, + { + "surface": "晒者", + "readging": "さらしもの", + "pos": "名詞", + "pn": -0.541378 + }, + { + "surface": "按ずる", + "readging": "あんずる", + "pos": "動詞", + "pn": -0.541383 + }, + { + "surface": "そよそよ", + "readging": "そよそよ", + "pos": "副詞", + "pn": -0.541429 + }, + { + "surface": "村雨", + "readging": "むらさめ", + "pos": "名詞", + "pn": -0.541442 + }, + { + "surface": "備蓄", + "readging": "びちく", + "pos": "名詞", + "pn": -0.541444 + }, + { + "surface": "見せ掛け", + "readging": "みせかけ", + "pos": "名詞", + "pn": -0.54145 + }, + { + "surface": "咽頭", + "readging": "いんとう", + "pos": "名詞", + "pn": -0.541473 + }, + { + "surface": "謂れ", + "readging": "いわれ", + "pos": "名詞", + "pn": -0.54148 + }, + { + "surface": "白頭翁", + "readging": "はくとうおう", + "pos": "名詞", + "pn": -0.541508 + }, + { + "surface": "座金", + "readging": "ざがね", + "pos": "名詞", + "pn": -0.54153 + }, + { + "surface": "テロリズム", + "readging": "テロリズム", + "pos": "名詞", + "pn": -0.541587 + }, + { + "surface": "雑役", + "readging": "ざつえき", + "pos": "名詞", + "pn": -0.541604 + }, + { + "surface": "光芒", + "readging": "こうぼう", + "pos": "名詞", + "pn": -0.541615 + }, + { + "surface": "酢味噌", + "readging": "すみそ", + "pos": "名詞", + "pn": -0.54165 + }, + { + "surface": "綿布", + "readging": "めんぷ", + "pos": "名詞", + "pn": -0.541653 + }, + { + "surface": "跳躍", + "readging": "ちょうやく", + "pos": "名詞", + "pn": -0.541661 + }, + { + "surface": "行李", + "readging": "こうり", + "pos": "名詞", + "pn": -0.54169 + }, + { + "surface": "荘", + "readging": "そう", + "pos": "名詞", + "pn": -0.541712 + }, + { + "surface": "男性", + "readging": "だんせい", + "pos": "名詞", + "pn": -0.541715 + }, + { + "surface": "足形", + "readging": "あしがた", + "pos": "名詞", + "pn": -0.541715 + }, + { + "surface": "一年", + "readging": "ひととせ", + "pos": "名詞", + "pn": -0.541739 + }, + { + "surface": "懐中物", + "readging": "かいちゅうもの", + "pos": "名詞", + "pn": -0.541751 + }, + { + "surface": "腰紐", + "readging": "こしひも", + "pos": "名詞", + "pn": -0.54176 + }, + { + "surface": "おぶさる", + "readging": "おぶさる", + "pos": "動詞", + "pn": -0.54177 + }, + { + "surface": "山塞", + "readging": "さんさい", + "pos": "名詞", + "pn": -0.541777 + }, + { + "surface": "蚕", + "readging": "かいこ", + "pos": "名詞", + "pn": -0.541813 + }, + { + "surface": "過客", + "readging": "かかく", + "pos": "名詞", + "pn": -0.541843 + }, + { + "surface": "滝登り", + "readging": "たきのぼり", + "pos": "名詞", + "pn": -0.541862 + }, + { + "surface": "お下地", + "readging": "おしたじ", + "pos": "名詞", + "pn": -0.54187 + }, + { + "surface": "地伸し", + "readging": "じのし", + "pos": "名詞", + "pn": -0.541886 + }, + { + "surface": "新春", + "readging": "しんしゅん", + "pos": "名詞", + "pn": -0.541889 + }, + { + "surface": "正麩", + "readging": "しょうふ", + "pos": "名詞", + "pn": -0.541911 + }, + { + "surface": "浮遊", + "readging": "ふゆう", + "pos": "名詞", + "pn": -0.541913 + }, + { + "surface": "点茶", + "readging": "てんちゃ", + "pos": "名詞", + "pn": -0.541928 + }, + { + "surface": "不用", + "readging": "ふよう", + "pos": "名詞", + "pn": -0.541941 + }, + { + "surface": "胎内潜り", + "readging": "たいないくぐり", + "pos": "名詞", + "pn": -0.541946 + }, + { + "surface": "乱麻", + "readging": "らんま", + "pos": "名詞", + "pn": -0.541956 + }, + { + "surface": "風評", + "readging": "ふうひょう", + "pos": "名詞", + "pn": -0.54196 + }, + { + "surface": "飛上がる", + "readging": "とびあがる", + "pos": "動詞", + "pn": -0.541978 + }, + { + "surface": "笑い茸", + "readging": "わらいたけ", + "pos": "名詞", + "pn": -0.542002 + }, + { + "surface": "夜鷹", + "readging": "よたか", + "pos": "名詞", + "pn": -0.542049 + }, + { + "surface": "一紙半銭", + "readging": "いっしはんせん", + "pos": "名詞", + "pn": -0.542083 + }, + { + "surface": "六尺", + "readging": "ろくしゃく", + "pos": "名詞", + "pn": -0.542084 + }, + { + "surface": "珍談", + "readging": "ちんだん", + "pos": "名詞", + "pn": -0.54209 + }, + { + "surface": "編成", + "readging": "へんせい", + "pos": "名詞", + "pn": -0.542094 + }, + { + "surface": "崩れ", + "readging": "くずれ", + "pos": "名詞", + "pn": -0.5421 + }, + { + "surface": "障碍", + "readging": "しょうげ", + "pos": "名詞", + "pn": -0.542136 + }, + { + "surface": "片庇", + "readging": "かたびさし", + "pos": "名詞", + "pn": -0.542143 + }, + { + "surface": "稲掛", + "readging": "いなかけ", + "pos": "名詞", + "pn": -0.542166 + }, + { + "surface": "先度", + "readging": "せんど", + "pos": "名詞", + "pn": -0.542167 + }, + { + "surface": "玉砂利", + "readging": "たまじゃり", + "pos": "名詞", + "pn": -0.542171 + }, + { + "surface": "派手", + "readging": "はで", + "pos": "名詞", + "pn": -0.542191 + }, + { + "surface": "植樹", + "readging": "しょくじゅ", + "pos": "名詞", + "pn": -0.542224 + }, + { + "surface": "引起す", + "readging": "ひきおこす", + "pos": "動詞", + "pn": -0.542225 + }, + { + "surface": "贅六", + "readging": "ぜいろく", + "pos": "名詞", + "pn": -0.542235 + }, + { + "surface": "ずきずき", + "readging": "ずきずき", + "pos": "副詞", + "pn": -0.542252 + }, + { + "surface": "テープ", + "readging": "テープレコーダー", + "pos": "名詞", + "pn": -0.542273 + }, + { + "surface": "反動", + "readging": "はんどう", + "pos": "名詞", + "pn": -0.542324 + }, + { + "surface": "野兎", + "readging": "やと", + "pos": "名詞", + "pn": -0.54233 + }, + { + "surface": "指名手配", + "readging": "しめいてはい", + "pos": "名詞", + "pn": -0.542334 + }, + { + "surface": "崩し", + "readging": "くずし", + "pos": "名詞", + "pn": -0.542341 + }, + { + "surface": "鋸歯", + "readging": "きょし", + "pos": "名詞", + "pn": -0.542344 + }, + { + "surface": "闘争", + "readging": "とうそう", + "pos": "名詞", + "pn": -0.542356 + }, + { + "surface": "貯水池", + "readging": "ちょすいち", + "pos": "名詞", + "pn": -0.542365 + }, + { + "surface": "黒光", + "readging": "くろびかり", + "pos": "名詞", + "pn": -0.542417 + }, + { + "surface": "破裂", + "readging": "はれつ", + "pos": "名詞", + "pn": -0.542446 + }, + { + "surface": "どうにか", + "readging": "どうにかして", + "pos": "副詞", + "pn": -0.542476 + }, + { + "surface": "魅する", + "readging": "みする", + "pos": "動詞", + "pn": -0.542522 + }, + { + "surface": "潜まる", + "readging": "ひそまる", + "pos": "動詞", + "pn": -0.542522 + }, + { + "surface": "把", + "readging": "は", + "pos": "名詞", + "pn": -0.542549 + }, + { + "surface": "続", + "readging": "ぞく", + "pos": "名詞", + "pn": -0.542576 + }, + { + "surface": "掻起す", + "readging": "かきおこす", + "pos": "動詞", + "pn": -0.542578 + }, + { + "surface": "立込める", + "readging": "たちこめる", + "pos": "動詞", + "pn": -0.542588 + }, + { + "surface": "だぼ鯊", + "readging": "だぼはぜ", + "pos": "名詞", + "pn": -0.542621 + }, + { + "surface": "力水", + "readging": "ちからみず", + "pos": "名詞", + "pn": -0.542654 + }, + { + "surface": "別格", + "readging": "べっかく", + "pos": "名詞", + "pn": -0.54266 + }, + { + "surface": "竈", + "readging": "へっつい", + "pos": "名詞", + "pn": -0.542661 + }, + { + "surface": "寸話", + "readging": "すんわ", + "pos": "名詞", + "pn": -0.542665 + }, + { + "surface": "狂う", + "readging": "くるう", + "pos": "動詞", + "pn": -0.542698 + }, + { + "surface": "僻地", + "readging": "へきち", + "pos": "名詞", + "pn": -0.542745 + }, + { + "surface": "泥土", + "readging": "でいど", + "pos": "名詞", + "pn": -0.542759 + }, + { + "surface": "軒", + "readging": "けん", + "pos": "名詞", + "pn": -0.542769 + }, + { + "surface": "汚れる", + "readging": "けがれる", + "pos": "動詞", + "pn": -0.5428 + }, + { + "surface": "川獺", + "readging": "かわうそ", + "pos": "名詞", + "pn": -0.542804 + }, + { + "surface": "一部始終", + "readging": "いちぶしじゅう", + "pos": "名詞", + "pn": -0.542804 + }, + { + "surface": "有機", + "readging": "ゆうき", + "pos": "名詞", + "pn": -0.542828 + }, + { + "surface": "増派", + "readging": "ぞうは", + "pos": "名詞", + "pn": -0.542847 + }, + { + "surface": "未生", + "readging": "みしょう", + "pos": "名詞", + "pn": -0.542859 + }, + { + "surface": "毛深い", + "readging": "けぶかい", + "pos": "形容詞", + "pn": -0.542859 + }, + { + "surface": "木蔦", + "readging": "きづた", + "pos": "名詞", + "pn": -0.542883 + }, + { + "surface": "切り", + "readging": "きり", + "pos": "名詞", + "pn": -0.542889 + }, + { + "surface": "様", + "readging": "ざま", + "pos": "名詞", + "pn": -0.542927 + }, + { + "surface": "綬", + "readging": "じゅ", + "pos": "名詞", + "pn": -0.54296 + }, + { + "surface": "しらばくれる", + "readging": "しらばくれる", + "pos": "動詞", + "pn": -0.542975 + }, + { + "surface": "元結", + "readging": "もとゆい", + "pos": "名詞", + "pn": -0.542977 + }, + { + "surface": "郊外", + "readging": "こうがい", + "pos": "名詞", + "pn": -0.542986 + }, + { + "surface": "紅茶", + "readging": "こうちゃ", + "pos": "名詞", + "pn": -0.543021 + }, + { + "surface": "むつ五郎", + "readging": "むつごろう", + "pos": "名詞", + "pn": -0.543044 + }, + { + "surface": "遡源", + "readging": "そげん", + "pos": "名詞", + "pn": -0.543058 + }, + { + "surface": "呼集", + "readging": "こしゅう", + "pos": "名詞", + "pn": -0.543069 + }, + { + "surface": "召募", + "readging": "しょうぼ", + "pos": "名詞", + "pn": -0.543069 + }, + { + "surface": "心緒", + "readging": "しんちょ", + "pos": "名詞", + "pn": -0.543103 + }, + { + "surface": "木の実", + "readging": "このみ", + "pos": "名詞", + "pn": -0.543109 + }, + { + "surface": "近侍", + "readging": "きんじ", + "pos": "名詞", + "pn": -0.54311 + }, + { + "surface": "ぞろっぺえ", + "readging": "ぞろっぺえ", + "pos": "名詞", + "pn": -0.543112 + }, + { + "surface": "踏臼", + "readging": "ふみうす", + "pos": "名詞", + "pn": -0.543113 + }, + { + "surface": "鯨", + "readging": "くじら", + "pos": "名詞", + "pn": -0.543118 + }, + { + "surface": "カウント", + "readging": "カウント", + "pos": "名詞", + "pn": -0.543144 + }, + { + "surface": "模倣", + "readging": "もほう", + "pos": "名詞", + "pn": -0.543178 + }, + { + "surface": "来客", + "readging": "らいきゃく", + "pos": "名詞", + "pn": -0.543183 + }, + { + "surface": "茶漉", + "readging": "ちゃこし", + "pos": "名詞", + "pn": -0.543199 + }, + { + "surface": "俳優", + "readging": "はいゆう", + "pos": "名詞", + "pn": -0.543211 + }, + { + "surface": "道中差", + "readging": "どうちゅうざし", + "pos": "名詞", + "pn": -0.543212 + }, + { + "surface": "常日頃", + "readging": "つねひごろ", + "pos": "名詞", + "pn": -0.543218 + }, + { + "surface": "接種", + "readging": "せっしゅ", + "pos": "名詞", + "pn": -0.543221 + }, + { + "surface": "動乱", + "readging": "どうらん", + "pos": "名詞", + "pn": -0.543256 + }, + { + "surface": "容姿", + "readging": "ようし", + "pos": "名詞", + "pn": -0.543282 + }, + { + "surface": "血刀", + "readging": "ちがたな", + "pos": "名詞", + "pn": -0.543299 + }, + { + "surface": "鬱屈", + "readging": "うっくつ", + "pos": "名詞", + "pn": -0.543302 + }, + { + "surface": "落髪", + "readging": "らくはつ", + "pos": "名詞", + "pn": -0.543325 + }, + { + "surface": "切符", + "readging": "きっぷ", + "pos": "名詞", + "pn": -0.543326 + }, + { + "surface": "青緡", + "readging": "あおざし", + "pos": "名詞", + "pn": -0.543424 + }, + { + "surface": "茶室", + "readging": "ちゃしつ", + "pos": "名詞", + "pn": -0.543427 + }, + { + "surface": "各種", + "readging": "かくしゅ", + "pos": "名詞", + "pn": -0.543491 + }, + { + "surface": "拭う", + "readging": "ぬぐう", + "pos": "動詞", + "pn": -0.543494 + }, + { + "surface": "浴客", + "readging": "よっかく", + "pos": "名詞", + "pn": -0.543516 + }, + { + "surface": "尻子玉", + "readging": "しりこだま", + "pos": "名詞", + "pn": -0.543518 + }, + { + "surface": "帰服", + "readging": "きふく", + "pos": "名詞", + "pn": -0.543536 + }, + { + "surface": "余滴", + "readging": "よてき", + "pos": "名詞", + "pn": -0.543538 + }, + { + "surface": "点す", + "readging": "とぼす", + "pos": "動詞", + "pn": -0.54354 + }, + { + "surface": "巻上げる", + "readging": "まきあげる", + "pos": "動詞", + "pn": -0.543542 + }, + { + "surface": "直腸", + "readging": "ちょくちょう", + "pos": "名詞", + "pn": -0.543548 + }, + { + "surface": "篝", + "readging": "かがり", + "pos": "名詞", + "pn": -0.543558 + }, + { + "surface": "横筋", + "readging": "よこすじ", + "pos": "名詞", + "pn": -0.54356 + }, + { + "surface": "熟", + "readging": "つくづく", + "pos": "副詞", + "pn": -0.543564 + }, + { + "surface": "便便", + "readging": "べんべん", + "pos": "名詞", + "pn": -0.543566 + }, + { + "surface": "ばら弾", + "readging": "ばらだま", + "pos": "名詞", + "pn": -0.543586 + }, + { + "surface": "御上", + "readging": "おかみ", + "pos": "名詞", + "pn": -0.543589 + }, + { + "surface": "消石灰", + "readging": "しょうせっかい", + "pos": "名詞", + "pn": -0.543589 + }, + { + "surface": "謡曲", + "readging": "ようきょく", + "pos": "名詞", + "pn": -0.543591 + }, + { + "surface": "変成", + "readging": "へんせい", + "pos": "名詞", + "pn": -0.543593 + }, + { + "surface": "然然", + "readging": "しかじか", + "pos": "名詞", + "pn": -0.543605 + }, + { + "surface": "桎梏", + "readging": "しっこく", + "pos": "名詞", + "pn": -0.543607 + }, + { + "surface": "量目", + "readging": "りょうめ", + "pos": "名詞", + "pn": -0.543608 + }, + { + "surface": "無稽", + "readging": "むけい", + "pos": "名詞", + "pn": -0.54364 + }, + { + "surface": "頬刺", + "readging": "ほおざし", + "pos": "名詞", + "pn": -0.543651 + }, + { + "surface": "尺貫法", + "readging": "しゃっかんほう", + "pos": "名詞", + "pn": -0.543651 + }, + { + "surface": "でっち上げる", + "readging": "でっちあげる", + "pos": "動詞", + "pn": -0.543661 + }, + { + "surface": "ナット", + "readging": "ナット", + "pos": "名詞", + "pn": -0.543681 + }, + { + "surface": "回り番", + "readging": "まわりばん", + "pos": "名詞", + "pn": -0.543688 + }, + { + "surface": "照明", + "readging": "しょうめい", + "pos": "名詞", + "pn": -0.543691 + }, + { + "surface": "旗指物", + "readging": "はたさしもの", + "pos": "名詞", + "pn": -0.543707 + }, + { + "surface": "腕枕", + "readging": "うでまくら", + "pos": "名詞", + "pn": -0.543709 + }, + { + "surface": "無い", + "readging": "ない", + "pos": "形容詞", + "pn": -0.54371 + }, + { + "surface": "衣", + "readging": "ころも", + "pos": "名詞", + "pn": -0.543741 + }, + { + "surface": "豹", + "readging": "ひょう", + "pos": "名詞", + "pn": -0.543749 + }, + { + "surface": "揺ぐ", + "readging": "ゆるぐ", + "pos": "動詞", + "pn": -0.54375 + }, + { + "surface": "山駕籠", + "readging": "やまかご", + "pos": "名詞", + "pn": -0.543751 + }, + { + "surface": "鳩", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.543766 + }, + { + "surface": "前置き", + "readging": "まえおき", + "pos": "名詞", + "pn": -0.543779 + }, + { + "surface": "ユー ターン", + "readging": "ユー ターン", + "pos": "名詞", + "pn": -0.543795 + }, + { + "surface": "弓籠手", + "readging": "ゆごて", + "pos": "名詞", + "pn": -0.543805 + }, + { + "surface": "道具立", + "readging": "どうぐだて", + "pos": "名詞", + "pn": -0.543845 + }, + { + "surface": "馬車", + "readging": "ばしゃ", + "pos": "名詞", + "pn": -0.543874 + }, + { + "surface": "中砥", + "readging": "なかと", + "pos": "名詞", + "pn": -0.54388 + }, + { + "surface": "おつけ", + "readging": "おつけ", + "pos": "名詞", + "pn": -0.543899 + }, + { + "surface": "背骨", + "readging": "せぼね", + "pos": "名詞", + "pn": -0.5439 + }, + { + "surface": "肉付き", + "readging": "ししつき", + "pos": "名詞", + "pn": -0.54393 + }, + { + "surface": "囁く", + "readging": "ささやく", + "pos": "動詞", + "pn": -0.543935 + }, + { + "surface": "背広", + "readging": "せびろ", + "pos": "名詞", + "pn": -0.543959 + }, + { + "surface": "厳然", + "readging": "げんぜん", + "pos": "名詞", + "pn": -0.543971 + }, + { + "surface": "野次馬", + "readging": "やじうま", + "pos": "名詞", + "pn": -0.543989 + }, + { + "surface": "侍", + "readging": "さむらい", + "pos": "名詞", + "pn": -0.544 + }, + { + "surface": "傍", + "readging": "おか", + "pos": "名詞", + "pn": -0.54401 + }, + { + "surface": "変種", + "readging": "へんしゅ", + "pos": "名詞", + "pn": -0.544012 + }, + { + "surface": "懐胎", + "readging": "かいたい", + "pos": "名詞", + "pn": -0.544043 + }, + { + "surface": "硫黄", + "readging": "ゆおう", + "pos": "名詞", + "pn": -0.544046 + }, + { + "surface": "総菜", + "readging": "そうざい", + "pos": "名詞", + "pn": -0.544054 + }, + { + "surface": "雑炊", + "readging": "ぞうすい", + "pos": "名詞", + "pn": -0.544058 + }, + { + "surface": "啜る", + "readging": "すする", + "pos": "動詞", + "pn": -0.544102 + }, + { + "surface": "顛末", + "readging": "てんまつ", + "pos": "名詞", + "pn": -0.544104 + }, + { + "surface": "弔詩", + "readging": "ちょうし", + "pos": "名詞", + "pn": -0.544112 + }, + { + "surface": "乳棒", + "readging": "にゅうぼう", + "pos": "名詞", + "pn": -0.544116 + }, + { + "surface": "薬玉", + "readging": "くすだま", + "pos": "名詞", + "pn": -0.544116 + }, + { + "surface": "故人", + "readging": "こじん", + "pos": "名詞", + "pn": -0.544148 + }, + { + "surface": "阻止", + "readging": "そし", + "pos": "名詞", + "pn": -0.544215 + }, + { + "surface": "堰", + "readging": "せき", + "pos": "名詞", + "pn": -0.544232 + }, + { + "surface": "潤す", + "readging": "うるおす", + "pos": "動詞", + "pn": -0.544271 + }, + { + "surface": "草草", + "readging": "そうそう", + "pos": "名詞", + "pn": -0.544274 + }, + { + "surface": "引ける", + "readging": "ひける", + "pos": "動詞", + "pn": -0.544274 + }, + { + "surface": "小手毬", + "readging": "こでまり", + "pos": "名詞", + "pn": -0.544284 + }, + { + "surface": "側溝", + "readging": "そっこう", + "pos": "名詞", + "pn": -0.544285 + }, + { + "surface": "尺地", + "readging": "せきち", + "pos": "名詞", + "pn": -0.544303 + }, + { + "surface": "害す", + "readging": "がいす", + "pos": "動詞", + "pn": -0.544335 + }, + { + "surface": "滑り", + "readging": "ぬめり", + "pos": "名詞", + "pn": -0.544349 + }, + { + "surface": "はか", + "readging": "はか", + "pos": "名詞", + "pn": -0.544358 + }, + { + "surface": "砂場", + "readging": "すなば", + "pos": "名詞", + "pn": -0.544363 + }, + { + "surface": "湿度", + "readging": "しつど", + "pos": "名詞", + "pn": -0.544371 + }, + { + "surface": "図面", + "readging": "ずめん", + "pos": "名詞", + "pn": -0.544383 + }, + { + "surface": "焚火", + "readging": "たきび", + "pos": "名詞", + "pn": -0.544398 + }, + { + "surface": "唐墨", + "readging": "とうぼく", + "pos": "名詞", + "pn": -0.544452 + }, + { + "surface": "窮", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.544456 + }, + { + "surface": "伴食", + "readging": "ばんしょく", + "pos": "名詞", + "pn": -0.544466 + }, + { + "surface": "こそげる", + "readging": "こそげる", + "pos": "動詞", + "pn": -0.544469 + }, + { + "surface": "容体", + "readging": "ようだい", + "pos": "名詞", + "pn": -0.544501 + }, + { + "surface": "鴛鴦", + "readging": "おしどり", + "pos": "名詞", + "pn": -0.544524 + }, + { + "surface": "図引", + "readging": "ずひき", + "pos": "名詞", + "pn": -0.54455 + }, + { + "surface": "恨み言", + "readging": "うらみごと", + "pos": "名詞", + "pn": -0.544551 + }, + { + "surface": "監督", + "readging": "かんとく", + "pos": "名詞", + "pn": -0.544551 + }, + { + "surface": "胸三寸", + "readging": "むねさんずん", + "pos": "名詞", + "pn": -0.544561 + }, + { + "surface": "寝冷え", + "readging": "ねびえ", + "pos": "名詞", + "pn": -0.544592 + }, + { + "surface": "リング", + "readging": "リング", + "pos": "名詞", + "pn": -0.544609 + }, + { + "surface": "態様", + "readging": "たいよう", + "pos": "名詞", + "pn": -0.544639 + }, + { + "surface": "鰐", + "readging": "わに", + "pos": "名詞", + "pn": -0.544673 + }, + { + "surface": "気脈", + "readging": "きみゃく", + "pos": "名詞", + "pn": -0.544701 + }, + { + "surface": "陣取り", + "readging": "じんとり", + "pos": "名詞", + "pn": -0.544711 + }, + { + "surface": "ヤッケ", + "readging": "ヤッケ", + "pos": "名詞", + "pn": -0.544718 + }, + { + "surface": "太鼓腹", + "readging": "たいこばら", + "pos": "名詞", + "pn": -0.544722 + }, + { + "surface": "総嘗め", + "readging": "そうなめ", + "pos": "名詞", + "pn": -0.544723 + }, + { + "surface": "ビニール", + "readging": "ビニール", + "pos": "名詞", + "pn": -0.544728 + }, + { + "surface": "蛙", + "readging": "かわず", + "pos": "名詞", + "pn": -0.544739 + }, + { + "surface": "尾灯", + "readging": "びとう", + "pos": "名詞", + "pn": -0.544744 + }, + { + "surface": "薬液", + "readging": "やくえき", + "pos": "名詞", + "pn": -0.544747 + }, + { + "surface": "野猿", + "readging": "やえん", + "pos": "名詞", + "pn": -0.544774 + }, + { + "surface": "反則", + "readging": "はんそく", + "pos": "名詞", + "pn": -0.544778 + }, + { + "surface": "へし折る", + "readging": "へしおる", + "pos": "動詞", + "pn": -0.544781 + }, + { + "surface": "いけしゃあしゃあ", + "readging": "いけしゃあしゃあ", + "pos": "副詞", + "pn": -0.544819 + }, + { + "surface": "平仄", + "readging": "ひょうそく", + "pos": "名詞", + "pn": -0.54482 + }, + { + "surface": "食いしばる", + "readging": "くいしばる", + "pos": "動詞", + "pn": -0.544822 + }, + { + "surface": "屡述", + "readging": "るじゅつ", + "pos": "名詞", + "pn": -0.544844 + }, + { + "surface": "騒動", + "readging": "そうどう", + "pos": "名詞", + "pn": -0.544844 + }, + { + "surface": "麦飯", + "readging": "むぎめし", + "pos": "名詞", + "pn": -0.54485 + }, + { + "surface": "関所", + "readging": "せきしょ", + "pos": "名詞", + "pn": -0.544914 + }, + { + "surface": "体型", + "readging": "たいけい", + "pos": "名詞", + "pn": -0.544958 + }, + { + "surface": "真青", + "readging": "まっさお", + "pos": "名詞", + "pn": -0.544967 + }, + { + "surface": "睡蓮", + "readging": "すいれん", + "pos": "名詞", + "pn": -0.544988 + }, + { + "surface": "薄目", + "readging": "うすめ", + "pos": "名詞", + "pn": -0.545011 + }, + { + "surface": "差引", + "readging": "さしひき", + "pos": "名詞", + "pn": -0.545039 + }, + { + "surface": "サスペンダー", + "readging": "サスペンダー", + "pos": "名詞", + "pn": -0.545045 + }, + { + "surface": "プディング", + "readging": "プディング", + "pos": "名詞", + "pn": -0.545046 + }, + { + "surface": "底", + "readging": "そこ", + "pos": "名詞", + "pn": -0.545065 + }, + { + "surface": "匹", + "readging": "ひつ", + "pos": "名詞", + "pn": -0.545074 + }, + { + "surface": "祖父", + "readging": "そふ", + "pos": "名詞", + "pn": -0.545077 + }, + { + "surface": "顔", + "readging": "かお", + "pos": "名詞", + "pn": -0.545092 + }, + { + "surface": "焦げる", + "readging": "こげる", + "pos": "動詞", + "pn": -0.54511 + }, + { + "surface": "合", + "readging": "ごう", + "pos": "名詞", + "pn": -0.545111 + }, + { + "surface": "折返す", + "readging": "おりかえす", + "pos": "動詞", + "pn": -0.545112 + }, + { + "surface": "贈号", + "readging": "ぞうごう", + "pos": "名詞", + "pn": -0.545158 + }, + { + "surface": "お返し", + "readging": "おかえし", + "pos": "名詞", + "pn": -0.54517 + }, + { + "surface": "山椒", + "readging": "さんしょう", + "pos": "名詞", + "pn": -0.545248 + }, + { + "surface": "狭まる", + "readging": "せばまる", + "pos": "動詞", + "pn": -0.545291 + }, + { + "surface": "版下", + "readging": "はんした", + "pos": "名詞", + "pn": -0.545293 + }, + { + "surface": "子", + "readging": "し", + "pos": "名詞", + "pn": -0.545317 + }, + { + "surface": "牝鶏", + "readging": "ひんけい", + "pos": "名詞", + "pn": -0.545318 + }, + { + "surface": "ガス", + "readging": "ガスタンク", + "pos": "名詞", + "pn": -0.54536 + }, + { + "surface": "行方", + "readging": "ゆくえ", + "pos": "名詞", + "pn": -0.545381 + }, + { + "surface": "ふとっちょ", + "readging": "ふとっちょ", + "pos": "名詞", + "pn": -0.545389 + }, + { + "surface": "水張り", + "readging": "みずばり", + "pos": "名詞", + "pn": -0.545404 + }, + { + "surface": "ブルゾン", + "readging": "ブルゾン", + "pos": "名詞", + "pn": -0.545411 + }, + { + "surface": "保温", + "readging": "ほおん", + "pos": "名詞", + "pn": -0.545421 + }, + { + "surface": "引っ捕える", + "readging": "ひっとらえる", + "pos": "動詞", + "pn": -0.545435 + }, + { + "surface": "扁桃腺", + "readging": "へんとうせん", + "pos": "名詞", + "pn": -0.545451 + }, + { + "surface": "太郎", + "readging": "たろう", + "pos": "名詞", + "pn": -0.545465 + }, + { + "surface": "蛙", + "readging": "かえる", + "pos": "名詞", + "pn": -0.545496 + }, + { + "surface": "唐人髷", + "readging": "とうじんまげ", + "pos": "名詞", + "pn": -0.545584 + }, + { + "surface": "河馬", + "readging": "かば", + "pos": "名詞", + "pn": -0.545592 + }, + { + "surface": "原点", + "readging": "げんてん", + "pos": "名詞", + "pn": -0.545611 + }, + { + "surface": "脳裏", + "readging": "のうり", + "pos": "名詞", + "pn": -0.54563 + }, + { + "surface": "塞き上げる", + "readging": "せきあげる", + "pos": "動詞", + "pn": -0.545635 + }, + { + "surface": "つい", + "readging": "つい", + "pos": "副詞", + "pn": -0.545666 + }, + { + "surface": "絣", + "readging": "かすり", + "pos": "名詞", + "pn": -0.54567 + }, + { + "surface": "傍目", + "readging": "はため", + "pos": "名詞", + "pn": -0.545678 + }, + { + "surface": "噴火", + "readging": "ふんか", + "pos": "名詞", + "pn": -0.54568 + }, + { + "surface": "遍歴", + "readging": "へんれき", + "pos": "名詞", + "pn": -0.545686 + }, + { + "surface": "鯉幟", + "readging": "こいのぼり", + "pos": "名詞", + "pn": -0.545705 + }, + { + "surface": "欲する", + "readging": "ほっする", + "pos": "動詞", + "pn": -0.545734 + }, + { + "surface": "灰神楽", + "readging": "はいかぐら", + "pos": "名詞", + "pn": -0.545738 + }, + { + "surface": "租税", + "readging": "そぜい", + "pos": "名詞", + "pn": -0.545791 + }, + { + "surface": "カード", + "readging": "カード", + "pos": "名詞", + "pn": -0.545813 + }, + { + "surface": "乳房", + "readging": "ちぶさ", + "pos": "名詞", + "pn": -0.545849 + }, + { + "surface": "湿り", + "readging": "しめり", + "pos": "名詞", + "pn": -0.545856 + }, + { + "surface": "巻煙草", + "readging": "まきタバコ", + "pos": "名詞", + "pn": -0.545867 + }, + { + "surface": "引入れる", + "readging": "ひきいれる", + "pos": "動詞", + "pn": -0.54588 + }, + { + "surface": "月末", + "readging": "げつまつ", + "pos": "名詞", + "pn": -0.545913 + }, + { + "surface": "滑", + "readging": "かつ", + "pos": "名詞", + "pn": -0.545921 + }, + { + "surface": "ごっそり", + "readging": "ごっそり", + "pos": "副詞", + "pn": -0.545928 + }, + { + "surface": "黄濁", + "readging": "こうだく", + "pos": "名詞", + "pn": -0.545988 + }, + { + "surface": "書留める", + "readging": "かきとめる", + "pos": "動詞", + "pn": -0.545994 + }, + { + "surface": "羯鼓", + "readging": "かっこ", + "pos": "名詞", + "pn": -0.546003 + }, + { + "surface": "たつき", + "readging": "たつき", + "pos": "名詞", + "pn": -0.54603 + }, + { + "surface": "大腸", + "readging": "だいちょう", + "pos": "名詞", + "pn": -0.546031 + }, + { + "surface": "喝", + "readging": "かつ", + "pos": "名詞", + "pn": -0.546031 + }, + { + "surface": "すげる", + "readging": "すげる", + "pos": "動詞", + "pn": -0.546038 + }, + { + "surface": "閑散", + "readging": "かんさん", + "pos": "名詞", + "pn": -0.546075 + }, + { + "surface": "淡水", + "readging": "たんすい", + "pos": "名詞", + "pn": -0.54608 + }, + { + "surface": "青潮", + "readging": "あおしお", + "pos": "名詞", + "pn": -0.546085 + }, + { + "surface": "地質", + "readging": "ちしつ", + "pos": "名詞", + "pn": -0.546111 + }, + { + "surface": "脂汗", + "readging": "あぶらあせ", + "pos": "名詞", + "pn": -0.546115 + }, + { + "surface": "臨画", + "readging": "りんが", + "pos": "名詞", + "pn": -0.546116 + }, + { + "surface": "墓所", + "readging": "はかしょ", + "pos": "名詞", + "pn": -0.546125 + }, + { + "surface": "つくねんと", + "readging": "つくねんと", + "pos": "副詞", + "pn": -0.546146 + }, + { + "surface": "厳禁", + "readging": "げんきん", + "pos": "名詞", + "pn": -0.546173 + }, + { + "surface": "一病息災", + "readging": "いちびょうそくさい", + "pos": "名詞", + "pn": -0.546188 + }, + { + "surface": "突き", + "readging": "つき", + "pos": "名詞", + "pn": -0.546191 + }, + { + "surface": "露命", + "readging": "ろめい", + "pos": "名詞", + "pn": -0.546254 + }, + { + "surface": "昔時", + "readging": "せきじ", + "pos": "名詞", + "pn": -0.546275 + }, + { + "surface": "胸", + "readging": "きょう", + "pos": "名詞", + "pn": -0.546332 + }, + { + "surface": "不自然", + "readging": "ふしぜん", + "pos": "名詞", + "pn": -0.546336 + }, + { + "surface": "別杯", + "readging": "べっぱい", + "pos": "名詞", + "pn": -0.546346 + }, + { + "surface": "何人", + "readging": "なんぴと", + "pos": "名詞", + "pn": -0.546383 + }, + { + "surface": "微生物", + "readging": "びせいぶつ", + "pos": "名詞", + "pn": -0.546402 + }, + { + "surface": "水草", + "readging": "みずくさ", + "pos": "名詞", + "pn": -0.546407 + }, + { + "surface": "琺瑯質", + "readging": "ほうろうしつ", + "pos": "名詞", + "pn": -0.54642 + }, + { + "surface": "一文", + "readging": "いちもん", + "pos": "名詞", + "pn": -0.546431 + }, + { + "surface": "編木", + "readging": "びんざさら", + "pos": "名詞", + "pn": -0.546448 + }, + { + "surface": "押鮨", + "readging": "おしずし", + "pos": "名詞", + "pn": -0.546461 + }, + { + "surface": "羽織る", + "readging": "はおる", + "pos": "動詞", + "pn": -0.546479 + }, + { + "surface": "しばれる", + "readging": "しばれる", + "pos": "動詞", + "pn": -0.54651 + }, + { + "surface": "取繕う", + "readging": "とりつくろう", + "pos": "動詞", + "pn": -0.546517 + }, + { + "surface": "お払い物", + "readging": "おはらいもの", + "pos": "名詞", + "pn": -0.546532 + }, + { + "surface": "瑠璃", + "readging": "るり", + "pos": "名詞", + "pn": -0.546552 + }, + { + "surface": "俳諧", + "readging": "はいかい", + "pos": "名詞", + "pn": -0.546557 + }, + { + "surface": "形相", + "readging": "ぎょうそう", + "pos": "名詞", + "pn": -0.546574 + }, + { + "surface": "寝返る", + "readging": "ねがえる", + "pos": "動詞", + "pn": -0.546579 + }, + { + "surface": "拍", + "readging": "はく", + "pos": "名詞", + "pn": -0.546585 + }, + { + "surface": "盲腸", + "readging": "もうちょう", + "pos": "名詞", + "pn": -0.546624 + }, + { + "surface": "州", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.546626 + }, + { + "surface": "登", + "readging": "とう", + "pos": "名詞", + "pn": -0.546651 + }, + { + "surface": "無窮", + "readging": "むきゅう", + "pos": "名詞", + "pn": -0.546659 + }, + { + "surface": "横槍", + "readging": "よこやり", + "pos": "名詞", + "pn": -0.546706 + }, + { + "surface": "原則", + "readging": "げんそく", + "pos": "名詞", + "pn": -0.546726 + }, + { + "surface": "懸隔たる", + "readging": "かけへだたる", + "pos": "動詞", + "pn": -0.54679 + }, + { + "surface": "年来", + "readging": "ねんらい", + "pos": "副詞", + "pn": -0.546795 + }, + { + "surface": "残物", + "readging": "ざんぶつ", + "pos": "名詞", + "pn": -0.5468 + }, + { + "surface": "不用意", + "readging": "ふようい", + "pos": "名詞", + "pn": -0.546819 + }, + { + "surface": "街談巷説", + "readging": "がいだんこうせつ", + "pos": "名詞", + "pn": -0.546834 + }, + { + "surface": "柄杓", + "readging": "ひしゃく", + "pos": "名詞", + "pn": -0.546853 + }, + { + "surface": "砲煙", + "readging": "ほうえん", + "pos": "名詞", + "pn": -0.546856 + }, + { + "surface": "肩車", + "readging": "かたぐるま", + "pos": "名詞", + "pn": -0.546868 + }, + { + "surface": "葉っぱ", + "readging": "はっぱ", + "pos": "名詞", + "pn": -0.546882 + }, + { + "surface": "釣鐘草", + "readging": "つりがねそう", + "pos": "名詞", + "pn": -0.546901 + }, + { + "surface": "犀", + "readging": "さい", + "pos": "名詞", + "pn": -0.546915 + }, + { + "surface": "学ぶ", + "readging": "まなぶ", + "pos": "動詞", + "pn": -0.546933 + }, + { + "surface": "ロボット", + "readging": "ロボット", + "pos": "名詞", + "pn": -0.546943 + }, + { + "surface": "猫額", + "readging": "びょうがく", + "pos": "名詞", + "pn": -0.547006 + }, + { + "surface": "クロール", + "readging": "クロール", + "pos": "名詞", + "pn": -0.547016 + }, + { + "surface": "大黄", + "readging": "だいおう", + "pos": "名詞", + "pn": -0.547023 + }, + { + "surface": "押し入る", + "readging": "おしいる", + "pos": "動詞", + "pn": -0.547031 + }, + { + "surface": "微温", + "readging": "びおん", + "pos": "名詞", + "pn": -0.547034 + }, + { + "surface": "老女", + "readging": "ろうじょ", + "pos": "名詞", + "pn": -0.547038 + }, + { + "surface": "コピー", + "readging": "コピーライター", + "pos": "名詞", + "pn": -0.547054 + }, + { + "surface": "簿記", + "readging": "ぼき", + "pos": "名詞", + "pn": -0.547077 + }, + { + "surface": "往生際", + "readging": "おうじょうぎわ", + "pos": "名詞", + "pn": -0.54708 + }, + { + "surface": "火吹き竹", + "readging": "ひふきだけ", + "pos": "名詞", + "pn": -0.547093 + }, + { + "surface": "国訛", + "readging": "くになまり", + "pos": "名詞", + "pn": -0.547141 + }, + { + "surface": "牌", + "readging": "パイ", + "pos": "名詞", + "pn": -0.547164 + }, + { + "surface": "酢蛸", + "readging": "すだこ", + "pos": "名詞", + "pn": -0.547201 + }, + { + "surface": "碁打ち", + "readging": "ごうち", + "pos": "名詞", + "pn": -0.547207 + }, + { + "surface": "蛇行", + "readging": "だこう", + "pos": "名詞", + "pn": -0.547217 + }, + { + "surface": "犬歯", + "readging": "けんし", + "pos": "名詞", + "pn": -0.54722 + }, + { + "surface": "市立", + "readging": "しりつ", + "pos": "名詞", + "pn": -0.547238 + }, + { + "surface": "人泣かせ", + "readging": "ひとなかせ", + "pos": "名詞", + "pn": -0.547249 + }, + { + "surface": "粟粒", + "readging": "ぞくりゅう", + "pos": "名詞", + "pn": -0.547251 + }, + { + "surface": "差付ける", + "readging": "さしつける", + "pos": "動詞", + "pn": -0.547256 + }, + { + "surface": "源", + "readging": "みなもと", + "pos": "名詞", + "pn": -0.547264 + }, + { + "surface": "遠方", + "readging": "えんぽう", + "pos": "名詞", + "pn": -0.547292 + }, + { + "surface": "膿", + "readging": "うみ", + "pos": "名詞", + "pn": -0.54731 + }, + { + "surface": "皆掛", + "readging": "かいがけ", + "pos": "名詞", + "pn": -0.547311 + }, + { + "surface": "厄年", + "readging": "やくどし", + "pos": "名詞", + "pn": -0.547313 + }, + { + "surface": "真黒", + "readging": "まっくろ", + "pos": "名詞", + "pn": -0.547323 + }, + { + "surface": "下方", + "readging": "かほう", + "pos": "名詞", + "pn": -0.547333 + }, + { + "surface": "輪転", + "readging": "りんてん", + "pos": "名詞", + "pn": -0.547335 + }, + { + "surface": "詐欺", + "readging": "さぎ", + "pos": "名詞", + "pn": -0.547411 + }, + { + "surface": "固定", + "readging": "こてい", + "pos": "名詞", + "pn": -0.547431 + }, + { + "surface": "認める", + "readging": "みとめる", + "pos": "動詞", + "pn": -0.547493 + }, + { + "surface": "旋律", + "readging": "せんりつ", + "pos": "名詞", + "pn": -0.547499 + }, + { + "surface": "首飾り", + "readging": "くびかざり", + "pos": "名詞", + "pn": -0.547515 + }, + { + "surface": "塩揉み", + "readging": "しおもみ", + "pos": "名詞", + "pn": -0.547529 + }, + { + "surface": "そうそう", + "readging": "そうそう", + "pos": "副詞", + "pn": -0.547554 + }, + { + "surface": "不服", + "readging": "ふふく", + "pos": "名詞", + "pn": -0.547571 + }, + { + "surface": "楼", + "readging": "ろう", + "pos": "名詞", + "pn": -0.547578 + }, + { + "surface": "散蓮華", + "readging": "ちりれんげ", + "pos": "名詞", + "pn": -0.547584 + }, + { + "surface": "具足煮", + "readging": "ぐそくに", + "pos": "名詞", + "pn": -0.547606 + }, + { + "surface": "二本棒", + "readging": "にほんぼう", + "pos": "名詞", + "pn": -0.547612 + }, + { + "surface": "指", + "readging": "し", + "pos": "名詞", + "pn": -0.547623 + }, + { + "surface": "挑戦", + "readging": "ちょうせん", + "pos": "名詞", + "pn": -0.547644 + }, + { + "surface": "しっとり", + "readging": "しっとり", + "pos": "副詞", + "pn": -0.547646 + }, + { + "surface": "舟遊び", + "readging": "ふなあそび", + "pos": "名詞", + "pn": -0.547663 + }, + { + "surface": "飛沫", + "readging": "ひまつ", + "pos": "名詞", + "pn": -0.547681 + }, + { + "surface": "林", + "readging": "りん", + "pos": "名詞", + "pn": -0.547692 + }, + { + "surface": "手拭き", + "readging": "てふき", + "pos": "名詞", + "pn": -0.547696 + }, + { + "surface": "炭化", + "readging": "たんか", + "pos": "名詞", + "pn": -0.547712 + }, + { + "surface": "判取", + "readging": "はんとり", + "pos": "名詞", + "pn": -0.547723 + }, + { + "surface": "朝寝", + "readging": "あさね", + "pos": "名詞", + "pn": -0.547728 + }, + { + "surface": "蓄え", + "readging": "たくわえ", + "pos": "名詞", + "pn": -0.547767 + }, + { + "surface": "錠剤", + "readging": "じょうざい", + "pos": "名詞", + "pn": -0.547767 + }, + { + "surface": "狐", + "readging": "こ", + "pos": "名詞", + "pn": -0.54778 + }, + { + "surface": "カメラ", + "readging": "カメラマン", + "pos": "名詞", + "pn": -0.547795 + }, + { + "surface": "帯留", + "readging": "おびどめ", + "pos": "名詞", + "pn": -0.5478 + }, + { + "surface": "脳脊髄膜炎", + "readging": "のうせきずいまくえん", + "pos": "名詞", + "pn": -0.547849 + }, + { + "surface": "帆柱", + "readging": "ほばしら", + "pos": "名詞", + "pn": -0.547901 + }, + { + "surface": "角叉", + "readging": "つのまた", + "pos": "名詞", + "pn": -0.547917 + }, + { + "surface": "阿附", + "readging": "あふ", + "pos": "名詞", + "pn": -0.547917 + }, + { + "surface": "蚊屋釣草", + "readging": "かやつりぐさ", + "pos": "名詞", + "pn": -0.547919 + }, + { + "surface": "丸", + "readging": "がん", + "pos": "名詞", + "pn": -0.547935 + }, + { + "surface": "鉦叩き", + "readging": "かねたたき", + "pos": "名詞", + "pn": -0.547937 + }, + { + "surface": "蝉時雨", + "readging": "せみしぐれ", + "pos": "名詞", + "pn": -0.547961 + }, + { + "surface": "事物", + "readging": "じぶつ", + "pos": "名詞", + "pn": -0.547997 + }, + { + "surface": "涎", + "readging": "よだれ", + "pos": "名詞", + "pn": -0.548002 + }, + { + "surface": "縮かむ", + "readging": "ちぢかむ", + "pos": "動詞", + "pn": -0.548029 + }, + { + "surface": "震う", + "readging": "ふるう", + "pos": "動詞", + "pn": -0.548037 + }, + { + "surface": "巻雲", + "readging": "まきぐも", + "pos": "名詞", + "pn": -0.548039 + }, + { + "surface": "おみおつけ", + "readging": "おみおつけ", + "pos": "名詞", + "pn": -0.548049 + }, + { + "surface": "冬瓜", + "readging": "とうがん", + "pos": "名詞", + "pn": -0.548064 + }, + { + "surface": "脱臼", + "readging": "だっきゅう", + "pos": "名詞", + "pn": -0.548065 + }, + { + "surface": "麦秋", + "readging": "ばくしゅう", + "pos": "名詞", + "pn": -0.548069 + }, + { + "surface": "棚", + "readging": "たな", + "pos": "名詞", + "pn": -0.548085 + }, + { + "surface": "覗き込む", + "readging": "のぞきこむ", + "pos": "動詞", + "pn": -0.548086 + }, + { + "surface": "封じ目", + "readging": "ふうじめ", + "pos": "名詞", + "pn": -0.5481 + }, + { + "surface": "編集", + "readging": "へんしゅう", + "pos": "名詞", + "pn": -0.548104 + }, + { + "surface": "がくんと", + "readging": "がくんと", + "pos": "副詞", + "pn": -0.548105 + }, + { + "surface": "綴代", + "readging": "とじしろ", + "pos": "名詞", + "pn": -0.548115 + }, + { + "surface": "分界", + "readging": "ぶんかい", + "pos": "名詞", + "pn": -0.54813 + }, + { + "surface": "喇叭飲み", + "readging": "らっぱのみ", + "pos": "名詞", + "pn": -0.548141 + }, + { + "surface": "下座", + "readging": "げざ", + "pos": "名詞", + "pn": -0.548153 + }, + { + "surface": "白旗", + "readging": "はっき", + "pos": "名詞", + "pn": -0.548214 + }, + { + "surface": "バス", + "readging": "バス", + "pos": "名詞", + "pn": -0.548219 + }, + { + "surface": "点滅", + "readging": "てんめつ", + "pos": "名詞", + "pn": -0.548256 + }, + { + "surface": "寵妾", + "readging": "ちょうしょう", + "pos": "名詞", + "pn": -0.548274 + }, + { + "surface": "ヒュッテ", + "readging": "ヒュッテ", + "pos": "名詞", + "pn": -0.548297 + }, + { + "surface": "旦夕", + "readging": "たんせき", + "pos": "名詞", + "pn": -0.5483 + }, + { + "surface": "俗臭", + "readging": "ぞくしゅう", + "pos": "名詞", + "pn": -0.548351 + }, + { + "surface": "コート", + "readging": "コート", + "pos": "名詞", + "pn": -0.548358 + }, + { + "surface": "ハンバーグ", + "readging": "ハンバーグ", + "pos": "名詞", + "pn": -0.548362 + }, + { + "surface": "遊金", + "readging": "ゆうきん", + "pos": "名詞", + "pn": -0.548375 + }, + { + "surface": "干潮", + "readging": "かんちょう", + "pos": "名詞", + "pn": -0.548419 + }, + { + "surface": "嘖嘖", + "readging": "さくさく", + "pos": "名詞", + "pn": -0.548425 + }, + { + "surface": "反間", + "readging": "はんかん", + "pos": "名詞", + "pn": -0.548426 + }, + { + "surface": "埋かる", + "readging": "いかる", + "pos": "動詞", + "pn": -0.548442 + }, + { + "surface": "徴", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.548453 + }, + { + "surface": "果樹", + "readging": "かじゅ", + "pos": "名詞", + "pn": -0.548463 + }, + { + "surface": "回虫", + "readging": "かいちゅう", + "pos": "名詞", + "pn": -0.548468 + }, + { + "surface": "江畔", + "readging": "こうはん", + "pos": "名詞", + "pn": -0.548487 + }, + { + "surface": "口まめ", + "readging": "くちまめ", + "pos": "名詞", + "pn": -0.548571 + }, + { + "surface": "声色", + "readging": "こわいろ", + "pos": "名詞", + "pn": -0.548586 + }, + { + "surface": "お手の物", + "readging": "おてのもの", + "pos": "名詞", + "pn": -0.548597 + }, + { + "surface": "醤", + "readging": "しょう", + "pos": "名詞", + "pn": -0.548599 + }, + { + "surface": "酷烈", + "readging": "こくれつ", + "pos": "名詞", + "pn": -0.548617 + }, + { + "surface": "毒薬", + "readging": "どくやく", + "pos": "名詞", + "pn": -0.548633 + }, + { + "surface": "ジンギスカン鍋", + "readging": "ジンギスカンなべ", + "pos": "名詞", + "pn": -0.548641 + }, + { + "surface": "胸懐", + "readging": "きょうかい", + "pos": "名詞", + "pn": -0.54867 + }, + { + "surface": "形代", + "readging": "かたしろ", + "pos": "名詞", + "pn": -0.548694 + }, + { + "surface": "供する", + "readging": "きょうする", + "pos": "動詞", + "pn": -0.548702 + }, + { + "surface": "叩頭", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.548704 + }, + { + "surface": "三度笠", + "readging": "さんどがさ", + "pos": "名詞", + "pn": -0.548732 + }, + { + "surface": "結合", + "readging": "けつごう", + "pos": "名詞", + "pn": -0.548739 + }, + { + "surface": "まぶす", + "readging": "まぶす", + "pos": "動詞", + "pn": -0.548741 + }, + { + "surface": "蜜吸", + "readging": "みつすい", + "pos": "名詞", + "pn": -0.548749 + }, + { + "surface": "村落", + "readging": "そんらく", + "pos": "名詞", + "pn": -0.548749 + }, + { + "surface": "帽章", + "readging": "ぼうしょう", + "pos": "名詞", + "pn": -0.548757 + }, + { + "surface": "塩類", + "readging": "えんるい", + "pos": "名詞", + "pn": -0.548806 + }, + { + "surface": "杵", + "readging": "きね", + "pos": "名詞", + "pn": -0.548811 + }, + { + "surface": "謂れ因縁", + "readging": "いわれいんねん", + "pos": "名詞", + "pn": -0.548831 + }, + { + "surface": "腰元", + "readging": "こしもと", + "pos": "名詞", + "pn": -0.548883 + }, + { + "surface": "済ます", + "readging": "すます", + "pos": "動詞", + "pn": -0.548905 + }, + { + "surface": "怪奇", + "readging": "かいき", + "pos": "名詞", + "pn": -0.548914 + }, + { + "surface": "縫上げ", + "readging": "ぬいあげ", + "pos": "名詞", + "pn": -0.548924 + }, + { + "surface": "茶話", + "readging": "さわ", + "pos": "名詞", + "pn": -0.548942 + }, + { + "surface": "襟飾り", + "readging": "えりかざり", + "pos": "名詞", + "pn": -0.548956 + }, + { + "surface": "滲む", + "readging": "にじむ", + "pos": "動詞", + "pn": -0.549039 + }, + { + "surface": "焦眉", + "readging": "しょうび", + "pos": "名詞", + "pn": -0.549043 + }, + { + "surface": "駐車", + "readging": "ちゅうしゃ", + "pos": "名詞", + "pn": -0.549048 + }, + { + "surface": "三彩", + "readging": "さんさい", + "pos": "名詞", + "pn": -0.549054 + }, + { + "surface": "エナメル", + "readging": "エナメル", + "pos": "名詞", + "pn": -0.54907 + }, + { + "surface": "負け犬", + "readging": "まけいぬ", + "pos": "名詞", + "pn": -0.5491 + }, + { + "surface": "背理", + "readging": "はいり", + "pos": "名詞", + "pn": -0.549118 + }, + { + "surface": "干海苔", + "readging": "ほしのり", + "pos": "名詞", + "pn": -0.549144 + }, + { + "surface": "熨斗", + "readging": "のし", + "pos": "名詞", + "pn": -0.54915 + }, + { + "surface": "曲る", + "readging": "まがる", + "pos": "動詞", + "pn": -0.549157 + }, + { + "surface": "理", + "readging": "り", + "pos": "名詞", + "pn": -0.549163 + }, + { + "surface": "銅ばち", + "readging": "どうばち", + "pos": "名詞", + "pn": -0.549197 + }, + { + "surface": "銀縁", + "readging": "ぎんぶち", + "pos": "名詞", + "pn": -0.549202 + }, + { + "surface": "珠算", + "readging": "しゅざん", + "pos": "名詞", + "pn": -0.549205 + }, + { + "surface": "空音", + "readging": "そらね", + "pos": "名詞", + "pn": -0.549211 + }, + { + "surface": "茅", + "readging": "ちがや", + "pos": "名詞", + "pn": -0.549218 + }, + { + "surface": "既倒", + "readging": "きとう", + "pos": "名詞", + "pn": -0.549218 + }, + { + "surface": "霊魂", + "readging": "れいこん", + "pos": "名詞", + "pn": -0.549228 + }, + { + "surface": "ほったらかす", + "readging": "ほったらかす", + "pos": "動詞", + "pn": -0.549242 + }, + { + "surface": "片時", + "readging": "へんじ", + "pos": "名詞", + "pn": -0.549245 + }, + { + "surface": "試合", + "readging": "しあい", + "pos": "名詞", + "pn": -0.549245 + }, + { + "surface": "阻害", + "readging": "そがい", + "pos": "名詞", + "pn": -0.549284 + }, + { + "surface": "謎", + "readging": "なぞ", + "pos": "名詞", + "pn": -0.54934 + }, + { + "surface": "厚紙", + "readging": "あつがみ", + "pos": "名詞", + "pn": -0.549343 + }, + { + "surface": "火曜", + "readging": "かよう", + "pos": "名詞", + "pn": -0.549391 + }, + { + "surface": "抜衣紋", + "readging": "ぬきえもん", + "pos": "名詞", + "pn": -0.549414 + }, + { + "surface": "縁", + "readging": "えにし", + "pos": "名詞", + "pn": -0.549426 + }, + { + "surface": "権", + "readging": "けん", + "pos": "名詞", + "pn": -0.549432 + }, + { + "surface": "食い止める", + "readging": "くいとめる", + "pos": "動詞", + "pn": -0.549436 + }, + { + "surface": "晦", + "readging": "つごもり", + "pos": "名詞", + "pn": -0.549469 + }, + { + "surface": "鎖帷子", + "readging": "くさりかたびら", + "pos": "名詞", + "pn": -0.549544 + }, + { + "surface": "烈火", + "readging": "れっか", + "pos": "名詞", + "pn": -0.549552 + }, + { + "surface": "行住坐臥", + "readging": "ぎょうじゅうざが", + "pos": "名詞", + "pn": -0.549554 + }, + { + "surface": "食人種", + "readging": "しょくじんしゅ", + "pos": "名詞", + "pn": -0.549561 + }, + { + "surface": "炭水化物", + "readging": "たんすいかぶつ", + "pos": "名詞", + "pn": -0.549571 + }, + { + "surface": "ビヤ樽", + "readging": "ビヤだる", + "pos": "名詞", + "pn": -0.549634 + }, + { + "surface": "篇", + "readging": "へん", + "pos": "名詞", + "pn": -0.549705 + }, + { + "surface": "書落す", + "readging": "かきおとす", + "pos": "動詞", + "pn": -0.549712 + }, + { + "surface": "鹿威し", + "readging": "ししおどし", + "pos": "名詞", + "pn": -0.549768 + }, + { + "surface": "前官", + "readging": "ぜんかん", + "pos": "名詞", + "pn": -0.549777 + }, + { + "surface": "橋", + "readging": "きょう", + "pos": "名詞", + "pn": -0.549791 + }, + { + "surface": "払い除ける", + "readging": "はらいのける", + "pos": "動詞", + "pn": -0.549801 + }, + { + "surface": "手荷物", + "readging": "てにもつ", + "pos": "名詞", + "pn": -0.549807 + }, + { + "surface": "優柔", + "readging": "ゆうじゅう", + "pos": "名詞", + "pn": -0.54981 + }, + { + "surface": "色覚", + "readging": "しきかく", + "pos": "名詞", + "pn": -0.54986 + }, + { + "surface": "かぶりつく", + "readging": "かぶりつく", + "pos": "動詞", + "pn": -0.549879 + }, + { + "surface": "並大抵", + "readging": "なみたいてい", + "pos": "名詞", + "pn": -0.549899 + }, + { + "surface": "要素", + "readging": "ようそ", + "pos": "名詞", + "pn": -0.549912 + }, + { + "surface": "酒肉", + "readging": "しゅにく", + "pos": "名詞", + "pn": -0.549934 + }, + { + "surface": "交織", + "readging": "こうしょく", + "pos": "名詞", + "pn": -0.549948 + }, + { + "surface": "洋傘", + "readging": "ようがさ", + "pos": "名詞", + "pn": -0.549953 + }, + { + "surface": "屠る", + "readging": "ほふる", + "pos": "動詞", + "pn": -0.549973 + }, + { + "surface": "大道", + "readging": "だいどう", + "pos": "名詞", + "pn": -0.549981 + }, + { + "surface": "ワイル病", + "readging": "ワイルびょう", + "pos": "名詞", + "pn": -0.549995 + }, + { + "surface": "柴栗", + "readging": "しばぐり", + "pos": "名詞", + "pn": -0.55001 + }, + { + "surface": "水蒸気", + "readging": "すいじょうき", + "pos": "名詞", + "pn": -0.550027 + }, + { + "surface": "筋揉み", + "readging": "すじもみ", + "pos": "名詞", + "pn": -0.550044 + }, + { + "surface": "ポスト", + "readging": "ポスト", + "pos": "名詞", + "pn": -0.550061 + }, + { + "surface": "どんぐり眼", + "readging": "どんぐりまなこ", + "pos": "名詞", + "pn": -0.550073 + }, + { + "surface": "国際", + "readging": "こくさい", + "pos": "名詞", + "pn": -0.550073 + }, + { + "surface": "魂", + "readging": "たましい", + "pos": "名詞", + "pn": -0.550076 + }, + { + "surface": "漫文", + "readging": "まんぶん", + "pos": "名詞", + "pn": -0.550088 + }, + { + "surface": "花弁", + "readging": "かべん", + "pos": "名詞", + "pn": -0.550149 + }, + { + "surface": "恋人", + "readging": "こいびと", + "pos": "名詞", + "pn": -0.550186 + }, + { + "surface": "ワクチン", + "readging": "ワクチン", + "pos": "名詞", + "pn": -0.550196 + }, + { + "surface": "切っ先", + "readging": "きっさき", + "pos": "名詞", + "pn": -0.550199 + }, + { + "surface": "筵旗", + "readging": "むしろばた", + "pos": "名詞", + "pn": -0.550203 + }, + { + "surface": "上げ", + "readging": "あげ", + "pos": "名詞", + "pn": -0.550212 + }, + { + "surface": "共に", + "readging": "ともに", + "pos": "副詞", + "pn": -0.550214 + }, + { + "surface": "胃液", + "readging": "いえき", + "pos": "名詞", + "pn": -0.550234 + }, + { + "surface": "精進潔斎", + "readging": "しょうじんけっさい", + "pos": "名詞", + "pn": -0.550262 + }, + { + "surface": "糊塗", + "readging": "こと", + "pos": "名詞", + "pn": -0.550282 + }, + { + "surface": "ロップ", + "readging": "ロップ", + "pos": "名詞", + "pn": -0.550291 + }, + { + "surface": "鍋尻", + "readging": "なべじり", + "pos": "名詞", + "pn": -0.550341 + }, + { + "surface": "口蓋垂", + "readging": "こうがいすい", + "pos": "名詞", + "pn": -0.550353 + }, + { + "surface": "エフェドリン", + "readging": "エフェドリン", + "pos": "名詞", + "pn": -0.550356 + }, + { + "surface": "押韻", + "readging": "おういん", + "pos": "名詞", + "pn": -0.550376 + }, + { + "surface": "逆様", + "readging": "さかさま", + "pos": "名詞", + "pn": -0.550408 + }, + { + "surface": "大地", + "readging": "だいち", + "pos": "名詞", + "pn": -0.550411 + }, + { + "surface": "虚誕", + "readging": "きょたん", + "pos": "名詞", + "pn": -0.550424 + }, + { + "surface": "八端", + "readging": "はったん", + "pos": "名詞", + "pn": -0.550435 + }, + { + "surface": "帯鋸", + "readging": "おびのこ", + "pos": "名詞", + "pn": -0.550447 + }, + { + "surface": "万謝", + "readging": "ばんしゃ", + "pos": "名詞", + "pn": -0.550454 + }, + { + "surface": "比況", + "readging": "ひきょう", + "pos": "名詞", + "pn": -0.550467 + }, + { + "surface": "天麩羅", + "readging": "テンプラ", + "pos": "名詞", + "pn": -0.550478 + }, + { + "surface": "上がり花", + "readging": "あがりばな", + "pos": "名詞", + "pn": -0.550478 + }, + { + "surface": "概論", + "readging": "がいろん", + "pos": "名詞", + "pn": -0.550479 + }, + { + "surface": "蒸物", + "readging": "むしもの", + "pos": "名詞", + "pn": -0.550491 + }, + { + "surface": "敬語", + "readging": "けいご", + "pos": "名詞", + "pn": -0.550505 + }, + { + "surface": "向く", + "readging": "むく", + "pos": "動詞", + "pn": -0.550509 + }, + { + "surface": "死刑", + "readging": "しけい", + "pos": "名詞", + "pn": -0.550513 + }, + { + "surface": "呪術", + "readging": "じゅじゅつ", + "pos": "名詞", + "pn": -0.550529 + }, + { + "surface": "隣人", + "readging": "りんじん", + "pos": "名詞", + "pn": -0.550533 + }, + { + "surface": "プレス", + "readging": "プレス", + "pos": "名詞", + "pn": -0.55056 + }, + { + "surface": "甲状", + "readging": "こうじょう", + "pos": "名詞", + "pn": -0.550567 + }, + { + "surface": "膝皿", + "readging": "ひざさら", + "pos": "名詞", + "pn": -0.550577 + }, + { + "surface": "洋", + "readging": "よう", + "pos": "名詞", + "pn": -0.550582 + }, + { + "surface": "またぞろ", + "readging": "またぞろ", + "pos": "副詞", + "pn": -0.5506 + }, + { + "surface": "古雅", + "readging": "こが", + "pos": "名詞", + "pn": -0.550613 + }, + { + "surface": "到来物", + "readging": "とうらいもの", + "pos": "名詞", + "pn": -0.550627 + }, + { + "surface": "パラチフス", + "readging": "パラチフス", + "pos": "名詞", + "pn": -0.55063 + }, + { + "surface": "老け込む", + "readging": "ふけこむ", + "pos": "動詞", + "pn": -0.550731 + }, + { + "surface": "初秋", + "readging": "しょしゅう", + "pos": "名詞", + "pn": -0.550751 + }, + { + "surface": "蚯蚓", + "readging": "みみず", + "pos": "名詞", + "pn": -0.550752 + }, + { + "surface": "かんてき", + "readging": "かんてき", + "pos": "名詞", + "pn": -0.550842 + }, + { + "surface": "過剰", + "readging": "かじょう", + "pos": "名詞", + "pn": -0.550856 + }, + { + "surface": "鯉口", + "readging": "こいぐち", + "pos": "名詞", + "pn": -0.550866 + }, + { + "surface": "御旅所", + "readging": "おたびしょ", + "pos": "名詞", + "pn": -0.550868 + }, + { + "surface": "音容", + "readging": "おんよう", + "pos": "名詞", + "pn": -0.550869 + }, + { + "surface": "声声", + "readging": "こえごえ", + "pos": "名詞", + "pn": -0.550905 + }, + { + "surface": "朝飯", + "readging": "あさはん", + "pos": "名詞", + "pn": -0.550937 + }, + { + "surface": "刺草", + "readging": "いらくさ", + "pos": "名詞", + "pn": -0.550952 + }, + { + "surface": "斬", + "readging": "ざん", + "pos": "名詞", + "pn": -0.551034 + }, + { + "surface": "鮑", + "readging": "あわび", + "pos": "名詞", + "pn": -0.551043 + }, + { + "surface": "ライノタイプ", + "readging": "ライノタイプ", + "pos": "名詞", + "pn": -0.551052 + }, + { + "surface": "出歩く", + "readging": "であるく", + "pos": "動詞", + "pn": -0.551063 + }, + { + "surface": "本物", + "readging": "ほんもの", + "pos": "名詞", + "pn": -0.551066 + }, + { + "surface": "担桶", + "readging": "たご", + "pos": "名詞", + "pn": -0.551072 + }, + { + "surface": "腰掛", + "readging": "こしかけ", + "pos": "名詞", + "pn": -0.551112 + }, + { + "surface": "飛散る", + "readging": "とびちる", + "pos": "動詞", + "pn": -0.551113 + }, + { + "surface": "布袋腹", + "readging": "ほていばら", + "pos": "名詞", + "pn": -0.551124 + }, + { + "surface": "角張る", + "readging": "かくばる", + "pos": "動詞", + "pn": -0.551126 + }, + { + "surface": "虫酸", + "readging": "むしず", + "pos": "名詞", + "pn": -0.551146 + }, + { + "surface": "憐憫", + "readging": "れんびん", + "pos": "名詞", + "pn": -0.551158 + }, + { + "surface": "焼鈍し", + "readging": "やきなまし", + "pos": "名詞", + "pn": -0.551233 + }, + { + "surface": "画帖", + "readging": "がじょう", + "pos": "名詞", + "pn": -0.551238 + }, + { + "surface": "力漕", + "readging": "りきそう", + "pos": "名詞", + "pn": -0.551245 + }, + { + "surface": "近寄る", + "readging": "ちかよる", + "pos": "動詞", + "pn": -0.55126 + }, + { + "surface": "肯綮", + "readging": "こうけい", + "pos": "名詞", + "pn": -0.551268 + }, + { + "surface": "手沢", + "readging": "しゅたく", + "pos": "名詞", + "pn": -0.55127 + }, + { + "surface": "船虫", + "readging": "ふなむし", + "pos": "名詞", + "pn": -0.551277 + }, + { + "surface": "角袖", + "readging": "かくそで", + "pos": "名詞", + "pn": -0.551282 + }, + { + "surface": "元祖", + "readging": "がんそ", + "pos": "名詞", + "pn": -0.551285 + }, + { + "surface": "混用", + "readging": "こんよう", + "pos": "名詞", + "pn": -0.551296 + }, + { + "surface": "胎毒", + "readging": "たいどく", + "pos": "名詞", + "pn": -0.551305 + }, + { + "surface": "ダイビング", + "readging": "ダイビング", + "pos": "名詞", + "pn": -0.55131 + }, + { + "surface": "陣屋", + "readging": "じんや", + "pos": "名詞", + "pn": -0.551318 + }, + { + "surface": "舎人", + "readging": "とねり", + "pos": "名詞", + "pn": -0.551319 + }, + { + "surface": "久し振り", + "readging": "ひさしぶり", + "pos": "名詞", + "pn": -0.551329 + }, + { + "surface": "自棄酒", + "readging": "やけざけ", + "pos": "名詞", + "pn": -0.55133 + }, + { + "surface": "サルモネラ菌", + "readging": "サルモネラきん", + "pos": "名詞", + "pn": -0.551337 + }, + { + "surface": "押紙", + "readging": "おうし", + "pos": "名詞", + "pn": -0.551338 + }, + { + "surface": "木挽", + "readging": "こびき", + "pos": "名詞", + "pn": -0.551364 + }, + { + "surface": "煮詰める", + "readging": "につめる", + "pos": "動詞", + "pn": -0.551366 + }, + { + "surface": "お先棒", + "readging": "おさきぼう", + "pos": "名詞", + "pn": -0.551371 + }, + { + "surface": "感触", + "readging": "かんしょく", + "pos": "名詞", + "pn": -0.551382 + }, + { + "surface": "痛切", + "readging": "つうせつ", + "pos": "名詞", + "pn": -0.551384 + }, + { + "surface": "狩猟", + "readging": "しゅりょう", + "pos": "名詞", + "pn": -0.551394 + }, + { + "surface": "食いはぐれ", + "readging": "くいはぐれ", + "pos": "名詞", + "pn": -0.551411 + }, + { + "surface": "拿捕", + "readging": "だほ", + "pos": "名詞", + "pn": -0.55142 + }, + { + "surface": "幕", + "readging": "ばく", + "pos": "名詞", + "pn": -0.551432 + }, + { + "surface": "眼底", + "readging": "がんてい", + "pos": "名詞", + "pn": -0.551449 + }, + { + "surface": "泣濡れる", + "readging": "なきぬれる", + "pos": "動詞", + "pn": -0.551454 + }, + { + "surface": "儀", + "readging": "ぎ", + "pos": "名詞", + "pn": -0.551462 + }, + { + "surface": "揚巻", + "readging": "あげまき", + "pos": "名詞", + "pn": -0.551483 + }, + { + "surface": "誤写", + "readging": "ごしゃ", + "pos": "名詞", + "pn": -0.551492 + }, + { + "surface": "考量", + "readging": "こうりょう", + "pos": "名詞", + "pn": -0.551539 + }, + { + "surface": "色感", + "readging": "しきかん", + "pos": "名詞", + "pn": -0.551566 + }, + { + "surface": "柔道", + "readging": "じゅうどう", + "pos": "名詞", + "pn": -0.551596 + }, + { + "surface": "流離", + "readging": "りゅうり", + "pos": "名詞", + "pn": -0.551609 + }, + { + "surface": "妖気", + "readging": "ようき", + "pos": "名詞", + "pn": -0.551634 + }, + { + "surface": "帰", + "readging": "き", + "pos": "名詞", + "pn": -0.551641 + }, + { + "surface": "取沙汰", + "readging": "とりざた", + "pos": "名詞", + "pn": -0.551643 + }, + { + "surface": "食み出す", + "readging": "はみだす", + "pos": "動詞", + "pn": -0.55165 + }, + { + "surface": "口吻", + "readging": "こうふん", + "pos": "名詞", + "pn": -0.551674 + }, + { + "surface": "火攻め", + "readging": "ひぜめ", + "pos": "名詞", + "pn": -0.551688 + }, + { + "surface": "今や", + "readging": "いまや", + "pos": "副詞", + "pn": -0.551729 + }, + { + "surface": "跡目", + "readging": "あとめ", + "pos": "名詞", + "pn": -0.551734 + }, + { + "surface": "追手", + "readging": "おいて", + "pos": "名詞", + "pn": -0.55174 + }, + { + "surface": "二年生植物", + "readging": "にねんせいしょくぶつ", + "pos": "名詞", + "pn": -0.551749 + }, + { + "surface": "混合", + "readging": "こんごう", + "pos": "名詞", + "pn": -0.551753 + }, + { + "surface": "面", + "readging": "づら", + "pos": "名詞", + "pn": -0.551773 + }, + { + "surface": "腔腸動物", + "readging": "こうちょうどうぶつ", + "pos": "名詞", + "pn": -0.551777 + }, + { + "surface": "警醒", + "readging": "けいせい", + "pos": "名詞", + "pn": -0.551788 + }, + { + "surface": "頭", + "readging": "かぶり", + "pos": "名詞", + "pn": -0.551798 + }, + { + "surface": "東遷", + "readging": "とうせん", + "pos": "名詞", + "pn": -0.551832 + }, + { + "surface": "水曜", + "readging": "すいよう", + "pos": "名詞", + "pn": -0.551836 + }, + { + "surface": "文脈", + "readging": "ぶんみゃく", + "pos": "名詞", + "pn": -0.551931 + }, + { + "surface": "仏縁", + "readging": "ぶつえん", + "pos": "名詞", + "pn": -0.551936 + }, + { + "surface": "幼魚", + "readging": "ようぎょ", + "pos": "名詞", + "pn": -0.551939 + }, + { + "surface": "酉の市", + "readging": "とりのいち", + "pos": "名詞", + "pn": -0.551994 + }, + { + "surface": "凡作", + "readging": "ぼんさく", + "pos": "名詞", + "pn": -0.551998 + }, + { + "surface": "花茣蓙", + "readging": "はなござ", + "pos": "名詞", + "pn": -0.552056 + }, + { + "surface": "柏餅", + "readging": "かしわもち", + "pos": "名詞", + "pn": -0.552057 + }, + { + "surface": "外面", + "readging": "がいめん", + "pos": "名詞", + "pn": -0.55206 + }, + { + "surface": "茅", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.552061 + }, + { + "surface": "函", + "readging": "かん", + "pos": "名詞", + "pn": -0.552085 + }, + { + "surface": "総髪", + "readging": "そうはつ", + "pos": "名詞", + "pn": -0.552106 + }, + { + "surface": "ぐらつく", + "readging": "ぐらつく", + "pos": "動詞", + "pn": -0.552107 + }, + { + "surface": "いかなご", + "readging": "いかなご", + "pos": "名詞", + "pn": -0.552118 + }, + { + "surface": "堕す", + "readging": "だす", + "pos": "動詞", + "pn": -0.5522 + }, + { + "surface": "解雇", + "readging": "かいこ", + "pos": "名詞", + "pn": -0.552207 + }, + { + "surface": "控える", + "readging": "ひかえる", + "pos": "動詞", + "pn": -0.552242 + }, + { + "surface": "蛆", + "readging": "うじ", + "pos": "名詞", + "pn": -0.552248 + }, + { + "surface": "刊行", + "readging": "かんこう", + "pos": "名詞", + "pn": -0.552287 + }, + { + "surface": "漢詩", + "readging": "かんし", + "pos": "名詞", + "pn": -0.552292 + }, + { + "surface": "寝付く", + "readging": "ねつく", + "pos": "動詞", + "pn": -0.552292 + }, + { + "surface": "ゼラチン", + "readging": "ゼラチン", + "pos": "名詞", + "pn": -0.552297 + }, + { + "surface": "戦ぐ", + "readging": "そよぐ", + "pos": "動詞", + "pn": -0.552298 + }, + { + "surface": "一連", + "readging": "いちれん", + "pos": "名詞", + "pn": -0.552305 + }, + { + "surface": "暗中飛躍", + "readging": "あんちゅうひやく", + "pos": "名詞", + "pn": -0.552308 + }, + { + "surface": "封ずる", + "readging": "ほうずる", + "pos": "動詞", + "pn": -0.55233 + }, + { + "surface": "基部", + "readging": "きぶ", + "pos": "名詞", + "pn": -0.552393 + }, + { + "surface": "悖る", + "readging": "もとる", + "pos": "動詞", + "pn": -0.552409 + }, + { + "surface": "後", + "readging": "ご", + "pos": "名詞", + "pn": -0.552439 + }, + { + "surface": "尋め行く", + "readging": "とめゆく", + "pos": "動詞", + "pn": -0.552469 + }, + { + "surface": "端緒", + "readging": "たんしょ", + "pos": "名詞", + "pn": -0.552476 + }, + { + "surface": "成敗", + "readging": "せいばい", + "pos": "名詞", + "pn": -0.55249 + }, + { + "surface": "俗謡", + "readging": "ぞくよう", + "pos": "名詞", + "pn": -0.552513 + }, + { + "surface": "錘", + "readging": "すい", + "pos": "名詞", + "pn": -0.55252 + }, + { + "surface": "移行", + "readging": "いこう", + "pos": "名詞", + "pn": -0.552531 + }, + { + "surface": "行灯", + "readging": "あんどん", + "pos": "名詞", + "pn": -0.552562 + }, + { + "surface": "茶碗蒸", + "readging": "ちゃわんむし", + "pos": "名詞", + "pn": -0.552576 + }, + { + "surface": "鮭", + "readging": "さけ", + "pos": "名詞", + "pn": -0.552579 + }, + { + "surface": "朝夕", + "readging": "ちょうせき", + "pos": "名詞", + "pn": -0.552608 + }, + { + "surface": "鈍る", + "readging": "にぶる", + "pos": "動詞", + "pn": -0.552622 + }, + { + "surface": "棒手振り", + "readging": "ぼてふり", + "pos": "名詞", + "pn": -0.552628 + }, + { + "surface": "大凡", + "readging": "おおよそ", + "pos": "名詞", + "pn": -0.55269 + }, + { + "surface": "しがみつく", + "readging": "しがみつく", + "pos": "動詞", + "pn": -0.552712 + }, + { + "surface": "むずと", + "readging": "むずと", + "pos": "副詞", + "pn": -0.552717 + }, + { + "surface": "女狂い", + "readging": "おんなぐるい", + "pos": "名詞", + "pn": -0.552719 + }, + { + "surface": "密生", + "readging": "みっせい", + "pos": "名詞", + "pn": -0.552727 + }, + { + "surface": "蟻地獄", + "readging": "ありじごく", + "pos": "名詞", + "pn": -0.552767 + }, + { + "surface": "無花果", + "readging": "いちじく", + "pos": "名詞", + "pn": -0.552815 + }, + { + "surface": "攫う", + "readging": "さらう", + "pos": "動詞", + "pn": -0.552823 + }, + { + "surface": "備え", + "readging": "そなえ", + "pos": "名詞", + "pn": -0.552875 + }, + { + "surface": "虫干", + "readging": "むしぼし", + "pos": "名詞", + "pn": -0.552901 + }, + { + "surface": "口角", + "readging": "こうかく", + "pos": "名詞", + "pn": -0.552925 + }, + { + "surface": "烏天狗", + "readging": "からすてんぐ", + "pos": "名詞", + "pn": -0.552928 + }, + { + "surface": "地溝", + "readging": "ちこう", + "pos": "名詞", + "pn": -0.552964 + }, + { + "surface": "目配せ", + "readging": "めくばせ", + "pos": "名詞", + "pn": -0.552984 + }, + { + "surface": "弑する", + "readging": "しいする", + "pos": "動詞", + "pn": -0.553013 + }, + { + "surface": "ドック", + "readging": "ドック", + "pos": "名詞", + "pn": -0.553021 + }, + { + "surface": "小百合", + "readging": "さゆり", + "pos": "名詞", + "pn": -0.553035 + }, + { + "surface": "阿呆陀羅経", + "readging": "あほだらきょう", + "pos": "名詞", + "pn": -0.553036 + }, + { + "surface": "締込み", + "readging": "しめこみ", + "pos": "名詞", + "pn": -0.55307 + }, + { + "surface": "鸛", + "readging": "こうのとり", + "pos": "名詞", + "pn": -0.553084 + }, + { + "surface": "諒恕", + "readging": "りょうじょ", + "pos": "名詞", + "pn": -0.553087 + }, + { + "surface": "高札", + "readging": "こうさつ", + "pos": "名詞", + "pn": -0.553089 + }, + { + "surface": "緑青", + "readging": "ろくしょう", + "pos": "名詞", + "pn": -0.55309 + }, + { + "surface": "ダブル", + "readging": "ダブル", + "pos": "名詞", + "pn": -0.553093 + }, + { + "surface": "面皮", + "readging": "めんぴ", + "pos": "名詞", + "pn": -0.553135 + }, + { + "surface": "判決", + "readging": "はんけつ", + "pos": "名詞", + "pn": -0.553144 + }, + { + "surface": "里程", + "readging": "りてい", + "pos": "名詞", + "pn": -0.553153 + }, + { + "surface": "心中", + "readging": "しんじゅう", + "pos": "名詞", + "pn": -0.553159 + }, + { + "surface": "来復", + "readging": "らいふく", + "pos": "名詞", + "pn": -0.553167 + }, + { + "surface": "走り", + "readging": "はしり", + "pos": "名詞", + "pn": -0.553167 + }, + { + "surface": "跳ね上がる", + "readging": "はねあがる", + "pos": "動詞", + "pn": -0.553206 + }, + { + "surface": "並", + "readging": "なみ", + "pos": "名詞", + "pn": -0.553213 + }, + { + "surface": "旅人", + "readging": "りょじん", + "pos": "名詞", + "pn": -0.553242 + }, + { + "surface": "謝金", + "readging": "しゃきん", + "pos": "名詞", + "pn": -0.553252 + }, + { + "surface": "寸切り", + "readging": "ずんぎり", + "pos": "名詞", + "pn": -0.553259 + }, + { + "surface": "環節", + "readging": "かんせつ", + "pos": "名詞", + "pn": -0.55332 + }, + { + "surface": "べとべと", + "readging": "べとべと", + "pos": "副詞", + "pn": -0.553339 + }, + { + "surface": "母子草", + "readging": "ははこぐさ", + "pos": "名詞", + "pn": -0.553357 + }, + { + "surface": "風草", + "readging": "かぜくさ", + "pos": "名詞", + "pn": -0.553362 + }, + { + "surface": "瀰漫", + "readging": "びまん", + "pos": "名詞", + "pn": -0.55337 + }, + { + "surface": "闘鶏", + "readging": "とうけい", + "pos": "名詞", + "pn": -0.553378 + }, + { + "surface": "太藺", + "readging": "ふとい", + "pos": "名詞", + "pn": -0.553391 + }, + { + "surface": "拝趨", + "readging": "はいすう", + "pos": "名詞", + "pn": -0.553493 + }, + { + "surface": "牛尾菜", + "readging": "しおで", + "pos": "名詞", + "pn": -0.553493 + }, + { + "surface": "無くする", + "readging": "なくする", + "pos": "動詞", + "pn": -0.553505 + }, + { + "surface": "耄碌", + "readging": "もうろく", + "pos": "名詞", + "pn": -0.553516 + }, + { + "surface": "跳ね返り", + "readging": "はねかえり", + "pos": "名詞", + "pn": -0.553538 + }, + { + "surface": "頭領", + "readging": "とうりょう", + "pos": "名詞", + "pn": -0.55356 + }, + { + "surface": "東西", + "readging": "とうざい", + "pos": "名詞", + "pn": -0.553562 + }, + { + "surface": "閑人", + "readging": "ひまじん", + "pos": "名詞", + "pn": -0.553597 + }, + { + "surface": "山間", + "readging": "やまあい", + "pos": "名詞", + "pn": -0.553603 + }, + { + "surface": "弔電", + "readging": "ちょうでん", + "pos": "名詞", + "pn": -0.553652 + }, + { + "surface": "しゃくり泣き", + "readging": "しゃくりなき", + "pos": "名詞", + "pn": -0.553663 + }, + { + "surface": "ベース", + "readging": "ベースアップ", + "pos": "名詞", + "pn": -0.553667 + }, + { + "surface": "殊に", + "readging": "ことに", + "pos": "副詞", + "pn": -0.55373 + }, + { + "surface": "隠し", + "readging": "かくし", + "pos": "名詞", + "pn": -0.553794 + }, + { + "surface": "文法", + "readging": "ぶんぽう", + "pos": "名詞", + "pn": -0.55384 + }, + { + "surface": "ほじくる", + "readging": "ほじくる", + "pos": "動詞", + "pn": -0.553922 + }, + { + "surface": "分秒", + "readging": "ふんびょう", + "pos": "名詞", + "pn": -0.553925 + }, + { + "surface": "洗い張り", + "readging": "あらいはり", + "pos": "名詞", + "pn": -0.55393 + }, + { + "surface": "折れ釘", + "readging": "おれくぎ", + "pos": "名詞", + "pn": -0.553935 + }, + { + "surface": "羇旅", + "readging": "きりょ", + "pos": "名詞", + "pn": -0.553952 + }, + { + "surface": "もんぺ", + "readging": "もんぺ", + "pos": "名詞", + "pn": -0.553956 + }, + { + "surface": "晩鐘", + "readging": "ばんしょう", + "pos": "名詞", + "pn": -0.553974 + }, + { + "surface": "遅番", + "readging": "おそばん", + "pos": "名詞", + "pn": -0.553995 + }, + { + "surface": "風待ち", + "readging": "かざまち", + "pos": "名詞", + "pn": -0.554006 + }, + { + "surface": "摘入れ", + "readging": "つみいれ", + "pos": "名詞", + "pn": -0.554057 + }, + { + "surface": "注ぐ", + "readging": "つぐ", + "pos": "動詞", + "pn": -0.554074 + }, + { + "surface": "親類", + "readging": "しんるい", + "pos": "名詞", + "pn": -0.554077 + }, + { + "surface": "ソケット", + "readging": "ソケット", + "pos": "名詞", + "pn": -0.554078 + }, + { + "surface": "詰る", + "readging": "つまる", + "pos": "動詞", + "pn": -0.554145 + }, + { + "surface": "手練", + "readging": "しゅれん", + "pos": "名詞", + "pn": -0.554146 + }, + { + "surface": "去年", + "readging": "こぞ", + "pos": "名詞", + "pn": -0.554149 + }, + { + "surface": "退歩", + "readging": "たいほ", + "pos": "名詞", + "pn": -0.554169 + }, + { + "surface": "区間", + "readging": "くかん", + "pos": "名詞", + "pn": -0.554177 + }, + { + "surface": "獄門", + "readging": "ごくもん", + "pos": "名詞", + "pn": -0.554181 + }, + { + "surface": "かどわかす", + "readging": "かどわかす", + "pos": "動詞", + "pn": -0.554206 + }, + { + "surface": "避雷針", + "readging": "ひらいしん", + "pos": "名詞", + "pn": -0.554216 + }, + { + "surface": "溜池", + "readging": "ためいけ", + "pos": "名詞", + "pn": -0.554218 + }, + { + "surface": "吸飲み", + "readging": "すいのみ", + "pos": "名詞", + "pn": -0.554262 + }, + { + "surface": "見捨てる", + "readging": "みすてる", + "pos": "動詞", + "pn": -0.554268 + }, + { + "surface": "伸し上がる", + "readging": "のしあがる", + "pos": "動詞", + "pn": -0.5543 + }, + { + "surface": "報告", + "readging": "ほうこく", + "pos": "名詞", + "pn": -0.554317 + }, + { + "surface": "消壺", + "readging": "けしつぼ", + "pos": "名詞", + "pn": -0.55432 + }, + { + "surface": "腎", + "readging": "じん", + "pos": "名詞", + "pn": -0.554357 + }, + { + "surface": "どうやら", + "readging": "どうやらこうやら", + "pos": "副詞", + "pn": -0.554389 + }, + { + "surface": "結節", + "readging": "けっせつ", + "pos": "名詞", + "pn": -0.554397 + }, + { + "surface": "石鹸", + "readging": "せっけん", + "pos": "名詞", + "pn": -0.554403 + }, + { + "surface": "符", + "readging": "ふ", + "pos": "名詞", + "pn": -0.554404 + }, + { + "surface": "両親", + "readging": "りょうしん", + "pos": "名詞", + "pn": -0.55442 + }, + { + "surface": "未だ", + "readging": "いまだ", + "pos": "副詞", + "pn": -0.554439 + }, + { + "surface": "釣台", + "readging": "つりだい", + "pos": "名詞", + "pn": -0.554448 + }, + { + "surface": "秋刀魚", + "readging": "さんま", + "pos": "名詞", + "pn": -0.554449 + }, + { + "surface": "抜毛", + "readging": "ぬけげ", + "pos": "名詞", + "pn": -0.554465 + }, + { + "surface": "岡目", + "readging": "おかめ", + "pos": "名詞", + "pn": -0.554479 + }, + { + "surface": "聞くならく", + "readging": "きくならく", + "pos": "副詞", + "pn": -0.554521 + }, + { + "surface": "のっぺらぼう", + "readging": "のっぺらぼう", + "pos": "名詞", + "pn": -0.554531 + }, + { + "surface": "塔", + "readging": "とう", + "pos": "名詞", + "pn": -0.554538 + }, + { + "surface": "蔓草", + "readging": "つるくさ", + "pos": "名詞", + "pn": -0.554545 + }, + { + "surface": "間奏", + "readging": "かんそう", + "pos": "名詞", + "pn": -0.55455 + }, + { + "surface": "太股", + "readging": "ふともも", + "pos": "名詞", + "pn": -0.554558 + }, + { + "surface": "練塀", + "readging": "ねりべい", + "pos": "名詞", + "pn": -0.554575 + }, + { + "surface": "送り状", + "readging": "おくりじょう", + "pos": "名詞", + "pn": -0.55459 + }, + { + "surface": "吹きこぼれる", + "readging": "ふきこぼれる", + "pos": "動詞", + "pn": -0.554612 + }, + { + "surface": "脇道", + "readging": "わきみち", + "pos": "名詞", + "pn": -0.55462 + }, + { + "surface": "片時", + "readging": "かたとき", + "pos": "名詞", + "pn": -0.554622 + }, + { + "surface": "正午", + "readging": "しょうご", + "pos": "名詞", + "pn": -0.554625 + }, + { + "surface": "ステップ", + "readging": "ステップ", + "pos": "名詞", + "pn": -0.554638 + }, + { + "surface": "回腸", + "readging": "かいちょう", + "pos": "名詞", + "pn": -0.554651 + }, + { + "surface": "蜘蛛猿", + "readging": "くもざる", + "pos": "名詞", + "pn": -0.554672 + }, + { + "surface": "アクセサリー", + "readging": "アクセサリー", + "pos": "名詞", + "pn": -0.554706 + }, + { + "surface": "券", + "readging": "けん", + "pos": "名詞", + "pn": -0.554739 + }, + { + "surface": "飢餓", + "readging": "きが", + "pos": "名詞", + "pn": -0.554774 + }, + { + "surface": "手錠", + "readging": "てじょう", + "pos": "名詞", + "pn": -0.554774 + }, + { + "surface": "米麦", + "readging": "べいばく", + "pos": "名詞", + "pn": -0.554788 + }, + { + "surface": "虚無僧", + "readging": "こむそう", + "pos": "名詞", + "pn": -0.554792 + }, + { + "surface": "終息", + "readging": "しゅうそく", + "pos": "名詞", + "pn": -0.554821 + }, + { + "surface": "下駄履き", + "readging": "げたばき", + "pos": "名詞", + "pn": -0.55483 + }, + { + "surface": "目処", + "readging": "めど", + "pos": "名詞", + "pn": -0.55484 + }, + { + "surface": "明礬", + "readging": "みょうばん", + "pos": "名詞", + "pn": -0.554854 + }, + { + "surface": "平板", + "readging": "へいばん", + "pos": "名詞", + "pn": -0.554858 + }, + { + "surface": "鼬", + "readging": "いたち", + "pos": "名詞", + "pn": -0.554869 + }, + { + "surface": "車引", + "readging": "くるまひき", + "pos": "名詞", + "pn": -0.554892 + }, + { + "surface": "川施餓鬼", + "readging": "かわせがき", + "pos": "名詞", + "pn": -0.554898 + }, + { + "surface": "真葛", + "readging": "さねかずら", + "pos": "名詞", + "pn": -0.554902 + }, + { + "surface": "兼有", + "readging": "けんゆう", + "pos": "名詞", + "pn": -0.55492 + }, + { + "surface": "おじゃん", + "readging": "おじゃん", + "pos": "名詞", + "pn": -0.554925 + }, + { + "surface": "ウ音便", + "readging": "うおんびん", + "pos": "名詞", + "pn": -0.554973 + }, + { + "surface": "スカート", + "readging": "スカート", + "pos": "名詞", + "pn": -0.554974 + }, + { + "surface": "湯通し", + "readging": "ゆどおし", + "pos": "名詞", + "pn": -0.554998 + }, + { + "surface": "創痍", + "readging": "そうい", + "pos": "名詞", + "pn": -0.555 + }, + { + "surface": "スネークウッド", + "readging": "スネークウッド", + "pos": "名詞", + "pn": -0.555001 + }, + { + "surface": "回覧", + "readging": "かいらん", + "pos": "名詞", + "pn": -0.555003 + }, + { + "surface": "壟断", + "readging": "ろうだん", + "pos": "名詞", + "pn": -0.555018 + }, + { + "surface": "豌豆", + "readging": "えんどう", + "pos": "名詞", + "pn": -0.555021 + }, + { + "surface": "弾ずる", + "readging": "だんずる", + "pos": "動詞", + "pn": -0.555054 + }, + { + "surface": "雑嚢", + "readging": "ざつのう", + "pos": "名詞", + "pn": -0.555058 + }, + { + "surface": "ステッカー", + "readging": "ステッカー", + "pos": "名詞", + "pn": -0.555065 + }, + { + "surface": "心付く", + "readging": "こころづく", + "pos": "動詞", + "pn": -0.555081 + }, + { + "surface": "ダリア", + "readging": "ダリア", + "pos": "名詞", + "pn": -0.555104 + }, + { + "surface": "水飲み百姓", + "readging": "みずのみ", + "pos": "名詞", + "pn": -0.555145 + }, + { + "surface": "拍車", + "readging": "はくしゃ", + "pos": "名詞", + "pn": -0.555166 + }, + { + "surface": "綿織物", + "readging": "めんおりもの", + "pos": "名詞", + "pn": -0.555169 + }, + { + "surface": "目上", + "readging": "めうえ", + "pos": "名詞", + "pn": -0.555218 + }, + { + "surface": "寓言", + "readging": "ぐうげん", + "pos": "名詞", + "pn": -0.555236 + }, + { + "surface": "筆法", + "readging": "ひっぽう", + "pos": "名詞", + "pn": -0.555238 + }, + { + "surface": "金繰り", + "readging": "かねぐり", + "pos": "名詞", + "pn": -0.555263 + }, + { + "surface": "ほぐれる", + "readging": "ほぐれる", + "pos": "動詞", + "pn": -0.555281 + }, + { + "surface": "換物", + "readging": "かんぶつ", + "pos": "名詞", + "pn": -0.555296 + }, + { + "surface": "鰤", + "readging": "ぶり", + "pos": "名詞", + "pn": -0.555311 + }, + { + "surface": "表札", + "readging": "ひょうさつ", + "pos": "名詞", + "pn": -0.555324 + }, + { + "surface": "熟字訓", + "readging": "じゅくじくん", + "pos": "名詞", + "pn": -0.55534 + }, + { + "surface": "集会", + "readging": "しゅうかい", + "pos": "名詞", + "pn": -0.555364 + }, + { + "surface": "政局", + "readging": "せいきょく", + "pos": "名詞", + "pn": -0.555367 + }, + { + "surface": "蹴爪", + "readging": "けづめ", + "pos": "名詞", + "pn": -0.555372 + }, + { + "surface": "スプーン", + "readging": "スプーン", + "pos": "名詞", + "pn": -0.555373 + }, + { + "surface": "個室", + "readging": "こしつ", + "pos": "名詞", + "pn": -0.555378 + }, + { + "surface": "召還", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.555393 + }, + { + "surface": "玉垣", + "readging": "たまがき", + "pos": "名詞", + "pn": -0.555406 + }, + { + "surface": "冷飯草履", + "readging": "ひやめしぞうり", + "pos": "名詞", + "pn": -0.555416 + }, + { + "surface": "黄身", + "readging": "きみ", + "pos": "名詞", + "pn": -0.555416 + }, + { + "surface": "角巻", + "readging": "かくまき", + "pos": "名詞", + "pn": -0.555418 + }, + { + "surface": "縄付", + "readging": "なわつき", + "pos": "名詞", + "pn": -0.555421 + }, + { + "surface": "流浪", + "readging": "るろう", + "pos": "名詞", + "pn": -0.555438 + }, + { + "surface": "住まう", + "readging": "すまう", + "pos": "動詞", + "pn": -0.555448 + }, + { + "surface": "バケツ", + "readging": "バケツ", + "pos": "名詞", + "pn": -0.555463 + }, + { + "surface": "火葬", + "readging": "かそう", + "pos": "名詞", + "pn": -0.555503 + }, + { + "surface": "金線", + "readging": "きんせん", + "pos": "名詞", + "pn": -0.555513 + }, + { + "surface": "ごみ取り", + "readging": "ごみとり", + "pos": "名詞", + "pn": -0.555581 + }, + { + "surface": "短気", + "readging": "たんき", + "pos": "名詞", + "pn": -0.555583 + }, + { + "surface": "手工", + "readging": "しゅこう", + "pos": "名詞", + "pn": -0.555614 + }, + { + "surface": "豆汁", + "readging": "ご", + "pos": "名詞", + "pn": -0.555621 + }, + { + "surface": "巾着", + "readging": "きんちゃく", + "pos": "名詞", + "pn": -0.555668 + }, + { + "surface": "風の便り", + "readging": "かぜのたより", + "pos": "名詞", + "pn": -0.55567 + }, + { + "surface": "お定まり", + "readging": "おさだまり", + "pos": "名詞", + "pn": -0.555673 + }, + { + "surface": "旧観", + "readging": "きゅうかん", + "pos": "名詞", + "pn": -0.555675 + }, + { + "surface": "オムレツ", + "readging": "オムレツ", + "pos": "名詞", + "pn": -0.555681 + }, + { + "surface": "徒刑", + "readging": "とけい", + "pos": "名詞", + "pn": -0.555759 + }, + { + "surface": "処処", + "readging": "しょしょ", + "pos": "名詞", + "pn": -0.555798 + }, + { + "surface": "戸棚", + "readging": "とだな", + "pos": "名詞", + "pn": -0.555814 + }, + { + "surface": "しっぺ返し", + "readging": "しっぺがえし", + "pos": "名詞", + "pn": -0.555828 + }, + { + "surface": "燐酸", + "readging": "りんさん", + "pos": "名詞", + "pn": -0.555838 + }, + { + "surface": "妖魔", + "readging": "ようま", + "pos": "名詞", + "pn": -0.555842 + }, + { + "surface": "出向く", + "readging": "でむく", + "pos": "動詞", + "pn": -0.555851 + }, + { + "surface": "ハンモック", + "readging": "ハンモック", + "pos": "名詞", + "pn": -0.555864 + }, + { + "surface": "バター", + "readging": "バター", + "pos": "名詞", + "pn": -0.555879 + }, + { + "surface": "小説", + "readging": "しょうせつ", + "pos": "名詞", + "pn": -0.555883 + }, + { + "surface": "思い立つ", + "readging": "おもいたつ", + "pos": "動詞", + "pn": -0.555885 + }, + { + "surface": "濯ぐ", + "readging": "ゆすぐ", + "pos": "動詞", + "pn": -0.555894 + }, + { + "surface": "空席", + "readging": "くうせき", + "pos": "名詞", + "pn": -0.555902 + }, + { + "surface": "簒立", + "readging": "さんりつ", + "pos": "名詞", + "pn": -0.555934 + }, + { + "surface": "横糸", + "readging": "よこいと", + "pos": "名詞", + "pn": -0.555945 + }, + { + "surface": "断切る", + "readging": "たちきる", + "pos": "動詞", + "pn": -0.555959 + }, + { + "surface": "破く", + "readging": "やぶく", + "pos": "動詞", + "pn": -0.555967 + }, + { + "surface": "散らし鮨", + "readging": "ちらしずし", + "pos": "名詞", + "pn": -0.55597 + }, + { + "surface": "飲酒", + "readging": "いんしゅ", + "pos": "名詞", + "pn": -0.556012 + }, + { + "surface": "酸味", + "readging": "さんみ", + "pos": "名詞", + "pn": -0.556022 + }, + { + "surface": "水干", + "readging": "すいかん", + "pos": "名詞", + "pn": -0.556031 + }, + { + "surface": "総崩れ", + "readging": "そうくずれ", + "pos": "名詞", + "pn": -0.556031 + }, + { + "surface": "半鐘泥棒", + "readging": "はんしょうどろぼう", + "pos": "名詞", + "pn": -0.556074 + }, + { + "surface": "激務", + "readging": "げきむ", + "pos": "名詞", + "pn": -0.556077 + }, + { + "surface": "餡蜜", + "readging": "あんみつ", + "pos": "名詞", + "pn": -0.556081 + }, + { + "surface": "牡丹桜", + "readging": "ぼたんざくら", + "pos": "名詞", + "pn": -0.556086 + }, + { + "surface": "水枕", + "readging": "みずまくら", + "pos": "名詞", + "pn": -0.556092 + }, + { + "surface": "帯皮", + "readging": "おびかわ", + "pos": "名詞", + "pn": -0.556149 + }, + { + "surface": "失せる", + "readging": "うせる", + "pos": "動詞", + "pn": -0.556173 + }, + { + "surface": "鍾乳石", + "readging": "しょうにゅうせき", + "pos": "名詞", + "pn": -0.556176 + }, + { + "surface": "砂岩", + "readging": "さがん", + "pos": "名詞", + "pn": -0.556189 + }, + { + "surface": "蒸留", + "readging": "じょうりゅう", + "pos": "名詞", + "pn": -0.556209 + }, + { + "surface": "軽業師", + "readging": "かるわざし", + "pos": "名詞", + "pn": -0.556243 + }, + { + "surface": "角度", + "readging": "かくど", + "pos": "名詞", + "pn": -0.556256 + }, + { + "surface": "引付け", + "readging": "ひきつけ", + "pos": "名詞", + "pn": -0.556275 + }, + { + "surface": "肩衣", + "readging": "かたぎぬ", + "pos": "名詞", + "pn": -0.556328 + }, + { + "surface": "取越す", + "readging": "とりこす", + "pos": "動詞", + "pn": -0.556346 + }, + { + "surface": "胃散", + "readging": "いさん", + "pos": "名詞", + "pn": -0.556358 + }, + { + "surface": "入目", + "readging": "いりめ", + "pos": "名詞", + "pn": -0.556389 + }, + { + "surface": "川岸", + "readging": "かわぎし", + "pos": "名詞", + "pn": -0.556401 + }, + { + "surface": "桃色", + "readging": "ももいろ", + "pos": "名詞", + "pn": -0.556459 + }, + { + "surface": "収穫", + "readging": "しゅうかく", + "pos": "名詞", + "pn": -0.55649 + }, + { + "surface": "悪びれる", + "readging": "わるびれる", + "pos": "動詞", + "pn": -0.556505 + }, + { + "surface": "形跡", + "readging": "けいせき", + "pos": "名詞", + "pn": -0.556511 + }, + { + "surface": "黒黴", + "readging": "くろかび", + "pos": "名詞", + "pn": -0.556516 + }, + { + "surface": "しちりけっぱい", + "readging": "しちりけっぱい", + "pos": "名詞", + "pn": -0.556526 + }, + { + "surface": "煤竹", + "readging": "すすたけ", + "pos": "名詞", + "pn": -0.556531 + }, + { + "surface": "うろつく", + "readging": "うろつく", + "pos": "動詞", + "pn": -0.556537 + }, + { + "surface": "呪符", + "readging": "じゅふ", + "pos": "名詞", + "pn": -0.556568 + }, + { + "surface": "線形", + "readging": "せんけい", + "pos": "名詞", + "pn": -0.556571 + }, + { + "surface": "無音", + "readging": "ぶいん", + "pos": "名詞", + "pn": -0.556572 + }, + { + "surface": "怒る", + "readging": "いかる", + "pos": "動詞", + "pn": -0.556576 + }, + { + "surface": "美人局", + "readging": "つつもたせ", + "pos": "名詞", + "pn": -0.556579 + }, + { + "surface": "櫛", + "readging": "くし", + "pos": "名詞", + "pn": -0.556584 + }, + { + "surface": "鞣す", + "readging": "なめす", + "pos": "動詞", + "pn": -0.556643 + }, + { + "surface": "虫歯", + "readging": "むしば", + "pos": "名詞", + "pn": -0.556645 + }, + { + "surface": "徒労", + "readging": "とろう", + "pos": "名詞", + "pn": -0.556657 + }, + { + "surface": "蜉蝣", + "readging": "かげろう", + "pos": "名詞", + "pn": -0.556669 + }, + { + "surface": "ワイシャツ", + "readging": "ワイシャツ", + "pos": "名詞", + "pn": -0.556671 + }, + { + "surface": "葛布", + "readging": "くずふ", + "pos": "名詞", + "pn": -0.556676 + }, + { + "surface": "隔離", + "readging": "かくり", + "pos": "名詞", + "pn": -0.556681 + }, + { + "surface": "警備", + "readging": "けいび", + "pos": "名詞", + "pn": -0.556681 + }, + { + "surface": "先述", + "readging": "せんじゅつ", + "pos": "名詞", + "pn": -0.556707 + }, + { + "surface": "ローション", + "readging": "ローション", + "pos": "名詞", + "pn": -0.556738 + }, + { + "surface": "泥鰌", + "readging": "どじょう", + "pos": "名詞", + "pn": -0.556743 + }, + { + "surface": "鋲", + "readging": "びょう", + "pos": "名詞", + "pn": -0.556744 + }, + { + "surface": "千慮", + "readging": "せんりょ", + "pos": "名詞", + "pn": -0.556783 + }, + { + "surface": "密着", + "readging": "みっちゃく", + "pos": "名詞", + "pn": -0.556793 + }, + { + "surface": "負う", + "readging": "おう", + "pos": "動詞", + "pn": -0.556798 + }, + { + "surface": "不治", + "readging": "ふじ", + "pos": "名詞", + "pn": -0.556817 + }, + { + "surface": "敝衣", + "readging": "へいい", + "pos": "名詞", + "pn": -0.556845 + }, + { + "surface": "地層", + "readging": "ちそう", + "pos": "名詞", + "pn": -0.556858 + }, + { + "surface": "瑕瑾", + "readging": "かきん", + "pos": "名詞", + "pn": -0.55686 + }, + { + "surface": "土製", + "readging": "どせい", + "pos": "名詞", + "pn": -0.556969 + }, + { + "surface": "銀宝", + "readging": "ぎんぽ", + "pos": "名詞", + "pn": -0.557012 + }, + { + "surface": "花籠", + "readging": "はなかご", + "pos": "名詞", + "pn": -0.557017 + }, + { + "surface": "防止", + "readging": "ぼうし", + "pos": "名詞", + "pn": -0.557018 + }, + { + "surface": "お玉", + "readging": "おたま", + "pos": "名詞", + "pn": -0.557025 + }, + { + "surface": "寂", + "readging": "さび", + "pos": "名詞", + "pn": -0.557039 + }, + { + "surface": "ファースト フード", + "readging": "ファースト フード", + "pos": "名詞", + "pn": -0.557045 + }, + { + "surface": "鳥類", + "readging": "ちょうるい", + "pos": "名詞", + "pn": -0.557049 + }, + { + "surface": "成立ち", + "readging": "なりたち", + "pos": "名詞", + "pn": -0.557085 + }, + { + "surface": "取落す", + "readging": "とりおとす", + "pos": "動詞", + "pn": -0.557118 + }, + { + "surface": "陣中", + "readging": "じんちゅう", + "pos": "名詞", + "pn": -0.557125 + }, + { + "surface": "寝坊", + "readging": "ねぼう", + "pos": "名詞", + "pn": -0.557133 + }, + { + "surface": "糠漬", + "readging": "ぬかづけ", + "pos": "名詞", + "pn": -0.557134 + }, + { + "surface": "結尾", + "readging": "けつび", + "pos": "名詞", + "pn": -0.557145 + }, + { + "surface": "趨勢", + "readging": "すうせい", + "pos": "名詞", + "pn": -0.55715 + }, + { + "surface": "別室", + "readging": "べっしつ", + "pos": "名詞", + "pn": -0.557172 + }, + { + "surface": "隠宅", + "readging": "いんたく", + "pos": "名詞", + "pn": -0.557176 + }, + { + "surface": "薦", + "readging": "こも", + "pos": "名詞", + "pn": -0.557187 + }, + { + "surface": "碧玉", + "readging": "へきぎょく", + "pos": "名詞", + "pn": -0.557205 + }, + { + "surface": "船員", + "readging": "せんいん", + "pos": "名詞", + "pn": -0.557218 + }, + { + "surface": "一夜", + "readging": "ひとよ", + "pos": "名詞", + "pn": -0.557235 + }, + { + "surface": "積む", + "readging": "つむ", + "pos": "動詞", + "pn": -0.557247 + }, + { + "surface": "辻強盗", + "readging": "つじごうとう", + "pos": "名詞", + "pn": -0.557249 + }, + { + "surface": "巷説", + "readging": "こうせつ", + "pos": "名詞", + "pn": -0.55727 + }, + { + "surface": "軍役", + "readging": "ぐんえき", + "pos": "名詞", + "pn": -0.557286 + }, + { + "surface": "博多織", + "readging": "はかたおり", + "pos": "名詞", + "pn": -0.557329 + }, + { + "surface": "代代", + "readging": "よよ", + "pos": "名詞", + "pn": -0.557359 + }, + { + "surface": "流行", + "readging": "はやり", + "pos": "名詞", + "pn": -0.557375 + }, + { + "surface": "猿面", + "readging": "さるめん", + "pos": "名詞", + "pn": -0.557379 + }, + { + "surface": "堪える", + "readging": "こらえる", + "pos": "動詞", + "pn": -0.557386 + }, + { + "surface": "居館", + "readging": "きょかん", + "pos": "名詞", + "pn": -0.557396 + }, + { + "surface": "喚く", + "readging": "おめく", + "pos": "動詞", + "pn": -0.557398 + }, + { + "surface": "土蔵", + "readging": "どぞう", + "pos": "名詞", + "pn": -0.557402 + }, + { + "surface": "円", + "readging": "つぶら", + "pos": "名詞", + "pn": -0.557421 + }, + { + "surface": "天目", + "readging": "てんもく", + "pos": "名詞", + "pn": -0.557433 + }, + { + "surface": "石頭", + "readging": "いしあたま", + "pos": "名詞", + "pn": -0.557445 + }, + { + "surface": "向う付け", + "readging": "むこうづけ", + "pos": "名詞", + "pn": -0.557469 + }, + { + "surface": "復元", + "readging": "ふくげん", + "pos": "名詞", + "pn": -0.557488 + }, + { + "surface": "四辺", + "readging": "しへん", + "pos": "名詞", + "pn": -0.557509 + }, + { + "surface": "小片", + "readging": "しょうへん", + "pos": "名詞", + "pn": -0.557518 + }, + { + "surface": "聚落", + "readging": "じゅらく", + "pos": "名詞", + "pn": -0.557535 + }, + { + "surface": "ボール盤", + "readging": "ボールばん", + "pos": "名詞", + "pn": -0.557556 + }, + { + "surface": "賓頭盧", + "readging": "びんずる", + "pos": "名詞", + "pn": -0.557568 + }, + { + "surface": "庭園", + "readging": "ていえん", + "pos": "名詞", + "pn": -0.55758 + }, + { + "surface": "金棒引き", + "readging": "かなぼうひき", + "pos": "名詞", + "pn": -0.557596 + }, + { + "surface": "醜男", + "readging": "ぶおとこ", + "pos": "名詞", + "pn": -0.557624 + }, + { + "surface": "幽冥", + "readging": "ゆうめい", + "pos": "名詞", + "pn": -0.557642 + }, + { + "surface": "鷭", + "readging": "ばん", + "pos": "名詞", + "pn": -0.557645 + }, + { + "surface": "用法", + "readging": "ようほう", + "pos": "名詞", + "pn": -0.557655 + }, + { + "surface": "恨事", + "readging": "こんじ", + "pos": "名詞", + "pn": -0.557673 + }, + { + "surface": "金塊", + "readging": "きんかい", + "pos": "名詞", + "pn": -0.557678 + }, + { + "surface": "曰く", + "readging": "いわく", + "pos": "名詞", + "pn": -0.557679 + }, + { + "surface": "千差万別", + "readging": "せんさばんべつ", + "pos": "名詞", + "pn": -0.557692 + }, + { + "surface": "本官", + "readging": "ほんかん", + "pos": "名詞", + "pn": -0.557709 + }, + { + "surface": "賄う", + "readging": "まかなう", + "pos": "動詞", + "pn": -0.557712 + }, + { + "surface": "玉算", + "readging": "たまざん", + "pos": "名詞", + "pn": -0.557719 + }, + { + "surface": "砲弾", + "readging": "ほうだん", + "pos": "名詞", + "pn": -0.557744 + }, + { + "surface": "亀の子束子", + "readging": "かめのこだわし", + "pos": "名詞", + "pn": -0.557768 + }, + { + "surface": "自己嫌悪", + "readging": "じこけんお", + "pos": "名詞", + "pn": -0.5578 + }, + { + "surface": "ビール", + "readging": "ビール", + "pos": "名詞", + "pn": -0.557867 + }, + { + "surface": "独りぼっち", + "readging": "ひとりぼっち", + "pos": "名詞", + "pn": -0.557954 + }, + { + "surface": "桃", + "readging": "もも", + "pos": "名詞", + "pn": -0.557957 + }, + { + "surface": "一人", + "readging": "ひとりぐち", + "pos": "名詞", + "pn": -0.557964 + }, + { + "surface": "蠅叩き", + "readging": "はいたたき", + "pos": "名詞", + "pn": -0.557971 + }, + { + "surface": "破ける", + "readging": "やぶける", + "pos": "動詞", + "pn": -0.557987 + }, + { + "surface": "空解け", + "readging": "そらどけ", + "pos": "名詞", + "pn": -0.558042 + }, + { + "surface": "大綱", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.558069 + }, + { + "surface": "鉄槌", + "readging": "てっつい", + "pos": "名詞", + "pn": -0.558097 + }, + { + "surface": "居所", + "readging": "きょしょ", + "pos": "名詞", + "pn": -0.558116 + }, + { + "surface": "緒", + "readging": "いとぐち", + "pos": "名詞", + "pn": -0.558131 + }, + { + "surface": "片口鰯", + "readging": "かたくちいわし", + "pos": "名詞", + "pn": -0.558159 + }, + { + "surface": "粉微塵", + "readging": "こなみじん", + "pos": "名詞", + "pn": -0.558183 + }, + { + "surface": "人嫌い", + "readging": "ひとぎらい", + "pos": "名詞", + "pn": -0.5582 + }, + { + "surface": "幼主", + "readging": "ようしゅ", + "pos": "名詞", + "pn": -0.558201 + }, + { + "surface": "ぴくぴく", + "readging": "ぴくぴく", + "pos": "副詞", + "pn": -0.558221 + }, + { + "surface": "鞍擦れ", + "readging": "くらずれ", + "pos": "名詞", + "pn": -0.55826 + }, + { + "surface": "国", + "readging": "くに", + "pos": "名詞", + "pn": -0.558264 + }, + { + "surface": "大口", + "readging": "おおぐち", + "pos": "名詞", + "pn": -0.558265 + }, + { + "surface": "頂上", + "readging": "ちょうじょう", + "pos": "名詞", + "pn": -0.558294 + }, + { + "surface": "春画", + "readging": "しゅんが", + "pos": "名詞", + "pn": -0.558335 + }, + { + "surface": "フォール", + "readging": "フォール", + "pos": "名詞", + "pn": -0.558364 + }, + { + "surface": "下り", + "readging": "くだり", + "pos": "名詞", + "pn": -0.558371 + }, + { + "surface": "経費", + "readging": "けいひ", + "pos": "名詞", + "pn": -0.558378 + }, + { + "surface": "手技", + "readging": "しゅぎ", + "pos": "名詞", + "pn": -0.558431 + }, + { + "surface": "揆", + "readging": "き", + "pos": "名詞", + "pn": -0.55845 + }, + { + "surface": "逆立てる", + "readging": "さかだてる", + "pos": "動詞", + "pn": -0.558464 + }, + { + "surface": "胡椒", + "readging": "こしょう", + "pos": "名詞", + "pn": -0.558478 + }, + { + "surface": "常闇", + "readging": "とこやみ", + "pos": "名詞", + "pn": -0.558487 + }, + { + "surface": "海鼠腸", + "readging": "このわた", + "pos": "名詞", + "pn": -0.55849 + }, + { + "surface": "翻訳", + "readging": "ほんやく", + "pos": "名詞", + "pn": -0.558494 + }, + { + "surface": "獣行", + "readging": "じゅうこう", + "pos": "名詞", + "pn": -0.558611 + }, + { + "surface": "巡視", + "readging": "じゅんし", + "pos": "名詞", + "pn": -0.558681 + }, + { + "surface": "沸立つ", + "readging": "わきたつ", + "pos": "動詞", + "pn": -0.558699 + }, + { + "surface": "ハンマー", + "readging": "ハンマー", + "pos": "名詞", + "pn": -0.558736 + }, + { + "surface": "合せ砥", + "readging": "あわせど", + "pos": "名詞", + "pn": -0.558745 + }, + { + "surface": "到着", + "readging": "とうちゃく", + "pos": "名詞", + "pn": -0.558766 + }, + { + "surface": "擬声語", + "readging": "ぎせいご", + "pos": "名詞", + "pn": -0.558791 + }, + { + "surface": "伏沈む", + "readging": "ふししずむ", + "pos": "動詞", + "pn": -0.558796 + }, + { + "surface": "概略", + "readging": "がいりゃく", + "pos": "名詞", + "pn": -0.558802 + }, + { + "surface": "制裁", + "readging": "せいさい", + "pos": "名詞", + "pn": -0.558828 + }, + { + "surface": "生計", + "readging": "せいけい", + "pos": "名詞", + "pn": -0.558838 + }, + { + "surface": "極彩色", + "readging": "ごくさいしき", + "pos": "名詞", + "pn": -0.558851 + }, + { + "surface": "里", + "readging": "り", + "pos": "名詞", + "pn": -0.558876 + }, + { + "surface": "なぐり書き", + "readging": "なぐりがき", + "pos": "名詞", + "pn": -0.558895 + }, + { + "surface": "上代", + "readging": "じょうだい", + "pos": "名詞", + "pn": -0.558907 + }, + { + "surface": "彫る", + "readging": "える", + "pos": "動詞", + "pn": -0.558913 + }, + { + "surface": "謹厚", + "readging": "きんこう", + "pos": "名詞", + "pn": -0.558917 + }, + { + "surface": "ぺたりと", + "readging": "ぺたりと", + "pos": "副詞", + "pn": -0.558932 + }, + { + "surface": "凡愚", + "readging": "ぼんぐ", + "pos": "名詞", + "pn": -0.558939 + }, + { + "surface": "卓球", + "readging": "たっきゅう", + "pos": "名詞", + "pn": -0.558942 + }, + { + "surface": "アクセント", + "readging": "アクセント", + "pos": "名詞", + "pn": -0.55899 + }, + { + "surface": "顴骨", + "readging": "かんこつ", + "pos": "名詞", + "pn": -0.558992 + }, + { + "surface": "カール", + "readging": "カール", + "pos": "名詞", + "pn": -0.559006 + }, + { + "surface": "折", + "readging": "おり", + "pos": "名詞", + "pn": -0.559057 + }, + { + "surface": "揺ぎ", + "readging": "ゆるぎ", + "pos": "名詞", + "pn": -0.55911 + }, + { + "surface": "絵具", + "readging": "えのぐ", + "pos": "名詞", + "pn": -0.559122 + }, + { + "surface": "宋襄の仁", + "readging": "そうじょうのじん", + "pos": "名詞", + "pn": -0.559127 + }, + { + "surface": "御不浄", + "readging": "ごふじょう", + "pos": "名詞", + "pn": -0.559132 + }, + { + "surface": "髷", + "readging": "まげ", + "pos": "名詞", + "pn": -0.559148 + }, + { + "surface": "ピンチ", + "readging": "ピンチヒッター", + "pos": "名詞", + "pn": -0.55916 + }, + { + "surface": "繧げん", + "readging": "うんげん", + "pos": "名詞", + "pn": -0.559166 + }, + { + "surface": "踏迷う", + "readging": "ふみまよう", + "pos": "動詞", + "pn": -0.559173 + }, + { + "surface": "毛布", + "readging": "もうふ", + "pos": "名詞", + "pn": -0.559243 + }, + { + "surface": "神経質", + "readging": "しんけいしつ", + "pos": "名詞", + "pn": -0.559258 + }, + { + "surface": "止血", + "readging": "しけつ", + "pos": "名詞", + "pn": -0.559306 + }, + { + "surface": "盗賊", + "readging": "とうぞく", + "pos": "名詞", + "pn": -0.559329 + }, + { + "surface": "威服", + "readging": "いふく", + "pos": "名詞", + "pn": -0.559335 + }, + { + "surface": "電気釜", + "readging": "でんきがま", + "pos": "名詞", + "pn": -0.559345 + }, + { + "surface": "南京虫", + "readging": "なんきんむし", + "pos": "名詞", + "pn": -0.559347 + }, + { + "surface": "漆器", + "readging": "しっき", + "pos": "名詞", + "pn": -0.559385 + }, + { + "surface": "尖頂", + "readging": "せんちょう", + "pos": "名詞", + "pn": -0.559404 + }, + { + "surface": "凍土", + "readging": "とうど", + "pos": "名詞", + "pn": -0.559425 + }, + { + "surface": "無碍", + "readging": "むげ", + "pos": "名詞", + "pn": -0.559458 + }, + { + "surface": "女子衆", + "readging": "おなごしゅ", + "pos": "名詞", + "pn": -0.559467 + }, + { + "surface": "山容", + "readging": "さんよう", + "pos": "名詞", + "pn": -0.559469 + }, + { + "surface": "出物", + "readging": "でもの", + "pos": "名詞", + "pn": -0.559476 + }, + { + "surface": "竹藪", + "readging": "たけやぶ", + "pos": "名詞", + "pn": -0.55948 + }, + { + "surface": "予め", + "readging": "あらかじめ", + "pos": "副詞", + "pn": -0.559496 + }, + { + "surface": "逆さ", + "readging": "さかさ", + "pos": "名詞", + "pn": -0.559525 + }, + { + "surface": "競合い", + "readging": "せりあい", + "pos": "名詞", + "pn": -0.55954 + }, + { + "surface": "淋巴", + "readging": "リンパ", + "pos": "名詞", + "pn": -0.559551 + }, + { + "surface": "文月", + "readging": "ふづき", + "pos": "名詞", + "pn": -0.559558 + }, + { + "surface": "始末", + "readging": "しまつ", + "pos": "名詞", + "pn": -0.559566 + }, + { + "surface": "有刺鉄線", + "readging": "ゆうしてっせん", + "pos": "名詞", + "pn": -0.559569 + }, + { + "surface": "ちゃっかり", + "readging": "ちゃっかり", + "pos": "副詞", + "pn": -0.559588 + }, + { + "surface": "サボる", + "readging": "サボる", + "pos": "動詞", + "pn": -0.559589 + }, + { + "surface": "商量", + "readging": "しょうりょう", + "pos": "名詞", + "pn": -0.55963 + }, + { + "surface": "束ね", + "readging": "たばね", + "pos": "名詞", + "pn": -0.559654 + }, + { + "surface": "重箱", + "readging": "じゅうばこ", + "pos": "名詞", + "pn": -0.559707 + }, + { + "surface": "興隆", + "readging": "こうりゅう", + "pos": "名詞", + "pn": -0.559721 + }, + { + "surface": "駒下駄", + "readging": "こまげた", + "pos": "名詞", + "pn": -0.559732 + }, + { + "surface": "吊し上げ", + "readging": "つるしあげ", + "pos": "名詞", + "pn": -0.559736 + }, + { + "surface": "留立て", + "readging": "とめだて", + "pos": "名詞", + "pn": -0.559785 + }, + { + "surface": "鼻汁", + "readging": "はなしる", + "pos": "名詞", + "pn": -0.559789 + }, + { + "surface": "氷塊", + "readging": "ひょうかい", + "pos": "名詞", + "pn": -0.559807 + }, + { + "surface": "立寄る", + "readging": "たちよる", + "pos": "動詞", + "pn": -0.559829 + }, + { + "surface": "白っぽい", + "readging": "しろっぽい", + "pos": "形容詞", + "pn": -0.559835 + }, + { + "surface": "よろける", + "readging": "よろける", + "pos": "動詞", + "pn": -0.559844 + }, + { + "surface": "誤字", + "readging": "ごじ", + "pos": "名詞", + "pn": -0.559849 + }, + { + "surface": "煮立つ", + "readging": "にたつ", + "pos": "動詞", + "pn": -0.559867 + }, + { + "surface": "人我", + "readging": "じんが", + "pos": "名詞", + "pn": -0.559872 + }, + { + "surface": "酸漿", + "readging": "ほおずき", + "pos": "名詞", + "pn": -0.559885 + }, + { + "surface": "同類", + "readging": "どうるい", + "pos": "名詞", + "pn": -0.559898 + }, + { + "surface": "顎骨", + "readging": "がっこつ", + "pos": "名詞", + "pn": -0.559911 + }, + { + "surface": "ベース", + "readging": "ベース", + "pos": "名詞", + "pn": -0.559956 + }, + { + "surface": "未納", + "readging": "みのう", + "pos": "名詞", + "pn": -0.559967 + }, + { + "surface": "臨写", + "readging": "りんしゃ", + "pos": "名詞", + "pn": -0.559972 + }, + { + "surface": "狂言", + "readging": "きょうげん", + "pos": "名詞", + "pn": -0.56 + }, + { + "surface": "木の葉", + "readging": "このは", + "pos": "名詞", + "pn": -0.560009 + }, + { + "surface": "蘇鉄", + "readging": "そてつ", + "pos": "名詞", + "pn": -0.56001 + }, + { + "surface": "金欠", + "readging": "きんけつ", + "pos": "名詞", + "pn": -0.560147 + }, + { + "surface": "喪章", + "readging": "もしょう", + "pos": "名詞", + "pn": -0.560169 + }, + { + "surface": "白髪", + "readging": "はくはつ", + "pos": "名詞", + "pn": -0.560189 + }, + { + "surface": "四足", + "readging": "よつあし", + "pos": "名詞", + "pn": -0.560219 + }, + { + "surface": "短絡", + "readging": "たんらく", + "pos": "名詞", + "pn": -0.560223 + }, + { + "surface": "本元", + "readging": "ほんもと", + "pos": "名詞", + "pn": -0.560226 + }, + { + "surface": "化合物", + "readging": "かごうぶつ", + "pos": "名詞", + "pn": -0.560227 + }, + { + "surface": "塩水", + "readging": "えんすい", + "pos": "名詞", + "pn": -0.560233 + }, + { + "surface": "甘味噌", + "readging": "あまみそ", + "pos": "名詞", + "pn": -0.560236 + }, + { + "surface": "アジ", + "readging": "アジ", + "pos": "名詞", + "pn": -0.56024 + }, + { + "surface": "ざりがに", + "readging": "ざりがに", + "pos": "名詞", + "pn": -0.560244 + }, + { + "surface": "牛", + "readging": "うし", + "pos": "名詞", + "pn": -0.560277 + }, + { + "surface": "千変万化", + "readging": "せんぺんばんか", + "pos": "名詞", + "pn": -0.560284 + }, + { + "surface": "借り貸し", + "readging": "かりかし", + "pos": "名詞", + "pn": -0.560285 + }, + { + "surface": "随分", + "readging": "ずいぶん", + "pos": "副詞", + "pn": -0.560311 + }, + { + "surface": "箪笥", + "readging": "たんす", + "pos": "名詞", + "pn": -0.560322 + }, + { + "surface": "渡し", + "readging": "わたし", + "pos": "名詞", + "pn": -0.560347 + }, + { + "surface": "合奏", + "readging": "がっそう", + "pos": "名詞", + "pn": -0.560355 + }, + { + "surface": "三一", + "readging": "さんピン", + "pos": "名詞", + "pn": -0.56037 + }, + { + "surface": "失踪", + "readging": "しっそう", + "pos": "名詞", + "pn": -0.560375 + }, + { + "surface": "擂芋", + "readging": "すりいも", + "pos": "名詞", + "pn": -0.560382 + }, + { + "surface": "放射線", + "readging": "ほうしゃせん", + "pos": "名詞", + "pn": -0.560393 + }, + { + "surface": "騎", + "readging": "き", + "pos": "名詞", + "pn": -0.560408 + }, + { + "surface": "下検分", + "readging": "したけんぶん", + "pos": "名詞", + "pn": -0.560414 + }, + { + "surface": "堤", + "readging": "てい", + "pos": "名詞", + "pn": -0.560422 + }, + { + "surface": "茅屋", + "readging": "ぼうおく", + "pos": "名詞", + "pn": -0.560486 + }, + { + "surface": "軋る", + "readging": "きしる", + "pos": "動詞", + "pn": -0.56049 + }, + { + "surface": "立春", + "readging": "りっしゅん", + "pos": "名詞", + "pn": -0.560498 + }, + { + "surface": "等", + "readging": "とう", + "pos": "名詞", + "pn": -0.560531 + }, + { + "surface": "踊り字", + "readging": "おどりじ", + "pos": "名詞", + "pn": -0.560562 + }, + { + "surface": "国情", + "readging": "こくじょう", + "pos": "名詞", + "pn": -0.560569 + }, + { + "surface": "仕舞湯", + "readging": "しまいゆ", + "pos": "名詞", + "pn": -0.560574 + }, + { + "surface": "呼び声", + "readging": "よびごえ", + "pos": "名詞", + "pn": -0.560581 + }, + { + "surface": "形容", + "readging": "けいよう", + "pos": "名詞", + "pn": -0.560585 + }, + { + "surface": "哀惜", + "readging": "あいせき", + "pos": "名詞", + "pn": -0.560618 + }, + { + "surface": "雲", + "readging": "うん", + "pos": "名詞", + "pn": -0.560634 + }, + { + "surface": "溶岩", + "readging": "ようがん", + "pos": "名詞", + "pn": -0.560644 + }, + { + "surface": "朝明け", + "readging": "あさあけ", + "pos": "名詞", + "pn": -0.560659 + }, + { + "surface": "后妃", + "readging": "こうひ", + "pos": "名詞", + "pn": -0.560659 + }, + { + "surface": "道化る", + "readging": "どうける", + "pos": "動詞", + "pn": -0.560679 + }, + { + "surface": "閑人", + "readging": "かんじん", + "pos": "名詞", + "pn": -0.560681 + }, + { + "surface": "蹴散らす", + "readging": "けちらす", + "pos": "動詞", + "pn": -0.560695 + }, + { + "surface": "石臼", + "readging": "いしうす", + "pos": "名詞", + "pn": -0.560717 + }, + { + "surface": "勧進", + "readging": "かんじん", + "pos": "名詞", + "pn": -0.560724 + }, + { + "surface": "白扇", + "readging": "はくせん", + "pos": "名詞", + "pn": -0.560731 + }, + { + "surface": "インフルエンザ", + "readging": "インフルエンザ", + "pos": "名詞", + "pn": -0.560735 + }, + { + "surface": "故由", + "readging": "ゆえよし", + "pos": "名詞", + "pn": -0.560753 + }, + { + "surface": "中気", + "readging": "ちゅうき", + "pos": "名詞", + "pn": -0.560785 + }, + { + "surface": "芙蓉", + "readging": "ふよう", + "pos": "名詞", + "pn": -0.560789 + }, + { + "surface": "吐瀉", + "readging": "としゃ", + "pos": "名詞", + "pn": -0.560813 + }, + { + "surface": "特筆", + "readging": "とくひつ", + "pos": "名詞", + "pn": -0.560815 + }, + { + "surface": "出様", + "readging": "でよう", + "pos": "名詞", + "pn": -0.560827 + }, + { + "surface": "まどろむ", + "readging": "まどろむ", + "pos": "動詞", + "pn": -0.56084 + }, + { + "surface": "貯炭", + "readging": "ちょたん", + "pos": "名詞", + "pn": -0.560847 + }, + { + "surface": "玉座", + "readging": "ぎょくざ", + "pos": "名詞", + "pn": -0.56085 + }, + { + "surface": "歴遊", + "readging": "れきゆう", + "pos": "名詞", + "pn": -0.56087 + }, + { + "surface": "旧称", + "readging": "きゅうしょう", + "pos": "名詞", + "pn": -0.560873 + }, + { + "surface": "模型", + "readging": "もけい", + "pos": "名詞", + "pn": -0.560877 + }, + { + "surface": "授与", + "readging": "じゅよ", + "pos": "名詞", + "pn": -0.560914 + }, + { + "surface": "気落ち", + "readging": "きおち", + "pos": "名詞", + "pn": -0.560917 + }, + { + "surface": "荒土", + "readging": "こうど", + "pos": "名詞", + "pn": -0.560927 + }, + { + "surface": "裾模様", + "readging": "すそもよう", + "pos": "名詞", + "pn": -0.560957 + }, + { + "surface": "入所", + "readging": "にゅうしょ", + "pos": "名詞", + "pn": -0.561004 + }, + { + "surface": "経路", + "readging": "けいろ", + "pos": "名詞", + "pn": -0.56101 + }, + { + "surface": "千石どおし", + "readging": "せんごくどおし", + "pos": "名詞", + "pn": -0.561029 + }, + { + "surface": "語呂", + "readging": "ごろ", + "pos": "名詞", + "pn": -0.561032 + }, + { + "surface": "票決", + "readging": "ひょうけつ", + "pos": "名詞", + "pn": -0.561083 + }, + { + "surface": "別け隔て", + "readging": "わけへだて", + "pos": "名詞", + "pn": -0.561121 + }, + { + "surface": "整理", + "readging": "せいり", + "pos": "名詞", + "pn": -0.561135 + }, + { + "surface": "初繭", + "readging": "はつまゆ", + "pos": "名詞", + "pn": -0.56116 + }, + { + "surface": "横道", + "readging": "よこみち", + "pos": "名詞", + "pn": -0.561168 + }, + { + "surface": "証明", + "readging": "しょうめい", + "pos": "名詞", + "pn": -0.56117 + }, + { + "surface": "灯", + "readging": "あかし", + "pos": "名詞", + "pn": -0.561227 + }, + { + "surface": "てんやわんや", + "readging": "てんやわんや", + "pos": "副詞", + "pn": -0.561244 + }, + { + "surface": "唾", + "readging": "つばき", + "pos": "名詞", + "pn": -0.561274 + }, + { + "surface": "後方", + "readging": "しりえ", + "pos": "名詞", + "pn": -0.561284 + }, + { + "surface": "里数", + "readging": "りすう", + "pos": "名詞", + "pn": -0.561326 + }, + { + "surface": "垂れ籠める", + "readging": "たれこめる", + "pos": "動詞", + "pn": -0.561332 + }, + { + "surface": "刑法", + "readging": "けいほう", + "pos": "名詞", + "pn": -0.5614 + }, + { + "surface": "約まる", + "readging": "つづまる", + "pos": "動詞", + "pn": -0.561412 + }, + { + "surface": "逆立ち", + "readging": "さかだち", + "pos": "名詞", + "pn": -0.561522 + }, + { + "surface": "除夜", + "readging": "じょや", + "pos": "名詞", + "pn": -0.561531 + }, + { + "surface": "駆付ける", + "readging": "かけつける", + "pos": "動詞", + "pn": -0.561587 + }, + { + "surface": "鳥打ち", + "readging": "とりうち", + "pos": "名詞", + "pn": -0.561589 + }, + { + "surface": "五月闇", + "readging": "さつきやみ", + "pos": "名詞", + "pn": -0.561596 + }, + { + "surface": "焼豚", + "readging": "やきぶた", + "pos": "名詞", + "pn": -0.56162 + }, + { + "surface": "浮く", + "readging": "うく", + "pos": "動詞", + "pn": -0.561638 + }, + { + "surface": "針鼠", + "readging": "はりねずみ", + "pos": "名詞", + "pn": -0.561646 + }, + { + "surface": "斑", + "readging": "まだら", + "pos": "名詞", + "pn": -0.561651 + }, + { + "surface": "摘み物", + "readging": "つまみもの", + "pos": "名詞", + "pn": -0.561674 + }, + { + "surface": "トンネル", + "readging": "トンネル", + "pos": "名詞", + "pn": -0.561687 + }, + { + "surface": "口辺", + "readging": "こうへん", + "pos": "名詞", + "pn": -0.561717 + }, + { + "surface": "追払う", + "readging": "おいはらう", + "pos": "動詞", + "pn": -0.561745 + }, + { + "surface": "不束", + "readging": "ふつつか", + "pos": "名詞", + "pn": -0.561762 + }, + { + "surface": "中", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.561787 + }, + { + "surface": "櫃", + "readging": "ひつ", + "pos": "名詞", + "pn": -0.561793 + }, + { + "surface": "破棄", + "readging": "はき", + "pos": "名詞", + "pn": -0.561799 + }, + { + "surface": "人交ぜ", + "readging": "ひとまぜ", + "pos": "名詞", + "pn": -0.561858 + }, + { + "surface": "文旦", + "readging": "ぶんたん", + "pos": "名詞", + "pn": -0.561861 + }, + { + "surface": "緊張", + "readging": "きんちょう", + "pos": "名詞", + "pn": -0.561864 + }, + { + "surface": "触角", + "readging": "しょっかく", + "pos": "名詞", + "pn": -0.5619 + }, + { + "surface": "黒雲", + "readging": "くろくも", + "pos": "名詞", + "pn": -0.561967 + }, + { + "surface": "切開く", + "readging": "きりひらく", + "pos": "動詞", + "pn": -0.56197 + }, + { + "surface": "前掛", + "readging": "まえかけ", + "pos": "名詞", + "pn": -0.561979 + }, + { + "surface": "出家", + "readging": "しゅっけ", + "pos": "名詞", + "pn": -0.561995 + }, + { + "surface": "井守", + "readging": "いもり", + "pos": "名詞", + "pn": -0.562025 + }, + { + "surface": "顕揚", + "readging": "けんよう", + "pos": "名詞", + "pn": -0.56203 + }, + { + "surface": "花穂", + "readging": "かすい", + "pos": "名詞", + "pn": -0.562037 + }, + { + "surface": "菜種油", + "readging": "なたねあぶら", + "pos": "名詞", + "pn": -0.562074 + }, + { + "surface": "ダイス", + "readging": "ダイス", + "pos": "名詞", + "pn": -0.562093 + }, + { + "surface": "アンペラ", + "readging": "アンペラ", + "pos": "名詞", + "pn": -0.562124 + }, + { + "surface": "草鞋虫", + "readging": "わらじ", + "pos": "名詞", + "pn": -0.562125 + }, + { + "surface": "宣伝", + "readging": "せんでん", + "pos": "名詞", + "pn": -0.56213 + }, + { + "surface": "がさがさ", + "readging": "がさがさ", + "pos": "副詞", + "pn": -0.562131 + }, + { + "surface": "真", + "readging": "しん", + "pos": "名詞", + "pn": -0.562164 + }, + { + "surface": "形勢", + "readging": "けいせい", + "pos": "名詞", + "pn": -0.562224 + }, + { + "surface": "同棲", + "readging": "どうせい", + "pos": "名詞", + "pn": -0.562234 + }, + { + "surface": "トロール船", + "readging": "トロールせん", + "pos": "名詞", + "pn": -0.56225 + }, + { + "surface": "堅守", + "readging": "けんしゅ", + "pos": "名詞", + "pn": -0.562253 + }, + { + "surface": "固守", + "readging": "こしゅ", + "pos": "名詞", + "pn": -0.562253 + }, + { + "surface": "牛車", + "readging": "ぎゅうしゃ", + "pos": "名詞", + "pn": -0.562255 + }, + { + "surface": "体力", + "readging": "たいりょく", + "pos": "名詞", + "pn": -0.562278 + }, + { + "surface": "浪費", + "readging": "ろうひ", + "pos": "名詞", + "pn": -0.562282 + }, + { + "surface": "岩躑躅", + "readging": "いわつつじ", + "pos": "名詞", + "pn": -0.562282 + }, + { + "surface": "竹似草", + "readging": "たけにぐさ", + "pos": "名詞", + "pn": -0.562292 + }, + { + "surface": "在郷軍人", + "readging": "ざいごうぐんじん", + "pos": "名詞", + "pn": -0.562294 + }, + { + "surface": "活計", + "readging": "かっけい", + "pos": "名詞", + "pn": -0.562325 + }, + { + "surface": "用品", + "readging": "ようひん", + "pos": "名詞", + "pn": -0.562339 + }, + { + "surface": "調理", + "readging": "ちょうり", + "pos": "名詞", + "pn": -0.562345 + }, + { + "surface": "カカオ", + "readging": "カカオ", + "pos": "名詞", + "pn": -0.562356 + }, + { + "surface": "往来", + "readging": "おうらい", + "pos": "名詞", + "pn": -0.562414 + }, + { + "surface": "煙出し", + "readging": "けむだし", + "pos": "名詞", + "pn": -0.562442 + }, + { + "surface": "べらべら", + "readging": "べらべら", + "pos": "副詞", + "pn": -0.562464 + }, + { + "surface": "玉突き", + "readging": "たまつき", + "pos": "名詞", + "pn": -0.562474 + }, + { + "surface": "通う", + "readging": "かよう", + "pos": "動詞", + "pn": -0.562528 + }, + { + "surface": "池塘", + "readging": "ちとう", + "pos": "名詞", + "pn": -0.56253 + }, + { + "surface": "逸れ矢", + "readging": "それや", + "pos": "名詞", + "pn": -0.56255 + }, + { + "surface": "網襦袢", + "readging": "あみジバン", + "pos": "名詞", + "pn": -0.562555 + }, + { + "surface": "レッテル", + "readging": "レッテル", + "pos": "名詞", + "pn": -0.562576 + }, + { + "surface": "歌留多", + "readging": "カルタ", + "pos": "名詞", + "pn": -0.562606 + }, + { + "surface": "淋巴液", + "readging": "リンパえき", + "pos": "名詞", + "pn": -0.562625 + }, + { + "surface": "恍ける", + "readging": "とぼける", + "pos": "動詞", + "pn": -0.562625 + }, + { + "surface": "股引", + "readging": "ももひき", + "pos": "名詞", + "pn": -0.562628 + }, + { + "surface": "建造", + "readging": "けんぞう", + "pos": "名詞", + "pn": -0.562631 + }, + { + "surface": "框", + "readging": "かまち", + "pos": "名詞", + "pn": -0.562652 + }, + { + "surface": "温い", + "readging": "ぬるい", + "pos": "形容詞", + "pn": -0.562657 + }, + { + "surface": "運命", + "readging": "うんめい", + "pos": "名詞", + "pn": -0.562723 + }, + { + "surface": "ぎょろぎょろ", + "readging": "ぎょろぎょろ", + "pos": "副詞", + "pn": -0.562743 + }, + { + "surface": "浴びる", + "readging": "あびる", + "pos": "動詞", + "pn": -0.562744 + }, + { + "surface": "決る", + "readging": "きまる", + "pos": "動詞", + "pn": -0.562823 + }, + { + "surface": "突っ撥ねる", + "readging": "つっぱねる", + "pos": "動詞", + "pn": -0.562825 + }, + { + "surface": "浮上がる", + "readging": "うきあがる", + "pos": "動詞", + "pn": -0.562849 + }, + { + "surface": "制する", + "readging": "せいする", + "pos": "動詞", + "pn": -0.562898 + }, + { + "surface": "天が下", + "readging": "あめがした", + "pos": "名詞", + "pn": -0.562902 + }, + { + "surface": "草履虫", + "readging": "ぞうりむし", + "pos": "名詞", + "pn": -0.562905 + }, + { + "surface": "がたつく", + "readging": "がたつく", + "pos": "動詞", + "pn": -0.562912 + }, + { + "surface": "笞", + "readging": "しもと", + "pos": "名詞", + "pn": -0.562912 + }, + { + "surface": "しおり", + "readging": "しおり", + "pos": "名詞", + "pn": -0.562928 + }, + { + "surface": "裾回し", + "readging": "すそまわし", + "pos": "名詞", + "pn": -0.562965 + }, + { + "surface": "合せ鏡", + "readging": "あわせかがみ", + "pos": "名詞", + "pn": -0.56298 + }, + { + "surface": "非人情", + "readging": "ひにんじょう", + "pos": "名詞", + "pn": -0.562986 + }, + { + "surface": "立ち所に", + "readging": "たちどころに", + "pos": "副詞", + "pn": -0.563067 + }, + { + "surface": "丸潰れ", + "readging": "まるつぶれ", + "pos": "名詞", + "pn": -0.563074 + }, + { + "surface": "翼翼", + "readging": "よくよく", + "pos": "名詞", + "pn": -0.563075 + }, + { + "surface": "炊事", + "readging": "すいじ", + "pos": "名詞", + "pn": -0.563111 + }, + { + "surface": "一団", + "readging": "いちだん", + "pos": "名詞", + "pn": -0.563135 + }, + { + "surface": "軟骨", + "readging": "なんこつ", + "pos": "名詞", + "pn": -0.563147 + }, + { + "surface": "精霊", + "readging": "せいれい", + "pos": "名詞", + "pn": -0.563179 + }, + { + "surface": "厄除け", + "readging": "やくよけ", + "pos": "名詞", + "pn": -0.563189 + }, + { + "surface": "袖の下", + "readging": "そでのした", + "pos": "名詞", + "pn": -0.563226 + }, + { + "surface": "競", + "readging": "けい", + "pos": "名詞", + "pn": -0.563239 + }, + { + "surface": "千万無量", + "readging": "せんまんむりょう", + "pos": "名詞", + "pn": -0.563241 + }, + { + "surface": "物乞い", + "readging": "ものごい", + "pos": "名詞", + "pn": -0.563283 + }, + { + "surface": "賦金", + "readging": "ふきん", + "pos": "名詞", + "pn": -0.563329 + }, + { + "surface": "詰寄る", + "readging": "つめよる", + "pos": "動詞", + "pn": -0.563342 + }, + { + "surface": "欠伸", + "readging": "あくび", + "pos": "名詞", + "pn": -0.563364 + }, + { + "surface": "円錐", + "readging": "えんすい", + "pos": "名詞", + "pn": -0.563374 + }, + { + "surface": "眼瞼", + "readging": "がんけん", + "pos": "名詞", + "pn": -0.563376 + }, + { + "surface": "侮言", + "readging": "ぶげん", + "pos": "名詞", + "pn": -0.563392 + }, + { + "surface": "挙例", + "readging": "きょれい", + "pos": "名詞", + "pn": -0.563401 + }, + { + "surface": "ちょこちょこ", + "readging": "ちょこちょこ", + "pos": "副詞", + "pn": -0.563427 + }, + { + "surface": "侍る", + "readging": "はべる", + "pos": "動詞", + "pn": -0.563427 + }, + { + "surface": "藩主", + "readging": "はんしゅ", + "pos": "名詞", + "pn": -0.563453 + }, + { + "surface": "栄辱", + "readging": "えいじょく", + "pos": "名詞", + "pn": -0.563456 + }, + { + "surface": "引っ括める", + "readging": "ひっくるめる", + "pos": "動詞", + "pn": -0.563457 + }, + { + "surface": "かし", + "readging": "かしパン", + "pos": "名詞", + "pn": -0.563479 + }, + { + "surface": "臥床", + "readging": "がしょう", + "pos": "名詞", + "pn": -0.56351 + }, + { + "surface": "解", + "readging": "かい", + "pos": "名詞", + "pn": -0.563532 + }, + { + "surface": "座業", + "readging": "ざぎょう", + "pos": "名詞", + "pn": -0.563559 + }, + { + "surface": "泥絵具", + "readging": "どろえのぐ", + "pos": "名詞", + "pn": -0.563563 + }, + { + "surface": "締切る", + "readging": "しめきる", + "pos": "動詞", + "pn": -0.563567 + }, + { + "surface": "雨皮", + "readging": "あまかわ", + "pos": "名詞", + "pn": -0.563577 + }, + { + "surface": "明け放す", + "readging": "あけはなす", + "pos": "動詞", + "pn": -0.563587 + }, + { + "surface": "鉄則", + "readging": "てっそく", + "pos": "名詞", + "pn": -0.56359 + }, + { + "surface": "花筐", + "readging": "はながたみ", + "pos": "名詞", + "pn": -0.563621 + }, + { + "surface": "ダムダム弾", + "readging": "ダムダムだん", + "pos": "名詞", + "pn": -0.563633 + }, + { + "surface": "大鋸", + "readging": "おが", + "pos": "名詞", + "pn": -0.563633 + }, + { + "surface": "恩人", + "readging": "おんじん", + "pos": "名詞", + "pn": -0.563661 + }, + { + "surface": "抹茶", + "readging": "まっちゃ", + "pos": "名詞", + "pn": -0.563718 + }, + { + "surface": "貧乏揺り", + "readging": "びんぼうゆすり", + "pos": "名詞", + "pn": -0.563721 + }, + { + "surface": "ころころ", + "readging": "ころころ", + "pos": "副詞", + "pn": -0.563728 + }, + { + "surface": "瞳", + "readging": "どう", + "pos": "名詞", + "pn": -0.563744 + }, + { + "surface": "籬", + "readging": "ませ", + "pos": "名詞", + "pn": -0.563764 + }, + { + "surface": "べったり", + "readging": "べったり", + "pos": "副詞", + "pn": -0.563773 + }, + { + "surface": "晩熟", + "readging": "ばんじゅく", + "pos": "名詞", + "pn": -0.563783 + }, + { + "surface": "惚ける", + "readging": "ほうける", + "pos": "動詞", + "pn": -0.563817 + }, + { + "surface": "光頭", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.563823 + }, + { + "surface": "切羽", + "readging": "せっぱ", + "pos": "名詞", + "pn": -0.563847 + }, + { + "surface": "鯱", + "readging": "しゃちほこ", + "pos": "名詞", + "pn": -0.56386 + }, + { + "surface": "チャック", + "readging": "チャック", + "pos": "名詞", + "pn": -0.563895 + }, + { + "surface": "駆けずり回る", + "readging": "かけずりまわる", + "pos": "動詞", + "pn": -0.563916 + }, + { + "surface": "平炉", + "readging": "へいろ", + "pos": "名詞", + "pn": -0.563937 + }, + { + "surface": "イヤリング", + "readging": "イヤリング", + "pos": "名詞", + "pn": -0.563955 + }, + { + "surface": "激職", + "readging": "げきしょく", + "pos": "名詞", + "pn": -0.563966 + }, + { + "surface": "虹", + "readging": "にじ", + "pos": "名詞", + "pn": -0.563993 + }, + { + "surface": "潤びる", + "readging": "ほとびる", + "pos": "動詞", + "pn": -0.564005 + }, + { + "surface": "春寒", + "readging": "しゅんかん", + "pos": "名詞", + "pn": -0.564007 + }, + { + "surface": "咽喉", + "readging": "いんこう", + "pos": "名詞", + "pn": -0.56405 + }, + { + "surface": "他端", + "readging": "たたん", + "pos": "名詞", + "pn": -0.564059 + }, + { + "surface": "啜り泣く", + "readging": "すすりなく", + "pos": "動詞", + "pn": -0.564069 + }, + { + "surface": "漸く", + "readging": "ようやく", + "pos": "副詞", + "pn": -0.56408 + }, + { + "surface": "孤帆", + "readging": "こはん", + "pos": "名詞", + "pn": -0.564107 + }, + { + "surface": "条", + "readging": "じょう", + "pos": "名詞", + "pn": -0.564108 + }, + { + "surface": "姿", + "readging": "し", + "pos": "名詞", + "pn": -0.564118 + }, + { + "surface": "切箔", + "readging": "きりはく", + "pos": "名詞", + "pn": -0.564142 + }, + { + "surface": "憶測", + "readging": "おくそく", + "pos": "名詞", + "pn": -0.56423 + }, + { + "surface": "アン ツー カー", + "readging": "アン ツー カー", + "pos": "名詞", + "pn": -0.564251 + }, + { + "surface": "雨宿り", + "readging": "あまやどり", + "pos": "名詞", + "pn": -0.564265 + }, + { + "surface": "劈く", + "readging": "つんざく", + "pos": "動詞", + "pn": -0.564268 + }, + { + "surface": "色揚", + "readging": "いろあげ", + "pos": "名詞", + "pn": -0.564271 + }, + { + "surface": "隠棲", + "readging": "いんせい", + "pos": "名詞", + "pn": -0.564296 + }, + { + "surface": "泥足", + "readging": "どろあし", + "pos": "名詞", + "pn": -0.564347 + }, + { + "surface": "朴", + "readging": "ほお", + "pos": "名詞", + "pn": -0.564361 + }, + { + "surface": "藻類", + "readging": "そうるい", + "pos": "名詞", + "pn": -0.564364 + }, + { + "surface": "縁", + "readging": "ゆかり", + "pos": "名詞", + "pn": -0.564371 + }, + { + "surface": "彷徨", + "readging": "ほうこう", + "pos": "名詞", + "pn": -0.564387 + }, + { + "surface": "随身", + "readging": "ずいじん", + "pos": "名詞", + "pn": -0.564449 + }, + { + "surface": "食道", + "readging": "しょくどう", + "pos": "名詞", + "pn": -0.564456 + }, + { + "surface": "塩辛", + "readging": "しおから", + "pos": "名詞", + "pn": -0.564459 + }, + { + "surface": "反歌", + "readging": "はんか", + "pos": "名詞", + "pn": -0.564462 + }, + { + "surface": "調味", + "readging": "ちょうみ", + "pos": "名詞", + "pn": -0.564463 + }, + { + "surface": "スナイドル", + "readging": "スナイドル", + "pos": "名詞", + "pn": -0.564496 + }, + { + "surface": "垂らす", + "readging": "たらす", + "pos": "動詞", + "pn": -0.564498 + }, + { + "surface": "祝融", + "readging": "しゅくゆう", + "pos": "名詞", + "pn": -0.564499 + }, + { + "surface": "貸切", + "readging": "かしきり", + "pos": "名詞", + "pn": -0.564499 + }, + { + "surface": "熟鮨", + "readging": "なれずし", + "pos": "名詞", + "pn": -0.564549 + }, + { + "surface": "乾癬", + "readging": "かんせん", + "pos": "名詞", + "pn": -0.564569 + }, + { + "surface": "分合", + "readging": "ぶんごう", + "pos": "名詞", + "pn": -0.564579 + }, + { + "surface": "臣", + "readging": "しん", + "pos": "名詞", + "pn": -0.564583 + }, + { + "surface": "紡錘", + "readging": "ぼうすい", + "pos": "名詞", + "pn": -0.564654 + }, + { + "surface": "見張り", + "readging": "みはり", + "pos": "名詞", + "pn": -0.564665 + }, + { + "surface": "他人行儀", + "readging": "たにんぎょうぎ", + "pos": "名詞", + "pn": -0.564685 + }, + { + "surface": "蟹屎", + "readging": "かにばば", + "pos": "名詞", + "pn": -0.564696 + }, + { + "surface": "晩秋", + "readging": "ばんしゅう", + "pos": "名詞", + "pn": -0.564702 + }, + { + "surface": "番組", + "readging": "ばんぐみ", + "pos": "名詞", + "pn": -0.564707 + }, + { + "surface": "エトセトラ", + "readging": "エトセトラ", + "pos": "名詞", + "pn": -0.564732 + }, + { + "surface": "小爪", + "readging": "こづめ", + "pos": "名詞", + "pn": -0.564735 + }, + { + "surface": "倒置", + "readging": "とうち", + "pos": "名詞", + "pn": -0.564736 + }, + { + "surface": "椀", + "readging": "わん", + "pos": "名詞", + "pn": -0.564743 + }, + { + "surface": "雪掻き", + "readging": "ゆきかき", + "pos": "名詞", + "pn": -0.56475 + }, + { + "surface": "アコーディオン", + "readging": "アコーディオン", + "pos": "名詞", + "pn": -0.564762 + }, + { + "surface": "湯垢", + "readging": "ゆあか", + "pos": "名詞", + "pn": -0.564767 + }, + { + "surface": "面目", + "readging": "めんもく", + "pos": "名詞", + "pn": -0.564767 + }, + { + "surface": "花火", + "readging": "はなび", + "pos": "名詞", + "pn": -0.564772 + }, + { + "surface": "恋しい", + "readging": "こいしい", + "pos": "形容詞", + "pn": -0.564782 + }, + { + "surface": "征服", + "readging": "せいふく", + "pos": "名詞", + "pn": -0.564784 + }, + { + "surface": "違う", + "readging": "たがう", + "pos": "動詞", + "pn": -0.564785 + }, + { + "surface": "善し悪し", + "readging": "よしあし", + "pos": "名詞", + "pn": -0.564788 + }, + { + "surface": "湯飲み", + "readging": "ゆのみ", + "pos": "名詞", + "pn": -0.564795 + }, + { + "surface": "無げ", + "readging": "なげ", + "pos": "名詞", + "pn": -0.564808 + }, + { + "surface": "厘毛", + "readging": "りんもう", + "pos": "名詞", + "pn": -0.564831 + }, + { + "surface": "生薑", + "readging": "しょうが", + "pos": "名詞", + "pn": -0.564838 + }, + { + "surface": "繭糸", + "readging": "けんし", + "pos": "名詞", + "pn": -0.564842 + }, + { + "surface": "不銹鋼", + "readging": "ふしゅうこう", + "pos": "名詞", + "pn": -0.564857 + }, + { + "surface": "内職", + "readging": "ないしょく", + "pos": "名詞", + "pn": -0.564864 + }, + { + "surface": "足取り", + "readging": "あしとり", + "pos": "名詞", + "pn": -0.564872 + }, + { + "surface": "拒絶", + "readging": "きょぜつ", + "pos": "名詞", + "pn": -0.564873 + }, + { + "surface": "金壺眼", + "readging": "かなつぼまなこ", + "pos": "名詞", + "pn": -0.56488 + }, + { + "surface": "喫水", + "readging": "きっすい", + "pos": "名詞", + "pn": -0.564894 + }, + { + "surface": "炭火", + "readging": "すみび", + "pos": "名詞", + "pn": -0.564899 + }, + { + "surface": "汗みどろ", + "readging": "あせみどろ", + "pos": "名詞", + "pn": -0.564912 + }, + { + "surface": "頬桁", + "readging": "ほおげた", + "pos": "名詞", + "pn": -0.564914 + }, + { + "surface": "働く", + "readging": "はたらく", + "pos": "動詞", + "pn": -0.564943 + }, + { + "surface": "事業", + "readging": "じぎょう", + "pos": "名詞", + "pn": -0.565 + }, + { + "surface": "消炎", + "readging": "しょうえん", + "pos": "名詞", + "pn": -0.565051 + }, + { + "surface": "一時", + "readging": "いっとき", + "pos": "名詞", + "pn": -0.565069 + }, + { + "surface": "組紐", + "readging": "くみひも", + "pos": "名詞", + "pn": -0.565083 + }, + { + "surface": "仇", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.565087 + }, + { + "surface": "減ずる", + "readging": "げんずる", + "pos": "動詞", + "pn": -0.565087 + }, + { + "surface": "はち切れる", + "readging": "はちきれる", + "pos": "動詞", + "pn": -0.565091 + }, + { + "surface": "日中", + "readging": "にっちゅう", + "pos": "名詞", + "pn": -0.565114 + }, + { + "surface": "先棒", + "readging": "さきぼう", + "pos": "名詞", + "pn": -0.565114 + }, + { + "surface": "雪柳", + "readging": "ゆきやなぎ", + "pos": "名詞", + "pn": -0.565136 + }, + { + "surface": "出費", + "readging": "しゅっぴ", + "pos": "名詞", + "pn": -0.565168 + }, + { + "surface": "居", + "readging": "きょ", + "pos": "名詞", + "pn": -0.56517 + }, + { + "surface": "裂罅", + "readging": "れっか", + "pos": "名詞", + "pn": -0.565203 + }, + { + "surface": "御輿", + "readging": "みこし", + "pos": "名詞", + "pn": -0.565253 + }, + { + "surface": "白雨", + "readging": "はくう", + "pos": "名詞", + "pn": -0.565275 + }, + { + "surface": "一本立ち", + "readging": "いっぽんだち", + "pos": "名詞", + "pn": -0.565286 + }, + { + "surface": "魅惑", + "readging": "みわく", + "pos": "名詞", + "pn": -0.565305 + }, + { + "surface": "野", + "readging": "や", + "pos": "名詞", + "pn": -0.565307 + }, + { + "surface": "飛燕", + "readging": "ひえん", + "pos": "名詞", + "pn": -0.565307 + }, + { + "surface": "紙切れ", + "readging": "かみきれ", + "pos": "名詞", + "pn": -0.565334 + }, + { + "surface": "行縢", + "readging": "むかばき", + "pos": "名詞", + "pn": -0.56534 + }, + { + "surface": "直垂", + "readging": "ひたたれ", + "pos": "名詞", + "pn": -0.56541 + }, + { + "surface": "見落す", + "readging": "みおとす", + "pos": "動詞", + "pn": -0.565419 + }, + { + "surface": "浮雲", + "readging": "うきぐも", + "pos": "名詞", + "pn": -0.565433 + }, + { + "surface": "破竹", + "readging": "はちく", + "pos": "名詞", + "pn": -0.565556 + }, + { + "surface": "鱗状", + "readging": "りんじょう", + "pos": "名詞", + "pn": -0.56563 + }, + { + "surface": "雌竹", + "readging": "めだけ", + "pos": "名詞", + "pn": -0.565679 + }, + { + "surface": "濡らす", + "readging": "ぬらす", + "pos": "動詞", + "pn": -0.565694 + }, + { + "surface": "秋冷", + "readging": "しゅうれい", + "pos": "名詞", + "pn": -0.565696 + }, + { + "surface": "歯槽", + "readging": "しそう", + "pos": "名詞", + "pn": -0.565705 + }, + { + "surface": "嗤笑", + "readging": "ししょう", + "pos": "名詞", + "pn": -0.565754 + }, + { + "surface": "金冠", + "readging": "きんかん", + "pos": "名詞", + "pn": -0.565754 + }, + { + "surface": "表示", + "readging": "ひょうじ", + "pos": "名詞", + "pn": -0.565756 + }, + { + "surface": "梃", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.565767 + }, + { + "surface": "現場", + "readging": "げんば", + "pos": "名詞", + "pn": -0.565831 + }, + { + "surface": "茶匙", + "readging": "ちゃさじ", + "pos": "名詞", + "pn": -0.565835 + }, + { + "surface": "他国", + "readging": "たこく", + "pos": "名詞", + "pn": -0.565837 + }, + { + "surface": "管理", + "readging": "かんり", + "pos": "名詞", + "pn": -0.565852 + }, + { + "surface": "下向き", + "readging": "したむき", + "pos": "名詞", + "pn": -0.565861 + }, + { + "surface": "画面", + "readging": "がめん", + "pos": "名詞", + "pn": -0.565874 + }, + { + "surface": "鎧袖一触", + "readging": "がいしゅういっしょく", + "pos": "名詞", + "pn": -0.565891 + }, + { + "surface": "増徴", + "readging": "ぞうちょう", + "pos": "名詞", + "pn": -0.565911 + }, + { + "surface": "ポケット", + "readging": "ポケット", + "pos": "名詞", + "pn": -0.565914 + }, + { + "surface": "瞳子", + "readging": "どうし", + "pos": "名詞", + "pn": -0.565928 + }, + { + "surface": "雪駄", + "readging": "せった", + "pos": "名詞", + "pn": -0.56596 + }, + { + "surface": "モノレール", + "readging": "モノレール", + "pos": "名詞", + "pn": -0.566014 + }, + { + "surface": "栄枯", + "readging": "えいこ", + "pos": "名詞", + "pn": -0.566021 + }, + { + "surface": "茶巾", + "readging": "ちゃきん", + "pos": "名詞", + "pn": -0.566025 + }, + { + "surface": "付近", + "readging": "ふきん", + "pos": "名詞", + "pn": -0.566077 + }, + { + "surface": "カステラ", + "readging": "カステラ", + "pos": "名詞", + "pn": -0.566098 + }, + { + "surface": "胃癌", + "readging": "いがん", + "pos": "名詞", + "pn": -0.566099 + }, + { + "surface": "墓地", + "readging": "ぼち", + "pos": "名詞", + "pn": -0.566101 + }, + { + "surface": "テニス", + "readging": "テニスコート", + "pos": "名詞", + "pn": -0.566131 + }, + { + "surface": "呑舟", + "readging": "どんしゅう", + "pos": "名詞", + "pn": -0.566139 + }, + { + "surface": "銀塊", + "readging": "ぎんかい", + "pos": "名詞", + "pn": -0.566161 + }, + { + "surface": "労しい", + "readging": "いたわしい", + "pos": "形容詞", + "pn": -0.566218 + }, + { + "surface": "艶聞", + "readging": "えんぶん", + "pos": "名詞", + "pn": -0.566236 + }, + { + "surface": "朴", + "readging": "ぼく", + "pos": "名詞", + "pn": -0.56626 + }, + { + "surface": "深山", + "readging": "みやま", + "pos": "名詞", + "pn": -0.566269 + }, + { + "surface": "揚水", + "readging": "ようすい", + "pos": "名詞", + "pn": -0.566295 + }, + { + "surface": "帰りがけ", + "readging": "かえりがけ", + "pos": "名詞", + "pn": -0.566308 + }, + { + "surface": "迷い箸", + "readging": "まよいばし", + "pos": "名詞", + "pn": -0.56631 + }, + { + "surface": "糟粕", + "readging": "そうはく", + "pos": "名詞", + "pn": -0.566312 + }, + { + "surface": "金歯", + "readging": "きんば", + "pos": "名詞", + "pn": -0.566312 + }, + { + "surface": "征", + "readging": "せい", + "pos": "名詞", + "pn": -0.566321 + }, + { + "surface": "檜扇", + "readging": "ひおうぎ", + "pos": "名詞", + "pn": -0.566359 + }, + { + "surface": "微意", + "readging": "びい", + "pos": "名詞", + "pn": -0.566383 + }, + { + "surface": "溝", + "readging": "どぶ", + "pos": "名詞", + "pn": -0.566383 + }, + { + "surface": "衝突", + "readging": "しょうとつ", + "pos": "名詞", + "pn": -0.566402 + }, + { + "surface": "数奇", + "readging": "すうき", + "pos": "名詞", + "pn": -0.566429 + }, + { + "surface": "簾中", + "readging": "れんちゅう", + "pos": "名詞", + "pn": -0.566433 + }, + { + "surface": "戦車", + "readging": "せんしゃ", + "pos": "名詞", + "pn": -0.566435 + }, + { + "surface": "濾水", + "readging": "ろすい", + "pos": "名詞", + "pn": -0.566466 + }, + { + "surface": "免職", + "readging": "めんしょく", + "pos": "名詞", + "pn": -0.566468 + }, + { + "surface": "余の儀", + "readging": "よのぎ", + "pos": "名詞", + "pn": -0.566471 + }, + { + "surface": "一夜漬", + "readging": "いちやづけ", + "pos": "名詞", + "pn": -0.566473 + }, + { + "surface": "才槌", + "readging": "さいづち", + "pos": "名詞", + "pn": -0.566505 + }, + { + "surface": "微風", + "readging": "びふう", + "pos": "名詞", + "pn": -0.566543 + }, + { + "surface": "ござんす", + "readging": "ござんす", + "pos": "動詞", + "pn": -0.566554 + }, + { + "surface": "併読", + "readging": "へいどく", + "pos": "名詞", + "pn": -0.56659 + }, + { + "surface": "鯖読み", + "readging": "さばよみ", + "pos": "名詞", + "pn": -0.566602 + }, + { + "surface": "入相の鐘", + "readging": "いりあい", + "pos": "名詞", + "pn": -0.56663 + }, + { + "surface": "余臭", + "readging": "よしゅう", + "pos": "名詞", + "pn": -0.566643 + }, + { + "surface": "初恋", + "readging": "はつこい", + "pos": "名詞", + "pn": -0.56666 + }, + { + "surface": "よろよろ", + "readging": "よろよろ", + "pos": "副詞", + "pn": -0.566687 + }, + { + "surface": "溯る", + "readging": "さかのぼる", + "pos": "動詞", + "pn": -0.566759 + }, + { + "surface": "縛り首", + "readging": "しばりくび", + "pos": "名詞", + "pn": -0.566786 + }, + { + "surface": "ラスク", + "readging": "ラスク", + "pos": "名詞", + "pn": -0.566813 + }, + { + "surface": "補記", + "readging": "ほき", + "pos": "名詞", + "pn": -0.566814 + }, + { + "surface": "内憂", + "readging": "ないゆう", + "pos": "名詞", + "pn": -0.566821 + }, + { + "surface": "じりじり", + "readging": "じりじり", + "pos": "副詞", + "pn": -0.566821 + }, + { + "surface": "芋", + "readging": "いも", + "pos": "名詞", + "pn": -0.566825 + }, + { + "surface": "驕児", + "readging": "きょうじ", + "pos": "名詞", + "pn": -0.566833 + }, + { + "surface": "東風", + "readging": "とうふう", + "pos": "名詞", + "pn": -0.566843 + }, + { + "surface": "長蛇", + "readging": "ちょうだ", + "pos": "名詞", + "pn": -0.566872 + }, + { + "surface": "一度に", + "readging": "いちどに", + "pos": "副詞", + "pn": -0.566893 + }, + { + "surface": "うら", + "readging": "うら", + "pos": "名詞", + "pn": -0.566909 + }, + { + "surface": "返戻", + "readging": "へんれい", + "pos": "名詞", + "pn": -0.566919 + }, + { + "surface": "葛掛", + "readging": "くずかけ", + "pos": "名詞", + "pn": -0.566921 + }, + { + "surface": "スライディング", + "readging": "スライディング", + "pos": "名詞", + "pn": -0.566992 + }, + { + "surface": "住所", + "readging": "じゅうしょ", + "pos": "名詞", + "pn": -0.567003 + }, + { + "surface": "咽び泣く", + "readging": "むせびなく", + "pos": "動詞", + "pn": -0.567035 + }, + { + "surface": "総論", + "readging": "そうろん", + "pos": "名詞", + "pn": -0.567049 + }, + { + "surface": "得得", + "readging": "とくとく", + "pos": "名詞", + "pn": -0.567102 + }, + { + "surface": "目覚める", + "readging": "めざめる", + "pos": "動詞", + "pn": -0.567111 + }, + { + "surface": "原状", + "readging": "げんじょう", + "pos": "名詞", + "pn": -0.567112 + }, + { + "surface": "土盛り", + "readging": "どもり", + "pos": "名詞", + "pn": -0.567172 + }, + { + "surface": "折返し", + "readging": "おりかえし", + "pos": "名詞", + "pn": -0.567182 + }, + { + "surface": "振出", + "readging": "ふりだし", + "pos": "名詞", + "pn": -0.5672 + }, + { + "surface": "瞬き", + "readging": "まばたき", + "pos": "名詞", + "pn": -0.567215 + }, + { + "surface": "枢", + "readging": "くるる", + "pos": "名詞", + "pn": -0.567239 + }, + { + "surface": "末世", + "readging": "まっせ", + "pos": "名詞", + "pn": -0.56724 + }, + { + "surface": "度度", + "readging": "たびたび", + "pos": "副詞", + "pn": -0.567248 + }, + { + "surface": "賦", + "readging": "ふ", + "pos": "名詞", + "pn": -0.567284 + }, + { + "surface": "平常", + "readging": "へいじょう", + "pos": "名詞", + "pn": -0.567336 + }, + { + "surface": "毒蛇", + "readging": "どくへび", + "pos": "名詞", + "pn": -0.567347 + }, + { + "surface": "ラバー", + "readging": "ラバーソール", + "pos": "名詞", + "pn": -0.567356 + }, + { + "surface": "御飾り", + "readging": "おかざり", + "pos": "名詞", + "pn": -0.567361 + }, + { + "surface": "ハンバーガー", + "readging": "ハンバーガー", + "pos": "名詞", + "pn": -0.567368 + }, + { + "surface": "天網", + "readging": "てんもう", + "pos": "名詞", + "pn": -0.567399 + }, + { + "surface": "ひくひく", + "readging": "ひくひく", + "pos": "副詞", + "pn": -0.567409 + }, + { + "surface": "独断専行", + "readging": "どくだんせんこう", + "pos": "名詞", + "pn": -0.567473 + }, + { + "surface": "布袋草", + "readging": "ほていそう", + "pos": "名詞", + "pn": -0.567502 + }, + { + "surface": "血行", + "readging": "けっこう", + "pos": "名詞", + "pn": -0.567502 + }, + { + "surface": "仲", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.567506 + }, + { + "surface": "天与", + "readging": "てんよ", + "pos": "名詞", + "pn": -0.567523 + }, + { + "surface": "悼辞", + "readging": "とうじ", + "pos": "名詞", + "pn": -0.567536 + }, + { + "surface": "口の端", + "readging": "くちのは", + "pos": "名詞", + "pn": -0.567545 + }, + { + "surface": "追討ち", + "readging": "おいうち", + "pos": "名詞", + "pn": -0.56757 + }, + { + "surface": "ぶらぶら", + "readging": "ぶらぶら", + "pos": "副詞", + "pn": -0.56758 + }, + { + "surface": "仲介", + "readging": "ちゅうかい", + "pos": "名詞", + "pn": -0.567612 + }, + { + "surface": "訥弁", + "readging": "とつべん", + "pos": "名詞", + "pn": -0.567637 + }, + { + "surface": "不備", + "readging": "ふび", + "pos": "名詞", + "pn": -0.567638 + }, + { + "surface": "付人", + "readging": "つきびと", + "pos": "名詞", + "pn": -0.567639 + }, + { + "surface": "境目", + "readging": "さかいめ", + "pos": "名詞", + "pn": -0.567751 + }, + { + "surface": "午後", + "readging": "ごご", + "pos": "名詞", + "pn": -0.567759 + }, + { + "surface": "鉤縄", + "readging": "かぎなわ", + "pos": "名詞", + "pn": -0.567759 + }, + { + "surface": "モップ", + "readging": "モップ", + "pos": "名詞", + "pn": -0.56776 + }, + { + "surface": "助平", + "readging": "すけべえ", + "pos": "名詞", + "pn": -0.567817 + }, + { + "surface": "酸葉", + "readging": "すいば", + "pos": "名詞", + "pn": -0.567849 + }, + { + "surface": "明り障子", + "readging": "あかりしょうじ", + "pos": "名詞", + "pn": -0.567849 + }, + { + "surface": "引合せ", + "readging": "ひきあわせ", + "pos": "名詞", + "pn": -0.567856 + }, + { + "surface": "桐", + "readging": "きり", + "pos": "名詞", + "pn": -0.567868 + }, + { + "surface": "契印", + "readging": "けいいん", + "pos": "名詞", + "pn": -0.567902 + }, + { + "surface": "インク", + "readging": "インクスタンド", + "pos": "名詞", + "pn": -0.567915 + }, + { + "surface": "指揮", + "readging": "しき", + "pos": "名詞", + "pn": -0.567927 + }, + { + "surface": "手の者", + "readging": "てのもの", + "pos": "名詞", + "pn": -0.567935 + }, + { + "surface": "ほっしん", + "readging": "ほっしんチフス", + "pos": "名詞", + "pn": -0.567943 + }, + { + "surface": "嵩張る", + "readging": "かさばる", + "pos": "動詞", + "pn": -0.567989 + }, + { + "surface": "紅生薑", + "readging": "べにしょうが", + "pos": "名詞", + "pn": -0.568017 + }, + { + "surface": "温む", + "readging": "ぬるむ", + "pos": "動詞", + "pn": -0.568019 + }, + { + "surface": "ふらふら", + "readging": "ふらふら", + "pos": "副詞", + "pn": -0.568028 + }, + { + "surface": "有色", + "readging": "ゆうしょく", + "pos": "名詞", + "pn": -0.568034 + }, + { + "surface": "菜", + "readging": "な", + "pos": "名詞", + "pn": -0.568059 + }, + { + "surface": "凹凸", + "readging": "おうとつ", + "pos": "名詞", + "pn": -0.56806 + }, + { + "surface": "春慶塗", + "readging": "しゅんけいぬり", + "pos": "名詞", + "pn": -0.568074 + }, + { + "surface": "同封", + "readging": "どうふう", + "pos": "名詞", + "pn": -0.568114 + }, + { + "surface": "蔑称", + "readging": "べっしょう", + "pos": "名詞", + "pn": -0.568138 + }, + { + "surface": "雄", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.568156 + }, + { + "surface": "所在", + "readging": "しょざい", + "pos": "名詞", + "pn": -0.56817 + }, + { + "surface": "贈位", + "readging": "ぞうい", + "pos": "名詞", + "pn": -0.568185 + }, + { + "surface": "上側", + "readging": "うわがわ", + "pos": "名詞", + "pn": -0.568189 + }, + { + "surface": "火鉢", + "readging": "ひばち", + "pos": "名詞", + "pn": -0.568202 + }, + { + "surface": "白日", + "readging": "はくじつ", + "pos": "名詞", + "pn": -0.568248 + }, + { + "surface": "輪転機", + "readging": "りんてんき", + "pos": "名詞", + "pn": -0.568261 + }, + { + "surface": "制御", + "readging": "せいぎょ", + "pos": "名詞", + "pn": -0.568272 + }, + { + "surface": "変幻", + "readging": "へんげん", + "pos": "名詞", + "pn": -0.568286 + }, + { + "surface": "傾斜", + "readging": "けいしゃ", + "pos": "名詞", + "pn": -0.568292 + }, + { + "surface": "雨降り", + "readging": "あめふり", + "pos": "名詞", + "pn": -0.568301 + }, + { + "surface": "戦慄", + "readging": "せんりつ", + "pos": "名詞", + "pn": -0.568302 + }, + { + "surface": "剥製", + "readging": "はくせい", + "pos": "名詞", + "pn": -0.568323 + }, + { + "surface": "予防接種", + "readging": "よぼうせっしゅ", + "pos": "名詞", + "pn": -0.568331 + }, + { + "surface": "ベース", + "readging": "ベースボール", + "pos": "名詞", + "pn": -0.568339 + }, + { + "surface": "萌やし", + "readging": "もやし", + "pos": "名詞", + "pn": -0.568353 + }, + { + "surface": "鼻風邪", + "readging": "はなかぜ", + "pos": "名詞", + "pn": -0.568353 + }, + { + "surface": "五節句", + "readging": "ごせっく", + "pos": "名詞", + "pn": -0.568383 + }, + { + "surface": "評定", + "readging": "ひょうじょう", + "pos": "名詞", + "pn": -0.568389 + }, + { + "surface": "空疎", + "readging": "くうそ", + "pos": "名詞", + "pn": -0.568419 + }, + { + "surface": "書面", + "readging": "しょめん", + "pos": "名詞", + "pn": -0.568421 + }, + { + "surface": "弁慶草", + "readging": "べんけいそう", + "pos": "名詞", + "pn": -0.568434 + }, + { + "surface": "反照", + "readging": "はんしょう", + "pos": "名詞", + "pn": -0.568441 + }, + { + "surface": "次", + "readging": "じ", + "pos": "名詞", + "pn": -0.568445 + }, + { + "surface": "一進一退", + "readging": "いっしんいったい", + "pos": "名詞", + "pn": -0.568445 + }, + { + "surface": "飛白", + "readging": "ひはく", + "pos": "名詞", + "pn": -0.568449 + }, + { + "surface": "特殊", + "readging": "とくしゅ", + "pos": "名詞", + "pn": -0.568468 + }, + { + "surface": "臨模", + "readging": "りんも", + "pos": "名詞", + "pn": -0.568471 + }, + { + "surface": "更す", + "readging": "ふかす", + "pos": "動詞", + "pn": -0.568492 + }, + { + "surface": "駒鳥", + "readging": "こまどり", + "pos": "名詞", + "pn": -0.568503 + }, + { + "surface": "落語", + "readging": "らくご", + "pos": "名詞", + "pn": -0.568563 + }, + { + "surface": "童体", + "readging": "どうたい", + "pos": "名詞", + "pn": -0.56857 + }, + { + "surface": "昇給", + "readging": "しょうきゅう", + "pos": "名詞", + "pn": -0.568581 + }, + { + "surface": "膠", + "readging": "にかわ", + "pos": "名詞", + "pn": -0.568596 + }, + { + "surface": "羽子", + "readging": "はご", + "pos": "名詞", + "pn": -0.5686 + }, + { + "surface": "針刺", + "readging": "はりさし", + "pos": "名詞", + "pn": -0.568617 + }, + { + "surface": "持寄る", + "readging": "もちよる", + "pos": "動詞", + "pn": -0.568701 + }, + { + "surface": "四目垣", + "readging": "よつめがき", + "pos": "名詞", + "pn": -0.568718 + }, + { + "surface": "ぎざぎざ", + "readging": "ぎざぎざ", + "pos": "名詞", + "pn": -0.568764 + }, + { + "surface": "見なす", + "readging": "みなす", + "pos": "動詞", + "pn": -0.568778 + }, + { + "surface": "彼我", + "readging": "ひが", + "pos": "名詞", + "pn": -0.568913 + }, + { + "surface": "パイル", + "readging": "パイル", + "pos": "名詞", + "pn": -0.569 + }, + { + "surface": "成虫", + "readging": "せいちゅう", + "pos": "名詞", + "pn": -0.569027 + }, + { + "surface": "掛減り", + "readging": "かけべり", + "pos": "名詞", + "pn": -0.569044 + }, + { + "surface": "舌苔", + "readging": "ぜったい", + "pos": "名詞", + "pn": -0.569081 + }, + { + "surface": "要", + "readging": "よう", + "pos": "名詞", + "pn": -0.569115 + }, + { + "surface": "べろりと", + "readging": "べろりと", + "pos": "副詞", + "pn": -0.56912 + }, + { + "surface": "扉", + "readging": "とびら", + "pos": "名詞", + "pn": -0.569123 + }, + { + "surface": "毒刃", + "readging": "どくじん", + "pos": "名詞", + "pn": -0.569158 + }, + { + "surface": "書きなぐる", + "readging": "かきなぐる", + "pos": "動詞", + "pn": -0.569158 + }, + { + "surface": "ズック", + "readging": "ズック", + "pos": "名詞", + "pn": -0.569192 + }, + { + "surface": "食わせる", + "readging": "くわせる", + "pos": "動詞", + "pn": -0.569213 + }, + { + "surface": "相続", + "readging": "そうぞく", + "pos": "名詞", + "pn": -0.569222 + }, + { + "surface": "能無し", + "readging": "のうなし", + "pos": "名詞", + "pn": -0.569237 + }, + { + "surface": "凭れる", + "readging": "もたれる", + "pos": "動詞", + "pn": -0.569244 + }, + { + "surface": "国言葉", + "readging": "くにことば", + "pos": "名詞", + "pn": -0.569313 + }, + { + "surface": "音頭", + "readging": "おんど", + "pos": "名詞", + "pn": -0.569329 + }, + { + "surface": "漕手", + "readging": "そうしゅ", + "pos": "名詞", + "pn": -0.56933 + }, + { + "surface": "がぶる", + "readging": "がぶる", + "pos": "動詞", + "pn": -0.569348 + }, + { + "surface": "督促", + "readging": "とくそく", + "pos": "名詞", + "pn": -0.569371 + }, + { + "surface": "ストック", + "readging": "ストック", + "pos": "名詞", + "pn": -0.569396 + }, + { + "surface": "継承", + "readging": "けいしょう", + "pos": "名詞", + "pn": -0.569399 + }, + { + "surface": "積肥", + "readging": "つみごえ", + "pos": "名詞", + "pn": -0.569414 + }, + { + "surface": "遍満", + "readging": "へんまん", + "pos": "名詞", + "pn": -0.569429 + }, + { + "surface": "以降", + "readging": "いこう", + "pos": "名詞", + "pn": -0.569431 + }, + { + "surface": "笊耳", + "readging": "ざるみみ", + "pos": "名詞", + "pn": -0.569436 + }, + { + "surface": "厨子", + "readging": "ずし", + "pos": "名詞", + "pn": -0.569444 + }, + { + "surface": "風窓", + "readging": "かざまど", + "pos": "名詞", + "pn": -0.569456 + }, + { + "surface": "弱気", + "readging": "よわき", + "pos": "名詞", + "pn": -0.569476 + }, + { + "surface": "手打", + "readging": "てうち", + "pos": "名詞", + "pn": -0.569481 + }, + { + "surface": "鉄条網", + "readging": "てつじょうもう", + "pos": "名詞", + "pn": -0.569532 + }, + { + "surface": "以上", + "readging": "いじょう", + "pos": "名詞", + "pn": -0.569572 + }, + { + "surface": "桂剥き", + "readging": "かつらむき", + "pos": "名詞", + "pn": -0.569574 + }, + { + "surface": "一円", + "readging": "いちえん", + "pos": "名詞", + "pn": -0.569603 + }, + { + "surface": "磯巾着", + "readging": "いそぎんちゃく", + "pos": "名詞", + "pn": -0.569619 + }, + { + "surface": "倒立", + "readging": "とうりつ", + "pos": "名詞", + "pn": -0.569644 + }, + { + "surface": "無道", + "readging": "むどう", + "pos": "名詞", + "pn": -0.569647 + }, + { + "surface": "きょろきょろ", + "readging": "きょろきょろ", + "pos": "副詞", + "pn": -0.569651 + }, + { + "surface": "拒否", + "readging": "きょひ", + "pos": "名詞", + "pn": -0.569652 + }, + { + "surface": "頬紅", + "readging": "ほおべに", + "pos": "名詞", + "pn": -0.569667 + }, + { + "surface": "壁", + "readging": "かべ", + "pos": "名詞", + "pn": -0.569718 + }, + { + "surface": "項", + "readging": "うなじ", + "pos": "名詞", + "pn": -0.569729 + }, + { + "surface": "こましゃくれる", + "readging": "こましゃくれる", + "pos": "動詞", + "pn": -0.569738 + }, + { + "surface": "躙り寄る", + "readging": "にじりよる", + "pos": "動詞", + "pn": -0.569778 + }, + { + "surface": "正に", + "readging": "まさに", + "pos": "副詞", + "pn": -0.569783 + }, + { + "surface": "鉄扉", + "readging": "てっぴ", + "pos": "名詞", + "pn": -0.569801 + }, + { + "surface": "俗間", + "readging": "ぞっかん", + "pos": "名詞", + "pn": -0.569858 + }, + { + "surface": "鱶", + "readging": "ふか", + "pos": "名詞", + "pn": -0.56986 + }, + { + "surface": "平服", + "readging": "へいふく", + "pos": "名詞", + "pn": -0.569891 + }, + { + "surface": "血豆", + "readging": "ちまめ", + "pos": "名詞", + "pn": -0.569901 + }, + { + "surface": "周期", + "readging": "しゅうき", + "pos": "名詞", + "pn": -0.569938 + }, + { + "surface": "積る", + "readging": "つもる", + "pos": "動詞", + "pn": -0.569953 + }, + { + "surface": "眼帯", + "readging": "がんたい", + "pos": "名詞", + "pn": -0.569979 + }, + { + "surface": "境界", + "readging": "けいかい", + "pos": "名詞", + "pn": -0.570048 + }, + { + "surface": "衰勢", + "readging": "すいせい", + "pos": "名詞", + "pn": -0.57006 + }, + { + "surface": "斗", + "readging": "と", + "pos": "名詞", + "pn": -0.570062 + }, + { + "surface": "シガー", + "readging": "シガー", + "pos": "名詞", + "pn": -0.570119 + }, + { + "surface": "ベース", + "readging": "ベースキャンプ", + "pos": "名詞", + "pn": -0.570128 + }, + { + "surface": "珠芽", + "readging": "しゅが", + "pos": "名詞", + "pn": -0.570133 + }, + { + "surface": "産卵", + "readging": "さんらん", + "pos": "名詞", + "pn": -0.570152 + }, + { + "surface": "飛蝗", + "readging": "ばった", + "pos": "名詞", + "pn": -0.570159 + }, + { + "surface": "捨値", + "readging": "すてね", + "pos": "名詞", + "pn": -0.570163 + }, + { + "surface": "泣き言", + "readging": "なきごと", + "pos": "名詞", + "pn": -0.570169 + }, + { + "surface": "襲職", + "readging": "しゅうしょく", + "pos": "名詞", + "pn": -0.570189 + }, + { + "surface": "染み入る", + "readging": "しみいる", + "pos": "動詞", + "pn": -0.570197 + }, + { + "surface": "泡雪", + "readging": "あわゆき", + "pos": "名詞", + "pn": -0.570215 + }, + { + "surface": "幻怪", + "readging": "げんかい", + "pos": "名詞", + "pn": -0.570257 + }, + { + "surface": "畏服", + "readging": "いふく", + "pos": "名詞", + "pn": -0.570262 + }, + { + "surface": "分限", + "readging": "ぶんげん", + "pos": "名詞", + "pn": -0.570278 + }, + { + "surface": "雌ねじ", + "readging": "めねじ", + "pos": "名詞", + "pn": -0.570306 + }, + { + "surface": "家居", + "readging": "かきょ", + "pos": "名詞", + "pn": -0.57031 + }, + { + "surface": "ばね", + "readging": "ばね", + "pos": "名詞", + "pn": -0.570312 + }, + { + "surface": "心任せ", + "readging": "こころまかせ", + "pos": "名詞", + "pn": -0.570329 + }, + { + "surface": "南瓜", + "readging": "カボチャ", + "pos": "名詞", + "pn": -0.57033 + }, + { + "surface": "猥雑", + "readging": "わいざつ", + "pos": "名詞", + "pn": -0.570338 + }, + { + "surface": "外力", + "readging": "がいりょく", + "pos": "名詞", + "pn": -0.570367 + }, + { + "surface": "仕来り", + "readging": "しきたり", + "pos": "名詞", + "pn": -0.570377 + }, + { + "surface": "甘酒", + "readging": "あまざけ", + "pos": "名詞", + "pn": -0.57038 + }, + { + "surface": "弦月", + "readging": "げんげつ", + "pos": "名詞", + "pn": -0.570423 + }, + { + "surface": "間欠", + "readging": "かんけつ", + "pos": "名詞", + "pn": -0.570438 + }, + { + "surface": "岩室", + "readging": "いわむろ", + "pos": "名詞", + "pn": -0.570483 + }, + { + "surface": "歿", + "readging": "ぼつ", + "pos": "名詞", + "pn": -0.570485 + }, + { + "surface": "懲役", + "readging": "ちょうえき", + "pos": "名詞", + "pn": -0.570495 + }, + { + "surface": "シャーレ", + "readging": "シャーレ", + "pos": "名詞", + "pn": -0.5705 + }, + { + "surface": "昇級", + "readging": "しょうきゅう", + "pos": "名詞", + "pn": -0.57053 + }, + { + "surface": "陶製", + "readging": "とうせい", + "pos": "名詞", + "pn": -0.570532 + }, + { + "surface": "栗", + "readging": "くり", + "pos": "名詞", + "pn": -0.57054 + }, + { + "surface": "荒む", + "readging": "すさむ", + "pos": "動詞", + "pn": -0.570549 + }, + { + "surface": "背反", + "readging": "はいはん", + "pos": "名詞", + "pn": -0.57057 + }, + { + "surface": "商売", + "readging": "しょうばい", + "pos": "名詞", + "pn": -0.570673 + }, + { + "surface": "追訴", + "readging": "ついそ", + "pos": "名詞", + "pn": -0.570675 + }, + { + "surface": "肩肘", + "readging": "かたひじ", + "pos": "名詞", + "pn": -0.57069 + }, + { + "surface": "行きずり", + "readging": "ゆきずり", + "pos": "名詞", + "pn": -0.570698 + }, + { + "surface": "布海苔", + "readging": "ふのり", + "pos": "名詞", + "pn": -0.570703 + }, + { + "surface": "ガジマル", + "readging": "ガジマル", + "pos": "名詞", + "pn": -0.570711 + }, + { + "surface": "水屋", + "readging": "みずや", + "pos": "名詞", + "pn": -0.570785 + }, + { + "surface": "阿茶羅漬", + "readging": "アチャラづけ", + "pos": "名詞", + "pn": -0.570789 + }, + { + "surface": "鬼", + "readging": "おに", + "pos": "名詞", + "pn": -0.570852 + }, + { + "surface": "まごつく", + "readging": "まごつく", + "pos": "動詞", + "pn": -0.570863 + }, + { + "surface": "荒野", + "readging": "あらの", + "pos": "名詞", + "pn": -0.570871 + }, + { + "surface": "がざみ", + "readging": "がざみ", + "pos": "名詞", + "pn": -0.570896 + }, + { + "surface": "巷談", + "readging": "こうだん", + "pos": "名詞", + "pn": -0.570896 + }, + { + "surface": "輪郭", + "readging": "りんかく", + "pos": "名詞", + "pn": -0.570903 + }, + { + "surface": "一本橋", + "readging": "いっぽんばし", + "pos": "名詞", + "pn": -0.570908 + }, + { + "surface": "贓物", + "readging": "ぞうぶつ", + "pos": "名詞", + "pn": -0.570917 + }, + { + "surface": "ジステンパー", + "readging": "ジステンパー", + "pos": "名詞", + "pn": -0.570928 + }, + { + "surface": "股", + "readging": "こ", + "pos": "名詞", + "pn": -0.570979 + }, + { + "surface": "帖", + "readging": "じょう", + "pos": "名詞", + "pn": -0.570979 + }, + { + "surface": "継合せる", + "readging": "つぎあわせる", + "pos": "動詞", + "pn": -0.570987 + }, + { + "surface": "訪問", + "readging": "ほうもん", + "pos": "名詞", + "pn": -0.570988 + }, + { + "surface": "キール", + "readging": "キール", + "pos": "名詞", + "pn": -0.571 + }, + { + "surface": "奥", + "readging": "おう", + "pos": "名詞", + "pn": -0.571033 + }, + { + "surface": "沈吟", + "readging": "ちんぎん", + "pos": "名詞", + "pn": -0.571051 + }, + { + "surface": "不遜", + "readging": "ふそん", + "pos": "名詞", + "pn": -0.571056 + }, + { + "surface": "旧態", + "readging": "きゅうたい", + "pos": "名詞", + "pn": -0.571078 + }, + { + "surface": "蝶", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.571112 + }, + { + "surface": "籬垣", + "readging": "ませがき", + "pos": "名詞", + "pn": -0.571115 + }, + { + "surface": "切屑", + "readging": "きりくず", + "pos": "名詞", + "pn": -0.571129 + }, + { + "surface": "船板", + "readging": "ふないた", + "pos": "名詞", + "pn": -0.571134 + }, + { + "surface": "ほっぽる", + "readging": "ほっぽる", + "pos": "動詞", + "pn": -0.571156 + }, + { + "surface": "蚊遣", + "readging": "かやり", + "pos": "名詞", + "pn": -0.571156 + }, + { + "surface": "痛言", + "readging": "つうげん", + "pos": "名詞", + "pn": -0.571158 + }, + { + "surface": "税", + "readging": "ぜい", + "pos": "名詞", + "pn": -0.571162 + }, + { + "surface": "放恣", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.571261 + }, + { + "surface": "平打", + "readging": "ひらうち", + "pos": "名詞", + "pn": -0.57128 + }, + { + "surface": "代位", + "readging": "だいい", + "pos": "名詞", + "pn": -0.571329 + }, + { + "surface": "原", + "readging": "はら", + "pos": "名詞", + "pn": -0.571334 + }, + { + "surface": "得点", + "readging": "とくてん", + "pos": "名詞", + "pn": -0.571358 + }, + { + "surface": "吹付ける", + "readging": "ふきつける", + "pos": "動詞", + "pn": -0.571376 + }, + { + "surface": "凌霄花", + "readging": "のうぜんかずら", + "pos": "名詞", + "pn": -0.571383 + }, + { + "surface": "片山里", + "readging": "かたやまざと", + "pos": "名詞", + "pn": -0.571411 + }, + { + "surface": "混生", + "readging": "こんせい", + "pos": "名詞", + "pn": -0.571449 + }, + { + "surface": "濯ぐ", + "readging": "すすぐ", + "pos": "動詞", + "pn": -0.571466 + }, + { + "surface": "細書", + "readging": "さいしょ", + "pos": "名詞", + "pn": -0.571471 + }, + { + "surface": "齧り付く", + "readging": "かじりつく", + "pos": "動詞", + "pn": -0.571478 + }, + { + "surface": "笈", + "readging": "おい", + "pos": "名詞", + "pn": -0.571486 + }, + { + "surface": "先手", + "readging": "せんて", + "pos": "名詞", + "pn": -0.571499 + }, + { + "surface": "股木", + "readging": "またぎ", + "pos": "名詞", + "pn": -0.571567 + }, + { + "surface": "銅壺", + "readging": "どうこ", + "pos": "名詞", + "pn": -0.571575 + }, + { + "surface": "哨兵", + "readging": "しょうへい", + "pos": "名詞", + "pn": -0.571592 + }, + { + "surface": "雨水", + "readging": "あまみず", + "pos": "名詞", + "pn": -0.571601 + }, + { + "surface": "減圧", + "readging": "げんあつ", + "pos": "名詞", + "pn": -0.571616 + }, + { + "surface": "身の上", + "readging": "みのうえ", + "pos": "名詞", + "pn": -0.571619 + }, + { + "surface": "成形手術", + "readging": "せいけいしゅじゅつ", + "pos": "名詞", + "pn": -0.571671 + }, + { + "surface": "日蔭の葛", + "readging": "ひかげのかずら", + "pos": "名詞", + "pn": -0.571678 + }, + { + "surface": "いぼたのむし", + "readging": "いぼたのむし", + "pos": "名詞", + "pn": -0.571686 + }, + { + "surface": "田楽刺", + "readging": "でんがくざし", + "pos": "名詞", + "pn": -0.571712 + }, + { + "surface": "即夜", + "readging": "そくや", + "pos": "名詞", + "pn": -0.571714 + }, + { + "surface": "震度", + "readging": "しんど", + "pos": "名詞", + "pn": -0.57179 + }, + { + "surface": "一月", + "readging": "いちげつ", + "pos": "名詞", + "pn": -0.571799 + }, + { + "surface": "オーバー", + "readging": "オーバーシューズ", + "pos": "名詞", + "pn": -0.571802 + }, + { + "surface": "道中双六", + "readging": "どうちゅうすごろく", + "pos": "名詞", + "pn": -0.571808 + }, + { + "surface": "蝉蛻", + "readging": "せんぜい", + "pos": "名詞", + "pn": -0.571842 + }, + { + "surface": "砕氷", + "readging": "さいひょう", + "pos": "名詞", + "pn": -0.571864 + }, + { + "surface": "腰縄", + "readging": "こしなわ", + "pos": "名詞", + "pn": -0.571875 + }, + { + "surface": "惰眠", + "readging": "だみん", + "pos": "名詞", + "pn": -0.571885 + }, + { + "surface": "首輪", + "readging": "くびわ", + "pos": "名詞", + "pn": -0.571893 + }, + { + "surface": "ロケット", + "readging": "ロケット", + "pos": "名詞", + "pn": -0.571929 + }, + { + "surface": "水溜り", + "readging": "みずたまり", + "pos": "名詞", + "pn": -0.571933 + }, + { + "surface": "ポーチ", + "readging": "ポーチ", + "pos": "名詞", + "pn": -0.571933 + }, + { + "surface": "原稿", + "readging": "げんこう", + "pos": "名詞", + "pn": -0.571946 + }, + { + "surface": "大和", + "readging": "やまとべい", + "pos": "名詞", + "pn": -0.571956 + }, + { + "surface": "のべつ", + "readging": "のべつ", + "pos": "副詞", + "pn": -0.571959 + }, + { + "surface": "絵取る", + "readging": "えどる", + "pos": "動詞", + "pn": -0.571961 + }, + { + "surface": "心胆", + "readging": "しんたん", + "pos": "名詞", + "pn": -0.57197 + }, + { + "surface": "湯腹", + "readging": "ゆばら", + "pos": "名詞", + "pn": -0.571978 + }, + { + "surface": "水際", + "readging": "みずぎわ", + "pos": "名詞", + "pn": -0.572002 + }, + { + "surface": "キャタピラ", + "readging": "キャタピラ", + "pos": "名詞", + "pn": -0.572004 + }, + { + "surface": "砂漠", + "readging": "さばく", + "pos": "名詞", + "pn": -0.572006 + }, + { + "surface": "帯", + "readging": "おび", + "pos": "名詞", + "pn": -0.572007 + }, + { + "surface": "鳶", + "readging": "とび", + "pos": "名詞", + "pn": -0.572037 + }, + { + "surface": "群", + "readging": "ぐん", + "pos": "名詞", + "pn": -0.572041 + }, + { + "surface": "土器", + "readging": "どき", + "pos": "名詞", + "pn": -0.572061 + }, + { + "surface": "勾玉", + "readging": "まがたま", + "pos": "名詞", + "pn": -0.572115 + }, + { + "surface": "御坊", + "readging": "ごぼう", + "pos": "名詞", + "pn": -0.572123 + }, + { + "surface": "斜視", + "readging": "しゃし", + "pos": "名詞", + "pn": -0.57213 + }, + { + "surface": "満都", + "readging": "まんと", + "pos": "名詞", + "pn": -0.572133 + }, + { + "surface": "魚籠", + "readging": "びく", + "pos": "名詞", + "pn": -0.572137 + }, + { + "surface": "別席", + "readging": "べっせき", + "pos": "名詞", + "pn": -0.572139 + }, + { + "surface": "淫欲", + "readging": "いんよく", + "pos": "名詞", + "pn": -0.572158 + }, + { + "surface": "破帽", + "readging": "はぼう", + "pos": "名詞", + "pn": -0.572178 + }, + { + "surface": "行掛り", + "readging": "ゆきがかり", + "pos": "名詞", + "pn": -0.572188 + }, + { + "surface": "キャッチ", + "readging": "キャッチ", + "pos": "名詞", + "pn": -0.572273 + }, + { + "surface": "歯入れ", + "readging": "はいれ", + "pos": "名詞", + "pn": -0.572277 + }, + { + "surface": "燻る", + "readging": "いぶる", + "pos": "動詞", + "pn": -0.572296 + }, + { + "surface": "口調", + "readging": "くちょう", + "pos": "名詞", + "pn": -0.572353 + }, + { + "surface": "引返す", + "readging": "ひきかえす", + "pos": "動詞", + "pn": -0.572427 + }, + { + "surface": "伸し", + "readging": "のし", + "pos": "名詞", + "pn": -0.572437 + }, + { + "surface": "おろ抜き", + "readging": "おろぬき", + "pos": "名詞", + "pn": -0.572448 + }, + { + "surface": "黄昏", + "readging": "たそがれ", + "pos": "名詞", + "pn": -0.572458 + }, + { + "surface": "土釜", + "readging": "どがま", + "pos": "名詞", + "pn": -0.572461 + }, + { + "surface": "練", + "readging": "ねり", + "pos": "名詞", + "pn": -0.572505 + }, + { + "surface": "挫折", + "readging": "ざせつ", + "pos": "名詞", + "pn": -0.572509 + }, + { + "surface": "惨害", + "readging": "さんがい", + "pos": "名詞", + "pn": -0.572523 + }, + { + "surface": "切れ込み", + "readging": "きれこみ", + "pos": "名詞", + "pn": -0.572523 + }, + { + "surface": "切付ける", + "readging": "きりつける", + "pos": "動詞", + "pn": -0.572528 + }, + { + "surface": "不人情", + "readging": "ふにんじょう", + "pos": "名詞", + "pn": -0.572546 + }, + { + "surface": "ピンぼけ", + "readging": "ピンぼけ", + "pos": "名詞", + "pn": -0.572612 + }, + { + "surface": "自失", + "readging": "じしつ", + "pos": "名詞", + "pn": -0.572616 + }, + { + "surface": "扼腕", + "readging": "やくわん", + "pos": "名詞", + "pn": -0.572637 + }, + { + "surface": "拙宅", + "readging": "せったく", + "pos": "名詞", + "pn": -0.572661 + }, + { + "surface": "放縦", + "readging": "ほうしょう", + "pos": "名詞", + "pn": -0.572671 + }, + { + "surface": "安置", + "readging": "あんち", + "pos": "名詞", + "pn": -0.572686 + }, + { + "surface": "利水", + "readging": "りすい", + "pos": "名詞", + "pn": -0.572702 + }, + { + "surface": "げ", + "readging": "げ", + "pos": "名詞", + "pn": -0.572731 + }, + { + "surface": "鍬形虫", + "readging": "くわがた", + "pos": "名詞", + "pn": -0.572734 + }, + { + "surface": "形相", + "readging": "けいそう", + "pos": "名詞", + "pn": -0.572809 + }, + { + "surface": "コンパクト", + "readging": "コンパクト", + "pos": "名詞", + "pn": -0.572811 + }, + { + "surface": "晒餡", + "readging": "さらしあん", + "pos": "名詞", + "pn": -0.572814 + }, + { + "surface": "浸水", + "readging": "しんすい", + "pos": "名詞", + "pn": -0.572825 + }, + { + "surface": "機", + "readging": "き", + "pos": "名詞", + "pn": -0.572839 + }, + { + "surface": "白餡", + "readging": "しろあん", + "pos": "名詞", + "pn": -0.57284 + }, + { + "surface": "空", + "readging": "うろ", + "pos": "名詞", + "pn": -0.572844 + }, + { + "surface": "拝受", + "readging": "はいじゅ", + "pos": "名詞", + "pn": -0.572872 + }, + { + "surface": "座棺", + "readging": "ざかん", + "pos": "名詞", + "pn": -0.572888 + }, + { + "surface": "基", + "readging": "き", + "pos": "名詞", + "pn": -0.572907 + }, + { + "surface": "概要", + "readging": "がいよう", + "pos": "名詞", + "pn": -0.57292 + }, + { + "surface": "帰来", + "readging": "きらい", + "pos": "名詞", + "pn": -0.572924 + }, + { + "surface": "荻", + "readging": "おぎ", + "pos": "名詞", + "pn": -0.572935 + }, + { + "surface": "桃", + "readging": "とう", + "pos": "名詞", + "pn": -0.573012 + }, + { + "surface": "埋る", + "readging": "うまる", + "pos": "動詞", + "pn": -0.573059 + }, + { + "surface": "復氏", + "readging": "ふくし", + "pos": "名詞", + "pn": -0.573083 + }, + { + "surface": "合戦", + "readging": "かっせん", + "pos": "名詞", + "pn": -0.57309 + }, + { + "surface": "移駐", + "readging": "いちゅう", + "pos": "名詞", + "pn": -0.5731 + }, + { + "surface": "輪形", + "readging": "りんけい", + "pos": "名詞", + "pn": -0.573102 + }, + { + "surface": "ビー玉", + "readging": "ビーだま", + "pos": "名詞", + "pn": -0.573133 + }, + { + "surface": "嗣子", + "readging": "しし", + "pos": "名詞", + "pn": -0.573162 + }, + { + "surface": "民族", + "readging": "みんぞく", + "pos": "名詞", + "pn": -0.573175 + }, + { + "surface": "おっことす", + "readging": "おっことす", + "pos": "動詞", + "pn": -0.573175 + }, + { + "surface": "党略", + "readging": "とうりゃく", + "pos": "名詞", + "pn": -0.573206 + }, + { + "surface": "世俗", + "readging": "せぞく", + "pos": "名詞", + "pn": -0.573233 + }, + { + "surface": "大工", + "readging": "だいく", + "pos": "名詞", + "pn": -0.573261 + }, + { + "surface": "残党", + "readging": "ざんとう", + "pos": "名詞", + "pn": -0.573265 + }, + { + "surface": "馬銜", + "readging": "はみ", + "pos": "名詞", + "pn": -0.573272 + }, + { + "surface": "駆立てる", + "readging": "かりたてる", + "pos": "動詞", + "pn": -0.573274 + }, + { + "surface": "基肥", + "readging": "きひ", + "pos": "名詞", + "pn": -0.573303 + }, + { + "surface": "小付", + "readging": "こづけ", + "pos": "名詞", + "pn": -0.573314 + }, + { + "surface": "土手", + "readging": "どて", + "pos": "名詞", + "pn": -0.573328 + }, + { + "surface": "赤剥け", + "readging": "あかむけ", + "pos": "名詞", + "pn": -0.573339 + }, + { + "surface": "雪見灯籠", + "readging": "ゆきみどうろう", + "pos": "名詞", + "pn": -0.573361 + }, + { + "surface": "代", + "readging": "だい", + "pos": "名詞", + "pn": -0.573383 + }, + { + "surface": "いざこざ", + "readging": "いざこざ", + "pos": "名詞", + "pn": -0.573411 + }, + { + "surface": "お鉢", + "readging": "おはち", + "pos": "名詞", + "pn": -0.573429 + }, + { + "surface": "付添い", + "readging": "つきそい", + "pos": "名詞", + "pn": -0.573431 + }, + { + "surface": "梃子", + "readging": "てこ", + "pos": "名詞", + "pn": -0.573454 + }, + { + "surface": "アルペンシュトック", + "readging": "アルペンシュトック", + "pos": "名詞", + "pn": -0.573472 + }, + { + "surface": "付け差し", + "readging": "つけざし", + "pos": "名詞", + "pn": -0.573554 + }, + { + "surface": "直下", + "readging": "じきげ", + "pos": "名詞", + "pn": -0.573575 + }, + { + "surface": "掻鳴らす", + "readging": "かきならす", + "pos": "動詞", + "pn": -0.5736 + }, + { + "surface": "指貫", + "readging": "さしぬき", + "pos": "名詞", + "pn": -0.573615 + }, + { + "surface": "ライオン", + "readging": "ライオン", + "pos": "名詞", + "pn": -0.573627 + }, + { + "surface": "勤め", + "readging": "つとめ", + "pos": "名詞", + "pn": -0.573633 + }, + { + "surface": "軟体動物", + "readging": "なんたいどうぶつ", + "pos": "名詞", + "pn": -0.573642 + }, + { + "surface": "末", + "readging": "すえ", + "pos": "名詞", + "pn": -0.573648 + }, + { + "surface": "岩燕", + "readging": "いわつばめ", + "pos": "名詞", + "pn": -0.573677 + }, + { + "surface": "とやかく", + "readging": "とやかく", + "pos": "副詞", + "pn": -0.573685 + }, + { + "surface": "演奏", + "readging": "えんそう", + "pos": "名詞", + "pn": -0.573695 + }, + { + "surface": "都忘れ", + "readging": "みやこわすれ", + "pos": "名詞", + "pn": -0.573698 + }, + { + "surface": "ルゴール液", + "readging": "ルゴールえき", + "pos": "名詞", + "pn": -0.573701 + }, + { + "surface": "的", + "readging": "まと", + "pos": "名詞", + "pn": -0.573711 + }, + { + "surface": "枕屏風", + "readging": "まくらびょうぶ", + "pos": "名詞", + "pn": -0.573726 + }, + { + "surface": "ボイル", + "readging": "ボイル", + "pos": "名詞", + "pn": -0.573732 + }, + { + "surface": "藻塩", + "readging": "もしお", + "pos": "名詞", + "pn": -0.573747 + }, + { + "surface": "酌", + "readging": "しゃく", + "pos": "名詞", + "pn": -0.573777 + }, + { + "surface": "辟易", + "readging": "へきえき", + "pos": "名詞", + "pn": -0.573779 + }, + { + "surface": "水風呂", + "readging": "すいふろ", + "pos": "名詞", + "pn": -0.573801 + }, + { + "surface": "パンツ", + "readging": "パンツ", + "pos": "名詞", + "pn": -0.573803 + }, + { + "surface": "湿生植物", + "readging": "しっせいしょくぶつ", + "pos": "名詞", + "pn": -0.573831 + }, + { + "surface": "尿道", + "readging": "にょうどう", + "pos": "名詞", + "pn": -0.573834 + }, + { + "surface": "虚言", + "readging": "きょげん", + "pos": "名詞", + "pn": -0.573839 + }, + { + "surface": "酸度", + "readging": "さんど", + "pos": "名詞", + "pn": -0.57384 + }, + { + "surface": "喧騒", + "readging": "けんそう", + "pos": "名詞", + "pn": -0.573852 + }, + { + "surface": "謀", + "readging": "はかりごと", + "pos": "名詞", + "pn": -0.573855 + }, + { + "surface": "残留", + "readging": "ざんりゅう", + "pos": "名詞", + "pn": -0.573865 + }, + { + "surface": "立脚点", + "readging": "りっきゃくてん", + "pos": "名詞", + "pn": -0.573906 + }, + { + "surface": "漫ろ心", + "readging": "そぞろごころ", + "pos": "名詞", + "pn": -0.573908 + }, + { + "surface": "笹原", + "readging": "ささはら", + "pos": "名詞", + "pn": -0.573931 + }, + { + "surface": "文月", + "readging": "ふみづき", + "pos": "名詞", + "pn": -0.57396 + }, + { + "surface": "食料", + "readging": "しょくりょう", + "pos": "名詞", + "pn": -0.573969 + }, + { + "surface": "満幅", + "readging": "まんぷく", + "pos": "名詞", + "pn": -0.573971 + }, + { + "surface": "写本", + "readging": "しゃほん", + "pos": "名詞", + "pn": -0.573979 + }, + { + "surface": "穿つ", + "readging": "うがつ", + "pos": "動詞", + "pn": -0.574004 + }, + { + "surface": "空木", + "readging": "うつぎ", + "pos": "名詞", + "pn": -0.574008 + }, + { + "surface": "漁る", + "readging": "あさる", + "pos": "動詞", + "pn": -0.574015 + }, + { + "surface": "足掛り", + "readging": "あしがかり", + "pos": "名詞", + "pn": -0.574027 + }, + { + "surface": "拉致", + "readging": "らち", + "pos": "名詞", + "pn": -0.574048 + }, + { + "surface": "一言一行", + "readging": "いちげんいっこう", + "pos": "名詞", + "pn": -0.574112 + }, + { + "surface": "差込み", + "readging": "さしこみ", + "pos": "名詞", + "pn": -0.574112 + }, + { + "surface": "どうして", + "readging": "どうして", + "pos": "副詞", + "pn": -0.574119 + }, + { + "surface": "禿頭", + "readging": "とくとう", + "pos": "名詞", + "pn": -0.574122 + }, + { + "surface": "衣擦れ", + "readging": "きぬずれ", + "pos": "名詞", + "pn": -0.574131 + }, + { + "surface": "突出", + "readging": "とっしゅつ", + "pos": "名詞", + "pn": -0.574144 + }, + { + "surface": "小高い", + "readging": "こだかい", + "pos": "形容詞", + "pn": -0.574164 + }, + { + "surface": "昼間", + "readging": "ひるま", + "pos": "名詞", + "pn": -0.57418 + }, + { + "surface": "河豚", + "readging": "ふぐ", + "pos": "名詞", + "pn": -0.574189 + }, + { + "surface": "期限", + "readging": "きげん", + "pos": "名詞", + "pn": -0.574231 + }, + { + "surface": "取立てる", + "readging": "とりたてる", + "pos": "動詞", + "pn": -0.574273 + }, + { + "surface": "兜首", + "readging": "かぶとくび", + "pos": "名詞", + "pn": -0.574308 + }, + { + "surface": "黄禍", + "readging": "こうか", + "pos": "名詞", + "pn": -0.574335 + }, + { + "surface": "直弟", + "readging": "じきてい", + "pos": "名詞", + "pn": -0.574351 + }, + { + "surface": "臆", + "readging": "おく", + "pos": "名詞", + "pn": -0.574359 + }, + { + "surface": "本源", + "readging": "ほんげん", + "pos": "名詞", + "pn": -0.574383 + }, + { + "surface": "梱る", + "readging": "こる", + "pos": "動詞", + "pn": -0.574385 + }, + { + "surface": "飛交う", + "readging": "とびかう", + "pos": "動詞", + "pn": -0.574389 + }, + { + "surface": "工場", + "readging": "こうば", + "pos": "名詞", + "pn": -0.574393 + }, + { + "surface": "外見", + "readging": "そとみ", + "pos": "名詞", + "pn": -0.574395 + }, + { + "surface": "砂子", + "readging": "すなご", + "pos": "名詞", + "pn": -0.574416 + }, + { + "surface": "城", + "readging": "じょう", + "pos": "名詞", + "pn": -0.574466 + }, + { + "surface": "海豚", + "readging": "いるか", + "pos": "名詞", + "pn": -0.574483 + }, + { + "surface": "足駄", + "readging": "あしだ", + "pos": "名詞", + "pn": -0.574485 + }, + { + "surface": "辺幅", + "readging": "へんぷく", + "pos": "名詞", + "pn": -0.574486 + }, + { + "surface": "抄録", + "readging": "しょうろく", + "pos": "名詞", + "pn": -0.574494 + }, + { + "surface": "ぐらぐら", + "readging": "ぐらぐら", + "pos": "副詞", + "pn": -0.574496 + }, + { + "surface": "椿", + "readging": "つばき", + "pos": "名詞", + "pn": -0.574502 + }, + { + "surface": "住宅", + "readging": "じゅうたく", + "pos": "名詞", + "pn": -0.574505 + }, + { + "surface": "鍋底", + "readging": "なべぞこ", + "pos": "名詞", + "pn": -0.574537 + }, + { + "surface": "燻べる", + "readging": "ふすべる", + "pos": "動詞", + "pn": -0.574556 + }, + { + "surface": "街頭", + "readging": "がいとう", + "pos": "名詞", + "pn": -0.574585 + }, + { + "surface": "仇敵", + "readging": "きゅうてき", + "pos": "名詞", + "pn": -0.574614 + }, + { + "surface": "拝辞", + "readging": "はいじ", + "pos": "名詞", + "pn": -0.574686 + }, + { + "surface": "寒気立つ", + "readging": "さむけだつ", + "pos": "動詞", + "pn": -0.574799 + }, + { + "surface": "紡錘形", + "readging": "ぼうすいけい", + "pos": "名詞", + "pn": -0.574815 + }, + { + "surface": "乳鉢", + "readging": "にゅうばち", + "pos": "名詞", + "pn": -0.574842 + }, + { + "surface": "下げ緒", + "readging": "さげお", + "pos": "名詞", + "pn": -0.574844 + }, + { + "surface": "乾板", + "readging": "かんぱん", + "pos": "名詞", + "pn": -0.574845 + }, + { + "surface": "推する", + "readging": "すいする", + "pos": "動詞", + "pn": -0.574848 + }, + { + "surface": "矢柄", + "readging": "やがら", + "pos": "名詞", + "pn": -0.574848 + }, + { + "surface": "青虫", + "readging": "あおむし", + "pos": "名詞", + "pn": -0.574867 + }, + { + "surface": "憚り", + "readging": "はばかり", + "pos": "名詞", + "pn": -0.574886 + }, + { + "surface": "埋める", + "readging": "うずめる", + "pos": "動詞", + "pn": -0.574914 + }, + { + "surface": "正式", + "readging": "せいしき", + "pos": "名詞", + "pn": -0.574927 + }, + { + "surface": "過程", + "readging": "かてい", + "pos": "名詞", + "pn": -0.574953 + }, + { + "surface": "応酬", + "readging": "おうしゅう", + "pos": "名詞", + "pn": -0.574964 + }, + { + "surface": "心根", + "readging": "しんこん", + "pos": "名詞", + "pn": -0.57499 + }, + { + "surface": "魂消る", + "readging": "たまげる", + "pos": "動詞", + "pn": -0.574996 + }, + { + "surface": "切れ目", + "readging": "きれめ", + "pos": "名詞", + "pn": -0.575 + }, + { + "surface": "背泳", + "readging": "せおよぎ", + "pos": "名詞", + "pn": -0.575032 + }, + { + "surface": "鉄棒", + "readging": "てつぼう", + "pos": "名詞", + "pn": -0.575032 + }, + { + "surface": "跨線橋", + "readging": "こせんきょう", + "pos": "名詞", + "pn": -0.575074 + }, + { + "surface": "一周", + "readging": "いっしゅう", + "pos": "名詞", + "pn": -0.575106 + }, + { + "surface": "池畔", + "readging": "ちはん", + "pos": "名詞", + "pn": -0.575139 + }, + { + "surface": "溝板", + "readging": "どぶいた", + "pos": "名詞", + "pn": -0.575153 + }, + { + "surface": "自転車", + "readging": "じてんしゃ", + "pos": "名詞", + "pn": -0.575164 + }, + { + "surface": "精進揚", + "readging": "しょうじんあげ", + "pos": "名詞", + "pn": -0.575177 + }, + { + "surface": "箏", + "readging": "そう", + "pos": "名詞", + "pn": -0.575231 + }, + { + "surface": "蜂", + "readging": "はち", + "pos": "名詞", + "pn": -0.575244 + }, + { + "surface": "常傭", + "readging": "じょうよう", + "pos": "名詞", + "pn": -0.575245 + }, + { + "surface": "潜る", + "readging": "もぐる", + "pos": "動詞", + "pn": -0.575266 + }, + { + "surface": "五行", + "readging": "ごぎょう", + "pos": "名詞", + "pn": -0.57528 + }, + { + "surface": "アイス", + "readging": "アイスホッケー", + "pos": "名詞", + "pn": -0.575306 + }, + { + "surface": "執着", + "readging": "しゅうちゃく", + "pos": "名詞", + "pn": -0.575308 + }, + { + "surface": "網代木", + "readging": "あじろぎ", + "pos": "名詞", + "pn": -0.575396 + }, + { + "surface": "煩労", + "readging": "はんろう", + "pos": "名詞", + "pn": -0.575414 + }, + { + "surface": "脚立", + "readging": "きゃたつ", + "pos": "名詞", + "pn": -0.575423 + }, + { + "surface": "ぬかるみ", + "readging": "ぬかるみ", + "pos": "名詞", + "pn": -0.575435 + }, + { + "surface": "同一", + "readging": "どういつ", + "pos": "名詞", + "pn": -0.575448 + }, + { + "surface": "じんじんばしょり", + "readging": "じんじんばしょり", + "pos": "名詞", + "pn": -0.575462 + }, + { + "surface": "片影", + "readging": "へんえい", + "pos": "名詞", + "pn": -0.575473 + }, + { + "surface": "ダンス", + "readging": "ダンスホール", + "pos": "名詞", + "pn": -0.575489 + }, + { + "surface": "飛報", + "readging": "ひほう", + "pos": "名詞", + "pn": -0.575541 + }, + { + "surface": "渡洋", + "readging": "とよう", + "pos": "名詞", + "pn": -0.575559 + }, + { + "surface": "気配", + "readging": "けはい", + "pos": "名詞", + "pn": -0.575559 + }, + { + "surface": "寝癖", + "readging": "ねぐせ", + "pos": "名詞", + "pn": -0.575576 + }, + { + "surface": "来由", + "readging": "らいゆ", + "pos": "名詞", + "pn": -0.575581 + }, + { + "surface": "凝集", + "readging": "ぎょうしゅう", + "pos": "名詞", + "pn": -0.575583 + }, + { + "surface": "ポスター", + "readging": "ポスター", + "pos": "名詞", + "pn": -0.575593 + }, + { + "surface": "玩具", + "readging": "がんぐ", + "pos": "名詞", + "pn": -0.575596 + }, + { + "surface": "海老錠", + "readging": "えびじょう", + "pos": "名詞", + "pn": -0.5756 + }, + { + "surface": "頓着", + "readging": "とんじゃく", + "pos": "名詞", + "pn": -0.575613 + }, + { + "surface": "諸訳", + "readging": "しょわけ", + "pos": "名詞", + "pn": -0.575633 + }, + { + "surface": "序詞", + "readging": "じょし", + "pos": "名詞", + "pn": -0.575651 + }, + { + "surface": "期日", + "readging": "きじつ", + "pos": "名詞", + "pn": -0.575733 + }, + { + "surface": "磨き", + "readging": "みがき", + "pos": "名詞", + "pn": -0.575745 + }, + { + "surface": "立地", + "readging": "りっち", + "pos": "名詞", + "pn": -0.575746 + }, + { + "surface": "自在鉤", + "readging": "じざいかぎ", + "pos": "名詞", + "pn": -0.575757 + }, + { + "surface": "膨大", + "readging": "ぼうだい", + "pos": "名詞", + "pn": -0.575783 + }, + { + "surface": "身震い", + "readging": "みぶるい", + "pos": "名詞", + "pn": -0.575787 + }, + { + "surface": "強制", + "readging": "きょうせい", + "pos": "名詞", + "pn": -0.575788 + }, + { + "surface": "山懐", + "readging": "やまふところ", + "pos": "名詞", + "pn": -0.57579 + }, + { + "surface": "怠業", + "readging": "たいぎょう", + "pos": "名詞", + "pn": -0.575797 + }, + { + "surface": "警察", + "readging": "けいさつ", + "pos": "名詞", + "pn": -0.575798 + }, + { + "surface": "断水", + "readging": "だんすい", + "pos": "名詞", + "pn": -0.575804 + }, + { + "surface": "破約", + "readging": "はやく", + "pos": "名詞", + "pn": -0.575817 + }, + { + "surface": "整骨", + "readging": "せいこつ", + "pos": "名詞", + "pn": -0.575819 + }, + { + "surface": "追捲る", + "readging": "おいまくる", + "pos": "動詞", + "pn": -0.575832 + }, + { + "surface": "石", + "readging": "こく", + "pos": "名詞", + "pn": -0.575849 + }, + { + "surface": "販売", + "readging": "はんばい", + "pos": "名詞", + "pn": -0.575858 + }, + { + "surface": "漫歩", + "readging": "まんぽ", + "pos": "名詞", + "pn": -0.575897 + }, + { + "surface": "差止める", + "readging": "さしとめる", + "pos": "動詞", + "pn": -0.575911 + }, + { + "surface": "荒肝", + "readging": "あらぎも", + "pos": "名詞", + "pn": -0.575916 + }, + { + "surface": "中興", + "readging": "ちゅうこう", + "pos": "名詞", + "pn": -0.57594 + }, + { + "surface": "則", + "readging": "そく", + "pos": "名詞", + "pn": -0.575948 + }, + { + "surface": "竹蜻蛉", + "readging": "たけとんぼ", + "pos": "名詞", + "pn": -0.575949 + }, + { + "surface": "高股", + "readging": "たかもも", + "pos": "名詞", + "pn": -0.575993 + }, + { + "surface": "逆立つ", + "readging": "さかだつ", + "pos": "動詞", + "pn": -0.575994 + }, + { + "surface": "獣類", + "readging": "じゅうるい", + "pos": "名詞", + "pn": -0.576012 + }, + { + "surface": "跳ねかす", + "readging": "はねかす", + "pos": "動詞", + "pn": -0.576014 + }, + { + "surface": "合歓木", + "readging": "ねむのき", + "pos": "名詞", + "pn": -0.576018 + }, + { + "surface": "不慣れ", + "readging": "ふなれ", + "pos": "名詞", + "pn": -0.576061 + }, + { + "surface": "ぐる", + "readging": "ぐる", + "pos": "名詞", + "pn": -0.576204 + }, + { + "surface": "パン粉", + "readging": "パンこ", + "pos": "名詞", + "pn": -0.576209 + }, + { + "surface": "乳臭", + "readging": "にゅうしゅう", + "pos": "名詞", + "pn": -0.576246 + }, + { + "surface": "質", + "readging": "しつ", + "pos": "名詞", + "pn": -0.576248 + }, + { + "surface": "死物狂い", + "readging": "しにものぐるい", + "pos": "名詞", + "pn": -0.576251 + }, + { + "surface": "隠し立て", + "readging": "かくしだて", + "pos": "名詞", + "pn": -0.576265 + }, + { + "surface": "炊爨", + "readging": "すいさん", + "pos": "名詞", + "pn": -0.576295 + }, + { + "surface": "伸縮", + "readging": "しんしゅく", + "pos": "名詞", + "pn": -0.576314 + }, + { + "surface": "大薩摩", + "readging": "おおざつま", + "pos": "名詞", + "pn": -0.576315 + }, + { + "surface": "面立ち", + "readging": "おもだち", + "pos": "名詞", + "pn": -0.576339 + }, + { + "surface": "即納", + "readging": "そくのう", + "pos": "名詞", + "pn": -0.576352 + }, + { + "surface": "即製", + "readging": "そくせい", + "pos": "名詞", + "pn": -0.576352 + }, + { + "surface": "ごしゃごしゃ", + "readging": "ごしゃごしゃ", + "pos": "副詞", + "pn": -0.576379 + }, + { + "surface": "足首", + "readging": "あしくび", + "pos": "名詞", + "pn": -0.576387 + }, + { + "surface": "旋風", + "readging": "せんぷう", + "pos": "名詞", + "pn": -0.576391 + }, + { + "surface": "丈", + "readging": "たけ", + "pos": "名詞", + "pn": -0.576394 + }, + { + "surface": "空間", + "readging": "あきま", + "pos": "名詞", + "pn": -0.576394 + }, + { + "surface": "老耄", + "readging": "おいぼれ", + "pos": "名詞", + "pn": -0.576448 + }, + { + "surface": "筆先", + "readging": "ふでさき", + "pos": "名詞", + "pn": -0.576451 + }, + { + "surface": "陪従", + "readging": "ばいじゅう", + "pos": "名詞", + "pn": -0.576472 + }, + { + "surface": "眸子", + "readging": "ぼうし", + "pos": "名詞", + "pn": -0.576476 + }, + { + "surface": "下降", + "readging": "かこう", + "pos": "名詞", + "pn": -0.576478 + }, + { + "surface": "就航", + "readging": "しゅうこう", + "pos": "名詞", + "pn": -0.576481 + }, + { + "surface": "表具", + "readging": "ひょうぐ", + "pos": "名詞", + "pn": -0.576485 + }, + { + "surface": "流動食", + "readging": "りゅうどうしょく", + "pos": "名詞", + "pn": -0.576499 + }, + { + "surface": "改題", + "readging": "かいだい", + "pos": "名詞", + "pn": -0.576515 + }, + { + "surface": "肺浸潤", + "readging": "はいしんじゅん", + "pos": "名詞", + "pn": -0.576533 + }, + { + "surface": "簀", + "readging": "す", + "pos": "名詞", + "pn": -0.576535 + }, + { + "surface": "懸崖", + "readging": "けんがい", + "pos": "名詞", + "pn": -0.576538 + }, + { + "surface": "各様", + "readging": "かくよう", + "pos": "名詞", + "pn": -0.57655 + }, + { + "surface": "在中", + "readging": "ざいちゅう", + "pos": "名詞", + "pn": -0.576563 + }, + { + "surface": "緋鹿子", + "readging": "ひがのこ", + "pos": "名詞", + "pn": -0.576563 + }, + { + "surface": "灸穴", + "readging": "きゅうけつ", + "pos": "名詞", + "pn": -0.576578 + }, + { + "surface": "むっと", + "readging": "むっと", + "pos": "副詞", + "pn": -0.576599 + }, + { + "surface": "放る", + "readging": "ほうる", + "pos": "動詞", + "pn": -0.576653 + }, + { + "surface": "鬱する", + "readging": "うっする", + "pos": "動詞", + "pn": -0.576669 + }, + { + "surface": "競走", + "readging": "きょうそう", + "pos": "名詞", + "pn": -0.576704 + }, + { + "surface": "熟覧", + "readging": "じゅくらん", + "pos": "名詞", + "pn": -0.576713 + }, + { + "surface": "百万遍", + "readging": "ひゃくまんべん", + "pos": "名詞", + "pn": -0.576719 + }, + { + "surface": "臍曲り", + "readging": "へそまがり", + "pos": "名詞", + "pn": -0.576731 + }, + { + "surface": "尻馬", + "readging": "しりうま", + "pos": "名詞", + "pn": -0.576732 + }, + { + "surface": "財源", + "readging": "ざいげん", + "pos": "名詞", + "pn": -0.576732 + }, + { + "surface": "スキャンダル", + "readging": "スキャンダル", + "pos": "名詞", + "pn": -0.576774 + }, + { + "surface": "サボタージュ", + "readging": "サボタージュ", + "pos": "名詞", + "pn": -0.576796 + }, + { + "surface": "ブローチ", + "readging": "ブローチ", + "pos": "名詞", + "pn": -0.576798 + }, + { + "surface": "至る", + "readging": "いたる", + "pos": "動詞", + "pn": -0.5768 + }, + { + "surface": "埴", + "readging": "はに", + "pos": "名詞", + "pn": -0.576806 + }, + { + "surface": "地回り", + "readging": "じまわり", + "pos": "名詞", + "pn": -0.576808 + }, + { + "surface": "青磁", + "readging": "せいじ", + "pos": "名詞", + "pn": -0.57681 + }, + { + "surface": "撒餌", + "readging": "まきえ", + "pos": "名詞", + "pn": -0.576826 + }, + { + "surface": "妾", + "readging": "めかけ", + "pos": "名詞", + "pn": -0.576832 + }, + { + "surface": "秤目", + "readging": "はかりめ", + "pos": "名詞", + "pn": -0.576832 + }, + { + "surface": "小成", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.576839 + }, + { + "surface": "清涼剤", + "readging": "せいりょうざい", + "pos": "名詞", + "pn": -0.576852 + }, + { + "surface": "加階", + "readging": "かかい", + "pos": "名詞", + "pn": -0.576854 + }, + { + "surface": "硝酸", + "readging": "しょうさん", + "pos": "名詞", + "pn": -0.576918 + }, + { + "surface": "市場", + "readging": "しじょう", + "pos": "名詞", + "pn": -0.576939 + }, + { + "surface": "邯鄲の夢", + "readging": "かんたんのゆめ", + "pos": "名詞", + "pn": -0.576949 + }, + { + "surface": "浮雲", + "readging": "ふうん", + "pos": "名詞", + "pn": -0.576953 + }, + { + "surface": "要綱", + "readging": "ようこう", + "pos": "名詞", + "pn": -0.576972 + }, + { + "surface": "牛馬", + "readging": "ぎゅうば", + "pos": "名詞", + "pn": -0.576986 + }, + { + "surface": "傷寒", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.576991 + }, + { + "surface": "瓦", + "readging": "が", + "pos": "名詞", + "pn": -0.576995 + }, + { + "surface": "法網", + "readging": "ほうもう", + "pos": "名詞", + "pn": -0.577012 + }, + { + "surface": "歩み", + "readging": "あゆみ", + "pos": "名詞", + "pn": -0.577036 + }, + { + "surface": "澄し汁", + "readging": "すましじる", + "pos": "名詞", + "pn": -0.577067 + }, + { + "surface": "涼", + "readging": "りょう", + "pos": "名詞", + "pn": -0.57707 + }, + { + "surface": "苦み", + "readging": "にがみ", + "pos": "名詞", + "pn": -0.577116 + }, + { + "surface": "オアシス", + "readging": "オアシス", + "pos": "名詞", + "pn": -0.577169 + }, + { + "surface": "剥がれる", + "readging": "はがれる", + "pos": "動詞", + "pn": -0.577175 + }, + { + "surface": "木立", + "readging": "こだち", + "pos": "名詞", + "pn": -0.577198 + }, + { + "surface": "輪差", + "readging": "わさ", + "pos": "名詞", + "pn": -0.577202 + }, + { + "surface": "手水", + "readging": "てみず", + "pos": "名詞", + "pn": -0.577249 + }, + { + "surface": "せつ", + "readging": "せつ", + "pos": "名詞", + "pn": -0.577252 + }, + { + "surface": "雪崩", + "readging": "なだれ", + "pos": "名詞", + "pn": -0.577291 + }, + { + "surface": "おっこちる", + "readging": "おっこちる", + "pos": "動詞", + "pn": -0.577331 + }, + { + "surface": "由縁", + "readging": "ゆえん", + "pos": "名詞", + "pn": -0.577337 + }, + { + "surface": "地鼠", + "readging": "じねずみ", + "pos": "名詞", + "pn": -0.577415 + }, + { + "surface": "荒らす", + "readging": "あらす", + "pos": "動詞", + "pn": -0.57744 + }, + { + "surface": "源流", + "readging": "げんりゅう", + "pos": "名詞", + "pn": -0.577465 + }, + { + "surface": "瓦", + "readging": "かわら", + "pos": "名詞", + "pn": -0.577553 + }, + { + "surface": "種切れ", + "readging": "たねぎれ", + "pos": "名詞", + "pn": -0.577574 + }, + { + "surface": "殻", + "readging": "かく", + "pos": "名詞", + "pn": -0.577627 + }, + { + "surface": "井戸車", + "readging": "いど", + "pos": "名詞", + "pn": -0.577653 + }, + { + "surface": "山繭", + "readging": "やままゆ", + "pos": "名詞", + "pn": -0.577657 + }, + { + "surface": "綛", + "readging": "かせ", + "pos": "名詞", + "pn": -0.577676 + }, + { + "surface": "おひゃらかす", + "readging": "おひゃらかす", + "pos": "動詞", + "pn": -0.57768 + }, + { + "surface": "拙著", + "readging": "せっちょ", + "pos": "名詞", + "pn": -0.57768 + }, + { + "surface": "ミルク", + "readging": "ミルクセーキ", + "pos": "名詞", + "pn": -0.577761 + }, + { + "surface": "共", + "readging": "とも", + "pos": "名詞", + "pn": -0.577826 + }, + { + "surface": "時に", + "readging": "ときに", + "pos": "副詞", + "pn": -0.577886 + }, + { + "surface": "隔心", + "readging": "かくしん", + "pos": "名詞", + "pn": -0.577894 + }, + { + "surface": "崖", + "readging": "がい", + "pos": "名詞", + "pn": -0.577944 + }, + { + "surface": "くずおれる", + "readging": "くずおれる", + "pos": "動詞", + "pn": -0.577985 + }, + { + "surface": "古び", + "readging": "ふるび", + "pos": "名詞", + "pn": -0.577993 + }, + { + "surface": "タイヤ", + "readging": "タイヤ", + "pos": "名詞", + "pn": -0.578 + }, + { + "surface": "方", + "readging": "ほう", + "pos": "名詞", + "pn": -0.578011 + }, + { + "surface": "撮影", + "readging": "さつえい", + "pos": "名詞", + "pn": -0.578033 + }, + { + "surface": "掻払い", + "readging": "かっぱらい", + "pos": "名詞", + "pn": -0.578045 + }, + { + "surface": "回り灯籠", + "readging": "まわりどうろう", + "pos": "名詞", + "pn": -0.578059 + }, + { + "surface": "酢の物", + "readging": "すのもの", + "pos": "名詞", + "pn": -0.578062 + }, + { + "surface": "一旒", + "readging": "いちりゅう", + "pos": "名詞", + "pn": -0.578102 + }, + { + "surface": "片片", + "readging": "へんぺん", + "pos": "名詞", + "pn": -0.578106 + }, + { + "surface": "久方振り", + "readging": "ひさかたぶり", + "pos": "名詞", + "pn": -0.578112 + }, + { + "surface": "種下し", + "readging": "たねおろし", + "pos": "名詞", + "pn": -0.578119 + }, + { + "surface": "大根", + "readging": "おおね", + "pos": "名詞", + "pn": -0.578123 + }, + { + "surface": "利かぬ気", + "readging": "きかぬき", + "pos": "名詞", + "pn": -0.578146 + }, + { + "surface": "行き来", + "readging": "ゆきき", + "pos": "名詞", + "pn": -0.578158 + }, + { + "surface": "地下足袋", + "readging": "じかたび", + "pos": "名詞", + "pn": -0.578166 + }, + { + "surface": "フード", + "readging": "フード", + "pos": "名詞", + "pn": -0.57817 + }, + { + "surface": "纏", + "readging": "まとい", + "pos": "名詞", + "pn": -0.578174 + }, + { + "surface": "とっぷり", + "readging": "とっぷり", + "pos": "副詞", + "pn": -0.5782 + }, + { + "surface": "ライト", + "readging": "ライトバン", + "pos": "名詞", + "pn": -0.578207 + }, + { + "surface": "魔力", + "readging": "まりょく", + "pos": "名詞", + "pn": -0.578226 + }, + { + "surface": "土偶", + "readging": "どぐう", + "pos": "名詞", + "pn": -0.578253 + }, + { + "surface": "部分け", + "readging": "ぶわけ", + "pos": "名詞", + "pn": -0.578272 + }, + { + "surface": "踏込み", + "readging": "ふみこみ", + "pos": "名詞", + "pn": -0.578277 + }, + { + "surface": "摩る", + "readging": "さする", + "pos": "動詞", + "pn": -0.578325 + }, + { + "surface": "察する", + "readging": "さっする", + "pos": "動詞", + "pn": -0.578343 + }, + { + "surface": "独酌", + "readging": "どくしゃく", + "pos": "名詞", + "pn": -0.578353 + }, + { + "surface": "椋の木", + "readging": "むくのき", + "pos": "名詞", + "pn": -0.578368 + }, + { + "surface": "両天秤", + "readging": "りょうてんびん", + "pos": "名詞", + "pn": -0.578378 + }, + { + "surface": "中天", + "readging": "ちゅうてん", + "pos": "名詞", + "pn": -0.578398 + }, + { + "surface": "ロンパース", + "readging": "ロンパース", + "pos": "名詞", + "pn": -0.578448 + }, + { + "surface": "均す", + "readging": "ならす", + "pos": "動詞", + "pn": -0.578469 + }, + { + "surface": "夕", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.57847 + }, + { + "surface": "スカッシュ", + "readging": "スカッシュ", + "pos": "名詞", + "pn": -0.578483 + }, + { + "surface": "笛", + "readging": "てき", + "pos": "名詞", + "pn": -0.578502 + }, + { + "surface": "緞帳", + "readging": "どんちょう", + "pos": "名詞", + "pn": -0.578509 + }, + { + "surface": "門扉", + "readging": "もんぴ", + "pos": "名詞", + "pn": -0.578597 + }, + { + "surface": "端", + "readging": "は", + "pos": "名詞", + "pn": -0.57861 + }, + { + "surface": "あやかし", + "readging": "あやかし", + "pos": "名詞", + "pn": -0.578626 + }, + { + "surface": "帷子", + "readging": "かたびら", + "pos": "名詞", + "pn": -0.578646 + }, + { + "surface": "撤する", + "readging": "てっする", + "pos": "動詞", + "pn": -0.578697 + }, + { + "surface": "飽満", + "readging": "ほうまん", + "pos": "名詞", + "pn": -0.578722 + }, + { + "surface": "憑依", + "readging": "ひょうい", + "pos": "名詞", + "pn": -0.578737 + }, + { + "surface": "厄払い", + "readging": "やくはらい", + "pos": "名詞", + "pn": -0.578784 + }, + { + "surface": "山相", + "readging": "さんそう", + "pos": "名詞", + "pn": -0.578787 + }, + { + "surface": "疲らせる", + "readging": "つからせる", + "pos": "動詞", + "pn": -0.578838 + }, + { + "surface": "疲らす", + "readging": "つからす", + "pos": "動詞", + "pn": -0.578838 + }, + { + "surface": "海路", + "readging": "うなじ", + "pos": "名詞", + "pn": -0.57884 + }, + { + "surface": "素描", + "readging": "すがき", + "pos": "名詞", + "pn": -0.578841 + }, + { + "surface": "上屋", + "readging": "うわや", + "pos": "名詞", + "pn": -0.578854 + }, + { + "surface": "条条", + "readging": "じょうじょう", + "pos": "名詞", + "pn": -0.578873 + }, + { + "surface": "放出", + "readging": "ほうしゅつ", + "pos": "名詞", + "pn": -0.578886 + }, + { + "surface": "捩込む", + "readging": "ねじこむ", + "pos": "動詞", + "pn": -0.578917 + }, + { + "surface": "私怨", + "readging": "しえん", + "pos": "名詞", + "pn": -0.578944 + }, + { + "surface": "極端", + "readging": "きょくたん", + "pos": "名詞", + "pn": -0.578948 + }, + { + "surface": "藤葛", + "readging": "ふじかずら", + "pos": "名詞", + "pn": -0.578949 + }, + { + "surface": "硝子障子", + "readging": "ガラスしょうじ", + "pos": "名詞", + "pn": -0.578993 + }, + { + "surface": "粗慢", + "readging": "そまん", + "pos": "名詞", + "pn": -0.579002 + }, + { + "surface": "軌道", + "readging": "きどう", + "pos": "名詞", + "pn": -0.579021 + }, + { + "surface": "駄菓子", + "readging": "だがし", + "pos": "名詞", + "pn": -0.57903 + }, + { + "surface": "登壇", + "readging": "とうだん", + "pos": "名詞", + "pn": -0.579032 + }, + { + "surface": "嗄れる", + "readging": "しわがれる", + "pos": "動詞", + "pn": -0.579039 + }, + { + "surface": "準拠", + "readging": "じゅんきょ", + "pos": "名詞", + "pn": -0.579043 + }, + { + "surface": "愚禿", + "readging": "ぐとく", + "pos": "名詞", + "pn": -0.579049 + }, + { + "surface": "消口", + "readging": "けしくち", + "pos": "名詞", + "pn": -0.579074 + }, + { + "surface": "流行らす", + "readging": "はやらす", + "pos": "動詞", + "pn": -0.579084 + }, + { + "surface": "乾飯", + "readging": "ほしいい", + "pos": "名詞", + "pn": -0.579115 + }, + { + "surface": "金頭", + "readging": "かながしら", + "pos": "名詞", + "pn": -0.579123 + }, + { + "surface": "煮え滾る", + "readging": "にえたぎる", + "pos": "動詞", + "pn": -0.57913 + }, + { + "surface": "おしゃぶり", + "readging": "おしゃぶり", + "pos": "名詞", + "pn": -0.579131 + }, + { + "surface": "用立つ", + "readging": "ようだつ", + "pos": "動詞", + "pn": -0.579154 + }, + { + "surface": "座り込む", + "readging": "すわりこむ", + "pos": "動詞", + "pn": -0.579177 + }, + { + "surface": "パラフィン", + "readging": "パラフィン", + "pos": "名詞", + "pn": -0.579179 + }, + { + "surface": "炭庫", + "readging": "たんこ", + "pos": "名詞", + "pn": -0.579222 + }, + { + "surface": "檀紙", + "readging": "だんし", + "pos": "名詞", + "pn": -0.579224 + }, + { + "surface": "渇望", + "readging": "かつぼう", + "pos": "名詞", + "pn": -0.57923 + }, + { + "surface": "奪回", + "readging": "だっかい", + "pos": "名詞", + "pn": -0.579244 + }, + { + "surface": "定斎屋", + "readging": "じょさいや", + "pos": "名詞", + "pn": -0.579252 + }, + { + "surface": "鉢", + "readging": "はち", + "pos": "名詞", + "pn": -0.579265 + }, + { + "surface": "応接", + "readging": "おうせつ", + "pos": "名詞", + "pn": -0.579301 + }, + { + "surface": "陶砂", + "readging": "どうさ", + "pos": "名詞", + "pn": -0.57931 + }, + { + "surface": "連弾", + "readging": "つれびき", + "pos": "名詞", + "pn": -0.579332 + }, + { + "surface": "筋播き", + "readging": "すじまき", + "pos": "名詞", + "pn": -0.579335 + }, + { + "surface": "着用", + "readging": "ちゃくよう", + "pos": "名詞", + "pn": -0.579349 + }, + { + "surface": "ビル", + "readging": "ビル", + "pos": "名詞", + "pn": -0.579355 + }, + { + "surface": "場", + "readging": "じょう", + "pos": "名詞", + "pn": -0.579454 + }, + { + "surface": "鼈甲", + "readging": "べっこう", + "pos": "名詞", + "pn": -0.579461 + }, + { + "surface": "点火", + "readging": "てんか", + "pos": "名詞", + "pn": -0.579549 + }, + { + "surface": "死恥", + "readging": "しにはじ", + "pos": "名詞", + "pn": -0.579549 + }, + { + "surface": "貼付", + "readging": "ちょうふ", + "pos": "名詞", + "pn": -0.579554 + }, + { + "surface": "捕まえる", + "readging": "とらまえる", + "pos": "動詞", + "pn": -0.579559 + }, + { + "surface": "帰京", + "readging": "ききょう", + "pos": "名詞", + "pn": -0.579611 + }, + { + "surface": "叫ぶ", + "readging": "さけぶ", + "pos": "動詞", + "pn": -0.579637 + }, + { + "surface": "女郎", + "readging": "めろう", + "pos": "名詞", + "pn": -0.579638 + }, + { + "surface": "気取る", + "readging": "きどる", + "pos": "動詞", + "pn": -0.57964 + }, + { + "surface": "仰向ける", + "readging": "あおむける", + "pos": "動詞", + "pn": -0.579663 + }, + { + "surface": "裏手", + "readging": "うらて", + "pos": "名詞", + "pn": -0.579666 + }, + { + "surface": "フロック", + "readging": "フロック", + "pos": "名詞", + "pn": -0.57967 + }, + { + "surface": "柿渋", + "readging": "かきしぶ", + "pos": "名詞", + "pn": -0.579673 + }, + { + "surface": "蛸の木", + "readging": "たこのき", + "pos": "名詞", + "pn": -0.579718 + }, + { + "surface": "経水", + "readging": "けいすい", + "pos": "名詞", + "pn": -0.579725 + }, + { + "surface": "誘蛾灯", + "readging": "ゆうがとう", + "pos": "名詞", + "pn": -0.579728 + }, + { + "surface": "茶瓶", + "readging": "ちゃびん", + "pos": "名詞", + "pn": -0.57974 + }, + { + "surface": "粘着", + "readging": "ねんちゃく", + "pos": "名詞", + "pn": -0.57975 + }, + { + "surface": "身籠る", + "readging": "みごもる", + "pos": "動詞", + "pn": -0.579785 + }, + { + "surface": "既", + "readging": "すんで", + "pos": "名詞", + "pn": -0.579786 + }, + { + "surface": "唐櫃", + "readging": "からびつ", + "pos": "名詞", + "pn": -0.579786 + }, + { + "surface": "鏡餅", + "readging": "かがみもち", + "pos": "名詞", + "pn": -0.579872 + }, + { + "surface": "手水", + "readging": "ちょうず", + "pos": "名詞", + "pn": -0.579951 + }, + { + "surface": "タック", + "readging": "タック", + "pos": "名詞", + "pn": -0.579962 + }, + { + "surface": "系統", + "readging": "けいとう", + "pos": "名詞", + "pn": -0.579964 + }, + { + "surface": "処", + "readging": "しょ", + "pos": "名詞", + "pn": -0.580001 + }, + { + "surface": "怒らす", + "readging": "いからす", + "pos": "動詞", + "pn": -0.580032 + }, + { + "surface": "猪牙", + "readging": "ちょき", + "pos": "名詞", + "pn": -0.580036 + }, + { + "surface": "背離", + "readging": "はいり", + "pos": "名詞", + "pn": -0.580036 + }, + { + "surface": "澱", + "readging": "でん", + "pos": "名詞", + "pn": -0.580053 + }, + { + "surface": "護摩壇", + "readging": "ごまだん", + "pos": "名詞", + "pn": -0.580053 + }, + { + "surface": "時折", + "readging": "ときおり", + "pos": "副詞", + "pn": -0.580078 + }, + { + "surface": "留別", + "readging": "りゅうべつ", + "pos": "名詞", + "pn": -0.580081 + }, + { + "surface": "畳紙", + "readging": "たとうがみ", + "pos": "名詞", + "pn": -0.58011 + }, + { + "surface": "彩る", + "readging": "いろどる", + "pos": "動詞", + "pn": -0.580131 + }, + { + "surface": "思い者", + "readging": "おもいもの", + "pos": "名詞", + "pn": -0.580198 + }, + { + "surface": "昏迷", + "readging": "こんめい", + "pos": "名詞", + "pn": -0.580246 + }, + { + "surface": "干満", + "readging": "かんまん", + "pos": "名詞", + "pn": -0.580249 + }, + { + "surface": "皮切り", + "readging": "かわきり", + "pos": "名詞", + "pn": -0.580258 + }, + { + "surface": "午睡", + "readging": "ごすい", + "pos": "名詞", + "pn": -0.58028 + }, + { + "surface": "節足動物", + "readging": "せっそくどうぶつ", + "pos": "名詞", + "pn": -0.580311 + }, + { + "surface": "末梢", + "readging": "まっしょう", + "pos": "名詞", + "pn": -0.580349 + }, + { + "surface": "腰間", + "readging": "ようかん", + "pos": "名詞", + "pn": -0.580389 + }, + { + "surface": "陰", + "readging": "いん", + "pos": "名詞", + "pn": -0.580407 + }, + { + "surface": "週", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.580434 + }, + { + "surface": "夜叉", + "readging": "やしゃ", + "pos": "名詞", + "pn": -0.580438 + }, + { + "surface": "医療", + "readging": "いりょう", + "pos": "名詞", + "pn": -0.580449 + }, + { + "surface": "祭礼", + "readging": "さいれい", + "pos": "名詞", + "pn": -0.580455 + }, + { + "surface": "紅裏", + "readging": "もみうら", + "pos": "名詞", + "pn": -0.580462 + }, + { + "surface": "須臾", + "readging": "しゅゆ", + "pos": "名詞", + "pn": -0.580503 + }, + { + "surface": "語頭", + "readging": "ごとう", + "pos": "名詞", + "pn": -0.580518 + }, + { + "surface": "手向ける", + "readging": "たむける", + "pos": "動詞", + "pn": -0.580569 + }, + { + "surface": "頓", + "readging": "とん", + "pos": "名詞", + "pn": -0.580577 + }, + { + "surface": "夕日", + "readging": "ゆうひ", + "pos": "名詞", + "pn": -0.580582 + }, + { + "surface": "綴り合せる", + "readging": "つづりあわせる", + "pos": "動詞", + "pn": -0.580602 + }, + { + "surface": "下腿", + "readging": "かたい", + "pos": "名詞", + "pn": -0.58061 + }, + { + "surface": "逃げ失せる", + "readging": "にげうせる", + "pos": "動詞", + "pn": -0.580649 + }, + { + "surface": "補修", + "readging": "ほしゅう", + "pos": "名詞", + "pn": -0.580652 + }, + { + "surface": "蝮", + "readging": "まむし", + "pos": "名詞", + "pn": -0.580664 + }, + { + "surface": "錆竹", + "readging": "さびだけ", + "pos": "名詞", + "pn": -0.580691 + }, + { + "surface": "ストール", + "readging": "ストール", + "pos": "名詞", + "pn": -0.580691 + }, + { + "surface": "手入れ", + "readging": "ていれ", + "pos": "名詞", + "pn": -0.580702 + }, + { + "surface": "別儀", + "readging": "べつぎ", + "pos": "名詞", + "pn": -0.580717 + }, + { + "surface": "独演", + "readging": "どくえん", + "pos": "名詞", + "pn": -0.58073 + }, + { + "surface": "乱闘", + "readging": "らんとう", + "pos": "名詞", + "pn": -0.580735 + }, + { + "surface": "臍", + "readging": "へそ", + "pos": "名詞", + "pn": -0.580757 + }, + { + "surface": "明烏", + "readging": "あけがらす", + "pos": "名詞", + "pn": -0.58079 + }, + { + "surface": "目塗り", + "readging": "めぬり", + "pos": "名詞", + "pn": -0.580803 + }, + { + "surface": "三杯酢", + "readging": "さんばいず", + "pos": "名詞", + "pn": -0.580808 + }, + { + "surface": "活字", + "readging": "かつじ", + "pos": "名詞", + "pn": -0.580809 + }, + { + "surface": "疥", + "readging": "はたけ", + "pos": "名詞", + "pn": -0.580816 + }, + { + "surface": "女の子", + "readging": "おんなのこ", + "pos": "名詞", + "pn": -0.580878 + }, + { + "surface": "片寄せる", + "readging": "かたよせる", + "pos": "動詞", + "pn": -0.580891 + }, + { + "surface": "煉瓦", + "readging": "れんが", + "pos": "名詞", + "pn": -0.580915 + }, + { + "surface": "方言", + "readging": "ほうげん", + "pos": "名詞", + "pn": -0.580926 + }, + { + "surface": "忌避", + "readging": "きひ", + "pos": "名詞", + "pn": -0.580975 + }, + { + "surface": "雑則", + "readging": "ざっそく", + "pos": "名詞", + "pn": -0.580978 + }, + { + "surface": "潜り", + "readging": "くぐり", + "pos": "名詞", + "pn": -0.580981 + }, + { + "surface": "都人士", + "readging": "とじんし", + "pos": "名詞", + "pn": -0.580997 + }, + { + "surface": "輪番", + "readging": "りんばん", + "pos": "名詞", + "pn": -0.581038 + }, + { + "surface": "狒狒", + "readging": "ひひ", + "pos": "名詞", + "pn": -0.581055 + }, + { + "surface": "軒", + "readging": "のき", + "pos": "名詞", + "pn": -0.581063 + }, + { + "surface": "速度", + "readging": "そくど", + "pos": "名詞", + "pn": -0.58111 + }, + { + "surface": "車椅子", + "readging": "くるまいす", + "pos": "名詞", + "pn": -0.581116 + }, + { + "surface": "消止める", + "readging": "けしとめる", + "pos": "動詞", + "pn": -0.581125 + }, + { + "surface": "てんから", + "readging": "てんから", + "pos": "副詞", + "pn": -0.581131 + }, + { + "surface": "義憤", + "readging": "ぎふん", + "pos": "名詞", + "pn": -0.581142 + }, + { + "surface": "婿", + "readging": "せい", + "pos": "名詞", + "pn": -0.581187 + }, + { + "surface": "雪崩込む", + "readging": "なだれこむ", + "pos": "動詞", + "pn": -0.581232 + }, + { + "surface": "混線", + "readging": "こんせん", + "pos": "名詞", + "pn": -0.581264 + }, + { + "surface": "臍落ち", + "readging": "ほぞおち", + "pos": "名詞", + "pn": -0.581285 + }, + { + "surface": "比べる", + "readging": "くらべる", + "pos": "動詞", + "pn": -0.581291 + }, + { + "surface": "アーモンド", + "readging": "アーモンド", + "pos": "名詞", + "pn": -0.581322 + }, + { + "surface": "夕月夜", + "readging": "ゆうづきよ", + "pos": "名詞", + "pn": -0.581356 + }, + { + "surface": "山中", + "readging": "さんちゅう", + "pos": "名詞", + "pn": -0.581382 + }, + { + "surface": "諾", + "readging": "だく", + "pos": "名詞", + "pn": -0.581396 + }, + { + "surface": "縄簾", + "readging": "なわすだれ", + "pos": "名詞", + "pn": -0.581402 + }, + { + "surface": "委", + "readging": "い", + "pos": "名詞", + "pn": -0.58141 + }, + { + "surface": "獄舎", + "readging": "ごくしゃ", + "pos": "名詞", + "pn": -0.581458 + }, + { + "surface": "股間", + "readging": "こかん", + "pos": "名詞", + "pn": -0.581491 + }, + { + "surface": "強意見", + "readging": "こわいけん", + "pos": "名詞", + "pn": -0.581506 + }, + { + "surface": "秘匿", + "readging": "ひとく", + "pos": "名詞", + "pn": -0.581506 + }, + { + "surface": "入れ毛", + "readging": "いれげ", + "pos": "名詞", + "pn": -0.581568 + }, + { + "surface": "平俗", + "readging": "へいぞく", + "pos": "名詞", + "pn": -0.581583 + }, + { + "surface": "技術", + "readging": "ぎじゅつ", + "pos": "名詞", + "pn": -0.581599 + }, + { + "surface": "家宅", + "readging": "かたく", + "pos": "名詞", + "pn": -0.581614 + }, + { + "surface": "先鞭", + "readging": "せんべん", + "pos": "名詞", + "pn": -0.581619 + }, + { + "surface": "課外", + "readging": "かがい", + "pos": "名詞", + "pn": -0.581635 + }, + { + "surface": "こい", + "readging": "こい", + "pos": "形容詞", + "pn": -0.581653 + }, + { + "surface": "汚す", + "readging": "けがす", + "pos": "動詞", + "pn": -0.581665 + }, + { + "surface": "鬘下", + "readging": "かつらした", + "pos": "名詞", + "pn": -0.581682 + }, + { + "surface": "例えば", + "readging": "たとえば", + "pos": "副詞", + "pn": -0.581687 + }, + { + "surface": "勝負事", + "readging": "しょうぶごと", + "pos": "名詞", + "pn": -0.581723 + }, + { + "surface": "貝殻", + "readging": "かいがら", + "pos": "名詞", + "pn": -0.581749 + }, + { + "surface": "端数", + "readging": "はすう", + "pos": "名詞", + "pn": -0.58175 + }, + { + "surface": "漬物", + "readging": "つけもの", + "pos": "名詞", + "pn": -0.581764 + }, + { + "surface": "手間仕事", + "readging": "てましごと", + "pos": "名詞", + "pn": -0.581777 + }, + { + "surface": "行交う", + "readging": "ゆきかう", + "pos": "動詞", + "pn": -0.581793 + }, + { + "surface": "染色", + "readging": "せんしょく", + "pos": "名詞", + "pn": -0.581801 + }, + { + "surface": "蹴込", + "readging": "けこみ", + "pos": "名詞", + "pn": -0.581805 + }, + { + "surface": "洛陽", + "readging": "らくよう", + "pos": "名詞", + "pn": -0.581806 + }, + { + "surface": "醜行", + "readging": "しゅうこう", + "pos": "名詞", + "pn": -0.581816 + }, + { + "surface": "琵琶", + "readging": "びわ", + "pos": "名詞", + "pn": -0.581854 + }, + { + "surface": "鯰髭", + "readging": "なまずひげ", + "pos": "名詞", + "pn": -0.581862 + }, + { + "surface": "梳櫛", + "readging": "すきぐし", + "pos": "名詞", + "pn": -0.581878 + }, + { + "surface": "張三李四", + "readging": "ちょうさんりし", + "pos": "名詞", + "pn": -0.581925 + }, + { + "surface": "梱る", + "readging": "こうる", + "pos": "動詞", + "pn": -0.581988 + }, + { + "surface": "騒乱", + "readging": "そうらん", + "pos": "名詞", + "pn": -0.581993 + }, + { + "surface": "上唇", + "readging": "うわくちびる", + "pos": "名詞", + "pn": -0.582012 + }, + { + "surface": "欠文", + "readging": "けつぶん", + "pos": "名詞", + "pn": -0.582016 + }, + { + "surface": "膝送り", + "readging": "ひざおくり", + "pos": "名詞", + "pn": -0.582025 + }, + { + "surface": "大略", + "readging": "たいりゃく", + "pos": "名詞", + "pn": -0.582046 + }, + { + "surface": "朝市", + "readging": "あさいち", + "pos": "名詞", + "pn": -0.582086 + }, + { + "surface": "食わす", + "readging": "くわす", + "pos": "動詞", + "pn": -0.582086 + }, + { + "surface": "サイド", + "readging": "サイドテーブル", + "pos": "名詞", + "pn": -0.582097 + }, + { + "surface": "謝", + "readging": "しゃ", + "pos": "名詞", + "pn": -0.582124 + }, + { + "surface": "楔", + "readging": "くさび", + "pos": "名詞", + "pn": -0.582179 + }, + { + "surface": "番台", + "readging": "ばんだい", + "pos": "名詞", + "pn": -0.582179 + }, + { + "surface": "餅草", + "readging": "もちぐさ", + "pos": "名詞", + "pn": -0.582179 + }, + { + "surface": "毛皮", + "readging": "けがわ", + "pos": "名詞", + "pn": -0.582193 + }, + { + "surface": "芋粥", + "readging": "いもがゆ", + "pos": "名詞", + "pn": -0.582196 + }, + { + "surface": "山道", + "readging": "さんどう", + "pos": "名詞", + "pn": -0.58221 + }, + { + "surface": "一家", + "readging": "いっか", + "pos": "名詞", + "pn": -0.582229 + }, + { + "surface": "倒影", + "readging": "とうえい", + "pos": "名詞", + "pn": -0.58223 + }, + { + "surface": "明石", + "readging": "あかし", + "pos": "名詞", + "pn": -0.582261 + }, + { + "surface": "復姓", + "readging": "ふくせい", + "pos": "名詞", + "pn": -0.582272 + }, + { + "surface": "切掛ける", + "readging": "きりかける", + "pos": "動詞", + "pn": -0.582274 + }, + { + "surface": "廃坑", + "readging": "はいこう", + "pos": "名詞", + "pn": -0.582279 + }, + { + "surface": "草箒", + "readging": "くさぼうき", + "pos": "名詞", + "pn": -0.582285 + }, + { + "surface": "ちぎれちぎれ", + "readging": "ちぎれちぎれ", + "pos": "名詞", + "pn": -0.582312 + }, + { + "surface": "城頭", + "readging": "じょうとう", + "pos": "名詞", + "pn": -0.582338 + }, + { + "surface": "小間結び", + "readging": "こまむすび", + "pos": "名詞", + "pn": -0.582341 + }, + { + "surface": "蘭", + "readging": "らん", + "pos": "名詞", + "pn": -0.582349 + }, + { + "surface": "狂句", + "readging": "きょうく", + "pos": "名詞", + "pn": -0.582379 + }, + { + "surface": "ばら蒔く", + "readging": "ばらまく", + "pos": "動詞", + "pn": -0.582382 + }, + { + "surface": "明かす", + "readging": "あかす", + "pos": "動詞", + "pn": -0.582397 + }, + { + "surface": "薄皮", + "readging": "うすかわ", + "pos": "名詞", + "pn": -0.582445 + }, + { + "surface": "琴曲", + "readging": "きんきょく", + "pos": "名詞", + "pn": -0.582487 + }, + { + "surface": "泥水", + "readging": "でいすい", + "pos": "名詞", + "pn": -0.582502 + }, + { + "surface": "せきたん殻", + "readging": "せきたんがら", + "pos": "名詞", + "pn": -0.582509 + }, + { + "surface": "欠落", + "readging": "けつらく", + "pos": "名詞", + "pn": -0.582513 + }, + { + "surface": "用船", + "readging": "ようせん", + "pos": "名詞", + "pn": -0.582534 + }, + { + "surface": "推戴", + "readging": "すいたい", + "pos": "名詞", + "pn": -0.58258 + }, + { + "surface": "乳", + "readging": "ちち", + "pos": "名詞", + "pn": -0.582607 + }, + { + "surface": "腹痛", + "readging": "はらいた", + "pos": "名詞", + "pn": -0.58261 + }, + { + "surface": "最終", + "readging": "さいしゅう", + "pos": "名詞", + "pn": -0.582636 + }, + { + "surface": "付会", + "readging": "ふかい", + "pos": "名詞", + "pn": -0.582643 + }, + { + "surface": "行事", + "readging": "ぎょうじ", + "pos": "名詞", + "pn": -0.582655 + }, + { + "surface": "頻出", + "readging": "ひんしゅつ", + "pos": "名詞", + "pn": -0.582662 + }, + { + "surface": "露", + "readging": "つゆ", + "pos": "名詞", + "pn": -0.582702 + }, + { + "surface": "突っ込む", + "readging": "つっこむ", + "pos": "動詞", + "pn": -0.582729 + }, + { + "surface": "一覧", + "readging": "いちらん", + "pos": "名詞", + "pn": -0.582784 + }, + { + "surface": "鳶口", + "readging": "とびぐち", + "pos": "名詞", + "pn": -0.582836 + }, + { + "surface": "権蔵", + "readging": "ごんぞう", + "pos": "名詞", + "pn": -0.582839 + }, + { + "surface": "推測", + "readging": "すいそく", + "pos": "名詞", + "pn": -0.582849 + }, + { + "surface": "口元", + "readging": "くちもと", + "pos": "名詞", + "pn": -0.58286 + }, + { + "surface": "ボール", + "readging": "ボール", + "pos": "名詞", + "pn": -0.582869 + }, + { + "surface": "斤量", + "readging": "きんりょう", + "pos": "名詞", + "pn": -0.582885 + }, + { + "surface": "縦覧", + "readging": "じゅうらん", + "pos": "名詞", + "pn": -0.582887 + }, + { + "surface": "幽霊", + "readging": "ゆうれい", + "pos": "名詞", + "pn": -0.582894 + }, + { + "surface": "お土砂", + "readging": "おどしゃ", + "pos": "名詞", + "pn": -0.582911 + }, + { + "surface": "解除", + "readging": "かいじょ", + "pos": "名詞", + "pn": -0.582913 + }, + { + "surface": "朮", + "readging": "おけら", + "pos": "名詞", + "pn": -0.582914 + }, + { + "surface": "捕吏", + "readging": "ほり", + "pos": "名詞", + "pn": -0.58293 + }, + { + "surface": "猟具", + "readging": "りょうぐ", + "pos": "名詞", + "pn": -0.582987 + }, + { + "surface": "糧", + "readging": "りょう", + "pos": "名詞", + "pn": -0.582987 + }, + { + "surface": "鉢巻", + "readging": "はちまき", + "pos": "名詞", + "pn": -0.582995 + }, + { + "surface": "雁股", + "readging": "かりまた", + "pos": "名詞", + "pn": -0.583016 + }, + { + "surface": "高島田", + "readging": "たかしまだ", + "pos": "名詞", + "pn": -0.583032 + }, + { + "surface": "悋気", + "readging": "りんき", + "pos": "名詞", + "pn": -0.583046 + }, + { + "surface": "辺土", + "readging": "へんど", + "pos": "名詞", + "pn": -0.583075 + }, + { + "surface": "名付", + "readging": "なづけ", + "pos": "名詞", + "pn": -0.583088 + }, + { + "surface": "明り先", + "readging": "あかりさき", + "pos": "名詞", + "pn": -0.583109 + }, + { + "surface": "縁起", + "readging": "えんぎ", + "pos": "名詞", + "pn": -0.583111 + }, + { + "surface": "千万", + "readging": "せんばん", + "pos": "名詞", + "pn": -0.583113 + }, + { + "surface": "手拭", + "readging": "てぬぐい", + "pos": "名詞", + "pn": -0.583115 + }, + { + "surface": "張回す", + "readging": "はりまわす", + "pos": "動詞", + "pn": -0.583128 + }, + { + "surface": "コブラ", + "readging": "コブラ", + "pos": "名詞", + "pn": -0.583135 + }, + { + "surface": "輩", + "readging": "やから", + "pos": "名詞", + "pn": -0.583154 + }, + { + "surface": "統べ括る", + "readging": "すべくくる", + "pos": "動詞", + "pn": -0.583157 + }, + { + "surface": "延焼", + "readging": "えんしょう", + "pos": "名詞", + "pn": -0.583199 + }, + { + "surface": "筋違い", + "readging": "すじちがい", + "pos": "名詞", + "pn": -0.583236 + }, + { + "surface": "ばた屋", + "readging": "ばたや", + "pos": "名詞", + "pn": -0.583268 + }, + { + "surface": "旧怨", + "readging": "きゅうえん", + "pos": "名詞", + "pn": -0.583291 + }, + { + "surface": "妙に", + "readging": "みょうに", + "pos": "副詞", + "pn": -0.583294 + }, + { + "surface": "菖蒲", + "readging": "あやめ", + "pos": "名詞", + "pn": -0.583297 + }, + { + "surface": "貢ぐ", + "readging": "みつぐ", + "pos": "動詞", + "pn": -0.583299 + }, + { + "surface": "精げる", + "readging": "しらげる", + "pos": "動詞", + "pn": -0.583301 + }, + { + "surface": "手抜かり", + "readging": "てぬかり", + "pos": "名詞", + "pn": -0.583308 + }, + { + "surface": "とろろ昆布", + "readging": "とろろこんぶ", + "pos": "名詞", + "pn": -0.583319 + }, + { + "surface": "お天気", + "readging": "おてんき", + "pos": "名詞", + "pn": -0.583332 + }, + { + "surface": "鍬形", + "readging": "くわがた", + "pos": "名詞", + "pn": -0.583338 + }, + { + "surface": "コピー", + "readging": "コピー", + "pos": "名詞", + "pn": -0.583348 + }, + { + "surface": "引っ繰り返す", + "readging": "ひっくりかえす", + "pos": "動詞", + "pn": -0.583379 + }, + { + "surface": "結論", + "readging": "けつろん", + "pos": "名詞", + "pn": -0.583387 + }, + { + "surface": "擬宝珠", + "readging": "ぎぼし", + "pos": "名詞", + "pn": -0.583425 + }, + { + "surface": "挙式", + "readging": "きょしき", + "pos": "名詞", + "pn": -0.583427 + }, + { + "surface": "余地", + "readging": "よち", + "pos": "名詞", + "pn": -0.583435 + }, + { + "surface": "汗疹", + "readging": "あせも", + "pos": "名詞", + "pn": -0.583437 + }, + { + "surface": "罷り間違う", + "readging": "まかりまちがう", + "pos": "動詞", + "pn": -0.58356 + }, + { + "surface": "湿布", + "readging": "しっぷ", + "pos": "名詞", + "pn": -0.583584 + }, + { + "surface": "囃子", + "readging": "はやし", + "pos": "名詞", + "pn": -0.583599 + }, + { + "surface": "輪禍", + "readging": "りんか", + "pos": "名詞", + "pn": -0.583624 + }, + { + "surface": "小生", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.583638 + }, + { + "surface": "引付ける", + "readging": "ひきつける", + "pos": "動詞", + "pn": -0.583663 + }, + { + "surface": "結び目", + "readging": "むすびめ", + "pos": "名詞", + "pn": -0.583732 + }, + { + "surface": "夕暮", + "readging": "ゆうぐれ", + "pos": "名詞", + "pn": -0.583736 + }, + { + "surface": "吐血", + "readging": "とけつ", + "pos": "名詞", + "pn": -0.583737 + }, + { + "surface": "鼻腔", + "readging": "びこう", + "pos": "名詞", + "pn": -0.583743 + }, + { + "surface": "岡惚れ", + "readging": "おかぼれ", + "pos": "名詞", + "pn": -0.583743 + }, + { + "surface": "フリル", + "readging": "フリル", + "pos": "名詞", + "pn": -0.583744 + }, + { + "surface": "不味", + "readging": "ふみ", + "pos": "名詞", + "pn": -0.583747 + }, + { + "surface": "動座", + "readging": "どうざ", + "pos": "名詞", + "pn": -0.583756 + }, + { + "surface": "押え", + "readging": "おさえ", + "pos": "名詞", + "pn": -0.583775 + }, + { + "surface": "鷲", + "readging": "わし", + "pos": "名詞", + "pn": -0.583786 + }, + { + "surface": "媒介", + "readging": "ばいかい", + "pos": "名詞", + "pn": -0.583815 + }, + { + "surface": "解き物", + "readging": "ときもの", + "pos": "名詞", + "pn": -0.583819 + }, + { + "surface": "耳語", + "readging": "じご", + "pos": "名詞", + "pn": -0.58382 + }, + { + "surface": "リベット", + "readging": "リベット", + "pos": "名詞", + "pn": -0.583838 + }, + { + "surface": "リズム", + "readging": "リズム", + "pos": "名詞", + "pn": -0.583845 + }, + { + "surface": "一掬", + "readging": "いっきく", + "pos": "名詞", + "pn": -0.583875 + }, + { + "surface": "朱墨", + "readging": "しゅずみ", + "pos": "名詞", + "pn": -0.583894 + }, + { + "surface": "着込み", + "readging": "きこみ", + "pos": "名詞", + "pn": -0.583908 + }, + { + "surface": "在職", + "readging": "ざいしょく", + "pos": "名詞", + "pn": -0.583925 + }, + { + "surface": "おかちめんこ", + "readging": "おかちめんこ", + "pos": "名詞", + "pn": -0.583927 + }, + { + "surface": "月役", + "readging": "つきやく", + "pos": "名詞", + "pn": -0.583927 + }, + { + "surface": "九分九厘", + "readging": "くぶくりん", + "pos": "名詞", + "pn": -0.583928 + }, + { + "surface": "本態", + "readging": "ほんたい", + "pos": "名詞", + "pn": -0.583931 + }, + { + "surface": "由来", + "readging": "ゆらい", + "pos": "名詞", + "pn": -0.583998 + }, + { + "surface": "花びら", + "readging": "はなびら", + "pos": "名詞", + "pn": -0.584015 + }, + { + "surface": "白粉花", + "readging": "おしろいばな", + "pos": "名詞", + "pn": -0.584021 + }, + { + "surface": "橋詰", + "readging": "はしづめ", + "pos": "名詞", + "pn": -0.584027 + }, + { + "surface": "死に変る", + "readging": "しにかわる", + "pos": "動詞", + "pn": -0.584081 + }, + { + "surface": "石筍", + "readging": "せきじゅん", + "pos": "名詞", + "pn": -0.584115 + }, + { + "surface": "挙証", + "readging": "きょしょう", + "pos": "名詞", + "pn": -0.584117 + }, + { + "surface": "博", + "readging": "はく", + "pos": "名詞", + "pn": -0.584129 + }, + { + "surface": "凄む", + "readging": "すごむ", + "pos": "動詞", + "pn": -0.584136 + }, + { + "surface": "艶消し", + "readging": "つやけし", + "pos": "名詞", + "pn": -0.584169 + }, + { + "surface": "狐疑", + "readging": "こぎ", + "pos": "名詞", + "pn": -0.584171 + }, + { + "surface": "断層", + "readging": "だんそう", + "pos": "名詞", + "pn": -0.584175 + }, + { + "surface": "犯行", + "readging": "はんこう", + "pos": "名詞", + "pn": -0.584231 + }, + { + "surface": "練習", + "readging": "れんしゅう", + "pos": "名詞", + "pn": -0.584255 + }, + { + "surface": "瑠璃鳥", + "readging": "るりちょう", + "pos": "名詞", + "pn": -0.584255 + }, + { + "surface": "大意", + "readging": "たいい", + "pos": "名詞", + "pn": -0.584275 + }, + { + "surface": "滝", + "readging": "たき", + "pos": "名詞", + "pn": -0.584362 + }, + { + "surface": "政道", + "readging": "せいどう", + "pos": "名詞", + "pn": -0.584377 + }, + { + "surface": "香炉", + "readging": "こうろ", + "pos": "名詞", + "pn": -0.584393 + }, + { + "surface": "擬製", + "readging": "ぎせい", + "pos": "名詞", + "pn": -0.584394 + }, + { + "surface": "ぎゃふん", + "readging": "ぎゃふん", + "pos": "副詞", + "pn": -0.584402 + }, + { + "surface": "ほとほと", + "readging": "ほとほと", + "pos": "副詞", + "pn": -0.584415 + }, + { + "surface": "退かす", + "readging": "どかす", + "pos": "動詞", + "pn": -0.584425 + }, + { + "surface": "潮", + "readging": "うしお", + "pos": "名詞", + "pn": -0.58443 + }, + { + "surface": "内腿", + "readging": "うちもも", + "pos": "名詞", + "pn": -0.58449 + }, + { + "surface": "クリーニング", + "readging": "クリーニング", + "pos": "名詞", + "pn": -0.58451 + }, + { + "surface": "メンス", + "readging": "メンス", + "pos": "名詞", + "pn": -0.58452 + }, + { + "surface": "喪", + "readging": "も", + "pos": "名詞", + "pn": -0.584532 + }, + { + "surface": "他宗", + "readging": "たしゅう", + "pos": "名詞", + "pn": -0.584532 + }, + { + "surface": "杣小屋", + "readging": "そまごや", + "pos": "名詞", + "pn": -0.58454 + }, + { + "surface": "権力", + "readging": "けんりょく", + "pos": "名詞", + "pn": -0.584545 + }, + { + "surface": "懐紙", + "readging": "かいし", + "pos": "名詞", + "pn": -0.584551 + }, + { + "surface": "酢漿", + "readging": "かたばみ", + "pos": "名詞", + "pn": -0.584582 + }, + { + "surface": "墓参", + "readging": "ぼさん", + "pos": "名詞", + "pn": -0.584603 + }, + { + "surface": "曹達", + "readging": "ソーダ", + "pos": "名詞", + "pn": -0.584611 + }, + { + "surface": "老耄", + "readging": "ろうもう", + "pos": "名詞", + "pn": -0.58463 + }, + { + "surface": "天道虫", + "readging": "てんとうむし", + "pos": "名詞", + "pn": -0.584672 + }, + { + "surface": "ふっつり", + "readging": "ふっつり", + "pos": "副詞", + "pn": -0.584731 + }, + { + "surface": "区画", + "readging": "くかく", + "pos": "名詞", + "pn": -0.584742 + }, + { + "surface": "補肥", + "readging": "ほひ", + "pos": "名詞", + "pn": -0.584758 + }, + { + "surface": "泡", + "readging": "あぶく", + "pos": "名詞", + "pn": -0.58477 + }, + { + "surface": "河骨", + "readging": "こうほね", + "pos": "名詞", + "pn": -0.584795 + }, + { + "surface": "朝顔", + "readging": "あさがお", + "pos": "名詞", + "pn": -0.584801 + }, + { + "surface": "木履", + "readging": "ぽっくり", + "pos": "名詞", + "pn": -0.584811 + }, + { + "surface": "手鞠", + "readging": "てまり", + "pos": "名詞", + "pn": -0.584815 + }, + { + "surface": "亀裂", + "readging": "きれつ", + "pos": "名詞", + "pn": -0.584828 + }, + { + "surface": "杉", + "readging": "すぎ", + "pos": "名詞", + "pn": -0.584833 + }, + { + "surface": "暖地", + "readging": "だんち", + "pos": "名詞", + "pn": -0.584875 + }, + { + "surface": "封緘", + "readging": "ふうかん", + "pos": "名詞", + "pn": -0.584898 + }, + { + "surface": "飛沫", + "readging": "しぶき", + "pos": "名詞", + "pn": -0.584957 + }, + { + "surface": "塵取", + "readging": "ちりとり", + "pos": "名詞", + "pn": -0.584968 + }, + { + "surface": "掲示", + "readging": "けいじ", + "pos": "名詞", + "pn": -0.584968 + }, + { + "surface": "軽石", + "readging": "かるいし", + "pos": "名詞", + "pn": -0.584985 + }, + { + "surface": "惚ける", + "readging": "ぼける", + "pos": "動詞", + "pn": -0.584988 + }, + { + "surface": "報償", + "readging": "ほうしょう", + "pos": "名詞", + "pn": -0.584994 + }, + { + "surface": "屡", + "readging": "しばしば", + "pos": "副詞", + "pn": -0.585061 + }, + { + "surface": "埋まる", + "readging": "うずまる", + "pos": "動詞", + "pn": -0.585065 + }, + { + "surface": "荒馬", + "readging": "あらうま", + "pos": "名詞", + "pn": -0.585066 + }, + { + "surface": "町内", + "readging": "ちょうない", + "pos": "名詞", + "pn": -0.585071 + }, + { + "surface": "取違える", + "readging": "とりちがえる", + "pos": "動詞", + "pn": -0.585075 + }, + { + "surface": "猩紅熱", + "readging": "しょうこうねつ", + "pos": "名詞", + "pn": -0.585076 + }, + { + "surface": "通常", + "readging": "つうじょう", + "pos": "名詞", + "pn": -0.585085 + }, + { + "surface": "徒費", + "readging": "とひ", + "pos": "名詞", + "pn": -0.585093 + }, + { + "surface": "身勝手", + "readging": "みがって", + "pos": "名詞", + "pn": -0.585094 + }, + { + "surface": "隠れん坊", + "readging": "かくれんぼう", + "pos": "名詞", + "pn": -0.585101 + }, + { + "surface": "ビーバー", + "readging": "ビーバー", + "pos": "名詞", + "pn": -0.585177 + }, + { + "surface": "頻繁", + "readging": "ひんぱん", + "pos": "名詞", + "pn": -0.585225 + }, + { + "surface": "マット", + "readging": "マット", + "pos": "名詞", + "pn": -0.585249 + }, + { + "surface": "海千山千", + "readging": "うみせんやません", + "pos": "名詞", + "pn": -0.58525 + }, + { + "surface": "以外", + "readging": "いがい", + "pos": "名詞", + "pn": -0.585254 + }, + { + "surface": "小骨", + "readging": "こぼね", + "pos": "名詞", + "pn": -0.585258 + }, + { + "surface": "幾", + "readging": "き", + "pos": "名詞", + "pn": -0.585309 + }, + { + "surface": "しぼ", + "readging": "しぼ", + "pos": "名詞", + "pn": -0.585315 + }, + { + "surface": "水切れ", + "readging": "みずぎれ", + "pos": "名詞", + "pn": -0.585328 + }, + { + "surface": "たくる", + "readging": "たくる", + "pos": "動詞", + "pn": -0.585332 + }, + { + "surface": "蛸足", + "readging": "たこあし", + "pos": "名詞", + "pn": -0.585341 + }, + { + "surface": "帆待ち", + "readging": "ほまち", + "pos": "名詞", + "pn": -0.585366 + }, + { + "surface": "葛餅", + "readging": "くずもち", + "pos": "名詞", + "pn": -0.585434 + }, + { + "surface": "自棄糞", + "readging": "やけくそ", + "pos": "名詞", + "pn": -0.585435 + }, + { + "surface": "追而書", + "readging": "おってがき", + "pos": "名詞", + "pn": -0.585523 + }, + { + "surface": "者", + "readging": "しゃ", + "pos": "名詞", + "pn": -0.585529 + }, + { + "surface": "添い寝", + "readging": "そいね", + "pos": "名詞", + "pn": -0.585551 + }, + { + "surface": "ひん曲る", + "readging": "ひんまがる", + "pos": "動詞", + "pn": -0.585649 + }, + { + "surface": "隔壁", + "readging": "かくへき", + "pos": "名詞", + "pn": -0.585662 + }, + { + "surface": "つくつく法師", + "readging": "つくつくぼうし", + "pos": "名詞", + "pn": -0.585672 + }, + { + "surface": "縮", + "readging": "ちぢみ", + "pos": "名詞", + "pn": -0.585689 + }, + { + "surface": "拭く", + "readging": "ふく", + "pos": "動詞", + "pn": -0.58569 + }, + { + "surface": "拝読", + "readging": "はいどく", + "pos": "名詞", + "pn": -0.585709 + }, + { + "surface": "紡糸", + "readging": "ぼうし", + "pos": "名詞", + "pn": -0.585725 + }, + { + "surface": "縮れる", + "readging": "ちぢれる", + "pos": "動詞", + "pn": -0.585774 + }, + { + "surface": "鉛", + "readging": "なまり", + "pos": "名詞", + "pn": -0.585782 + }, + { + "surface": "巧む", + "readging": "たくむ", + "pos": "動詞", + "pn": -0.585784 + }, + { + "surface": "生り物", + "readging": "なりもの", + "pos": "名詞", + "pn": -0.585793 + }, + { + "surface": "キック", + "readging": "キック", + "pos": "名詞", + "pn": -0.5858 + }, + { + "surface": "吐逆", + "readging": "とぎゃく", + "pos": "名詞", + "pn": -0.585816 + }, + { + "surface": "科料", + "readging": "かりょう", + "pos": "名詞", + "pn": -0.585841 + }, + { + "surface": "注文", + "readging": "ちゅうもん", + "pos": "名詞", + "pn": -0.585846 + }, + { + "surface": "辞退", + "readging": "じたい", + "pos": "名詞", + "pn": -0.585848 + }, + { + "surface": "リベート", + "readging": "リベート", + "pos": "名詞", + "pn": -0.585888 + }, + { + "surface": "皺む", + "readging": "しわむ", + "pos": "動詞", + "pn": -0.585939 + }, + { + "surface": "遠く", + "readging": "とおく", + "pos": "名詞", + "pn": -0.585968 + }, + { + "surface": "沙汰止み", + "readging": "さたやみ", + "pos": "名詞", + "pn": -0.585991 + }, + { + "surface": "牙城", + "readging": "がじょう", + "pos": "名詞", + "pn": -0.586002 + }, + { + "surface": "変約", + "readging": "へんやく", + "pos": "名詞", + "pn": -0.586003 + }, + { + "surface": "夏越", + "readging": "なごし", + "pos": "名詞", + "pn": -0.586106 + }, + { + "surface": "乳房", + "readging": "にゅうぼう", + "pos": "名詞", + "pn": -0.58615 + }, + { + "surface": "遅鈍", + "readging": "ちどん", + "pos": "名詞", + "pn": -0.586175 + }, + { + "surface": "一わたり", + "readging": "ひとわたり", + "pos": "名詞", + "pn": -0.586201 + }, + { + "surface": "別様", + "readging": "べつよう", + "pos": "名詞", + "pn": -0.586202 + }, + { + "surface": "ソーセージ", + "readging": "ソーセージ", + "pos": "名詞", + "pn": -0.586235 + }, + { + "surface": "濫觴", + "readging": "らんしょう", + "pos": "名詞", + "pn": -0.586241 + }, + { + "surface": "トータル", + "readging": "トータル", + "pos": "名詞", + "pn": -0.586286 + }, + { + "surface": "喇叭", + "readging": "らっぱ", + "pos": "名詞", + "pn": -0.586302 + }, + { + "surface": "そっぽ", + "readging": "そっぽ", + "pos": "名詞", + "pn": -0.586358 + }, + { + "surface": "スポイル", + "readging": "スポイル", + "pos": "名詞", + "pn": -0.586377 + }, + { + "surface": "筒先", + "readging": "つつさき", + "pos": "名詞", + "pn": -0.586389 + }, + { + "surface": "人中", + "readging": "ひとなか", + "pos": "名詞", + "pn": -0.586427 + }, + { + "surface": "震動", + "readging": "しんどう", + "pos": "名詞", + "pn": -0.586448 + }, + { + "surface": "凸凹", + "readging": "でこぼこ", + "pos": "名詞", + "pn": -0.586476 + }, + { + "surface": "同室", + "readging": "どうしつ", + "pos": "名詞", + "pn": -0.586511 + }, + { + "surface": "蓄蔵", + "readging": "ちくぞう", + "pos": "名詞", + "pn": -0.586514 + }, + { + "surface": "朝湯", + "readging": "あさゆ", + "pos": "名詞", + "pn": -0.58654 + }, + { + "surface": "畚褌", + "readging": "もっこふんどし", + "pos": "名詞", + "pn": -0.586553 + }, + { + "surface": "桟橋", + "readging": "さんばし", + "pos": "名詞", + "pn": -0.586566 + }, + { + "surface": "窪", + "readging": "くぼ", + "pos": "名詞", + "pn": -0.586584 + }, + { + "surface": "情報", + "readging": "じょうほう", + "pos": "名詞", + "pn": -0.58659 + }, + { + "surface": "上がり口", + "readging": "あがりぐち", + "pos": "名詞", + "pn": -0.586596 + }, + { + "surface": "木目込人形", + "readging": "きめこみにんぎょう", + "pos": "名詞", + "pn": -0.58662 + }, + { + "surface": "干割れる", + "readging": "ひわれる", + "pos": "動詞", + "pn": -0.58665 + }, + { + "surface": "込合う", + "readging": "こみあう", + "pos": "動詞", + "pn": -0.586672 + }, + { + "surface": "絮説", + "readging": "じょせつ", + "pos": "名詞", + "pn": -0.586707 + }, + { + "surface": "皮算用", + "readging": "かわざんよう", + "pos": "名詞", + "pn": -0.586707 + }, + { + "surface": "かぶれる", + "readging": "かぶれる", + "pos": "動詞", + "pn": -0.586714 + }, + { + "surface": "落書", + "readging": "らくしょ", + "pos": "名詞", + "pn": -0.586746 + }, + { + "surface": "壁下地", + "readging": "かべしたじ", + "pos": "名詞", + "pn": -0.586765 + }, + { + "surface": "なする", + "readging": "なする", + "pos": "動詞", + "pn": -0.586815 + }, + { + "surface": "穀象虫", + "readging": "こくぞうむし", + "pos": "名詞", + "pn": -0.586905 + }, + { + "surface": "両両", + "readging": "りょうりょう", + "pos": "名詞", + "pn": -0.586912 + }, + { + "surface": "河岸", + "readging": "かし", + "pos": "名詞", + "pn": -0.586926 + }, + { + "surface": "叩く", + "readging": "はたく", + "pos": "動詞", + "pn": -0.58693 + }, + { + "surface": "ハイエナ", + "readging": "ハイエナ", + "pos": "名詞", + "pn": -0.586934 + }, + { + "surface": "ぬらりくらり", + "readging": "ぬらりくらり", + "pos": "副詞", + "pn": -0.586939 + }, + { + "surface": "経上がる", + "readging": "へあがる", + "pos": "動詞", + "pn": -0.586963 + }, + { + "surface": "捕手", + "readging": "とりて", + "pos": "名詞", + "pn": -0.586964 + }, + { + "surface": "口金", + "readging": "くちがね", + "pos": "名詞", + "pn": -0.587012 + }, + { + "surface": "隣", + "readging": "りん", + "pos": "名詞", + "pn": -0.587032 + }, + { + "surface": "老い耄る", + "readging": "おいぼれる", + "pos": "動詞", + "pn": -0.587038 + }, + { + "surface": "物語", + "readging": "ものがたり", + "pos": "名詞", + "pn": -0.58704 + }, + { + "surface": "電球", + "readging": "でんきゅう", + "pos": "名詞", + "pn": -0.587095 + }, + { + "surface": "絹漉", + "readging": "きぬごし", + "pos": "名詞", + "pn": -0.587098 + }, + { + "surface": "庶出", + "readging": "しょしゅつ", + "pos": "名詞", + "pn": -0.587131 + }, + { + "surface": "たんさん", + "readging": "たんさんソーダ", + "pos": "名詞", + "pn": -0.587149 + }, + { + "surface": "粗方", + "readging": "あらかた", + "pos": "名詞", + "pn": -0.587151 + }, + { + "surface": "造作", + "readging": "ぞうさ", + "pos": "名詞", + "pn": -0.587183 + }, + { + "surface": "議す", + "readging": "ぎす", + "pos": "動詞", + "pn": -0.587198 + }, + { + "surface": "固唾", + "readging": "かたず", + "pos": "名詞", + "pn": -0.587216 + }, + { + "surface": "天明", + "readging": "てんめい", + "pos": "名詞", + "pn": -0.587221 + }, + { + "surface": "伏線", + "readging": "ふくせん", + "pos": "名詞", + "pn": -0.587273 + }, + { + "surface": "回路", + "readging": "かいろ", + "pos": "名詞", + "pn": -0.587278 + }, + { + "surface": "荷揚", + "readging": "にあげ", + "pos": "名詞", + "pn": -0.587285 + }, + { + "surface": "履修", + "readging": "りしゅう", + "pos": "名詞", + "pn": -0.587286 + }, + { + "surface": "落し蓋", + "readging": "おとしぶた", + "pos": "名詞", + "pn": -0.587306 + }, + { + "surface": "灯油", + "readging": "とうゆ", + "pos": "名詞", + "pn": -0.58734 + }, + { + "surface": "母", + "readging": "ぼ", + "pos": "名詞", + "pn": -0.587366 + }, + { + "surface": "聞込み", + "readging": "ききこみ", + "pos": "名詞", + "pn": -0.587392 + }, + { + "surface": "侍曹", + "readging": "じそう", + "pos": "名詞", + "pn": -0.58742 + }, + { + "surface": "蜜豆", + "readging": "みつまめ", + "pos": "名詞", + "pn": -0.587421 + }, + { + "surface": "褄黒横這", + "readging": "つまぐろよこばい", + "pos": "名詞", + "pn": -0.587461 + }, + { + "surface": "保険", + "readging": "ほけん", + "pos": "名詞", + "pn": -0.58751 + }, + { + "surface": "枝垂柳", + "readging": "しだれやなぎ", + "pos": "名詞", + "pn": -0.587517 + }, + { + "surface": "云為", + "readging": "うんい", + "pos": "名詞", + "pn": -0.587525 + }, + { + "surface": "暫し", + "readging": "しばし", + "pos": "副詞", + "pn": -0.587577 + }, + { + "surface": "肉情", + "readging": "にくじょう", + "pos": "名詞", + "pn": -0.587605 + }, + { + "surface": "起", + "readging": "き", + "pos": "名詞", + "pn": -0.587606 + }, + { + "surface": "手垢", + "readging": "てあか", + "pos": "名詞", + "pn": -0.587626 + }, + { + "surface": "石英", + "readging": "せきえい", + "pos": "名詞", + "pn": -0.587629 + }, + { + "surface": "蝦", + "readging": "えび", + "pos": "名詞", + "pn": -0.587644 + }, + { + "surface": "便衣", + "readging": "べんい", + "pos": "名詞", + "pn": -0.587681 + }, + { + "surface": "猪口", + "readging": "ちょく", + "pos": "名詞", + "pn": -0.587696 + }, + { + "surface": "模造", + "readging": "もぞう", + "pos": "名詞", + "pn": -0.587716 + }, + { + "surface": "怨言", + "readging": "えんげん", + "pos": "名詞", + "pn": -0.587733 + }, + { + "surface": "マニキュア", + "readging": "マニキュア", + "pos": "名詞", + "pn": -0.587744 + }, + { + "surface": "礎石", + "readging": "そせき", + "pos": "名詞", + "pn": -0.587772 + }, + { + "surface": "争論", + "readging": "そうろん", + "pos": "名詞", + "pn": -0.587809 + }, + { + "surface": "暇", + "readging": "いとま", + "pos": "名詞", + "pn": -0.587851 + }, + { + "surface": "愚生", + "readging": "ぐせい", + "pos": "名詞", + "pn": -0.587891 + }, + { + "surface": "動植物", + "readging": "どうしょくぶつ", + "pos": "名詞", + "pn": -0.587922 + }, + { + "surface": "都市", + "readging": "とし", + "pos": "名詞", + "pn": -0.587952 + }, + { + "surface": "藁打ち", + "readging": "わらうち", + "pos": "名詞", + "pn": -0.588055 + }, + { + "surface": "水煙", + "readging": "すいえん", + "pos": "名詞", + "pn": -0.588055 + }, + { + "surface": "量定", + "readging": "りょうてい", + "pos": "名詞", + "pn": -0.588072 + }, + { + "surface": "観世縒り", + "readging": "かんぜより", + "pos": "名詞", + "pn": -0.588081 + }, + { + "surface": "大約", + "readging": "たいやく", + "pos": "名詞", + "pn": -0.588111 + }, + { + "surface": "びら", + "readging": "びら", + "pos": "名詞", + "pn": -0.588147 + }, + { + "surface": "岩頭", + "readging": "がんとう", + "pos": "名詞", + "pn": -0.588242 + }, + { + "surface": "投", + "readging": "とう", + "pos": "名詞", + "pn": -0.588269 + }, + { + "surface": "原", + "readging": "げん", + "pos": "名詞", + "pn": -0.588285 + }, + { + "surface": "キャップ", + "readging": "キャップ", + "pos": "名詞", + "pn": -0.588296 + }, + { + "surface": "袈裟", + "readging": "けさ", + "pos": "名詞", + "pn": -0.588298 + }, + { + "surface": "口塞ぎ", + "readging": "くちふさぎ", + "pos": "名詞", + "pn": -0.588303 + }, + { + "surface": "齧る", + "readging": "かじる", + "pos": "動詞", + "pn": -0.588303 + }, + { + "surface": "食用蛙", + "readging": "しょくようがえる", + "pos": "名詞", + "pn": -0.588348 + }, + { + "surface": "装", + "readging": "しょう", + "pos": "名詞", + "pn": -0.588353 + }, + { + "surface": "黄櫨", + "readging": "はぜのき", + "pos": "名詞", + "pn": -0.588384 + }, + { + "surface": "累次", + "readging": "るいじ", + "pos": "名詞", + "pn": -0.588394 + }, + { + "surface": "才蔵", + "readging": "さいぞう", + "pos": "名詞", + "pn": -0.588454 + }, + { + "surface": "斬殺", + "readging": "ざんさつ", + "pos": "名詞", + "pn": -0.588461 + }, + { + "surface": "ちぎれる", + "readging": "ちぎれる", + "pos": "動詞", + "pn": -0.588522 + }, + { + "surface": "だま", + "readging": "だま", + "pos": "名詞", + "pn": -0.588536 + }, + { + "surface": "ホット", + "readging": "ホットドッグ", + "pos": "名詞", + "pn": -0.588541 + }, + { + "surface": "切腹", + "readging": "せっぷく", + "pos": "名詞", + "pn": -0.588577 + }, + { + "surface": "鳩", + "readging": "はと", + "pos": "名詞", + "pn": -0.588581 + }, + { + "surface": "法界悋気", + "readging": "ほうかいりんき", + "pos": "名詞", + "pn": -0.588582 + }, + { + "surface": "変動", + "readging": "へんどう", + "pos": "名詞", + "pn": -0.588608 + }, + { + "surface": "一巡", + "readging": "いちじゅん", + "pos": "名詞", + "pn": -0.588632 + }, + { + "surface": "叫喚", + "readging": "きょうかん", + "pos": "名詞", + "pn": -0.588636 + }, + { + "surface": "梳毛", + "readging": "そもう", + "pos": "名詞", + "pn": -0.588637 + }, + { + "surface": "資金", + "readging": "しきん", + "pos": "名詞", + "pn": -0.588642 + }, + { + "surface": "凡夫", + "readging": "ぼんぷ", + "pos": "名詞", + "pn": -0.588648 + }, + { + "surface": "虚妄", + "readging": "きょもう", + "pos": "名詞", + "pn": -0.588668 + }, + { + "surface": "金泥", + "readging": "きんでい", + "pos": "名詞", + "pn": -0.588721 + }, + { + "surface": "辺", + "readging": "へん", + "pos": "名詞", + "pn": -0.588771 + }, + { + "surface": "賊子", + "readging": "ぞくし", + "pos": "名詞", + "pn": -0.588772 + }, + { + "surface": "茶柄杓", + "readging": "ちゃびしゃく", + "pos": "名詞", + "pn": -0.588792 + }, + { + "surface": "塩物", + "readging": "しおもの", + "pos": "名詞", + "pn": -0.588806 + }, + { + "surface": "合鍵", + "readging": "あいかぎ", + "pos": "名詞", + "pn": -0.588818 + }, + { + "surface": "差固める", + "readging": "さしかためる", + "pos": "動詞", + "pn": -0.588821 + }, + { + "surface": "死", + "readging": "し", + "pos": "名詞", + "pn": -0.588833 + }, + { + "surface": "恐惶", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.58885 + }, + { + "surface": "炭手前", + "readging": "すみてまえ", + "pos": "名詞", + "pn": -0.588851 + }, + { + "surface": "縢る", + "readging": "かがる", + "pos": "動詞", + "pn": -0.588851 + }, + { + "surface": "皆目", + "readging": "かいもく", + "pos": "副詞", + "pn": -0.588865 + }, + { + "surface": "紛れ", + "readging": "まぎれ", + "pos": "名詞", + "pn": -0.588886 + }, + { + "surface": "猿股", + "readging": "さるまた", + "pos": "名詞", + "pn": -0.588891 + }, + { + "surface": "食い荒らす", + "readging": "くいあらす", + "pos": "動詞", + "pn": -0.588894 + }, + { + "surface": "藻屑", + "readging": "もくず", + "pos": "名詞", + "pn": -0.588913 + }, + { + "surface": "猟場", + "readging": "りょうば", + "pos": "名詞", + "pn": -0.588921 + }, + { + "surface": "悽愴", + "readging": "せいそう", + "pos": "名詞", + "pn": -0.588924 + }, + { + "surface": "追加", + "readging": "ついか", + "pos": "名詞", + "pn": -0.588936 + }, + { + "surface": "小糠雨", + "readging": "こぬかあめ", + "pos": "名詞", + "pn": -0.58895 + }, + { + "surface": "金平糖", + "readging": "コンペイトー", + "pos": "名詞", + "pn": -0.589063 + }, + { + "surface": "手提", + "readging": "てさげ", + "pos": "名詞", + "pn": -0.589086 + }, + { + "surface": "起源", + "readging": "きげん", + "pos": "名詞", + "pn": -0.589133 + }, + { + "surface": "典", + "readging": "てん", + "pos": "名詞", + "pn": -0.589162 + }, + { + "surface": "誦する", + "readging": "じゅする", + "pos": "動詞", + "pn": -0.589176 + }, + { + "surface": "種", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.589176 + }, + { + "surface": "風鎮", + "readging": "ふうちん", + "pos": "名詞", + "pn": -0.589185 + }, + { + "surface": "枷", + "readging": "かせ", + "pos": "名詞", + "pn": -0.589187 + }, + { + "surface": "嫌悪", + "readging": "けんお", + "pos": "名詞", + "pn": -0.589199 + }, + { + "surface": "軽機関銃", + "readging": "けいきかんじゅう", + "pos": "名詞", + "pn": -0.589201 + }, + { + "surface": "磨", + "readging": "ま", + "pos": "名詞", + "pn": -0.589218 + }, + { + "surface": "尻からげ", + "readging": "しりからげ", + "pos": "名詞", + "pn": -0.589233 + }, + { + "surface": "癩病", + "readging": "らいびょう", + "pos": "名詞", + "pn": -0.589264 + }, + { + "surface": "毛虱", + "readging": "けじらみ", + "pos": "名詞", + "pn": -0.589272 + }, + { + "surface": "糊", + "readging": "こ", + "pos": "名詞", + "pn": -0.58929 + }, + { + "surface": "塩尻", + "readging": "しおじり", + "pos": "名詞", + "pn": -0.589311 + }, + { + "surface": "米搗き虫", + "readging": "こめつきむし", + "pos": "名詞", + "pn": -0.589348 + }, + { + "surface": "五斗米", + "readging": "ごとべい", + "pos": "名詞", + "pn": -0.589359 + }, + { + "surface": "覗眼鏡", + "readging": "のぞきめがね", + "pos": "名詞", + "pn": -0.589386 + }, + { + "surface": "暮す", + "readging": "くらす", + "pos": "動詞", + "pn": -0.589394 + }, + { + "surface": "抗争", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.589422 + }, + { + "surface": "天刑", + "readging": "てんけい", + "pos": "名詞", + "pn": -0.58944 + }, + { + "surface": "紙面", + "readging": "しめん", + "pos": "名詞", + "pn": -0.589459 + }, + { + "surface": "神輿", + "readging": "しんよ", + "pos": "名詞", + "pn": -0.589487 + }, + { + "surface": "レプラ", + "readging": "レプラ", + "pos": "名詞", + "pn": -0.589514 + }, + { + "surface": "米", + "readging": "こめ", + "pos": "名詞", + "pn": -0.589518 + }, + { + "surface": "荒物", + "readging": "あらもの", + "pos": "名詞", + "pn": -0.589533 + }, + { + "surface": "付け焼", + "readging": "つけやき", + "pos": "名詞", + "pn": -0.589594 + }, + { + "surface": "遺物", + "readging": "いぶつ", + "pos": "名詞", + "pn": -0.589602 + }, + { + "surface": "おかず", + "readging": "おかず", + "pos": "名詞", + "pn": -0.589629 + }, + { + "surface": "半天", + "readging": "はんてん", + "pos": "名詞", + "pn": -0.589631 + }, + { + "surface": "一休み", + "readging": "ひとやすみ", + "pos": "名詞", + "pn": -0.589641 + }, + { + "surface": "質草", + "readging": "しちぐさ", + "pos": "名詞", + "pn": -0.589651 + }, + { + "surface": "珪肺", + "readging": "けいはい", + "pos": "名詞", + "pn": -0.589676 + }, + { + "surface": "拝借", + "readging": "はいしゃく", + "pos": "名詞", + "pn": -0.589706 + }, + { + "surface": "薄利", + "readging": "はくり", + "pos": "名詞", + "pn": -0.589722 + }, + { + "surface": "企業", + "readging": "きぎょう", + "pos": "名詞", + "pn": -0.589738 + }, + { + "surface": "鳶尾", + "readging": "いちはつ", + "pos": "名詞", + "pn": -0.589822 + }, + { + "surface": "浮魚", + "readging": "うきうお", + "pos": "名詞", + "pn": -0.589922 + }, + { + "surface": "押し切る", + "readging": "おしきる", + "pos": "動詞", + "pn": -0.589949 + }, + { + "surface": "飛離れる", + "readging": "とびはなれる", + "pos": "動詞", + "pn": -0.589954 + }, + { + "surface": "ルンペン", + "readging": "ルンペン", + "pos": "名詞", + "pn": -0.589967 + }, + { + "surface": "副読本", + "readging": "ふくどくほん", + "pos": "名詞", + "pn": -0.589976 + }, + { + "surface": "弁慶", + "readging": "べんけい", + "pos": "名詞", + "pn": -0.590021 + }, + { + "surface": "怨府", + "readging": "えんぷ", + "pos": "名詞", + "pn": -0.59003 + }, + { + "surface": "暢", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.590056 + }, + { + "surface": "撤饌", + "readging": "てっせん", + "pos": "名詞", + "pn": -0.59006 + }, + { + "surface": "介", + "readging": "かい", + "pos": "名詞", + "pn": -0.590069 + }, + { + "surface": "黒み", + "readging": "くろみ", + "pos": "名詞", + "pn": -0.590069 + }, + { + "surface": "縄目", + "readging": "なわめ", + "pos": "名詞", + "pn": -0.590082 + }, + { + "surface": "業務", + "readging": "ぎょうむ", + "pos": "名詞", + "pn": -0.590101 + }, + { + "surface": "急須", + "readging": "きゅうす", + "pos": "名詞", + "pn": -0.590157 + }, + { + "surface": "併合", + "readging": "へいごう", + "pos": "名詞", + "pn": -0.590197 + }, + { + "surface": "営倉", + "readging": "えいそう", + "pos": "名詞", + "pn": -0.590223 + }, + { + "surface": "立止る", + "readging": "たちどまる", + "pos": "動詞", + "pn": -0.590299 + }, + { + "surface": "人中", + "readging": "にんちゅう", + "pos": "名詞", + "pn": -0.590316 + }, + { + "surface": "波瀾", + "readging": "はらん", + "pos": "名詞", + "pn": -0.590333 + }, + { + "surface": "原肥", + "readging": "げんぴ", + "pos": "名詞", + "pn": -0.590415 + }, + { + "surface": "直中", + "readging": "ただなか", + "pos": "名詞", + "pn": -0.59045 + }, + { + "surface": "鳥兜", + "readging": "とりかぶと", + "pos": "名詞", + "pn": -0.590471 + }, + { + "surface": "転ばす", + "readging": "ころばす", + "pos": "動詞", + "pn": -0.590476 + }, + { + "surface": "両面", + "readging": "りょうめん", + "pos": "名詞", + "pn": -0.590517 + }, + { + "surface": "初診", + "readging": "しょしん", + "pos": "名詞", + "pn": -0.590568 + }, + { + "surface": "舞", + "readging": "まい", + "pos": "名詞", + "pn": -0.590575 + }, + { + "surface": "瞬時", + "readging": "しゅんじ", + "pos": "名詞", + "pn": -0.590603 + }, + { + "surface": "小胆", + "readging": "しょうたん", + "pos": "名詞", + "pn": -0.590607 + }, + { + "surface": "吹荒ぶ", + "readging": "ふきすさぶ", + "pos": "動詞", + "pn": -0.590633 + }, + { + "surface": "皮相", + "readging": "ひそう", + "pos": "名詞", + "pn": -0.590635 + }, + { + "surface": "土気色", + "readging": "つちけいろ", + "pos": "名詞", + "pn": -0.59064 + }, + { + "surface": "一夜妻", + "readging": "ひとよづま", + "pos": "名詞", + "pn": -0.590649 + }, + { + "surface": "忘れ草", + "readging": "わすれぐさ", + "pos": "名詞", + "pn": -0.590659 + }, + { + "surface": "突風", + "readging": "とっぷう", + "pos": "名詞", + "pn": -0.590665 + }, + { + "surface": "降り頻る", + "readging": "ふりしきる", + "pos": "動詞", + "pn": -0.590673 + }, + { + "surface": "腹ぺこ", + "readging": "はらぺこ", + "pos": "名詞", + "pn": -0.590678 + }, + { + "surface": "ラベル", + "readging": "ラベル", + "pos": "名詞", + "pn": -0.590689 + }, + { + "surface": "事態", + "readging": "じたい", + "pos": "名詞", + "pn": -0.590699 + }, + { + "surface": "揚繰網", + "readging": "あぐりあみ", + "pos": "名詞", + "pn": -0.590707 + }, + { + "surface": "肺尖", + "readging": "はいせん", + "pos": "名詞", + "pn": -0.590758 + }, + { + "surface": "夢違え", + "readging": "ゆめちがえ", + "pos": "名詞", + "pn": -0.590785 + }, + { + "surface": "目掛ける", + "readging": "めがける", + "pos": "動詞", + "pn": -0.59081 + }, + { + "surface": "枕", + "readging": "ちん", + "pos": "名詞", + "pn": -0.590837 + }, + { + "surface": "木炭", + "readging": "もくたん", + "pos": "名詞", + "pn": -0.59086 + }, + { + "surface": "易損品", + "readging": "いそんひん", + "pos": "名詞", + "pn": -0.590867 + }, + { + "surface": "年の瀬", + "readging": "としのせ", + "pos": "名詞", + "pn": -0.590875 + }, + { + "surface": "縮緬", + "readging": "ちりめん", + "pos": "名詞", + "pn": -0.590943 + }, + { + "surface": "デカダンス", + "readging": "デカダンス", + "pos": "名詞", + "pn": -0.590953 + }, + { + "surface": "積り", + "readging": "つもり", + "pos": "名詞", + "pn": -0.590977 + }, + { + "surface": "表情", + "readging": "ひょうじょう", + "pos": "名詞", + "pn": -0.59104 + }, + { + "surface": "座する", + "readging": "ざする", + "pos": "動詞", + "pn": -0.591054 + }, + { + "surface": "日本脳炎", + "readging": "にほんのうえん", + "pos": "名詞", + "pn": -0.591077 + }, + { + "surface": "寸秒", + "readging": "すんびょう", + "pos": "名詞", + "pn": -0.591124 + }, + { + "surface": "諷意", + "readging": "ふうい", + "pos": "名詞", + "pn": -0.591205 + }, + { + "surface": "剣玉", + "readging": "けんだま", + "pos": "名詞", + "pn": -0.591209 + }, + { + "surface": "擯斥", + "readging": "ひんせき", + "pos": "名詞", + "pn": -0.591218 + }, + { + "surface": "多欲", + "readging": "たよく", + "pos": "名詞", + "pn": -0.591222 + }, + { + "surface": "あちゃらか", + "readging": "あちゃらか", + "pos": "名詞", + "pn": -0.591228 + }, + { + "surface": "落し穴", + "readging": "おとしあな", + "pos": "名詞", + "pn": -0.591275 + }, + { + "surface": "居並ぶ", + "readging": "いならぶ", + "pos": "動詞", + "pn": -0.591287 + }, + { + "surface": "逸する", + "readging": "いっする", + "pos": "動詞", + "pn": -0.591309 + }, + { + "surface": "百舌", + "readging": "もず", + "pos": "名詞", + "pn": -0.591348 + }, + { + "surface": "損得", + "readging": "そんとく", + "pos": "名詞", + "pn": -0.59138 + }, + { + "surface": "山岸", + "readging": "やまぎし", + "pos": "名詞", + "pn": -0.591409 + }, + { + "surface": "ばね秤", + "readging": "ばねばかり", + "pos": "名詞", + "pn": -0.59142 + }, + { + "surface": "飯櫃", + "readging": "めしびつ", + "pos": "名詞", + "pn": -0.591448 + }, + { + "surface": "危ぶむ", + "readging": "あやぶむ", + "pos": "動詞", + "pn": -0.591472 + }, + { + "surface": "雑草", + "readging": "ざっそう", + "pos": "名詞", + "pn": -0.591485 + }, + { + "surface": "唐黍", + "readging": "もろこし", + "pos": "名詞", + "pn": -0.591487 + }, + { + "surface": "幟", + "readging": "のぼり", + "pos": "名詞", + "pn": -0.591496 + }, + { + "surface": "震え上がる", + "readging": "ふるえあがる", + "pos": "動詞", + "pn": -0.591498 + }, + { + "surface": "土塊", + "readging": "つちくれ", + "pos": "名詞", + "pn": -0.591514 + }, + { + "surface": "お多福風", + "readging": "おたふくかぜ", + "pos": "名詞", + "pn": -0.591518 + }, + { + "surface": "松葉牡丹", + "readging": "まつばぼたん", + "pos": "名詞", + "pn": -0.591541 + }, + { + "surface": "皮具", + "readging": "かわぐ", + "pos": "名詞", + "pn": -0.591541 + }, + { + "surface": "空", + "readging": "くう", + "pos": "名詞", + "pn": -0.591603 + }, + { + "surface": "ひねこびる", + "readging": "ひねこびる", + "pos": "動詞", + "pn": -0.591608 + }, + { + "surface": "頭", + "readging": "つぶり", + "pos": "名詞", + "pn": -0.591628 + }, + { + "surface": "雲泥", + "readging": "うんでい", + "pos": "名詞", + "pn": -0.59163 + }, + { + "surface": "小刀", + "readging": "ちいさがたな", + "pos": "名詞", + "pn": -0.591658 + }, + { + "surface": "慢性", + "readging": "まんせい", + "pos": "名詞", + "pn": -0.591675 + }, + { + "surface": "明くる日", + "readging": "あくるひ", + "pos": "名詞", + "pn": -0.591685 + }, + { + "surface": "亭", + "readging": "てい", + "pos": "名詞", + "pn": -0.591689 + }, + { + "surface": "真顔", + "readging": "まがお", + "pos": "名詞", + "pn": -0.591698 + }, + { + "surface": "ざく", + "readging": "ざく", + "pos": "名詞", + "pn": -0.591715 + }, + { + "surface": "大上段", + "readging": "だいじょうだん", + "pos": "名詞", + "pn": -0.591822 + }, + { + "surface": "脚", + "readging": "きゃく", + "pos": "名詞", + "pn": -0.591837 + }, + { + "surface": "惰弱", + "readging": "だじゃく", + "pos": "名詞", + "pn": -0.591841 + }, + { + "surface": "圧政", + "readging": "あっせい", + "pos": "名詞", + "pn": -0.591846 + }, + { + "surface": "上げ下げ", + "readging": "あげさげ", + "pos": "名詞", + "pn": -0.59185 + }, + { + "surface": "まめ", + "readging": "まめ", + "pos": "名詞", + "pn": -0.591853 + }, + { + "surface": "若紫", + "readging": "わかむらさき", + "pos": "名詞", + "pn": -0.591853 + }, + { + "surface": "カリウム", + "readging": "カリウム", + "pos": "名詞", + "pn": -0.591865 + }, + { + "surface": "潟", + "readging": "かた", + "pos": "名詞", + "pn": -0.591882 + }, + { + "surface": "練製品", + "readging": "ねりせいひん", + "pos": "名詞", + "pn": -0.591883 + }, + { + "surface": "余震", + "readging": "よしん", + "pos": "名詞", + "pn": -0.591895 + }, + { + "surface": "蓮", + "readging": "はす", + "pos": "名詞", + "pn": -0.591909 + }, + { + "surface": "僻", + "readging": "ひが", + "pos": "名詞", + "pn": -0.591913 + }, + { + "surface": "アイロン", + "readging": "アイロン", + "pos": "名詞", + "pn": -0.591947 + }, + { + "surface": "力む", + "readging": "りきむ", + "pos": "動詞", + "pn": -0.591949 + }, + { + "surface": "粉粉", + "readging": "こなごな", + "pos": "名詞", + "pn": -0.591952 + }, + { + "surface": "荒唐無稽", + "readging": "こうとうむけい", + "pos": "名詞", + "pn": -0.591963 + }, + { + "surface": "悪臭", + "readging": "あくしゅう", + "pos": "名詞", + "pn": -0.591991 + }, + { + "surface": "湯水", + "readging": "ゆみず", + "pos": "名詞", + "pn": -0.591992 + }, + { + "surface": "石持", + "readging": "いしもち", + "pos": "名詞", + "pn": -0.592038 + }, + { + "surface": "あらまし", + "readging": "あらまし", + "pos": "名詞", + "pn": -0.592053 + }, + { + "surface": "腐肉", + "readging": "ふにく", + "pos": "名詞", + "pn": -0.592059 + }, + { + "surface": "中身", + "readging": "なかみ", + "pos": "名詞", + "pn": -0.592076 + }, + { + "surface": "欲得", + "readging": "よくとく", + "pos": "名詞", + "pn": -0.592082 + }, + { + "surface": "鉱油", + "readging": "こうゆ", + "pos": "名詞", + "pn": -0.592094 + }, + { + "surface": "厨芥", + "readging": "ちゅうかい", + "pos": "名詞", + "pn": -0.592099 + }, + { + "surface": "廃絶", + "readging": "はいぜつ", + "pos": "名詞", + "pn": -0.592101 + }, + { + "surface": "彩色", + "readging": "さいしき", + "pos": "名詞", + "pn": -0.592103 + }, + { + "surface": "重犯", + "readging": "じゅうはん", + "pos": "名詞", + "pn": -0.592108 + }, + { + "surface": "翳す", + "readging": "かざす", + "pos": "動詞", + "pn": -0.59211 + }, + { + "surface": "幼童", + "readging": "ようどう", + "pos": "名詞", + "pn": -0.592113 + }, + { + "surface": "人手", + "readging": "ひとで", + "pos": "名詞", + "pn": -0.592158 + }, + { + "surface": "骨折", + "readging": "こっせつ", + "pos": "名詞", + "pn": -0.592176 + }, + { + "surface": "柏", + "readging": "かしわ", + "pos": "名詞", + "pn": -0.592179 + }, + { + "surface": "襟", + "readging": "えり", + "pos": "名詞", + "pn": -0.592181 + }, + { + "surface": "包帯", + "readging": "ほうたい", + "pos": "名詞", + "pn": -0.592185 + }, + { + "surface": "再築", + "readging": "さいちく", + "pos": "名詞", + "pn": -0.592194 + }, + { + "surface": "オートミール", + "readging": "オートミール", + "pos": "名詞", + "pn": -0.592287 + }, + { + "surface": "限界", + "readging": "げんかい", + "pos": "名詞", + "pn": -0.592309 + }, + { + "surface": "こそ泥", + "readging": "こそどろ", + "pos": "名詞", + "pn": -0.592334 + }, + { + "surface": "切らす", + "readging": "きらす", + "pos": "動詞", + "pn": -0.592365 + }, + { + "surface": "鴎", + "readging": "かもめ", + "pos": "名詞", + "pn": -0.592371 + }, + { + "surface": "通論", + "readging": "つうろん", + "pos": "名詞", + "pn": -0.592424 + }, + { + "surface": "画像", + "readging": "がぞう", + "pos": "名詞", + "pn": -0.592465 + }, + { + "surface": "熨斗目", + "readging": "のしめ", + "pos": "名詞", + "pn": -0.592472 + }, + { + "surface": "さすらう", + "readging": "さすらう", + "pos": "動詞", + "pn": -0.592499 + }, + { + "surface": "礼砲", + "readging": "れいほう", + "pos": "名詞", + "pn": -0.592501 + }, + { + "surface": "何とも", + "readging": "なんとも", + "pos": "副詞", + "pn": -0.592504 + }, + { + "surface": "気早", + "readging": "きばや", + "pos": "名詞", + "pn": -0.592511 + }, + { + "surface": "本城", + "readging": "ほんじょう", + "pos": "名詞", + "pn": -0.592541 + }, + { + "surface": "緑", + "readging": "りょく", + "pos": "名詞", + "pn": -0.592553 + }, + { + "surface": "透き間", + "readging": "すきま", + "pos": "名詞", + "pn": -0.592569 + }, + { + "surface": "ばら銭", + "readging": "ばらせん", + "pos": "名詞", + "pn": -0.592579 + }, + { + "surface": "スパイク", + "readging": "スパイク", + "pos": "名詞", + "pn": -0.59261 + }, + { + "surface": "越年", + "readging": "おつねん", + "pos": "名詞", + "pn": -0.592615 + }, + { + "surface": "分段", + "readging": "ぶんだん", + "pos": "名詞", + "pn": -0.592647 + }, + { + "surface": "異風", + "readging": "いふう", + "pos": "名詞", + "pn": -0.5927 + }, + { + "surface": "宿", + "readging": "やど", + "pos": "名詞", + "pn": -0.592701 + }, + { + "surface": "舞踊", + "readging": "ぶよう", + "pos": "名詞", + "pn": -0.592752 + }, + { + "surface": "長刀", + "readging": "なぎなた", + "pos": "名詞", + "pn": -0.592776 + }, + { + "surface": "跡絶える", + "readging": "とだえる", + "pos": "動詞", + "pn": -0.592777 + }, + { + "surface": "お侠", + "readging": "おきゃん", + "pos": "名詞", + "pn": -0.592799 + }, + { + "surface": "底意", + "readging": "そこい", + "pos": "名詞", + "pn": -0.592823 + }, + { + "surface": "怨敵", + "readging": "おんてき", + "pos": "名詞", + "pn": -0.592843 + }, + { + "surface": "がらくた", + "readging": "がらくた", + "pos": "名詞", + "pn": -0.592868 + }, + { + "surface": "惜しげ", + "readging": "おしげ", + "pos": "名詞", + "pn": -0.592872 + }, + { + "surface": "鳩尾", + "readging": "みずおち", + "pos": "名詞", + "pn": -0.592883 + }, + { + "surface": "獄吏", + "readging": "ごくり", + "pos": "名詞", + "pn": -0.592888 + }, + { + "surface": "一通り", + "readging": "ひととおり", + "pos": "名詞", + "pn": -0.59289 + }, + { + "surface": "裁切れ", + "readging": "たちぎれ", + "pos": "名詞", + "pn": -0.592891 + }, + { + "surface": "曲尺", + "readging": "かねじゃく", + "pos": "名詞", + "pn": -0.592905 + }, + { + "surface": "恐慌", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.592905 + }, + { + "surface": "内径", + "readging": "ないけい", + "pos": "名詞", + "pn": -0.592909 + }, + { + "surface": "錨地", + "readging": "びょうち", + "pos": "名詞", + "pn": -0.592928 + }, + { + "surface": "西", + "readging": "にし", + "pos": "名詞", + "pn": -0.592935 + }, + { + "surface": "俸給", + "readging": "ほうきゅう", + "pos": "名詞", + "pn": -0.592965 + }, + { + "surface": "はしゃぐ", + "readging": "はしゃぐ", + "pos": "動詞", + "pn": -0.592976 + }, + { + "surface": "手籠", + "readging": "てかご", + "pos": "名詞", + "pn": -0.592982 + }, + { + "surface": "天候", + "readging": "てんこう", + "pos": "名詞", + "pn": -0.592997 + }, + { + "surface": "遊ぶ", + "readging": "あそぶ", + "pos": "動詞", + "pn": -0.592997 + }, + { + "surface": "継歯", + "readging": "つぎは", + "pos": "名詞", + "pn": -0.593 + }, + { + "surface": "捩伏せる", + "readging": "ねじふせる", + "pos": "動詞", + "pn": -0.593001 + }, + { + "surface": "幾ら", + "readging": "いくら", + "pos": "名詞", + "pn": -0.593011 + }, + { + "surface": "骨惜しみ", + "readging": "ほねおしみ", + "pos": "名詞", + "pn": -0.593027 + }, + { + "surface": "誤伝", + "readging": "ごでん", + "pos": "名詞", + "pn": -0.593028 + }, + { + "surface": "三隣亡", + "readging": "さんりんぼう", + "pos": "名詞", + "pn": -0.593105 + }, + { + "surface": "語る", + "readging": "かたる", + "pos": "動詞", + "pn": -0.593109 + }, + { + "surface": "中枢", + "readging": "ちゅうすう", + "pos": "名詞", + "pn": -0.593112 + }, + { + "surface": "特訓", + "readging": "とっくん", + "pos": "名詞", + "pn": -0.593122 + }, + { + "surface": "付議", + "readging": "ふぎ", + "pos": "名詞", + "pn": -0.593122 + }, + { + "surface": "吊目", + "readging": "つりめ", + "pos": "名詞", + "pn": -0.593146 + }, + { + "surface": "金鍔", + "readging": "きんつば", + "pos": "名詞", + "pn": -0.59319 + }, + { + "surface": "結え付ける", + "readging": "ゆわえつける", + "pos": "動詞", + "pn": -0.593192 + }, + { + "surface": "係る", + "readging": "かかわる", + "pos": "動詞", + "pn": -0.593206 + }, + { + "surface": "常套", + "readging": "じょうとう", + "pos": "名詞", + "pn": -0.593242 + }, + { + "surface": "秘める", + "readging": "ひめる", + "pos": "動詞", + "pn": -0.593293 + }, + { + "surface": "大筋", + "readging": "おおすじ", + "pos": "名詞", + "pn": -0.593304 + }, + { + "surface": "草生す", + "readging": "くさむす", + "pos": "動詞", + "pn": -0.593317 + }, + { + "surface": "罐焚き", + "readging": "かまたき", + "pos": "名詞", + "pn": -0.593355 + }, + { + "surface": "肝臓", + "readging": "かんぞう", + "pos": "名詞", + "pn": -0.593378 + }, + { + "surface": "練武", + "readging": "れんぶ", + "pos": "名詞", + "pn": -0.593381 + }, + { + "surface": "突詰める", + "readging": "つきつめる", + "pos": "動詞", + "pn": -0.593458 + }, + { + "surface": "合成", + "readging": "ごうせい", + "pos": "名詞", + "pn": -0.593463 + }, + { + "surface": "言落す", + "readging": "いいおとす", + "pos": "動詞", + "pn": -0.593486 + }, + { + "surface": "義務", + "readging": "ぎむ", + "pos": "名詞", + "pn": -0.593494 + }, + { + "surface": "太鼓橋", + "readging": "たいこばし", + "pos": "名詞", + "pn": -0.593511 + }, + { + "surface": "瓶詰", + "readging": "びんづめ", + "pos": "名詞", + "pn": -0.593515 + }, + { + "surface": "沈殿", + "readging": "ちんでん", + "pos": "名詞", + "pn": -0.593531 + }, + { + "surface": "川辺", + "readging": "かわべ", + "pos": "名詞", + "pn": -0.593544 + }, + { + "surface": "周遊", + "readging": "しゅうゆう", + "pos": "名詞", + "pn": -0.593557 + }, + { + "surface": "建具", + "readging": "たてぐ", + "pos": "名詞", + "pn": -0.593558 + }, + { + "surface": "太絹", + "readging": "ふとぎぬ", + "pos": "名詞", + "pn": -0.593573 + }, + { + "surface": "取置く", + "readging": "とりおく", + "pos": "動詞", + "pn": -0.593636 + }, + { + "surface": "群れる", + "readging": "むれる", + "pos": "動詞", + "pn": -0.593675 + }, + { + "surface": "人倫", + "readging": "じんりん", + "pos": "名詞", + "pn": -0.593675 + }, + { + "surface": "針", + "readging": "しん", + "pos": "名詞", + "pn": -0.593695 + }, + { + "surface": "縒り", + "readging": "より", + "pos": "名詞", + "pn": -0.593697 + }, + { + "surface": "違える", + "readging": "たがえる", + "pos": "動詞", + "pn": -0.593755 + }, + { + "surface": "線路", + "readging": "せんろ", + "pos": "名詞", + "pn": -0.593778 + }, + { + "surface": "異称", + "readging": "いしょう", + "pos": "名詞", + "pn": -0.593778 + }, + { + "surface": "飲物", + "readging": "のみもの", + "pos": "名詞", + "pn": -0.593797 + }, + { + "surface": "薬物", + "readging": "やくぶつ", + "pos": "名詞", + "pn": -0.593805 + }, + { + "surface": "宿継ぎ", + "readging": "しゅくつぎ", + "pos": "名詞", + "pn": -0.593824 + }, + { + "surface": "口腔", + "readging": "こうこう", + "pos": "名詞", + "pn": -0.593849 + }, + { + "surface": "冷却", + "readging": "れいきゃく", + "pos": "名詞", + "pn": -0.593865 + }, + { + "surface": "凍傷", + "readging": "とうしょう", + "pos": "名詞", + "pn": -0.593894 + }, + { + "surface": "楫枕", + "readging": "かじまくら", + "pos": "名詞", + "pn": -0.593934 + }, + { + "surface": "対岸", + "readging": "たいがん", + "pos": "名詞", + "pn": -0.593943 + }, + { + "surface": "スポンジ", + "readging": "スポンジボール", + "pos": "名詞", + "pn": -0.593961 + }, + { + "surface": "一掴み", + "readging": "ひとつかみ", + "pos": "名詞", + "pn": -0.593964 + }, + { + "surface": "理論", + "readging": "りろん", + "pos": "名詞", + "pn": -0.593971 + }, + { + "surface": "白髯", + "readging": "はくぜん", + "pos": "名詞", + "pn": -0.594016 + }, + { + "surface": "顔向け", + "readging": "かおむけ", + "pos": "名詞", + "pn": -0.59403 + }, + { + "surface": "くみ", + "readging": "くみチンキ", + "pos": "名詞", + "pn": -0.594082 + }, + { + "surface": "鳥居", + "readging": "とりい", + "pos": "名詞", + "pn": -0.594145 + }, + { + "surface": "後見", + "readging": "こうけん", + "pos": "名詞", + "pn": -0.594147 + }, + { + "surface": "見損なう", + "readging": "みそこなう", + "pos": "動詞", + "pn": -0.594149 + }, + { + "surface": "畔", + "readging": "あぜ", + "pos": "名詞", + "pn": -0.594158 + }, + { + "surface": "自殺", + "readging": "じさつ", + "pos": "名詞", + "pn": -0.594225 + }, + { + "surface": "唐団扇", + "readging": "とううちわ", + "pos": "名詞", + "pn": -0.594236 + }, + { + "surface": "応答", + "readging": "おうとう", + "pos": "名詞", + "pn": -0.594239 + }, + { + "surface": "九字", + "readging": "くじ", + "pos": "名詞", + "pn": -0.594247 + }, + { + "surface": "一分", + "readging": "いちぶん", + "pos": "名詞", + "pn": -0.594264 + }, + { + "surface": "転補", + "readging": "てんぽ", + "pos": "名詞", + "pn": -0.594274 + }, + { + "surface": "茵", + "readging": "しとね", + "pos": "名詞", + "pn": -0.594285 + }, + { + "surface": "半ば", + "readging": "なかば", + "pos": "名詞", + "pn": -0.594295 + }, + { + "surface": "ゴール", + "readging": "ゴールイン", + "pos": "名詞", + "pn": -0.594303 + }, + { + "surface": "鯖雲", + "readging": "さばぐも", + "pos": "名詞", + "pn": -0.594347 + }, + { + "surface": "根付", + "readging": "ねつけ", + "pos": "名詞", + "pn": -0.594358 + }, + { + "surface": "大要", + "readging": "たいよう", + "pos": "名詞", + "pn": -0.594361 + }, + { + "surface": "屋敷", + "readging": "やしき", + "pos": "名詞", + "pn": -0.594362 + }, + { + "surface": "引退ける", + "readging": "ひきのける", + "pos": "動詞", + "pn": -0.594376 + }, + { + "surface": "竜吐水", + "readging": "りゅうどすい", + "pos": "名詞", + "pn": -0.594386 + }, + { + "surface": "紙一重", + "readging": "かみひとえ", + "pos": "名詞", + "pn": -0.594414 + }, + { + "surface": "癇癪", + "readging": "かんしゃく", + "pos": "名詞", + "pn": -0.594426 + }, + { + "surface": "夢語り", + "readging": "ゆめがたり", + "pos": "名詞", + "pn": -0.594456 + }, + { + "surface": "預ける", + "readging": "あずける", + "pos": "動詞", + "pn": -0.594487 + }, + { + "surface": "後尾", + "readging": "こうび", + "pos": "名詞", + "pn": -0.594598 + }, + { + "surface": "浜", + "readging": "ひん", + "pos": "名詞", + "pn": -0.594602 + }, + { + "surface": "囲繞", + "readging": "いにょう", + "pos": "名詞", + "pn": -0.594637 + }, + { + "surface": "定番", + "readging": "ていばん", + "pos": "名詞", + "pn": -0.594663 + }, + { + "surface": "押捺", + "readging": "おうなつ", + "pos": "名詞", + "pn": -0.594668 + }, + { + "surface": "諍", + "readging": "いさかい", + "pos": "名詞", + "pn": -0.594701 + }, + { + "surface": "白和え", + "readging": "しらあえ", + "pos": "名詞", + "pn": -0.594714 + }, + { + "surface": "火加減", + "readging": "ひかげん", + "pos": "名詞", + "pn": -0.594747 + }, + { + "surface": "悲鳴", + "readging": "ひめい", + "pos": "名詞", + "pn": -0.594763 + }, + { + "surface": "子離れ", + "readging": "こばなれ", + "pos": "名詞", + "pn": -0.594797 + }, + { + "surface": "変り飯", + "readging": "かわりめし", + "pos": "名詞", + "pn": -0.594836 + }, + { + "surface": "落雁", + "readging": "らくがん", + "pos": "名詞", + "pn": -0.594856 + }, + { + "surface": "琴爪", + "readging": "ことづめ", + "pos": "名詞", + "pn": -0.594869 + }, + { + "surface": "ベビー", + "readging": "ベビーシッター", + "pos": "名詞", + "pn": -0.594966 + }, + { + "surface": "墨色", + "readging": "ぼくしょく", + "pos": "名詞", + "pn": -0.59501 + }, + { + "surface": "術中", + "readging": "じゅっちゅう", + "pos": "名詞", + "pn": -0.595116 + }, + { + "surface": "冷す", + "readging": "ひやす", + "pos": "動詞", + "pn": -0.595122 + }, + { + "surface": "粛然", + "readging": "しゅくぜん", + "pos": "名詞", + "pn": -0.595123 + }, + { + "surface": "かんじき", + "readging": "かんじき", + "pos": "名詞", + "pn": -0.595169 + }, + { + "surface": "怪漢", + "readging": "かいかん", + "pos": "名詞", + "pn": -0.595172 + }, + { + "surface": "旅装", + "readging": "りょそう", + "pos": "名詞", + "pn": -0.595172 + }, + { + "surface": "六道", + "readging": "ろくどう", + "pos": "名詞", + "pn": -0.595175 + }, + { + "surface": "万", + "readging": "まん", + "pos": "名詞", + "pn": -0.595207 + }, + { + "surface": "小倉汁粉", + "readging": "おぐら", + "pos": "名詞", + "pn": -0.595263 + }, + { + "surface": "皺める", + "readging": "しわめる", + "pos": "動詞", + "pn": -0.595273 + }, + { + "surface": "断末魔", + "readging": "だんまつま", + "pos": "名詞", + "pn": -0.595277 + }, + { + "surface": "幣", + "readging": "へい", + "pos": "名詞", + "pn": -0.595312 + }, + { + "surface": "前轍", + "readging": "ぜんてつ", + "pos": "名詞", + "pn": -0.595343 + }, + { + "surface": "作況", + "readging": "さっきょう", + "pos": "名詞", + "pn": -0.595365 + }, + { + "surface": "新付", + "readging": "しんぷ", + "pos": "名詞", + "pn": -0.595378 + }, + { + "surface": "弄る", + "readging": "いじくる", + "pos": "動詞", + "pn": -0.595392 + }, + { + "surface": "交替", + "readging": "こうたい", + "pos": "名詞", + "pn": -0.595399 + }, + { + "surface": "募る", + "readging": "つのる", + "pos": "動詞", + "pn": -0.595424 + }, + { + "surface": "無法", + "readging": "むほう", + "pos": "名詞", + "pn": -0.595442 + }, + { + "surface": "孩児", + "readging": "がいじ", + "pos": "名詞", + "pn": -0.595488 + }, + { + "surface": "前借", + "readging": "ぜんしゃく", + "pos": "名詞", + "pn": -0.59552 + }, + { + "surface": "年月", + "readging": "ねんげつ", + "pos": "名詞", + "pn": -0.595524 + }, + { + "surface": "多少", + "readging": "たしょう", + "pos": "副詞", + "pn": -0.595549 + }, + { + "surface": "端金", + "readging": "はしたがね", + "pos": "名詞", + "pn": -0.595572 + }, + { + "surface": "目腐れ金", + "readging": "めくされがね", + "pos": "名詞", + "pn": -0.595572 + }, + { + "surface": "泥鰌髭", + "readging": "どじょうひげ", + "pos": "名詞", + "pn": -0.595594 + }, + { + "surface": "玄関", + "readging": "げんかん", + "pos": "名詞", + "pn": -0.595602 + }, + { + "surface": "遅筆", + "readging": "ちひつ", + "pos": "名詞", + "pn": -0.595604 + }, + { + "surface": "延滞", + "readging": "えんたい", + "pos": "名詞", + "pn": -0.595619 + }, + { + "surface": "摩損", + "readging": "まそん", + "pos": "名詞", + "pn": -0.595637 + }, + { + "surface": "雷魚", + "readging": "らいぎょ", + "pos": "名詞", + "pn": -0.595678 + }, + { + "surface": "慰み", + "readging": "なぐさみ", + "pos": "名詞", + "pn": -0.59569 + }, + { + "surface": "継手", + "readging": "つぎて", + "pos": "名詞", + "pn": -0.595692 + }, + { + "surface": "滅", + "readging": "めつ", + "pos": "名詞", + "pn": -0.595709 + }, + { + "surface": "塩圧し", + "readging": "しおおし", + "pos": "名詞", + "pn": -0.595719 + }, + { + "surface": "分銅", + "readging": "ふんどう", + "pos": "名詞", + "pn": -0.595727 + }, + { + "surface": "付着", + "readging": "ふちゃく", + "pos": "名詞", + "pn": -0.595747 + }, + { + "surface": "弱まる", + "readging": "よわまる", + "pos": "動詞", + "pn": -0.595777 + }, + { + "surface": "宿泊", + "readging": "しゅくはく", + "pos": "名詞", + "pn": -0.595816 + }, + { + "surface": "お裾分け", + "readging": "おすそわけ", + "pos": "名詞", + "pn": -0.595819 + }, + { + "surface": "弾き出す", + "readging": "はじきだす", + "pos": "動詞", + "pn": -0.595839 + }, + { + "surface": "堤", + "readging": "つつみ", + "pos": "名詞", + "pn": -0.595853 + }, + { + "surface": "舌禍", + "readging": "ぜっか", + "pos": "名詞", + "pn": -0.595856 + }, + { + "surface": "お下がり", + "readging": "おさがり", + "pos": "名詞", + "pn": -0.59587 + }, + { + "surface": "横抱き", + "readging": "よこだき", + "pos": "名詞", + "pn": -0.595899 + }, + { + "surface": "蜘蛛手", + "readging": "くもで", + "pos": "名詞", + "pn": -0.595914 + }, + { + "surface": "普段着草", + "readging": "ふだんそう", + "pos": "名詞", + "pn": -0.595918 + }, + { + "surface": "帳消し", + "readging": "ちょうけし", + "pos": "名詞", + "pn": -0.595942 + }, + { + "surface": "人人", + "readging": "にんにん", + "pos": "名詞", + "pn": -0.595957 + }, + { + "surface": "伝助", + "readging": "でんすけ", + "pos": "名詞", + "pn": -0.595979 + }, + { + "surface": "娼婦", + "readging": "しょうふ", + "pos": "名詞", + "pn": -0.595987 + }, + { + "surface": "平生", + "readging": "へいぜい", + "pos": "名詞", + "pn": -0.596004 + }, + { + "surface": "喉頭蓋", + "readging": "こうとうがい", + "pos": "名詞", + "pn": -0.596013 + }, + { + "surface": "欠", + "readging": "けつ", + "pos": "名詞", + "pn": -0.596051 + }, + { + "surface": "木偶", + "readging": "もくぐう", + "pos": "名詞", + "pn": -0.596065 + }, + { + "surface": "狂文", + "readging": "きょうぶん", + "pos": "名詞", + "pn": -0.596085 + }, + { + "surface": "漸騰", + "readging": "ぜんとう", + "pos": "名詞", + "pn": -0.596129 + }, + { + "surface": "菌類", + "readging": "きんるい", + "pos": "名詞", + "pn": -0.596151 + }, + { + "surface": "派", + "readging": "は", + "pos": "名詞", + "pn": -0.596158 + }, + { + "surface": "三つ", + "readging": "みっつ", + "pos": "名詞", + "pn": -0.59616 + }, + { + "surface": "連接", + "readging": "れんせつ", + "pos": "名詞", + "pn": -0.596169 + }, + { + "surface": "のら息子", + "readging": "のらむすこ", + "pos": "名詞", + "pn": -0.596172 + }, + { + "surface": "戯言", + "readging": "たわこと", + "pos": "名詞", + "pn": -0.596213 + }, + { + "surface": "月輪", + "readging": "げつりん", + "pos": "名詞", + "pn": -0.596222 + }, + { + "surface": "振動", + "readging": "しんどう", + "pos": "名詞", + "pn": -0.59629 + }, + { + "surface": "丸太", + "readging": "まるた", + "pos": "名詞", + "pn": -0.596302 + }, + { + "surface": "蛇管", + "readging": "だかん", + "pos": "名詞", + "pn": -0.596332 + }, + { + "surface": "人攫い", + "readging": "ひとさらい", + "pos": "名詞", + "pn": -0.596346 + }, + { + "surface": "身頃", + "readging": "みごろ", + "pos": "名詞", + "pn": -0.596367 + }, + { + "surface": "襤褸", + "readging": "らんる", + "pos": "名詞", + "pn": -0.596398 + }, + { + "surface": "七夕", + "readging": "たなばた", + "pos": "名詞", + "pn": -0.596412 + }, + { + "surface": "目印", + "readging": "めじるし", + "pos": "名詞", + "pn": -0.596422 + }, + { + "surface": "手形", + "readging": "てがた", + "pos": "名詞", + "pn": -0.596501 + }, + { + "surface": "容喙", + "readging": "ようかい", + "pos": "名詞", + "pn": -0.596506 + }, + { + "surface": "展延", + "readging": "てんえん", + "pos": "名詞", + "pn": -0.596519 + }, + { + "surface": "手当り", + "readging": "てあたり", + "pos": "名詞", + "pn": -0.59652 + }, + { + "surface": "事犯", + "readging": "じはん", + "pos": "名詞", + "pn": -0.596548 + }, + { + "surface": "弾琴", + "readging": "だんきん", + "pos": "名詞", + "pn": -0.596558 + }, + { + "surface": "金城", + "readging": "きんじょう", + "pos": "名詞", + "pn": -0.59656 + }, + { + "surface": "柿", + "readging": "かき", + "pos": "名詞", + "pn": -0.596618 + }, + { + "surface": "満載", + "readging": "まんさい", + "pos": "名詞", + "pn": -0.596635 + }, + { + "surface": "むくれる", + "readging": "むくれる", + "pos": "動詞", + "pn": -0.596645 + }, + { + "surface": "見返る", + "readging": "みかえる", + "pos": "動詞", + "pn": -0.596668 + }, + { + "surface": "徹", + "readging": "てつ", + "pos": "名詞", + "pn": -0.596674 + }, + { + "surface": "変局", + "readging": "へんきょく", + "pos": "名詞", + "pn": -0.596709 + }, + { + "surface": "屑物", + "readging": "くずもの", + "pos": "名詞", + "pn": -0.596721 + }, + { + "surface": "稗", + "readging": "ひえ", + "pos": "名詞", + "pn": -0.596745 + }, + { + "surface": "章", + "readging": "しょう", + "pos": "名詞", + "pn": -0.596776 + }, + { + "surface": "ぽかぽか", + "readging": "ぽかぽか", + "pos": "副詞", + "pn": -0.596806 + }, + { + "surface": "カタン糸", + "readging": "カタンいと", + "pos": "名詞", + "pn": -0.596808 + }, + { + "surface": "余日", + "readging": "よじつ", + "pos": "名詞", + "pn": -0.596818 + }, + { + "surface": "磯", + "readging": "いそ", + "pos": "名詞", + "pn": -0.596818 + }, + { + "surface": "居宅", + "readging": "きょたく", + "pos": "名詞", + "pn": -0.596861 + }, + { + "surface": "規定", + "readging": "きてい", + "pos": "名詞", + "pn": -0.596925 + }, + { + "surface": "マドロス", + "readging": "マドロス", + "pos": "名詞", + "pn": -0.596945 + }, + { + "surface": "羆", + "readging": "ひぐま", + "pos": "名詞", + "pn": -0.596973 + }, + { + "surface": "バスケット", + "readging": "バスケット", + "pos": "名詞", + "pn": -0.596992 + }, + { + "surface": "連携", + "readging": "れんけい", + "pos": "名詞", + "pn": -0.597008 + }, + { + "surface": "蜩", + "readging": "ひぐらし", + "pos": "名詞", + "pn": -0.597023 + }, + { + "surface": "繰上げる", + "readging": "くりあげる", + "pos": "動詞", + "pn": -0.597024 + }, + { + "surface": "役付", + "readging": "やくづき", + "pos": "名詞", + "pn": -0.597026 + }, + { + "surface": "勢力", + "readging": "せいりょく", + "pos": "名詞", + "pn": -0.597029 + }, + { + "surface": "地盤", + "readging": "じばん", + "pos": "名詞", + "pn": -0.597032 + }, + { + "surface": "雁首", + "readging": "がんくび", + "pos": "名詞", + "pn": -0.597068 + }, + { + "surface": "散銭", + "readging": "さんせん", + "pos": "名詞", + "pn": -0.597149 + }, + { + "surface": "漆喰", + "readging": "しっくい", + "pos": "名詞", + "pn": -0.597172 + }, + { + "surface": "浮揚", + "readging": "ふよう", + "pos": "名詞", + "pn": -0.597189 + }, + { + "surface": "早暁", + "readging": "そうぎょう", + "pos": "名詞", + "pn": -0.597207 + }, + { + "surface": "濡色", + "readging": "ぬれいろ", + "pos": "名詞", + "pn": -0.597224 + }, + { + "surface": "臥", + "readging": "が", + "pos": "名詞", + "pn": -0.597234 + }, + { + "surface": "かいつぶり", + "readging": "かいつぶり", + "pos": "名詞", + "pn": -0.597246 + }, + { + "surface": "夜間", + "readging": "やかん", + "pos": "名詞", + "pn": -0.597292 + }, + { + "surface": "百日咳", + "readging": "ひゃくにちぜき", + "pos": "名詞", + "pn": -0.597299 + }, + { + "surface": "無慮", + "readging": "むりょ", + "pos": "副詞", + "pn": -0.597316 + }, + { + "surface": "射る", + "readging": "いる", + "pos": "動詞", + "pn": -0.597335 + }, + { + "surface": "耐酸", + "readging": "たいさん", + "pos": "名詞", + "pn": -0.597354 + }, + { + "surface": "仮名", + "readging": "けみょう", + "pos": "名詞", + "pn": -0.597399 + }, + { + "surface": "香具師", + "readging": "こうぐし", + "pos": "名詞", + "pn": -0.597404 + }, + { + "surface": "見張る", + "readging": "みはる", + "pos": "動詞", + "pn": -0.597456 + }, + { + "surface": "暁", + "readging": "あかつき", + "pos": "名詞", + "pn": -0.59747 + }, + { + "surface": "顔寄せ", + "readging": "かおよせ", + "pos": "名詞", + "pn": -0.597499 + }, + { + "surface": "でくわす", + "readging": "でくわす", + "pos": "動詞", + "pn": -0.59752 + }, + { + "surface": "蔓生", + "readging": "まんせい", + "pos": "名詞", + "pn": -0.597574 + }, + { + "surface": "内争", + "readging": "ないそう", + "pos": "名詞", + "pn": -0.597664 + }, + { + "surface": "訌争", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.597664 + }, + { + "surface": "バッグ", + "readging": "バッグ", + "pos": "名詞", + "pn": -0.597677 + }, + { + "surface": "囲碁", + "readging": "いご", + "pos": "名詞", + "pn": -0.59775 + }, + { + "surface": "掌", + "readging": "てのひら", + "pos": "名詞", + "pn": -0.597758 + }, + { + "surface": "羽織", + "readging": "はおり", + "pos": "名詞", + "pn": -0.597763 + }, + { + "surface": "レコード", + "readging": "レコードホルダー", + "pos": "名詞", + "pn": -0.597812 + }, + { + "surface": "藁筆", + "readging": "わらふで", + "pos": "名詞", + "pn": -0.597875 + }, + { + "surface": "心太", + "readging": "ところてん", + "pos": "名詞", + "pn": -0.597884 + }, + { + "surface": "ヘルニア", + "readging": "ヘルニア", + "pos": "名詞", + "pn": -0.597892 + }, + { + "surface": "跳ね返す", + "readging": "はねかえす", + "pos": "動詞", + "pn": -0.597916 + }, + { + "surface": "泥海", + "readging": "どろうみ", + "pos": "名詞", + "pn": -0.597923 + }, + { + "surface": "てんとうむし", + "readging": "てんとうむしだまし", + "pos": "名詞", + "pn": -0.597933 + }, + { + "surface": "さん", + "readging": "さん", + "pos": "名詞", + "pn": -0.598002 + }, + { + "surface": "走使い", + "readging": "はしりづかい", + "pos": "名詞", + "pn": -0.598016 + }, + { + "surface": "滑ひゆ", + "readging": "すべりひゆ", + "pos": "名詞", + "pn": -0.598019 + }, + { + "surface": "顛沛", + "readging": "てんぱい", + "pos": "名詞", + "pn": -0.59803 + }, + { + "surface": "冒険", + "readging": "ぼうけん", + "pos": "名詞", + "pn": -0.598082 + }, + { + "surface": "秋津島", + "readging": "あきつしま", + "pos": "名詞", + "pn": -0.59811 + }, + { + "surface": "引明け", + "readging": "ひきあけ", + "pos": "名詞", + "pn": -0.598124 + }, + { + "surface": "馬鍬", + "readging": "まぐわ", + "pos": "名詞", + "pn": -0.598126 + }, + { + "surface": "要旨", + "readging": "ようし", + "pos": "名詞", + "pn": -0.598142 + }, + { + "surface": "肋骨", + "readging": "ろっこつ", + "pos": "名詞", + "pn": -0.598166 + }, + { + "surface": "殺陣", + "readging": "たて", + "pos": "名詞", + "pn": -0.598173 + }, + { + "surface": "取締る", + "readging": "とりしまる", + "pos": "動詞", + "pn": -0.598175 + }, + { + "surface": "弥縫", + "readging": "びほう", + "pos": "名詞", + "pn": -0.598186 + }, + { + "surface": "忙", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.59819 + }, + { + "surface": "時代遅れ", + "readging": "じだいおくれ", + "pos": "名詞", + "pn": -0.598194 + }, + { + "surface": "肘枕", + "readging": "ひじまくら", + "pos": "名詞", + "pn": -0.598215 + }, + { + "surface": "戦争犯罪人", + "readging": "せんそうはんざいにん", + "pos": "名詞", + "pn": -0.598222 + }, + { + "surface": "価格", + "readging": "かかく", + "pos": "名詞", + "pn": -0.598228 + }, + { + "surface": "愚老", + "readging": "ぐろう", + "pos": "名詞", + "pn": -0.598228 + }, + { + "surface": "上乗せ", + "readging": "うわのせ", + "pos": "名詞", + "pn": -0.598254 + }, + { + "surface": "湯葉", + "readging": "ゆば", + "pos": "名詞", + "pn": -0.598261 + }, + { + "surface": "眠気覚し", + "readging": "ねむけざまし", + "pos": "名詞", + "pn": -0.598263 + }, + { + "surface": "恙虫", + "readging": "つつがむし", + "pos": "名詞", + "pn": -0.598263 + }, + { + "surface": "承前", + "readging": "しょうぜん", + "pos": "名詞", + "pn": -0.598294 + }, + { + "surface": "蒲葵", + "readging": "びろう", + "pos": "名詞", + "pn": -0.598306 + }, + { + "surface": "放射能", + "readging": "ほうしゃのう", + "pos": "名詞", + "pn": -0.598318 + }, + { + "surface": "気管支", + "readging": "きかんし", + "pos": "名詞", + "pn": -0.59832 + }, + { + "surface": "植", + "readging": "しょく", + "pos": "名詞", + "pn": -0.59833 + }, + { + "surface": "三角", + "readging": "みつかど", + "pos": "名詞", + "pn": -0.598338 + }, + { + "surface": "囹圄", + "readging": "れいご", + "pos": "名詞", + "pn": -0.598357 + }, + { + "surface": "茶飯", + "readging": "ちゃめし", + "pos": "名詞", + "pn": -0.598364 + }, + { + "surface": "月見草", + "readging": "つきみそう", + "pos": "名詞", + "pn": -0.598379 + }, + { + "surface": "折り目", + "readging": "おりめ", + "pos": "名詞", + "pn": -0.598388 + }, + { + "surface": "論理", + "readging": "ろんり", + "pos": "名詞", + "pn": -0.598391 + }, + { + "surface": "外郭", + "readging": "がいかく", + "pos": "名詞", + "pn": -0.598405 + }, + { + "surface": "かんかん", + "readging": "かんかん", + "pos": "副詞", + "pn": -0.598433 + }, + { + "surface": "水泳", + "readging": "すいえい", + "pos": "名詞", + "pn": -0.598458 + }, + { + "surface": "ざら", + "readging": "ざら", + "pos": "名詞", + "pn": -0.598459 + }, + { + "surface": "儚む", + "readging": "はかなむ", + "pos": "動詞", + "pn": -0.598495 + }, + { + "surface": "荷嵩", + "readging": "にがさ", + "pos": "名詞", + "pn": -0.598499 + }, + { + "surface": "茶茶", + "readging": "ちゃちゃ", + "pos": "名詞", + "pn": -0.598505 + }, + { + "surface": "羽斑蚊", + "readging": "はまだらか", + "pos": "名詞", + "pn": -0.598597 + }, + { + "surface": "村時雨", + "readging": "むらしぐれ", + "pos": "名詞", + "pn": -0.598671 + }, + { + "surface": "げそ", + "readging": "げそ", + "pos": "名詞", + "pn": -0.598675 + }, + { + "surface": "土百姓", + "readging": "どびゃくしょう", + "pos": "名詞", + "pn": -0.598705 + }, + { + "surface": "膝行", + "readging": "しっこう", + "pos": "名詞", + "pn": -0.598724 + }, + { + "surface": "無患子", + "readging": "むくろじ", + "pos": "名詞", + "pn": -0.598738 + }, + { + "surface": "症候", + "readging": "しょうこう", + "pos": "名詞", + "pn": -0.598761 + }, + { + "surface": "方針", + "readging": "ほうしん", + "pos": "名詞", + "pn": -0.59878 + }, + { + "surface": "虹彩", + "readging": "こうさい", + "pos": "名詞", + "pn": -0.598783 + }, + { + "surface": "辻", + "readging": "つじ", + "pos": "名詞", + "pn": -0.598831 + }, + { + "surface": "来す", + "readging": "きたす", + "pos": "動詞", + "pn": -0.598864 + }, + { + "surface": "廃屋", + "readging": "はいおく", + "pos": "名詞", + "pn": -0.598881 + }, + { + "surface": "崩ずる", + "readging": "ほうずる", + "pos": "動詞", + "pn": -0.598917 + }, + { + "surface": "幻術", + "readging": "げんじゅつ", + "pos": "名詞", + "pn": -0.598929 + }, + { + "surface": "恩顧", + "readging": "おんこ", + "pos": "名詞", + "pn": -0.598947 + }, + { + "surface": "ちょび髭", + "readging": "ちょびひげ", + "pos": "名詞", + "pn": -0.598998 + }, + { + "surface": "団扇", + "readging": "うちわ", + "pos": "名詞", + "pn": -0.599002 + }, + { + "surface": "工具", + "readging": "こうぐ", + "pos": "名詞", + "pn": -0.599003 + }, + { + "surface": "掘れる", + "readging": "ほれる", + "pos": "動詞", + "pn": -0.599006 + }, + { + "surface": "拉げる", + "readging": "ひしげる", + "pos": "動詞", + "pn": -0.599007 + }, + { + "surface": "畳鰯", + "readging": "たたみいわし", + "pos": "名詞", + "pn": -0.599007 + }, + { + "surface": "居場所", + "readging": "いばしょ", + "pos": "名詞", + "pn": -0.599009 + }, + { + "surface": "自叙伝", + "readging": "じじょでん", + "pos": "名詞", + "pn": -0.59906 + }, + { + "surface": "点ずる", + "readging": "てんずる", + "pos": "動詞", + "pn": -0.599118 + }, + { + "surface": "寝", + "readging": "ね", + "pos": "名詞", + "pn": -0.599139 + }, + { + "surface": "墓", + "readging": "はか", + "pos": "名詞", + "pn": -0.599142 + }, + { + "surface": "付け加わる", + "readging": "つけくわわる", + "pos": "動詞", + "pn": -0.59915 + }, + { + "surface": "張", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.599169 + }, + { + "surface": "当身", + "readging": "あてみ", + "pos": "名詞", + "pn": -0.599173 + }, + { + "surface": "ありったけ", + "readging": "ありったけ", + "pos": "名詞", + "pn": -0.599225 + }, + { + "surface": "ピン", + "readging": "ピン", + "pos": "名詞", + "pn": -0.599231 + }, + { + "surface": "首吊り", + "readging": "くびつり", + "pos": "名詞", + "pn": -0.599234 + }, + { + "surface": "へっぽこ", + "readging": "へっぽこ", + "pos": "名詞", + "pn": -0.599246 + }, + { + "surface": "家族", + "readging": "かぞく", + "pos": "名詞", + "pn": -0.599264 + }, + { + "surface": "振分け荷物", + "readging": "ふりわけにもつ", + "pos": "名詞", + "pn": -0.599308 + }, + { + "surface": "建碑", + "readging": "けんぴ", + "pos": "名詞", + "pn": -0.599324 + }, + { + "surface": "茶托", + "readging": "ちゃたく", + "pos": "名詞", + "pn": -0.599356 + }, + { + "surface": "要略", + "readging": "ようりゃく", + "pos": "名詞", + "pn": -0.599368 + }, + { + "surface": "汀", + "readging": "みぎわ", + "pos": "名詞", + "pn": -0.59937 + }, + { + "surface": "暁光", + "readging": "ぎょうこう", + "pos": "名詞", + "pn": -0.599373 + }, + { + "surface": "裏切る", + "readging": "うらぎる", + "pos": "動詞", + "pn": -0.599375 + }, + { + "surface": "風刺", + "readging": "ふうし", + "pos": "名詞", + "pn": -0.599377 + }, + { + "surface": "三親等", + "readging": "さんしんとう", + "pos": "名詞", + "pn": -0.599378 + }, + { + "surface": "消毒", + "readging": "しょうどく", + "pos": "名詞", + "pn": -0.599392 + }, + { + "surface": "窓明り", + "readging": "まどあかり", + "pos": "名詞", + "pn": -0.599432 + }, + { + "surface": "凝る", + "readging": "こごる", + "pos": "動詞", + "pn": -0.599507 + }, + { + "surface": "夢寐", + "readging": "むび", + "pos": "名詞", + "pn": -0.599533 + }, + { + "surface": "眼睛", + "readging": "がんせい", + "pos": "名詞", + "pn": -0.599538 + }, + { + "surface": "高手小手", + "readging": "たかてこて", + "pos": "名詞", + "pn": -0.599544 + }, + { + "surface": "駆出す", + "readging": "かりだす", + "pos": "動詞", + "pn": -0.599547 + }, + { + "surface": "片付ける", + "readging": "かたづける", + "pos": "動詞", + "pn": -0.599553 + }, + { + "surface": "徒浪", + "readging": "あだなみ", + "pos": "名詞", + "pn": -0.599568 + }, + { + "surface": "静脈", + "readging": "じょうみゃく", + "pos": "名詞", + "pn": -0.599575 + }, + { + "surface": "排出", + "readging": "はいしゅつ", + "pos": "名詞", + "pn": -0.599581 + }, + { + "surface": "外出", + "readging": "がいしゅつ", + "pos": "名詞", + "pn": -0.599609 + }, + { + "surface": "ニコチン中毒", + "readging": "ニコチンちゅうどく", + "pos": "名詞", + "pn": -0.599625 + }, + { + "surface": "ぬらぬら", + "readging": "ぬらぬら", + "pos": "副詞", + "pn": -0.599637 + }, + { + "surface": "接骨", + "readging": "せっこつ", + "pos": "名詞", + "pn": -0.59964 + }, + { + "surface": "マグネチック", + "readging": "マグネチック", + "pos": "名詞", + "pn": -0.59966 + }, + { + "surface": "月の輪", + "readging": "つきのわ", + "pos": "名詞", + "pn": -0.599661 + }, + { + "surface": "机", + "readging": "つくえ", + "pos": "名詞", + "pn": -0.599664 + }, + { + "surface": "亡霊", + "readging": "ぼうれい", + "pos": "名詞", + "pn": -0.599666 + }, + { + "surface": "腰巻", + "readging": "こしまき", + "pos": "名詞", + "pn": -0.599677 + }, + { + "surface": "殺傷", + "readging": "さっしょう", + "pos": "名詞", + "pn": -0.599728 + }, + { + "surface": "不潔", + "readging": "ふけつ", + "pos": "名詞", + "pn": -0.599747 + }, + { + "surface": "目の玉", + "readging": "めのたま", + "pos": "名詞", + "pn": -0.599774 + }, + { + "surface": "惨憺", + "readging": "さんたん", + "pos": "名詞", + "pn": -0.599779 + }, + { + "surface": "因", + "readging": "ちなみ", + "pos": "名詞", + "pn": -0.599808 + }, + { + "surface": "詩", + "readging": "し", + "pos": "名詞", + "pn": -0.599857 + }, + { + "surface": "味噌汁", + "readging": "みそしる", + "pos": "名詞", + "pn": -0.599859 + }, + { + "surface": "縞", + "readging": "しま", + "pos": "名詞", + "pn": -0.599861 + }, + { + "surface": "石突", + "readging": "いしづき", + "pos": "名詞", + "pn": -0.599863 + }, + { + "surface": "厳達", + "readging": "げんたつ", + "pos": "名詞", + "pn": -0.599895 + }, + { + "surface": "酒蔵", + "readging": "さかぐら", + "pos": "名詞", + "pn": -0.599923 + }, + { + "surface": "山羊鬚", + "readging": "やぎひげ", + "pos": "名詞", + "pn": -0.599928 + }, + { + "surface": "取次ぐ", + "readging": "とりつぐ", + "pos": "動詞", + "pn": -0.599966 + }, + { + "surface": "副え馬", + "readging": "そえうま", + "pos": "名詞", + "pn": -0.599985 + }, + { + "surface": "拝顔", + "readging": "はいがん", + "pos": "名詞", + "pn": -0.600017 + }, + { + "surface": "裁判", + "readging": "さいばん", + "pos": "名詞", + "pn": -0.600028 + }, + { + "surface": "干支", + "readging": "えと", + "pos": "名詞", + "pn": -0.600028 + }, + { + "surface": "ひしゃげる", + "readging": "ひしゃげる", + "pos": "動詞", + "pn": -0.600029 + }, + { + "surface": "体面", + "readging": "たいめん", + "pos": "名詞", + "pn": -0.600041 + }, + { + "surface": "弦楽器", + "readging": "げんがっき", + "pos": "名詞", + "pn": -0.600052 + }, + { + "surface": "藤", + "readging": "ふじ", + "pos": "名詞", + "pn": -0.600066 + }, + { + "surface": "架する", + "readging": "かする", + "pos": "動詞", + "pn": -0.600086 + }, + { + "surface": "明日", + "readging": "あす", + "pos": "名詞", + "pn": -0.600093 + }, + { + "surface": "毒性", + "readging": "どくせい", + "pos": "名詞", + "pn": -0.600105 + }, + { + "surface": "襲業", + "readging": "しゅうぎょう", + "pos": "名詞", + "pn": -0.600144 + }, + { + "surface": "糸目", + "readging": "いとめ", + "pos": "名詞", + "pn": -0.60017 + }, + { + "surface": "目張り", + "readging": "めばり", + "pos": "名詞", + "pn": -0.600201 + }, + { + "surface": "小細工", + "readging": "こざいく", + "pos": "名詞", + "pn": -0.600223 + }, + { + "surface": "木地", + "readging": "きじ", + "pos": "名詞", + "pn": -0.600303 + }, + { + "surface": "諸膝", + "readging": "もろひざ", + "pos": "名詞", + "pn": -0.600335 + }, + { + "surface": "がれ", + "readging": "がれ", + "pos": "名詞", + "pn": -0.600341 + }, + { + "surface": "岡持", + "readging": "おかもち", + "pos": "名詞", + "pn": -0.600347 + }, + { + "surface": "蔵", + "readging": "ぞう", + "pos": "名詞", + "pn": -0.60036 + }, + { + "surface": "衛兵", + "readging": "えいへい", + "pos": "名詞", + "pn": -0.60037 + }, + { + "surface": "寸裂", + "readging": "すんれつ", + "pos": "名詞", + "pn": -0.600381 + }, + { + "surface": "金山寺", + "readging": "きんざんじ", + "pos": "名詞", + "pn": -0.600384 + }, + { + "surface": "加わる", + "readging": "くわわる", + "pos": "動詞", + "pn": -0.600396 + }, + { + "surface": "談話", + "readging": "だんわ", + "pos": "名詞", + "pn": -0.600408 + }, + { + "surface": "大振り", + "readging": "おおぶり", + "pos": "名詞", + "pn": -0.600418 + }, + { + "surface": "一時逃れ", + "readging": "いちじのがれ", + "pos": "名詞", + "pn": -0.600429 + }, + { + "surface": "南京玉", + "readging": "なんきんだま", + "pos": "名詞", + "pn": -0.600464 + }, + { + "surface": "ぐるぐる", + "readging": "ぐるぐる", + "pos": "副詞", + "pn": -0.600479 + }, + { + "surface": "緋縅", + "readging": "ひおどし", + "pos": "名詞", + "pn": -0.600482 + }, + { + "surface": "経営", + "readging": "けいえい", + "pos": "名詞", + "pn": -0.600485 + }, + { + "surface": "田虫", + "readging": "たむし", + "pos": "名詞", + "pn": -0.600494 + }, + { + "surface": "世相", + "readging": "せそう", + "pos": "名詞", + "pn": -0.600515 + }, + { + "surface": "軟口蓋", + "readging": "なんこうがい", + "pos": "名詞", + "pn": -0.600518 + }, + { + "surface": "類音語", + "readging": "るいおんご", + "pos": "名詞", + "pn": -0.600523 + }, + { + "surface": "野末", + "readging": "のずえ", + "pos": "名詞", + "pn": -0.60053 + }, + { + "surface": "乾草", + "readging": "かんそう", + "pos": "名詞", + "pn": -0.60053 + }, + { + "surface": "煮込む", + "readging": "にこむ", + "pos": "動詞", + "pn": -0.600544 + }, + { + "surface": "蓋開け", + "readging": "ふたあけ", + "pos": "名詞", + "pn": -0.600565 + }, + { + "surface": "塀", + "readging": "へい", + "pos": "名詞", + "pn": -0.600615 + }, + { + "surface": "静座", + "readging": "せいざ", + "pos": "名詞", + "pn": -0.600618 + }, + { + "surface": "臼", + "readging": "うす", + "pos": "名詞", + "pn": -0.600631 + }, + { + "surface": "二三", + "readging": "にさん", + "pos": "名詞", + "pn": -0.600673 + }, + { + "surface": "脚下", + "readging": "きゃっか", + "pos": "名詞", + "pn": -0.600677 + }, + { + "surface": "食い置き", + "readging": "くいおき", + "pos": "名詞", + "pn": -0.60068 + }, + { + "surface": "裏金", + "readging": "うらがね", + "pos": "名詞", + "pn": -0.600707 + }, + { + "surface": "草堂", + "readging": "そうどう", + "pos": "名詞", + "pn": -0.600712 + }, + { + "surface": "バック", + "readging": "バックボーン", + "pos": "名詞", + "pn": -0.600716 + }, + { + "surface": "場所塞ぎ", + "readging": "ばしょふさぎ", + "pos": "名詞", + "pn": -0.600743 + }, + { + "surface": "幽鬼", + "readging": "ゆうき", + "pos": "名詞", + "pn": -0.600743 + }, + { + "surface": "日常茶飯", + "readging": "にちじょうさはん", + "pos": "名詞", + "pn": -0.600756 + }, + { + "surface": "龕", + "readging": "がん", + "pos": "名詞", + "pn": -0.600788 + }, + { + "surface": "下女", + "readging": "げじょ", + "pos": "名詞", + "pn": -0.60083 + }, + { + "surface": "唾液", + "readging": "だえき", + "pos": "名詞", + "pn": -0.600858 + }, + { + "surface": "他用", + "readging": "たよう", + "pos": "名詞", + "pn": -0.600859 + }, + { + "surface": "急診", + "readging": "きゅうしん", + "pos": "名詞", + "pn": -0.600873 + }, + { + "surface": "曲げ物", + "readging": "まげもの", + "pos": "名詞", + "pn": -0.600881 + }, + { + "surface": "立錐", + "readging": "りっすい", + "pos": "名詞", + "pn": -0.600884 + }, + { + "surface": "死目", + "readging": "しにめ", + "pos": "名詞", + "pn": -0.600887 + }, + { + "surface": "童", + "readging": "わらわ", + "pos": "名詞", + "pn": -0.6009 + }, + { + "surface": "方寸", + "readging": "ほうすん", + "pos": "名詞", + "pn": -0.600903 + }, + { + "surface": "栗饅頭", + "readging": "くりまんじゅう", + "pos": "名詞", + "pn": -0.600903 + }, + { + "surface": "馬盥", + "readging": "ばだらい", + "pos": "名詞", + "pn": -0.600927 + }, + { + "surface": "坐作", + "readging": "ざさ", + "pos": "名詞", + "pn": -0.600939 + }, + { + "surface": "羽毛", + "readging": "うもう", + "pos": "名詞", + "pn": -0.600967 + }, + { + "surface": "付け落ち", + "readging": "つけおち", + "pos": "名詞", + "pn": -0.600968 + }, + { + "surface": "擱座", + "readging": "かくざ", + "pos": "名詞", + "pn": -0.60098 + }, + { + "surface": "溶液", + "readging": "ようえき", + "pos": "名詞", + "pn": -0.600991 + }, + { + "surface": "刃", + "readging": "じん", + "pos": "名詞", + "pn": -0.600999 + }, + { + "surface": "差す", + "readging": "さす", + "pos": "動詞", + "pn": -0.601018 + }, + { + "surface": "風向き", + "readging": "かざむき", + "pos": "名詞", + "pn": -0.60105 + }, + { + "surface": "帳簿", + "readging": "ちょうぼ", + "pos": "名詞", + "pn": -0.601061 + }, + { + "surface": "猛犬", + "readging": "もうけん", + "pos": "名詞", + "pn": -0.601124 + }, + { + "surface": "御破算", + "readging": "ごはさん", + "pos": "名詞", + "pn": -0.601159 + }, + { + "surface": "中っ腹", + "readging": "ちゅうっぱら", + "pos": "名詞", + "pn": -0.60119 + }, + { + "surface": "雑煮", + "readging": "ぞうに", + "pos": "名詞", + "pn": -0.601217 + }, + { + "surface": "装う", + "readging": "よそう", + "pos": "動詞", + "pn": -0.60122 + }, + { + "surface": "連鎖", + "readging": "れんさ", + "pos": "名詞", + "pn": -0.601239 + }, + { + "surface": "比比", + "readging": "ひひ", + "pos": "副詞", + "pn": -0.601254 + }, + { + "surface": "独占", + "readging": "どくせん", + "pos": "名詞", + "pn": -0.601262 + }, + { + "surface": "個個人", + "readging": "ここじん", + "pos": "名詞", + "pn": -0.601382 + }, + { + "surface": "投錨", + "readging": "とうびょう", + "pos": "名詞", + "pn": -0.601402 + }, + { + "surface": "蕁麻疹", + "readging": "じんましん", + "pos": "名詞", + "pn": -0.601433 + }, + { + "surface": "漁火", + "readging": "ぎょか", + "pos": "名詞", + "pn": -0.601446 + }, + { + "surface": "刻み付ける", + "readging": "きざみつける", + "pos": "動詞", + "pn": -0.601447 + }, + { + "surface": "読み方", + "readging": "よみかた", + "pos": "名詞", + "pn": -0.601448 + }, + { + "surface": "逆さ睫", + "readging": "さかさまつげ", + "pos": "名詞", + "pn": -0.601452 + }, + { + "surface": "株立", + "readging": "かぶだち", + "pos": "名詞", + "pn": -0.601477 + }, + { + "surface": "頸木", + "readging": "くびき", + "pos": "名詞", + "pn": -0.601679 + }, + { + "surface": "貧道", + "readging": "ひんどう", + "pos": "名詞", + "pn": -0.60168 + }, + { + "surface": "腹", + "readging": "はら", + "pos": "名詞", + "pn": -0.601682 + }, + { + "surface": "浸透", + "readging": "しんとう", + "pos": "名詞", + "pn": -0.601713 + }, + { + "surface": "僻村", + "readging": "へきそん", + "pos": "名詞", + "pn": -0.601724 + }, + { + "surface": "胡頽子", + "readging": "ぐみ", + "pos": "名詞", + "pn": -0.60179 + }, + { + "surface": "想起", + "readging": "そうき", + "pos": "名詞", + "pn": -0.601791 + }, + { + "surface": "潰える", + "readging": "ついえる", + "pos": "動詞", + "pn": -0.601804 + }, + { + "surface": "漉餡", + "readging": "こしあん", + "pos": "名詞", + "pn": -0.601846 + }, + { + "surface": "切れ間", + "readging": "きれま", + "pos": "名詞", + "pn": -0.601852 + }, + { + "surface": "賂", + "readging": "まいない", + "pos": "名詞", + "pn": -0.601864 + }, + { + "surface": "紛い物", + "readging": "まがいもの", + "pos": "名詞", + "pn": -0.601932 + }, + { + "surface": "ゴルフ", + "readging": "ゴルフリンク", + "pos": "名詞", + "pn": -0.601966 + }, + { + "surface": "眠", + "readging": "みん", + "pos": "名詞", + "pn": -0.601968 + }, + { + "surface": "羽釜", + "readging": "はがま", + "pos": "名詞", + "pn": -0.602055 + }, + { + "surface": "飽き", + "readging": "あき", + "pos": "名詞", + "pn": -0.602117 + }, + { + "surface": "囂囂", + "readging": "ごうごう", + "pos": "名詞", + "pn": -0.602124 + }, + { + "surface": "廟宇", + "readging": "びょうう", + "pos": "名詞", + "pn": -0.602133 + }, + { + "surface": "ぷっつり", + "readging": "ぷっつり", + "pos": "副詞", + "pn": -0.602147 + }, + { + "surface": "愛人", + "readging": "あいじん", + "pos": "名詞", + "pn": -0.602154 + }, + { + "surface": "好餌", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.602155 + }, + { + "surface": "案内", + "readging": "あんない", + "pos": "名詞", + "pn": -0.60216 + }, + { + "surface": "揉み療治", + "readging": "もみりょうじ", + "pos": "名詞", + "pn": -0.60225 + }, + { + "surface": "爪印", + "readging": "つめいん", + "pos": "名詞", + "pn": -0.602264 + }, + { + "surface": "上滑り", + "readging": "うわすべり", + "pos": "名詞", + "pn": -0.602265 + }, + { + "surface": "晦", + "readging": "かい", + "pos": "名詞", + "pn": -0.602268 + }, + { + "surface": "減額", + "readging": "げんがく", + "pos": "名詞", + "pn": -0.602274 + }, + { + "surface": "物理", + "readging": "ぶつり", + "pos": "名詞", + "pn": -0.602277 + }, + { + "surface": "背馳", + "readging": "はいち", + "pos": "名詞", + "pn": -0.602278 + }, + { + "surface": "流謫", + "readging": "るたく", + "pos": "名詞", + "pn": -0.602293 + }, + { + "surface": "砂利", + "readging": "じゃり", + "pos": "名詞", + "pn": -0.602323 + }, + { + "surface": "蓖麻子油", + "readging": "ひましゆ", + "pos": "名詞", + "pn": -0.602335 + }, + { + "surface": "周縁", + "readging": "しゅうえん", + "pos": "名詞", + "pn": -0.602335 + }, + { + "surface": "しおしお", + "readging": "しおしお", + "pos": "副詞", + "pn": -0.602343 + }, + { + "surface": "禁札", + "readging": "きんさつ", + "pos": "名詞", + "pn": -0.602371 + }, + { + "surface": "猪口", + "readging": "ちょこ", + "pos": "名詞", + "pn": -0.602371 + }, + { + "surface": "背負い上げ", + "readging": "しょいあげ", + "pos": "名詞", + "pn": -0.602386 + }, + { + "surface": "茄子", + "readging": "なす", + "pos": "名詞", + "pn": -0.602401 + }, + { + "surface": "褐藻", + "readging": "かっそう", + "pos": "名詞", + "pn": -0.602422 + }, + { + "surface": "引かされる", + "readging": "ひかされる", + "pos": "動詞", + "pn": -0.602441 + }, + { + "surface": "早", + "readging": "はや", + "pos": "副詞", + "pn": -0.602453 + }, + { + "surface": "設備", + "readging": "せつび", + "pos": "名詞", + "pn": -0.602458 + }, + { + "surface": "トランク", + "readging": "トランク", + "pos": "名詞", + "pn": -0.602507 + }, + { + "surface": "出入り", + "readging": "でいり", + "pos": "名詞", + "pn": -0.602552 + }, + { + "surface": "吊し", + "readging": "つるし", + "pos": "名詞", + "pn": -0.602562 + }, + { + "surface": "税金", + "readging": "ぜいきん", + "pos": "名詞", + "pn": -0.602564 + }, + { + "surface": "生き身", + "readging": "いきみ", + "pos": "名詞", + "pn": -0.602593 + }, + { + "surface": "忌諱", + "readging": "きい", + "pos": "名詞", + "pn": -0.602615 + }, + { + "surface": "態", + "readging": "たい", + "pos": "名詞", + "pn": -0.602638 + }, + { + "surface": "籐", + "readging": "とう", + "pos": "名詞", + "pn": -0.60267 + }, + { + "surface": "腐心", + "readging": "ふしん", + "pos": "名詞", + "pn": -0.602689 + }, + { + "surface": "ジフテリア", + "readging": "ジフテリア", + "pos": "名詞", + "pn": -0.602692 + }, + { + "surface": "陰陽", + "readging": "いんよう", + "pos": "名詞", + "pn": -0.602704 + }, + { + "surface": "配流", + "readging": "はいる", + "pos": "名詞", + "pn": -0.602746 + }, + { + "surface": "壕", + "readging": "ごう", + "pos": "名詞", + "pn": -0.602772 + }, + { + "surface": "サングラス", + "readging": "サングラス", + "pos": "名詞", + "pn": -0.60287 + }, + { + "surface": "浄瑠璃", + "readging": "じょうるり", + "pos": "名詞", + "pn": -0.602881 + }, + { + "surface": "小額", + "readging": "しょうがく", + "pos": "名詞", + "pn": -0.602888 + }, + { + "surface": "剃る", + "readging": "する", + "pos": "動詞", + "pn": -0.602913 + }, + { + "surface": "一汗", + "readging": "ひとあせ", + "pos": "名詞", + "pn": -0.602927 + }, + { + "surface": "ダミー", + "readging": "ダミー", + "pos": "名詞", + "pn": -0.602931 + }, + { + "surface": "ハンガー", + "readging": "ハンガー", + "pos": "名詞", + "pn": -0.602933 + }, + { + "surface": "信号", + "readging": "しんごう", + "pos": "名詞", + "pn": -0.602933 + }, + { + "surface": "支う", + "readging": "かう", + "pos": "動詞", + "pn": -0.602951 + }, + { + "surface": "膝元", + "readging": "ひざもと", + "pos": "名詞", + "pn": -0.602954 + }, + { + "surface": "糸柳", + "readging": "いとやなぎ", + "pos": "名詞", + "pn": -0.602962 + }, + { + "surface": "地下茎", + "readging": "ちかけい", + "pos": "名詞", + "pn": -0.602969 + }, + { + "surface": "麩", + "readging": "ふすま", + "pos": "名詞", + "pn": -0.60299 + }, + { + "surface": "おはね", + "readging": "おはね", + "pos": "名詞", + "pn": -0.602992 + }, + { + "surface": "間際", + "readging": "まぎわ", + "pos": "名詞", + "pn": -0.603005 + }, + { + "surface": "一分", + "readging": "いちぶ", + "pos": "名詞", + "pn": -0.60303 + }, + { + "surface": "細る", + "readging": "ほそる", + "pos": "動詞", + "pn": -0.603039 + }, + { + "surface": "照焼", + "readging": "てりやき", + "pos": "名詞", + "pn": -0.603049 + }, + { + "surface": "異聞", + "readging": "いぶん", + "pos": "名詞", + "pn": -0.603085 + }, + { + "surface": "連尺", + "readging": "れんじゃく", + "pos": "名詞", + "pn": -0.603089 + }, + { + "surface": "ホルモン", + "readging": "ホルモン", + "pos": "名詞", + "pn": -0.603121 + }, + { + "surface": "脊髄", + "readging": "せきずい", + "pos": "名詞", + "pn": -0.603124 + }, + { + "surface": "ひん曲げる", + "readging": "ひんまげる", + "pos": "動詞", + "pn": -0.603243 + }, + { + "surface": "面相", + "readging": "めんそう", + "pos": "名詞", + "pn": -0.603245 + }, + { + "surface": "山羊", + "readging": "やぎ", + "pos": "名詞", + "pn": -0.603289 + }, + { + "surface": "番人", + "readging": "ばんにん", + "pos": "名詞", + "pn": -0.603297 + }, + { + "surface": "賽の河原", + "readging": "さいのかわら", + "pos": "名詞", + "pn": -0.603299 + }, + { + "surface": "カンフル注射", + "readging": "カンフルちゅうしゃ", + "pos": "名詞", + "pn": -0.603318 + }, + { + "surface": "結氷", + "readging": "けっぴょう", + "pos": "名詞", + "pn": -0.603332 + }, + { + "surface": "炒る", + "readging": "いる", + "pos": "動詞", + "pn": -0.603371 + }, + { + "surface": "淵源", + "readging": "えんげん", + "pos": "名詞", + "pn": -0.603393 + }, + { + "surface": "鱗", + "readging": "りん", + "pos": "名詞", + "pn": -0.603455 + }, + { + "surface": "救助", + "readging": "きゅうじょ", + "pos": "名詞", + "pn": -0.603479 + }, + { + "surface": "屏息", + "readging": "へいそく", + "pos": "名詞", + "pn": -0.603495 + }, + { + "surface": "言合う", + "readging": "いいあう", + "pos": "動詞", + "pn": -0.603508 + }, + { + "surface": "干柿", + "readging": "ほしがき", + "pos": "名詞", + "pn": -0.603609 + }, + { + "surface": "機関車", + "readging": "きかんしゃ", + "pos": "名詞", + "pn": -0.603626 + }, + { + "surface": "窄める", + "readging": "すぼめる", + "pos": "動詞", + "pn": -0.603657 + }, + { + "surface": "切迫", + "readging": "せっぱく", + "pos": "名詞", + "pn": -0.603671 + }, + { + "surface": "所所", + "readging": "ところどころ", + "pos": "名詞", + "pn": -0.603701 + }, + { + "surface": "火燵", + "readging": "こたつ", + "pos": "名詞", + "pn": -0.603739 + }, + { + "surface": "臆する", + "readging": "おくする", + "pos": "動詞", + "pn": -0.603739 + }, + { + "surface": "刻", + "readging": "こく", + "pos": "名詞", + "pn": -0.603779 + }, + { + "surface": "仏恩", + "readging": "ぶつおん", + "pos": "名詞", + "pn": -0.603828 + }, + { + "surface": "小僧", + "readging": "こぞう", + "pos": "名詞", + "pn": -0.603864 + }, + { + "surface": "もくもく", + "readging": "もくもく", + "pos": "副詞", + "pn": -0.603867 + }, + { + "surface": "夕刻", + "readging": "ゆうこく", + "pos": "名詞", + "pn": -0.603875 + }, + { + "surface": "興亡", + "readging": "こうぼう", + "pos": "名詞", + "pn": -0.603897 + }, + { + "surface": "蒸れる", + "readging": "むれる", + "pos": "動詞", + "pn": -0.603914 + }, + { + "surface": "天草", + "readging": "てんぐさ", + "pos": "名詞", + "pn": -0.603923 + }, + { + "surface": "原始", + "readging": "げんし", + "pos": "名詞", + "pn": -0.603945 + }, + { + "surface": "明けっ放し", + "readging": "あけっぱなし", + "pos": "名詞", + "pn": -0.603952 + }, + { + "surface": "癇声", + "readging": "かんごえ", + "pos": "名詞", + "pn": -0.603971 + }, + { + "surface": "檣頭", + "readging": "しょうとう", + "pos": "名詞", + "pn": -0.604015 + }, + { + "surface": "節理", + "readging": "せつり", + "pos": "名詞", + "pn": -0.604024 + }, + { + "surface": "狙い目", + "readging": "ねらいめ", + "pos": "名詞", + "pn": -0.604053 + }, + { + "surface": "懾伏", + "readging": "しょうふく", + "pos": "名詞", + "pn": -0.604053 + }, + { + "surface": "仕留める", + "readging": "しとめる", + "pos": "動詞", + "pn": -0.604094 + }, + { + "surface": "奥手", + "readging": "おくて", + "pos": "名詞", + "pn": -0.604168 + }, + { + "surface": "直上", + "readging": "ちょくじょう", + "pos": "名詞", + "pn": -0.604176 + }, + { + "surface": "酸性紙", + "readging": "さんせいし", + "pos": "名詞", + "pn": -0.604215 + }, + { + "surface": "琺瑯", + "readging": "ほうろう", + "pos": "名詞", + "pn": -0.604219 + }, + { + "surface": "雑用", + "readging": "ぞうよう", + "pos": "名詞", + "pn": -0.604225 + }, + { + "surface": "立体", + "readging": "りったい", + "pos": "名詞", + "pn": -0.604231 + }, + { + "surface": "コアラ", + "readging": "コアラ", + "pos": "名詞", + "pn": -0.604258 + }, + { + "surface": "留袖", + "readging": "とめそで", + "pos": "名詞", + "pn": -0.604285 + }, + { + "surface": "堅", + "readging": "けん", + "pos": "名詞", + "pn": -0.604285 + }, + { + "surface": "多忙", + "readging": "たぼう", + "pos": "名詞", + "pn": -0.604315 + }, + { + "surface": "翻る", + "readging": "ひるがえる", + "pos": "動詞", + "pn": -0.604316 + }, + { + "surface": "緊切", + "readging": "きんせつ", + "pos": "名詞", + "pn": -0.604316 + }, + { + "surface": "嵐", + "readging": "らん", + "pos": "名詞", + "pn": -0.604338 + }, + { + "surface": "舷窓", + "readging": "げんそう", + "pos": "名詞", + "pn": -0.604352 + }, + { + "surface": "四手", + "readging": "しで", + "pos": "名詞", + "pn": -0.604435 + }, + { + "surface": "フルーツ", + "readging": "フルーツポンチ", + "pos": "名詞", + "pn": -0.604445 + }, + { + "surface": "口つき", + "readging": "くちつき", + "pos": "名詞", + "pn": -0.604489 + }, + { + "surface": "急く", + "readging": "せく", + "pos": "動詞", + "pn": -0.604535 + }, + { + "surface": "凝り固まる", + "readging": "こりかたまる", + "pos": "動詞", + "pn": -0.604561 + }, + { + "surface": "抜作", + "readging": "ぬけさく", + "pos": "名詞", + "pn": -0.604564 + }, + { + "surface": "自嘲", + "readging": "じちょう", + "pos": "名詞", + "pn": -0.604583 + }, + { + "surface": "化粧下", + "readging": "けしょうした", + "pos": "名詞", + "pn": -0.604634 + }, + { + "surface": "摘み洗い", + "readging": "つまみあらい", + "pos": "名詞", + "pn": -0.60466 + }, + { + "surface": "操作", + "readging": "そうさ", + "pos": "名詞", + "pn": -0.604672 + }, + { + "surface": "節煙", + "readging": "せつえん", + "pos": "名詞", + "pn": -0.604675 + }, + { + "surface": "油断", + "readging": "ゆだん", + "pos": "名詞", + "pn": -0.604745 + }, + { + "surface": "鮪", + "readging": "まぐろ", + "pos": "名詞", + "pn": -0.604766 + }, + { + "surface": "共通", + "readging": "きょうつう", + "pos": "名詞", + "pn": -0.604804 + }, + { + "surface": "掛る", + "readging": "かかる", + "pos": "動詞", + "pn": -0.604828 + }, + { + "surface": "遥", + "readging": "よう", + "pos": "名詞", + "pn": -0.604887 + }, + { + "surface": "ベビー", + "readging": "ベビー", + "pos": "名詞", + "pn": -0.604896 + }, + { + "surface": "渡来", + "readging": "とらい", + "pos": "名詞", + "pn": -0.604948 + }, + { + "surface": "通せん坊", + "readging": "とおせんぼう", + "pos": "名詞", + "pn": -0.60496 + }, + { + "surface": "斜面", + "readging": "しゃめん", + "pos": "名詞", + "pn": -0.604968 + }, + { + "surface": "潮吹", + "readging": "しおふき", + "pos": "名詞", + "pn": -0.604972 + }, + { + "surface": "周回", + "readging": "しゅうかい", + "pos": "名詞", + "pn": -0.605013 + }, + { + "surface": "指物", + "readging": "さしもの", + "pos": "名詞", + "pn": -0.605036 + }, + { + "surface": "塵", + "readging": "ちり", + "pos": "名詞", + "pn": -0.605049 + }, + { + "surface": "日傭", + "readging": "ひよう", + "pos": "名詞", + "pn": -0.605049 + }, + { + "surface": "分限者", + "readging": "ぶげんしゃ", + "pos": "名詞", + "pn": -0.605199 + }, + { + "surface": "録", + "readging": "ろく", + "pos": "名詞", + "pn": -0.605201 + }, + { + "surface": "脈搏", + "readging": "みゃくはく", + "pos": "名詞", + "pn": -0.605206 + }, + { + "surface": "小止み", + "readging": "こやみ", + "pos": "名詞", + "pn": -0.605216 + }, + { + "surface": "口書", + "readging": "くちがき", + "pos": "名詞", + "pn": -0.605239 + }, + { + "surface": "歩哨", + "readging": "ほしょう", + "pos": "名詞", + "pn": -0.605256 + }, + { + "surface": "ドル箱", + "readging": "ドルばこ", + "pos": "名詞", + "pn": -0.605272 + }, + { + "surface": "袂糞", + "readging": "たもとくそ", + "pos": "名詞", + "pn": -0.605272 + }, + { + "surface": "当て推量", + "readging": "あてずいりょう", + "pos": "名詞", + "pn": -0.60528 + }, + { + "surface": "火縄銃", + "readging": "ひなわ", + "pos": "名詞", + "pn": -0.605288 + }, + { + "surface": "山子", + "readging": "やまご", + "pos": "名詞", + "pn": -0.605298 + }, + { + "surface": "漫画", + "readging": "まんが", + "pos": "名詞", + "pn": -0.605354 + }, + { + "surface": "菅笠", + "readging": "すげがさ", + "pos": "名詞", + "pn": -0.605377 + }, + { + "surface": "台秤", + "readging": "だいばかり", + "pos": "名詞", + "pn": -0.605387 + }, + { + "surface": "藁半紙", + "readging": "わらばんし", + "pos": "名詞", + "pn": -0.605403 + }, + { + "surface": "封", + "readging": "ふう", + "pos": "名詞", + "pn": -0.605438 + }, + { + "surface": "ちょこなんと", + "readging": "ちょこなんと", + "pos": "副詞", + "pn": -0.605465 + }, + { + "surface": "カルシウム", + "readging": "カルシウム", + "pos": "名詞", + "pn": -0.605473 + }, + { + "surface": "卒", + "readging": "そつ", + "pos": "名詞", + "pn": -0.605486 + }, + { + "surface": "揺", + "readging": "よう", + "pos": "名詞", + "pn": -0.605503 + }, + { + "surface": "どんど", + "readging": "どんど", + "pos": "名詞", + "pn": -0.605535 + }, + { + "surface": "城府", + "readging": "じょうふ", + "pos": "名詞", + "pn": -0.605578 + }, + { + "surface": "羽目", + "readging": "はめ", + "pos": "名詞", + "pn": -0.605611 + }, + { + "surface": "噛付く", + "readging": "かみつく", + "pos": "動詞", + "pn": -0.605618 + }, + { + "surface": "岸辺", + "readging": "きしべ", + "pos": "名詞", + "pn": -0.60563 + }, + { + "surface": "台風", + "readging": "たいふう", + "pos": "名詞", + "pn": -0.605639 + }, + { + "surface": "誦する", + "readging": "しょうする", + "pos": "動詞", + "pn": -0.60564 + }, + { + "surface": "陸湯", + "readging": "おかゆ", + "pos": "名詞", + "pn": -0.605674 + }, + { + "surface": "梗概", + "readging": "こうがい", + "pos": "名詞", + "pn": -0.605739 + }, + { + "surface": "端緒", + "readging": "たんちょ", + "pos": "名詞", + "pn": -0.60574 + }, + { + "surface": "原子", + "readging": "げんし", + "pos": "名詞", + "pn": -0.605767 + }, + { + "surface": "刃向かう", + "readging": "はむかう", + "pos": "動詞", + "pn": -0.605773 + }, + { + "surface": "爪痕", + "readging": "そうこん", + "pos": "名詞", + "pn": -0.605782 + }, + { + "surface": "糸引", + "readging": "いとひき", + "pos": "名詞", + "pn": -0.605796 + }, + { + "surface": "傾ける", + "readging": "かたむける", + "pos": "動詞", + "pn": -0.605812 + }, + { + "surface": "乗上げる", + "readging": "のりあげる", + "pos": "動詞", + "pn": -0.60582 + }, + { + "surface": "過去", + "readging": "かこ", + "pos": "名詞", + "pn": -0.605845 + }, + { + "surface": "脱藩", + "readging": "だっぱん", + "pos": "名詞", + "pn": -0.605861 + }, + { + "surface": "編", + "readging": "へん", + "pos": "名詞", + "pn": -0.605895 + }, + { + "surface": "とんと", + "readging": "とんと", + "pos": "副詞", + "pn": -0.605903 + }, + { + "surface": "頂戴", + "readging": "ちょうだい", + "pos": "名詞", + "pn": -0.605908 + }, + { + "surface": "総領", + "readging": "そうりょう", + "pos": "名詞", + "pn": -0.605934 + }, + { + "surface": "垢", + "readging": "あか", + "pos": "名詞", + "pn": -0.605954 + }, + { + "surface": "盛上がる", + "readging": "もりあがる", + "pos": "動詞", + "pn": -0.605989 + }, + { + "surface": "出帆", + "readging": "しゅっぱん", + "pos": "名詞", + "pn": -0.605998 + }, + { + "surface": "行き帰り", + "readging": "ゆきかえり", + "pos": "名詞", + "pn": -0.606011 + }, + { + "surface": "刳る", + "readging": "くる", + "pos": "動詞", + "pn": -0.606018 + }, + { + "surface": "ぐさりと", + "readging": "ぐさりと", + "pos": "副詞", + "pn": -0.606018 + }, + { + "surface": "有害", + "readging": "ゆうがい", + "pos": "名詞", + "pn": -0.60602 + }, + { + "surface": "耐湿", + "readging": "たいしつ", + "pos": "名詞", + "pn": -0.606035 + }, + { + "surface": "勤務", + "readging": "きんむ", + "pos": "名詞", + "pn": -0.606083 + }, + { + "surface": "入洛", + "readging": "じゅらく", + "pos": "名詞", + "pn": -0.606089 + }, + { + "surface": "病人", + "readging": "びょうにん", + "pos": "名詞", + "pn": -0.606159 + }, + { + "surface": "曳航", + "readging": "えいこう", + "pos": "名詞", + "pn": -0.60617 + }, + { + "surface": "輪姦", + "readging": "りんかん", + "pos": "名詞", + "pn": -0.606178 + }, + { + "surface": "似我蜂", + "readging": "じがばち", + "pos": "名詞", + "pn": -0.606181 + }, + { + "surface": "空咳", + "readging": "からせき", + "pos": "名詞", + "pn": -0.606203 + }, + { + "surface": "旅客", + "readging": "りょきゃく", + "pos": "名詞", + "pn": -0.606212 + }, + { + "surface": "町", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.606229 + }, + { + "surface": "鱗", + "readging": "こけら", + "pos": "名詞", + "pn": -0.606242 + }, + { + "surface": "目玉", + "readging": "めだま", + "pos": "名詞", + "pn": -0.606286 + }, + { + "surface": "冷血", + "readging": "れいけつ", + "pos": "名詞", + "pn": -0.606363 + }, + { + "surface": "タンバリン", + "readging": "タンバリン", + "pos": "名詞", + "pn": -0.606413 + }, + { + "surface": "書きさす", + "readging": "かきさす", + "pos": "動詞", + "pn": -0.606419 + }, + { + "surface": "浮世", + "readging": "ふせい", + "pos": "名詞", + "pn": -0.606485 + }, + { + "surface": "境", + "readging": "きょう", + "pos": "名詞", + "pn": -0.60657 + }, + { + "surface": "レール", + "readging": "レール", + "pos": "名詞", + "pn": -0.60658 + }, + { + "surface": "頬袋", + "readging": "ほおぶくろ", + "pos": "名詞", + "pn": -0.606647 + }, + { + "surface": "落し前", + "readging": "おとしまえ", + "pos": "名詞", + "pn": -0.606687 + }, + { + "surface": "薄志", + "readging": "はくし", + "pos": "名詞", + "pn": -0.606704 + }, + { + "surface": "基", + "readging": "もとい", + "pos": "名詞", + "pn": -0.606775 + }, + { + "surface": "東奔西走", + "readging": "とうほんせいそう", + "pos": "名詞", + "pn": -0.606787 + }, + { + "surface": "吊革", + "readging": "つりかわ", + "pos": "名詞", + "pn": -0.606804 + }, + { + "surface": "けむ", + "readging": "けむ", + "pos": "名詞", + "pn": -0.606818 + }, + { + "surface": "朱唇", + "readging": "しゅしん", + "pos": "名詞", + "pn": -0.606818 + }, + { + "surface": "浮腫", + "readging": "ふしゅ", + "pos": "名詞", + "pn": -0.606824 + }, + { + "surface": "旦那", + "readging": "だんな", + "pos": "名詞", + "pn": -0.606841 + }, + { + "surface": "陋居", + "readging": "ろうきょ", + "pos": "名詞", + "pn": -0.606851 + }, + { + "surface": "漁", + "readging": "りょう", + "pos": "名詞", + "pn": -0.606853 + }, + { + "surface": "供", + "readging": "きょう", + "pos": "名詞", + "pn": -0.606903 + }, + { + "surface": "湯桁", + "readging": "ゆげた", + "pos": "名詞", + "pn": -0.606957 + }, + { + "surface": "継", + "readging": "けい", + "pos": "名詞", + "pn": -0.606967 + }, + { + "surface": "ストリキニーネ", + "readging": "ストリキニーネ", + "pos": "名詞", + "pn": -0.607001 + }, + { + "surface": "風切り", + "readging": "かざきり", + "pos": "名詞", + "pn": -0.607003 + }, + { + "surface": "発射", + "readging": "はっしゃ", + "pos": "名詞", + "pn": -0.607003 + }, + { + "surface": "燗鍋", + "readging": "かんなべ", + "pos": "名詞", + "pn": -0.607031 + }, + { + "surface": "烏賊", + "readging": "いか", + "pos": "名詞", + "pn": -0.607038 + }, + { + "surface": "縞蚊", + "readging": "しまか", + "pos": "名詞", + "pn": -0.60707 + }, + { + "surface": "彼此", + "readging": "ひし", + "pos": "名詞", + "pn": -0.607072 + }, + { + "surface": "めらめら", + "readging": "めらめら", + "pos": "副詞", + "pn": -0.607091 + }, + { + "surface": "円盤", + "readging": "えんばん", + "pos": "名詞", + "pn": -0.60712 + }, + { + "surface": "茶の湯", + "readging": "ちゃのゆ", + "pos": "名詞", + "pn": -0.607127 + }, + { + "surface": "織り目", + "readging": "おりめ", + "pos": "名詞", + "pn": -0.607157 + }, + { + "surface": "爪楊枝", + "readging": "つまようじ", + "pos": "名詞", + "pn": -0.607165 + }, + { + "surface": "薄謝", + "readging": "はくしゃ", + "pos": "名詞", + "pn": -0.607214 + }, + { + "surface": "パフ", + "readging": "パフ", + "pos": "名詞", + "pn": -0.607215 + }, + { + "surface": "八重十文字", + "readging": "やえ", + "pos": "名詞", + "pn": -0.607244 + }, + { + "surface": "まるきり", + "readging": "まるきり", + "pos": "副詞", + "pn": -0.607244 + }, + { + "surface": "泡沫", + "readging": "ほうまつ", + "pos": "名詞", + "pn": -0.607252 + }, + { + "surface": "忍苦", + "readging": "にんく", + "pos": "名詞", + "pn": -0.607289 + }, + { + "surface": "舞妓", + "readging": "ぶぎ", + "pos": "名詞", + "pn": -0.607301 + }, + { + "surface": "ふくら脛", + "readging": "ふくらはぎ", + "pos": "名詞", + "pn": -0.607302 + }, + { + "surface": "臍の緒", + "readging": "へそのお", + "pos": "名詞", + "pn": -0.607317 + }, + { + "surface": "柳", + "readging": "りゅう", + "pos": "名詞", + "pn": -0.607321 + }, + { + "surface": "振替える", + "readging": "ふりかえる", + "pos": "動詞", + "pn": -0.6074 + }, + { + "surface": "縄", + "readging": "じょう", + "pos": "名詞", + "pn": -0.60743 + }, + { + "surface": "冗談", + "readging": "じょうだん", + "pos": "名詞", + "pn": -0.607436 + }, + { + "surface": "絹糸", + "readging": "けんし", + "pos": "名詞", + "pn": -0.607438 + }, + { + "surface": "砲座", + "readging": "ほうざ", + "pos": "名詞", + "pn": -0.607454 + }, + { + "surface": "参る", + "readging": "まいる", + "pos": "動詞", + "pn": -0.607468 + }, + { + "surface": "腎臓", + "readging": "じんぞう", + "pos": "名詞", + "pn": -0.6075 + }, + { + "surface": "入交じる", + "readging": "いりまじる", + "pos": "動詞", + "pn": -0.607518 + }, + { + "surface": "片方", + "readging": "かたほう", + "pos": "名詞", + "pn": -0.607535 + }, + { + "surface": "へらへら", + "readging": "へらへら", + "pos": "副詞", + "pn": -0.607604 + }, + { + "surface": "縒り糸", + "readging": "よりいと", + "pos": "名詞", + "pn": -0.607617 + }, + { + "surface": "粗筵", + "readging": "あらむしろ", + "pos": "名詞", + "pn": -0.60763 + }, + { + "surface": "放散", + "readging": "ほうさん", + "pos": "名詞", + "pn": -0.607646 + }, + { + "surface": "檜", + "readging": "ひのき", + "pos": "名詞", + "pn": -0.607692 + }, + { + "surface": "巾着切", + "readging": "きんちゃくきり", + "pos": "名詞", + "pn": -0.60777 + }, + { + "surface": "振売", + "readging": "ふりうり", + "pos": "名詞", + "pn": -0.607807 + }, + { + "surface": "鳥肌", + "readging": "とりはだ", + "pos": "名詞", + "pn": -0.607839 + }, + { + "surface": "狂い", + "readging": "ぐるい", + "pos": "名詞", + "pn": -0.607842 + }, + { + "surface": "所持", + "readging": "しょじ", + "pos": "名詞", + "pn": -0.607845 + }, + { + "surface": "偏執", + "readging": "へんしゅう", + "pos": "名詞", + "pn": -0.607861 + }, + { + "surface": "取決める", + "readging": "とりきめる", + "pos": "動詞", + "pn": -0.607866 + }, + { + "surface": "ぺろぺろ", + "readging": "ぺろぺろ", + "pos": "副詞", + "pn": -0.607905 + }, + { + "surface": "月代", + "readging": "さかやき", + "pos": "名詞", + "pn": -0.607925 + }, + { + "surface": "竿頭", + "readging": "かんとう", + "pos": "名詞", + "pn": -0.607956 + }, + { + "surface": "来る", + "readging": "きたる", + "pos": "動詞", + "pn": -0.607983 + }, + { + "surface": "民家", + "readging": "みんか", + "pos": "名詞", + "pn": -0.607983 + }, + { + "surface": "引上げる", + "readging": "ひきあげる", + "pos": "動詞", + "pn": -0.608046 + }, + { + "surface": "日干", + "readging": "ひぼし", + "pos": "名詞", + "pn": -0.608066 + }, + { + "surface": "環", + "readging": "かん", + "pos": "名詞", + "pn": -0.608083 + }, + { + "surface": "五臓六腑", + "readging": "ごぞうろっぷ", + "pos": "名詞", + "pn": -0.608092 + }, + { + "surface": "骨", + "readging": "こつ", + "pos": "名詞", + "pn": -0.608101 + }, + { + "surface": "寄", + "readging": "き", + "pos": "名詞", + "pn": -0.608136 + }, + { + "surface": "塩豆", + "readging": "しおまめ", + "pos": "名詞", + "pn": -0.608138 + }, + { + "surface": "蹄", + "readging": "ひづめ", + "pos": "名詞", + "pn": -0.608154 + }, + { + "surface": "バックル", + "readging": "バックル", + "pos": "名詞", + "pn": -0.608157 + }, + { + "surface": "督する", + "readging": "とくする", + "pos": "動詞", + "pn": -0.608164 + }, + { + "surface": "保護", + "readging": "ほご", + "pos": "名詞", + "pn": -0.608183 + }, + { + "surface": "暮れる", + "readging": "くれる", + "pos": "動詞", + "pn": -0.6082 + }, + { + "surface": "結える", + "readging": "ゆわえる", + "pos": "動詞", + "pn": -0.608208 + }, + { + "surface": "擁する", + "readging": "ようする", + "pos": "動詞", + "pn": -0.608223 + }, + { + "surface": "打撃", + "readging": "だげき", + "pos": "名詞", + "pn": -0.608247 + }, + { + "surface": "しめじ", + "readging": "しめじ", + "pos": "名詞", + "pn": -0.608252 + }, + { + "surface": "乱逆", + "readging": "らんぎゃく", + "pos": "名詞", + "pn": -0.608271 + }, + { + "surface": "下帯", + "readging": "したおび", + "pos": "名詞", + "pn": -0.608313 + }, + { + "surface": "滞留", + "readging": "たいりゅう", + "pos": "名詞", + "pn": -0.608323 + }, + { + "surface": "在任", + "readging": "ざいにん", + "pos": "名詞", + "pn": -0.608338 + }, + { + "surface": "コーナー", + "readging": "コーナー", + "pos": "名詞", + "pn": -0.608344 + }, + { + "surface": "一脈", + "readging": "いちみゃく", + "pos": "名詞", + "pn": -0.608356 + }, + { + "surface": "出来上がる", + "readging": "できあがる", + "pos": "動詞", + "pn": -0.608406 + }, + { + "surface": "片手間", + "readging": "かたてま", + "pos": "名詞", + "pn": -0.608432 + }, + { + "surface": "産婦", + "readging": "さんぷ", + "pos": "名詞", + "pn": -0.608454 + }, + { + "surface": "難局", + "readging": "なんきょく", + "pos": "名詞", + "pn": -0.608489 + }, + { + "surface": "言いなす", + "readging": "いいなす", + "pos": "動詞", + "pn": -0.608549 + }, + { + "surface": "抓る", + "readging": "つねる", + "pos": "動詞", + "pn": -0.608552 + }, + { + "surface": "肉入", + "readging": "にくいれ", + "pos": "名詞", + "pn": -0.608593 + }, + { + "surface": "がやがや", + "readging": "がやがや", + "pos": "副詞", + "pn": -0.608608 + }, + { + "surface": "小刀", + "readging": "しょうとう", + "pos": "名詞", + "pn": -0.608611 + }, + { + "surface": "饒舌", + "readging": "じょうぜつ", + "pos": "名詞", + "pn": -0.608612 + }, + { + "surface": "乾物", + "readging": "かんぶつ", + "pos": "名詞", + "pn": -0.608618 + }, + { + "surface": "姓", + "readging": "せい", + "pos": "名詞", + "pn": -0.608641 + }, + { + "surface": "父母", + "readging": "ふぼ", + "pos": "名詞", + "pn": -0.608655 + }, + { + "surface": "仕上げる", + "readging": "しあげる", + "pos": "動詞", + "pn": -0.608658 + }, + { + "surface": "繋縛", + "readging": "けいばく", + "pos": "名詞", + "pn": -0.608667 + }, + { + "surface": "差金", + "readging": "さしがね", + "pos": "名詞", + "pn": -0.608702 + }, + { + "surface": "謙抑", + "readging": "けんよく", + "pos": "名詞", + "pn": -0.608707 + }, + { + "surface": "席末", + "readging": "せきまつ", + "pos": "名詞", + "pn": -0.608711 + }, + { + "surface": "筆塚", + "readging": "ふでづか", + "pos": "名詞", + "pn": -0.60873 + }, + { + "surface": "市井", + "readging": "しせい", + "pos": "名詞", + "pn": -0.608735 + }, + { + "surface": "女中", + "readging": "じょちゅう", + "pos": "名詞", + "pn": -0.608788 + }, + { + "surface": "嫉む", + "readging": "そねむ", + "pos": "動詞", + "pn": -0.608816 + }, + { + "surface": "様相", + "readging": "ようそう", + "pos": "名詞", + "pn": -0.608854 + }, + { + "surface": "尾根", + "readging": "おね", + "pos": "名詞", + "pn": -0.608878 + }, + { + "surface": "耳元", + "readging": "みみもと", + "pos": "名詞", + "pn": -0.608903 + }, + { + "surface": "伯母}{叔母", + "readging": "おば", + "pos": "名詞", + "pn": -0.608914 + }, + { + "surface": "紐付", + "readging": "ひもつき", + "pos": "名詞", + "pn": -0.608917 + }, + { + "surface": "むくむく", + "readging": "むくむく", + "pos": "副詞", + "pn": -0.608955 + }, + { + "surface": "熱型", + "readging": "ねっけい", + "pos": "名詞", + "pn": -0.608962 + }, + { + "surface": "筋道", + "readging": "すじみち", + "pos": "名詞", + "pn": -0.609007 + }, + { + "surface": "道筋", + "readging": "みちすじ", + "pos": "名詞", + "pn": -0.609026 + }, + { + "surface": "袖", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.609035 + }, + { + "surface": "粒状", + "readging": "りゅうじょう", + "pos": "名詞", + "pn": -0.609071 + }, + { + "surface": "俗言", + "readging": "ぞくげん", + "pos": "名詞", + "pn": -0.609082 + }, + { + "surface": "平蜘蛛", + "readging": "ひらぐも", + "pos": "名詞", + "pn": -0.609087 + }, + { + "surface": "曙", + "readging": "あけぼの", + "pos": "名詞", + "pn": -0.609107 + }, + { + "surface": "労力", + "readging": "ろうりょく", + "pos": "名詞", + "pn": -0.609129 + }, + { + "surface": "鯨蝋", + "readging": "げいろう", + "pos": "名詞", + "pn": -0.609145 + }, + { + "surface": "忽諸", + "readging": "こっしょ", + "pos": "名詞", + "pn": -0.609175 + }, + { + "surface": "爪弾き", + "readging": "つまびき", + "pos": "名詞", + "pn": -0.609193 + }, + { + "surface": "濁世", + "readging": "だくせい", + "pos": "名詞", + "pn": -0.60922 + }, + { + "surface": "色事", + "readging": "いろごと", + "pos": "名詞", + "pn": -0.609231 + }, + { + "surface": "命日", + "readging": "めいにち", + "pos": "名詞", + "pn": -0.60924 + }, + { + "surface": "支え", + "readging": "ささえ", + "pos": "名詞", + "pn": -0.609297 + }, + { + "surface": "ふかふか", + "readging": "ふかふか", + "pos": "副詞", + "pn": -0.609306 + }, + { + "surface": "界", + "readging": "かい", + "pos": "名詞", + "pn": -0.609316 + }, + { + "surface": "ものの", + "readging": "ものの", + "pos": "副詞", + "pn": -0.609344 + }, + { + "surface": "馬鈴薯", + "readging": "ばれいしょ", + "pos": "名詞", + "pn": -0.609349 + }, + { + "surface": "狼藉", + "readging": "ろうぜき", + "pos": "名詞", + "pn": -0.609357 + }, + { + "surface": "胸先", + "readging": "むなさき", + "pos": "名詞", + "pn": -0.609387 + }, + { + "surface": "ポマード", + "readging": "ポマード", + "pos": "名詞", + "pn": -0.609397 + }, + { + "surface": "大目", + "readging": "おおめ", + "pos": "名詞", + "pn": -0.609405 + }, + { + "surface": "汲上げる", + "readging": "くみあげる", + "pos": "動詞", + "pn": -0.609415 + }, + { + "surface": "床", + "readging": "しょう", + "pos": "名詞", + "pn": -0.60943 + }, + { + "surface": "挂冠", + "readging": "けいかん", + "pos": "名詞", + "pn": -0.609442 + }, + { + "surface": "束", + "readging": "たば", + "pos": "名詞", + "pn": -0.609449 + }, + { + "surface": "修理", + "readging": "しゅうり", + "pos": "名詞", + "pn": -0.60947 + }, + { + "surface": "毒水", + "readging": "どくすい", + "pos": "名詞", + "pn": -0.609473 + }, + { + "surface": "黍", + "readging": "きび", + "pos": "名詞", + "pn": -0.609491 + }, + { + "surface": "略述", + "readging": "りゃくじゅつ", + "pos": "名詞", + "pn": -0.609525 + }, + { + "surface": "前屈み", + "readging": "まえかがみ", + "pos": "名詞", + "pn": -0.609544 + }, + { + "surface": "花蕊", + "readging": "かずい", + "pos": "名詞", + "pn": -0.609555 + }, + { + "surface": "餅菓子", + "readging": "もちがし", + "pos": "名詞", + "pn": -0.609593 + }, + { + "surface": "ほっそり", + "readging": "ほっそり", + "pos": "副詞", + "pn": -0.609594 + }, + { + "surface": "いなか者", + "readging": "いなか", + "pos": "名詞", + "pn": -0.609612 + }, + { + "surface": "陣営", + "readging": "じんえい", + "pos": "名詞", + "pn": -0.609635 + }, + { + "surface": "ひん剥く", + "readging": "ひんむく", + "pos": "動詞", + "pn": -0.609648 + }, + { + "surface": "沓脱ぎ", + "readging": "くつぬぎ", + "pos": "名詞", + "pn": -0.609666 + }, + { + "surface": "銀河", + "readging": "ぎんが", + "pos": "名詞", + "pn": -0.609674 + }, + { + "surface": "一昨日", + "readging": "おととい", + "pos": "名詞", + "pn": -0.609677 + }, + { + "surface": "寝際", + "readging": "ねぎわ", + "pos": "名詞", + "pn": -0.609681 + }, + { + "surface": "手斧", + "readging": "ちょうな", + "pos": "名詞", + "pn": -0.609697 + }, + { + "surface": "毛髪", + "readging": "もうはつ", + "pos": "名詞", + "pn": -0.609714 + }, + { + "surface": "囲炉裏", + "readging": "いろり", + "pos": "名詞", + "pn": -0.609723 + }, + { + "surface": "賭博", + "readging": "とばく", + "pos": "名詞", + "pn": -0.609729 + }, + { + "surface": "領地", + "readging": "りょうち", + "pos": "名詞", + "pn": -0.609775 + }, + { + "surface": "晩稲", + "readging": "ばんとう", + "pos": "名詞", + "pn": -0.609793 + }, + { + "surface": "余談", + "readging": "よだん", + "pos": "名詞", + "pn": -0.609821 + }, + { + "surface": "貝焼", + "readging": "かいやき", + "pos": "名詞", + "pn": -0.609871 + }, + { + "surface": "輪切り", + "readging": "わぎり", + "pos": "名詞", + "pn": -0.609872 + }, + { + "surface": "孑孑", + "readging": "ぼうふら", + "pos": "名詞", + "pn": -0.609898 + }, + { + "surface": "早天", + "readging": "そうてん", + "pos": "名詞", + "pn": -0.609903 + }, + { + "surface": "キャスター", + "readging": "キャスター", + "pos": "名詞", + "pn": -0.609906 + }, + { + "surface": "叛服", + "readging": "はんぷく", + "pos": "名詞", + "pn": -0.609926 + }, + { + "surface": "土瓶", + "readging": "どびん", + "pos": "名詞", + "pn": -0.609946 + }, + { + "surface": "アマリリス", + "readging": "アマリリス", + "pos": "名詞", + "pn": -0.609967 + }, + { + "surface": "麻痺", + "readging": "まひ", + "pos": "名詞", + "pn": -0.610039 + }, + { + "surface": "真砂", + "readging": "まさご", + "pos": "名詞", + "pn": -0.610078 + }, + { + "surface": "雪間", + "readging": "ゆきま", + "pos": "名詞", + "pn": -0.610087 + }, + { + "surface": "蜆花", + "readging": "しじみばな", + "pos": "名詞", + "pn": -0.610129 + }, + { + "surface": "高野槙", + "readging": "こうやまき", + "pos": "名詞", + "pn": -0.610137 + }, + { + "surface": "面容", + "readging": "めんよう", + "pos": "名詞", + "pn": -0.610233 + }, + { + "surface": "損所", + "readging": "そんしょ", + "pos": "名詞", + "pn": -0.610258 + }, + { + "surface": "床擦れ", + "readging": "とこずれ", + "pos": "名詞", + "pn": -0.610263 + }, + { + "surface": "坊", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.610341 + }, + { + "surface": "幕の内", + "readging": "まくのうち", + "pos": "名詞", + "pn": -0.610378 + }, + { + "surface": "鉄火味噌", + "readging": "てっかみそ", + "pos": "名詞", + "pn": -0.610395 + }, + { + "surface": "掻立てる", + "readging": "かきたてる", + "pos": "動詞", + "pn": -0.610398 + }, + { + "surface": "八口", + "readging": "やつくち", + "pos": "名詞", + "pn": -0.610417 + }, + { + "surface": "環境", + "readging": "かんきょう", + "pos": "名詞", + "pn": -0.610435 + }, + { + "surface": "露草", + "readging": "つゆくさ", + "pos": "名詞", + "pn": -0.610468 + }, + { + "surface": "インスタント", + "readging": "インスタント", + "pos": "名詞", + "pn": -0.610474 + }, + { + "surface": "転訛", + "readging": "てんか", + "pos": "名詞", + "pn": -0.610538 + }, + { + "surface": "ピストル", + "readging": "ピストル", + "pos": "名詞", + "pn": -0.610601 + }, + { + "surface": "米飯", + "readging": "べいはん", + "pos": "名詞", + "pn": -0.610608 + }, + { + "surface": "直下", + "readging": "ちょっか", + "pos": "名詞", + "pn": -0.61061 + }, + { + "surface": "追手", + "readging": "おって", + "pos": "名詞", + "pn": -0.610624 + }, + { + "surface": "詰む", + "readging": "つむ", + "pos": "動詞", + "pn": -0.61067 + }, + { + "surface": "越中褌", + "readging": "えっちゅうふんどし", + "pos": "名詞", + "pn": -0.610698 + }, + { + "surface": "宗", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.610763 + }, + { + "surface": "軽袗", + "readging": "カルサン", + "pos": "名詞", + "pn": -0.610771 + }, + { + "surface": "鉱山", + "readging": "こうざん", + "pos": "名詞", + "pn": -0.610779 + }, + { + "surface": "切払う", + "readging": "きりはらう", + "pos": "動詞", + "pn": -0.610853 + }, + { + "surface": "閉店", + "readging": "へいてん", + "pos": "名詞", + "pn": -0.610892 + }, + { + "surface": "報う", + "readging": "むくう", + "pos": "動詞", + "pn": -0.610898 + }, + { + "surface": "巡閲", + "readging": "じゅんえつ", + "pos": "名詞", + "pn": -0.610931 + }, + { + "surface": "癩", + "readging": "かったい", + "pos": "名詞", + "pn": -0.611061 + }, + { + "surface": "銑鉄", + "readging": "せんてつ", + "pos": "名詞", + "pn": -0.611127 + }, + { + "surface": "面貌", + "readging": "めんぼう", + "pos": "名詞", + "pn": -0.611165 + }, + { + "surface": "減給", + "readging": "げんきゅう", + "pos": "名詞", + "pn": -0.611179 + }, + { + "surface": "早言葉", + "readging": "はやことば", + "pos": "名詞", + "pn": -0.611236 + }, + { + "surface": "伝法", + "readging": "でんぼう", + "pos": "名詞", + "pn": -0.611262 + }, + { + "surface": "八重葎", + "readging": "やえ", + "pos": "名詞", + "pn": -0.611269 + }, + { + "surface": "亜麻仁", + "readging": "あまに", + "pos": "名詞", + "pn": -0.611281 + }, + { + "surface": "相合傘", + "readging": "あいあいがさ", + "pos": "名詞", + "pn": -0.611323 + }, + { + "surface": "曾孫", + "readging": "ひまご", + "pos": "名詞", + "pn": -0.611327 + }, + { + "surface": "借金", + "readging": "しゃっきん", + "pos": "名詞", + "pn": -0.611334 + }, + { + "surface": "楊枝", + "readging": "ようじ", + "pos": "名詞", + "pn": -0.611355 + }, + { + "surface": "欠番", + "readging": "けつばん", + "pos": "名詞", + "pn": -0.611363 + }, + { + "surface": "躍り込む", + "readging": "おどりこむ", + "pos": "動詞", + "pn": -0.611381 + }, + { + "surface": "節分", + "readging": "せつぶん", + "pos": "名詞", + "pn": -0.611384 + }, + { + "surface": "唇", + "readging": "しん", + "pos": "名詞", + "pn": -0.611395 + }, + { + "surface": "望遠鏡", + "readging": "ぼうえんきょう", + "pos": "名詞", + "pn": -0.611432 + }, + { + "surface": "藁火", + "readging": "わらび", + "pos": "名詞", + "pn": -0.61148 + }, + { + "surface": "鈍麻", + "readging": "どんま", + "pos": "名詞", + "pn": -0.611489 + }, + { + "surface": "篠懸の木", + "readging": "すずかけのき", + "pos": "名詞", + "pn": -0.611502 + }, + { + "surface": "拝する", + "readging": "はいする", + "pos": "動詞", + "pn": -0.611507 + }, + { + "surface": "細波", + "readging": "さざなみ", + "pos": "名詞", + "pn": -0.611511 + }, + { + "surface": "乳首", + "readging": "ちちくび", + "pos": "名詞", + "pn": -0.611522 + }, + { + "surface": "禁断症状", + "readging": "きんだんしょうじょう", + "pos": "名詞", + "pn": -0.611554 + }, + { + "surface": "桟道", + "readging": "さんどう", + "pos": "名詞", + "pn": -0.611558 + }, + { + "surface": "使い物", + "readging": "つかいもの", + "pos": "名詞", + "pn": -0.611567 + }, + { + "surface": "緩急", + "readging": "かんきゅう", + "pos": "名詞", + "pn": -0.611573 + }, + { + "surface": "感想", + "readging": "かんそう", + "pos": "名詞", + "pn": -0.611605 + }, + { + "surface": "失せ物", + "readging": "うせもの", + "pos": "名詞", + "pn": -0.611605 + }, + { + "surface": "宿駅", + "readging": "しゅくえき", + "pos": "名詞", + "pn": -0.611608 + }, + { + "surface": "黄粉", + "readging": "きなこ", + "pos": "名詞", + "pn": -0.611616 + }, + { + "surface": "他所", + "readging": "たしょ", + "pos": "名詞", + "pn": -0.611618 + }, + { + "surface": "貸元", + "readging": "かしもと", + "pos": "名詞", + "pn": -0.611695 + }, + { + "surface": "千日手", + "readging": "せんにちて", + "pos": "名詞", + "pn": -0.611702 + }, + { + "surface": "七難", + "readging": "しちなん", + "pos": "名詞", + "pn": -0.611709 + }, + { + "surface": "猪子", + "readging": "いのこ", + "pos": "名詞", + "pn": -0.611821 + }, + { + "surface": "馴鹿", + "readging": "トナカイ", + "pos": "名詞", + "pn": -0.611883 + }, + { + "surface": "疎隔", + "readging": "そかく", + "pos": "名詞", + "pn": -0.611886 + }, + { + "surface": "唸る", + "readging": "うなる", + "pos": "動詞", + "pn": -0.611962 + }, + { + "surface": "音声", + "readging": "おんせい", + "pos": "名詞", + "pn": -0.611965 + }, + { + "surface": "押退ける", + "readging": "おしのける", + "pos": "動詞", + "pn": -0.611982 + }, + { + "surface": "欄", + "readging": "おばしま", + "pos": "名詞", + "pn": -0.612001 + }, + { + "surface": "空色", + "readging": "そらいろ", + "pos": "名詞", + "pn": -0.612014 + }, + { + "surface": "法定伝染病", + "readging": "ほうていでんせんびょう", + "pos": "名詞", + "pn": -0.612024 + }, + { + "surface": "てんで", + "readging": "てんで", + "pos": "副詞", + "pn": -0.612033 + }, + { + "surface": "ポリシー", + "readging": "ポリシー", + "pos": "名詞", + "pn": -0.612057 + }, + { + "surface": "悪心", + "readging": "おしん", + "pos": "名詞", + "pn": -0.612065 + }, + { + "surface": "締金", + "readging": "しめがね", + "pos": "名詞", + "pn": -0.61207 + }, + { + "surface": "霜焼け", + "readging": "しもやけ", + "pos": "名詞", + "pn": -0.612075 + }, + { + "surface": "一走り", + "readging": "ひとはしり", + "pos": "名詞", + "pn": -0.612104 + }, + { + "surface": "国", + "readging": "こく", + "pos": "名詞", + "pn": -0.612145 + }, + { + "surface": "気儘", + "readging": "きまま", + "pos": "名詞", + "pn": -0.612161 + }, + { + "surface": "味醂", + "readging": "みりん", + "pos": "名詞", + "pn": -0.612176 + }, + { + "surface": "山道", + "readging": "やまみち", + "pos": "名詞", + "pn": -0.612233 + }, + { + "surface": "武具", + "readging": "ぶぐ", + "pos": "名詞", + "pn": -0.61224 + }, + { + "surface": "踏石", + "readging": "ふみいし", + "pos": "名詞", + "pn": -0.612257 + }, + { + "surface": "畜類", + "readging": "ちくるい", + "pos": "名詞", + "pn": -0.612259 + }, + { + "surface": "鉄片", + "readging": "てっぺん", + "pos": "名詞", + "pn": -0.612266 + }, + { + "surface": "店頭", + "readging": "てんとう", + "pos": "名詞", + "pn": -0.612323 + }, + { + "surface": "脾臓", + "readging": "ひぞう", + "pos": "名詞", + "pn": -0.612325 + }, + { + "surface": "獲物", + "readging": "えもの", + "pos": "名詞", + "pn": -0.612328 + }, + { + "surface": "握り拳", + "readging": "にぎりこぶし", + "pos": "名詞", + "pn": -0.612338 + }, + { + "surface": "閉止", + "readging": "へいし", + "pos": "名詞", + "pn": -0.612352 + }, + { + "surface": "年頃", + "readging": "としごろ", + "pos": "名詞", + "pn": -0.612425 + }, + { + "surface": "付け睫", + "readging": "つけまつげ", + "pos": "名詞", + "pn": -0.612429 + }, + { + "surface": "復業", + "readging": "ふくぎょう", + "pos": "名詞", + "pn": -0.612452 + }, + { + "surface": "臆断", + "readging": "おくだん", + "pos": "名詞", + "pn": -0.612464 + }, + { + "surface": "雨垂れ", + "readging": "あまだれ", + "pos": "名詞", + "pn": -0.612499 + }, + { + "surface": "綰ねる", + "readging": "たがねる", + "pos": "動詞", + "pn": -0.612501 + }, + { + "surface": "一切", + "readging": "いっさい", + "pos": "名詞", + "pn": -0.612569 + }, + { + "surface": "案山子", + "readging": "かかし", + "pos": "名詞", + "pn": -0.612571 + }, + { + "surface": "黄色い", + "readging": "きいろい", + "pos": "形容詞", + "pn": -0.612599 + }, + { + "surface": "途絶", + "readging": "とぜつ", + "pos": "名詞", + "pn": -0.612655 + }, + { + "surface": "麦茶", + "readging": "むぎちゃ", + "pos": "名詞", + "pn": -0.612698 + }, + { + "surface": "蔦", + "readging": "つた", + "pos": "名詞", + "pn": -0.612699 + }, + { + "surface": "綿入れ", + "readging": "わたいれ", + "pos": "名詞", + "pn": -0.612743 + }, + { + "surface": "間に合せ", + "readging": "まにあわせ", + "pos": "名詞", + "pn": -0.612759 + }, + { + "surface": "椎茸", + "readging": "しいたけ", + "pos": "名詞", + "pn": -0.612869 + }, + { + "surface": "劇場", + "readging": "げきじょう", + "pos": "名詞", + "pn": -0.612878 + }, + { + "surface": "一粒種", + "readging": "ひとつぶだね", + "pos": "名詞", + "pn": -0.612934 + }, + { + "surface": "赤ちゃん", + "readging": "あかちゃん", + "pos": "名詞", + "pn": -0.612937 + }, + { + "surface": "ペシミスト", + "readging": "ペシミスト", + "pos": "名詞", + "pn": -0.612947 + }, + { + "surface": "臙脂", + "readging": "えんじ", + "pos": "名詞", + "pn": -0.612968 + }, + { + "surface": "ポケット型", + "readging": "ポケットがた", + "pos": "名詞", + "pn": -0.612972 + }, + { + "surface": "気取り", + "readging": "きどり", + "pos": "名詞", + "pn": -0.613037 + }, + { + "surface": "秦皮", + "readging": "とねりこ", + "pos": "名詞", + "pn": -0.613053 + }, + { + "surface": "骨折る", + "readging": "ほねおる", + "pos": "動詞", + "pn": -0.613058 + }, + { + "surface": "遊戯", + "readging": "ゆうぎ", + "pos": "名詞", + "pn": -0.61306 + }, + { + "surface": "入京", + "readging": "にゅうきょう", + "pos": "名詞", + "pn": -0.613075 + }, + { + "surface": "見離す", + "readging": "みはなす", + "pos": "動詞", + "pn": -0.613077 + }, + { + "surface": "肩透かし", + "readging": "かたすかし", + "pos": "名詞", + "pn": -0.613105 + }, + { + "surface": "だんつく", + "readging": "だんつく", + "pos": "名詞", + "pn": -0.613108 + }, + { + "surface": "鈍痛", + "readging": "どんつう", + "pos": "名詞", + "pn": -0.613117 + }, + { + "surface": "大小", + "readging": "だいしょう", + "pos": "名詞", + "pn": -0.613132 + }, + { + "surface": "所以", + "readging": "ゆえん", + "pos": "名詞", + "pn": -0.613135 + }, + { + "surface": "加害", + "readging": "かがい", + "pos": "名詞", + "pn": -0.613141 + }, + { + "surface": "詭計", + "readging": "きけい", + "pos": "名詞", + "pn": -0.613152 + }, + { + "surface": "艀", + "readging": "はしけ", + "pos": "名詞", + "pn": -0.613156 + }, + { + "surface": "後図", + "readging": "こうと", + "pos": "名詞", + "pn": -0.613163 + }, + { + "surface": "唆す", + "readging": "そそのかす", + "pos": "動詞", + "pn": -0.613179 + }, + { + "surface": "猶", + "readging": "ゆう", + "pos": "副詞", + "pn": -0.613209 + }, + { + "surface": "冷麦", + "readging": "ひやむぎ", + "pos": "名詞", + "pn": -0.613211 + }, + { + "surface": "閉鎖", + "readging": "へいさ", + "pos": "名詞", + "pn": -0.613227 + }, + { + "surface": "そそくさ", + "readging": "そそくさ", + "pos": "副詞", + "pn": -0.61325 + }, + { + "surface": "合一", + "readging": "ごういつ", + "pos": "名詞", + "pn": -0.613262 + }, + { + "surface": "のらくら", + "readging": "のらくら", + "pos": "副詞", + "pn": -0.613286 + }, + { + "surface": "扛秤", + "readging": "ちぎばかり", + "pos": "名詞", + "pn": -0.613297 + }, + { + "surface": "隔意", + "readging": "かくい", + "pos": "名詞", + "pn": -0.613304 + }, + { + "surface": "諫言", + "readging": "かんげん", + "pos": "名詞", + "pn": -0.613356 + }, + { + "surface": "有余る", + "readging": "ありあまる", + "pos": "動詞", + "pn": -0.613457 + }, + { + "surface": "任", + "readging": "にん", + "pos": "名詞", + "pn": -0.613468 + }, + { + "surface": "発酵", + "readging": "はっこう", + "pos": "名詞", + "pn": -0.61347 + }, + { + "surface": "桐油", + "readging": "とうゆ", + "pos": "名詞", + "pn": -0.61348 + }, + { + "surface": "枡掻", + "readging": "ますかき", + "pos": "名詞", + "pn": -0.613496 + }, + { + "surface": "摘要", + "readging": "てきよう", + "pos": "名詞", + "pn": -0.613524 + }, + { + "surface": "腋臭", + "readging": "わきが", + "pos": "名詞", + "pn": -0.613559 + }, + { + "surface": "下膨れ", + "readging": "しもぶくれ", + "pos": "名詞", + "pn": -0.613565 + }, + { + "surface": "でんでん太鼓", + "readging": "でんでんだいこ", + "pos": "名詞", + "pn": -0.613586 + }, + { + "surface": "米銭", + "readging": "べいせん", + "pos": "名詞", + "pn": -0.613593 + }, + { + "surface": "寓", + "readging": "ぐう", + "pos": "名詞", + "pn": -0.613609 + }, + { + "surface": "藁沓", + "readging": "わらぐつ", + "pos": "名詞", + "pn": -0.613621 + }, + { + "surface": "能", + "readging": "のう", + "pos": "名詞", + "pn": -0.613688 + }, + { + "surface": "筆", + "readging": "ひつ", + "pos": "名詞", + "pn": -0.613699 + }, + { + "surface": "異父", + "readging": "いふ", + "pos": "名詞", + "pn": -0.613699 + }, + { + "surface": "地点", + "readging": "ちてん", + "pos": "名詞", + "pn": -0.613726 + }, + { + "surface": "肘突き", + "readging": "ひじつき", + "pos": "名詞", + "pn": -0.613732 + }, + { + "surface": "煮冷まし", + "readging": "にざまし", + "pos": "名詞", + "pn": -0.613785 + }, + { + "surface": "遣り込める", + "readging": "やりこめる", + "pos": "動詞", + "pn": -0.613808 + }, + { + "surface": "皺くちゃ", + "readging": "しわくちゃ", + "pos": "名詞", + "pn": -0.61382 + }, + { + "surface": "中折", + "readging": "なかおれ", + "pos": "名詞", + "pn": -0.613833 + }, + { + "surface": "僻陬", + "readging": "へきすう", + "pos": "名詞", + "pn": -0.613864 + }, + { + "surface": "粗暴", + "readging": "そぼう", + "pos": "名詞", + "pn": -0.613865 + }, + { + "surface": "欲情", + "readging": "よくじょう", + "pos": "名詞", + "pn": -0.613913 + }, + { + "surface": "入婿", + "readging": "いりむこ", + "pos": "名詞", + "pn": -0.613925 + }, + { + "surface": "寺院", + "readging": "じいん", + "pos": "名詞", + "pn": -0.614012 + }, + { + "surface": "冷かす", + "readging": "ひやかす", + "pos": "動詞", + "pn": -0.614069 + }, + { + "surface": "お納戸色", + "readging": "おなんどいろ", + "pos": "名詞", + "pn": -0.614108 + }, + { + "surface": "水薬", + "readging": "みずぐすり", + "pos": "名詞", + "pn": -0.614148 + }, + { + "surface": "鳥の子紙", + "readging": "とりのこがみ", + "pos": "名詞", + "pn": -0.614168 + }, + { + "surface": "疎外", + "readging": "そがい", + "pos": "名詞", + "pn": -0.614187 + }, + { + "surface": "迂生", + "readging": "うせい", + "pos": "名詞", + "pn": -0.614236 + }, + { + "surface": "出版", + "readging": "しゅっぱん", + "pos": "名詞", + "pn": -0.614238 + }, + { + "surface": "逃す", + "readging": "にがす", + "pos": "動詞", + "pn": -0.614345 + }, + { + "surface": "舷", + "readging": "げん", + "pos": "名詞", + "pn": -0.614349 + }, + { + "surface": "よくよく", + "readging": "よくよく", + "pos": "副詞", + "pn": -0.614369 + }, + { + "surface": "風眼", + "readging": "ふうがん", + "pos": "名詞", + "pn": -0.614375 + }, + { + "surface": "ストレプトマイシン", + "readging": "ストレプトマイシン", + "pos": "名詞", + "pn": -0.614395 + }, + { + "surface": "目庇", + "readging": "まびさし", + "pos": "名詞", + "pn": -0.614396 + }, + { + "surface": "点綴", + "readging": "てんてい", + "pos": "名詞", + "pn": -0.614438 + }, + { + "surface": "攀じる", + "readging": "よじる", + "pos": "動詞", + "pn": -0.614443 + }, + { + "surface": "取鎮める", + "readging": "とりしずめる", + "pos": "動詞", + "pn": -0.614452 + }, + { + "surface": "審判", + "readging": "しんぱん", + "pos": "名詞", + "pn": -0.614463 + }, + { + "surface": "シャモ", + "readging": "シャモ", + "pos": "名詞", + "pn": -0.614464 + }, + { + "surface": "口実", + "readging": "こうじつ", + "pos": "名詞", + "pn": -0.614476 + }, + { + "surface": "伝言", + "readging": "でんごん", + "pos": "名詞", + "pn": -0.614478 + }, + { + "surface": "一掃", + "readging": "いっそう", + "pos": "名詞", + "pn": -0.614491 + }, + { + "surface": "雑念", + "readging": "ざつねん", + "pos": "名詞", + "pn": -0.61451 + }, + { + "surface": "内祝言", + "readging": "ないしゅうげん", + "pos": "名詞", + "pn": -0.614552 + }, + { + "surface": "丸裸", + "readging": "まるはだか", + "pos": "名詞", + "pn": -0.614578 + }, + { + "surface": "背ける", + "readging": "そむける", + "pos": "動詞", + "pn": -0.614607 + }, + { + "surface": "外面", + "readging": "げめん", + "pos": "名詞", + "pn": -0.614609 + }, + { + "surface": "百姓", + "readging": "ひゃくしょう", + "pos": "名詞", + "pn": -0.614623 + }, + { + "surface": "升", + "readging": "ます", + "pos": "名詞", + "pn": -0.614651 + }, + { + "surface": "贏ち得る", + "readging": "かちえる", + "pos": "動詞", + "pn": -0.614661 + }, + { + "surface": "浪", + "readging": "ろう", + "pos": "名詞", + "pn": -0.614711 + }, + { + "surface": "紛らせる", + "readging": "まぎらせる", + "pos": "動詞", + "pn": -0.614718 + }, + { + "surface": "寝押し", + "readging": "ねおし", + "pos": "名詞", + "pn": -0.614722 + }, + { + "surface": "二の足", + "readging": "にのあし", + "pos": "名詞", + "pn": -0.614759 + }, + { + "surface": "大腿", + "readging": "だいたい", + "pos": "名詞", + "pn": -0.614765 + }, + { + "surface": "噛殺す", + "readging": "かみころす", + "pos": "動詞", + "pn": -0.614785 + }, + { + "surface": "ねんね", + "readging": "ねんね", + "pos": "名詞", + "pn": -0.614786 + }, + { + "surface": "眉目", + "readging": "びもく", + "pos": "名詞", + "pn": -0.61479 + }, + { + "surface": "透き目", + "readging": "すきめ", + "pos": "名詞", + "pn": -0.614846 + }, + { + "surface": "円柱", + "readging": "えんちゅう", + "pos": "名詞", + "pn": -0.614924 + }, + { + "surface": "安座", + "readging": "あんざ", + "pos": "名詞", + "pn": -0.614934 + }, + { + "surface": "強度", + "readging": "きょうど", + "pos": "名詞", + "pn": -0.614954 + }, + { + "surface": "ばれる", + "readging": "ばれる", + "pos": "動詞", + "pn": -0.614957 + }, + { + "surface": "取込み", + "readging": "とりこみ", + "pos": "名詞", + "pn": -0.614989 + }, + { + "surface": "束", + "readging": "そく", + "pos": "名詞", + "pn": -0.615004 + }, + { + "surface": "黄白", + "readging": "こうはく", + "pos": "名詞", + "pn": -0.615018 + }, + { + "surface": "初秋", + "readging": "はつあき", + "pos": "名詞", + "pn": -0.615026 + }, + { + "surface": "病院", + "readging": "びょういん", + "pos": "名詞", + "pn": -0.615062 + }, + { + "surface": "甲", + "readging": "きのえ", + "pos": "名詞", + "pn": -0.615073 + }, + { + "surface": "悲運", + "readging": "ひうん", + "pos": "名詞", + "pn": -0.615076 + }, + { + "surface": "膝掛", + "readging": "ひざかけ", + "pos": "名詞", + "pn": -0.615088 + }, + { + "surface": "詫入る", + "readging": "わびいる", + "pos": "動詞", + "pn": -0.615088 + }, + { + "surface": "躄る", + "readging": "いざる", + "pos": "動詞", + "pn": -0.61509 + }, + { + "surface": "嫁", + "readging": "よめ", + "pos": "名詞", + "pn": -0.615099 + }, + { + "surface": "御言", + "readging": "みこと", + "pos": "名詞", + "pn": -0.615117 + }, + { + "surface": "帆", + "readging": "ほ", + "pos": "名詞", + "pn": -0.615154 + }, + { + "surface": "轡", + "readging": "くつわ", + "pos": "名詞", + "pn": -0.615163 + }, + { + "surface": "蓮", + "readging": "れん", + "pos": "名詞", + "pn": -0.615169 + }, + { + "surface": "フライ", + "readging": "フライパン", + "pos": "名詞", + "pn": -0.61523 + }, + { + "surface": "徒死", + "readging": "とし", + "pos": "名詞", + "pn": -0.615252 + }, + { + "surface": "白子", + "readging": "しらす", + "pos": "名詞", + "pn": -0.615273 + }, + { + "surface": "領巾", + "readging": "ひれ", + "pos": "名詞", + "pn": -0.615281 + }, + { + "surface": "順番", + "readging": "じゅんばん", + "pos": "名詞", + "pn": -0.615288 + }, + { + "surface": "居住い", + "readging": "いずまい", + "pos": "名詞", + "pn": -0.615314 + }, + { + "surface": "遺体", + "readging": "いたい", + "pos": "名詞", + "pn": -0.615323 + }, + { + "surface": "画鋲", + "readging": "がびょう", + "pos": "名詞", + "pn": -0.615327 + }, + { + "surface": "水腫", + "readging": "すいしゅ", + "pos": "名詞", + "pn": -0.615341 + }, + { + "surface": "ビス", + "readging": "ビス", + "pos": "名詞", + "pn": -0.615382 + }, + { + "surface": "辻占", + "readging": "つじうら", + "pos": "名詞", + "pn": -0.615401 + }, + { + "surface": "弔砲", + "readging": "ちょうほう", + "pos": "名詞", + "pn": -0.615422 + }, + { + "surface": "戸閾", + "readging": "とじきみ", + "pos": "名詞", + "pn": -0.615438 + }, + { + "surface": "意外", + "readging": "いがい", + "pos": "名詞", + "pn": -0.615444 + }, + { + "surface": "離れ離れ", + "readging": "はなればなれ", + "pos": "名詞", + "pn": -0.615449 + }, + { + "surface": "ぬうっと", + "readging": "ぬうっと", + "pos": "副詞", + "pn": -0.615457 + }, + { + "surface": "喉輪", + "readging": "のどわ", + "pos": "名詞", + "pn": -0.615515 + }, + { + "surface": "必する", + "readging": "ひっする", + "pos": "動詞", + "pn": -0.615549 + }, + { + "surface": "飛翔", + "readging": "ひしょう", + "pos": "名詞", + "pn": -0.615558 + }, + { + "surface": "入り込む", + "readging": "いりこむ", + "pos": "動詞", + "pn": -0.615562 + }, + { + "surface": "空模様", + "readging": "そらもよう", + "pos": "名詞", + "pn": -0.615565 + }, + { + "surface": "路程", + "readging": "ろてい", + "pos": "名詞", + "pn": -0.615569 + }, + { + "surface": "関連", + "readging": "かんれん", + "pos": "名詞", + "pn": -0.615628 + }, + { + "surface": "欠陥", + "readging": "けっかん", + "pos": "名詞", + "pn": -0.615674 + }, + { + "surface": "どたばた", + "readging": "どたばた", + "pos": "副詞", + "pn": -0.615677 + }, + { + "surface": "衣笠", + "readging": "きぬがさ", + "pos": "名詞", + "pn": -0.615768 + }, + { + "surface": "虫拳", + "readging": "むしけん", + "pos": "名詞", + "pn": -0.615808 + }, + { + "surface": "ラグビー", + "readging": "ラグビー", + "pos": "名詞", + "pn": -0.615811 + }, + { + "surface": "鉄漿", + "readging": "おはぐろ", + "pos": "名詞", + "pn": -0.615834 + }, + { + "surface": "立て籠る", + "readging": "たてこもる", + "pos": "動詞", + "pn": -0.615854 + }, + { + "surface": "掻揚げ", + "readging": "かきあげ", + "pos": "名詞", + "pn": -0.615887 + }, + { + "surface": "淳", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.615908 + }, + { + "surface": "仏像", + "readging": "ぶつぞう", + "pos": "名詞", + "pn": -0.615988 + }, + { + "surface": "予想", + "readging": "よそう", + "pos": "名詞", + "pn": -0.616005 + }, + { + "surface": "悪女", + "readging": "あくじょ", + "pos": "名詞", + "pn": -0.616023 + }, + { + "surface": "鐘", + "readging": "かね", + "pos": "名詞", + "pn": -0.616084 + }, + { + "surface": "延命", + "readging": "えんめい", + "pos": "名詞", + "pn": -0.616139 + }, + { + "surface": "きりこ灯籠", + "readging": "きりこどうろう", + "pos": "名詞", + "pn": -0.616156 + }, + { + "surface": "湿潤", + "readging": "しつじゅん", + "pos": "名詞", + "pn": -0.616161 + }, + { + "surface": "室", + "readging": "しつ", + "pos": "名詞", + "pn": -0.616162 + }, + { + "surface": "漏れる", + "readging": "もれる", + "pos": "動詞", + "pn": -0.616165 + }, + { + "surface": "橋畔", + "readging": "きょうはん", + "pos": "名詞", + "pn": -0.616177 + }, + { + "surface": "廃る", + "readging": "すたる", + "pos": "動詞", + "pn": -0.616185 + }, + { + "surface": "塩気", + "readging": "しおけ", + "pos": "名詞", + "pn": -0.616194 + }, + { + "surface": "階級", + "readging": "かいきゅう", + "pos": "名詞", + "pn": -0.616209 + }, + { + "surface": "交渉", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.616215 + }, + { + "surface": "蹄", + "readging": "てい", + "pos": "名詞", + "pn": -0.616229 + }, + { + "surface": "手品", + "readging": "てじな", + "pos": "名詞", + "pn": -0.616288 + }, + { + "surface": "特産", + "readging": "とくさん", + "pos": "名詞", + "pn": -0.616288 + }, + { + "surface": "便服", + "readging": "べんぷく", + "pos": "名詞", + "pn": -0.616293 + }, + { + "surface": "小異", + "readging": "しょうい", + "pos": "名詞", + "pn": -0.616403 + }, + { + "surface": "寥寥", + "readging": "りょうりょう", + "pos": "名詞", + "pn": -0.616405 + }, + { + "surface": "両生類", + "readging": "りょうせいるい", + "pos": "名詞", + "pn": -0.616416 + }, + { + "surface": "絹張り", + "readging": "きぬばり", + "pos": "名詞", + "pn": -0.616437 + }, + { + "surface": "竈馬", + "readging": "かまどうま", + "pos": "名詞", + "pn": -0.61644 + }, + { + "surface": "疼く", + "readging": "うずく", + "pos": "動詞", + "pn": -0.616454 + }, + { + "surface": "気圧", + "readging": "きあつ", + "pos": "名詞", + "pn": -0.616455 + }, + { + "surface": "貯蔵", + "readging": "ちょぞう", + "pos": "名詞", + "pn": -0.616459 + }, + { + "surface": "漆", + "readging": "しつ", + "pos": "名詞", + "pn": -0.616476 + }, + { + "surface": "目腐れ", + "readging": "めくされ", + "pos": "名詞", + "pn": -0.616479 + }, + { + "surface": "吹回し", + "readging": "ふきまわし", + "pos": "名詞", + "pn": -0.616503 + }, + { + "surface": "切開", + "readging": "せっかい", + "pos": "名詞", + "pn": -0.616503 + }, + { + "surface": "投付ける", + "readging": "なげつける", + "pos": "動詞", + "pn": -0.616514 + }, + { + "surface": "込入る", + "readging": "こみいる", + "pos": "動詞", + "pn": -0.616543 + }, + { + "surface": "双方", + "readging": "そうほう", + "pos": "名詞", + "pn": -0.616586 + }, + { + "surface": "童女", + "readging": "わらわめ", + "pos": "名詞", + "pn": -0.61666 + }, + { + "surface": "股座", + "readging": "またぐら", + "pos": "名詞", + "pn": -0.616715 + }, + { + "surface": "桑園", + "readging": "そうえん", + "pos": "名詞", + "pn": -0.616721 + }, + { + "surface": "重ねて", + "readging": "かさねて", + "pos": "副詞", + "pn": -0.616734 + }, + { + "surface": "国民", + "readging": "こくみん", + "pos": "名詞", + "pn": -0.616755 + }, + { + "surface": "寸志", + "readging": "すんし", + "pos": "名詞", + "pn": -0.616768 + }, + { + "surface": "散らばる", + "readging": "ちらばる", + "pos": "動詞", + "pn": -0.616775 + }, + { + "surface": "団", + "readging": "だん", + "pos": "名詞", + "pn": -0.616809 + }, + { + "surface": "ロス", + "readging": "ロス", + "pos": "名詞", + "pn": -0.616827 + }, + { + "surface": "木端", + "readging": "こば", + "pos": "名詞", + "pn": -0.616848 + }, + { + "surface": "綴字", + "readging": "ていじ", + "pos": "名詞", + "pn": -0.616893 + }, + { + "surface": "風呂吹き", + "readging": "ふろふき", + "pos": "名詞", + "pn": -0.616917 + }, + { + "surface": "飯", + "readging": "いい", + "pos": "名詞", + "pn": -0.61697 + }, + { + "surface": "吸玉", + "readging": "すいだま", + "pos": "名詞", + "pn": -0.616975 + }, + { + "surface": "威喝", + "readging": "いかつ", + "pos": "名詞", + "pn": -0.616999 + }, + { + "surface": "忌憚", + "readging": "きたん", + "pos": "名詞", + "pn": -0.617016 + }, + { + "surface": "手本", + "readging": "てほん", + "pos": "名詞", + "pn": -0.617016 + }, + { + "surface": "守成", + "readging": "しゅせい", + "pos": "名詞", + "pn": -0.617025 + }, + { + "surface": "術", + "readging": "すべ", + "pos": "名詞", + "pn": -0.61705 + }, + { + "surface": "縁先", + "readging": "えんさき", + "pos": "名詞", + "pn": -0.617066 + }, + { + "surface": "流", + "readging": "りゅう", + "pos": "名詞", + "pn": -0.617083 + }, + { + "surface": "取分ける", + "readging": "とりわける", + "pos": "動詞", + "pn": -0.617124 + }, + { + "surface": "内内", + "readging": "ないない", + "pos": "副詞", + "pn": -0.617152 + }, + { + "surface": "累卵", + "readging": "るいらん", + "pos": "名詞", + "pn": -0.6172 + }, + { + "surface": "癇癪玉", + "readging": "かんしゃくだま", + "pos": "名詞", + "pn": -0.617225 + }, + { + "surface": "真昼", + "readging": "まひる", + "pos": "名詞", + "pn": -0.617241 + }, + { + "surface": "施策", + "readging": "しさく", + "pos": "名詞", + "pn": -0.617291 + }, + { + "surface": "否や", + "readging": "いなや", + "pos": "名詞", + "pn": -0.6173 + }, + { + "surface": "焚付ける", + "readging": "たきつける", + "pos": "動詞", + "pn": -0.61737 + }, + { + "surface": "尻", + "readging": "しり", + "pos": "名詞", + "pn": -0.617384 + }, + { + "surface": "追弔", + "readging": "ついちょう", + "pos": "名詞", + "pn": -0.617418 + }, + { + "surface": "外面", + "readging": "そとづら", + "pos": "名詞", + "pn": -0.617441 + }, + { + "surface": "界隈", + "readging": "かいわい", + "pos": "名詞", + "pn": -0.61752 + }, + { + "surface": "商略", + "readging": "しょうりゃく", + "pos": "名詞", + "pn": -0.61753 + }, + { + "surface": "毎月", + "readging": "まいつき", + "pos": "名詞", + "pn": -0.617553 + }, + { + "surface": "目論む", + "readging": "もくろむ", + "pos": "動詞", + "pn": -0.617554 + }, + { + "surface": "蹴倒す", + "readging": "けたおす", + "pos": "動詞", + "pn": -0.617622 + }, + { + "surface": "チョコレート", + "readging": "チョコレート", + "pos": "名詞", + "pn": -0.617628 + }, + { + "surface": "ソース", + "readging": "ソース", + "pos": "名詞", + "pn": -0.617651 + }, + { + "surface": "染上り", + "readging": "そめあがり", + "pos": "名詞", + "pn": -0.617687 + }, + { + "surface": "濡鼠", + "readging": "ぬれねずみ", + "pos": "名詞", + "pn": -0.617687 + }, + { + "surface": "跳ね橋", + "readging": "はねばし", + "pos": "名詞", + "pn": -0.617708 + }, + { + "surface": "感情", + "readging": "かんじょう", + "pos": "名詞", + "pn": -0.61774 + }, + { + "surface": "地変", + "readging": "ちへん", + "pos": "名詞", + "pn": -0.617746 + }, + { + "surface": "寄越す", + "readging": "よこす", + "pos": "動詞", + "pn": -0.617759 + }, + { + "surface": "おはじき", + "readging": "おはじき", + "pos": "名詞", + "pn": -0.617762 + }, + { + "surface": "肋膜炎", + "readging": "ろくまくえん", + "pos": "名詞", + "pn": -0.617817 + }, + { + "surface": "トロール", + "readging": "トロール", + "pos": "名詞", + "pn": -0.617843 + }, + { + "surface": "特筆大書", + "readging": "とくひつたいしょ", + "pos": "名詞", + "pn": -0.617852 + }, + { + "surface": "耳擦り", + "readging": "みみこすり", + "pos": "名詞", + "pn": -0.617884 + }, + { + "surface": "くだくだ", + "readging": "くだくだ", + "pos": "副詞", + "pn": -0.617891 + }, + { + "surface": "面体", + "readging": "めんてい", + "pos": "名詞", + "pn": -0.617905 + }, + { + "surface": "屑籠", + "readging": "くずかご", + "pos": "名詞", + "pn": -0.617909 + }, + { + "surface": "斗掻", + "readging": "とかき", + "pos": "名詞", + "pn": -0.617919 + }, + { + "surface": "虜", + "readging": "とりこ", + "pos": "名詞", + "pn": -0.618023 + }, + { + "surface": "分布", + "readging": "ぶんぷ", + "pos": "名詞", + "pn": -0.618028 + }, + { + "surface": "しゃぶる", + "readging": "しゃぶる", + "pos": "動詞", + "pn": -0.618033 + }, + { + "surface": "面繋", + "readging": "おもがい", + "pos": "名詞", + "pn": -0.618071 + }, + { + "surface": "にやりと", + "readging": "にやりと", + "pos": "副詞", + "pn": -0.618079 + }, + { + "surface": "底引網", + "readging": "そこびきあみ", + "pos": "名詞", + "pn": -0.618089 + }, + { + "surface": "疾呼", + "readging": "しっこ", + "pos": "名詞", + "pn": -0.618097 + }, + { + "surface": "竿秤", + "readging": "さおばかり", + "pos": "名詞", + "pn": -0.61812 + }, + { + "surface": "道すがら", + "readging": "みちすがら", + "pos": "副詞", + "pn": -0.618125 + }, + { + "surface": "出過ぎる", + "readging": "ですぎる", + "pos": "動詞", + "pn": -0.61813 + }, + { + "surface": "捏取", + "readging": "こねどり", + "pos": "名詞", + "pn": -0.618148 + }, + { + "surface": "妄語", + "readging": "もうご", + "pos": "名詞", + "pn": -0.618149 + }, + { + "surface": "牢番", + "readging": "ろうばん", + "pos": "名詞", + "pn": -0.618169 + }, + { + "surface": "屏風倒し", + "readging": "びょうぶだおし", + "pos": "名詞", + "pn": -0.618175 + }, + { + "surface": "連弾", + "readging": "れんだん", + "pos": "名詞", + "pn": -0.61819 + }, + { + "surface": "闇討", + "readging": "やみうち", + "pos": "名詞", + "pn": -0.618204 + }, + { + "surface": "引連れる", + "readging": "ひきつれる", + "pos": "動詞", + "pn": -0.618245 + }, + { + "surface": "遺命", + "readging": "いめい", + "pos": "名詞", + "pn": -0.618247 + }, + { + "surface": "渦中", + "readging": "かちゅう", + "pos": "名詞", + "pn": -0.618262 + }, + { + "surface": "ざらざら", + "readging": "ざらざら", + "pos": "副詞", + "pn": -0.618294 + }, + { + "surface": "寝入る", + "readging": "ねいる", + "pos": "動詞", + "pn": -0.618298 + }, + { + "surface": "区", + "readging": "く", + "pos": "名詞", + "pn": -0.618372 + }, + { + "surface": "坑道", + "readging": "こうどう", + "pos": "名詞", + "pn": -0.618388 + }, + { + "surface": "膿瘍", + "readging": "のうよう", + "pos": "名詞", + "pn": -0.618392 + }, + { + "surface": "仕置", + "readging": "しおき", + "pos": "名詞", + "pn": -0.618454 + }, + { + "surface": "ほぐす", + "readging": "ほぐす", + "pos": "動詞", + "pn": -0.618479 + }, + { + "surface": "養子", + "readging": "ようし", + "pos": "名詞", + "pn": -0.618489 + }, + { + "surface": "護謨長", + "readging": "ゴムなが", + "pos": "名詞", + "pn": -0.618492 + }, + { + "surface": "瘰癧", + "readging": "るいれき", + "pos": "名詞", + "pn": -0.618515 + }, + { + "surface": "枡落し", + "readging": "ますおとし", + "pos": "名詞", + "pn": -0.618519 + }, + { + "surface": "返る", + "readging": "かえる", + "pos": "動詞", + "pn": -0.618528 + }, + { + "surface": "瓦斯糸", + "readging": "ガスいと", + "pos": "名詞", + "pn": -0.618536 + }, + { + "surface": "格闘", + "readging": "かくとう", + "pos": "名詞", + "pn": -0.618552 + }, + { + "surface": "地表", + "readging": "ちひょう", + "pos": "名詞", + "pn": -0.618636 + }, + { + "surface": "棟", + "readging": "むね", + "pos": "名詞", + "pn": -0.618652 + }, + { + "surface": "脇", + "readging": "わき", + "pos": "名詞", + "pn": -0.618675 + }, + { + "surface": "孤独", + "readging": "こどく", + "pos": "名詞", + "pn": -0.618697 + }, + { + "surface": "虫螻", + "readging": "むしけら", + "pos": "名詞", + "pn": -0.618699 + }, + { + "surface": "起請", + "readging": "きしょう", + "pos": "名詞", + "pn": -0.618711 + }, + { + "surface": "筋骨", + "readging": "すじぼね", + "pos": "名詞", + "pn": -0.618798 + }, + { + "surface": "地割れ", + "readging": "じわれ", + "pos": "名詞", + "pn": -0.618926 + }, + { + "surface": "撮み出す", + "readging": "つまみだす", + "pos": "動詞", + "pn": -0.618954 + }, + { + "surface": "頭部", + "readging": "とうぶ", + "pos": "名詞", + "pn": -0.61896 + }, + { + "surface": "内外", + "readging": "ないがい", + "pos": "名詞", + "pn": -0.618977 + }, + { + "surface": "飴", + "readging": "あめ", + "pos": "名詞", + "pn": -0.619004 + }, + { + "surface": "くっつく", + "readging": "くっつく", + "pos": "動詞", + "pn": -0.61901 + }, + { + "surface": "海辺", + "readging": "かいへん", + "pos": "名詞", + "pn": -0.61902 + }, + { + "surface": "類似", + "readging": "るいじ", + "pos": "名詞", + "pn": -0.61902 + }, + { + "surface": "消ゴム", + "readging": "けしゴム", + "pos": "名詞", + "pn": -0.61904 + }, + { + "surface": "使い捨て", + "readging": "つかいすて", + "pos": "名詞", + "pn": -0.619041 + }, + { + "surface": "夕まぐれ", + "readging": "ゆうまぐれ", + "pos": "名詞", + "pn": -0.619042 + }, + { + "surface": "官庁", + "readging": "かんちょう", + "pos": "名詞", + "pn": -0.619055 + }, + { + "surface": "割に", + "readging": "わりに", + "pos": "副詞", + "pn": -0.619062 + }, + { + "surface": "浅茅が原", + "readging": "あさぢがはら", + "pos": "名詞", + "pn": -0.619114 + }, + { + "surface": "装弾", + "readging": "そうだん", + "pos": "名詞", + "pn": -0.619124 + }, + { + "surface": "面積", + "readging": "めんせき", + "pos": "名詞", + "pn": -0.619126 + }, + { + "surface": "策する", + "readging": "さくする", + "pos": "動詞", + "pn": -0.619135 + }, + { + "surface": "泥中", + "readging": "でいちゅう", + "pos": "名詞", + "pn": -0.619187 + }, + { + "surface": "斯く", + "readging": "かく", + "pos": "副詞", + "pn": -0.619195 + }, + { + "surface": "装", + "readging": "そう", + "pos": "名詞", + "pn": -0.619199 + }, + { + "surface": "上下", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.619241 + }, + { + "surface": "蹴違える", + "readging": "けちがえる", + "pos": "動詞", + "pn": -0.619243 + }, + { + "surface": "襟刳", + "readging": "えりぐり", + "pos": "名詞", + "pn": -0.619259 + }, + { + "surface": "目刺", + "readging": "めざし", + "pos": "名詞", + "pn": -0.619351 + }, + { + "surface": "口出し", + "readging": "くちだし", + "pos": "名詞", + "pn": -0.619376 + }, + { + "surface": "総説", + "readging": "そうせつ", + "pos": "名詞", + "pn": -0.61938 + }, + { + "surface": "初日", + "readging": "はつび", + "pos": "名詞", + "pn": -0.619426 + }, + { + "surface": "環", + "readging": "たまき", + "pos": "名詞", + "pn": -0.619471 + }, + { + "surface": "樽", + "readging": "たる", + "pos": "名詞", + "pn": -0.619472 + }, + { + "surface": "徹頭徹尾", + "readging": "てっとうてつび", + "pos": "副詞", + "pn": -0.619477 + }, + { + "surface": "硯蓋", + "readging": "すずりぶた", + "pos": "名詞", + "pn": -0.619483 + }, + { + "surface": "懸隔てる", + "readging": "かけへだてる", + "pos": "動詞", + "pn": -0.619485 + }, + { + "surface": "団塊", + "readging": "だんかい", + "pos": "名詞", + "pn": -0.619491 + }, + { + "surface": "澄", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.619505 + }, + { + "surface": "置炬燵", + "readging": "おきごたつ", + "pos": "名詞", + "pn": -0.619511 + }, + { + "surface": "年明け", + "readging": "ねんあけ", + "pos": "名詞", + "pn": -0.619518 + }, + { + "surface": "不意", + "readging": "ふい", + "pos": "名詞", + "pn": -0.619596 + }, + { + "surface": "俗語", + "readging": "ぞくご", + "pos": "名詞", + "pn": -0.619625 + }, + { + "surface": "ちょこんと", + "readging": "ちょこんと", + "pos": "副詞", + "pn": -0.619628 + }, + { + "surface": "茶目", + "readging": "ちゃめ", + "pos": "名詞", + "pn": -0.61963 + }, + { + "surface": "打擲", + "readging": "ちょうちゃく", + "pos": "名詞", + "pn": -0.619638 + }, + { + "surface": "誤解", + "readging": "ごかい", + "pos": "名詞", + "pn": -0.619669 + }, + { + "surface": "枯骨", + "readging": "ここつ", + "pos": "名詞", + "pn": -0.619678 + }, + { + "surface": "溝鼠", + "readging": "どぶねずみ", + "pos": "名詞", + "pn": -0.619729 + }, + { + "surface": "まめつ【摩滅", + "readging": "まめつ", + "pos": "名詞", + "pn": -0.619777 + }, + { + "surface": "瞞着", + "readging": "まんちゃく", + "pos": "名詞", + "pn": -0.619827 + }, + { + "surface": "独居", + "readging": "どっきょ", + "pos": "名詞", + "pn": -0.619847 + }, + { + "surface": "輿脇", + "readging": "こしわき", + "pos": "名詞", + "pn": -0.619917 + }, + { + "surface": "漏洩", + "readging": "ろうえい", + "pos": "名詞", + "pn": -0.619919 + }, + { + "surface": "土竜", + "readging": "もぐら", + "pos": "名詞", + "pn": -0.61993 + }, + { + "surface": "脈絡", + "readging": "みゃくらく", + "pos": "名詞", + "pn": -0.619948 + }, + { + "surface": "地帯", + "readging": "ちたい", + "pos": "名詞", + "pn": -0.619958 + }, + { + "surface": "団子", + "readging": "だんご", + "pos": "名詞", + "pn": -0.619962 + }, + { + "surface": "ぱちんこ", + "readging": "ぱちんこ", + "pos": "名詞", + "pn": -0.61998 + }, + { + "surface": "吹っ切る", + "readging": "ふっきる", + "pos": "動詞", + "pn": -0.619983 + }, + { + "surface": "噴煙", + "readging": "ふんえん", + "pos": "名詞", + "pn": -0.619993 + }, + { + "surface": "五分", + "readging": "ごぶ", + "pos": "名詞", + "pn": -0.619994 + }, + { + "surface": "一物", + "readging": "いちもつ", + "pos": "名詞", + "pn": -0.620023 + }, + { + "surface": "博奕", + "readging": "ばくえき", + "pos": "名詞", + "pn": -0.620058 + }, + { + "surface": "昆布", + "readging": "こんぶ", + "pos": "名詞", + "pn": -0.620072 + }, + { + "surface": "シャツ", + "readging": "シャツ", + "pos": "名詞", + "pn": -0.620107 + }, + { + "surface": "透き間風", + "readging": "すきまかぜ", + "pos": "名詞", + "pn": -0.620109 + }, + { + "surface": "滑らす", + "readging": "すべらす", + "pos": "動詞", + "pn": -0.620167 + }, + { + "surface": "五右衛門風呂", + "readging": "ごえもんぶろ", + "pos": "名詞", + "pn": -0.620169 + }, + { + "surface": "素描", + "readging": "そびょう", + "pos": "名詞", + "pn": -0.620183 + }, + { + "surface": "不審", + "readging": "ふしん", + "pos": "名詞", + "pn": -0.620243 + }, + { + "surface": "日溜り", + "readging": "ひだまり", + "pos": "名詞", + "pn": -0.620243 + }, + { + "surface": "痩身", + "readging": "そうしん", + "pos": "名詞", + "pn": -0.620394 + }, + { + "surface": "螽斯", + "readging": "きりぎりす", + "pos": "名詞", + "pn": -0.620443 + }, + { + "surface": "逆しま", + "readging": "さかしま", + "pos": "名詞", + "pn": -0.620475 + }, + { + "surface": "馬鹿面", + "readging": "ばかづら", + "pos": "名詞", + "pn": -0.620491 + }, + { + "surface": "すっぽり", + "readging": "すっぽり", + "pos": "副詞", + "pn": -0.620539 + }, + { + "surface": "蛇足", + "readging": "だそく", + "pos": "名詞", + "pn": -0.620582 + }, + { + "surface": "一己", + "readging": "いっこ", + "pos": "名詞", + "pn": -0.620584 + }, + { + "surface": "退ける", + "readging": "しりぞける", + "pos": "動詞", + "pn": -0.620586 + }, + { + "surface": "駆る", + "readging": "かる", + "pos": "動詞", + "pn": -0.620607 + }, + { + "surface": "添水", + "readging": "そうず", + "pos": "名詞", + "pn": -0.620618 + }, + { + "surface": "化生", + "readging": "けしょう", + "pos": "名詞", + "pn": -0.620646 + }, + { + "surface": "酷評", + "readging": "こくひょう", + "pos": "名詞", + "pn": -0.620656 + }, + { + "surface": "怪獣", + "readging": "かいじゅう", + "pos": "名詞", + "pn": -0.620701 + }, + { + "surface": "心持", + "readging": "こころもち", + "pos": "名詞", + "pn": -0.620775 + }, + { + "surface": "高架", + "readging": "こうか", + "pos": "名詞", + "pn": -0.620784 + }, + { + "surface": "鉄線", + "readging": "てっせん", + "pos": "名詞", + "pn": -0.620833 + }, + { + "surface": "絵羽羽織", + "readging": "えばはおり", + "pos": "名詞", + "pn": -0.620878 + }, + { + "surface": "厳命", + "readging": "げんめい", + "pos": "名詞", + "pn": -0.620884 + }, + { + "surface": "運転", + "readging": "うんてん", + "pos": "名詞", + "pn": -0.620912 + }, + { + "surface": "室咲き", + "readging": "むろざき", + "pos": "名詞", + "pn": -0.620923 + }, + { + "surface": "眇", + "readging": "すがめ", + "pos": "名詞", + "pn": -0.620951 + }, + { + "surface": "醜悪", + "readging": "しゅうあく", + "pos": "名詞", + "pn": -0.620954 + }, + { + "surface": "従者", + "readging": "じゅうしゃ", + "pos": "名詞", + "pn": -0.620954 + }, + { + "surface": "干鯛", + "readging": "ひだい", + "pos": "名詞", + "pn": -0.620981 + }, + { + "surface": "岩窟", + "readging": "がんくつ", + "pos": "名詞", + "pn": -0.62099 + }, + { + "surface": "胸水", + "readging": "きょうすい", + "pos": "名詞", + "pn": -0.621024 + }, + { + "surface": "方面", + "readging": "ほうめん", + "pos": "名詞", + "pn": -0.621031 + }, + { + "surface": "拙稿", + "readging": "せっこう", + "pos": "名詞", + "pn": -0.621039 + }, + { + "surface": "個個", + "readging": "ここ", + "pos": "名詞", + "pn": -0.621041 + }, + { + "surface": "紛らかす", + "readging": "まぎらかす", + "pos": "動詞", + "pn": -0.621045 + }, + { + "surface": "通行", + "readging": "つうこう", + "pos": "名詞", + "pn": -0.621046 + }, + { + "surface": "抑鬱症", + "readging": "よくうつしょう", + "pos": "名詞", + "pn": -0.621126 + }, + { + "surface": "パジャマ", + "readging": "パジャマ", + "pos": "名詞", + "pn": -0.621154 + }, + { + "surface": "由", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.621155 + }, + { + "surface": "蹴立てる", + "readging": "けたてる", + "pos": "動詞", + "pn": -0.621177 + }, + { + "surface": "端綱", + "readging": "はづな", + "pos": "名詞", + "pn": -0.621197 + }, + { + "surface": "千枚通し", + "readging": "せんまいどおし", + "pos": "名詞", + "pn": -0.621282 + }, + { + "surface": "防寒", + "readging": "ぼうかん", + "pos": "名詞", + "pn": -0.621284 + }, + { + "surface": "ささくれる", + "readging": "ささくれる", + "pos": "動詞", + "pn": -0.621344 + }, + { + "surface": "笑み割れる", + "readging": "えみわれる", + "pos": "動詞", + "pn": -0.621379 + }, + { + "surface": "隆起", + "readging": "りゅうき", + "pos": "名詞", + "pn": -0.621385 + }, + { + "surface": "鹿子", + "readging": "かのこ", + "pos": "名詞", + "pn": -0.621404 + }, + { + "surface": "ひねる", + "readging": "ひねる", + "pos": "動詞", + "pn": -0.621501 + }, + { + "surface": "糾う", + "readging": "あざなう", + "pos": "動詞", + "pn": -0.62152 + }, + { + "surface": "弾痕", + "readging": "だんこん", + "pos": "名詞", + "pn": -0.621541 + }, + { + "surface": "五目鮨", + "readging": "ごもくずし", + "pos": "名詞", + "pn": -0.621571 + }, + { + "surface": "ポスター", + "readging": "ポスターカラー", + "pos": "名詞", + "pn": -0.621606 + }, + { + "surface": "暑気", + "readging": "しょき", + "pos": "名詞", + "pn": -0.621623 + }, + { + "surface": "書画", + "readging": "しょが", + "pos": "名詞", + "pn": -0.621666 + }, + { + "surface": "袖乞い", + "readging": "そでごい", + "pos": "名詞", + "pn": -0.621692 + }, + { + "surface": "尖り顔", + "readging": "とがりがお", + "pos": "名詞", + "pn": -0.621701 + }, + { + "surface": "慮る", + "readging": "おもんぱかる", + "pos": "動詞", + "pn": -0.621709 + }, + { + "surface": "鳩目", + "readging": "はとめ", + "pos": "名詞", + "pn": -0.621726 + }, + { + "surface": "平土間", + "readging": "ひらどま", + "pos": "名詞", + "pn": -0.621738 + }, + { + "surface": "寝", + "readging": "しん", + "pos": "名詞", + "pn": -0.621738 + }, + { + "surface": "厳令", + "readging": "げんれい", + "pos": "名詞", + "pn": -0.621775 + }, + { + "surface": "濁水", + "readging": "だくすい", + "pos": "名詞", + "pn": -0.621801 + }, + { + "surface": "下足", + "readging": "げそく", + "pos": "名詞", + "pn": -0.621818 + }, + { + "surface": "挽肉", + "readging": "ひきにく", + "pos": "名詞", + "pn": -0.621842 + }, + { + "surface": "金泥", + "readging": "こんでい", + "pos": "名詞", + "pn": -0.621859 + }, + { + "surface": "膳", + "readging": "ぜん", + "pos": "名詞", + "pn": -0.62186 + }, + { + "surface": "近辺", + "readging": "きんぺん", + "pos": "名詞", + "pn": -0.621871 + }, + { + "surface": "釜敷", + "readging": "かましき", + "pos": "名詞", + "pn": -0.621905 + }, + { + "surface": "偏頗", + "readging": "へんぱ", + "pos": "名詞", + "pn": -0.621959 + }, + { + "surface": "着手", + "readging": "ちゃくしゅ", + "pos": "名詞", + "pn": -0.621967 + }, + { + "surface": "徒", + "readging": "あだ", + "pos": "名詞", + "pn": -0.621972 + }, + { + "surface": "要求", + "readging": "ようきゅう", + "pos": "名詞", + "pn": -0.621983 + }, + { + "surface": "点滴", + "readging": "てんてき", + "pos": "名詞", + "pn": -0.622015 + }, + { + "surface": "染み込む", + "readging": "しみこむ", + "pos": "動詞", + "pn": -0.622034 + }, + { + "surface": "斤目", + "readging": "きんめ", + "pos": "名詞", + "pn": -0.622066 + }, + { + "surface": "差替え", + "readging": "さしかえ", + "pos": "名詞", + "pn": -0.622074 + }, + { + "surface": "あばら屋", + "readging": "あばらや", + "pos": "名詞", + "pn": -0.622139 + }, + { + "surface": "来示", + "readging": "らいじ", + "pos": "名詞", + "pn": -0.622193 + }, + { + "surface": "散水", + "readging": "さんすい", + "pos": "名詞", + "pn": -0.622204 + }, + { + "surface": "諸共", + "readging": "もろとも", + "pos": "名詞", + "pn": -0.622206 + }, + { + "surface": "歪", + "readging": "ひずみ", + "pos": "名詞", + "pn": -0.622219 + }, + { + "surface": "ぱくぱく", + "readging": "ぱくぱく", + "pos": "副詞", + "pn": -0.622309 + }, + { + "surface": "ごろた", + "readging": "ごろた", + "pos": "名詞", + "pn": -0.622313 + }, + { + "surface": "素襖", + "readging": "すおう", + "pos": "名詞", + "pn": -0.622337 + }, + { + "surface": "胎児", + "readging": "たいじ", + "pos": "名詞", + "pn": -0.62234 + }, + { + "surface": "ふと", + "readging": "ふと", + "pos": "副詞", + "pn": -0.622357 + }, + { + "surface": "打豆", + "readging": "うちまめ", + "pos": "名詞", + "pn": -0.62236 + }, + { + "surface": "訴訟", + "readging": "そしょう", + "pos": "名詞", + "pn": -0.622455 + }, + { + "surface": "根本", + "readging": "こんぽん", + "pos": "名詞", + "pn": -0.622464 + }, + { + "surface": "蠍", + "readging": "さそり", + "pos": "名詞", + "pn": -0.622477 + }, + { + "surface": "餅搗き", + "readging": "もちつき", + "pos": "名詞", + "pn": -0.622537 + }, + { + "surface": "ボルドー液", + "readging": "ボルドーえき", + "pos": "名詞", + "pn": -0.622541 + }, + { + "surface": "斧", + "readging": "おの", + "pos": "名詞", + "pn": -0.62256 + }, + { + "surface": "雇", + "readging": "こ", + "pos": "名詞", + "pn": -0.622576 + }, + { + "surface": "ちっと", + "readging": "ちっとやそっと", + "pos": "副詞", + "pn": -0.622581 + }, + { + "surface": "流弾", + "readging": "ながれだま", + "pos": "名詞", + "pn": -0.622594 + }, + { + "surface": "果汁", + "readging": "かじゅう", + "pos": "名詞", + "pn": -0.622653 + }, + { + "surface": "松明", + "readging": "たいまつ", + "pos": "名詞", + "pn": -0.62267 + }, + { + "surface": "茶碗", + "readging": "ちゃわん", + "pos": "名詞", + "pn": -0.622684 + }, + { + "surface": "黄水", + "readging": "おうすい", + "pos": "名詞", + "pn": -0.622724 + }, + { + "surface": "揃える", + "readging": "そろえる", + "pos": "動詞", + "pn": -0.622735 + }, + { + "surface": "海髪", + "readging": "おごのり", + "pos": "名詞", + "pn": -0.622769 + }, + { + "surface": "重大", + "readging": "じゅうだい", + "pos": "名詞", + "pn": -0.622797 + }, + { + "surface": "犬", + "readging": "いぬ", + "pos": "名詞", + "pn": -0.622814 + }, + { + "surface": "来訪", + "readging": "らいほう", + "pos": "名詞", + "pn": -0.62283 + }, + { + "surface": "抜手", + "readging": "ぬきて", + "pos": "名詞", + "pn": -0.622848 + }, + { + "surface": "花茎", + "readging": "かけい", + "pos": "名詞", + "pn": -0.622859 + }, + { + "surface": "平地", + "readging": "へいち", + "pos": "名詞", + "pn": -0.622906 + }, + { + "surface": "石蓴", + "readging": "あおさ", + "pos": "名詞", + "pn": -0.622937 + }, + { + "surface": "待針", + "readging": "まちばり", + "pos": "名詞", + "pn": -0.622938 + }, + { + "surface": "しん薯", + "readging": "しんじょ", + "pos": "名詞", + "pn": -0.622948 + }, + { + "surface": "苦汁", + "readging": "にがり", + "pos": "名詞", + "pn": -0.622952 + }, + { + "surface": "汽車", + "readging": "きしゃ", + "pos": "名詞", + "pn": -0.62296 + }, + { + "surface": "掬う", + "readging": "すくう", + "pos": "動詞", + "pn": -0.622964 + }, + { + "surface": "飛散", + "readging": "ひさん", + "pos": "名詞", + "pn": -0.622974 + }, + { + "surface": "膀胱", + "readging": "ぼうこう", + "pos": "名詞", + "pn": -0.623019 + }, + { + "surface": "衰退", + "readging": "すいたい", + "pos": "名詞", + "pn": -0.623039 + }, + { + "surface": "奉る", + "readging": "たてまつる", + "pos": "動詞", + "pn": -0.623058 + }, + { + "surface": "唐鋤", + "readging": "からすき", + "pos": "名詞", + "pn": -0.623124 + }, + { + "surface": "赤味噌", + "readging": "あかみそ", + "pos": "名詞", + "pn": -0.623143 + }, + { + "surface": "要事", + "readging": "ようじ", + "pos": "名詞", + "pn": -0.623177 + }, + { + "surface": "かき餅", + "readging": "かきもち", + "pos": "名詞", + "pn": -0.623202 + }, + { + "surface": "切れ口", + "readging": "きれくち", + "pos": "名詞", + "pn": -0.62322 + }, + { + "surface": "炭素", + "readging": "たんそ", + "pos": "名詞", + "pn": -0.623251 + }, + { + "surface": "多量", + "readging": "たりょう", + "pos": "名詞", + "pn": -0.623276 + }, + { + "surface": "標本", + "readging": "ひょうほん", + "pos": "名詞", + "pn": -0.623311 + }, + { + "surface": "石綿", + "readging": "いしわた", + "pos": "名詞", + "pn": -0.623334 + }, + { + "surface": "丁半", + "readging": "ちょうはん", + "pos": "名詞", + "pn": -0.623357 + }, + { + "surface": "地蜘蛛", + "readging": "じぐも", + "pos": "名詞", + "pn": -0.623424 + }, + { + "surface": "看板", + "readging": "かんばん", + "pos": "名詞", + "pn": -0.623428 + }, + { + "surface": "胡麻塩", + "readging": "ごましお", + "pos": "名詞", + "pn": -0.623446 + }, + { + "surface": "袈裟懸け", + "readging": "けさがけ", + "pos": "名詞", + "pn": -0.623462 + }, + { + "surface": "内股", + "readging": "うちまた", + "pos": "名詞", + "pn": -0.623539 + }, + { + "surface": "火手", + "readging": "かしゅ", + "pos": "名詞", + "pn": -0.623542 + }, + { + "surface": "毬", + "readging": "いが", + "pos": "名詞", + "pn": -0.623547 + }, + { + "surface": "追剥", + "readging": "おいはぎ", + "pos": "名詞", + "pn": -0.623579 + }, + { + "surface": "曲ろく", + "readging": "きょくろく", + "pos": "名詞", + "pn": -0.623607 + }, + { + "surface": "泥縄", + "readging": "どろなわ", + "pos": "名詞", + "pn": -0.623619 + }, + { + "surface": "武者振り", + "readging": "むしゃぶり", + "pos": "名詞", + "pn": -0.623625 + }, + { + "surface": "礎", + "readging": "そ", + "pos": "名詞", + "pn": -0.623626 + }, + { + "surface": "孤舟", + "readging": "こしゅう", + "pos": "名詞", + "pn": -0.623652 + }, + { + "surface": "片方", + "readging": "かたえ", + "pos": "名詞", + "pn": -0.623661 + }, + { + "surface": "終に", + "readging": "ついに", + "pos": "副詞", + "pn": -0.623669 + }, + { + "surface": "夏隣", + "readging": "なつどなり", + "pos": "名詞", + "pn": -0.623718 + }, + { + "surface": "四囲", + "readging": "しい", + "pos": "名詞", + "pn": -0.623739 + }, + { + "surface": "凛冽", + "readging": "りんれつ", + "pos": "名詞", + "pn": -0.623749 + }, + { + "surface": "凍みる", + "readging": "しみる", + "pos": "動詞", + "pn": -0.623749 + }, + { + "surface": "賊する", + "readging": "ぞくする", + "pos": "動詞", + "pn": -0.623813 + }, + { + "surface": "箸休め", + "readging": "はしやすめ", + "pos": "名詞", + "pn": -0.62384 + }, + { + "surface": "回旋", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.623854 + }, + { + "surface": "俗世間", + "readging": "ぞくせけん", + "pos": "名詞", + "pn": -0.623889 + }, + { + "surface": "不義", + "readging": "ふぎ", + "pos": "名詞", + "pn": -0.623913 + }, + { + "surface": "服する", + "readging": "ふくする", + "pos": "動詞", + "pn": -0.623937 + }, + { + "surface": "絡み付く", + "readging": "からみつく", + "pos": "動詞", + "pn": -0.62395 + }, + { + "surface": "草枕", + "readging": "くさまくら", + "pos": "名詞", + "pn": -0.62395 + }, + { + "surface": "鹿子餅", + "readging": "かのこもち", + "pos": "名詞", + "pn": -0.624003 + }, + { + "surface": "人世", + "readging": "じんせい", + "pos": "名詞", + "pn": -0.624009 + }, + { + "surface": "切水", + "readging": "きりみず", + "pos": "名詞", + "pn": -0.624023 + }, + { + "surface": "ずるける", + "readging": "ずるける", + "pos": "動詞", + "pn": -0.624025 + }, + { + "surface": "片端", + "readging": "かたはし", + "pos": "名詞", + "pn": -0.624033 + }, + { + "surface": "代り番こ", + "readging": "かわりばんこ", + "pos": "名詞", + "pn": -0.624054 + }, + { + "surface": "爪皮", + "readging": "つまかわ", + "pos": "名詞", + "pn": -0.62406 + }, + { + "surface": "提灯", + "readging": "ちょうちん", + "pos": "名詞", + "pn": -0.624103 + }, + { + "surface": "碾割り", + "readging": "ひきわり", + "pos": "名詞", + "pn": -0.624119 + }, + { + "surface": "定期", + "readging": "ていき", + "pos": "名詞", + "pn": -0.62412 + }, + { + "surface": "ソファー", + "readging": "ソファー", + "pos": "名詞", + "pn": -0.62417 + }, + { + "surface": "有様", + "readging": "ありさま", + "pos": "名詞", + "pn": -0.624192 + }, + { + "surface": "金釘", + "readging": "かなくぎ", + "pos": "名詞", + "pn": -0.624203 + }, + { + "surface": "楔状", + "readging": "けつじょう", + "pos": "名詞", + "pn": -0.624207 + }, + { + "surface": "童", + "readging": "わらんべ", + "pos": "名詞", + "pn": -0.624212 + }, + { + "surface": "幻", + "readging": "まぼろし", + "pos": "名詞", + "pn": -0.624258 + }, + { + "surface": "具", + "readging": "ぐ", + "pos": "名詞", + "pn": -0.624258 + }, + { + "surface": "仮眠", + "readging": "かみん", + "pos": "名詞", + "pn": -0.624259 + }, + { + "surface": "繰返す", + "readging": "くりかえす", + "pos": "動詞", + "pn": -0.624283 + }, + { + "surface": "繁閑", + "readging": "はんかん", + "pos": "名詞", + "pn": -0.624292 + }, + { + "surface": "引率", + "readging": "いんそつ", + "pos": "名詞", + "pn": -0.624327 + }, + { + "surface": "雨傘", + "readging": "あまがさ", + "pos": "名詞", + "pn": -0.624349 + }, + { + "surface": "滞京", + "readging": "たいきょう", + "pos": "名詞", + "pn": -0.624356 + }, + { + "surface": "渋皮", + "readging": "しぶかわ", + "pos": "名詞", + "pn": -0.624369 + }, + { + "surface": "半纏", + "readging": "はんてん", + "pos": "名詞", + "pn": -0.62443 + }, + { + "surface": "プレッシング", + "readging": "プレッシング", + "pos": "名詞", + "pn": -0.624492 + }, + { + "surface": "予防", + "readging": "よぼう", + "pos": "名詞", + "pn": -0.624505 + }, + { + "surface": "会合", + "readging": "かいごう", + "pos": "名詞", + "pn": -0.624505 + }, + { + "surface": "水沫", + "readging": "すいまつ", + "pos": "名詞", + "pn": -0.624565 + }, + { + "surface": "盗人", + "readging": "ぬすびと", + "pos": "名詞", + "pn": -0.624615 + }, + { + "surface": "列車", + "readging": "れっしゃ", + "pos": "名詞", + "pn": -0.624632 + }, + { + "surface": "哭する", + "readging": "こくする", + "pos": "動詞", + "pn": -0.624639 + }, + { + "surface": "絶", + "readging": "ぜつ", + "pos": "名詞", + "pn": -0.624667 + }, + { + "surface": "狐付き", + "readging": "きつねつき", + "pos": "名詞", + "pn": -0.624691 + }, + { + "surface": "焼金", + "readging": "やきがね", + "pos": "名詞", + "pn": -0.624762 + }, + { + "surface": "芥", + "readging": "あくた", + "pos": "名詞", + "pn": -0.624771 + }, + { + "surface": "雨覆い", + "readging": "あまおおい", + "pos": "名詞", + "pn": -0.62478 + }, + { + "surface": "長刀酸漿", + "readging": "なぎなたほおずき", + "pos": "名詞", + "pn": -0.6248 + }, + { + "surface": "凡俗", + "readging": "ぼんぞく", + "pos": "名詞", + "pn": -0.624834 + }, + { + "surface": "糖", + "readging": "とう", + "pos": "名詞", + "pn": -0.624836 + }, + { + "surface": "たくしあげる", + "readging": "たくしあげる", + "pos": "動詞", + "pn": -0.624858 + }, + { + "surface": "人足", + "readging": "ひとあし", + "pos": "名詞", + "pn": -0.624883 + }, + { + "surface": "犠牲", + "readging": "ぎせい", + "pos": "名詞", + "pn": -0.624921 + }, + { + "surface": "哀れ", + "readging": "あわれ", + "pos": "名詞", + "pn": -0.624953 + }, + { + "surface": "娘", + "readging": "むすめ", + "pos": "名詞", + "pn": -0.624978 + }, + { + "surface": "麦稈真田", + "readging": "ばっかんさなだ", + "pos": "名詞", + "pn": -0.624992 + }, + { + "surface": "生理", + "readging": "せいり", + "pos": "名詞", + "pn": -0.625001 + }, + { + "surface": "下位", + "readging": "かい", + "pos": "名詞", + "pn": -0.625033 + }, + { + "surface": "差別", + "readging": "さべつ", + "pos": "名詞", + "pn": -0.625034 + }, + { + "surface": "漂わす", + "readging": "ただよわす", + "pos": "動詞", + "pn": -0.625062 + }, + { + "surface": "一つ穴", + "readging": "ひとつあな", + "pos": "名詞", + "pn": -0.625125 + }, + { + "surface": "墨壺", + "readging": "すみつぼ", + "pos": "名詞", + "pn": -0.625127 + }, + { + "surface": "図形", + "readging": "ずけい", + "pos": "名詞", + "pn": -0.625157 + }, + { + "surface": "竈", + "readging": "かまど", + "pos": "名詞", + "pn": -0.625171 + }, + { + "surface": "茸", + "readging": "きのこ", + "pos": "名詞", + "pn": -0.625191 + }, + { + "surface": "疣", + "readging": "いぼ", + "pos": "名詞", + "pn": -0.625223 + }, + { + "surface": "摩する", + "readging": "まする", + "pos": "動詞", + "pn": -0.62523 + }, + { + "surface": "取広げる", + "readging": "とりひろげる", + "pos": "動詞", + "pn": -0.625252 + }, + { + "surface": "根から", + "readging": "ねから", + "pos": "副詞", + "pn": -0.625318 + }, + { + "surface": "法定", + "readging": "ほうてい", + "pos": "名詞", + "pn": -0.625323 + }, + { + "surface": "解く", + "readging": "とく", + "pos": "動詞", + "pn": -0.625363 + }, + { + "surface": "擱筆", + "readging": "かくひつ", + "pos": "名詞", + "pn": -0.625429 + }, + { + "surface": "気抜け", + "readging": "きぬけ", + "pos": "名詞", + "pn": -0.625432 + }, + { + "surface": "染め飛白", + "readging": "そめがすり", + "pos": "名詞", + "pn": -0.625436 + }, + { + "surface": "糧食", + "readging": "りょうしょく", + "pos": "名詞", + "pn": -0.62547 + }, + { + "surface": "総攬", + "readging": "そうらん", + "pos": "名詞", + "pn": -0.625471 + }, + { + "surface": "粗放", + "readging": "そほう", + "pos": "名詞", + "pn": -0.625511 + }, + { + "surface": "山賊", + "readging": "さんぞく", + "pos": "名詞", + "pn": -0.625548 + }, + { + "surface": "かまける", + "readging": "かまける", + "pos": "動詞", + "pn": -0.625584 + }, + { + "surface": "青黴", + "readging": "あおかび", + "pos": "名詞", + "pn": -0.625586 + }, + { + "surface": "逆蜻蛉", + "readging": "さかとんぼ", + "pos": "名詞", + "pn": -0.625591 + }, + { + "surface": "陰影", + "readging": "いんえい", + "pos": "名詞", + "pn": -0.625622 + }, + { + "surface": "ぽっちり", + "readging": "ぽっちり", + "pos": "副詞", + "pn": -0.625672 + }, + { + "surface": "際", + "readging": "さい", + "pos": "名詞", + "pn": -0.6257 + }, + { + "surface": "集落", + "readging": "しゅうらく", + "pos": "名詞", + "pn": -0.625726 + }, + { + "surface": "嘔吐", + "readging": "おうと", + "pos": "名詞", + "pn": -0.625743 + }, + { + "surface": "臭気", + "readging": "しゅうき", + "pos": "名詞", + "pn": -0.625768 + }, + { + "surface": "馬蠅", + "readging": "うまばえ", + "pos": "名詞", + "pn": -0.625769 + }, + { + "surface": "三年", + "readging": "みとせ", + "pos": "名詞", + "pn": -0.625799 + }, + { + "surface": "結び", + "readging": "むすび", + "pos": "名詞", + "pn": -0.625814 + }, + { + "surface": "陵", + "readging": "りょう", + "pos": "名詞", + "pn": -0.625896 + }, + { + "surface": "拝察", + "readging": "はいさつ", + "pos": "名詞", + "pn": -0.625919 + }, + { + "surface": "奉公人", + "readging": "ほうこうにん", + "pos": "名詞", + "pn": -0.625963 + }, + { + "surface": "煎付ける", + "readging": "いりつける", + "pos": "動詞", + "pn": -0.625972 + }, + { + "surface": "捲れる", + "readging": "まくれる", + "pos": "動詞", + "pn": -0.626048 + }, + { + "surface": "複雑", + "readging": "ふくざつ", + "pos": "名詞", + "pn": -0.626082 + }, + { + "surface": "中止", + "readging": "ちゅうし", + "pos": "名詞", + "pn": -0.626118 + }, + { + "surface": "惻隠", + "readging": "そくいん", + "pos": "名詞", + "pn": -0.626189 + }, + { + "surface": "巻返し", + "readging": "まきかえし", + "pos": "名詞", + "pn": -0.626225 + }, + { + "surface": "貯水", + "readging": "ちょすい", + "pos": "名詞", + "pn": -0.626251 + }, + { + "surface": "喧嘩", + "readging": "けんか", + "pos": "名詞", + "pn": -0.626335 + }, + { + "surface": "丸丸", + "readging": "まるまる", + "pos": "副詞", + "pn": -0.626338 + }, + { + "surface": "受粉", + "readging": "じゅふん", + "pos": "名詞", + "pn": -0.626357 + }, + { + "surface": "棕櫚", + "readging": "しゅろ", + "pos": "名詞", + "pn": -0.626375 + }, + { + "surface": "鶏鳴", + "readging": "けいめい", + "pos": "名詞", + "pn": -0.626395 + }, + { + "surface": "愚見", + "readging": "ぐけん", + "pos": "名詞", + "pn": -0.626442 + }, + { + "surface": "立ちはだかる", + "readging": "たちはだかる", + "pos": "動詞", + "pn": -0.626453 + }, + { + "surface": "孺子", + "readging": "じゅし", + "pos": "名詞", + "pn": -0.626459 + }, + { + "surface": "点点", + "readging": "てんてん", + "pos": "名詞", + "pn": -0.626464 + }, + { + "surface": "入坑", + "readging": "にゅうこう", + "pos": "名詞", + "pn": -0.626487 + }, + { + "surface": "ゴンドラ", + "readging": "ゴンドラ", + "pos": "名詞", + "pn": -0.626506 + }, + { + "surface": "落潮", + "readging": "らくちょう", + "pos": "名詞", + "pn": -0.626513 + }, + { + "surface": "猥褻", + "readging": "わいせつ", + "pos": "名詞", + "pn": -0.626561 + }, + { + "surface": "道理", + "readging": "どうり", + "pos": "名詞", + "pn": -0.626593 + }, + { + "surface": "近傍", + "readging": "きんぼう", + "pos": "名詞", + "pn": -0.626639 + }, + { + "surface": "消失", + "readging": "しょうしつ", + "pos": "名詞", + "pn": -0.626641 + }, + { + "surface": "金気", + "readging": "かなけ", + "pos": "名詞", + "pn": -0.626692 + }, + { + "surface": "杣", + "readging": "そま", + "pos": "名詞", + "pn": -0.626695 + }, + { + "surface": "枢", + "readging": "すう", + "pos": "名詞", + "pn": -0.626732 + }, + { + "surface": "航行", + "readging": "こうこう", + "pos": "名詞", + "pn": -0.626767 + }, + { + "surface": "小刀細工", + "readging": "こがたなざいく", + "pos": "名詞", + "pn": -0.626771 + }, + { + "surface": "策", + "readging": "さく", + "pos": "名詞", + "pn": -0.626774 + }, + { + "surface": "紙鉄砲", + "readging": "かみでっぽう", + "pos": "名詞", + "pn": -0.626798 + }, + { + "surface": "どやどや", + "readging": "どやどや", + "pos": "副詞", + "pn": -0.626817 + }, + { + "surface": "円座", + "readging": "えんざ", + "pos": "名詞", + "pn": -0.626853 + }, + { + "surface": "鼻綱", + "readging": "はなづな", + "pos": "名詞", + "pn": -0.626877 + }, + { + "surface": "火玉", + "readging": "ひだま", + "pos": "名詞", + "pn": -0.626883 + }, + { + "surface": "分類", + "readging": "ぶんるい", + "pos": "名詞", + "pn": -0.626902 + }, + { + "surface": "虚実", + "readging": "きょじつ", + "pos": "名詞", + "pn": -0.626911 + }, + { + "surface": "落行く", + "readging": "おちゆく", + "pos": "動詞", + "pn": -0.626925 + }, + { + "surface": "負傷", + "readging": "ふしょう", + "pos": "名詞", + "pn": -0.626962 + }, + { + "surface": "落し文", + "readging": "おとしぶみ", + "pos": "名詞", + "pn": -0.626968 + }, + { + "surface": "殆ど", + "readging": "ほとんど", + "pos": "名詞", + "pn": -0.627031 + }, + { + "surface": "台詞", + "readging": "せりふ", + "pos": "名詞", + "pn": -0.627085 + }, + { + "surface": "肌守り", + "readging": "はだまもり", + "pos": "名詞", + "pn": -0.627103 + }, + { + "surface": "褄取る", + "readging": "つまどる", + "pos": "動詞", + "pn": -0.627135 + }, + { + "surface": "止めど", + "readging": "とめど", + "pos": "名詞", + "pn": -0.627199 + }, + { + "surface": "水っ洟", + "readging": "みずっぱな", + "pos": "名詞", + "pn": -0.627288 + }, + { + "surface": "凧", + "readging": "たこ", + "pos": "名詞", + "pn": -0.627304 + }, + { + "surface": "漠", + "readging": "ばく", + "pos": "名詞", + "pn": -0.627311 + }, + { + "surface": "警棒", + "readging": "けいぼう", + "pos": "名詞", + "pn": -0.62732 + }, + { + "surface": "曾祖父", + "readging": "そうそふ", + "pos": "名詞", + "pn": -0.627386 + }, + { + "surface": "もぐ", + "readging": "もぐ", + "pos": "動詞", + "pn": -0.627386 + }, + { + "surface": "気配り", + "readging": "きくばり", + "pos": "名詞", + "pn": -0.627401 + }, + { + "surface": "霞む", + "readging": "かすむ", + "pos": "動詞", + "pn": -0.627408 + }, + { + "surface": "提重", + "readging": "さげじゅう", + "pos": "名詞", + "pn": -0.627426 + }, + { + "surface": "乳腺", + "readging": "にゅうせん", + "pos": "名詞", + "pn": -0.627451 + }, + { + "surface": "得意顔", + "readging": "とくいがお", + "pos": "名詞", + "pn": -0.627453 + }, + { + "surface": "お辞儀", + "readging": "おじぎ", + "pos": "名詞", + "pn": -0.627453 + }, + { + "surface": "一揖", + "readging": "いちゆう", + "pos": "名詞", + "pn": -0.627479 + }, + { + "surface": "違反", + "readging": "いはん", + "pos": "名詞", + "pn": -0.627582 + }, + { + "surface": "枕刀", + "readging": "まくらがたな", + "pos": "名詞", + "pn": -0.627605 + }, + { + "surface": "遊歩", + "readging": "ゆうほ", + "pos": "名詞", + "pn": -0.627642 + }, + { + "surface": "風説", + "readging": "ふうせつ", + "pos": "名詞", + "pn": -0.627659 + }, + { + "surface": "受難", + "readging": "じゅなん", + "pos": "名詞", + "pn": -0.627659 + }, + { + "surface": "駕", + "readging": "が", + "pos": "名詞", + "pn": -0.627667 + }, + { + "surface": "互替り", + "readging": "かたみがわり", + "pos": "名詞", + "pn": -0.627699 + }, + { + "surface": "制式", + "readging": "せいしき", + "pos": "名詞", + "pn": -0.627742 + }, + { + "surface": "火付け", + "readging": "ひつけ", + "pos": "名詞", + "pn": -0.627757 + }, + { + "surface": "燐", + "readging": "りん", + "pos": "名詞", + "pn": -0.627797 + }, + { + "surface": "潤色", + "readging": "じゅんしょく", + "pos": "名詞", + "pn": -0.627799 + }, + { + "surface": "湯殿", + "readging": "ゆどの", + "pos": "名詞", + "pn": -0.627804 + }, + { + "surface": "鱈場蟹", + "readging": "たらばがに", + "pos": "名詞", + "pn": -0.627826 + }, + { + "surface": "だらける", + "readging": "だらける", + "pos": "動詞", + "pn": -0.627826 + }, + { + "surface": "視察", + "readging": "しさつ", + "pos": "名詞", + "pn": -0.627829 + }, + { + "surface": "閉す", + "readging": "とざす", + "pos": "動詞", + "pn": -0.627882 + }, + { + "surface": "紛える", + "readging": "まがえる", + "pos": "動詞", + "pn": -0.627882 + }, + { + "surface": "小口", + "readging": "こぐち", + "pos": "名詞", + "pn": -0.627913 + }, + { + "surface": "着座", + "readging": "ちゃくざ", + "pos": "名詞", + "pn": -0.627937 + }, + { + "surface": "夫", + "readging": "ふ", + "pos": "名詞", + "pn": -0.627953 + }, + { + "surface": "灯心", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.627981 + }, + { + "surface": "手綱", + "readging": "たづな", + "pos": "名詞", + "pn": -0.627992 + }, + { + "surface": "時", + "readging": "じ", + "pos": "名詞", + "pn": -0.628008 + }, + { + "surface": "禰宜", + "readging": "ねぎ", + "pos": "名詞", + "pn": -0.628036 + }, + { + "surface": "副題", + "readging": "ふくだい", + "pos": "名詞", + "pn": -0.628057 + }, + { + "surface": "水晶", + "readging": "すいしょう", + "pos": "名詞", + "pn": -0.628088 + }, + { + "surface": "ぽとりと", + "readging": "ぽとりと", + "pos": "副詞", + "pn": -0.628136 + }, + { + "surface": "湯の花", + "readging": "ゆのはな", + "pos": "名詞", + "pn": -0.628178 + }, + { + "surface": "暮靄", + "readging": "ぼあい", + "pos": "名詞", + "pn": -0.628217 + }, + { + "surface": "穀蛾", + "readging": "こくが", + "pos": "名詞", + "pn": -0.628239 + }, + { + "surface": "相手方", + "readging": "あいて", + "pos": "名詞", + "pn": -0.628277 + }, + { + "surface": "失礼", + "readging": "しつれい", + "pos": "名詞", + "pn": -0.628301 + }, + { + "surface": "蹴落す", + "readging": "けおとす", + "pos": "動詞", + "pn": -0.628415 + }, + { + "surface": "夢中", + "readging": "むちゅう", + "pos": "名詞", + "pn": -0.628417 + }, + { + "surface": "谷", + "readging": "たに", + "pos": "名詞", + "pn": -0.628419 + }, + { + "surface": "尺", + "readging": "しゃく", + "pos": "名詞", + "pn": -0.628446 + }, + { + "surface": "起き掛け", + "readging": "おきがけ", + "pos": "名詞", + "pn": -0.628514 + }, + { + "surface": "帆船", + "readging": "はんせん", + "pos": "名詞", + "pn": -0.628528 + }, + { + "surface": "こてこて", + "readging": "こてこて", + "pos": "副詞", + "pn": -0.628535 + }, + { + "surface": "汚辱", + "readging": "おじょく", + "pos": "名詞", + "pn": -0.62854 + }, + { + "surface": "通り一遍", + "readging": "とおりいっぺん", + "pos": "名詞", + "pn": -0.628561 + }, + { + "surface": "牢舎", + "readging": "ろうしゃ", + "pos": "名詞", + "pn": -0.628598 + }, + { + "surface": "赤飯", + "readging": "せきはん", + "pos": "名詞", + "pn": -0.628615 + }, + { + "surface": "底止", + "readging": "ていし", + "pos": "名詞", + "pn": -0.628651 + }, + { + "surface": "クリップ", + "readging": "クリップ", + "pos": "名詞", + "pn": -0.628673 + }, + { + "surface": "格子", + "readging": "こうし", + "pos": "名詞", + "pn": -0.628734 + }, + { + "surface": "海参", + "readging": "いりこ", + "pos": "名詞", + "pn": -0.628743 + }, + { + "surface": "捩鉢巻", + "readging": "ねじはちまき", + "pos": "名詞", + "pn": -0.628743 + }, + { + "surface": "繰戸", + "readging": "くりど", + "pos": "名詞", + "pn": -0.628756 + }, + { + "surface": "悼惜", + "readging": "とうせき", + "pos": "名詞", + "pn": -0.628759 + }, + { + "surface": "間一髪", + "readging": "かんいっぱつ", + "pos": "名詞", + "pn": -0.628763 + }, + { + "surface": "影響", + "readging": "えいきょう", + "pos": "名詞", + "pn": -0.628764 + }, + { + "surface": "忍", + "readging": "しのぶ", + "pos": "名詞", + "pn": -0.628771 + }, + { + "surface": "抗生物質", + "readging": "こうせいぶっしつ", + "pos": "名詞", + "pn": -0.628778 + }, + { + "surface": "ピッケル", + "readging": "ピッケル", + "pos": "名詞", + "pn": -0.628799 + }, + { + "surface": "くるむ", + "readging": "くるむ", + "pos": "動詞", + "pn": -0.628843 + }, + { + "surface": "ぬるりと", + "readging": "ぬるりと", + "pos": "副詞", + "pn": -0.628875 + }, + { + "surface": "種火", + "readging": "たねび", + "pos": "名詞", + "pn": -0.628912 + }, + { + "surface": "七色唐辛子", + "readging": "なないろとうがらし", + "pos": "名詞", + "pn": -0.62895 + }, + { + "surface": "取消す", + "readging": "とりけす", + "pos": "動詞", + "pn": -0.629 + }, + { + "surface": "ひたすら", + "readging": "ひたすら", + "pos": "副詞", + "pn": -0.629067 + }, + { + "surface": "細石", + "readging": "さざれ", + "pos": "名詞", + "pn": -0.629239 + }, + { + "surface": "葛籠", + "readging": "つづら", + "pos": "名詞", + "pn": -0.629264 + }, + { + "surface": "絞染", + "readging": "しぼりぞめ", + "pos": "名詞", + "pn": -0.629294 + }, + { + "surface": "食塩", + "readging": "しょくえん", + "pos": "名詞", + "pn": -0.629326 + }, + { + "surface": "複製", + "readging": "ふくせい", + "pos": "名詞", + "pn": -0.629349 + }, + { + "surface": "侵入", + "readging": "しんにゅう", + "pos": "名詞", + "pn": -0.629357 + }, + { + "surface": "黙座", + "readging": "もくざ", + "pos": "名詞", + "pn": -0.629359 + }, + { + "surface": "勝取る", + "readging": "かちとる", + "pos": "動詞", + "pn": -0.629375 + }, + { + "surface": "窒素", + "readging": "ちっそ", + "pos": "名詞", + "pn": -0.629425 + }, + { + "surface": "水沢", + "readging": "すいたく", + "pos": "名詞", + "pn": -0.629478 + }, + { + "surface": "偽印", + "readging": "ぎいん", + "pos": "名詞", + "pn": -0.629538 + }, + { + "surface": "一人一人", + "readging": "ひとりひとり", + "pos": "名詞", + "pn": -0.629568 + }, + { + "surface": "繋ぎ", + "readging": "つなぎ", + "pos": "名詞", + "pn": -0.62957 + }, + { + "surface": "風呂", + "readging": "ふろ", + "pos": "名詞", + "pn": -0.629613 + }, + { + "surface": "嫌い", + "readging": "きらい", + "pos": "名詞", + "pn": -0.629629 + }, + { + "surface": "附", + "readging": "ふ", + "pos": "名詞", + "pn": -0.629652 + }, + { + "surface": "見出す", + "readging": "みだす", + "pos": "動詞", + "pn": -0.629656 + }, + { + "surface": "ちっと", + "readging": "ちっと", + "pos": "副詞", + "pn": -0.629664 + }, + { + "surface": "途", + "readging": "と", + "pos": "名詞", + "pn": -0.629691 + }, + { + "surface": "蝋燭", + "readging": "ろうそく", + "pos": "名詞", + "pn": -0.629692 + }, + { + "surface": "立膝", + "readging": "たてひざ", + "pos": "名詞", + "pn": -0.629695 + }, + { + "surface": "弾く", + "readging": "はじく", + "pos": "動詞", + "pn": -0.62971 + }, + { + "surface": "鮫", + "readging": "さめ", + "pos": "名詞", + "pn": -0.629727 + }, + { + "surface": "—粉", + "readging": "みじんこ", + "pos": "名詞", + "pn": -0.629769 + }, + { + "surface": "邯鄲師", + "readging": "かんたんし", + "pos": "名詞", + "pn": -0.629789 + }, + { + "surface": "接する", + "readging": "せっする", + "pos": "動詞", + "pn": -0.629804 + }, + { + "surface": "晩", + "readging": "ばん", + "pos": "名詞", + "pn": -0.629805 + }, + { + "surface": "あんぽんたん", + "readging": "あんぽんたん", + "pos": "名詞", + "pn": -0.629815 + }, + { + "surface": "多言", + "readging": "たげん", + "pos": "名詞", + "pn": -0.629895 + }, + { + "surface": "繰言", + "readging": "くりごと", + "pos": "名詞", + "pn": -0.6299 + }, + { + "surface": "鞅掌", + "readging": "おうしょう", + "pos": "名詞", + "pn": -0.629901 + }, + { + "surface": "雪消", + "readging": "ゆきげ", + "pos": "名詞", + "pn": -0.62992 + }, + { + "surface": "豚児", + "readging": "とんじ", + "pos": "名詞", + "pn": -0.62994 + }, + { + "surface": "小暗い", + "readging": "こぐらい", + "pos": "形容詞", + "pn": -0.62995 + }, + { + "surface": "背皮", + "readging": "せがわ", + "pos": "名詞", + "pn": -0.629969 + }, + { + "surface": "自棄", + "readging": "じき", + "pos": "名詞", + "pn": -0.630039 + }, + { + "surface": "ごきぶり", + "readging": "ごきぶり", + "pos": "名詞", + "pn": -0.630099 + }, + { + "surface": "歪", + "readging": "いびつ", + "pos": "名詞", + "pn": -0.630117 + }, + { + "surface": "発行", + "readging": "はっこう", + "pos": "名詞", + "pn": -0.63012 + }, + { + "surface": "称", + "readging": "しょう", + "pos": "名詞", + "pn": -0.630153 + }, + { + "surface": "絶つ", + "readging": "たつ", + "pos": "動詞", + "pn": -0.630173 + }, + { + "surface": "みんみん蝉", + "readging": "みんみんぜみ", + "pos": "名詞", + "pn": -0.630194 + }, + { + "surface": "包", + "readging": "ほう", + "pos": "名詞", + "pn": -0.630201 + }, + { + "surface": "雨滴", + "readging": "うてき", + "pos": "名詞", + "pn": -0.630269 + }, + { + "surface": "介錯", + "readging": "かいしゃく", + "pos": "名詞", + "pn": -0.630275 + }, + { + "surface": "跫音", + "readging": "きょうおん", + "pos": "名詞", + "pn": -0.630338 + }, + { + "surface": "泊", + "readging": "はく", + "pos": "名詞", + "pn": -0.630357 + }, + { + "surface": "停会", + "readging": "ていかい", + "pos": "名詞", + "pn": -0.630383 + }, + { + "surface": "胃痙攣", + "readging": "いけいれん", + "pos": "名詞", + "pn": -0.630385 + }, + { + "surface": "ぶすりと", + "readging": "ぶすりと", + "pos": "副詞", + "pn": -0.630464 + }, + { + "surface": "撮要", + "readging": "さつよう", + "pos": "名詞", + "pn": -0.630467 + }, + { + "surface": "暴行", + "readging": "ぼうこう", + "pos": "名詞", + "pn": -0.63051 + }, + { + "surface": "枯露柿", + "readging": "ころがき", + "pos": "名詞", + "pn": -0.630533 + }, + { + "surface": "分限", + "readging": "ぶげん", + "pos": "名詞", + "pn": -0.630545 + }, + { + "surface": "取除く", + "readging": "とりのぞく", + "pos": "動詞", + "pn": -0.63055 + }, + { + "surface": "度外れ", + "readging": "どはずれ", + "pos": "名詞", + "pn": -0.630564 + }, + { + "surface": "癰", + "readging": "よう", + "pos": "名詞", + "pn": -0.630579 + }, + { + "surface": "座下", + "readging": "ざか", + "pos": "名詞", + "pn": -0.630579 + }, + { + "surface": "少しく", + "readging": "すこしく", + "pos": "副詞", + "pn": -0.630596 + }, + { + "surface": "通", + "readging": "つう", + "pos": "名詞", + "pn": -0.630613 + }, + { + "surface": "お猪口", + "readging": "おちょこ", + "pos": "名詞", + "pn": -0.630645 + }, + { + "surface": "尽きる", + "readging": "つきる", + "pos": "動詞", + "pn": -0.630698 + }, + { + "surface": "火縄", + "readging": "ひなわ", + "pos": "名詞", + "pn": -0.63073 + }, + { + "surface": "肥満", + "readging": "ひまん", + "pos": "名詞", + "pn": -0.630744 + }, + { + "surface": "袖手", + "readging": "しゅうしゅ", + "pos": "名詞", + "pn": -0.630752 + }, + { + "surface": "引込む", + "readging": "ひきこむ", + "pos": "動詞", + "pn": -0.630775 + }, + { + "surface": "梳油", + "readging": "すきあぶら", + "pos": "名詞", + "pn": -0.630854 + }, + { + "surface": "冷ます", + "readging": "さます", + "pos": "動詞", + "pn": -0.630857 + }, + { + "surface": "運送", + "readging": "うんそう", + "pos": "名詞", + "pn": -0.63086 + }, + { + "surface": "蛸", + "readging": "たこ", + "pos": "名詞", + "pn": -0.630899 + }, + { + "surface": "耳下腺炎", + "readging": "じかせんえん", + "pos": "名詞", + "pn": -0.630965 + }, + { + "surface": "密栓", + "readging": "みっせん", + "pos": "名詞", + "pn": -0.630994 + }, + { + "surface": "苦心", + "readging": "くしん", + "pos": "名詞", + "pn": -0.631023 + }, + { + "surface": "各般", + "readging": "かくはん", + "pos": "名詞", + "pn": -0.63103 + }, + { + "surface": "悲況", + "readging": "ひきょう", + "pos": "名詞", + "pn": -0.631072 + }, + { + "surface": "転がす", + "readging": "ころがす", + "pos": "動詞", + "pn": -0.631077 + }, + { + "surface": "蒸返す", + "readging": "むしかえす", + "pos": "動詞", + "pn": -0.6311 + }, + { + "surface": "マッシュルーム", + "readging": "マッシュルーム", + "pos": "名詞", + "pn": -0.631185 + }, + { + "surface": "側側", + "readging": "そくそく", + "pos": "名詞", + "pn": -0.631238 + }, + { + "surface": "仲立", + "readging": "なかだち", + "pos": "名詞", + "pn": -0.631251 + }, + { + "surface": "島田", + "readging": "しまだ", + "pos": "名詞", + "pn": -0.6313 + }, + { + "surface": "マスト", + "readging": "マスト", + "pos": "名詞", + "pn": -0.631306 + }, + { + "surface": "日本髪", + "readging": "にほんがみ", + "pos": "名詞", + "pn": -0.631324 + }, + { + "surface": "鳴禽", + "readging": "めいきん", + "pos": "名詞", + "pn": -0.631345 + }, + { + "surface": "歌", + "readging": "うた", + "pos": "名詞", + "pn": -0.631404 + }, + { + "surface": "全開", + "readging": "ぜんかい", + "pos": "名詞", + "pn": -0.631407 + }, + { + "surface": "挙手", + "readging": "きょしゅ", + "pos": "名詞", + "pn": -0.631426 + }, + { + "surface": "ミキサー", + "readging": "ミキサー", + "pos": "名詞", + "pn": -0.631475 + }, + { + "surface": "方式", + "readging": "ほうしき", + "pos": "名詞", + "pn": -0.631505 + }, + { + "surface": "訳柄", + "readging": "わけがら", + "pos": "名詞", + "pn": -0.631529 + }, + { + "surface": "眉", + "readging": "び", + "pos": "名詞", + "pn": -0.631581 + }, + { + "surface": "生徒", + "readging": "せいと", + "pos": "名詞", + "pn": -0.631633 + }, + { + "surface": "安倍川餅", + "readging": "あべかわもち", + "pos": "名詞", + "pn": -0.631706 + }, + { + "surface": "痴漢", + "readging": "ちかん", + "pos": "名詞", + "pn": -0.631717 + }, + { + "surface": "合羽", + "readging": "カッパ", + "pos": "名詞", + "pn": -0.631721 + }, + { + "surface": "閑暇", + "readging": "かんか", + "pos": "名詞", + "pn": -0.631741 + }, + { + "surface": "淀む", + "readging": "よどむ", + "pos": "動詞", + "pn": -0.631781 + }, + { + "surface": "薄", + "readging": "すすき", + "pos": "名詞", + "pn": -0.63181 + }, + { + "surface": "貘", + "readging": "ばく", + "pos": "名詞", + "pn": -0.63189 + }, + { + "surface": "天子", + "readging": "てんし", + "pos": "名詞", + "pn": -0.631969 + }, + { + "surface": "作物", + "readging": "さくもつ", + "pos": "名詞", + "pn": -0.631971 + }, + { + "surface": "手懸", + "readging": "てかけ", + "pos": "名詞", + "pn": -0.631988 + }, + { + "surface": "会議", + "readging": "かいぎ", + "pos": "名詞", + "pn": -0.632027 + }, + { + "surface": "妄誕", + "readging": "もうたん", + "pos": "名詞", + "pn": -0.632043 + }, + { + "surface": "セメント", + "readging": "セメント", + "pos": "名詞", + "pn": -0.632055 + }, + { + "surface": "ぶら下がる", + "readging": "ぶらさがる", + "pos": "動詞", + "pn": -0.632084 + }, + { + "surface": "眼窩", + "readging": "がんか", + "pos": "名詞", + "pn": -0.632114 + }, + { + "surface": "麺類", + "readging": "めんるい", + "pos": "名詞", + "pn": -0.632124 + }, + { + "surface": "結び付ける", + "readging": "むすびつける", + "pos": "動詞", + "pn": -0.632157 + }, + { + "surface": "海底", + "readging": "かいてい", + "pos": "名詞", + "pn": -0.632203 + }, + { + "surface": "広告", + "readging": "こうこく", + "pos": "名詞", + "pn": -0.632212 + }, + { + "surface": "滞在", + "readging": "たいざい", + "pos": "名詞", + "pn": -0.632227 + }, + { + "surface": "回帰熱", + "readging": "かいきねつ", + "pos": "名詞", + "pn": -0.632293 + }, + { + "surface": "引継ぐ", + "readging": "ひきつぐ", + "pos": "動詞", + "pn": -0.632294 + }, + { + "surface": "吟ずる", + "readging": "ぎんずる", + "pos": "動詞", + "pn": -0.632326 + }, + { + "surface": "季節", + "readging": "きせつ", + "pos": "名詞", + "pn": -0.632342 + }, + { + "surface": "ぷかぷか", + "readging": "ぷかぷか", + "pos": "副詞", + "pn": -0.632357 + }, + { + "surface": "へたり込む", + "readging": "へたりこむ", + "pos": "動詞", + "pn": -0.632402 + }, + { + "surface": "仏参", + "readging": "ぶっさん", + "pos": "名詞", + "pn": -0.632414 + }, + { + "surface": "向う鉢巻", + "readging": "むこうはちまき", + "pos": "名詞", + "pn": -0.632423 + }, + { + "surface": "覗機関", + "readging": "のぞきからくり", + "pos": "名詞", + "pn": -0.632431 + }, + { + "surface": "印肉", + "readging": "いんにく", + "pos": "名詞", + "pn": -0.632437 + }, + { + "surface": "道端", + "readging": "みちばた", + "pos": "名詞", + "pn": -0.632455 + }, + { + "surface": "でかでか", + "readging": "でかでか", + "pos": "副詞", + "pn": -0.632475 + }, + { + "surface": "辛味噌", + "readging": "からみそ", + "pos": "名詞", + "pn": -0.632558 + }, + { + "surface": "麦稈", + "readging": "ばっかん", + "pos": "名詞", + "pn": -0.632568 + }, + { + "surface": "曇ガラス", + "readging": "くもりガラス", + "pos": "名詞", + "pn": -0.632631 + }, + { + "surface": "式", + "readging": "しき", + "pos": "名詞", + "pn": -0.632696 + }, + { + "surface": "謹慎", + "readging": "きんしん", + "pos": "名詞", + "pn": -0.632712 + }, + { + "surface": "猿芝居", + "readging": "さるしばい", + "pos": "名詞", + "pn": -0.632832 + }, + { + "surface": "薬籠", + "readging": "やくろう", + "pos": "名詞", + "pn": -0.632874 + }, + { + "surface": "轍鮒", + "readging": "てっぷ", + "pos": "名詞", + "pn": -0.632887 + }, + { + "surface": "四隣", + "readging": "しりん", + "pos": "名詞", + "pn": -0.63292 + }, + { + "surface": "パッチ", + "readging": "パッチ", + "pos": "名詞", + "pn": -0.632963 + }, + { + "surface": "修祓", + "readging": "しゅうふつ", + "pos": "名詞", + "pn": -0.633058 + }, + { + "surface": "充", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.633061 + }, + { + "surface": "槍", + "readging": "やり", + "pos": "名詞", + "pn": -0.633078 + }, + { + "surface": "閏", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.633079 + }, + { + "surface": "食らい込む", + "readging": "くらいこむ", + "pos": "動詞", + "pn": -0.633215 + }, + { + "surface": "虎毛", + "readging": "とらげ", + "pos": "名詞", + "pn": -0.633258 + }, + { + "surface": "動力", + "readging": "どうりょく", + "pos": "名詞", + "pn": -0.63327 + }, + { + "surface": "丸っこい", + "readging": "まるっこい", + "pos": "形容詞", + "pn": -0.633281 + }, + { + "surface": "張合う", + "readging": "はりあう", + "pos": "動詞", + "pn": -0.633282 + }, + { + "surface": "胴震い", + "readging": "どうぶるい", + "pos": "名詞", + "pn": -0.633302 + }, + { + "surface": "腰つき", + "readging": "こしつき", + "pos": "名詞", + "pn": -0.633345 + }, + { + "surface": "号する", + "readging": "ごうする", + "pos": "動詞", + "pn": -0.633351 + }, + { + "surface": "荊棘", + "readging": "けいきょく", + "pos": "名詞", + "pn": -0.633392 + }, + { + "surface": "火達磨", + "readging": "ひだるま", + "pos": "名詞", + "pn": -0.633407 + }, + { + "surface": "就労", + "readging": "しゅうろう", + "pos": "名詞", + "pn": -0.633416 + }, + { + "surface": "共共", + "readging": "ともども", + "pos": "副詞", + "pn": -0.633419 + }, + { + "surface": "謀計", + "readging": "ぼうけい", + "pos": "名詞", + "pn": -0.633423 + }, + { + "surface": "蚯蚓脹れ", + "readging": "みみずばれ", + "pos": "名詞", + "pn": -0.633448 + }, + { + "surface": "色", + "readging": "いろ", + "pos": "名詞", + "pn": -0.63348 + }, + { + "surface": "後の祭", + "readging": "あとのまつり", + "pos": "名詞", + "pn": -0.633509 + }, + { + "surface": "瞬く", + "readging": "しばたたく", + "pos": "動詞", + "pn": -0.633519 + }, + { + "surface": "雷鳥", + "readging": "らいちょう", + "pos": "名詞", + "pn": -0.63354 + }, + { + "surface": "愚弄", + "readging": "ぐろう", + "pos": "名詞", + "pn": -0.633544 + }, + { + "surface": "比翼", + "readging": "ひよく", + "pos": "名詞", + "pn": -0.633547 + }, + { + "surface": "京", + "readging": "けい", + "pos": "名詞", + "pn": -0.633554 + }, + { + "surface": "杓う", + "readging": "しゃくう", + "pos": "動詞", + "pn": -0.633563 + }, + { + "surface": "下風", + "readging": "かふう", + "pos": "名詞", + "pn": -0.633567 + }, + { + "surface": "聯", + "readging": "れん", + "pos": "名詞", + "pn": -0.633571 + }, + { + "surface": "輩", + "readging": "ともがら", + "pos": "名詞", + "pn": -0.633616 + }, + { + "surface": "挙", + "readging": "きょ", + "pos": "名詞", + "pn": -0.633631 + }, + { + "surface": "歯ブラシ", + "readging": "はブラシ", + "pos": "名詞", + "pn": -0.633654 + }, + { + "surface": "見返す", + "readging": "みかえす", + "pos": "動詞", + "pn": -0.633693 + }, + { + "surface": "寝かす", + "readging": "ねかす", + "pos": "動詞", + "pn": -0.633703 + }, + { + "surface": "女郎蜘蛛", + "readging": "じょろうぐも", + "pos": "名詞", + "pn": -0.63375 + }, + { + "surface": "バンド", + "readging": "バンド", + "pos": "名詞", + "pn": -0.633805 + }, + { + "surface": "髪型", + "readging": "かみがた", + "pos": "名詞", + "pn": -0.633832 + }, + { + "surface": "刻み", + "readging": "きざみ", + "pos": "名詞", + "pn": -0.633853 + }, + { + "surface": "強飯", + "readging": "こわめし", + "pos": "名詞", + "pn": -0.633866 + }, + { + "surface": "鬼火", + "readging": "おにび", + "pos": "名詞", + "pn": -0.633904 + }, + { + "surface": "暦", + "readging": "れき", + "pos": "名詞", + "pn": -0.633961 + }, + { + "surface": "激痛", + "readging": "げきつう", + "pos": "名詞", + "pn": -0.634017 + }, + { + "surface": "ぞっき本", + "readging": "ぞっきぼん", + "pos": "名詞", + "pn": -0.634027 + }, + { + "surface": "限", + "readging": "げん", + "pos": "名詞", + "pn": -0.634087 + }, + { + "surface": "庫裏", + "readging": "くり", + "pos": "名詞", + "pn": -0.634153 + }, + { + "surface": "船側", + "readging": "せんそく", + "pos": "名詞", + "pn": -0.634166 + }, + { + "surface": "醤", + "readging": "ひしお", + "pos": "名詞", + "pn": -0.634186 + }, + { + "surface": "種苗", + "readging": "しゅびょう", + "pos": "名詞", + "pn": -0.634194 + }, + { + "surface": "行商", + "readging": "ぎょうしょう", + "pos": "名詞", + "pn": -0.634233 + }, + { + "surface": "入渠", + "readging": "にゅうきょ", + "pos": "名詞", + "pn": -0.634252 + }, + { + "surface": "入れ合せる", + "readging": "いれあわせる", + "pos": "動詞", + "pn": -0.63428 + }, + { + "surface": "甘酸っぱい", + "readging": "あまずっぱい", + "pos": "形容詞", + "pn": -0.634286 + }, + { + "surface": "腰掛ける", + "readging": "こしかける", + "pos": "動詞", + "pn": -0.634309 + }, + { + "surface": "火箸", + "readging": "ひばし", + "pos": "名詞", + "pn": -0.634311 + }, + { + "surface": "延び", + "readging": "のび", + "pos": "名詞", + "pn": -0.634319 + }, + { + "surface": "曲芸", + "readging": "きょくげい", + "pos": "名詞", + "pn": -0.634441 + }, + { + "surface": "鉄瓶", + "readging": "てつびん", + "pos": "名詞", + "pn": -0.634546 + }, + { + "surface": "撥ね釣瓶", + "readging": "はねつるべ", + "pos": "名詞", + "pn": -0.63459 + }, + { + "surface": "ざっと", + "readging": "ざっと", + "pos": "副詞", + "pn": -0.6346 + }, + { + "surface": "一巡り", + "readging": "ひとめぐり", + "pos": "名詞", + "pn": -0.634611 + }, + { + "surface": "昼", + "readging": "ひる", + "pos": "名詞", + "pn": -0.634641 + }, + { + "surface": "倥偬", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.634643 + }, + { + "surface": "焼損", + "readging": "しょうそん", + "pos": "名詞", + "pn": -0.63465 + }, + { + "surface": "位", + "readging": "くらい", + "pos": "名詞", + "pn": -0.634667 + }, + { + "surface": "へこたれる", + "readging": "へこたれる", + "pos": "動詞", + "pn": -0.634682 + }, + { + "surface": "伴", + "readging": "ばん", + "pos": "名詞", + "pn": -0.634751 + }, + { + "surface": "唾腺", + "readging": "だせん", + "pos": "名詞", + "pn": -0.634827 + }, + { + "surface": "氷水", + "readging": "こおりみず", + "pos": "名詞", + "pn": -0.634833 + }, + { + "surface": "笊蕎麦", + "readging": "ざるそば", + "pos": "名詞", + "pn": -0.634865 + }, + { + "surface": "枢", + "readging": "とぼそ", + "pos": "名詞", + "pn": -0.634959 + }, + { + "surface": "月日", + "readging": "つきひ", + "pos": "名詞", + "pn": -0.635047 + }, + { + "surface": "辞する", + "readging": "じする", + "pos": "動詞", + "pn": -0.635058 + }, + { + "surface": "小舟", + "readging": "おぶね", + "pos": "名詞", + "pn": -0.635078 + }, + { + "surface": "電信", + "readging": "でんしん", + "pos": "名詞", + "pn": -0.635162 + }, + { + "surface": "餌", + "readging": "じ", + "pos": "名詞", + "pn": -0.635175 + }, + { + "surface": "麹菌", + "readging": "こうじきん", + "pos": "名詞", + "pn": -0.635241 + }, + { + "surface": "沈み", + "readging": "しずみ", + "pos": "名詞", + "pn": -0.635269 + }, + { + "surface": "ペーソス", + "readging": "ペーソス", + "pos": "名詞", + "pn": -0.635271 + }, + { + "surface": "未来", + "readging": "みらい", + "pos": "名詞", + "pn": -0.635283 + }, + { + "surface": "孤", + "readging": "こ", + "pos": "名詞", + "pn": -0.635308 + }, + { + "surface": "苔むす", + "readging": "こけむす", + "pos": "動詞", + "pn": -0.635378 + }, + { + "surface": "長", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.635427 + }, + { + "surface": "袋網", + "readging": "ふくろあみ", + "pos": "名詞", + "pn": -0.635494 + }, + { + "surface": "交わる", + "readging": "まじわる", + "pos": "動詞", + "pn": -0.635497 + }, + { + "surface": "外", + "readging": "がい", + "pos": "名詞", + "pn": -0.6355 + }, + { + "surface": "閑談", + "readging": "かんだん", + "pos": "名詞", + "pn": -0.635533 + }, + { + "surface": "一遍", + "readging": "いっぺん", + "pos": "名詞", + "pn": -0.635537 + }, + { + "surface": "煙霞", + "readging": "えんか", + "pos": "名詞", + "pn": -0.635562 + }, + { + "surface": "鯣烏賊", + "readging": "するめいか", + "pos": "名詞", + "pn": -0.635648 + }, + { + "surface": "本文", + "readging": "ほんもん", + "pos": "名詞", + "pn": -0.635648 + }, + { + "surface": "堕する", + "readging": "だする", + "pos": "動詞", + "pn": -0.635697 + }, + { + "surface": "紅潮", + "readging": "こうちょう", + "pos": "名詞", + "pn": -0.635702 + }, + { + "surface": "猫", + "readging": "びょう", + "pos": "名詞", + "pn": -0.635794 + }, + { + "surface": "指掛け", + "readging": "さしかけ", + "pos": "名詞", + "pn": -0.635822 + }, + { + "surface": "食いつく", + "readging": "くいつく", + "pos": "動詞", + "pn": -0.635872 + }, + { + "surface": "泥仕合", + "readging": "どろじあい", + "pos": "名詞", + "pn": -0.635873 + }, + { + "surface": "食らわす", + "readging": "くらわす", + "pos": "動詞", + "pn": -0.635938 + }, + { + "surface": "パトロール", + "readging": "パトロール", + "pos": "名詞", + "pn": -0.636017 + }, + { + "surface": "日夜", + "readging": "にちや", + "pos": "名詞", + "pn": -0.636064 + }, + { + "surface": "脂", + "readging": "やに", + "pos": "名詞", + "pn": -0.636086 + }, + { + "surface": "根元", + "readging": "ねもと", + "pos": "名詞", + "pn": -0.636111 + }, + { + "surface": "嘗味噌", + "readging": "なめみそ", + "pos": "名詞", + "pn": -0.636111 + }, + { + "surface": "寝惚ける", + "readging": "ねとぼける", + "pos": "動詞", + "pn": -0.636165 + }, + { + "surface": "手盛り", + "readging": "てもり", + "pos": "名詞", + "pn": -0.636181 + }, + { + "surface": "役者", + "readging": "やくしゃ", + "pos": "名詞", + "pn": -0.636205 + }, + { + "surface": "畳", + "readging": "たとう", + "pos": "名詞", + "pn": -0.636282 + }, + { + "surface": "妖光", + "readging": "ようこう", + "pos": "名詞", + "pn": -0.636299 + }, + { + "surface": "驕奢", + "readging": "きょうしゃ", + "pos": "名詞", + "pn": -0.636306 + }, + { + "surface": "角立つ", + "readging": "かどだつ", + "pos": "動詞", + "pn": -0.63633 + }, + { + "surface": "相", + "readging": "そう", + "pos": "名詞", + "pn": -0.636353 + }, + { + "surface": "禿びる", + "readging": "ちびる", + "pos": "動詞", + "pn": -0.636375 + }, + { + "surface": "取って置き", + "readging": "とっておき", + "pos": "名詞", + "pn": -0.636376 + }, + { + "surface": "傀儡", + "readging": "かいらい", + "pos": "名詞", + "pn": -0.636382 + }, + { + "surface": "鶏卵", + "readging": "けいらん", + "pos": "名詞", + "pn": -0.63642 + }, + { + "surface": "肌着", + "readging": "はだぎ", + "pos": "名詞", + "pn": -0.636425 + }, + { + "surface": "交ぜっ返す", + "readging": "まぜっかえす", + "pos": "動詞", + "pn": -0.636438 + }, + { + "surface": "方位", + "readging": "ほうい", + "pos": "名詞", + "pn": -0.63652 + }, + { + "surface": "黒文字", + "readging": "くろもじ", + "pos": "名詞", + "pn": -0.636546 + }, + { + "surface": "座布団", + "readging": "ざぶとん", + "pos": "名詞", + "pn": -0.636551 + }, + { + "surface": "雁字搦め", + "readging": "がんじがらめ", + "pos": "名詞", + "pn": -0.636571 + }, + { + "surface": "掌中", + "readging": "しょうちゅう", + "pos": "名詞", + "pn": -0.636574 + }, + { + "surface": "別言", + "readging": "べつげん", + "pos": "名詞", + "pn": -0.636616 + }, + { + "surface": "きらず", + "readging": "きらず", + "pos": "名詞", + "pn": -0.636677 + }, + { + "surface": "異母", + "readging": "いぼ", + "pos": "名詞", + "pn": -0.636725 + }, + { + "surface": "炭坑", + "readging": "たんこう", + "pos": "名詞", + "pn": -0.636732 + }, + { + "surface": "弾", + "readging": "だん", + "pos": "名詞", + "pn": -0.636744 + }, + { + "surface": "網代", + "readging": "あじろ", + "pos": "名詞", + "pn": -0.636789 + }, + { + "surface": "親", + "readging": "しん", + "pos": "名詞", + "pn": -0.636804 + }, + { + "surface": "積", + "readging": "せき", + "pos": "名詞", + "pn": -0.636808 + }, + { + "surface": "進行", + "readging": "しんこう", + "pos": "名詞", + "pn": -0.636823 + }, + { + "surface": "疫病", + "readging": "えきびょう", + "pos": "名詞", + "pn": -0.636846 + }, + { + "surface": "刷毛", + "readging": "はけ", + "pos": "名詞", + "pn": -0.63685 + }, + { + "surface": "錫", + "readging": "しゃく", + "pos": "名詞", + "pn": -0.636871 + }, + { + "surface": "ひねもす", + "readging": "ひねもす", + "pos": "副詞", + "pn": -0.636875 + }, + { + "surface": "夕顔", + "readging": "ゆうがお", + "pos": "名詞", + "pn": -0.636881 + }, + { + "surface": "押え付ける", + "readging": "おさえつける", + "pos": "動詞", + "pn": -0.636924 + }, + { + "surface": "浴する", + "readging": "よくする", + "pos": "動詞", + "pn": -0.636948 + }, + { + "surface": "余る", + "readging": "あまる", + "pos": "動詞", + "pn": -0.636957 + }, + { + "surface": "瓶", + "readging": "びん", + "pos": "名詞", + "pn": -0.636967 + }, + { + "surface": "四方", + "readging": "よも", + "pos": "名詞", + "pn": -0.637012 + }, + { + "surface": "野袴", + "readging": "のばかま", + "pos": "名詞", + "pn": -0.637039 + }, + { + "surface": "こめ織", + "readging": "こめおり", + "pos": "名詞", + "pn": -0.637066 + }, + { + "surface": "寄せ掛ける", + "readging": "よせかける", + "pos": "動詞", + "pn": -0.637127 + }, + { + "surface": "登降", + "readging": "とうこう", + "pos": "名詞", + "pn": -0.637185 + }, + { + "surface": "政党", + "readging": "せいとう", + "pos": "名詞", + "pn": -0.637186 + }, + { + "surface": "危急存亡", + "readging": "ききゅうそんぼう", + "pos": "名詞", + "pn": -0.637213 + }, + { + "surface": "序", + "readging": "じょ", + "pos": "名詞", + "pn": -0.637217 + }, + { + "surface": "余念", + "readging": "よねん", + "pos": "名詞", + "pn": -0.637221 + }, + { + "surface": "傭", + "readging": "よう", + "pos": "名詞", + "pn": -0.637222 + }, + { + "surface": "言付ける", + "readging": "ことづける", + "pos": "動詞", + "pn": -0.63724 + }, + { + "surface": "期", + "readging": "き", + "pos": "名詞", + "pn": -0.637287 + }, + { + "surface": "無効", + "readging": "むこう", + "pos": "名詞", + "pn": -0.637316 + }, + { + "surface": "贅物", + "readging": "ぜいぶつ", + "pos": "名詞", + "pn": -0.63733 + }, + { + "surface": "鎮咳剤", + "readging": "ちんがいざい", + "pos": "名詞", + "pn": -0.637411 + }, + { + "surface": "磯釣", + "readging": "いそづり", + "pos": "名詞", + "pn": -0.637442 + }, + { + "surface": "後嗣", + "readging": "こうし", + "pos": "名詞", + "pn": -0.637446 + }, + { + "surface": "ぽかっと", + "readging": "ぽかっと", + "pos": "副詞", + "pn": -0.637454 + }, + { + "surface": "曾祖", + "readging": "そうそ", + "pos": "名詞", + "pn": -0.637462 + }, + { + "surface": "女子", + "readging": "じょし", + "pos": "名詞", + "pn": -0.637501 + }, + { + "surface": "肋膜", + "readging": "ろくまく", + "pos": "名詞", + "pn": -0.637513 + }, + { + "surface": "移り変る", + "readging": "うつりかわる", + "pos": "動詞", + "pn": -0.637576 + }, + { + "surface": "神隠し", + "readging": "かみがくし", + "pos": "名詞", + "pn": -0.63765 + }, + { + "surface": "蝦蟇口", + "readging": "がまぐち", + "pos": "名詞", + "pn": -0.63768 + }, + { + "surface": "拝見", + "readging": "はいけん", + "pos": "名詞", + "pn": -0.637733 + }, + { + "surface": "漁業", + "readging": "ぎょぎょう", + "pos": "名詞", + "pn": -0.637766 + }, + { + "surface": "陰ながら", + "readging": "かげながら", + "pos": "副詞", + "pn": -0.637788 + }, + { + "surface": "歪む", + "readging": "ゆがむ", + "pos": "動詞", + "pn": -0.637794 + }, + { + "surface": "蒟蒻玉", + "readging": "こんにゃくだま", + "pos": "名詞", + "pn": -0.637837 + }, + { + "surface": "流言", + "readging": "りゅうげん", + "pos": "名詞", + "pn": -0.637955 + }, + { + "surface": "退ける", + "readging": "のける", + "pos": "動詞", + "pn": -0.638019 + }, + { + "surface": "頼", + "readging": "らい", + "pos": "名詞", + "pn": -0.638111 + }, + { + "surface": "違約", + "readging": "いやく", + "pos": "名詞", + "pn": -0.638122 + }, + { + "surface": "企てる", + "readging": "くわだてる", + "pos": "動詞", + "pn": -0.638149 + }, + { + "surface": "臼", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.63815 + }, + { + "surface": "湯疲れ", + "readging": "ゆづかれ", + "pos": "名詞", + "pn": -0.638206 + }, + { + "surface": "仏掌薯", + "readging": "つくねいも", + "pos": "名詞", + "pn": -0.638207 + }, + { + "surface": "躓く", + "readging": "つまずく", + "pos": "動詞", + "pn": -0.638277 + }, + { + "surface": "早蕨", + "readging": "さわらび", + "pos": "名詞", + "pn": -0.638279 + }, + { + "surface": "浸かる", + "readging": "つかる", + "pos": "動詞", + "pn": -0.6383 + }, + { + "surface": "学生", + "readging": "がくせい", + "pos": "名詞", + "pn": -0.638364 + }, + { + "surface": "爬虫類", + "readging": "はちゅうるい", + "pos": "名詞", + "pn": -0.638389 + }, + { + "surface": "皿秤", + "readging": "さらばかり", + "pos": "名詞", + "pn": -0.638395 + }, + { + "surface": "蠅取草", + "readging": "はえとりぐさ", + "pos": "名詞", + "pn": -0.638397 + }, + { + "surface": "飢渇", + "readging": "きかつ", + "pos": "名詞", + "pn": -0.638397 + }, + { + "surface": "今", + "readging": "きん", + "pos": "名詞", + "pn": -0.638412 + }, + { + "surface": "桑原", + "readging": "くわばら", + "pos": "名詞", + "pn": -0.638428 + }, + { + "surface": "足場", + "readging": "あしば", + "pos": "名詞", + "pn": -0.638439 + }, + { + "surface": "画策", + "readging": "かくさく", + "pos": "名詞", + "pn": -0.638456 + }, + { + "surface": "夏炉冬扇", + "readging": "かろとうせん", + "pos": "名詞", + "pn": -0.638522 + }, + { + "surface": "高低", + "readging": "たかひく", + "pos": "名詞", + "pn": -0.638589 + }, + { + "surface": "含羞", + "readging": "がんしゅう", + "pos": "名詞", + "pn": -0.638682 + }, + { + "surface": "断る", + "readging": "ことわる", + "pos": "動詞", + "pn": -0.638742 + }, + { + "surface": "一片", + "readging": "いっぺん", + "pos": "名詞", + "pn": -0.638771 + }, + { + "surface": "微量", + "readging": "びりょう", + "pos": "名詞", + "pn": -0.638774 + }, + { + "surface": "樵る", + "readging": "こる", + "pos": "動詞", + "pn": -0.6388 + }, + { + "surface": "身繕い", + "readging": "みづくろい", + "pos": "名詞", + "pn": -0.638816 + }, + { + "surface": "舟歌", + "readging": "ふなうた", + "pos": "名詞", + "pn": -0.638875 + }, + { + "surface": "ヨーヨー", + "readging": "ヨーヨー", + "pos": "名詞", + "pn": -0.638901 + }, + { + "surface": "湾", + "readging": "わん", + "pos": "名詞", + "pn": -0.63891 + }, + { + "surface": "黄塵", + "readging": "こうじん", + "pos": "名詞", + "pn": -0.638911 + }, + { + "surface": "折箱", + "readging": "おりばこ", + "pos": "名詞", + "pn": -0.638926 + }, + { + "surface": "鉈豆煙管", + "readging": "なたまめギセル", + "pos": "名詞", + "pn": -0.638973 + }, + { + "surface": "竦む", + "readging": "すくむ", + "pos": "動詞", + "pn": -0.63902 + }, + { + "surface": "止金", + "readging": "とめがね", + "pos": "名詞", + "pn": -0.639041 + }, + { + "surface": "いと", + "readging": "いと", + "pos": "副詞", + "pn": -0.639071 + }, + { + "surface": "臘月", + "readging": "ろうげつ", + "pos": "名詞", + "pn": -0.639081 + }, + { + "surface": "政略", + "readging": "せいりゃく", + "pos": "名詞", + "pn": -0.639082 + }, + { + "surface": "魔物", + "readging": "まもの", + "pos": "名詞", + "pn": -0.63916 + }, + { + "surface": "主要", + "readging": "しゅよう", + "pos": "名詞", + "pn": -0.639166 + }, + { + "surface": "捌け口", + "readging": "さばけぐち", + "pos": "名詞", + "pn": -0.639188 + }, + { + "surface": "共同", + "readging": "きょうどう", + "pos": "名詞", + "pn": -0.639225 + }, + { + "surface": "綿糸", + "readging": "めんし", + "pos": "名詞", + "pn": -0.639227 + }, + { + "surface": "首", + "readging": "くび", + "pos": "名詞", + "pn": -0.639238 + }, + { + "surface": "透かし織", + "readging": "すかしおり", + "pos": "名詞", + "pn": -0.639262 + }, + { + "surface": "徒爾", + "readging": "とじ", + "pos": "名詞", + "pn": -0.639297 + }, + { + "surface": "掌", + "readging": "たなごころ", + "pos": "名詞", + "pn": -0.639306 + }, + { + "surface": "剣先", + "readging": "けんさき", + "pos": "名詞", + "pn": -0.639318 + }, + { + "surface": "貰い水", + "readging": "もらいみず", + "pos": "名詞", + "pn": -0.63932 + }, + { + "surface": "担架", + "readging": "たんか", + "pos": "名詞", + "pn": -0.639355 + }, + { + "surface": "思慮", + "readging": "しりょ", + "pos": "名詞", + "pn": -0.639376 + }, + { + "surface": "揺る", + "readging": "ゆる", + "pos": "動詞", + "pn": -0.639432 + }, + { + "surface": "たでる", + "readging": "たでる", + "pos": "動詞", + "pn": -0.639474 + }, + { + "surface": "振掛ける", + "readging": "ふりかける", + "pos": "動詞", + "pn": -0.639487 + }, + { + "surface": "塊", + "readging": "かい", + "pos": "名詞", + "pn": -0.639488 + }, + { + "surface": "キッド", + "readging": "キッド", + "pos": "名詞", + "pn": -0.639495 + }, + { + "surface": "真前", + "readging": "まんまえ", + "pos": "名詞", + "pn": -0.639513 + }, + { + "surface": "帝位", + "readging": "ていい", + "pos": "名詞", + "pn": -0.639531 + }, + { + "surface": "吸口", + "readging": "すいくち", + "pos": "名詞", + "pn": -0.639552 + }, + { + "surface": "乳首", + "readging": "ちくび", + "pos": "名詞", + "pn": -0.639571 + }, + { + "surface": "天体", + "readging": "てんたい", + "pos": "名詞", + "pn": -0.639591 + }, + { + "surface": "窯", + "readging": "よう", + "pos": "名詞", + "pn": -0.639591 + }, + { + "surface": "高じる", + "readging": "こうじる", + "pos": "動詞", + "pn": -0.639601 + }, + { + "surface": "電波", + "readging": "でんぱ", + "pos": "名詞", + "pn": -0.639678 + }, + { + "surface": "晩生", + "readging": "ばんせい", + "pos": "名詞", + "pn": -0.639698 + }, + { + "surface": "営業", + "readging": "えいぎょう", + "pos": "名詞", + "pn": -0.639715 + }, + { + "surface": "分解", + "readging": "ぶんかい", + "pos": "名詞", + "pn": -0.639746 + }, + { + "surface": "僧侶", + "readging": "そうりょ", + "pos": "名詞", + "pn": -0.639792 + }, + { + "surface": "猿の腰掛", + "readging": "さるのこしかけ", + "pos": "名詞", + "pn": -0.639798 + }, + { + "surface": "折衝", + "readging": "せっしょう", + "pos": "名詞", + "pn": -0.639824 + }, + { + "surface": "外縁", + "readging": "がいえん", + "pos": "名詞", + "pn": -0.639825 + }, + { + "surface": "俎板", + "readging": "まないた", + "pos": "名詞", + "pn": -0.639908 + }, + { + "surface": "采", + "readging": "さい", + "pos": "名詞", + "pn": -0.639921 + }, + { + "surface": "一刀", + "readging": "いっとう", + "pos": "名詞", + "pn": -0.639932 + }, + { + "surface": "軽微", + "readging": "けいび", + "pos": "名詞", + "pn": -0.639948 + }, + { + "surface": "雑記", + "readging": "ざっき", + "pos": "名詞", + "pn": -0.639963 + }, + { + "surface": "天", + "readging": "てん", + "pos": "名詞", + "pn": -0.639993 + }, + { + "surface": "歩", + "readging": "ほ", + "pos": "名詞", + "pn": -0.640057 + }, + { + "surface": "字形", + "readging": "じけい", + "pos": "名詞", + "pn": -0.640077 + }, + { + "surface": "摩擦音", + "readging": "まさつおん", + "pos": "名詞", + "pn": -0.640083 + }, + { + "surface": "亡骸", + "readging": "なきがら", + "pos": "名詞", + "pn": -0.640137 + }, + { + "surface": "入訳", + "readging": "いりわけ", + "pos": "名詞", + "pn": -0.640177 + }, + { + "surface": "間切る", + "readging": "まぎる", + "pos": "動詞", + "pn": -0.640191 + }, + { + "surface": "妄言", + "readging": "ぼうげん", + "pos": "名詞", + "pn": -0.640208 + }, + { + "surface": "硯滴", + "readging": "けんてき", + "pos": "名詞", + "pn": -0.640227 + }, + { + "surface": "ぶつ", + "readging": "ぶつ", + "pos": "動詞", + "pn": -0.64031 + }, + { + "surface": "策謀", + "readging": "さくぼう", + "pos": "名詞", + "pn": -0.640323 + }, + { + "surface": "チップ", + "readging": "チップ", + "pos": "名詞", + "pn": -0.64033 + }, + { + "surface": "やたら漬", + "readging": "やたらづけ", + "pos": "名詞", + "pn": -0.640364 + }, + { + "surface": "胸腺", + "readging": "きょうせん", + "pos": "名詞", + "pn": -0.640392 + }, + { + "surface": "針目", + "readging": "はりめ", + "pos": "名詞", + "pn": -0.640397 + }, + { + "surface": "四顧", + "readging": "しこ", + "pos": "名詞", + "pn": -0.64043 + }, + { + "surface": "流矢", + "readging": "ながれや", + "pos": "名詞", + "pn": -0.640476 + }, + { + "surface": "召使", + "readging": "めしつかい", + "pos": "名詞", + "pn": -0.640509 + }, + { + "surface": "償う", + "readging": "つぐなう", + "pos": "動詞", + "pn": -0.640526 + }, + { + "surface": "ペスト", + "readging": "ペスト", + "pos": "名詞", + "pn": -0.640528 + }, + { + "surface": "バグ", + "readging": "バグ", + "pos": "名詞", + "pn": -0.640534 + }, + { + "surface": "喪", + "readging": "そう", + "pos": "名詞", + "pn": -0.640564 + }, + { + "surface": "眠たい", + "readging": "ねむたい", + "pos": "形容詞", + "pn": -0.640574 + }, + { + "surface": "引出し", + "readging": "ひきだし", + "pos": "名詞", + "pn": -0.6406 + }, + { + "surface": "術計", + "readging": "じゅっけい", + "pos": "名詞", + "pn": -0.640639 + }, + { + "surface": "番号", + "readging": "ばんごう", + "pos": "名詞", + "pn": -0.640705 + }, + { + "surface": "毛糸", + "readging": "けいと", + "pos": "名詞", + "pn": -0.640752 + }, + { + "surface": "剽盗", + "readging": "ひょうとう", + "pos": "名詞", + "pn": -0.640806 + }, + { + "surface": "ふくら雀", + "readging": "ふくらすずめ", + "pos": "名詞", + "pn": -0.640809 + }, + { + "surface": "沿岸", + "readging": "えんがん", + "pos": "名詞", + "pn": -0.640814 + }, + { + "surface": "法式", + "readging": "ほうしき", + "pos": "名詞", + "pn": -0.640834 + }, + { + "surface": "傍", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.640841 + }, + { + "surface": "乗移る", + "readging": "のりうつる", + "pos": "動詞", + "pn": -0.640886 + }, + { + "surface": "電話", + "readging": "でんわ", + "pos": "名詞", + "pn": -0.640893 + }, + { + "surface": "磨膝", + "readging": "すりひざ", + "pos": "名詞", + "pn": -0.640919 + }, + { + "surface": "がたがた", + "readging": "がたがた", + "pos": "副詞", + "pn": -0.640961 + }, + { + "surface": "土嚢", + "readging": "どのう", + "pos": "名詞", + "pn": -0.641018 + }, + { + "surface": "各自", + "readging": "かくじ", + "pos": "名詞", + "pn": -0.641137 + }, + { + "surface": "菅", + "readging": "すげ", + "pos": "名詞", + "pn": -0.641159 + }, + { + "surface": "縅", + "readging": "おどし", + "pos": "名詞", + "pn": -0.641204 + }, + { + "surface": "緩める", + "readging": "ゆるめる", + "pos": "動詞", + "pn": -0.641211 + }, + { + "surface": "陣", + "readging": "じん", + "pos": "名詞", + "pn": -0.641214 + }, + { + "surface": "フレア", + "readging": "フレア", + "pos": "名詞", + "pn": -0.641219 + }, + { + "surface": "誘き寄せる", + "readging": "おびきよせる", + "pos": "動詞", + "pn": -0.641273 + }, + { + "surface": "黒血", + "readging": "くろち", + "pos": "名詞", + "pn": -0.641375 + }, + { + "surface": "騙かす", + "readging": "だまかす", + "pos": "動詞", + "pn": -0.641379 + }, + { + "surface": "幻", + "readging": "げん", + "pos": "名詞", + "pn": -0.64139 + }, + { + "surface": "通謀", + "readging": "つうぼう", + "pos": "名詞", + "pn": -0.641449 + }, + { + "surface": "野老", + "readging": "ところ", + "pos": "名詞", + "pn": -0.641509 + }, + { + "surface": "回文", + "readging": "かいぶん", + "pos": "名詞", + "pn": -0.641517 + }, + { + "surface": "毛抜", + "readging": "けぬき", + "pos": "名詞", + "pn": -0.641522 + }, + { + "surface": "ピアノ", + "readging": "ピアノ", + "pos": "名詞", + "pn": -0.641539 + }, + { + "surface": "苛苛", + "readging": "いらいら", + "pos": "副詞", + "pn": -0.641621 + }, + { + "surface": "襟足", + "readging": "えりあし", + "pos": "名詞", + "pn": -0.641633 + }, + { + "surface": "ざわざわ", + "readging": "ざわざわ", + "pos": "名詞", + "pn": -0.641636 + }, + { + "surface": "蓑虫", + "readging": "みのむし", + "pos": "名詞", + "pn": -0.641701 + }, + { + "surface": "舞台裏", + "readging": "ぶたいうら", + "pos": "名詞", + "pn": -0.641714 + }, + { + "surface": "係属", + "readging": "けいぞく", + "pos": "名詞", + "pn": -0.641761 + }, + { + "surface": "半白", + "readging": "はんぱく", + "pos": "名詞", + "pn": -0.641762 + }, + { + "surface": "臍", + "readging": "ほぞ", + "pos": "名詞", + "pn": -0.64178 + }, + { + "surface": "片", + "readging": "へん", + "pos": "名詞", + "pn": -0.641885 + }, + { + "surface": "メランコリー", + "readging": "メランコリー", + "pos": "名詞", + "pn": -0.641895 + }, + { + "surface": "島流し", + "readging": "しまながし", + "pos": "名詞", + "pn": -0.6419 + }, + { + "surface": "訝る", + "readging": "いぶかる", + "pos": "動詞", + "pn": -0.641909 + }, + { + "surface": "尻切れ草履", + "readging": "しりきれぞうり", + "pos": "名詞", + "pn": -0.641932 + }, + { + "surface": "漁灯", + "readging": "ぎょとう", + "pos": "名詞", + "pn": -0.642085 + }, + { + "surface": "滅する", + "readging": "めっする", + "pos": "動詞", + "pn": -0.642087 + }, + { + "surface": "鵯", + "readging": "ひよどり", + "pos": "名詞", + "pn": -0.642098 + }, + { + "surface": "阻む", + "readging": "はばむ", + "pos": "動詞", + "pn": -0.642138 + }, + { + "surface": "麦角", + "readging": "ばっかく", + "pos": "名詞", + "pn": -0.642158 + }, + { + "surface": "襟髪", + "readging": "えりがみ", + "pos": "名詞", + "pn": -0.642174 + }, + { + "surface": "爆弾", + "readging": "ばくだん", + "pos": "名詞", + "pn": -0.642178 + }, + { + "surface": "喃喃", + "readging": "なんなん", + "pos": "名詞", + "pn": -0.642183 + }, + { + "surface": "代表", + "readging": "だいひょう", + "pos": "名詞", + "pn": -0.642301 + }, + { + "surface": "人三化七", + "readging": "にんさんばけしち", + "pos": "名詞", + "pn": -0.642316 + }, + { + "surface": "供揃え", + "readging": "ともぞろえ", + "pos": "名詞", + "pn": -0.642334 + }, + { + "surface": "凝らす", + "readging": "こらす", + "pos": "動詞", + "pn": -0.642362 + }, + { + "surface": "弊村", + "readging": "へいそん", + "pos": "名詞", + "pn": -0.64237 + }, + { + "surface": "渋柿", + "readging": "しぶがき", + "pos": "名詞", + "pn": -0.642376 + }, + { + "surface": "順位", + "readging": "じゅんい", + "pos": "名詞", + "pn": -0.642394 + }, + { + "surface": "風邪声", + "readging": "かざごえ", + "pos": "名詞", + "pn": -0.642427 + }, + { + "surface": "帯金", + "readging": "おびがね", + "pos": "名詞", + "pn": -0.642432 + }, + { + "surface": "前垂", + "readging": "まえだれ", + "pos": "名詞", + "pn": -0.642505 + }, + { + "surface": "九星", + "readging": "きゅうせい", + "pos": "名詞", + "pn": -0.642518 + }, + { + "surface": "合間", + "readging": "あいま", + "pos": "名詞", + "pn": -0.642541 + }, + { + "surface": "外皮", + "readging": "がいひ", + "pos": "名詞", + "pn": -0.642569 + }, + { + "surface": "麦焦し", + "readging": "むぎこがし", + "pos": "名詞", + "pn": -0.642579 + }, + { + "surface": "妄評", + "readging": "もうひょう", + "pos": "名詞", + "pn": -0.642593 + }, + { + "surface": "編針", + "readging": "あみばり", + "pos": "名詞", + "pn": -0.642601 + }, + { + "surface": "戦う", + "readging": "たたかう", + "pos": "動詞", + "pn": -0.642608 + }, + { + "surface": "駱駝", + "readging": "らくだ", + "pos": "名詞", + "pn": -0.642633 + }, + { + "surface": "瓠", + "readging": "ひさご", + "pos": "名詞", + "pn": -0.642698 + }, + { + "surface": "要", + "readging": "かなめ", + "pos": "名詞", + "pn": -0.6427 + }, + { + "surface": "術数", + "readging": "じゅっすう", + "pos": "名詞", + "pn": -0.642722 + }, + { + "surface": "知らん顔", + "readging": "しらんかお", + "pos": "名詞", + "pn": -0.642729 + }, + { + "surface": "提", + "readging": "てい", + "pos": "名詞", + "pn": -0.642745 + }, + { + "surface": "反り", + "readging": "そり", + "pos": "名詞", + "pn": -0.642749 + }, + { + "surface": "明き", + "readging": "あき", + "pos": "名詞", + "pn": -0.64283 + }, + { + "surface": "膠着", + "readging": "こうちゃく", + "pos": "名詞", + "pn": -0.642848 + }, + { + "surface": "逸る", + "readging": "はやる", + "pos": "動詞", + "pn": -0.64285 + }, + { + "surface": "与太", + "readging": "よた", + "pos": "名詞", + "pn": -0.642903 + }, + { + "surface": "十二支", + "readging": "じゅうにし", + "pos": "名詞", + "pn": -0.642915 + }, + { + "surface": "代地", + "readging": "だいち", + "pos": "名詞", + "pn": -0.642934 + }, + { + "surface": "合計", + "readging": "ごうけい", + "pos": "名詞", + "pn": -0.642951 + }, + { + "surface": "状", + "readging": "じょう", + "pos": "名詞", + "pn": -0.642957 + }, + { + "surface": "泡", + "readging": "あわ", + "pos": "名詞", + "pn": -0.642995 + }, + { + "surface": "前面", + "readging": "ぜんめん", + "pos": "名詞", + "pn": -0.643083 + }, + { + "surface": "開き戸", + "readging": "ひらきど", + "pos": "名詞", + "pn": -0.643086 + }, + { + "surface": "躱す", + "readging": "かわす", + "pos": "動詞", + "pn": -0.643094 + }, + { + "surface": "籬", + "readging": "まがき", + "pos": "名詞", + "pn": -0.64314 + }, + { + "surface": "末", + "readging": "まつ", + "pos": "名詞", + "pn": -0.643179 + }, + { + "surface": "暴状", + "readging": "ぼうじょう", + "pos": "名詞", + "pn": -0.643181 + }, + { + "surface": "承継", + "readging": "しょうけい", + "pos": "名詞", + "pn": -0.643208 + }, + { + "surface": "銀行", + "readging": "ぎんこう", + "pos": "名詞", + "pn": -0.643235 + }, + { + "surface": "潜む", + "readging": "ひそむ", + "pos": "動詞", + "pn": -0.643244 + }, + { + "surface": "羨む", + "readging": "うらやむ", + "pos": "動詞", + "pn": -0.643267 + }, + { + "surface": "閑語", + "readging": "かんご", + "pos": "名詞", + "pn": -0.643288 + }, + { + "surface": "屍", + "readging": "かばね", + "pos": "名詞", + "pn": -0.643336 + }, + { + "surface": "支払う", + "readging": "しはらう", + "pos": "動詞", + "pn": -0.643372 + }, + { + "surface": "真綿", + "readging": "まわた", + "pos": "名詞", + "pn": -0.643389 + }, + { + "surface": "分", + "readging": "ぶん", + "pos": "名詞", + "pn": -0.643396 + }, + { + "surface": "見目", + "readging": "みめ", + "pos": "名詞", + "pn": -0.643426 + }, + { + "surface": "硫黄", + "readging": "いおう", + "pos": "名詞", + "pn": -0.643479 + }, + { + "surface": "渦状", + "readging": "かじょう", + "pos": "名詞", + "pn": -0.643524 + }, + { + "surface": "特有", + "readging": "とくゆう", + "pos": "名詞", + "pn": -0.643584 + }, + { + "surface": "街衢", + "readging": "がいく", + "pos": "名詞", + "pn": -0.643601 + }, + { + "surface": "鉄拳", + "readging": "てっけん", + "pos": "名詞", + "pn": -0.643621 + }, + { + "surface": "引っ括る", + "readging": "ひっくくる", + "pos": "動詞", + "pn": -0.643674 + }, + { + "surface": "ぬるぬる", + "readging": "ぬるぬる", + "pos": "副詞", + "pn": -0.643694 + }, + { + "surface": "窄む", + "readging": "すぼむ", + "pos": "動詞", + "pn": -0.643723 + }, + { + "surface": "一歩", + "readging": "いっぽ", + "pos": "名詞", + "pn": -0.643733 + }, + { + "surface": "禁獄", + "readging": "きんごく", + "pos": "名詞", + "pn": -0.643739 + }, + { + "surface": "携える", + "readging": "たずさえる", + "pos": "動詞", + "pn": -0.643765 + }, + { + "surface": "参上", + "readging": "さんじょう", + "pos": "名詞", + "pn": -0.643804 + }, + { + "surface": "一一", + "readging": "いちいち", + "pos": "副詞", + "pn": -0.643817 + }, + { + "surface": "車両", + "readging": "しゃりょう", + "pos": "名詞", + "pn": -0.643824 + }, + { + "surface": "間近い", + "readging": "まぢかい", + "pos": "形容詞", + "pn": -0.643825 + }, + { + "surface": "鞍尻", + "readging": "くらじり", + "pos": "名詞", + "pn": -0.64385 + }, + { + "surface": "商人", + "readging": "しょうにん", + "pos": "名詞", + "pn": -0.643879 + }, + { + "surface": "虚仮", + "readging": "こけ", + "pos": "名詞", + "pn": -0.643949 + }, + { + "surface": "一点", + "readging": "いってん", + "pos": "名詞", + "pn": -0.643951 + }, + { + "surface": "半文", + "readging": "はんもん", + "pos": "名詞", + "pn": -0.643964 + }, + { + "surface": "胸元", + "readging": "むなもと", + "pos": "名詞", + "pn": -0.643999 + }, + { + "surface": "塗付ける", + "readging": "ぬりつける", + "pos": "動詞", + "pn": -0.644024 + }, + { + "surface": "退屈", + "readging": "たいくつ", + "pos": "名詞", + "pn": -0.644117 + }, + { + "surface": "鉤鼻", + "readging": "かぎばな", + "pos": "名詞", + "pn": -0.644134 + }, + { + "surface": "蛙泳ぎ", + "readging": "かえるおよぎ", + "pos": "名詞", + "pn": -0.644148 + }, + { + "surface": "劇", + "readging": "げき", + "pos": "名詞", + "pn": -0.644152 + }, + { + "surface": "蕎麦掻き", + "readging": "そばがき", + "pos": "名詞", + "pn": -0.644153 + }, + { + "surface": "ちゃう", + "readging": "ちゃう", + "pos": "動詞", + "pn": -0.644158 + }, + { + "surface": "付け足す", + "readging": "つけたす", + "pos": "動詞", + "pn": -0.644159 + }, + { + "surface": "菊菜", + "readging": "きくな", + "pos": "名詞", + "pn": -0.644178 + }, + { + "surface": "曾孫", + "readging": "ひこ", + "pos": "名詞", + "pn": -0.644183 + }, + { + "surface": "胸膜", + "readging": "きょうまく", + "pos": "名詞", + "pn": -0.644226 + }, + { + "surface": "黎明", + "readging": "れいめい", + "pos": "名詞", + "pn": -0.644303 + }, + { + "surface": "はぐる", + "readging": "はぐる", + "pos": "動詞", + "pn": -0.644324 + }, + { + "surface": "博打打ち", + "readging": "ばくちうち", + "pos": "名詞", + "pn": -0.644353 + }, + { + "surface": "つつく", + "readging": "つつく", + "pos": "動詞", + "pn": -0.644369 + }, + { + "surface": "倅", + "readging": "せがれ", + "pos": "名詞", + "pn": -0.644378 + }, + { + "surface": "嘯く", + "readging": "うそぶく", + "pos": "動詞", + "pn": -0.644391 + }, + { + "surface": "薄地", + "readging": "うすじ", + "pos": "名詞", + "pn": -0.644396 + }, + { + "surface": "接見", + "readging": "せっけん", + "pos": "名詞", + "pn": -0.644396 + }, + { + "surface": "チフス", + "readging": "チフス", + "pos": "名詞", + "pn": -0.64443 + }, + { + "surface": "ごたまぜ", + "readging": "ごたまぜ", + "pos": "名詞", + "pn": -0.644471 + }, + { + "surface": "漬け込む", + "readging": "つけこむ", + "pos": "動詞", + "pn": -0.644613 + }, + { + "surface": "洋風", + "readging": "ようふう", + "pos": "名詞", + "pn": -0.644639 + }, + { + "surface": "欲張る", + "readging": "よくばる", + "pos": "動詞", + "pn": -0.644648 + }, + { + "surface": "港", + "readging": "みなと", + "pos": "名詞", + "pn": -0.644679 + }, + { + "surface": "殿", + "readging": "でん", + "pos": "名詞", + "pn": -0.644694 + }, + { + "surface": "剽げる", + "readging": "ひょうげる", + "pos": "動詞", + "pn": -0.644737 + }, + { + "surface": "延", + "readging": "えん", + "pos": "名詞", + "pn": -0.644747 + }, + { + "surface": "発育", + "readging": "はついく", + "pos": "名詞", + "pn": -0.644791 + }, + { + "surface": "妻", + "readging": "つま", + "pos": "名詞", + "pn": -0.644872 + }, + { + "surface": "しゃぶしゃぶ", + "readging": "しゃぶしゃぶ", + "pos": "副詞", + "pn": -0.644893 + }, + { + "surface": "立", + "readging": "りつ", + "pos": "名詞", + "pn": -0.64491 + }, + { + "surface": "連絡", + "readging": "れんらく", + "pos": "名詞", + "pn": -0.644913 + }, + { + "surface": "返歌", + "readging": "へんか", + "pos": "名詞", + "pn": -0.644919 + }, + { + "surface": "マッサージ", + "readging": "マッサージ", + "pos": "名詞", + "pn": -0.64492 + }, + { + "surface": "童", + "readging": "わらべ", + "pos": "名詞", + "pn": -0.644949 + }, + { + "surface": "伝", + "readging": "でん", + "pos": "名詞", + "pn": -0.644961 + }, + { + "surface": "取巻く", + "readging": "とりまく", + "pos": "動詞", + "pn": -0.645012 + }, + { + "surface": "いなす", + "readging": "いなす", + "pos": "動詞", + "pn": -0.645046 + }, + { + "surface": "土壇場", + "readging": "どたんば", + "pos": "名詞", + "pn": -0.645065 + }, + { + "surface": "趣", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.645096 + }, + { + "surface": "呉汁", + "readging": "ごじる", + "pos": "名詞", + "pn": -0.6451 + }, + { + "surface": "音便", + "readging": "おんびん", + "pos": "名詞", + "pn": -0.645131 + }, + { + "surface": "履物", + "readging": "はきもの", + "pos": "名詞", + "pn": -0.645149 + }, + { + "surface": "仕組む", + "readging": "しくむ", + "pos": "動詞", + "pn": -0.645154 + }, + { + "surface": "一文半銭", + "readging": "いちもんきなか", + "pos": "名詞", + "pn": -0.645167 + }, + { + "surface": "土台", + "readging": "どだい", + "pos": "名詞", + "pn": -0.645175 + }, + { + "surface": "雲雀", + "readging": "ひばり", + "pos": "名詞", + "pn": -0.645189 + }, + { + "surface": "寸分", + "readging": "すんぶん", + "pos": "名詞", + "pn": -0.645213 + }, + { + "surface": "旅寓", + "readging": "りょぐう", + "pos": "名詞", + "pn": -0.645222 + }, + { + "surface": "占う", + "readging": "うらなう", + "pos": "動詞", + "pn": -0.645334 + }, + { + "surface": "脚絆", + "readging": "きゃはん", + "pos": "名詞", + "pn": -0.645362 + }, + { + "surface": "冗費", + "readging": "じょうひ", + "pos": "名詞", + "pn": -0.645382 + }, + { + "surface": "飲料", + "readging": "のみりょう", + "pos": "名詞", + "pn": -0.645389 + }, + { + "surface": "暗暗裏", + "readging": "あんあんり", + "pos": "名詞", + "pn": -0.645455 + }, + { + "surface": "差置く", + "readging": "さしおく", + "pos": "動詞", + "pn": -0.645483 + }, + { + "surface": "永久歯", + "readging": "えいきゅうし", + "pos": "名詞", + "pn": -0.645488 + }, + { + "surface": "鋳掛", + "readging": "いかけ", + "pos": "名詞", + "pn": -0.645549 + }, + { + "surface": "率", + "readging": "そつ", + "pos": "名詞", + "pn": -0.645575 + }, + { + "surface": "仕掛ける", + "readging": "しかける", + "pos": "動詞", + "pn": -0.645601 + }, + { + "surface": "田亀", + "readging": "たがめ", + "pos": "名詞", + "pn": -0.645619 + }, + { + "surface": "虫の息", + "readging": "むしのいき", + "pos": "名詞", + "pn": -0.645631 + }, + { + "surface": "幼名", + "readging": "ようみょう", + "pos": "名詞", + "pn": -0.645695 + }, + { + "surface": "原野", + "readging": "げんや", + "pos": "名詞", + "pn": -0.645697 + }, + { + "surface": "着する", + "readging": "ちゃくする", + "pos": "動詞", + "pn": -0.64572 + }, + { + "surface": "縄梯子", + "readging": "なわばしご", + "pos": "名詞", + "pn": -0.64573 + }, + { + "surface": "細筆", + "readging": "さいひつ", + "pos": "名詞", + "pn": -0.645738 + }, + { + "surface": "寂", + "readging": "じゃく", + "pos": "名詞", + "pn": -0.645784 + }, + { + "surface": "峻拒", + "readging": "しゅんきょ", + "pos": "名詞", + "pn": -0.645916 + }, + { + "surface": "分骨", + "readging": "ぶんこつ", + "pos": "名詞", + "pn": -0.645935 + }, + { + "surface": "空隙", + "readging": "くうげき", + "pos": "名詞", + "pn": -0.645938 + }, + { + "surface": "軋めく", + "readging": "きしめく", + "pos": "動詞", + "pn": -0.64607 + }, + { + "surface": "舐る", + "readging": "ねぶる", + "pos": "動詞", + "pn": -0.64614 + }, + { + "surface": "銅鑼", + "readging": "どら", + "pos": "名詞", + "pn": -0.646244 + }, + { + "surface": "藁灰", + "readging": "わらばい", + "pos": "名詞", + "pn": -0.646257 + }, + { + "surface": "即日", + "readging": "そくじつ", + "pos": "名詞", + "pn": -0.646263 + }, + { + "surface": "仏前", + "readging": "ぶつぜん", + "pos": "名詞", + "pn": -0.646272 + }, + { + "surface": "別れ別れ", + "readging": "わかれわかれ", + "pos": "名詞", + "pn": -0.646289 + }, + { + "surface": "おでき", + "readging": "おでき", + "pos": "名詞", + "pn": -0.646326 + }, + { + "surface": "膿む", + "readging": "うむ", + "pos": "動詞", + "pn": -0.646329 + }, + { + "surface": "横腹", + "readging": "よこばら", + "pos": "名詞", + "pn": -0.646343 + }, + { + "surface": "見当る", + "readging": "みあたる", + "pos": "動詞", + "pn": -0.646436 + }, + { + "surface": "経巡る", + "readging": "へめぐる", + "pos": "動詞", + "pn": -0.646473 + }, + { + "surface": "僅僅", + "readging": "きんきん", + "pos": "副詞", + "pn": -0.646475 + }, + { + "surface": "博打", + "readging": "ばくち", + "pos": "名詞", + "pn": -0.64649 + }, + { + "surface": "ぽとぽと", + "readging": "ぽとぽと", + "pos": "副詞", + "pn": -0.646501 + }, + { + "surface": "小心", + "readging": "しょうしん", + "pos": "名詞", + "pn": -0.646502 + }, + { + "surface": "ぶす", + "readging": "ぶす", + "pos": "動詞", + "pn": -0.646523 + }, + { + "surface": "真直中", + "readging": "まっただなか", + "pos": "名詞", + "pn": -0.646543 + }, + { + "surface": "葛餡", + "readging": "くずあん", + "pos": "名詞", + "pn": -0.646553 + }, + { + "surface": "固辞", + "readging": "こじ", + "pos": "名詞", + "pn": -0.646643 + }, + { + "surface": "呼び名", + "readging": "よびな", + "pos": "名詞", + "pn": -0.646646 + }, + { + "surface": "処遇", + "readging": "しょぐう", + "pos": "名詞", + "pn": -0.646711 + }, + { + "surface": "臣下", + "readging": "しんか", + "pos": "名詞", + "pn": -0.646785 + }, + { + "surface": "コッペ パン", + "readging": "コッペ パン", + "pos": "名詞", + "pn": -0.646795 + }, + { + "surface": "炬火", + "readging": "きょか", + "pos": "名詞", + "pn": -0.646806 + }, + { + "surface": "振乱す", + "readging": "ふりみだす", + "pos": "動詞", + "pn": -0.646813 + }, + { + "surface": "誤聞", + "readging": "ごぶん", + "pos": "名詞", + "pn": -0.646824 + }, + { + "surface": "打撲", + "readging": "だぼく", + "pos": "名詞", + "pn": -0.646853 + }, + { + "surface": "こじ開ける", + "readging": "こじあける", + "pos": "動詞", + "pn": -0.646904 + }, + { + "surface": "手遊び", + "readging": "てすさび", + "pos": "名詞", + "pn": -0.646933 + }, + { + "surface": "泣き顔", + "readging": "なきがお", + "pos": "名詞", + "pn": -0.647034 + }, + { + "surface": "引船", + "readging": "ひきふね", + "pos": "名詞", + "pn": -0.647042 + }, + { + "surface": "和紙", + "readging": "わし", + "pos": "名詞", + "pn": -0.647067 + }, + { + "surface": "滑車", + "readging": "かっしゃ", + "pos": "名詞", + "pn": -0.64707 + }, + { + "surface": "兵略", + "readging": "へいりゃく", + "pos": "名詞", + "pn": -0.647164 + }, + { + "surface": "五目飯", + "readging": "ごもくめし", + "pos": "名詞", + "pn": -0.647175 + }, + { + "surface": "グリス", + "readging": "グリス", + "pos": "名詞", + "pn": -0.647185 + }, + { + "surface": "中次", + "readging": "なかつぎ", + "pos": "名詞", + "pn": -0.647191 + }, + { + "surface": "時の間", + "readging": "ときのま", + "pos": "名詞", + "pn": -0.647219 + }, + { + "surface": "ドリブル", + "readging": "ドリブル", + "pos": "名詞", + "pn": -0.647346 + }, + { + "surface": "薩摩絣", + "readging": "さつまがすり", + "pos": "名詞", + "pn": -0.647399 + }, + { + "surface": "咽", + "readging": "いん", + "pos": "名詞", + "pn": -0.647404 + }, + { + "surface": "報道", + "readging": "ほうどう", + "pos": "名詞", + "pn": -0.647462 + }, + { + "surface": "作戦", + "readging": "さくせん", + "pos": "名詞", + "pn": -0.647504 + }, + { + "surface": "ずり", + "readging": "ずり", + "pos": "名詞", + "pn": -0.647564 + }, + { + "surface": "領土", + "readging": "りょうど", + "pos": "名詞", + "pn": -0.647586 + }, + { + "surface": "空言", + "readging": "くうげん", + "pos": "名詞", + "pn": -0.647611 + }, + { + "surface": "迎える", + "readging": "むかえる", + "pos": "動詞", + "pn": -0.647623 + }, + { + "surface": "党派", + "readging": "とうは", + "pos": "名詞", + "pn": -0.647661 + }, + { + "surface": "誑す", + "readging": "たらす", + "pos": "動詞", + "pn": -0.647717 + }, + { + "surface": "流罪", + "readging": "るざい", + "pos": "名詞", + "pn": -0.647796 + }, + { + "surface": "追従", + "readging": "ついしょう", + "pos": "名詞", + "pn": -0.647818 + }, + { + "surface": "隔たり", + "readging": "へだたり", + "pos": "名詞", + "pn": -0.647856 + }, + { + "surface": "行装", + "readging": "こうそう", + "pos": "名詞", + "pn": -0.647878 + }, + { + "surface": "鼻曲り", + "readging": "はなまがり", + "pos": "名詞", + "pn": -0.647888 + }, + { + "surface": "リント", + "readging": "リント", + "pos": "名詞", + "pn": -0.647893 + }, + { + "surface": "むら", + "readging": "むら", + "pos": "名詞", + "pn": -0.647895 + }, + { + "surface": "肥たご", + "readging": "こえたご", + "pos": "名詞", + "pn": -0.648046 + }, + { + "surface": "種物", + "readging": "たねもの", + "pos": "名詞", + "pn": -0.648071 + }, + { + "surface": "落し", + "readging": "おとし", + "pos": "名詞", + "pn": -0.648073 + }, + { + "surface": "田楽豆腐", + "readging": "でんがくどうふ", + "pos": "名詞", + "pn": -0.648078 + }, + { + "surface": "非人", + "readging": "ひにん", + "pos": "名詞", + "pn": -0.648109 + }, + { + "surface": "木醂", + "readging": "きざわし", + "pos": "名詞", + "pn": -0.648113 + }, + { + "surface": "ふぐり", + "readging": "ふぐり", + "pos": "名詞", + "pn": -0.648135 + }, + { + "surface": "気振り", + "readging": "けぶり", + "pos": "名詞", + "pn": -0.648139 + }, + { + "surface": "ベルト", + "readging": "ベルトコンベヤー", + "pos": "名詞", + "pn": -0.648143 + }, + { + "surface": "腋の下", + "readging": "わきのした", + "pos": "名詞", + "pn": -0.648144 + }, + { + "surface": "薇", + "readging": "ぜんまい", + "pos": "名詞", + "pn": -0.648176 + }, + { + "surface": "本然", + "readging": "ほんぜん", + "pos": "名詞", + "pn": -0.648249 + }, + { + "surface": "配する", + "readging": "はいする", + "pos": "動詞", + "pn": -0.648277 + }, + { + "surface": "吟唱", + "readging": "ぎんしょう", + "pos": "名詞", + "pn": -0.648289 + }, + { + "surface": "取捨てる", + "readging": "とりすてる", + "pos": "動詞", + "pn": -0.64831 + }, + { + "surface": "乱", + "readging": "らん", + "pos": "名詞", + "pn": -0.648332 + }, + { + "surface": "芝", + "readging": "しば", + "pos": "名詞", + "pn": -0.648351 + }, + { + "surface": "古寺", + "readging": "こじ", + "pos": "名詞", + "pn": -0.648375 + }, + { + "surface": "湖", + "readging": "みずうみ", + "pos": "名詞", + "pn": -0.648412 + }, + { + "surface": "隠顕", + "readging": "いんけん", + "pos": "名詞", + "pn": -0.648414 + }, + { + "surface": "終日", + "readging": "ひもすがら", + "pos": "副詞", + "pn": -0.648492 + }, + { + "surface": "出直す", + "readging": "でなおす", + "pos": "動詞", + "pn": -0.648504 + }, + { + "surface": "酸化", + "readging": "さんか", + "pos": "名詞", + "pn": -0.64855 + }, + { + "surface": "壺焼", + "readging": "つぼやき", + "pos": "名詞", + "pn": -0.648598 + }, + { + "surface": "紛らわす", + "readging": "まぎらわす", + "pos": "動詞", + "pn": -0.648604 + }, + { + "surface": "和物", + "readging": "あえもの", + "pos": "名詞", + "pn": -0.648617 + }, + { + "surface": "引っ掻く", + "readging": "ひっかく", + "pos": "動詞", + "pn": -0.648643 + }, + { + "surface": "竜頭", + "readging": "りゅうず", + "pos": "名詞", + "pn": -0.648645 + }, + { + "surface": "すかす", + "readging": "すかす", + "pos": "動詞", + "pn": -0.648659 + }, + { + "surface": "どっぷり", + "readging": "どっぷり", + "pos": "副詞", + "pn": -0.648675 + }, + { + "surface": "瞳", + "readging": "ひとみ", + "pos": "名詞", + "pn": -0.64868 + }, + { + "surface": "川原}{河原者", + "readging": "かわら", + "pos": "名詞", + "pn": -0.648721 + }, + { + "surface": "回忌", + "readging": "かいき", + "pos": "名詞", + "pn": -0.648735 + }, + { + "surface": "台無し", + "readging": "だいなし", + "pos": "名詞", + "pn": -0.648763 + }, + { + "surface": "端銭", + "readging": "はしたぜに", + "pos": "名詞", + "pn": -0.648771 + }, + { + "surface": "条播", + "readging": "じょうは", + "pos": "名詞", + "pn": -0.648853 + }, + { + "surface": "機先", + "readging": "きせん", + "pos": "名詞", + "pn": -0.648859 + }, + { + "surface": "論詰", + "readging": "ろんきつ", + "pos": "名詞", + "pn": -0.648916 + }, + { + "surface": "引っ剥がす", + "readging": "ひっぱがす", + "pos": "動詞", + "pn": -0.648934 + }, + { + "surface": "どん", + "readging": "どん", + "pos": "名詞", + "pn": -0.648987 + }, + { + "surface": "恥知らず", + "readging": "はじしらず", + "pos": "名詞", + "pn": -0.648994 + }, + { + "surface": "虚仮威し", + "readging": "こけおどし", + "pos": "名詞", + "pn": -0.649006 + }, + { + "surface": "処する", + "readging": "しょする", + "pos": "動詞", + "pn": -0.649059 + }, + { + "surface": "飯事", + "readging": "ままごと", + "pos": "名詞", + "pn": -0.649108 + }, + { + "surface": "終える", + "readging": "おえる", + "pos": "動詞", + "pn": -0.649124 + }, + { + "surface": "ルーペ", + "readging": "ルーペ", + "pos": "名詞", + "pn": -0.64928 + }, + { + "surface": "雀", + "readging": "すずめ", + "pos": "名詞", + "pn": -0.649298 + }, + { + "surface": "折損", + "readging": "せっそん", + "pos": "名詞", + "pn": -0.64934 + }, + { + "surface": "巡歴", + "readging": "じゅんれき", + "pos": "名詞", + "pn": -0.649369 + }, + { + "surface": "稜", + "readging": "そば", + "pos": "名詞", + "pn": -0.649403 + }, + { + "surface": "火山", + "readging": "かざん", + "pos": "名詞", + "pn": -0.649406 + }, + { + "surface": "決定", + "readging": "けってい", + "pos": "名詞", + "pn": -0.649413 + }, + { + "surface": "参", + "readging": "さん", + "pos": "名詞", + "pn": -0.649413 + }, + { + "surface": "埋もれる", + "readging": "うずもれる", + "pos": "動詞", + "pn": -0.649426 + }, + { + "surface": "苧環", + "readging": "おだまき", + "pos": "名詞", + "pn": -0.649443 + }, + { + "surface": "押し返す", + "readging": "おしかえす", + "pos": "動詞", + "pn": -0.649445 + }, + { + "surface": "左", + "readging": "ひだり", + "pos": "名詞", + "pn": -0.649468 + }, + { + "surface": "忍", + "readging": "にん", + "pos": "名詞", + "pn": -0.649469 + }, + { + "surface": "カムフラージュ", + "readging": "カムフラージュ", + "pos": "名詞", + "pn": -0.64949 + }, + { + "surface": "甲虫", + "readging": "こうちゅう", + "pos": "名詞", + "pn": -0.649532 + }, + { + "surface": "諸般", + "readging": "しょはん", + "pos": "名詞", + "pn": -0.649538 + }, + { + "surface": "屏風", + "readging": "びょうぶ", + "pos": "名詞", + "pn": -0.649566 + }, + { + "surface": "打傷", + "readging": "うちきず", + "pos": "名詞", + "pn": -0.649595 + }, + { + "surface": "銭差", + "readging": "ぜにさし", + "pos": "名詞", + "pn": -0.649609 + }, + { + "surface": "襷", + "readging": "たすき", + "pos": "名詞", + "pn": -0.649627 + }, + { + "surface": "消夏", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.649665 + }, + { + "surface": "藁苞", + "readging": "わらづと", + "pos": "名詞", + "pn": -0.649679 + }, + { + "surface": "矛", + "readging": "ほこ", + "pos": "名詞", + "pn": -0.649734 + }, + { + "surface": "百態", + "readging": "ひゃくたい", + "pos": "名詞", + "pn": -0.649752 + }, + { + "surface": "迫持", + "readging": "せりもち", + "pos": "名詞", + "pn": -0.649808 + }, + { + "surface": "目眩く", + "readging": "めくるめく", + "pos": "動詞", + "pn": -0.649833 + }, + { + "surface": "上げ下ろし", + "readging": "あげおろし", + "pos": "名詞", + "pn": -0.649839 + }, + { + "surface": "一寸法師", + "readging": "いっすんぼうし", + "pos": "名詞", + "pn": -0.649853 + }, + { + "surface": "生石灰", + "readging": "せいせっかい", + "pos": "名詞", + "pn": -0.649951 + }, + { + "surface": "謝罪", + "readging": "しゃざい", + "pos": "名詞", + "pn": -0.649968 + }, + { + "surface": "下男", + "readging": "しもおとこ", + "pos": "名詞", + "pn": -0.650005 + }, + { + "surface": "返事", + "readging": "へんじ", + "pos": "名詞", + "pn": -0.650016 + }, + { + "surface": "点", + "readging": "てん", + "pos": "名詞", + "pn": -0.650027 + }, + { + "surface": "額", + "readging": "がく", + "pos": "名詞", + "pn": -0.650052 + }, + { + "surface": "寝付き", + "readging": "ねつき", + "pos": "名詞", + "pn": -0.650066 + }, + { + "surface": "狸", + "readging": "たぬき", + "pos": "名詞", + "pn": -0.650189 + }, + { + "surface": "付け根", + "readging": "つけね", + "pos": "名詞", + "pn": -0.650261 + }, + { + "surface": "正月", + "readging": "しょうがつ", + "pos": "名詞", + "pn": -0.650268 + }, + { + "surface": "漁火", + "readging": "いさりび", + "pos": "名詞", + "pn": -0.650306 + }, + { + "surface": "絡まる", + "readging": "からまる", + "pos": "動詞", + "pn": -0.650314 + }, + { + "surface": "天蓋", + "readging": "てんがい", + "pos": "名詞", + "pn": -0.650466 + }, + { + "surface": "格式張る", + "readging": "かくしきばる", + "pos": "動詞", + "pn": -0.650479 + }, + { + "surface": "奄奄", + "readging": "えんえん", + "pos": "名詞", + "pn": -0.650524 + }, + { + "surface": "聊爾", + "readging": "りょうじ", + "pos": "名詞", + "pn": -0.650615 + }, + { + "surface": "下痢", + "readging": "げり", + "pos": "名詞", + "pn": -0.650638 + }, + { + "surface": "小楊枝", + "readging": "こようじ", + "pos": "名詞", + "pn": -0.65065 + }, + { + "surface": "侵食", + "readging": "しんしょく", + "pos": "名詞", + "pn": -0.650675 + }, + { + "surface": "出張る", + "readging": "でばる", + "pos": "動詞", + "pn": -0.650681 + }, + { + "surface": "廃り", + "readging": "すたり", + "pos": "名詞", + "pn": -0.650754 + }, + { + "surface": "お姫様", + "readging": "おひいさま", + "pos": "名詞", + "pn": -0.650756 + }, + { + "surface": "郷", + "readging": "ごう", + "pos": "名詞", + "pn": -0.650764 + }, + { + "surface": "自身", + "readging": "じしん", + "pos": "名詞", + "pn": -0.650794 + }, + { + "surface": "旅先", + "readging": "たびさき", + "pos": "名詞", + "pn": -0.650813 + }, + { + "surface": "巡察", + "readging": "じゅんさつ", + "pos": "名詞", + "pn": -0.650866 + }, + { + "surface": "膏薬", + "readging": "こうやく", + "pos": "名詞", + "pn": -0.650886 + }, + { + "surface": "寄り", + "readging": "より", + "pos": "名詞", + "pn": -0.650977 + }, + { + "surface": "革緒", + "readging": "かわお", + "pos": "名詞", + "pn": -0.650978 + }, + { + "surface": "沢", + "readging": "たく", + "pos": "名詞", + "pn": -0.651066 + }, + { + "surface": "断", + "readging": "だん", + "pos": "名詞", + "pn": -0.651069 + }, + { + "surface": "目鼻", + "readging": "めはな", + "pos": "名詞", + "pn": -0.651074 + }, + { + "surface": "打見る", + "readging": "うちみる", + "pos": "動詞", + "pn": -0.651083 + }, + { + "surface": "吠える", + "readging": "ほえる", + "pos": "動詞", + "pn": -0.65114 + }, + { + "surface": "フィルム", + "readging": "フィルム", + "pos": "名詞", + "pn": -0.65115 + }, + { + "surface": "蝶番", + "readging": "ちょうつがい", + "pos": "名詞", + "pn": -0.651194 + }, + { + "surface": "ふん捕まえる", + "readging": "ふんづかまえる", + "pos": "動詞", + "pn": -0.651231 + }, + { + "surface": "錯誤", + "readging": "さくご", + "pos": "名詞", + "pn": -0.651317 + }, + { + "surface": "両者", + "readging": "りょうしゃ", + "pos": "名詞", + "pn": -0.651335 + }, + { + "surface": "蜂起", + "readging": "ほうき", + "pos": "名詞", + "pn": -0.651355 + }, + { + "surface": "天目山", + "readging": "てんもくざん", + "pos": "名詞", + "pn": -0.651375 + }, + { + "surface": "停泊", + "readging": "ていはく", + "pos": "名詞", + "pn": -0.651392 + }, + { + "surface": "丁寧", + "readging": "ていねい", + "pos": "名詞", + "pn": -0.651414 + }, + { + "surface": "ずらす", + "readging": "ずらす", + "pos": "動詞", + "pn": -0.651466 + }, + { + "surface": "静める", + "readging": "しずめる", + "pos": "動詞", + "pn": -0.651477 + }, + { + "surface": "水こぼし", + "readging": "みずこぼし", + "pos": "名詞", + "pn": -0.651566 + }, + { + "surface": "一度", + "readging": "ひとたび", + "pos": "名詞", + "pn": -0.651567 + }, + { + "surface": "天の邪鬼", + "readging": "あまのじゃく", + "pos": "名詞", + "pn": -0.651599 + }, + { + "surface": "気分", + "readging": "きぶん", + "pos": "名詞", + "pn": -0.651613 + }, + { + "surface": "緒", + "readging": "お", + "pos": "名詞", + "pn": -0.651677 + }, + { + "surface": "反意", + "readging": "はんい", + "pos": "名詞", + "pn": -0.651718 + }, + { + "surface": "おこし", + "readging": "おこし", + "pos": "名詞", + "pn": -0.651756 + }, + { + "surface": "拵える", + "readging": "こしらえる", + "pos": "動詞", + "pn": -0.651866 + }, + { + "surface": "樹皮", + "readging": "じゅひ", + "pos": "名詞", + "pn": -0.651872 + }, + { + "surface": "毒気", + "readging": "どっき", + "pos": "名詞", + "pn": -0.651973 + }, + { + "surface": "スポイト", + "readging": "スポイト", + "pos": "名詞", + "pn": -0.652003 + }, + { + "surface": "丸ごと", + "readging": "まるごと", + "pos": "副詞", + "pn": -0.652026 + }, + { + "surface": "逆剥け", + "readging": "さかむけ", + "pos": "名詞", + "pn": -0.652042 + }, + { + "surface": "兵器", + "readging": "へいき", + "pos": "名詞", + "pn": -0.652054 + }, + { + "surface": "由", + "readging": "ゆ", + "pos": "名詞", + "pn": -0.652066 + }, + { + "surface": "主君", + "readging": "しゅくん", + "pos": "名詞", + "pn": -0.652135 + }, + { + "surface": "骨揚げ", + "readging": "こつあげ", + "pos": "名詞", + "pn": -0.652215 + }, + { + "surface": "起き上り小法師", + "readging": "おきあがりこぼし", + "pos": "名詞", + "pn": -0.652225 + }, + { + "surface": "駅", + "readging": "えき", + "pos": "名詞", + "pn": -0.652228 + }, + { + "surface": "枡目", + "readging": "ますめ", + "pos": "名詞", + "pn": -0.65223 + }, + { + "surface": "制", + "readging": "せい", + "pos": "名詞", + "pn": -0.652231 + }, + { + "surface": "茶掛", + "readging": "ちゃがけ", + "pos": "名詞", + "pn": -0.652246 + }, + { + "surface": "物臭", + "readging": "ものぐさ", + "pos": "名詞", + "pn": -0.6523 + }, + { + "surface": "輿", + "readging": "よ", + "pos": "名詞", + "pn": -0.652321 + }, + { + "surface": "墨袋", + "readging": "すみぶくろ", + "pos": "名詞", + "pn": -0.652322 + }, + { + "surface": "弾み", + "readging": "はずみ", + "pos": "名詞", + "pn": -0.652337 + }, + { + "surface": "出来", + "readging": "でき", + "pos": "名詞", + "pn": -0.652375 + }, + { + "surface": "謝する", + "readging": "しゃする", + "pos": "動詞", + "pn": -0.652423 + }, + { + "surface": "町外れ", + "readging": "まちはずれ", + "pos": "名詞", + "pn": -0.652497 + }, + { + "surface": "刺身", + "readging": "さしみ", + "pos": "名詞", + "pn": -0.652569 + }, + { + "surface": "嬲り殺し", + "readging": "なぶりごろし", + "pos": "名詞", + "pn": -0.652571 + }, + { + "surface": "築", + "readging": "ちく", + "pos": "名詞", + "pn": -0.652682 + }, + { + "surface": "桜", + "readging": "さくら", + "pos": "名詞", + "pn": -0.652725 + }, + { + "surface": "泣きじゃくる", + "readging": "なきじゃくる", + "pos": "動詞", + "pn": -0.652737 + }, + { + "surface": "こはぜ", + "readging": "こはぜ", + "pos": "名詞", + "pn": -0.652773 + }, + { + "surface": "塩花", + "readging": "しおばな", + "pos": "名詞", + "pn": -0.652779 + }, + { + "surface": "さしぐむ", + "readging": "さしぐむ", + "pos": "動詞", + "pn": -0.652805 + }, + { + "surface": "夜話", + "readging": "やわ", + "pos": "名詞", + "pn": -0.652824 + }, + { + "surface": "時計", + "readging": "とけい", + "pos": "名詞", + "pn": -0.652854 + }, + { + "surface": "焙じる", + "readging": "ほうじる", + "pos": "動詞", + "pn": -0.652886 + }, + { + "surface": "翼", + "readging": "よく", + "pos": "名詞", + "pn": -0.652902 + }, + { + "surface": "別名", + "readging": "べつめい", + "pos": "名詞", + "pn": -0.652916 + }, + { + "surface": "桶", + "readging": "おけ", + "pos": "名詞", + "pn": -0.652919 + }, + { + "surface": "壁蝨", + "readging": "だに", + "pos": "名詞", + "pn": -0.652983 + }, + { + "surface": "違える", + "readging": "ちがえる", + "pos": "動詞", + "pn": -0.653037 + }, + { + "surface": "工業", + "readging": "こうぎょう", + "pos": "名詞", + "pn": -0.653056 + }, + { + "surface": "連なる", + "readging": "つらなる", + "pos": "動詞", + "pn": -0.653134 + }, + { + "surface": "曾祖父", + "readging": "ひじじ", + "pos": "名詞", + "pn": -0.65322 + }, + { + "surface": "他方", + "readging": "たほう", + "pos": "名詞", + "pn": -0.65323 + }, + { + "surface": "戦禍", + "readging": "せんか", + "pos": "名詞", + "pn": -0.653245 + }, + { + "surface": "空説", + "readging": "くうせつ", + "pos": "名詞", + "pn": -0.653248 + }, + { + "surface": "日焼け", + "readging": "ひやけ", + "pos": "名詞", + "pn": -0.653298 + }, + { + "surface": "怒号", + "readging": "どごう", + "pos": "名詞", + "pn": -0.653367 + }, + { + "surface": "染料", + "readging": "せんりょう", + "pos": "名詞", + "pn": -0.653384 + }, + { + "surface": "烈", + "readging": "れつ", + "pos": "名詞", + "pn": -0.653425 + }, + { + "surface": "灯影", + "readging": "とうえい", + "pos": "名詞", + "pn": -0.653451 + }, + { + "surface": "日傘", + "readging": "ひがさ", + "pos": "名詞", + "pn": -0.653513 + }, + { + "surface": "平場", + "readging": "ひらば", + "pos": "名詞", + "pn": -0.653545 + }, + { + "surface": "路次", + "readging": "ろじ", + "pos": "名詞", + "pn": -0.653581 + }, + { + "surface": "荒稼ぎ", + "readging": "あらかせぎ", + "pos": "名詞", + "pn": -0.653628 + }, + { + "surface": "事寄せる", + "readging": "ことよせる", + "pos": "動詞", + "pn": -0.653813 + }, + { + "surface": "道の辺", + "readging": "みちのべ", + "pos": "名詞", + "pn": -0.653814 + }, + { + "surface": "透写", + "readging": "とうしゃ", + "pos": "名詞", + "pn": -0.653855 + }, + { + "surface": "言動", + "readging": "げんどう", + "pos": "名詞", + "pn": -0.653932 + }, + { + "surface": "栗鼠", + "readging": "りす", + "pos": "名詞", + "pn": -0.653948 + }, + { + "surface": "寝具", + "readging": "しんぐ", + "pos": "名詞", + "pn": -0.653957 + }, + { + "surface": "研究", + "readging": "けんきゅう", + "pos": "名詞", + "pn": -0.653995 + }, + { + "surface": "漢方薬", + "readging": "かんぽうやく", + "pos": "名詞", + "pn": -0.654059 + }, + { + "surface": "椅子", + "readging": "いす", + "pos": "名詞", + "pn": -0.654071 + }, + { + "surface": "吹っ切れる", + "readging": "ふっきれる", + "pos": "動詞", + "pn": -0.654075 + }, + { + "surface": "鍵", + "readging": "けん", + "pos": "名詞", + "pn": -0.654114 + }, + { + "surface": "銀漢", + "readging": "ぎんかん", + "pos": "名詞", + "pn": -0.654169 + }, + { + "surface": "細片", + "readging": "さいへん", + "pos": "名詞", + "pn": -0.65419 + }, + { + "surface": "丸絎", + "readging": "まるぐけ", + "pos": "名詞", + "pn": -0.654191 + }, + { + "surface": "畳", + "readging": "じょう", + "pos": "名詞", + "pn": -0.654267 + }, + { + "surface": "ぼやかす", + "readging": "ぼやかす", + "pos": "動詞", + "pn": -0.654281 + }, + { + "surface": "突袖", + "readging": "つきそで", + "pos": "名詞", + "pn": -0.654299 + }, + { + "surface": "魚田", + "readging": "ぎょでん", + "pos": "名詞", + "pn": -0.654315 + }, + { + "surface": "飛込み自殺", + "readging": "とびこみじさつ", + "pos": "名詞", + "pn": -0.654331 + }, + { + "surface": "鼻緒", + "readging": "はなお", + "pos": "名詞", + "pn": -0.654346 + }, + { + "surface": "焼麩", + "readging": "やきふ", + "pos": "名詞", + "pn": -0.654358 + }, + { + "surface": "灸点", + "readging": "きゅうてん", + "pos": "名詞", + "pn": -0.654359 + }, + { + "surface": "魔手", + "readging": "ましゅ", + "pos": "名詞", + "pn": -0.654394 + }, + { + "surface": "見回る", + "readging": "みまわる", + "pos": "動詞", + "pn": -0.65449 + }, + { + "surface": "素袷", + "readging": "すあわせ", + "pos": "名詞", + "pn": -0.654543 + }, + { + "surface": "配る", + "readging": "くばる", + "pos": "動詞", + "pn": -0.65455 + }, + { + "surface": "わななく", + "readging": "わななく", + "pos": "動詞", + "pn": -0.654562 + }, + { + "surface": "反転", + "readging": "はんてん", + "pos": "名詞", + "pn": -0.654566 + }, + { + "surface": "舟人", + "readging": "ふなびと", + "pos": "名詞", + "pn": -0.654569 + }, + { + "surface": "取付ける", + "readging": "とりつける", + "pos": "動詞", + "pn": -0.654579 + }, + { + "surface": "人相書", + "readging": "にんそうがき", + "pos": "名詞", + "pn": -0.654663 + }, + { + "surface": "鰺", + "readging": "あじ", + "pos": "名詞", + "pn": -0.654674 + }, + { + "surface": "腹腔", + "readging": "ふくこう", + "pos": "名詞", + "pn": -0.654717 + }, + { + "surface": "蚤", + "readging": "のみ", + "pos": "名詞", + "pn": -0.654823 + }, + { + "surface": "ちょっぴり", + "readging": "ちょっぴり", + "pos": "副詞", + "pn": -0.654829 + }, + { + "surface": "腰気", + "readging": "こしけ", + "pos": "名詞", + "pn": -0.654841 + }, + { + "surface": "偽札", + "readging": "にせさつ", + "pos": "名詞", + "pn": -0.654851 + }, + { + "surface": "土気", + "readging": "つちけ", + "pos": "名詞", + "pn": -0.654881 + }, + { + "surface": "潮干", + "readging": "しおひ", + "pos": "名詞", + "pn": -0.654949 + }, + { + "surface": "命", + "readging": "めい", + "pos": "名詞", + "pn": -0.654968 + }, + { + "surface": "羊腸", + "readging": "ようちょう", + "pos": "名詞", + "pn": -0.654981 + }, + { + "surface": "暗中", + "readging": "あんちゅう", + "pos": "名詞", + "pn": -0.654986 + }, + { + "surface": "費え", + "readging": "ついえ", + "pos": "名詞", + "pn": -0.655006 + }, + { + "surface": "冷汗", + "readging": "ひやあせ", + "pos": "名詞", + "pn": -0.655027 + }, + { + "surface": "怪", + "readging": "かい", + "pos": "名詞", + "pn": -0.655045 + }, + { + "surface": "見回す", + "readging": "みまわす", + "pos": "動詞", + "pn": -0.655063 + }, + { + "surface": "囲い者", + "readging": "かこいもの", + "pos": "名詞", + "pn": -0.65509 + }, + { + "surface": "兼ねる", + "readging": "かねる", + "pos": "動詞", + "pn": -0.655116 + }, + { + "surface": "小職", + "readging": "しょうしょく", + "pos": "名詞", + "pn": -0.655118 + }, + { + "surface": "鳥寄せ", + "readging": "とりよせ", + "pos": "名詞", + "pn": -0.655147 + }, + { + "surface": "火点し頃", + "readging": "ひともしごろ", + "pos": "名詞", + "pn": -0.655168 + }, + { + "surface": "幼子", + "readging": "おさなご", + "pos": "名詞", + "pn": -0.655244 + }, + { + "surface": "重り", + "readging": "おもり", + "pos": "名詞", + "pn": -0.655257 + }, + { + "surface": "端", + "readging": "たん", + "pos": "名詞", + "pn": -0.65528 + }, + { + "surface": "石灰", + "readging": "せっかい", + "pos": "名詞", + "pn": -0.655283 + }, + { + "surface": "水浸し", + "readging": "みずびたし", + "pos": "名詞", + "pn": -0.655332 + }, + { + "surface": "すき焼", + "readging": "すきやき", + "pos": "名詞", + "pn": -0.655381 + }, + { + "surface": "蓋", + "readging": "がい", + "pos": "名詞", + "pn": -0.655424 + }, + { + "surface": "鞠躬如", + "readging": "きっきゅうじょ", + "pos": "名詞", + "pn": -0.655472 + }, + { + "surface": "農民", + "readging": "のうみん", + "pos": "名詞", + "pn": -0.655501 + }, + { + "surface": "茜", + "readging": "あかね", + "pos": "名詞", + "pn": -0.655503 + }, + { + "surface": "汚す", + "readging": "よごす", + "pos": "動詞", + "pn": -0.655511 + }, + { + "surface": "雪ぐ", + "readging": "そそぐ", + "pos": "動詞", + "pn": -0.655538 + }, + { + "surface": "展", + "readging": "てん", + "pos": "名詞", + "pn": -0.655542 + }, + { + "surface": "族", + "readging": "ぞく", + "pos": "名詞", + "pn": -0.655569 + }, + { + "surface": "混交", + "readging": "こんこう", + "pos": "名詞", + "pn": -0.655615 + }, + { + "surface": "天漢", + "readging": "てんかん", + "pos": "名詞", + "pn": -0.655745 + }, + { + "surface": "路頭", + "readging": "ろとう", + "pos": "名詞", + "pn": -0.655756 + }, + { + "surface": "組物", + "readging": "くみもの", + "pos": "名詞", + "pn": -0.655759 + }, + { + "surface": "昼中", + "readging": "ひるなか", + "pos": "名詞", + "pn": -0.6558 + }, + { + "surface": "差上る", + "readging": "さしのぼる", + "pos": "動詞", + "pn": -0.655814 + }, + { + "surface": "糊付け", + "readging": "のりづけ", + "pos": "名詞", + "pn": -0.655847 + }, + { + "surface": "側める", + "readging": "そばめる", + "pos": "動詞", + "pn": -0.655954 + }, + { + "surface": "射撃", + "readging": "しゃげき", + "pos": "名詞", + "pn": -0.655984 + }, + { + "surface": "告白", + "readging": "こくはく", + "pos": "名詞", + "pn": -0.655991 + }, + { + "surface": "労する", + "readging": "ろうする", + "pos": "動詞", + "pn": -0.655995 + }, + { + "surface": "雇", + "readging": "やとい", + "pos": "名詞", + "pn": -0.656003 + }, + { + "surface": "腫物", + "readging": "はれもの", + "pos": "名詞", + "pn": -0.656006 + }, + { + "surface": "液肥", + "readging": "えきひ", + "pos": "名詞", + "pn": -0.656041 + }, + { + "surface": "胸部", + "readging": "きょうぶ", + "pos": "名詞", + "pn": -0.656051 + }, + { + "surface": "隔て", + "readging": "へだて", + "pos": "名詞", + "pn": -0.65608 + }, + { + "surface": "野晒", + "readging": "のざらし", + "pos": "名詞", + "pn": -0.656092 + }, + { + "surface": "水滴", + "readging": "すいてき", + "pos": "名詞", + "pn": -0.656207 + }, + { + "surface": "衝心", + "readging": "しょうしん", + "pos": "名詞", + "pn": -0.656269 + }, + { + "surface": "飼料", + "readging": "しりょう", + "pos": "名詞", + "pn": -0.65627 + }, + { + "surface": "彼岸花", + "readging": "ひがんばな", + "pos": "名詞", + "pn": -0.656296 + }, + { + "surface": "情炎", + "readging": "じょうえん", + "pos": "名詞", + "pn": -0.656307 + }, + { + "surface": "平", + "readging": "へい", + "pos": "名詞", + "pn": -0.656334 + }, + { + "surface": "塞き止める", + "readging": "せきとめる", + "pos": "動詞", + "pn": -0.656348 + }, + { + "surface": "李", + "readging": "すもも", + "pos": "名詞", + "pn": -0.656379 + }, + { + "surface": "お膳立て", + "readging": "おぜんだて", + "pos": "名詞", + "pn": -0.656402 + }, + { + "surface": "敷居", + "readging": "しきい", + "pos": "名詞", + "pn": -0.656475 + }, + { + "surface": "抗ヒスタミン剤", + "readging": "こうヒスタミンざい", + "pos": "名詞", + "pn": -0.656545 + }, + { + "surface": "多岐", + "readging": "たき", + "pos": "名詞", + "pn": -0.656552 + }, + { + "surface": "土壌", + "readging": "どじょう", + "pos": "名詞", + "pn": -0.656602 + }, + { + "surface": "路辺", + "readging": "ろへん", + "pos": "名詞", + "pn": -0.656625 + }, + { + "surface": "黒作り", + "readging": "くろづくり", + "pos": "名詞", + "pn": -0.656675 + }, + { + "surface": "ぼろ", + "readging": "ぼろ", + "pos": "名詞", + "pn": -0.656694 + }, + { + "surface": "没入", + "readging": "ぼつにゅう", + "pos": "名詞", + "pn": -0.656724 + }, + { + "surface": "蝦蛄", + "readging": "しゃこ", + "pos": "名詞", + "pn": -0.656762 + }, + { + "surface": "はぶ", + "readging": "はぶ", + "pos": "名詞", + "pn": -0.656836 + }, + { + "surface": "おとり膳", + "readging": "おとりぜん", + "pos": "名詞", + "pn": -0.656837 + }, + { + "surface": "自然", + "readging": "しぜん", + "pos": "名詞", + "pn": -0.656898 + }, + { + "surface": "衣紋竹", + "readging": "えもんだけ", + "pos": "名詞", + "pn": -0.656926 + }, + { + "surface": "錫", + "readging": "すず", + "pos": "名詞", + "pn": -0.65695 + }, + { + "surface": "散らし", + "readging": "ちらし", + "pos": "名詞", + "pn": -0.657005 + }, + { + "surface": "猿回し", + "readging": "さるまわし", + "pos": "名詞", + "pn": -0.657051 + }, + { + "surface": "霜囲い", + "readging": "しもがこい", + "pos": "名詞", + "pn": -0.657067 + }, + { + "surface": "吊上げる", + "readging": "つりあげる", + "pos": "動詞", + "pn": -0.657075 + }, + { + "surface": "ピアス", + "readging": "ピアス", + "pos": "名詞", + "pn": -0.657146 + }, + { + "surface": "軽少", + "readging": "けいしょう", + "pos": "名詞", + "pn": -0.657159 + }, + { + "surface": "夜盗", + "readging": "よとう", + "pos": "名詞", + "pn": -0.657224 + }, + { + "surface": "付従う", + "readging": "つきしたがう", + "pos": "動詞", + "pn": -0.657224 + }, + { + "surface": "赤肌", + "readging": "あかはだ", + "pos": "名詞", + "pn": -0.657307 + }, + { + "surface": "嗅ぐ", + "readging": "かぐ", + "pos": "動詞", + "pn": -0.657315 + }, + { + "surface": "葱坊主", + "readging": "ねぎぼうず", + "pos": "名詞", + "pn": -0.65732 + }, + { + "surface": "責", + "readging": "せめ", + "pos": "名詞", + "pn": -0.657324 + }, + { + "surface": "スポンジ", + "readging": "スポンジ", + "pos": "名詞", + "pn": -0.657393 + }, + { + "surface": "盤", + "readging": "ばん", + "pos": "名詞", + "pn": -0.657454 + }, + { + "surface": "競合う", + "readging": "せりあう", + "pos": "動詞", + "pn": -0.657475 + }, + { + "surface": "袈裟斬り", + "readging": "けさぎり", + "pos": "名詞", + "pn": -0.657501 + }, + { + "surface": "三流", + "readging": "さんりゅう", + "pos": "名詞", + "pn": -0.657528 + }, + { + "surface": "工事", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.657529 + }, + { + "surface": "漏る", + "readging": "もる", + "pos": "動詞", + "pn": -0.657531 + }, + { + "surface": "目笊", + "readging": "めざる", + "pos": "名詞", + "pn": -0.657561 + }, + { + "surface": "ルンゲ", + "readging": "ルンゲ", + "pos": "名詞", + "pn": -0.657585 + }, + { + "surface": "パトロール", + "readging": "パトロールカー", + "pos": "名詞", + "pn": -0.657598 + }, + { + "surface": "取混ぜる", + "readging": "とりまぜる", + "pos": "動詞", + "pn": -0.657604 + }, + { + "surface": "蹴合", + "readging": "けあい", + "pos": "名詞", + "pn": -0.657728 + }, + { + "surface": "パイ", + "readging": "パイ", + "pos": "名詞", + "pn": -0.65773 + }, + { + "surface": "倉庫", + "readging": "そうこ", + "pos": "名詞", + "pn": -0.65774 + }, + { + "surface": "市街", + "readging": "しがい", + "pos": "名詞", + "pn": -0.657765 + }, + { + "surface": "ぶら下げる", + "readging": "ぶらさげる", + "pos": "動詞", + "pn": -0.65779 + }, + { + "surface": "彩", + "readging": "さい", + "pos": "名詞", + "pn": -0.657819 + }, + { + "surface": "生欠伸", + "readging": "なまあくび", + "pos": "名詞", + "pn": -0.657863 + }, + { + "surface": "囲い", + "readging": "かこい", + "pos": "名詞", + "pn": -0.657872 + }, + { + "surface": "震わせる", + "readging": "ふるわせる", + "pos": "動詞", + "pn": -0.657916 + }, + { + "surface": "後足", + "readging": "しりあし", + "pos": "名詞", + "pn": -0.657932 + }, + { + "surface": "鳥打帽", + "readging": "とりうちぼう", + "pos": "名詞", + "pn": -0.657937 + }, + { + "surface": "言語", + "readging": "ごんご", + "pos": "名詞", + "pn": -0.657946 + }, + { + "surface": "失望", + "readging": "しつぼう", + "pos": "名詞", + "pn": -0.657956 + }, + { + "surface": "燃立つ", + "readging": "もえたつ", + "pos": "動詞", + "pn": -0.657977 + }, + { + "surface": "手近", + "readging": "てぢか", + "pos": "名詞", + "pn": -0.657986 + }, + { + "surface": "コンクリート", + "readging": "コンクリート", + "pos": "名詞", + "pn": -0.658026 + }, + { + "surface": "卵", + "readging": "たまご", + "pos": "名詞", + "pn": -0.658078 + }, + { + "surface": "戦がす", + "readging": "そよがす", + "pos": "動詞", + "pn": -0.658154 + }, + { + "surface": "侏儒", + "readging": "しゅじゅ", + "pos": "名詞", + "pn": -0.658228 + }, + { + "surface": "最後", + "readging": "さいご", + "pos": "名詞", + "pn": -0.658284 + }, + { + "surface": "厳談", + "readging": "げんだん", + "pos": "名詞", + "pn": -0.658394 + }, + { + "surface": "手術", + "readging": "しゅじゅつ", + "pos": "名詞", + "pn": -0.658399 + }, + { + "surface": "垢擦り", + "readging": "あかすり", + "pos": "名詞", + "pn": -0.658425 + }, + { + "surface": "泥鰌隠元", + "readging": "どじょういんげん", + "pos": "名詞", + "pn": -0.658425 + }, + { + "surface": "通ずる", + "readging": "つうずる", + "pos": "動詞", + "pn": -0.658432 + }, + { + "surface": "ラジオ", + "readging": "ラジオビーコン", + "pos": "名詞", + "pn": -0.658478 + }, + { + "surface": "ピック", + "readging": "ピック", + "pos": "名詞", + "pn": -0.658567 + }, + { + "surface": "付け狙う", + "readging": "つけねらう", + "pos": "動詞", + "pn": -0.658648 + }, + { + "surface": "縦横", + "readging": "じゅうおう", + "pos": "名詞", + "pn": -0.658648 + }, + { + "surface": "無性", + "readging": "むしょう", + "pos": "名詞", + "pn": -0.658666 + }, + { + "surface": "架橋", + "readging": "かきょう", + "pos": "名詞", + "pn": -0.658682 + }, + { + "surface": "電車", + "readging": "でんしゃ", + "pos": "名詞", + "pn": -0.658685 + }, + { + "surface": "目前", + "readging": "もくぜん", + "pos": "名詞", + "pn": -0.658738 + }, + { + "surface": "湿地", + "readging": "しっち", + "pos": "名詞", + "pn": -0.658739 + }, + { + "surface": "竹馬", + "readging": "ちくば", + "pos": "名詞", + "pn": -0.658761 + }, + { + "surface": "東雲", + "readging": "しののめ", + "pos": "名詞", + "pn": -0.658805 + }, + { + "surface": "台布巾", + "readging": "だいふきん", + "pos": "名詞", + "pn": -0.658815 + }, + { + "surface": "傷つく", + "readging": "きずつく", + "pos": "動詞", + "pn": -0.658863 + }, + { + "surface": "誘き出す", + "readging": "おびきだす", + "pos": "動詞", + "pn": -0.65893 + }, + { + "surface": "引回し", + "readging": "ひきまわし", + "pos": "名詞", + "pn": -0.658942 + }, + { + "surface": "釜", + "readging": "かま", + "pos": "名詞", + "pn": -0.658948 + }, + { + "surface": "不軌", + "readging": "ふき", + "pos": "名詞", + "pn": -0.659003 + }, + { + "surface": "中食", + "readging": "ちゅうじき", + "pos": "名詞", + "pn": -0.659094 + }, + { + "surface": "薬缶", + "readging": "やかん", + "pos": "名詞", + "pn": -0.659099 + }, + { + "surface": "宮中", + "readging": "きゅうちゅう", + "pos": "名詞", + "pn": -0.659129 + }, + { + "surface": "強談", + "readging": "ごうだん", + "pos": "名詞", + "pn": -0.65915 + }, + { + "surface": "賃金", + "readging": "ちんぎん", + "pos": "名詞", + "pn": -0.659183 + }, + { + "surface": "減員", + "readging": "げんいん", + "pos": "名詞", + "pn": -0.659189 + }, + { + "surface": "俗人", + "readging": "ぞくじん", + "pos": "名詞", + "pn": -0.65919 + }, + { + "surface": "背後", + "readging": "はいご", + "pos": "名詞", + "pn": -0.65923 + }, + { + "surface": "値段", + "readging": "ねだん", + "pos": "名詞", + "pn": -0.659238 + }, + { + "surface": "下剤", + "readging": "げざい", + "pos": "名詞", + "pn": -0.659293 + }, + { + "surface": "毫末", + "readging": "ごうまつ", + "pos": "名詞", + "pn": -0.659297 + }, + { + "surface": "合図", + "readging": "あいず", + "pos": "名詞", + "pn": -0.659362 + }, + { + "surface": "二度の勤め", + "readging": "にどのつとめ", + "pos": "名詞", + "pn": -0.659412 + }, + { + "surface": "武器", + "readging": "ぶき", + "pos": "名詞", + "pn": -0.659416 + }, + { + "surface": "躑躅", + "readging": "つつじ", + "pos": "名詞", + "pn": -0.659454 + }, + { + "surface": "後背", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.659483 + }, + { + "surface": "簡単", + "readging": "かんたん", + "pos": "名詞", + "pn": -0.659501 + }, + { + "surface": "後足", + "readging": "あとあし", + "pos": "名詞", + "pn": -0.659509 + }, + { + "surface": "煙火", + "readging": "えんか", + "pos": "名詞", + "pn": -0.659538 + }, + { + "surface": "胸腔", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.659561 + }, + { + "surface": "長靴", + "readging": "ながぐつ", + "pos": "名詞", + "pn": -0.659575 + }, + { + "surface": "応じる", + "readging": "おうじる", + "pos": "動詞", + "pn": -0.659582 + }, + { + "surface": "おから", + "readging": "おから", + "pos": "名詞", + "pn": -0.659612 + }, + { + "surface": "ませる", + "readging": "ませる", + "pos": "動詞", + "pn": -0.659666 + }, + { + "surface": "鋸屑", + "readging": "のこくず", + "pos": "名詞", + "pn": -0.659675 + }, + { + "surface": "つべこべ", + "readging": "つべこべ", + "pos": "副詞", + "pn": -0.65969 + }, + { + "surface": "倫", + "readging": "りん", + "pos": "名詞", + "pn": -0.659714 + }, + { + "surface": "巻貝", + "readging": "まきがい", + "pos": "名詞", + "pn": -0.659742 + }, + { + "surface": "なまり", + "readging": "なまり", + "pos": "名詞", + "pn": -0.659772 + }, + { + "surface": "全然", + "readging": "ぜんぜん", + "pos": "副詞", + "pn": -0.659821 + }, + { + "surface": "施設", + "readging": "しせつ", + "pos": "名詞", + "pn": -0.659846 + }, + { + "surface": "坊主", + "readging": "ぼうず", + "pos": "名詞", + "pn": -0.659872 + }, + { + "surface": "関", + "readging": "かん", + "pos": "名詞", + "pn": -0.659897 + }, + { + "surface": "問", + "readging": "もん", + "pos": "名詞", + "pn": -0.659966 + }, + { + "surface": "按摩", + "readging": "あんま", + "pos": "名詞", + "pn": -0.659995 + }, + { + "surface": "失敬", + "readging": "しっけい", + "pos": "名詞", + "pn": -0.659999 + }, + { + "surface": "取止める", + "readging": "とりやめる", + "pos": "動詞", + "pn": -0.660025 + }, + { + "surface": "ストローク", + "readging": "ストローク", + "pos": "名詞", + "pn": -0.660054 + }, + { + "surface": "四方山", + "readging": "よもやま", + "pos": "名詞", + "pn": -0.660056 + }, + { + "surface": "蔀", + "readging": "しとみ", + "pos": "名詞", + "pn": -0.660097 + }, + { + "surface": "スキー", + "readging": "スキー", + "pos": "名詞", + "pn": -0.660139 + }, + { + "surface": "裁縫", + "readging": "さいほう", + "pos": "名詞", + "pn": -0.660141 + }, + { + "surface": "傘", + "readging": "からかさ", + "pos": "名詞", + "pn": -0.660162 + }, + { + "surface": "牛膝", + "readging": "いのこずち", + "pos": "名詞", + "pn": -0.660228 + }, + { + "surface": "白血球", + "readging": "はっけっきゅう", + "pos": "名詞", + "pn": -0.660228 + }, + { + "surface": "曇", + "readging": "どん", + "pos": "名詞", + "pn": -0.660252 + }, + { + "surface": "分量", + "readging": "ぶんりょう", + "pos": "名詞", + "pn": -0.660253 + }, + { + "surface": "編上げ", + "readging": "あみあげ", + "pos": "名詞", + "pn": -0.660262 + }, + { + "surface": "腫物", + "readging": "しゅもつ", + "pos": "名詞", + "pn": -0.660269 + }, + { + "surface": "笑い絵", + "readging": "わらいえ", + "pos": "名詞", + "pn": -0.66036 + }, + { + "surface": "間道", + "readging": "かんどう", + "pos": "名詞", + "pn": -0.660394 + }, + { + "surface": "壱", + "readging": "いち", + "pos": "名詞", + "pn": -0.660396 + }, + { + "surface": "猿引", + "readging": "さるひき", + "pos": "名詞", + "pn": -0.660418 + }, + { + "surface": "受皿", + "readging": "うけざら", + "pos": "名詞", + "pn": -0.660421 + }, + { + "surface": "人礫", + "readging": "ひとつぶて", + "pos": "名詞", + "pn": -0.660453 + }, + { + "surface": "鉄漿蜻蛉", + "readging": "おはぐろとんぼ", + "pos": "名詞", + "pn": -0.660581 + }, + { + "surface": "砕け米", + "readging": "くだけまい", + "pos": "名詞", + "pn": -0.660643 + }, + { + "surface": "香料", + "readging": "こうりょう", + "pos": "名詞", + "pn": -0.660693 + }, + { + "surface": "長芋", + "readging": "ながいも", + "pos": "名詞", + "pn": -0.660695 + }, + { + "surface": "懸子", + "readging": "かけご", + "pos": "名詞", + "pn": -0.660716 + }, + { + "surface": "不注意", + "readging": "ふちゅうい", + "pos": "名詞", + "pn": -0.66072 + }, + { + "surface": "即効", + "readging": "そっこう", + "pos": "名詞", + "pn": -0.660739 + }, + { + "surface": "意志", + "readging": "いし", + "pos": "名詞", + "pn": -0.660756 + }, + { + "surface": "枉げて", + "readging": "まげて", + "pos": "副詞", + "pn": -0.660795 + }, + { + "surface": "草摺", + "readging": "くさずり", + "pos": "名詞", + "pn": -0.660827 + }, + { + "surface": "乾坤一擲", + "readging": "けんこんいってき", + "pos": "名詞", + "pn": -0.660845 + }, + { + "surface": "線描", + "readging": "せんびょう", + "pos": "名詞", + "pn": -0.660864 + }, + { + "surface": "ぽろぽろ", + "readging": "ぽろぽろ", + "pos": "副詞", + "pn": -0.660889 + }, + { + "surface": "翠柳", + "readging": "すいりゅう", + "pos": "名詞", + "pn": -0.660921 + }, + { + "surface": "感", + "readging": "かん", + "pos": "名詞", + "pn": -0.660933 + }, + { + "surface": "身一つ", + "readging": "みひとつ", + "pos": "名詞", + "pn": -0.660957 + }, + { + "surface": "芥子泥", + "readging": "からしでい", + "pos": "名詞", + "pn": -0.660996 + }, + { + "surface": "車井戸", + "readging": "くるまいど", + "pos": "名詞", + "pn": -0.661029 + }, + { + "surface": "籠る", + "readging": "こもる", + "pos": "動詞", + "pn": -0.661044 + }, + { + "surface": "暦", + "readging": "こよみ", + "pos": "名詞", + "pn": -0.661051 + }, + { + "surface": "下着", + "readging": "したぎ", + "pos": "名詞", + "pn": -0.661053 + }, + { + "surface": "弁疏", + "readging": "べんそ", + "pos": "名詞", + "pn": -0.661056 + }, + { + "surface": "長柄", + "readging": "ながえ", + "pos": "名詞", + "pn": -0.661061 + }, + { + "surface": "引締める", + "readging": "ひきしめる", + "pos": "動詞", + "pn": -0.661066 + }, + { + "surface": "脚気", + "readging": "かっけ", + "pos": "名詞", + "pn": -0.661073 + }, + { + "surface": "枕経", + "readging": "まくらぎょう", + "pos": "名詞", + "pn": -0.661098 + }, + { + "surface": "小田巻蒸し", + "readging": "おだまき", + "pos": "名詞", + "pn": -0.661105 + }, + { + "surface": "製品", + "readging": "せいひん", + "pos": "名詞", + "pn": -0.661139 + }, + { + "surface": "ふざける", + "readging": "ふざける", + "pos": "動詞", + "pn": -0.661141 + }, + { + "surface": "鬢付け油", + "readging": "びんつけあぶら", + "pos": "名詞", + "pn": -0.661144 + }, + { + "surface": "土留", + "readging": "どどめ", + "pos": "名詞", + "pn": -0.661152 + }, + { + "surface": "腋毛", + "readging": "わきげ", + "pos": "名詞", + "pn": -0.661187 + }, + { + "surface": "貰い火", + "readging": "もらいび", + "pos": "名詞", + "pn": -0.661211 + }, + { + "surface": "座", + "readging": "ざ", + "pos": "名詞", + "pn": -0.661228 + }, + { + "surface": "打", + "readging": "だ", + "pos": "名詞", + "pn": -0.661266 + }, + { + "surface": "緒言", + "readging": "しょげん", + "pos": "名詞", + "pn": -0.661337 + }, + { + "surface": "背戸", + "readging": "せど", + "pos": "名詞", + "pn": -0.661341 + }, + { + "surface": "斜眼", + "readging": "しゃがん", + "pos": "名詞", + "pn": -0.661461 + }, + { + "surface": "アルコール", + "readging": "アルコール", + "pos": "名詞", + "pn": -0.661521 + }, + { + "surface": "洗い", + "readging": "あらい", + "pos": "名詞", + "pn": -0.661548 + }, + { + "surface": "震", + "readging": "しん", + "pos": "名詞", + "pn": -0.661562 + }, + { + "surface": "絶縁", + "readging": "ぜつえん", + "pos": "名詞", + "pn": -0.661573 + }, + { + "surface": "微雨", + "readging": "びう", + "pos": "名詞", + "pn": -0.661708 + }, + { + "surface": "粉薬", + "readging": "こぐすり", + "pos": "名詞", + "pn": -0.661746 + }, + { + "surface": "嬰児", + "readging": "えいじ", + "pos": "名詞", + "pn": -0.661813 + }, + { + "surface": "小金", + "readging": "こがね", + "pos": "名詞", + "pn": -0.661906 + }, + { + "surface": "リノリウム", + "readging": "リノリウム", + "pos": "名詞", + "pn": -0.662084 + }, + { + "surface": "草庵", + "readging": "そうあん", + "pos": "名詞", + "pn": -0.662085 + }, + { + "surface": "晦日", + "readging": "かいじつ", + "pos": "名詞", + "pn": -0.662105 + }, + { + "surface": "何時も", + "readging": "いつも", + "pos": "副詞", + "pn": -0.662119 + }, + { + "surface": "油虫", + "readging": "あぶらむし", + "pos": "名詞", + "pn": -0.66221 + }, + { + "surface": "蝙蝠傘", + "readging": "こうもり", + "pos": "名詞", + "pn": -0.662229 + }, + { + "surface": "座頭", + "readging": "ざとう", + "pos": "名詞", + "pn": -0.66227 + }, + { + "surface": "寸隙", + "readging": "すんげき", + "pos": "名詞", + "pn": -0.66231 + }, + { + "surface": "濡れ", + "readging": "ぬれ", + "pos": "名詞", + "pn": -0.66234 + }, + { + "surface": "土砂", + "readging": "どしゃ", + "pos": "名詞", + "pn": -0.662342 + }, + { + "surface": "元元", + "readging": "もともと", + "pos": "副詞", + "pn": -0.662357 + }, + { + "surface": "滓", + "readging": "かす", + "pos": "名詞", + "pn": -0.662402 + }, + { + "surface": "竿釣", + "readging": "さおづり", + "pos": "名詞", + "pn": -0.662437 + }, + { + "surface": "水道", + "readging": "すいどう", + "pos": "名詞", + "pn": -0.662522 + }, + { + "surface": "頑冥", + "readging": "がんめい", + "pos": "名詞", + "pn": -0.662541 + }, + { + "surface": "湖畔", + "readging": "こはん", + "pos": "名詞", + "pn": -0.662612 + }, + { + "surface": "干物", + "readging": "ほしもの", + "pos": "名詞", + "pn": -0.662646 + }, + { + "surface": "引写し", + "readging": "ひきうつし", + "pos": "名詞", + "pn": -0.662707 + }, + { + "surface": "地虫", + "readging": "じむし", + "pos": "名詞", + "pn": -0.662713 + }, + { + "surface": "驕兵", + "readging": "きょうへい", + "pos": "名詞", + "pn": -0.662718 + }, + { + "surface": "弔する", + "readging": "ちょうする", + "pos": "動詞", + "pn": -0.6628 + }, + { + "surface": "直径", + "readging": "ちょっけい", + "pos": "名詞", + "pn": -0.662818 + }, + { + "surface": "詠歌", + "readging": "えいか", + "pos": "名詞", + "pn": -0.662862 + }, + { + "surface": "魑魅魍魎", + "readging": "ちみもうりょう", + "pos": "名詞", + "pn": -0.662877 + }, + { + "surface": "日照り雨", + "readging": "ひでりあめ", + "pos": "名詞", + "pn": -0.662947 + }, + { + "surface": "石綿", + "readging": "せきめん", + "pos": "名詞", + "pn": -0.662948 + }, + { + "surface": "行列", + "readging": "ぎょうれつ", + "pos": "名詞", + "pn": -0.662985 + }, + { + "surface": "看守", + "readging": "かんしゅ", + "pos": "名詞", + "pn": -0.663 + }, + { + "surface": "恋う", + "readging": "こう", + "pos": "動詞", + "pn": -0.663031 + }, + { + "surface": "噬臍", + "readging": "ぜいせい", + "pos": "名詞", + "pn": -0.663239 + }, + { + "surface": "醜聞", + "readging": "しゅうぶん", + "pos": "名詞", + "pn": -0.663246 + }, + { + "surface": "餓鬼大将", + "readging": "がきだいしょう", + "pos": "名詞", + "pn": -0.663252 + }, + { + "surface": "舳艫", + "readging": "じくろ", + "pos": "名詞", + "pn": -0.663327 + }, + { + "surface": "取って付けたよう", + "readging": "とってつけたよう", + "pos": "名詞", + "pn": -0.663363 + }, + { + "surface": "付する", + "readging": "ふする", + "pos": "動詞", + "pn": -0.663394 + }, + { + "surface": "調の緒", + "readging": "しらべのお", + "pos": "名詞", + "pn": -0.663397 + }, + { + "surface": "居住", + "readging": "きょじゅう", + "pos": "名詞", + "pn": -0.663429 + }, + { + "surface": "落花生", + "readging": "らっかせい", + "pos": "名詞", + "pn": -0.663433 + }, + { + "surface": "端書", + "readging": "はしがき", + "pos": "名詞", + "pn": -0.66346 + }, + { + "surface": "目先", + "readging": "めさき", + "pos": "名詞", + "pn": -0.663475 + }, + { + "surface": "年回り", + "readging": "としまわり", + "pos": "名詞", + "pn": -0.663546 + }, + { + "surface": "燃料", + "readging": "ねんりょう", + "pos": "名詞", + "pn": -0.663598 + }, + { + "surface": "流説", + "readging": "るせつ", + "pos": "名詞", + "pn": -0.663674 + }, + { + "surface": "小股掬い", + "readging": "こまたすくい", + "pos": "名詞", + "pn": -0.663675 + }, + { + "surface": "遊郭", + "readging": "ゆうかく", + "pos": "名詞", + "pn": -0.66368 + }, + { + "surface": "水玉", + "readging": "みずたま", + "pos": "名詞", + "pn": -0.663685 + }, + { + "surface": "精神", + "readging": "せいしん", + "pos": "名詞", + "pn": -0.663755 + }, + { + "surface": "法事", + "readging": "ほうじ", + "pos": "名詞", + "pn": -0.663796 + }, + { + "surface": "ももんがあ", + "readging": "ももんがあ", + "pos": "名詞", + "pn": -0.663802 + }, + { + "surface": "葬", + "readging": "そう", + "pos": "名詞", + "pn": -0.663802 + }, + { + "surface": "庵", + "readging": "あん", + "pos": "名詞", + "pn": -0.663952 + }, + { + "surface": "後継", + "readging": "こうけい", + "pos": "名詞", + "pn": -0.663969 + }, + { + "surface": "樽俎折衝", + "readging": "そんそせっしょう", + "pos": "名詞", + "pn": -0.663987 + }, + { + "surface": "焼亡", + "readging": "しょうぼう", + "pos": "名詞", + "pn": -0.66402 + }, + { + "surface": "外界", + "readging": "がいかい", + "pos": "名詞", + "pn": -0.664135 + }, + { + "surface": "盲進", + "readging": "もうしん", + "pos": "名詞", + "pn": -0.664161 + }, + { + "surface": "鰹", + "readging": "かつお", + "pos": "名詞", + "pn": -0.664167 + }, + { + "surface": "醇乎", + "readging": "じゅんこ", + "pos": "名詞", + "pn": -0.66417 + }, + { + "surface": "経過", + "readging": "けいか", + "pos": "名詞", + "pn": -0.664221 + }, + { + "surface": "占める", + "readging": "しめる", + "pos": "動詞", + "pn": -0.664254 + }, + { + "surface": "賃餅", + "readging": "ちんもち", + "pos": "名詞", + "pn": -0.664293 + }, + { + "surface": "捏返す", + "readging": "こねかえす", + "pos": "動詞", + "pn": -0.664314 + }, + { + "surface": "存在", + "readging": "そんざい", + "pos": "名詞", + "pn": -0.664354 + }, + { + "surface": "少女", + "readging": "しょうじょ", + "pos": "名詞", + "pn": -0.664399 + }, + { + "surface": "散剤", + "readging": "さんざい", + "pos": "名詞", + "pn": -0.66444 + }, + { + "surface": "紅蓮", + "readging": "ぐれん", + "pos": "名詞", + "pn": -0.664443 + }, + { + "surface": "仕様", + "readging": "しよう", + "pos": "名詞", + "pn": -0.664478 + }, + { + "surface": "浴後", + "readging": "よくご", + "pos": "名詞", + "pn": -0.664516 + }, + { + "surface": "要点", + "readging": "ようてん", + "pos": "名詞", + "pn": -0.664542 + }, + { + "surface": "転ぶ", + "readging": "ころぶ", + "pos": "動詞", + "pn": -0.664597 + }, + { + "surface": "紙縒り", + "readging": "こより", + "pos": "名詞", + "pn": -0.664599 + }, + { + "surface": "がなる", + "readging": "がなる", + "pos": "動詞", + "pn": -0.664694 + }, + { + "surface": "食らいつく", + "readging": "くらいつく", + "pos": "動詞", + "pn": -0.664706 + }, + { + "surface": "蔓茘枝", + "readging": "つるれいし", + "pos": "名詞", + "pn": -0.664706 + }, + { + "surface": "溢美", + "readging": "いつび", + "pos": "名詞", + "pn": -0.66471 + }, + { + "surface": "紛争", + "readging": "ふんそう", + "pos": "名詞", + "pn": -0.664714 + }, + { + "surface": "暇", + "readging": "ひま", + "pos": "名詞", + "pn": -0.664734 + }, + { + "surface": "鄙びる", + "readging": "ひなびる", + "pos": "動詞", + "pn": -0.664753 + }, + { + "surface": "弾ける", + "readging": "はじける", + "pos": "動詞", + "pn": -0.664766 + }, + { + "surface": "逆剃り", + "readging": "さかぞり", + "pos": "名詞", + "pn": -0.664768 + }, + { + "surface": "帳面", + "readging": "ちょうめん", + "pos": "名詞", + "pn": -0.664832 + }, + { + "surface": "ぶつかる", + "readging": "ぶつかる", + "pos": "動詞", + "pn": -0.664847 + }, + { + "surface": "試し", + "readging": "ためし", + "pos": "名詞", + "pn": -0.664894 + }, + { + "surface": "約", + "readging": "やく", + "pos": "名詞", + "pn": -0.664903 + }, + { + "surface": "写", + "readging": "しゃ", + "pos": "名詞", + "pn": -0.66491 + }, + { + "surface": "乾麺", + "readging": "かんめん", + "pos": "名詞", + "pn": -0.664924 + }, + { + "surface": "伏せる", + "readging": "ふせる", + "pos": "動詞", + "pn": -0.66497 + }, + { + "surface": "おこわ", + "readging": "おこわ", + "pos": "名詞", + "pn": -0.664985 + }, + { + "surface": "下陰", + "readging": "したかげ", + "pos": "名詞", + "pn": -0.665116 + }, + { + "surface": "合さる", + "readging": "あわさる", + "pos": "動詞", + "pn": -0.66517 + }, + { + "surface": "水路", + "readging": "すいろ", + "pos": "名詞", + "pn": -0.66521 + }, + { + "surface": "薦被り", + "readging": "こもかぶり", + "pos": "名詞", + "pn": -0.665217 + }, + { + "surface": "縹色", + "readging": "はなだいろ", + "pos": "名詞", + "pn": -0.665227 + }, + { + "surface": "兎角", + "readging": "とかく", + "pos": "副詞", + "pn": -0.665234 + }, + { + "surface": "船着", + "readging": "ふなつき", + "pos": "名詞", + "pn": -0.66524 + }, + { + "surface": "筋書", + "readging": "すじがき", + "pos": "名詞", + "pn": -0.665357 + }, + { + "surface": "習慣", + "readging": "しゅうかん", + "pos": "名詞", + "pn": -0.665422 + }, + { + "surface": "禁ずる", + "readging": "きんずる", + "pos": "動詞", + "pn": -0.665486 + }, + { + "surface": "寒中", + "readging": "かんちゅう", + "pos": "名詞", + "pn": -0.6655 + }, + { + "surface": "鰯雲", + "readging": "いわしぐも", + "pos": "名詞", + "pn": -0.665547 + }, + { + "surface": "拳骨", + "readging": "げんこつ", + "pos": "名詞", + "pn": -0.665618 + }, + { + "surface": "蟷螂", + "readging": "かまきり", + "pos": "名詞", + "pn": -0.665716 + }, + { + "surface": "ずぶ濡れ", + "readging": "ずぶぬれ", + "pos": "名詞", + "pn": -0.665728 + }, + { + "surface": "新柳", + "readging": "しんりゅう", + "pos": "名詞", + "pn": -0.665732 + }, + { + "surface": "取消", + "readging": "とりけし", + "pos": "名詞", + "pn": -0.665773 + }, + { + "surface": "凍り付く", + "readging": "こおりつく", + "pos": "動詞", + "pn": -0.665857 + }, + { + "surface": "凡小", + "readging": "ぼんしょう", + "pos": "名詞", + "pn": -0.665882 + }, + { + "surface": "喧嘩腰", + "readging": "けんかごし", + "pos": "名詞", + "pn": -0.665922 + }, + { + "surface": "電線", + "readging": "でんせん", + "pos": "名詞", + "pn": -0.666044 + }, + { + "surface": "書添える", + "readging": "かきそえる", + "pos": "動詞", + "pn": -0.66613 + }, + { + "surface": "差掛ける", + "readging": "さしかける", + "pos": "動詞", + "pn": -0.666147 + }, + { + "surface": "録音", + "readging": "ろくおん", + "pos": "名詞", + "pn": -0.666259 + }, + { + "surface": "腓", + "readging": "こむら", + "pos": "名詞", + "pn": -0.666401 + }, + { + "surface": "愚図", + "readging": "ぐず", + "pos": "名詞", + "pn": -0.666416 + }, + { + "surface": "身動ぎ", + "readging": "みじろぎ", + "pos": "名詞", + "pn": -0.666439 + }, + { + "surface": "柑子", + "readging": "こうじ", + "pos": "名詞", + "pn": -0.666491 + }, + { + "surface": "空惚ける", + "readging": "そらとぼける", + "pos": "動詞", + "pn": -0.66652 + }, + { + "surface": "鉄火", + "readging": "てっか", + "pos": "名詞", + "pn": -0.66657 + }, + { + "surface": "縮緬雑魚", + "readging": "ちりめんじゃこ", + "pos": "名詞", + "pn": -0.666617 + }, + { + "surface": "突起", + "readging": "とっき", + "pos": "名詞", + "pn": -0.666635 + }, + { + "surface": "白粉下", + "readging": "おしろいした", + "pos": "名詞", + "pn": -0.666668 + }, + { + "surface": "独白", + "readging": "どくはく", + "pos": "名詞", + "pn": -0.666687 + }, + { + "surface": "加工", + "readging": "かこう", + "pos": "名詞", + "pn": -0.666708 + }, + { + "surface": "身八つ", + "readging": "みやつ", + "pos": "名詞", + "pn": -0.666727 + }, + { + "surface": "刳貫く", + "readging": "くりぬく", + "pos": "動詞", + "pn": -0.666732 + }, + { + "surface": "当り鉢", + "readging": "あたりばち", + "pos": "名詞", + "pn": -0.666787 + }, + { + "surface": "恋風", + "readging": "こいかぜ", + "pos": "名詞", + "pn": -0.666797 + }, + { + "surface": "頼む", + "readging": "たのむ", + "pos": "動詞", + "pn": -0.666853 + }, + { + "surface": "引摺込む", + "readging": "ひきずりこむ", + "pos": "動詞", + "pn": -0.666871 + }, + { + "surface": "灰吹", + "readging": "はいふき", + "pos": "名詞", + "pn": -0.666878 + }, + { + "surface": "断続", + "readging": "だんぞく", + "pos": "名詞", + "pn": -0.667063 + }, + { + "surface": "区域", + "readging": "くいき", + "pos": "名詞", + "pn": -0.667075 + }, + { + "surface": "落日", + "readging": "らくじつ", + "pos": "名詞", + "pn": -0.667085 + }, + { + "surface": "解纜", + "readging": "かいらん", + "pos": "名詞", + "pn": -0.667089 + }, + { + "surface": "障泥", + "readging": "あおり", + "pos": "名詞", + "pn": -0.667095 + }, + { + "surface": "調子外れ", + "readging": "ちょうしはずれ", + "pos": "名詞", + "pn": -0.667096 + }, + { + "surface": "差込む", + "readging": "さしこむ", + "pos": "動詞", + "pn": -0.667106 + }, + { + "surface": "巻雲", + "readging": "けんうん", + "pos": "名詞", + "pn": -0.66717 + }, + { + "surface": "鯖", + "readging": "さば", + "pos": "名詞", + "pn": -0.667216 + }, + { + "surface": "握飯", + "readging": "にぎりめし", + "pos": "名詞", + "pn": -0.667252 + }, + { + "surface": "捻転", + "readging": "ねんてん", + "pos": "名詞", + "pn": -0.667297 + }, + { + "surface": "区分", + "readging": "くぶん", + "pos": "名詞", + "pn": -0.667356 + }, + { + "surface": "低級", + "readging": "ていきゅう", + "pos": "名詞", + "pn": -0.66743 + }, + { + "surface": "しけ糸", + "readging": "しけいと", + "pos": "名詞", + "pn": -0.667462 + }, + { + "surface": "融雪", + "readging": "ゆうせつ", + "pos": "名詞", + "pn": -0.667558 + }, + { + "surface": "送り出す", + "readging": "おくりだす", + "pos": "動詞", + "pn": -0.66756 + }, + { + "surface": "会", + "readging": "かい", + "pos": "名詞", + "pn": -0.667583 + }, + { + "surface": "書庫", + "readging": "しょこ", + "pos": "名詞", + "pn": -0.667589 + }, + { + "surface": "水母", + "readging": "くらげ", + "pos": "名詞", + "pn": -0.667611 + }, + { + "surface": "狂", + "readging": "きょう", + "pos": "名詞", + "pn": -0.667633 + }, + { + "surface": "煤ばむ", + "readging": "すすばむ", + "pos": "動詞", + "pn": -0.667645 + }, + { + "surface": "二度咲き", + "readging": "にどざき", + "pos": "名詞", + "pn": -0.667685 + }, + { + "surface": "官吏", + "readging": "かんり", + "pos": "名詞", + "pn": -0.667742 + }, + { + "surface": "鷲鼻", + "readging": "わしばな", + "pos": "名詞", + "pn": -0.667753 + }, + { + "surface": "扇情", + "readging": "せんじょう", + "pos": "名詞", + "pn": -0.667775 + }, + { + "surface": "吹き出物", + "readging": "ふきでもの", + "pos": "名詞", + "pn": -0.667861 + }, + { + "surface": "板草履", + "readging": "いたぞうり", + "pos": "名詞", + "pn": -0.667873 + }, + { + "surface": "蝙蝠", + "readging": "こうもり", + "pos": "名詞", + "pn": -0.667878 + }, + { + "surface": "冥", + "readging": "めい", + "pos": "名詞", + "pn": -0.667892 + }, + { + "surface": "循環", + "readging": "じゅんかん", + "pos": "名詞", + "pn": -0.667917 + }, + { + "surface": "寝覚め", + "readging": "ねざめ", + "pos": "名詞", + "pn": -0.667953 + }, + { + "surface": "白昼", + "readging": "はくちゅう", + "pos": "名詞", + "pn": -0.668004 + }, + { + "surface": "沈子", + "readging": "ちんし", + "pos": "名詞", + "pn": -0.668016 + }, + { + "surface": "対", + "readging": "つい", + "pos": "名詞", + "pn": -0.668044 + }, + { + "surface": "朝ぼらけ", + "readging": "あさぼらけ", + "pos": "名詞", + "pn": -0.668126 + }, + { + "surface": "託する", + "readging": "たくする", + "pos": "動詞", + "pn": -0.668144 + }, + { + "surface": "生唾", + "readging": "なまつば", + "pos": "名詞", + "pn": -0.668209 + }, + { + "surface": "掻玉", + "readging": "かきたま", + "pos": "名詞", + "pn": -0.66822 + }, + { + "surface": "指弾", + "readging": "しだん", + "pos": "名詞", + "pn": -0.668297 + }, + { + "surface": "綿", + "readging": "めん", + "pos": "名詞", + "pn": -0.6683 + }, + { + "surface": "瓢箪", + "readging": "ひょうたん", + "pos": "名詞", + "pn": -0.668402 + }, + { + "surface": "引回す", + "readging": "ひきまわす", + "pos": "動詞", + "pn": -0.66842 + }, + { + "surface": "部門", + "readging": "ぶもん", + "pos": "名詞", + "pn": -0.668512 + }, + { + "surface": "後頭部", + "readging": "こうとうぶ", + "pos": "名詞", + "pn": -0.668537 + }, + { + "surface": "損じる", + "readging": "そんじる", + "pos": "動詞", + "pn": -0.668554 + }, + { + "surface": "俗物", + "readging": "ぞくぶつ", + "pos": "名詞", + "pn": -0.668559 + }, + { + "surface": "遺骸", + "readging": "いがい", + "pos": "名詞", + "pn": -0.668566 + }, + { + "surface": "猛", + "readging": "もう", + "pos": "名詞", + "pn": -0.668568 + }, + { + "surface": "湯熨", + "readging": "ゆのし", + "pos": "名詞", + "pn": -0.668625 + }, + { + "surface": "明け", + "readging": "あけ", + "pos": "名詞", + "pn": -0.668628 + }, + { + "surface": "異名", + "readging": "いみょう", + "pos": "名詞", + "pn": -0.668652 + }, + { + "surface": "混入", + "readging": "こんにゅう", + "pos": "名詞", + "pn": -0.668663 + }, + { + "surface": "髪際", + "readging": "かみぎわ", + "pos": "名詞", + "pn": -0.668668 + }, + { + "surface": "ボルト", + "readging": "ボルト", + "pos": "名詞", + "pn": -0.66867 + }, + { + "surface": "生命", + "readging": "せいめい", + "pos": "名詞", + "pn": -0.668673 + }, + { + "surface": "サイロ", + "readging": "サイロ", + "pos": "名詞", + "pn": -0.668718 + }, + { + "surface": "白癬", + "readging": "はくせん", + "pos": "名詞", + "pn": -0.668743 + }, + { + "surface": "縮", + "readging": "しゅく", + "pos": "名詞", + "pn": -0.668817 + }, + { + "surface": "心当て", + "readging": "こころあて", + "pos": "名詞", + "pn": -0.668893 + }, + { + "surface": "草臥れる", + "readging": "くたびれる", + "pos": "動詞", + "pn": -0.668942 + }, + { + "surface": "火屋", + "readging": "ほや", + "pos": "名詞", + "pn": -0.668959 + }, + { + "surface": "女婿", + "readging": "じょせい", + "pos": "名詞", + "pn": -0.668992 + }, + { + "surface": "瞳孔", + "readging": "どうこう", + "pos": "名詞", + "pn": -0.669067 + }, + { + "surface": "食糧", + "readging": "しょくりょう", + "pos": "名詞", + "pn": -0.669107 + }, + { + "surface": "緒", + "readging": "ちょ", + "pos": "名詞", + "pn": -0.669128 + }, + { + "surface": "構造", + "readging": "こうぞう", + "pos": "名詞", + "pn": -0.669152 + }, + { + "surface": "遅らせる", + "readging": "おくらせる", + "pos": "動詞", + "pn": -0.669179 + }, + { + "surface": "作法", + "readging": "さほう", + "pos": "名詞", + "pn": -0.669209 + }, + { + "surface": "蒟蒻", + "readging": "こんにゃく", + "pos": "名詞", + "pn": -0.669217 + }, + { + "surface": "卑猥", + "readging": "ひわい", + "pos": "名詞", + "pn": -0.669282 + }, + { + "surface": "鬼神", + "readging": "きじん", + "pos": "名詞", + "pn": -0.669289 + }, + { + "surface": "間縄", + "readging": "けんなわ", + "pos": "名詞", + "pn": -0.669307 + }, + { + "surface": "ボタン", + "readging": "ボタン", + "pos": "名詞", + "pn": -0.66936 + }, + { + "surface": "水夫", + "readging": "すいふ", + "pos": "名詞", + "pn": -0.669374 + }, + { + "surface": "貧民窟", + "readging": "ひんみんくつ", + "pos": "名詞", + "pn": -0.669377 + }, + { + "surface": "凹む", + "readging": "へこむ", + "pos": "動詞", + "pn": -0.6694 + }, + { + "surface": "高野豆腐", + "readging": "こうやどうふ", + "pos": "名詞", + "pn": -0.669403 + }, + { + "surface": "目標", + "readging": "もくひょう", + "pos": "名詞", + "pn": -0.669414 + }, + { + "surface": "清掃", + "readging": "せいそう", + "pos": "名詞", + "pn": -0.669424 + }, + { + "surface": "寛厳", + "readging": "かんげん", + "pos": "名詞", + "pn": -0.669484 + }, + { + "surface": "欠き割り", + "readging": "かきわり", + "pos": "名詞", + "pn": -0.669495 + }, + { + "surface": "乳頭", + "readging": "にゅうとう", + "pos": "名詞", + "pn": -0.669509 + }, + { + "surface": "誤脱", + "readging": "ごだつ", + "pos": "名詞", + "pn": -0.669531 + }, + { + "surface": "櫛形", + "readging": "くしがた", + "pos": "名詞", + "pn": -0.669562 + }, + { + "surface": "曲りくねる", + "readging": "まがりくねる", + "pos": "動詞", + "pn": -0.669633 + }, + { + "surface": "着せる", + "readging": "きせる", + "pos": "動詞", + "pn": -0.669664 + }, + { + "surface": "間合", + "readging": "まあい", + "pos": "名詞", + "pn": -0.669695 + }, + { + "surface": "船舶", + "readging": "せんぱく", + "pos": "名詞", + "pn": -0.66977 + }, + { + "surface": "蕾む", + "readging": "つぼむ", + "pos": "動詞", + "pn": -0.669832 + }, + { + "surface": "草餅", + "readging": "くさもち", + "pos": "名詞", + "pn": -0.66984 + }, + { + "surface": "破片", + "readging": "はへん", + "pos": "名詞", + "pn": -0.669842 + }, + { + "surface": "合壁", + "readging": "がっぺき", + "pos": "名詞", + "pn": -0.669845 + }, + { + "surface": "権謀術数", + "readging": "けんぼうじゅっすう", + "pos": "名詞", + "pn": -0.669859 + }, + { + "surface": "航路", + "readging": "こうろ", + "pos": "名詞", + "pn": -0.669989 + }, + { + "surface": "傾げる", + "readging": "かしげる", + "pos": "動詞", + "pn": -0.670003 + }, + { + "surface": "油絵具", + "readging": "あぶらえのぐ", + "pos": "名詞", + "pn": -0.67012 + }, + { + "surface": "虞", + "readging": "ぐ", + "pos": "名詞", + "pn": -0.670157 + }, + { + "surface": "巻鮨", + "readging": "まきずし", + "pos": "名詞", + "pn": -0.670159 + }, + { + "surface": "端切れ", + "readging": "はぎれ", + "pos": "名詞", + "pn": -0.670181 + }, + { + "surface": "末端", + "readging": "まったん", + "pos": "名詞", + "pn": -0.670196 + }, + { + "surface": "嵌込む", + "readging": "はめこむ", + "pos": "動詞", + "pn": -0.670217 + }, + { + "surface": "取灰", + "readging": "とりばい", + "pos": "名詞", + "pn": -0.670218 + }, + { + "surface": "上り", + "readging": "のぼり", + "pos": "名詞", + "pn": -0.670219 + }, + { + "surface": "釈", + "readging": "しゃく", + "pos": "名詞", + "pn": -0.670234 + }, + { + "surface": "てま隙", + "readging": "てまひま", + "pos": "名詞", + "pn": -0.670322 + }, + { + "surface": "握り潰す", + "readging": "にぎりつぶす", + "pos": "動詞", + "pn": -0.670344 + }, + { + "surface": "欄干", + "readging": "らんかん", + "pos": "名詞", + "pn": -0.670354 + }, + { + "surface": "スキップ", + "readging": "スキップ", + "pos": "名詞", + "pn": -0.670364 + }, + { + "surface": "柩", + "readging": "ひつぎ", + "pos": "名詞", + "pn": -0.670371 + }, + { + "surface": "ふき", + "readging": "ふき", + "pos": "名詞", + "pn": -0.670444 + }, + { + "surface": "瘡毒", + "readging": "そうどく", + "pos": "名詞", + "pn": -0.670484 + }, + { + "surface": "繋", + "readging": "けい", + "pos": "名詞", + "pn": -0.670485 + }, + { + "surface": "路肩", + "readging": "ろかた", + "pos": "名詞", + "pn": -0.670502 + }, + { + "surface": "透かし", + "readging": "すかし", + "pos": "名詞", + "pn": -0.670546 + }, + { + "surface": "血塊", + "readging": "けっかい", + "pos": "名詞", + "pn": -0.670554 + }, + { + "surface": "贋", + "readging": "がん", + "pos": "名詞", + "pn": -0.670565 + }, + { + "surface": "絹布", + "readging": "けんぷ", + "pos": "名詞", + "pn": -0.670582 + }, + { + "surface": "捕まる", + "readging": "つかまる", + "pos": "動詞", + "pn": -0.67062 + }, + { + "surface": "白白明け", + "readging": "しらしらあけ", + "pos": "名詞", + "pn": -0.670708 + }, + { + "surface": "梁", + "readging": "りょう", + "pos": "名詞", + "pn": -0.670784 + }, + { + "surface": "勘定", + "readging": "かんじょう", + "pos": "名詞", + "pn": -0.670805 + }, + { + "surface": "扱い", + "readging": "あつかい", + "pos": "名詞", + "pn": -0.670859 + }, + { + "surface": "象る", + "readging": "かたどる", + "pos": "動詞", + "pn": -0.670876 + }, + { + "surface": "唐臼", + "readging": "からうす", + "pos": "名詞", + "pn": -0.670975 + }, + { + "surface": "じっと", + "readging": "じっと", + "pos": "副詞", + "pn": -0.671085 + }, + { + "surface": "結綿", + "readging": "ゆいわた", + "pos": "名詞", + "pn": -0.671105 + }, + { + "surface": "重要", + "readging": "じゅうよう", + "pos": "名詞", + "pn": -0.67113 + }, + { + "surface": "ロイド眼鏡", + "readging": "ロイドめがね", + "pos": "名詞", + "pn": -0.671162 + }, + { + "surface": "抑", + "readging": "よく", + "pos": "副詞", + "pn": -0.671196 + }, + { + "surface": "鎌髭", + "readging": "かまひげ", + "pos": "名詞", + "pn": -0.671224 + }, + { + "surface": "日傭取", + "readging": "ひようとり", + "pos": "名詞", + "pn": -0.67126 + }, + { + "surface": "似非", + "readging": "えせ", + "pos": "名詞", + "pn": -0.671271 + }, + { + "surface": "裁判所", + "readging": "さいばんしょ", + "pos": "名詞", + "pn": -0.671316 + }, + { + "surface": "基づく", + "readging": "もとづく", + "pos": "動詞", + "pn": -0.671341 + }, + { + "surface": "為損ずる", + "readging": "しそんずる", + "pos": "動詞", + "pn": -0.671387 + }, + { + "surface": "入口", + "readging": "いりぐち", + "pos": "名詞", + "pn": -0.671389 + }, + { + "surface": "上靴", + "readging": "うわぐつ", + "pos": "名詞", + "pn": -0.671398 + }, + { + "surface": "縒る", + "readging": "よる", + "pos": "動詞", + "pn": -0.671413 + }, + { + "surface": "スポーツ", + "readging": "スポーツ", + "pos": "名詞", + "pn": -0.671438 + }, + { + "surface": "結紮", + "readging": "けっさつ", + "pos": "名詞", + "pn": -0.671515 + }, + { + "surface": "脾腹", + "readging": "ひばら", + "pos": "名詞", + "pn": -0.67158 + }, + { + "surface": "荊冠", + "readging": "けいかん", + "pos": "名詞", + "pn": -0.671595 + }, + { + "surface": "棒切れ", + "readging": "ぼうぎれ", + "pos": "名詞", + "pn": -0.671683 + }, + { + "surface": "縦しんば", + "readging": "よしんば", + "pos": "副詞", + "pn": -0.6717 + }, + { + "surface": "方角", + "readging": "ほうがく", + "pos": "名詞", + "pn": -0.67178 + }, + { + "surface": "乞食", + "readging": "こつじき", + "pos": "名詞", + "pn": -0.671789 + }, + { + "surface": "包含", + "readging": "ほうがん", + "pos": "名詞", + "pn": -0.671849 + }, + { + "surface": "手袋", + "readging": "てぶくろ", + "pos": "名詞", + "pn": -0.671867 + }, + { + "surface": "悪足掻き", + "readging": "わるあがき", + "pos": "名詞", + "pn": -0.671903 + }, + { + "surface": "形影", + "readging": "けいえい", + "pos": "名詞", + "pn": -0.671931 + }, + { + "surface": "外部", + "readging": "がいぶ", + "pos": "名詞", + "pn": -0.672006 + }, + { + "surface": "差添え", + "readging": "さしぞえ", + "pos": "名詞", + "pn": -0.672007 + }, + { + "surface": "釣込む", + "readging": "つりこむ", + "pos": "動詞", + "pn": -0.672022 + }, + { + "surface": "ちと", + "readging": "ちと", + "pos": "副詞", + "pn": -0.672026 + }, + { + "surface": "自棄っ腹", + "readging": "やけっぱら", + "pos": "名詞", + "pn": -0.672033 + }, + { + "surface": "天鵞絨", + "readging": "ビロード", + "pos": "名詞", + "pn": -0.672046 + }, + { + "surface": "口誦", + "readging": "こうしょう", + "pos": "名詞", + "pn": -0.672067 + }, + { + "surface": "狼狽", + "readging": "ろうばい", + "pos": "名詞", + "pn": -0.672104 + }, + { + "surface": "周章", + "readging": "しゅうしょう", + "pos": "名詞", + "pn": -0.672104 + }, + { + "surface": "言付かる", + "readging": "ことづかる", + "pos": "動詞", + "pn": -0.672181 + }, + { + "surface": "担げる", + "readging": "かたげる", + "pos": "動詞", + "pn": -0.67221 + }, + { + "surface": "首縊り", + "readging": "くびくくり", + "pos": "名詞", + "pn": -0.672215 + }, + { + "surface": "毛むくじゃら", + "readging": "けむくじゃら", + "pos": "名詞", + "pn": -0.672283 + }, + { + "surface": "前後ろ", + "readging": "まえうしろ", + "pos": "名詞", + "pn": -0.672328 + }, + { + "surface": "殻", + "readging": "から", + "pos": "名詞", + "pn": -0.672332 + }, + { + "surface": "イタイイタイ病", + "readging": "いたいいたいびょう", + "pos": "名詞", + "pn": -0.672383 + }, + { + "surface": "黒ずむ", + "readging": "くろずむ", + "pos": "動詞", + "pn": -0.672483 + }, + { + "surface": "順順", + "readging": "じゅんじゅん", + "pos": "名詞", + "pn": -0.672521 + }, + { + "surface": "乾湿", + "readging": "かんしつ", + "pos": "名詞", + "pn": -0.672559 + }, + { + "surface": "枝振り", + "readging": "えだぶり", + "pos": "名詞", + "pn": -0.672594 + }, + { + "surface": "蹲う", + "readging": "つくばう", + "pos": "動詞", + "pn": -0.672636 + }, + { + "surface": "栃麺棒", + "readging": "とちめんぼう", + "pos": "名詞", + "pn": -0.672638 + }, + { + "surface": "寝しな", + "readging": "ねしな", + "pos": "名詞", + "pn": -0.672648 + }, + { + "surface": "大麦", + "readging": "おおむぎ", + "pos": "名詞", + "pn": -0.672664 + }, + { + "surface": "掻い潜る", + "readging": "かいくぐる", + "pos": "動詞", + "pn": -0.672666 + }, + { + "surface": "焦らす", + "readging": "じらす", + "pos": "動詞", + "pn": -0.672668 + }, + { + "surface": "恁麼", + "readging": "いんも", + "pos": "名詞", + "pn": -0.672699 + }, + { + "surface": "激減", + "readging": "げきげん", + "pos": "名詞", + "pn": -0.672779 + }, + { + "surface": "船端", + "readging": "ふなばた", + "pos": "名詞", + "pn": -0.672781 + }, + { + "surface": "責立てる", + "readging": "せめたてる", + "pos": "動詞", + "pn": -0.672849 + }, + { + "surface": "潮煙", + "readging": "しおけむり", + "pos": "名詞", + "pn": -0.673047 + }, + { + "surface": "ランチ", + "readging": "ランチ", + "pos": "名詞", + "pn": -0.67306 + }, + { + "surface": "賃搗", + "readging": "ちんづき", + "pos": "名詞", + "pn": -0.673161 + }, + { + "surface": "没義道", + "readging": "もぎどう", + "pos": "名詞", + "pn": -0.673171 + }, + { + "surface": "早口", + "readging": "はやくち", + "pos": "名詞", + "pn": -0.673176 + }, + { + "surface": "取掛る", + "readging": "とりかかる", + "pos": "動詞", + "pn": -0.673189 + }, + { + "surface": "ごちゃごちゃ", + "readging": "ごちゃごちゃ", + "pos": "副詞", + "pn": -0.673217 + }, + { + "surface": "出入り", + "readging": "ではいり", + "pos": "名詞", + "pn": -0.673271 + }, + { + "surface": "太刀", + "readging": "たちもち", + "pos": "名詞", + "pn": -0.673302 + }, + { + "surface": "駄文", + "readging": "だぶん", + "pos": "名詞", + "pn": -0.673357 + }, + { + "surface": "嫌煙", + "readging": "けんえん", + "pos": "名詞", + "pn": -0.673369 + }, + { + "surface": "倉卒", + "readging": "そうそつ", + "pos": "名詞", + "pn": -0.673386 + }, + { + "surface": "粗布", + "readging": "そふ", + "pos": "名詞", + "pn": -0.673422 + }, + { + "surface": "舷側", + "readging": "げんそく", + "pos": "名詞", + "pn": -0.673437 + }, + { + "surface": "経済", + "readging": "けいざい", + "pos": "名詞", + "pn": -0.673447 + }, + { + "surface": "避ける", + "readging": "さける", + "pos": "動詞", + "pn": -0.673454 + }, + { + "surface": "ホック", + "readging": "ホック", + "pos": "名詞", + "pn": -0.673464 + }, + { + "surface": "砥石", + "readging": "といし", + "pos": "名詞", + "pn": -0.673471 + }, + { + "surface": "頼る", + "readging": "たよる", + "pos": "動詞", + "pn": -0.673546 + }, + { + "surface": "稚児", + "readging": "ちご", + "pos": "名詞", + "pn": -0.673626 + }, + { + "surface": "着眼点", + "readging": "ちゃくがんてん", + "pos": "名詞", + "pn": -0.673664 + }, + { + "surface": "責務", + "readging": "せきむ", + "pos": "名詞", + "pn": -0.673706 + }, + { + "surface": "半片", + "readging": "はんぺん", + "pos": "名詞", + "pn": -0.673756 + }, + { + "surface": "青柳", + "readging": "あおやぎ", + "pos": "名詞", + "pn": -0.673828 + }, + { + "surface": "賭事", + "readging": "かけごと", + "pos": "名詞", + "pn": -0.67385 + }, + { + "surface": "壺", + "readging": "つぼ", + "pos": "名詞", + "pn": -0.673854 + }, + { + "surface": "烏瓜", + "readging": "からすうり", + "pos": "名詞", + "pn": -0.674012 + }, + { + "surface": "白髪", + "readging": "しらが", + "pos": "名詞", + "pn": -0.674019 + }, + { + "surface": "拍子", + "readging": "ひょうし", + "pos": "名詞", + "pn": -0.674043 + }, + { + "surface": "草鞋銭", + "readging": "わらじ", + "pos": "名詞", + "pn": -0.674044 + }, + { + "surface": "しゃがむ", + "readging": "しゃがむ", + "pos": "動詞", + "pn": -0.674122 + }, + { + "surface": "同衾", + "readging": "どうきん", + "pos": "名詞", + "pn": -0.674128 + }, + { + "surface": "船方", + "readging": "ふなかた", + "pos": "名詞", + "pn": -0.674184 + }, + { + "surface": "ふんぞり返る", + "readging": "ふんぞりかえる", + "pos": "動詞", + "pn": -0.674286 + }, + { + "surface": "茹で卵", + "readging": "ゆでたまご", + "pos": "名詞", + "pn": -0.674286 + }, + { + "surface": "紛れる", + "readging": "まぎれる", + "pos": "動詞", + "pn": -0.674354 + }, + { + "surface": "鼻眼鏡", + "readging": "はなめがね", + "pos": "名詞", + "pn": -0.674385 + }, + { + "surface": "食器", + "readging": "しょっき", + "pos": "名詞", + "pn": -0.67441 + }, + { + "surface": "葬儀", + "readging": "そうぎ", + "pos": "名詞", + "pn": -0.674441 + }, + { + "surface": "捩る", + "readging": "もじる", + "pos": "動詞", + "pn": -0.674521 + }, + { + "surface": "掛合い", + "readging": "かけあい", + "pos": "名詞", + "pn": -0.674522 + }, + { + "surface": "不調和", + "readging": "ふちょうわ", + "pos": "名詞", + "pn": -0.674554 + }, + { + "surface": "主人", + "readging": "しゅじん", + "pos": "名詞", + "pn": -0.674565 + }, + { + "surface": "齣", + "readging": "こま", + "pos": "名詞", + "pn": -0.674636 + }, + { + "surface": "棒状", + "readging": "ぼうじょう", + "pos": "名詞", + "pn": -0.674682 + }, + { + "surface": "かざけ", + "readging": "かざけ", + "pos": "名詞", + "pn": -0.674697 + }, + { + "surface": "吊し柿", + "readging": "つるしがき", + "pos": "名詞", + "pn": -0.674709 + }, + { + "surface": "紛乱", + "readging": "ふんらん", + "pos": "名詞", + "pn": -0.674713 + }, + { + "surface": "到来", + "readging": "とうらい", + "pos": "名詞", + "pn": -0.674725 + }, + { + "surface": "石榴口", + "readging": "ざくろぐち", + "pos": "名詞", + "pn": -0.674776 + }, + { + "surface": "手当", + "readging": "てあて", + "pos": "名詞", + "pn": -0.674785 + }, + { + "surface": "恥辱", + "readging": "ちじょく", + "pos": "名詞", + "pn": -0.674808 + }, + { + "surface": "飛電", + "readging": "ひでん", + "pos": "名詞", + "pn": -0.674825 + }, + { + "surface": "狐饂飩", + "readging": "きつねうどん", + "pos": "名詞", + "pn": -0.674841 + }, + { + "surface": "冗長", + "readging": "じょうちょう", + "pos": "名詞", + "pn": -0.674959 + }, + { + "surface": "難物", + "readging": "なんぶつ", + "pos": "名詞", + "pn": -0.67498 + }, + { + "surface": "様式", + "readging": "ようしき", + "pos": "名詞", + "pn": -0.674981 + }, + { + "surface": "世間", + "readging": "せけん", + "pos": "名詞", + "pn": -0.67503 + }, + { + "surface": "藁しべ", + "readging": "わらしべ", + "pos": "名詞", + "pn": -0.675085 + }, + { + "surface": "蒲", + "readging": "がま", + "pos": "名詞", + "pn": -0.675117 + }, + { + "surface": "家督", + "readging": "かとく", + "pos": "名詞", + "pn": -0.67515 + }, + { + "surface": "厩", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.675156 + }, + { + "surface": "冷える", + "readging": "ひえる", + "pos": "動詞", + "pn": -0.675156 + }, + { + "surface": "達磨", + "readging": "だるま", + "pos": "名詞", + "pn": -0.675159 + }, + { + "surface": "京", + "readging": "きょう", + "pos": "名詞", + "pn": -0.675173 + }, + { + "surface": "広言", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.675279 + }, + { + "surface": "演劇", + "readging": "えんげき", + "pos": "名詞", + "pn": -0.675302 + }, + { + "surface": "去痰", + "readging": "きょたん", + "pos": "名詞", + "pn": -0.675327 + }, + { + "surface": "やっと", + "readging": "やっと", + "pos": "副詞", + "pn": -0.675394 + }, + { + "surface": "残敵", + "readging": "ざんてき", + "pos": "名詞", + "pn": -0.6754 + }, + { + "surface": "診断", + "readging": "しんだん", + "pos": "名詞", + "pn": -0.675434 + }, + { + "surface": "納", + "readging": "のう", + "pos": "名詞", + "pn": -0.675593 + }, + { + "surface": "腹部", + "readging": "ふくぶ", + "pos": "名詞", + "pn": -0.675596 + }, + { + "surface": "首途", + "readging": "しゅと", + "pos": "名詞", + "pn": -0.675608 + }, + { + "surface": "弁解", + "readging": "べんかい", + "pos": "名詞", + "pn": -0.675614 + }, + { + "surface": "ほざく", + "readging": "ほざく", + "pos": "動詞", + "pn": -0.675635 + }, + { + "surface": "酸い", + "readging": "すい", + "pos": "形容詞", + "pn": -0.675642 + }, + { + "surface": "扇", + "readging": "おうぎ", + "pos": "名詞", + "pn": -0.675701 + }, + { + "surface": "都会", + "readging": "とかい", + "pos": "名詞", + "pn": -0.675717 + }, + { + "surface": "羊", + "readging": "よう", + "pos": "名詞", + "pn": -0.675747 + }, + { + "surface": "頬骨", + "readging": "ほおぼね", + "pos": "名詞", + "pn": -0.675813 + }, + { + "surface": "復職", + "readging": "ふくしょく", + "pos": "名詞", + "pn": -0.675841 + }, + { + "surface": "洗濯", + "readging": "せんたく", + "pos": "名詞", + "pn": -0.675845 + }, + { + "surface": "線描き", + "readging": "せんがき", + "pos": "名詞", + "pn": -0.67585 + }, + { + "surface": "一端", + "readging": "いっぱし", + "pos": "名詞", + "pn": -0.675864 + }, + { + "surface": "陰性", + "readging": "いんせい", + "pos": "名詞", + "pn": -0.675923 + }, + { + "surface": "痰", + "readging": "たん", + "pos": "名詞", + "pn": -0.675933 + }, + { + "surface": "鏡", + "readging": "きょう", + "pos": "名詞", + "pn": -0.675986 + }, + { + "surface": "膿疱", + "readging": "のうほう", + "pos": "名詞", + "pn": -0.676012 + }, + { + "surface": "冗員", + "readging": "じょういん", + "pos": "名詞", + "pn": -0.676046 + }, + { + "surface": "鰯", + "readging": "いわし", + "pos": "名詞", + "pn": -0.676047 + }, + { + "surface": "料金", + "readging": "りょうきん", + "pos": "名詞", + "pn": -0.676077 + }, + { + "surface": "口髭", + "readging": "くちひげ", + "pos": "名詞", + "pn": -0.676094 + }, + { + "surface": "わめく", + "readging": "わめく", + "pos": "動詞", + "pn": -0.676197 + }, + { + "surface": "畑", + "readging": "はたけ", + "pos": "名詞", + "pn": -0.676238 + }, + { + "surface": "斃死", + "readging": "へいし", + "pos": "名詞", + "pn": -0.676243 + }, + { + "surface": "うわなり", + "readging": "うわなり", + "pos": "名詞", + "pn": -0.676258 + }, + { + "surface": "梵鐘", + "readging": "ぼんしょう", + "pos": "名詞", + "pn": -0.676286 + }, + { + "surface": "鳥獣", + "readging": "ちょうじゅう", + "pos": "名詞", + "pn": -0.676302 + }, + { + "surface": "符号", + "readging": "ふごう", + "pos": "名詞", + "pn": -0.676345 + }, + { + "surface": "汲水", + "readging": "きゅうすい", + "pos": "名詞", + "pn": -0.676392 + }, + { + "surface": "鉄鎖", + "readging": "てっさ", + "pos": "名詞", + "pn": -0.676422 + }, + { + "surface": "復調", + "readging": "ふくちょう", + "pos": "名詞", + "pn": -0.676426 + }, + { + "surface": "掌", + "readging": "しょう", + "pos": "名詞", + "pn": -0.676449 + }, + { + "surface": "広広", + "readging": "ひろびろ", + "pos": "名詞", + "pn": -0.676512 + }, + { + "surface": "医家", + "readging": "いか", + "pos": "名詞", + "pn": -0.676532 + }, + { + "surface": "沈鬱", + "readging": "ちんうつ", + "pos": "名詞", + "pn": -0.676533 + }, + { + "surface": "鱗茎", + "readging": "りんけい", + "pos": "名詞", + "pn": -0.676559 + }, + { + "surface": "痛める", + "readging": "いためる", + "pos": "動詞", + "pn": -0.676591 + }, + { + "surface": "柵", + "readging": "しがらみ", + "pos": "名詞", + "pn": -0.676599 + }, + { + "surface": "芽", + "readging": "め", + "pos": "名詞", + "pn": -0.67664 + }, + { + "surface": "明け方", + "readging": "あけがた", + "pos": "名詞", + "pn": -0.676714 + }, + { + "surface": "もう", + "readging": "もう", + "pos": "副詞", + "pn": -0.676759 + }, + { + "surface": "乱れ箱", + "readging": "みだればこ", + "pos": "名詞", + "pn": -0.676829 + }, + { + "surface": "追尾", + "readging": "ついび", + "pos": "名詞", + "pn": -0.676843 + }, + { + "surface": "恐れ入る", + "readging": "おそれいる", + "pos": "動詞", + "pn": -0.676902 + }, + { + "surface": "雨垂れ落ち", + "readging": "あまだれおち", + "pos": "名詞", + "pn": -0.676944 + }, + { + "surface": "鼠鳴き", + "readging": "ねずみなき", + "pos": "名詞", + "pn": -0.676953 + }, + { + "surface": "内玄関", + "readging": "ないげんかん", + "pos": "名詞", + "pn": -0.676963 + }, + { + "surface": "除幕", + "readging": "じょまく", + "pos": "名詞", + "pn": -0.676989 + }, + { + "surface": "丸", + "readging": "まる", + "pos": "名詞", + "pn": -0.677026 + }, + { + "surface": "課する", + "readging": "かする", + "pos": "動詞", + "pn": -0.67709 + }, + { + "surface": "樹木", + "readging": "じゅもく", + "pos": "名詞", + "pn": -0.677098 + }, + { + "surface": "駅亭", + "readging": "えきてい", + "pos": "名詞", + "pn": -0.677099 + }, + { + "surface": "息女", + "readging": "そくじょ", + "pos": "名詞", + "pn": -0.677099 + }, + { + "surface": "べっとり", + "readging": "べっとり", + "pos": "副詞", + "pn": -0.677139 + }, + { + "surface": "弾力", + "readging": "だんりょく", + "pos": "名詞", + "pn": -0.677198 + }, + { + "surface": "排斥", + "readging": "はいせき", + "pos": "名詞", + "pn": -0.677228 + }, + { + "surface": "毛穴", + "readging": "けあな", + "pos": "名詞", + "pn": -0.677263 + }, + { + "surface": "陳", + "readging": "ちん", + "pos": "名詞", + "pn": -0.677288 + }, + { + "surface": "凄絶", + "readging": "せいぜつ", + "pos": "名詞", + "pn": -0.677292 + }, + { + "surface": "手首", + "readging": "てくび", + "pos": "名詞", + "pn": -0.677301 + }, + { + "surface": "纐纈", + "readging": "こうけち", + "pos": "名詞", + "pn": -0.677349 + }, + { + "surface": "心労", + "readging": "しんろう", + "pos": "名詞", + "pn": -0.677417 + }, + { + "surface": "盆の窪", + "readging": "ぼんのくぼ", + "pos": "名詞", + "pn": -0.677471 + }, + { + "surface": "跪拝", + "readging": "きはい", + "pos": "名詞", + "pn": -0.677517 + }, + { + "surface": "病原菌", + "readging": "びょうげんきん", + "pos": "名詞", + "pn": -0.677524 + }, + { + "surface": "山刀", + "readging": "やまがたな", + "pos": "名詞", + "pn": -0.677537 + }, + { + "surface": "稲荷鮨", + "readging": "いなりずし", + "pos": "名詞", + "pn": -0.677559 + }, + { + "surface": "仮寝", + "readging": "かりね", + "pos": "名詞", + "pn": -0.677561 + }, + { + "surface": "夥多", + "readging": "かた", + "pos": "名詞", + "pn": -0.677563 + }, + { + "surface": "食らう", + "readging": "くらう", + "pos": "動詞", + "pn": -0.677614 + }, + { + "surface": "肺臓", + "readging": "はいぞう", + "pos": "名詞", + "pn": -0.677614 + }, + { + "surface": "澱粉", + "readging": "でんぷん", + "pos": "名詞", + "pn": -0.677642 + }, + { + "surface": "紐革", + "readging": "ひもかわ", + "pos": "名詞", + "pn": -0.677702 + }, + { + "surface": "競う", + "readging": "きそう", + "pos": "動詞", + "pn": -0.677742 + }, + { + "surface": "叙", + "readging": "じょ", + "pos": "名詞", + "pn": -0.677807 + }, + { + "surface": "物入り", + "readging": "ものいり", + "pos": "名詞", + "pn": -0.677833 + }, + { + "surface": "悔み", + "readging": "くやみ", + "pos": "名詞", + "pn": -0.677863 + }, + { + "surface": "閉込める", + "readging": "とじこめる", + "pos": "動詞", + "pn": -0.677873 + }, + { + "surface": "喧喧", + "readging": "けんけん", + "pos": "名詞", + "pn": -0.677911 + }, + { + "surface": "手練", + "readging": "てれん", + "pos": "名詞", + "pn": -0.677936 + }, + { + "surface": "千鳥", + "readging": "ちどり", + "pos": "名詞", + "pn": -0.677947 + }, + { + "surface": "足", + "readging": "あし", + "pos": "名詞", + "pn": -0.677969 + }, + { + "surface": "孵卵", + "readging": "ふらん", + "pos": "名詞", + "pn": -0.678001 + }, + { + "surface": "無視", + "readging": "むし", + "pos": "名詞", + "pn": -0.678049 + }, + { + "surface": "乾拭き", + "readging": "からぶき", + "pos": "名詞", + "pn": -0.678052 + }, + { + "surface": "雌雄", + "readging": "しゆう", + "pos": "名詞", + "pn": -0.678238 + }, + { + "surface": "虎髭", + "readging": "とらひげ", + "pos": "名詞", + "pn": -0.678336 + }, + { + "surface": "慰み物", + "readging": "なぐさみもの", + "pos": "名詞", + "pn": -0.678376 + }, + { + "surface": "獣", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.678439 + }, + { + "surface": "礼服", + "readging": "れいふく", + "pos": "名詞", + "pn": -0.678472 + }, + { + "surface": "ネック", + "readging": "ネックレス", + "pos": "名詞", + "pn": -0.6785 + }, + { + "surface": "空き腹", + "readging": "すきばら", + "pos": "名詞", + "pn": -0.678521 + }, + { + "surface": "濡羽色", + "readging": "ぬればいろ", + "pos": "名詞", + "pn": -0.678555 + }, + { + "surface": "帯締", + "readging": "おびじめ", + "pos": "名詞", + "pn": -0.678562 + }, + { + "surface": "差担い", + "readging": "さしにない", + "pos": "名詞", + "pn": -0.678587 + }, + { + "surface": "凭せ掛ける", + "readging": "もたせかける", + "pos": "動詞", + "pn": -0.678605 + }, + { + "surface": "冗語", + "readging": "じょうご", + "pos": "名詞", + "pn": -0.678619 + }, + { + "surface": "思い", + "readging": "おもい", + "pos": "名詞", + "pn": -0.678658 + }, + { + "surface": "構える", + "readging": "かまえる", + "pos": "動詞", + "pn": -0.678721 + }, + { + "surface": "麓", + "readging": "ふもと", + "pos": "名詞", + "pn": -0.678802 + }, + { + "surface": "用途", + "readging": "ようと", + "pos": "名詞", + "pn": -0.678828 + }, + { + "surface": "階段", + "readging": "かいだん", + "pos": "名詞", + "pn": -0.678903 + }, + { + "surface": "黄蘗", + "readging": "きはだ", + "pos": "名詞", + "pn": -0.678922 + }, + { + "surface": "おむすび", + "readging": "おむすび", + "pos": "名詞", + "pn": -0.67897 + }, + { + "surface": "多寡", + "readging": "たか", + "pos": "名詞", + "pn": -0.67897 + }, + { + "surface": "半減", + "readging": "はんげん", + "pos": "名詞", + "pn": -0.679084 + }, + { + "surface": "ぐるり", + "readging": "ぐるり", + "pos": "副詞", + "pn": -0.679091 + }, + { + "surface": "触文", + "readging": "ふれぶみ", + "pos": "名詞", + "pn": -0.679216 + }, + { + "surface": "味噌漉し", + "readging": "みそこし", + "pos": "名詞", + "pn": -0.679234 + }, + { + "surface": "寓目", + "readging": "ぐうもく", + "pos": "名詞", + "pn": -0.679283 + }, + { + "surface": "列", + "readging": "れつ", + "pos": "名詞", + "pn": -0.679326 + }, + { + "surface": "論じる", + "readging": "ろんじる", + "pos": "動詞", + "pn": -0.679328 + }, + { + "surface": "掠る", + "readging": "かする", + "pos": "動詞", + "pn": -0.679437 + }, + { + "surface": "退く", + "readging": "どく", + "pos": "動詞", + "pn": -0.67948 + }, + { + "surface": "突っ突く", + "readging": "つっつく", + "pos": "動詞", + "pn": -0.679519 + }, + { + "surface": "過る", + "readging": "よぎる", + "pos": "動詞", + "pn": -0.679539 + }, + { + "surface": "棚引く", + "readging": "たなびく", + "pos": "動詞", + "pn": -0.679579 + }, + { + "surface": "魴ぼう", + "readging": "ほうぼう", + "pos": "名詞", + "pn": -0.679584 + }, + { + "surface": "物凄い", + "readging": "ものすごい", + "pos": "形容詞", + "pn": -0.679596 + }, + { + "surface": "落丁", + "readging": "らくちょう", + "pos": "名詞", + "pn": -0.67965 + }, + { + "surface": "愚昧", + "readging": "ぐまい", + "pos": "名詞", + "pn": -0.679699 + }, + { + "surface": "我利", + "readging": "がり", + "pos": "名詞", + "pn": -0.679734 + }, + { + "surface": "べたべた", + "readging": "べたべた", + "pos": "副詞", + "pn": -0.679743 + }, + { + "surface": "渦巻く", + "readging": "うずまく", + "pos": "動詞", + "pn": -0.679887 + }, + { + "surface": "戦略", + "readging": "せんりゃく", + "pos": "名詞", + "pn": -0.679915 + }, + { + "surface": "浴場", + "readging": "よくじょう", + "pos": "名詞", + "pn": -0.679951 + }, + { + "surface": "譲る", + "readging": "ゆずる", + "pos": "動詞", + "pn": -0.679973 + }, + { + "surface": "種種相", + "readging": "しゅじゅそう", + "pos": "名詞", + "pn": -0.680034 + }, + { + "surface": "雁が音", + "readging": "かりがね", + "pos": "名詞", + "pn": -0.680096 + }, + { + "surface": "くべる", + "readging": "くべる", + "pos": "動詞", + "pn": -0.680103 + }, + { + "surface": "軽侮", + "readging": "けいぶ", + "pos": "名詞", + "pn": -0.680105 + }, + { + "surface": "晒し", + "readging": "さらし", + "pos": "名詞", + "pn": -0.680235 + }, + { + "surface": "東", + "readging": "ひんがし", + "pos": "名詞", + "pn": -0.680247 + }, + { + "surface": "遠慮", + "readging": "えんりょ", + "pos": "名詞", + "pn": -0.680315 + }, + { + "surface": "製", + "readging": "せい", + "pos": "名詞", + "pn": -0.680331 + }, + { + "surface": "後回し", + "readging": "あとまわし", + "pos": "名詞", + "pn": -0.68039 + }, + { + "surface": "蝋", + "readging": "ろう", + "pos": "名詞", + "pn": -0.6804 + }, + { + "surface": "彫刻", + "readging": "ちょうこく", + "pos": "名詞", + "pn": -0.680419 + }, + { + "surface": "鼻孔", + "readging": "びこう", + "pos": "名詞", + "pn": -0.680423 + }, + { + "surface": "平面", + "readging": "へいめん", + "pos": "名詞", + "pn": -0.680479 + }, + { + "surface": "薄暮", + "readging": "はくぼ", + "pos": "名詞", + "pn": -0.68054 + }, + { + "surface": "刷", + "readging": "さつ", + "pos": "名詞", + "pn": -0.680548 + }, + { + "surface": "もじゃもじゃ", + "readging": "もじゃもじゃ", + "pos": "副詞", + "pn": -0.680556 + }, + { + "surface": "拳固", + "readging": "げんこ", + "pos": "名詞", + "pn": -0.680564 + }, + { + "surface": "明り", + "readging": "あかり", + "pos": "名詞", + "pn": -0.68064 + }, + { + "surface": "投網", + "readging": "とあみ", + "pos": "名詞", + "pn": -0.680653 + }, + { + "surface": "霊", + "readging": "れい", + "pos": "名詞", + "pn": -0.680748 + }, + { + "surface": "何とて", + "readging": "なにとて", + "pos": "副詞", + "pn": -0.680748 + }, + { + "surface": "寒天", + "readging": "かんてん", + "pos": "名詞", + "pn": -0.680766 + }, + { + "surface": "堅甲", + "readging": "けんこう", + "pos": "名詞", + "pn": -0.680814 + }, + { + "surface": "気持", + "readging": "きもち", + "pos": "名詞", + "pn": -0.680825 + }, + { + "surface": "靡かす", + "readging": "なびかす", + "pos": "動詞", + "pn": -0.680829 + }, + { + "surface": "点る", + "readging": "ともる", + "pos": "動詞", + "pn": -0.680888 + }, + { + "surface": "営む", + "readging": "いとなむ", + "pos": "動詞", + "pn": -0.68098 + }, + { + "surface": "推量", + "readging": "すいりょう", + "pos": "名詞", + "pn": -0.68098 + }, + { + "surface": "丸み", + "readging": "まるみ", + "pos": "名詞", + "pn": -0.681043 + }, + { + "surface": "捩合う", + "readging": "ねじあう", + "pos": "動詞", + "pn": -0.681113 + }, + { + "surface": "挑む", + "readging": "いどむ", + "pos": "動詞", + "pn": -0.681123 + }, + { + "surface": "照らす", + "readging": "てらす", + "pos": "動詞", + "pn": -0.681237 + }, + { + "surface": "蒲焼", + "readging": "かばやき", + "pos": "名詞", + "pn": -0.681238 + }, + { + "surface": "刳形", + "readging": "くりかた", + "pos": "名詞", + "pn": -0.681258 + }, + { + "surface": "剛毛", + "readging": "ごうもう", + "pos": "名詞", + "pn": -0.681258 + }, + { + "surface": "矯飾", + "readging": "きょうしょく", + "pos": "名詞", + "pn": -0.681318 + }, + { + "surface": "羽箒", + "readging": "はねぼうき", + "pos": "名詞", + "pn": -0.681346 + }, + { + "surface": "術策", + "readging": "じゅっさく", + "pos": "名詞", + "pn": -0.681353 + }, + { + "surface": "葬礼", + "readging": "そうれい", + "pos": "名詞", + "pn": -0.681368 + }, + { + "surface": "寸寸", + "readging": "すんずん", + "pos": "名詞", + "pn": -0.681384 + }, + { + "surface": "昧爽", + "readging": "まいそう", + "pos": "名詞", + "pn": -0.68149 + }, + { + "surface": "羊", + "readging": "ひつじ", + "pos": "名詞", + "pn": -0.681514 + }, + { + "surface": "妾", + "readging": "しょう", + "pos": "名詞", + "pn": -0.681568 + }, + { + "surface": "出任せ", + "readging": "でまかせ", + "pos": "名詞", + "pn": -0.681579 + }, + { + "surface": "追儺", + "readging": "ついな", + "pos": "名詞", + "pn": -0.681584 + }, + { + "surface": "金轡", + "readging": "かなぐつわ", + "pos": "名詞", + "pn": -0.681592 + }, + { + "surface": "手違い", + "readging": "てちがい", + "pos": "名詞", + "pn": -0.681685 + }, + { + "surface": "下げ棚", + "readging": "さげだな", + "pos": "名詞", + "pn": -0.681701 + }, + { + "surface": "懸河", + "readging": "けんが", + "pos": "名詞", + "pn": -0.681718 + }, + { + "surface": "腫", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.681761 + }, + { + "surface": "嵩む", + "readging": "かさむ", + "pos": "動詞", + "pn": -0.681818 + }, + { + "surface": "毒牙", + "readging": "どくが", + "pos": "名詞", + "pn": -0.681829 + }, + { + "surface": "氷嚢", + "readging": "ひょうのう", + "pos": "名詞", + "pn": -0.681898 + }, + { + "surface": "閏月", + "readging": "じゅんげつ", + "pos": "名詞", + "pn": -0.681926 + }, + { + "surface": "苗", + "readging": "びょう", + "pos": "名詞", + "pn": -0.68197 + }, + { + "surface": "疎漏", + "readging": "そろう", + "pos": "名詞", + "pn": -0.681992 + }, + { + "surface": "雄ねじ", + "readging": "おねじ", + "pos": "名詞", + "pn": -0.682006 + }, + { + "surface": "残す", + "readging": "のこす", + "pos": "動詞", + "pn": -0.682021 + }, + { + "surface": "火事泥", + "readging": "かじどろ", + "pos": "名詞", + "pn": -0.682069 + }, + { + "surface": "桟", + "readging": "さん", + "pos": "名詞", + "pn": -0.682138 + }, + { + "surface": "再発", + "readging": "さいはつ", + "pos": "名詞", + "pn": -0.682144 + }, + { + "surface": "主成分", + "readging": "しゅせいぶん", + "pos": "名詞", + "pn": -0.682201 + }, + { + "surface": "顰める", + "readging": "ひそめる", + "pos": "動詞", + "pn": -0.682204 + }, + { + "surface": "習う", + "readging": "ならう", + "pos": "動詞", + "pn": -0.682212 + }, + { + "surface": "通称", + "readging": "つうしょう", + "pos": "名詞", + "pn": -0.682267 + }, + { + "surface": "裳抜け", + "readging": "もぬけ", + "pos": "名詞", + "pn": -0.682322 + }, + { + "surface": "引摺る", + "readging": "ひきずる", + "pos": "動詞", + "pn": -0.682328 + }, + { + "surface": "放埒", + "readging": "ほうらつ", + "pos": "名詞", + "pn": -0.682329 + }, + { + "surface": "御難", + "readging": "ごなん", + "pos": "名詞", + "pn": -0.682329 + }, + { + "surface": "百行", + "readging": "ひゃっこう", + "pos": "名詞", + "pn": -0.682586 + }, + { + "surface": "皆の衆", + "readging": "みなのしゅう", + "pos": "名詞", + "pn": -0.682586 + }, + { + "surface": "目蔭", + "readging": "まかげ", + "pos": "名詞", + "pn": -0.682598 + }, + { + "surface": "まさぐる", + "readging": "まさぐる", + "pos": "動詞", + "pn": -0.682604 + }, + { + "surface": "ちろちろ", + "readging": "ちろちろ", + "pos": "副詞", + "pn": -0.682823 + }, + { + "surface": "藉口", + "readging": "しゃこう", + "pos": "名詞", + "pn": -0.682828 + }, + { + "surface": "襟首", + "readging": "えりくび", + "pos": "名詞", + "pn": -0.682937 + }, + { + "surface": "休む", + "readging": "やすむ", + "pos": "動詞", + "pn": -0.682955 + }, + { + "surface": "更迭", + "readging": "こうてつ", + "pos": "名詞", + "pn": -0.682982 + }, + { + "surface": "継物", + "readging": "つぎもの", + "pos": "名詞", + "pn": -0.682988 + }, + { + "surface": "お握り", + "readging": "おにぎり", + "pos": "名詞", + "pn": -0.683017 + }, + { + "surface": "夕", + "readging": "せき", + "pos": "名詞", + "pn": -0.683067 + }, + { + "surface": "被せ蓋", + "readging": "かぶせぶた", + "pos": "名詞", + "pn": -0.683088 + }, + { + "surface": "居間", + "readging": "いま", + "pos": "名詞", + "pn": -0.68328 + }, + { + "surface": "小銭", + "readging": "こぜに", + "pos": "名詞", + "pn": -0.683281 + }, + { + "surface": "落陽", + "readging": "らくよう", + "pos": "名詞", + "pn": -0.683294 + }, + { + "surface": "薬", + "readging": "くすり", + "pos": "名詞", + "pn": -0.683323 + }, + { + "surface": "伸", + "readging": "しん", + "pos": "名詞", + "pn": -0.683352 + }, + { + "surface": "気管", + "readging": "きかん", + "pos": "名詞", + "pn": -0.683387 + }, + { + "surface": "下つ方", + "readging": "しもつかた", + "pos": "名詞", + "pn": -0.683397 + }, + { + "surface": "眉宇", + "readging": "びう", + "pos": "名詞", + "pn": -0.683574 + }, + { + "surface": "巻鬚", + "readging": "まきひげ", + "pos": "名詞", + "pn": -0.683592 + }, + { + "surface": "喧喧囂囂", + "readging": "けんけんごうごう", + "pos": "名詞", + "pn": -0.68362 + }, + { + "surface": "肉付き", + "readging": "にくづき", + "pos": "名詞", + "pn": -0.683624 + }, + { + "surface": "留まる", + "readging": "とどまる", + "pos": "動詞", + "pn": -0.683698 + }, + { + "surface": "一考", + "readging": "いっこう", + "pos": "名詞", + "pn": -0.683701 + }, + { + "surface": "免疫", + "readging": "めんえき", + "pos": "名詞", + "pn": -0.68378 + }, + { + "surface": "属", + "readging": "ぞく", + "pos": "名詞", + "pn": -0.683813 + }, + { + "surface": "結城縞", + "readging": "ゆうき", + "pos": "名詞", + "pn": -0.683844 + }, + { + "surface": "尻毛", + "readging": "しりげ", + "pos": "名詞", + "pn": -0.683901 + }, + { + "surface": "労", + "readging": "ろう", + "pos": "名詞", + "pn": -0.683954 + }, + { + "surface": "染みる", + "readging": "しみる", + "pos": "動詞", + "pn": -0.68396 + }, + { + "surface": "石油", + "readging": "せきゆ", + "pos": "名詞", + "pn": -0.683973 + }, + { + "surface": "強飯", + "readging": "こわいい", + "pos": "名詞", + "pn": -0.683985 + }, + { + "surface": "架設", + "readging": "かせつ", + "pos": "名詞", + "pn": -0.684002 + }, + { + "surface": "味噌和え", + "readging": "みそあえ", + "pos": "名詞", + "pn": -0.684005 + }, + { + "surface": "蝸牛", + "readging": "かたつむり", + "pos": "名詞", + "pn": -0.684157 + }, + { + "surface": "羽並", + "readging": "はなみ", + "pos": "名詞", + "pn": -0.684211 + }, + { + "surface": "別珍", + "readging": "べっちん", + "pos": "名詞", + "pn": -0.684232 + }, + { + "surface": "圧砕", + "readging": "あっさい", + "pos": "名詞", + "pn": -0.684275 + }, + { + "surface": "案", + "readging": "あん", + "pos": "名詞", + "pn": -0.684348 + }, + { + "surface": "雪叩き", + "readging": "ゆきたたき", + "pos": "名詞", + "pn": -0.684377 + }, + { + "surface": "磨ガラス", + "readging": "すりガラス", + "pos": "名詞", + "pn": -0.684406 + }, + { + "surface": "合金", + "readging": "ごうきん", + "pos": "名詞", + "pn": -0.684457 + }, + { + "surface": "釣鐘", + "readging": "つりがね", + "pos": "名詞", + "pn": -0.68447 + }, + { + "surface": "羽根突き", + "readging": "はねつき", + "pos": "名詞", + "pn": -0.684471 + }, + { + "surface": "餅", + "readging": "もち", + "pos": "名詞", + "pn": -0.684554 + }, + { + "surface": "傍訓", + "readging": "ぼうくん", + "pos": "名詞", + "pn": -0.684574 + }, + { + "surface": "高鼾", + "readging": "たかいびき", + "pos": "名詞", + "pn": -0.684616 + }, + { + "surface": "膝頭", + "readging": "ひざがしら", + "pos": "名詞", + "pn": -0.684678 + }, + { + "surface": "平める", + "readging": "ひらめる", + "pos": "動詞", + "pn": -0.684699 + }, + { + "surface": "競合", + "readging": "きょうごう", + "pos": "名詞", + "pn": -0.684701 + }, + { + "surface": "罅", + "readging": "ひび", + "pos": "名詞", + "pn": -0.684758 + }, + { + "surface": "血糊", + "readging": "ちのり", + "pos": "名詞", + "pn": -0.684825 + }, + { + "surface": "しかく", + "readging": "しかくい", + "pos": "形容詞", + "pn": -0.684858 + }, + { + "surface": "熊の胆", + "readging": "くまのい", + "pos": "名詞", + "pn": -0.684869 + }, + { + "surface": "歴程", + "readging": "れきてい", + "pos": "名詞", + "pn": -0.684903 + }, + { + "surface": "秋めく", + "readging": "あきめく", + "pos": "動詞", + "pn": -0.684905 + }, + { + "surface": "藁布団", + "readging": "わらぶとん", + "pos": "名詞", + "pn": -0.684968 + }, + { + "surface": "村里", + "readging": "むらざと", + "pos": "名詞", + "pn": -0.685035 + }, + { + "surface": "連ねる", + "readging": "つらねる", + "pos": "動詞", + "pn": -0.685104 + }, + { + "surface": "拝眉", + "readging": "はいび", + "pos": "名詞", + "pn": -0.685115 + }, + { + "surface": "周辺", + "readging": "しゅうへん", + "pos": "名詞", + "pn": -0.685121 + }, + { + "surface": "拒む", + "readging": "こばむ", + "pos": "動詞", + "pn": -0.685154 + }, + { + "surface": "突除ける", + "readging": "つきのける", + "pos": "動詞", + "pn": -0.685165 + }, + { + "surface": "脅威", + "readging": "きょうい", + "pos": "名詞", + "pn": -0.685178 + }, + { + "surface": "毒殺", + "readging": "どくさつ", + "pos": "名詞", + "pn": -0.685191 + }, + { + "surface": "レース", + "readging": "レース", + "pos": "名詞", + "pn": -0.685235 + }, + { + "surface": "童子", + "readging": "どうじ", + "pos": "名詞", + "pn": -0.685246 + }, + { + "surface": "巻積雲", + "readging": "けんせきうん", + "pos": "名詞", + "pn": -0.685322 + }, + { + "surface": "頂", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.685377 + }, + { + "surface": "男子", + "readging": "だんし", + "pos": "名詞", + "pn": -0.685441 + }, + { + "surface": "芸", + "readging": "げい", + "pos": "名詞", + "pn": -0.685448 + }, + { + "surface": "実験", + "readging": "じっけん", + "pos": "名詞", + "pn": -0.685507 + }, + { + "surface": "すってんころりと", + "readging": "すってんころりと", + "pos": "副詞", + "pn": -0.685526 + }, + { + "surface": "脇息", + "readging": "きょうそく", + "pos": "名詞", + "pn": -0.685539 + }, + { + "surface": "操る", + "readging": "あやつる", + "pos": "動詞", + "pn": -0.685622 + }, + { + "surface": "朱", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.685707 + }, + { + "surface": "付添う", + "readging": "つきそう", + "pos": "動詞", + "pn": -0.685738 + }, + { + "surface": "うろ抜く", + "readging": "うろぬく", + "pos": "動詞", + "pn": -0.685776 + }, + { + "surface": "寸毫", + "readging": "すんごう", + "pos": "副詞", + "pn": -0.685785 + }, + { + "surface": "球状", + "readging": "きゅうじょう", + "pos": "名詞", + "pn": -0.685809 + }, + { + "surface": "飛違う", + "readging": "とびちがう", + "pos": "動詞", + "pn": -0.685851 + }, + { + "surface": "馬", + "readging": "うま", + "pos": "名詞", + "pn": -0.685903 + }, + { + "surface": "小豆色", + "readging": "あずき", + "pos": "名詞", + "pn": -0.685926 + }, + { + "surface": "疥癬", + "readging": "かいせん", + "pos": "名詞", + "pn": -0.685931 + }, + { + "surface": "天丼", + "readging": "てんどん", + "pos": "名詞", + "pn": -0.685947 + }, + { + "surface": "乾き", + "readging": "かわき", + "pos": "名詞", + "pn": -0.685976 + }, + { + "surface": "費える", + "readging": "ついえる", + "pos": "動詞", + "pn": -0.686037 + }, + { + "surface": "せっつく", + "readging": "せっつく", + "pos": "動詞", + "pn": -0.686052 + }, + { + "surface": "夥しい", + "readging": "おびただしい", + "pos": "形容詞", + "pn": -0.68607 + }, + { + "surface": "省く", + "readging": "はぶく", + "pos": "動詞", + "pn": -0.686134 + }, + { + "surface": "垂柳", + "readging": "すいりゅう", + "pos": "名詞", + "pn": -0.686166 + }, + { + "surface": "井戸", + "readging": "いど", + "pos": "名詞", + "pn": -0.686224 + }, + { + "surface": "高襷", + "readging": "たかだすき", + "pos": "名詞", + "pn": -0.686318 + }, + { + "surface": "そっくり", + "readging": "そっくり", + "pos": "副詞", + "pn": -0.686328 + }, + { + "surface": "凍てる", + "readging": "いてる", + "pos": "動詞", + "pn": -0.686333 + }, + { + "surface": "直線", + "readging": "ちょくせん", + "pos": "名詞", + "pn": -0.68649 + }, + { + "surface": "一手", + "readging": "ひとて", + "pos": "名詞", + "pn": -0.686637 + }, + { + "surface": "怖じ気", + "readging": "おじけ", + "pos": "名詞", + "pn": -0.686692 + }, + { + "surface": "繊手", + "readging": "せんしゅ", + "pos": "名詞", + "pn": -0.686693 + }, + { + "surface": "蛾", + "readging": "が", + "pos": "名詞", + "pn": -0.686754 + }, + { + "surface": "翼", + "readging": "つばさ", + "pos": "名詞", + "pn": -0.686793 + }, + { + "surface": "情事", + "readging": "じょうじ", + "pos": "名詞", + "pn": -0.686795 + }, + { + "surface": "早計", + "readging": "そうけい", + "pos": "名詞", + "pn": -0.686858 + }, + { + "surface": "修繕", + "readging": "しゅうぜん", + "pos": "名詞", + "pn": -0.686888 + }, + { + "surface": "百獣", + "readging": "ひゃくじゅう", + "pos": "名詞", + "pn": -0.686938 + }, + { + "surface": "天気雨", + "readging": "てんきあめ", + "pos": "名詞", + "pn": -0.687083 + }, + { + "surface": "ペチカ", + "readging": "ペチカ", + "pos": "名詞", + "pn": -0.687156 + }, + { + "surface": "倹飩", + "readging": "けんどん", + "pos": "名詞", + "pn": -0.687229 + }, + { + "surface": "俘虜", + "readging": "ふりょ", + "pos": "名詞", + "pn": -0.687231 + }, + { + "surface": "鐘鼓", + "readging": "しょうこ", + "pos": "名詞", + "pn": -0.687231 + }, + { + "surface": "仲仕", + "readging": "なかし", + "pos": "名詞", + "pn": -0.687265 + }, + { + "surface": "収入", + "readging": "しゅうにゅう", + "pos": "名詞", + "pn": -0.687265 + }, + { + "surface": "べろべろ", + "readging": "べろべろ", + "pos": "副詞", + "pn": -0.687279 + }, + { + "surface": "盛込む", + "readging": "もりこむ", + "pos": "動詞", + "pn": -0.687304 + }, + { + "surface": "悍馬", + "readging": "かんば", + "pos": "名詞", + "pn": -0.687311 + }, + { + "surface": "和える", + "readging": "あえる", + "pos": "動詞", + "pn": -0.68733 + }, + { + "surface": "紅灯", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.687366 + }, + { + "surface": "蕊", + "readging": "ずい", + "pos": "名詞", + "pn": -0.687396 + }, + { + "surface": "火傷", + "readging": "やけど", + "pos": "名詞", + "pn": -0.687404 + }, + { + "surface": "寂びる", + "readging": "さびる", + "pos": "動詞", + "pn": -0.687426 + }, + { + "surface": "幼年", + "readging": "ようねん", + "pos": "名詞", + "pn": -0.687437 + }, + { + "surface": "雌", + "readging": "めす", + "pos": "名詞", + "pn": -0.687438 + }, + { + "surface": "剥げる", + "readging": "はげる", + "pos": "動詞", + "pn": -0.687462 + }, + { + "surface": "差替える", + "readging": "さしかえる", + "pos": "動詞", + "pn": -0.687463 + }, + { + "surface": "そやす", + "readging": "そやす", + "pos": "動詞", + "pn": -0.68748 + }, + { + "surface": "不安定", + "readging": "ふあんてい", + "pos": "名詞", + "pn": -0.687503 + }, + { + "surface": "脈", + "readging": "みゃく", + "pos": "名詞", + "pn": -0.687509 + }, + { + "surface": "投棄", + "readging": "とうき", + "pos": "名詞", + "pn": -0.687513 + }, + { + "surface": "せぐりあげる", + "readging": "せぐりあげる", + "pos": "動詞", + "pn": -0.687549 + }, + { + "surface": "月の物", + "readging": "つきのもの", + "pos": "名詞", + "pn": -0.687552 + }, + { + "surface": "退る", + "readging": "すさる", + "pos": "動詞", + "pn": -0.687562 + }, + { + "surface": "星", + "readging": "ほし", + "pos": "名詞", + "pn": -0.687597 + }, + { + "surface": "発する", + "readging": "はっする", + "pos": "動詞", + "pn": -0.687657 + }, + { + "surface": "慰む", + "readging": "なぐさむ", + "pos": "動詞", + "pn": -0.687704 + }, + { + "surface": "跳ね返る", + "readging": "はねかえる", + "pos": "動詞", + "pn": -0.687709 + }, + { + "surface": "隣接", + "readging": "りんせつ", + "pos": "名詞", + "pn": -0.687745 + }, + { + "surface": "歴", + "readging": "れき", + "pos": "名詞", + "pn": -0.687759 + }, + { + "surface": "渾名", + "readging": "あだな", + "pos": "名詞", + "pn": -0.687775 + }, + { + "surface": "心中", + "readging": "しんぢゅう", + "pos": "名詞", + "pn": -0.687784 + }, + { + "surface": "擁", + "readging": "よう", + "pos": "名詞", + "pn": -0.6878 + }, + { + "surface": "隣家", + "readging": "りんか", + "pos": "名詞", + "pn": -0.687811 + }, + { + "surface": "落鮎", + "readging": "おちあゆ", + "pos": "名詞", + "pn": -0.687829 + }, + { + "surface": "土足", + "readging": "どそく", + "pos": "名詞", + "pn": -0.687832 + }, + { + "surface": "交じり物", + "readging": "まじりもの", + "pos": "名詞", + "pn": -0.687845 + }, + { + "surface": "目地", + "readging": "めじ", + "pos": "名詞", + "pn": -0.687846 + }, + { + "surface": "ぽかんと", + "readging": "ぽかんと", + "pos": "副詞", + "pn": -0.687869 + }, + { + "surface": "跼る", + "readging": "せぐくまる", + "pos": "動詞", + "pn": -0.687881 + }, + { + "surface": "上着", + "readging": "うわぎ", + "pos": "名詞", + "pn": -0.687914 + }, + { + "surface": "にやける", + "readging": "にやける", + "pos": "動詞", + "pn": -0.687959 + }, + { + "surface": "手鍋", + "readging": "てなべ", + "pos": "名詞", + "pn": -0.68796 + }, + { + "surface": "ふわふわ", + "readging": "ふわふわ", + "pos": "副詞", + "pn": -0.687969 + }, + { + "surface": "砂塵", + "readging": "さじん", + "pos": "名詞", + "pn": -0.688014 + }, + { + "surface": "蹲踞", + "readging": "そんきょ", + "pos": "名詞", + "pn": -0.68802 + }, + { + "surface": "取外す", + "readging": "とりはずす", + "pos": "動詞", + "pn": -0.688023 + }, + { + "surface": "硬軟", + "readging": "こうなん", + "pos": "名詞", + "pn": -0.688041 + }, + { + "surface": "方策", + "readging": "ほうさく", + "pos": "名詞", + "pn": -0.688107 + }, + { + "surface": "撒水", + "readging": "さっすい", + "pos": "名詞", + "pn": -0.688193 + }, + { + "surface": "路傍", + "readging": "ろぼう", + "pos": "名詞", + "pn": -0.688283 + }, + { + "surface": "搦める", + "readging": "からめる", + "pos": "動詞", + "pn": -0.688321 + }, + { + "surface": "傍迷惑", + "readging": "はためいわく", + "pos": "名詞", + "pn": -0.688409 + }, + { + "surface": "注意", + "readging": "ちゅうい", + "pos": "名詞", + "pn": -0.688409 + }, + { + "surface": "図", + "readging": "ず", + "pos": "名詞", + "pn": -0.688444 + }, + { + "surface": "沖仲仕", + "readging": "おきなかし", + "pos": "名詞", + "pn": -0.688477 + }, + { + "surface": "歪曲", + "readging": "わいきょく", + "pos": "名詞", + "pn": -0.688478 + }, + { + "surface": "クイズ", + "readging": "クイズ", + "pos": "名詞", + "pn": -0.688506 + }, + { + "surface": "側面", + "readging": "そくめん", + "pos": "名詞", + "pn": -0.688529 + }, + { + "surface": "艱苦", + "readging": "かんく", + "pos": "名詞", + "pn": -0.688562 + }, + { + "surface": "贋作", + "readging": "がんさく", + "pos": "名詞", + "pn": -0.688577 + }, + { + "surface": "突っ張る", + "readging": "つっぱる", + "pos": "動詞", + "pn": -0.688613 + }, + { + "surface": "脱獄", + "readging": "だつごく", + "pos": "名詞", + "pn": -0.688677 + }, + { + "surface": "長方形", + "readging": "ちょうほうけい", + "pos": "名詞", + "pn": -0.688712 + }, + { + "surface": "捩る", + "readging": "すじる", + "pos": "動詞", + "pn": -0.68872 + }, + { + "surface": "撚糸", + "readging": "ねんし", + "pos": "名詞", + "pn": -0.688742 + }, + { + "surface": "もぎる", + "readging": "もぎる", + "pos": "動詞", + "pn": -0.688766 + }, + { + "surface": "色", + "readging": "しき", + "pos": "名詞", + "pn": -0.688766 + }, + { + "surface": "水肥", + "readging": "みずごえ", + "pos": "名詞", + "pn": -0.688786 + }, + { + "surface": "ピンはね", + "readging": "ピンはね", + "pos": "名詞", + "pn": -0.688799 + }, + { + "surface": "破屋", + "readging": "はおく", + "pos": "名詞", + "pn": -0.688839 + }, + { + "surface": "牛乳", + "readging": "ぎゅうにゅう", + "pos": "名詞", + "pn": -0.688844 + }, + { + "surface": "側", + "readging": "そば", + "pos": "名詞", + "pn": -0.688848 + }, + { + "surface": "好色", + "readging": "こうしょく", + "pos": "名詞", + "pn": -0.688883 + }, + { + "surface": "荒誕", + "readging": "こうたん", + "pos": "名詞", + "pn": -0.688946 + }, + { + "surface": "書", + "readging": "しょ", + "pos": "名詞", + "pn": -0.688965 + }, + { + "surface": "托", + "readging": "たく", + "pos": "名詞", + "pn": -0.688968 + }, + { + "surface": "踊る", + "readging": "おどる", + "pos": "動詞", + "pn": -0.689019 + }, + { + "surface": "膝", + "readging": "しつ", + "pos": "名詞", + "pn": -0.689036 + }, + { + "surface": "虚説", + "readging": "きょせつ", + "pos": "名詞", + "pn": -0.689068 + }, + { + "surface": "光線", + "readging": "こうせん", + "pos": "名詞", + "pn": -0.689098 + }, + { + "surface": "紙袋", + "readging": "かみぶくろ", + "pos": "名詞", + "pn": -0.68923 + }, + { + "surface": "掲げる", + "readging": "かかげる", + "pos": "動詞", + "pn": -0.689244 + }, + { + "surface": "猫", + "readging": "ねこ", + "pos": "名詞", + "pn": -0.689341 + }, + { + "surface": "針金", + "readging": "はりがね", + "pos": "名詞", + "pn": -0.689369 + }, + { + "surface": "付", + "readging": "つき", + "pos": "名詞", + "pn": -0.689372 + }, + { + "surface": "通路", + "readging": "つうろ", + "pos": "名詞", + "pn": -0.689491 + }, + { + "surface": "無にする", + "readging": "むにする", + "pos": "動詞", + "pn": -0.689515 + }, + { + "surface": "パンティー", + "readging": "パンティー", + "pos": "名詞", + "pn": -0.689527 + }, + { + "surface": "手套", + "readging": "しゅとう", + "pos": "名詞", + "pn": -0.68957 + }, + { + "surface": "空洞", + "readging": "くうどう", + "pos": "名詞", + "pn": -0.689594 + }, + { + "surface": "据風呂", + "readging": "すえふろ", + "pos": "名詞", + "pn": -0.689676 + }, + { + "surface": "テンション", + "readging": "テンション", + "pos": "名詞", + "pn": -0.6898 + }, + { + "surface": "憎まれ口", + "readging": "にくまれぐち", + "pos": "名詞", + "pn": -0.689803 + }, + { + "surface": "極印", + "readging": "ごくいん", + "pos": "名詞", + "pn": -0.689828 + }, + { + "surface": "自邸", + "readging": "じてい", + "pos": "名詞", + "pn": -0.689855 + }, + { + "surface": "漂う", + "readging": "ただよう", + "pos": "動詞", + "pn": -0.689863 + }, + { + "surface": "端くれ", + "readging": "はしくれ", + "pos": "名詞", + "pn": -0.689877 + }, + { + "surface": "切接ぎ", + "readging": "きりつぎ", + "pos": "名詞", + "pn": -0.689929 + }, + { + "surface": "無作法", + "readging": "ぶさほう", + "pos": "名詞", + "pn": -0.690028 + }, + { + "surface": "凡て", + "readging": "すべて", + "pos": "名詞", + "pn": -0.69005 + }, + { + "surface": "用筆", + "readging": "ようひつ", + "pos": "名詞", + "pn": -0.690111 + }, + { + "surface": "下る", + "readging": "くだる", + "pos": "動詞", + "pn": -0.69018 + }, + { + "surface": "能楽", + "readging": "のうがく", + "pos": "名詞", + "pn": -0.690244 + }, + { + "surface": "繊細", + "readging": "せんさい", + "pos": "名詞", + "pn": -0.690279 + }, + { + "surface": "馬具", + "readging": "ばぐ", + "pos": "名詞", + "pn": -0.690337 + }, + { + "surface": "紛擾", + "readging": "ふんじょう", + "pos": "名詞", + "pn": -0.690343 + }, + { + "surface": "脊椎動物", + "readging": "せきついどうぶつ", + "pos": "名詞", + "pn": -0.690348 + }, + { + "surface": "柳川", + "readging": "やながわ", + "pos": "名詞", + "pn": -0.690366 + }, + { + "surface": "宿る", + "readging": "やどる", + "pos": "動詞", + "pn": -0.690389 + }, + { + "surface": "逃れる", + "readging": "のがれる", + "pos": "動詞", + "pn": -0.690401 + }, + { + "surface": "花心", + "readging": "かしん", + "pos": "名詞", + "pn": -0.690422 + }, + { + "surface": "最後っ屁", + "readging": "さいごっぺ", + "pos": "名詞", + "pn": -0.690487 + }, + { + "surface": "京洛", + "readging": "きょうらく", + "pos": "名詞", + "pn": -0.690487 + }, + { + "surface": "小倅", + "readging": "こせがれ", + "pos": "名詞", + "pn": -0.690533 + }, + { + "surface": "虎魚", + "readging": "おこぜ", + "pos": "名詞", + "pn": -0.690568 + }, + { + "surface": "致す", + "readging": "いたす", + "pos": "動詞", + "pn": -0.690591 + }, + { + "surface": "層", + "readging": "そう", + "pos": "名詞", + "pn": -0.690597 + }, + { + "surface": "たばかる", + "readging": "たばかる", + "pos": "動詞", + "pn": -0.690712 + }, + { + "surface": "杵柄", + "readging": "きねづか", + "pos": "名詞", + "pn": -0.690745 + }, + { + "surface": "音楽", + "readging": "おんがく", + "pos": "名詞", + "pn": -0.690763 + }, + { + "surface": "暇暇", + "readging": "ひまひま", + "pos": "名詞", + "pn": -0.690786 + }, + { + "surface": "べたりと", + "readging": "べたりと", + "pos": "副詞", + "pn": -0.690911 + }, + { + "surface": "歪む", + "readging": "ひずむ", + "pos": "動詞", + "pn": -0.690954 + }, + { + "surface": "塗炭", + "readging": "とたん", + "pos": "名詞", + "pn": -0.69098 + }, + { + "surface": "連環", + "readging": "れんかん", + "pos": "名詞", + "pn": -0.690989 + }, + { + "surface": "混一", + "readging": "こんいつ", + "pos": "名詞", + "pn": -0.690998 + }, + { + "surface": "軋む", + "readging": "きしむ", + "pos": "動詞", + "pn": -0.691059 + }, + { + "surface": "土塊", + "readging": "どかい", + "pos": "名詞", + "pn": -0.69112 + }, + { + "surface": "ぐうたら", + "readging": "ぐうたら", + "pos": "名詞", + "pn": -0.69113 + }, + { + "surface": "修築", + "readging": "しゅうちく", + "pos": "名詞", + "pn": -0.691209 + }, + { + "surface": "蒲鉾", + "readging": "かまぼこ", + "pos": "名詞", + "pn": -0.691224 + }, + { + "surface": "何で", + "readging": "なんで", + "pos": "副詞", + "pn": -0.691233 + }, + { + "surface": "噴水", + "readging": "ふんすい", + "pos": "名詞", + "pn": -0.691246 + }, + { + "surface": "毛臑", + "readging": "けずね", + "pos": "名詞", + "pn": -0.691276 + }, + { + "surface": "労役", + "readging": "ろうえき", + "pos": "名詞", + "pn": -0.691283 + }, + { + "surface": "そぼろ", + "readging": "そぼろ", + "pos": "名詞", + "pn": -0.691356 + }, + { + "surface": "姑娘", + "readging": "クーニャン", + "pos": "名詞", + "pn": -0.691378 + }, + { + "surface": "暴く", + "readging": "あばく", + "pos": "動詞", + "pn": -0.691439 + }, + { + "surface": "稼ぐ", + "readging": "かせぐ", + "pos": "動詞", + "pn": -0.691442 + }, + { + "surface": "妄挙", + "readging": "ぼうきょ", + "pos": "名詞", + "pn": -0.691498 + }, + { + "surface": "童", + "readging": "どう", + "pos": "名詞", + "pn": -0.691514 + }, + { + "surface": "禁厭", + "readging": "きんえん", + "pos": "名詞", + "pn": -0.691535 + }, + { + "surface": "窪地", + "readging": "くぼち", + "pos": "名詞", + "pn": -0.691538 + }, + { + "surface": "吟", + "readging": "ぎん", + "pos": "名詞", + "pn": -0.691556 + }, + { + "surface": "入れ黒子", + "readging": "いれぼくろ", + "pos": "名詞", + "pn": -0.691559 + }, + { + "surface": "引っ提げる", + "readging": "ひっさげる", + "pos": "動詞", + "pn": -0.691623 + }, + { + "surface": "御許", + "readging": "おもと", + "pos": "名詞", + "pn": -0.691636 + }, + { + "surface": "ペンダント", + "readging": "ペンダント", + "pos": "名詞", + "pn": -0.691637 + }, + { + "surface": "筆墨", + "readging": "ひつぼく", + "pos": "名詞", + "pn": -0.691646 + }, + { + "surface": "藤蔓", + "readging": "ふじづる", + "pos": "名詞", + "pn": -0.691672 + }, + { + "surface": "座す", + "readging": "ざす", + "pos": "動詞", + "pn": -0.691685 + }, + { + "surface": "炭酸", + "readging": "たんさん", + "pos": "名詞", + "pn": -0.691777 + }, + { + "surface": "顫動", + "readging": "せんどう", + "pos": "名詞", + "pn": -0.691784 + }, + { + "surface": "詩歌", + "readging": "しか", + "pos": "名詞", + "pn": -0.691824 + }, + { + "surface": "賄賂", + "readging": "わいろ", + "pos": "名詞", + "pn": -0.69186 + }, + { + "surface": "溜", + "readging": "ため", + "pos": "名詞", + "pn": -0.691884 + }, + { + "surface": "制度", + "readging": "せいど", + "pos": "名詞", + "pn": -0.691918 + }, + { + "surface": "抱える", + "readging": "かかえる", + "pos": "動詞", + "pn": -0.692017 + }, + { + "surface": "おどける", + "readging": "おどける", + "pos": "動詞", + "pn": -0.692019 + }, + { + "surface": "組", + "readging": "そ", + "pos": "名詞", + "pn": -0.692023 + }, + { + "surface": "警戒", + "readging": "けいかい", + "pos": "名詞", + "pn": -0.692145 + }, + { + "surface": "じゃん拳", + "readging": "じゃんけん", + "pos": "名詞", + "pn": -0.692201 + }, + { + "surface": "煤", + "readging": "すす", + "pos": "名詞", + "pn": -0.692234 + }, + { + "surface": "襤褸糞", + "readging": "ぼろくそ", + "pos": "名詞", + "pn": -0.692282 + }, + { + "surface": "へっぴり腰", + "readging": "へっぴりごし", + "pos": "名詞", + "pn": -0.692499 + }, + { + "surface": "余分", + "readging": "よぶん", + "pos": "名詞", + "pn": -0.692528 + }, + { + "surface": "枕元", + "readging": "まくらもと", + "pos": "名詞", + "pn": -0.692532 + }, + { + "surface": "虎穴", + "readging": "こけつ", + "pos": "名詞", + "pn": -0.692548 + }, + { + "surface": "偏", + "readging": "へん", + "pos": "名詞", + "pn": -0.692552 + }, + { + "surface": "ぐちゃぐちゃ", + "readging": "ぐちゃぐちゃ", + "pos": "副詞", + "pn": -0.692583 + }, + { + "surface": "雷親父", + "readging": "かみなりおやじ", + "pos": "名詞", + "pn": -0.692644 + }, + { + "surface": "分出", + "readging": "ぶんしゅつ", + "pos": "名詞", + "pn": -0.692652 + }, + { + "surface": "無用", + "readging": "むよう", + "pos": "名詞", + "pn": -0.692725 + }, + { + "surface": "五目", + "readging": "ごもく", + "pos": "名詞", + "pn": -0.692729 + }, + { + "surface": "後", + "readging": "のち", + "pos": "名詞", + "pn": -0.692761 + }, + { + "surface": "文", + "readging": "あや", + "pos": "名詞", + "pn": -0.692766 + }, + { + "surface": "浸る", + "readging": "ひたる", + "pos": "動詞", + "pn": -0.692857 + }, + { + "surface": "捲る", + "readging": "まくる", + "pos": "動詞", + "pn": -0.692972 + }, + { + "surface": "呼", + "readging": "こ", + "pos": "名詞", + "pn": -0.692981 + }, + { + "surface": "借りる", + "readging": "かりる", + "pos": "動詞", + "pn": -0.692992 + }, + { + "surface": "疎んずる", + "readging": "うとんずる", + "pos": "動詞", + "pn": -0.692992 + }, + { + "surface": "反省", + "readging": "はんせい", + "pos": "名詞", + "pn": -0.693013 + }, + { + "surface": "取囲む", + "readging": "とりかこむ", + "pos": "動詞", + "pn": -0.693098 + }, + { + "surface": "はらはら", + "readging": "はらはら", + "pos": "副詞", + "pn": -0.693136 + }, + { + "surface": "老い込む", + "readging": "おいこむ", + "pos": "動詞", + "pn": -0.693181 + }, + { + "surface": "兎", + "readging": "うさぎ", + "pos": "名詞", + "pn": -0.693199 + }, + { + "surface": "しゃくれる", + "readging": "しゃくれる", + "pos": "動詞", + "pn": -0.69323 + }, + { + "surface": "巡見", + "readging": "じゅんけん", + "pos": "名詞", + "pn": -0.69337 + }, + { + "surface": "小銃", + "readging": "しょうじゅう", + "pos": "名詞", + "pn": -0.693398 + }, + { + "surface": "目籠", + "readging": "めかご", + "pos": "名詞", + "pn": -0.693467 + }, + { + "surface": "鶏", + "readging": "にわとり", + "pos": "名詞", + "pn": -0.693487 + }, + { + "surface": "人込み", + "readging": "ひとごみ", + "pos": "名詞", + "pn": -0.693525 + }, + { + "surface": "冷たい", + "readging": "つめたい", + "pos": "形容詞", + "pn": -0.693528 + }, + { + "surface": "疥癬虫", + "readging": "かいせんちゅう", + "pos": "名詞", + "pn": -0.693582 + }, + { + "surface": "霧", + "readging": "む", + "pos": "名詞", + "pn": -0.693607 + }, + { + "surface": "泥田", + "readging": "どろた", + "pos": "名詞", + "pn": -0.693626 + }, + { + "surface": "連れる", + "readging": "つれる", + "pos": "動詞", + "pn": -0.693653 + }, + { + "surface": "膿疱疹", + "readging": "のうほうしん", + "pos": "名詞", + "pn": -0.693724 + }, + { + "surface": "答える", + "readging": "こたえる", + "pos": "動詞", + "pn": -0.693779 + }, + { + "surface": "猟", + "readging": "りょう", + "pos": "名詞", + "pn": -0.693841 + }, + { + "surface": "歌う", + "readging": "うたう", + "pos": "動詞", + "pn": -0.693887 + }, + { + "surface": "花簪", + "readging": "はなかんざし", + "pos": "名詞", + "pn": -0.693896 + }, + { + "surface": "激", + "readging": "げき", + "pos": "名詞", + "pn": -0.693992 + }, + { + "surface": "ボクシング", + "readging": "ボクシング", + "pos": "名詞", + "pn": -0.693999 + }, + { + "surface": "ギャップ", + "readging": "ギャップ", + "pos": "名詞", + "pn": -0.69402 + }, + { + "surface": "漸", + "readging": "ぜん", + "pos": "名詞", + "pn": -0.694123 + }, + { + "surface": "瀕する", + "readging": "ひんする", + "pos": "動詞", + "pn": -0.694225 + }, + { + "surface": "椋", + "readging": "むく", + "pos": "名詞", + "pn": -0.694293 + }, + { + "surface": "出端", + "readging": "ではな", + "pos": "名詞", + "pn": -0.694299 + }, + { + "surface": "離す", + "readging": "はなす", + "pos": "動詞", + "pn": -0.694323 + }, + { + "surface": "御部屋様", + "readging": "おへやさま", + "pos": "名詞", + "pn": -0.694349 + }, + { + "surface": "促音", + "readging": "そくおん", + "pos": "名詞", + "pn": -0.694355 + }, + { + "surface": "心置き", + "readging": "こころおき", + "pos": "名詞", + "pn": -0.69438 + }, + { + "surface": "おたおた", + "readging": "おたおた", + "pos": "名詞", + "pn": -0.694389 + }, + { + "surface": "皮籠", + "readging": "かわご", + "pos": "名詞", + "pn": -0.69445 + }, + { + "surface": "突っ掛け", + "readging": "つっかけ", + "pos": "名詞", + "pn": -0.694461 + }, + { + "surface": "よだつ", + "readging": "よだつ", + "pos": "動詞", + "pn": -0.694506 + }, + { + "surface": "冠", + "readging": "かんむり", + "pos": "名詞", + "pn": -0.69454 + }, + { + "surface": "其方此方", + "readging": "そちこち", + "pos": "名詞", + "pn": -0.694653 + }, + { + "surface": "醜女", + "readging": "しこめ", + "pos": "名詞", + "pn": -0.694664 + }, + { + "surface": "海象", + "readging": "セイウチ", + "pos": "名詞", + "pn": -0.694694 + }, + { + "surface": "煮抜き", + "readging": "にぬき", + "pos": "名詞", + "pn": -0.694695 + }, + { + "surface": "琴", + "readging": "こと", + "pos": "名詞", + "pn": -0.694742 + }, + { + "surface": "急難", + "readging": "きゅうなん", + "pos": "名詞", + "pn": -0.694883 + }, + { + "surface": "蚊鉤", + "readging": "かばり", + "pos": "名詞", + "pn": -0.694932 + }, + { + "surface": "欄", + "readging": "らん", + "pos": "名詞", + "pn": -0.694947 + }, + { + "surface": "寸法", + "readging": "すんぽう", + "pos": "名詞", + "pn": -0.69498 + }, + { + "surface": "性欲", + "readging": "せいよく", + "pos": "名詞", + "pn": -0.694988 + }, + { + "surface": "焦げ目", + "readging": "こげめ", + "pos": "名詞", + "pn": -0.695012 + }, + { + "surface": "鼻溝", + "readging": "はなみぞ", + "pos": "名詞", + "pn": -0.695214 + }, + { + "surface": "書捨てる", + "readging": "かきすてる", + "pos": "動詞", + "pn": -0.69526 + }, + { + "surface": "手遊び", + "readging": "てあそび", + "pos": "名詞", + "pn": -0.695335 + }, + { + "surface": "消化", + "readging": "しょうか", + "pos": "名詞", + "pn": -0.695354 + }, + { + "surface": "破鍋", + "readging": "われなべ", + "pos": "名詞", + "pn": -0.695376 + }, + { + "surface": "破滅", + "readging": "はめつ", + "pos": "名詞", + "pn": -0.695412 + }, + { + "surface": "水辺", + "readging": "みずべ", + "pos": "名詞", + "pn": -0.69542 + }, + { + "surface": "俎上", + "readging": "そじょう", + "pos": "名詞", + "pn": -0.695425 + }, + { + "surface": "塵塚", + "readging": "ちりづか", + "pos": "名詞", + "pn": -0.69546 + }, + { + "surface": "混じる", + "readging": "こんじる", + "pos": "動詞", + "pn": -0.695503 + }, + { + "surface": "禿筆", + "readging": "とくひつ", + "pos": "名詞", + "pn": -0.695514 + }, + { + "surface": "天", + "readging": "あめ", + "pos": "名詞", + "pn": -0.69552 + }, + { + "surface": "掻毟る", + "readging": "かきむしる", + "pos": "動詞", + "pn": -0.695528 + }, + { + "surface": "仮睡", + "readging": "かすい", + "pos": "名詞", + "pn": -0.695687 + }, + { + "surface": "出血", + "readging": "しゅっけつ", + "pos": "名詞", + "pn": -0.695749 + }, + { + "surface": "尿", + "readging": "ゆばり", + "pos": "名詞", + "pn": -0.695772 + }, + { + "surface": "睫", + "readging": "まつげ", + "pos": "名詞", + "pn": -0.695773 + }, + { + "surface": "気重", + "readging": "きおも", + "pos": "名詞", + "pn": -0.695794 + }, + { + "surface": "麺棒", + "readging": "めんぼう", + "pos": "名詞", + "pn": -0.695825 + }, + { + "surface": "見越す", + "readging": "みこす", + "pos": "動詞", + "pn": -0.695827 + }, + { + "surface": "貨幣", + "readging": "かへい", + "pos": "名詞", + "pn": -0.695854 + }, + { + "surface": "一口話", + "readging": "ひとくちばなし", + "pos": "名詞", + "pn": -0.695883 + }, + { + "surface": "先後", + "readging": "せんご", + "pos": "名詞", + "pn": -0.695962 + }, + { + "surface": "夕景", + "readging": "ゆうけい", + "pos": "名詞", + "pn": -0.695963 + }, + { + "surface": "溜", + "readging": "りゅう", + "pos": "名詞", + "pn": -0.695967 + }, + { + "surface": "締め", + "readging": "しめ", + "pos": "名詞", + "pn": -0.695997 + }, + { + "surface": "水夫", + "readging": "かこ", + "pos": "名詞", + "pn": -0.695998 + }, + { + "surface": "居催促", + "readging": "いざいそく", + "pos": "名詞", + "pn": -0.696111 + }, + { + "surface": "おちょぼ口", + "readging": "おちょぼぐち", + "pos": "名詞", + "pn": -0.696113 + }, + { + "surface": "拱く", + "readging": "こまねく", + "pos": "動詞", + "pn": -0.696166 + }, + { + "surface": "本人", + "readging": "ほんにん", + "pos": "名詞", + "pn": -0.696199 + }, + { + "surface": "寸", + "readging": "すん", + "pos": "名詞", + "pn": -0.696218 + }, + { + "surface": "入乱れる", + "readging": "いりみだれる", + "pos": "動詞", + "pn": -0.696221 + }, + { + "surface": "驚かす", + "readging": "おどろかす", + "pos": "動詞", + "pn": -0.696238 + }, + { + "surface": "加え算", + "readging": "くわえざん", + "pos": "名詞", + "pn": -0.696245 + }, + { + "surface": "向き", + "readging": "むき", + "pos": "名詞", + "pn": -0.696284 + }, + { + "surface": "人騒がせ", + "readging": "ひとさわがせ", + "pos": "名詞", + "pn": -0.696316 + }, + { + "surface": "注", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.696329 + }, + { + "surface": "臭わす", + "readging": "におわす", + "pos": "動詞", + "pn": -0.696407 + }, + { + "surface": "多人数", + "readging": "たにんず", + "pos": "名詞", + "pn": -0.696466 + }, + { + "surface": "梱包", + "readging": "こんぽう", + "pos": "名詞", + "pn": -0.696496 + }, + { + "surface": "居直り強盗", + "readging": "いなおりごうとう", + "pos": "名詞", + "pn": -0.69651 + }, + { + "surface": "一抹", + "readging": "いちまつ", + "pos": "名詞", + "pn": -0.696564 + }, + { + "surface": "陸", + "readging": "りく", + "pos": "名詞", + "pn": -0.696601 + }, + { + "surface": "主に", + "readging": "おもに", + "pos": "副詞", + "pn": -0.696677 + }, + { + "surface": "絹織物", + "readging": "きぬおりもの", + "pos": "名詞", + "pn": -0.696706 + }, + { + "surface": "焦る", + "readging": "あせる", + "pos": "動詞", + "pn": -0.696725 + }, + { + "surface": "冷っこい", + "readging": "ひやっこい", + "pos": "形容詞", + "pn": -0.696771 + }, + { + "surface": "造次", + "readging": "ぞうじ", + "pos": "名詞", + "pn": -0.696781 + }, + { + "surface": "やっかむ", + "readging": "やっかむ", + "pos": "動詞", + "pn": -0.696799 + }, + { + "surface": "プレッシャー", + "readging": "プレッシャー", + "pos": "名詞", + "pn": -0.696841 + }, + { + "surface": "化かす", + "readging": "ばかす", + "pos": "動詞", + "pn": -0.696863 + }, + { + "surface": "草履", + "readging": "ぞうり", + "pos": "名詞", + "pn": -0.69694 + }, + { + "surface": "険峻", + "readging": "けんしゅん", + "pos": "名詞", + "pn": -0.696974 + }, + { + "surface": "大晦", + "readging": "おおつごもり", + "pos": "名詞", + "pn": -0.696992 + }, + { + "surface": "鼠穴", + "readging": "ねずみあな", + "pos": "名詞", + "pn": -0.697019 + }, + { + "surface": "捩上げる", + "readging": "ねじあげる", + "pos": "動詞", + "pn": -0.697082 + }, + { + "surface": "被傭者", + "readging": "ひようしゃ", + "pos": "名詞", + "pn": -0.697087 + }, + { + "surface": "消飛ぶ", + "readging": "けしとぶ", + "pos": "動詞", + "pn": -0.697092 + }, + { + "surface": "種卵", + "readging": "しゅらん", + "pos": "名詞", + "pn": -0.697209 + }, + { + "surface": "老人", + "readging": "ろうじん", + "pos": "名詞", + "pn": -0.697278 + }, + { + "surface": "住", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.69728 + }, + { + "surface": "物品", + "readging": "ぶっぴん", + "pos": "名詞", + "pn": -0.697287 + }, + { + "surface": "慄然", + "readging": "りつぜん", + "pos": "名詞", + "pn": -0.697306 + }, + { + "surface": "坊間", + "readging": "ぼうかん", + "pos": "名詞", + "pn": -0.697395 + }, + { + "surface": "餡掛け", + "readging": "あんかけ", + "pos": "名詞", + "pn": -0.697449 + }, + { + "surface": "臥所", + "readging": "ふしど", + "pos": "名詞", + "pn": -0.69747 + }, + { + "surface": "仕立てる", + "readging": "したてる", + "pos": "動詞", + "pn": -0.697558 + }, + { + "surface": "手事", + "readging": "てごと", + "pos": "名詞", + "pn": -0.697609 + }, + { + "surface": "孕む", + "readging": "はらむ", + "pos": "動詞", + "pn": -0.697631 + }, + { + "surface": "ともかく", + "readging": "ともかく", + "pos": "副詞", + "pn": -0.697648 + }, + { + "surface": "刀身", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.697725 + }, + { + "surface": "息抜き", + "readging": "いきぬき", + "pos": "名詞", + "pn": -0.697764 + }, + { + "surface": "付属", + "readging": "ふぞく", + "pos": "名詞", + "pn": -0.697783 + }, + { + "surface": "事始", + "readging": "ことはじめ", + "pos": "名詞", + "pn": -0.697801 + }, + { + "surface": "脅える", + "readging": "おびえる", + "pos": "動詞", + "pn": -0.697864 + }, + { + "surface": "ぼこぼこ", + "readging": "ぼこぼこ", + "pos": "副詞", + "pn": -0.697865 + }, + { + "surface": "幕営", + "readging": "ばくえい", + "pos": "名詞", + "pn": -0.697975 + }, + { + "surface": "嬰児", + "readging": "みどりご", + "pos": "名詞", + "pn": -0.698014 + }, + { + "surface": "捩る", + "readging": "よじる", + "pos": "動詞", + "pn": -0.698055 + }, + { + "surface": "一服", + "readging": "いっぷく", + "pos": "名詞", + "pn": -0.698154 + }, + { + "surface": "張付く", + "readging": "はりつく", + "pos": "動詞", + "pn": -0.698194 + }, + { + "surface": "躍起", + "readging": "やっき", + "pos": "副詞", + "pn": -0.698245 + }, + { + "surface": "海鼠", + "readging": "なまこ", + "pos": "名詞", + "pn": -0.698282 + }, + { + "surface": "番", + "readging": "ばん", + "pos": "名詞", + "pn": -0.698457 + }, + { + "surface": "空間", + "readging": "くうかん", + "pos": "名詞", + "pn": -0.698461 + }, + { + "surface": "外す", + "readging": "はずす", + "pos": "動詞", + "pn": -0.698464 + }, + { + "surface": "処理", + "readging": "しょり", + "pos": "名詞", + "pn": -0.698543 + }, + { + "surface": "何せ", + "readging": "なにせ", + "pos": "副詞", + "pn": -0.698583 + }, + { + "surface": "縒れる", + "readging": "よれる", + "pos": "動詞", + "pn": -0.69864 + }, + { + "surface": "束", + "readging": "つか", + "pos": "名詞", + "pn": -0.69877 + }, + { + "surface": "凝議", + "readging": "ぎょうぎ", + "pos": "名詞", + "pn": -0.698785 + }, + { + "surface": "房", + "readging": "ふさ", + "pos": "名詞", + "pn": -0.698806 + }, + { + "surface": "吊手", + "readging": "つりて", + "pos": "名詞", + "pn": -0.698807 + }, + { + "surface": "尾錠", + "readging": "びじょう", + "pos": "名詞", + "pn": -0.69883 + }, + { + "surface": "フラッパー", + "readging": "フラッパー", + "pos": "名詞", + "pn": -0.69889 + }, + { + "surface": "逸れる", + "readging": "それる", + "pos": "動詞", + "pn": -0.698981 + }, + { + "surface": "腐朽", + "readging": "ふきゅう", + "pos": "名詞", + "pn": -0.699008 + }, + { + "surface": "唾", + "readging": "つ", + "pos": "名詞", + "pn": -0.699088 + }, + { + "surface": "溶銑", + "readging": "ようせん", + "pos": "名詞", + "pn": -0.699101 + }, + { + "surface": "一睡", + "readging": "いっすい", + "pos": "名詞", + "pn": -0.699129 + }, + { + "surface": "辺鄙", + "readging": "へんぴ", + "pos": "名詞", + "pn": -0.699162 + }, + { + "surface": "紋", + "readging": "もん", + "pos": "名詞", + "pn": -0.6992 + }, + { + "surface": "膝組", + "readging": "ひざぐみ", + "pos": "名詞", + "pn": -0.699202 + }, + { + "surface": "締括る", + "readging": "しめくくる", + "pos": "動詞", + "pn": -0.699305 + }, + { + "surface": "鴇色", + "readging": "ときいろ", + "pos": "名詞", + "pn": -0.699455 + }, + { + "surface": "弄する", + "readging": "ろうする", + "pos": "動詞", + "pn": -0.699461 + }, + { + "surface": "改造", + "readging": "かいぞう", + "pos": "名詞", + "pn": -0.699471 + }, + { + "surface": "人間", + "readging": "にんげん", + "pos": "名詞", + "pn": -0.699474 + }, + { + "surface": "幕府", + "readging": "ばくふ", + "pos": "名詞", + "pn": -0.699625 + }, + { + "surface": "機鋒", + "readging": "きほう", + "pos": "名詞", + "pn": -0.699626 + }, + { + "surface": "針山", + "readging": "はりやま", + "pos": "名詞", + "pn": -0.699672 + }, + { + "surface": "サンダル", + "readging": "サンダル", + "pos": "名詞", + "pn": -0.699681 + }, + { + "surface": "禁煙", + "readging": "きんえん", + "pos": "名詞", + "pn": -0.699694 + }, + { + "surface": "無礼", + "readging": "ぶれい", + "pos": "名詞", + "pn": -0.699704 + }, + { + "surface": "っぽい", + "readging": "っぽい", + "pos": "形容詞", + "pn": -0.699713 + }, + { + "surface": "湯掻く", + "readging": "ゆがく", + "pos": "動詞", + "pn": -0.699747 + }, + { + "surface": "法令", + "readging": "ほうれい", + "pos": "名詞", + "pn": -0.699749 + }, + { + "surface": "撥", + "readging": "はつ", + "pos": "名詞", + "pn": -0.699811 + }, + { + "surface": "紋切型", + "readging": "もんきりがた", + "pos": "名詞", + "pn": -0.699854 + }, + { + "surface": "蹴返す", + "readging": "けかえす", + "pos": "動詞", + "pn": -0.699902 + }, + { + "surface": "海岸", + "readging": "かいがん", + "pos": "名詞", + "pn": -0.699966 + }, + { + "surface": "縮まる", + "readging": "ちぢまる", + "pos": "動詞", + "pn": -0.700082 + }, + { + "surface": "口説く", + "readging": "くどく", + "pos": "動詞", + "pn": -0.70015 + }, + { + "surface": "目論見", + "readging": "もくろみ", + "pos": "名詞", + "pn": -0.700183 + }, + { + "surface": "手掛り", + "readging": "てがかり", + "pos": "名詞", + "pn": -0.700193 + }, + { + "surface": "服", + "readging": "ふく", + "pos": "名詞", + "pn": -0.700202 + }, + { + "surface": "並一通り", + "readging": "なみひととおり", + "pos": "名詞", + "pn": -0.700202 + }, + { + "surface": "弱点", + "readging": "じゃくてん", + "pos": "名詞", + "pn": -0.700207 + }, + { + "surface": "輸する", + "readging": "ゆする", + "pos": "動詞", + "pn": -0.700249 + }, + { + "surface": "出来事", + "readging": "できごと", + "pos": "名詞", + "pn": -0.700253 + }, + { + "surface": "引っ込む", + "readging": "ひっこむ", + "pos": "動詞", + "pn": -0.700266 + }, + { + "surface": "デマ", + "readging": "デマ", + "pos": "名詞", + "pn": -0.70032 + }, + { + "surface": "境遇", + "readging": "きょうぐう", + "pos": "名詞", + "pn": -0.700342 + }, + { + "surface": "興行", + "readging": "こうぎょう", + "pos": "名詞", + "pn": -0.700347 + }, + { + "surface": "膝小僧", + "readging": "ひざこぞう", + "pos": "名詞", + "pn": -0.700406 + }, + { + "surface": "無期", + "readging": "むき", + "pos": "名詞", + "pn": -0.700418 + }, + { + "surface": "昼食", + "readging": "ちゅうしょく", + "pos": "名詞", + "pn": -0.700435 + }, + { + "surface": "火皿", + "readging": "ひざら", + "pos": "名詞", + "pn": -0.700438 + }, + { + "surface": "寒餅", + "readging": "かんもち", + "pos": "名詞", + "pn": -0.700485 + }, + { + "surface": "こそこそ", + "readging": "こそこそ", + "pos": "副詞", + "pn": -0.700498 + }, + { + "surface": "おひたし", + "readging": "おひたし", + "pos": "名詞", + "pn": -0.700609 + }, + { + "surface": "糊", + "readging": "のり", + "pos": "名詞", + "pn": -0.70061 + }, + { + "surface": "今にも", + "readging": "いまにも", + "pos": "副詞", + "pn": -0.700611 + }, + { + "surface": "古都", + "readging": "こと", + "pos": "名詞", + "pn": -0.700663 + }, + { + "surface": "這出る", + "readging": "はいでる", + "pos": "動詞", + "pn": -0.700674 + }, + { + "surface": "蓋物", + "readging": "ふたもの", + "pos": "名詞", + "pn": -0.700702 + }, + { + "surface": "品種", + "readging": "ひんしゅ", + "pos": "名詞", + "pn": -0.700744 + }, + { + "surface": "作", + "readging": "さく", + "pos": "名詞", + "pn": -0.700746 + }, + { + "surface": "具する", + "readging": "ぐする", + "pos": "動詞", + "pn": -0.700778 + }, + { + "surface": "独話", + "readging": "どくわ", + "pos": "名詞", + "pn": -0.700818 + }, + { + "surface": "垣根", + "readging": "かきね", + "pos": "名詞", + "pn": -0.70084 + }, + { + "surface": "細細", + "readging": "ほそぼそ", + "pos": "副詞", + "pn": -0.700843 + }, + { + "surface": "狙い撃ち", + "readging": "ねらいうち", + "pos": "名詞", + "pn": -0.700866 + }, + { + "surface": "膝拍子", + "readging": "ひざびょうし", + "pos": "名詞", + "pn": -0.700984 + }, + { + "surface": "アウト", + "readging": "アウト", + "pos": "名詞", + "pn": -0.701111 + }, + { + "surface": "羽", + "readging": "はね", + "pos": "名詞", + "pn": -0.701137 + }, + { + "surface": "交通", + "readging": "こうつう", + "pos": "名詞", + "pn": -0.701174 + }, + { + "surface": "味噌擂り", + "readging": "みそすり", + "pos": "名詞", + "pn": -0.701183 + }, + { + "surface": "取崩す", + "readging": "とりくずす", + "pos": "動詞", + "pn": -0.7012 + }, + { + "surface": "晩方", + "readging": "ばんがた", + "pos": "名詞", + "pn": -0.701235 + }, + { + "surface": "侘住い", + "readging": "わびずまい", + "pos": "名詞", + "pn": -0.70136 + }, + { + "surface": "少少", + "readging": "しょうしょう", + "pos": "名詞", + "pn": -0.701392 + }, + { + "surface": "登楼", + "readging": "とうろう", + "pos": "名詞", + "pn": -0.7014 + }, + { + "surface": "標準", + "readging": "ひょうじゅん", + "pos": "名詞", + "pn": -0.701506 + }, + { + "surface": "珍問", + "readging": "ちんもん", + "pos": "名詞", + "pn": -0.701592 + }, + { + "surface": "読過", + "readging": "どっか", + "pos": "名詞", + "pn": -0.701595 + }, + { + "surface": "球形", + "readging": "きゅうけい", + "pos": "名詞", + "pn": -0.701618 + }, + { + "surface": "分", + "readging": "ふん", + "pos": "名詞", + "pn": -0.701727 + }, + { + "surface": "訴える", + "readging": "うったえる", + "pos": "動詞", + "pn": -0.701771 + }, + { + "surface": "貫乳", + "readging": "かんにゅう", + "pos": "名詞", + "pn": -0.701796 + }, + { + "surface": "茫漠", + "readging": "ぼうばく", + "pos": "名詞", + "pn": -0.701822 + }, + { + "surface": "茂る", + "readging": "しげる", + "pos": "動詞", + "pn": -0.701844 + }, + { + "surface": "まず", + "readging": "まず", + "pos": "副詞", + "pn": -0.701918 + }, + { + "surface": "促音便", + "readging": "そくおんびん", + "pos": "名詞", + "pn": -0.702027 + }, + { + "surface": "マラリア", + "readging": "マラリア", + "pos": "名詞", + "pn": -0.702107 + }, + { + "surface": "疎剛", + "readging": "そごう", + "pos": "名詞", + "pn": -0.702404 + }, + { + "surface": "半裁", + "readging": "はんさい", + "pos": "名詞", + "pn": -0.702448 + }, + { + "surface": "下拙", + "readging": "げせつ", + "pos": "名詞", + "pn": -0.702533 + }, + { + "surface": "引眉", + "readging": "ひきまゆ", + "pos": "名詞", + "pn": -0.702584 + }, + { + "surface": "段階", + "readging": "だんかい", + "pos": "名詞", + "pn": -0.702633 + }, + { + "surface": "検査", + "readging": "けんさ", + "pos": "名詞", + "pn": -0.702702 + }, + { + "surface": "知歯", + "readging": "ちし", + "pos": "名詞", + "pn": -0.702724 + }, + { + "surface": "吸付ける", + "readging": "すいつける", + "pos": "動詞", + "pn": -0.702737 + }, + { + "surface": "鮮血", + "readging": "せんけつ", + "pos": "名詞", + "pn": -0.70275 + }, + { + "surface": "贋札", + "readging": "がんさつ", + "pos": "名詞", + "pn": -0.702765 + }, + { + "surface": "乗物", + "readging": "のりもの", + "pos": "名詞", + "pn": -0.702776 + }, + { + "surface": "無性", + "readging": "むせい", + "pos": "名詞", + "pn": -0.702815 + }, + { + "surface": "水捌け", + "readging": "みずはけ", + "pos": "名詞", + "pn": -0.702904 + }, + { + "surface": "曠久", + "readging": "こうきゅう", + "pos": "名詞", + "pn": -0.70291 + }, + { + "surface": "舷頭", + "readging": "げんとう", + "pos": "名詞", + "pn": -0.702966 + }, + { + "surface": "内紛", + "readging": "ないふん", + "pos": "名詞", + "pn": -0.702974 + }, + { + "surface": "三里", + "readging": "さんり", + "pos": "名詞", + "pn": -0.703037 + }, + { + "surface": "氷雪", + "readging": "ひょうせつ", + "pos": "名詞", + "pn": -0.703046 + }, + { + "surface": "型", + "readging": "けい", + "pos": "名詞", + "pn": -0.703068 + }, + { + "surface": "五月", + "readging": "さつき", + "pos": "名詞", + "pn": -0.703145 + }, + { + "surface": "後釜", + "readging": "あとがま", + "pos": "名詞", + "pn": -0.70316 + }, + { + "surface": "おかめ", + "readging": "おかめ", + "pos": "名詞", + "pn": -0.7032 + }, + { + "surface": "引摺り", + "readging": "ひきずり", + "pos": "名詞", + "pn": -0.703259 + }, + { + "surface": "除", + "readging": "じょ", + "pos": "名詞", + "pn": -0.703303 + }, + { + "surface": "残飯", + "readging": "ざんぱん", + "pos": "名詞", + "pn": -0.703306 + }, + { + "surface": "無考え", + "readging": "むかんがえ", + "pos": "名詞", + "pn": -0.70331 + }, + { + "surface": "思い残す", + "readging": "おもいのこす", + "pos": "動詞", + "pn": -0.703416 + }, + { + "surface": "白几帳面", + "readging": "しらきちょうめん", + "pos": "名詞", + "pn": -0.703539 + }, + { + "surface": "ラムネ", + "readging": "ラムネ", + "pos": "名詞", + "pn": -0.703569 + }, + { + "surface": "丸合羽", + "readging": "まるガッパ", + "pos": "名詞", + "pn": -0.703576 + }, + { + "surface": "二号", + "readging": "にごう", + "pos": "名詞", + "pn": -0.703655 + }, + { + "surface": "淋巴腺", + "readging": "リンパせん", + "pos": "名詞", + "pn": -0.703665 + }, + { + "surface": "爪", + "readging": "つめ", + "pos": "名詞", + "pn": -0.703707 + }, + { + "surface": "塵", + "readging": "じん", + "pos": "名詞", + "pn": -0.703708 + }, + { + "surface": "枯れ尾花", + "readging": "かれおばな", + "pos": "名詞", + "pn": -0.703778 + }, + { + "surface": "役人", + "readging": "やくにん", + "pos": "名詞", + "pn": -0.703803 + }, + { + "surface": "水平", + "readging": "すいへい", + "pos": "名詞", + "pn": -0.703861 + }, + { + "surface": "携帯", + "readging": "けいたい", + "pos": "名詞", + "pn": -0.703861 + }, + { + "surface": "襞", + "readging": "ひだ", + "pos": "名詞", + "pn": -0.703874 + }, + { + "surface": "座敷", + "readging": "ざしき", + "pos": "名詞", + "pn": -0.703931 + }, + { + "surface": "嫉妬", + "readging": "しっと", + "pos": "名詞", + "pn": -0.703939 + }, + { + "surface": "浅慮", + "readging": "せんりょ", + "pos": "名詞", + "pn": -0.703953 + }, + { + "surface": "流行り廃り", + "readging": "はやりすたり", + "pos": "名詞", + "pn": -0.704049 + }, + { + "surface": "乾海鼠", + "readging": "ほしこ", + "pos": "名詞", + "pn": -0.704072 + }, + { + "surface": "電報", + "readging": "でんぽう", + "pos": "名詞", + "pn": -0.704136 + }, + { + "surface": "束の間", + "readging": "つかのま", + "pos": "名詞", + "pn": -0.704318 + }, + { + "surface": "強める", + "readging": "つよめる", + "pos": "動詞", + "pn": -0.704338 + }, + { + "surface": "申す", + "readging": "もうす", + "pos": "動詞", + "pn": -0.704386 + }, + { + "surface": "寓意", + "readging": "ぐうい", + "pos": "名詞", + "pn": -0.704426 + }, + { + "surface": "ぽつねんと", + "readging": "ぽつねんと", + "pos": "副詞", + "pn": -0.704429 + }, + { + "surface": "対面", + "readging": "たいめん", + "pos": "名詞", + "pn": -0.704473 + }, + { + "surface": "補綴", + "readging": "ほてい", + "pos": "名詞", + "pn": -0.704506 + }, + { + "surface": "擂粉木", + "readging": "すりこぎ", + "pos": "名詞", + "pn": -0.704583 + }, + { + "surface": "火薬", + "readging": "かやく", + "pos": "名詞", + "pn": -0.704633 + }, + { + "surface": "鎮子", + "readging": "ちんし", + "pos": "名詞", + "pn": -0.704662 + }, + { + "surface": "流説", + "readging": "りゅうせつ", + "pos": "名詞", + "pn": -0.704663 + }, + { + "surface": "ほっと", + "readging": "ほっと", + "pos": "副詞", + "pn": -0.704677 + }, + { + "surface": "おちゃらかす", + "readging": "おちゃらかす", + "pos": "動詞", + "pn": -0.70469 + }, + { + "surface": "通信", + "readging": "つうしん", + "pos": "名詞", + "pn": -0.704834 + }, + { + "surface": "交互", + "readging": "こうご", + "pos": "名詞", + "pn": -0.704858 + }, + { + "surface": "河畔", + "readging": "かはん", + "pos": "名詞", + "pn": -0.704895 + }, + { + "surface": "煙", + "readging": "えん", + "pos": "名詞", + "pn": -0.704978 + }, + { + "surface": "船縁", + "readging": "ふなべり", + "pos": "名詞", + "pn": -0.704992 + }, + { + "surface": "丼", + "readging": "どんぶり", + "pos": "名詞", + "pn": -0.705017 + }, + { + "surface": "多淫", + "readging": "たいん", + "pos": "名詞", + "pn": -0.705149 + }, + { + "surface": "火刑", + "readging": "かけい", + "pos": "名詞", + "pn": -0.705205 + }, + { + "surface": "便所", + "readging": "べんじょ", + "pos": "名詞", + "pn": -0.70525 + }, + { + "surface": "せせら笑う", + "readging": "せせらわらう", + "pos": "動詞", + "pn": -0.705288 + }, + { + "surface": "倨傲", + "readging": "きょごう", + "pos": "名詞", + "pn": -0.705301 + }, + { + "surface": "鑽孔", + "readging": "さんこう", + "pos": "名詞", + "pn": -0.705428 + }, + { + "surface": "牛鍋", + "readging": "ぎゅうなべ", + "pos": "名詞", + "pn": -0.705432 + }, + { + "surface": "捩摺", + "readging": "もじずり", + "pos": "名詞", + "pn": -0.705532 + }, + { + "surface": "我慢", + "readging": "がまん", + "pos": "名詞", + "pn": -0.705544 + }, + { + "surface": "足湯", + "readging": "あしゆ", + "pos": "名詞", + "pn": -0.705551 + }, + { + "surface": "ジョイント", + "readging": "ジョイント", + "pos": "名詞", + "pn": -0.705584 + }, + { + "surface": "都", + "readging": "と", + "pos": "名詞", + "pn": -0.705694 + }, + { + "surface": "与太者", + "readging": "よたもの", + "pos": "名詞", + "pn": -0.705783 + }, + { + "surface": "垣越し", + "readging": "かきごし", + "pos": "名詞", + "pn": -0.70579 + }, + { + "surface": "いちゃもん", + "readging": "いちゃもん", + "pos": "名詞", + "pn": -0.705843 + }, + { + "surface": "頃おい", + "readging": "ころおい", + "pos": "名詞", + "pn": -0.705979 + }, + { + "surface": "卓袱", + "readging": "しっぽく", + "pos": "名詞", + "pn": -0.705994 + }, + { + "surface": "凹ます", + "readging": "へこます", + "pos": "動詞", + "pn": -0.705996 + }, + { + "surface": "対象", + "readging": "たいしょう", + "pos": "名詞", + "pn": -0.705999 + }, + { + "surface": "魚類", + "readging": "ぎょるい", + "pos": "名詞", + "pn": -0.706035 + }, + { + "surface": "中継", + "readging": "ちゅうけい", + "pos": "名詞", + "pn": -0.706071 + }, + { + "surface": "捕縄", + "readging": "ほじょう", + "pos": "名詞", + "pn": -0.706111 + }, + { + "surface": "付け髭", + "readging": "つけひげ", + "pos": "名詞", + "pn": -0.706169 + }, + { + "surface": "酸素", + "readging": "さんそ", + "pos": "名詞", + "pn": -0.706212 + }, + { + "surface": "やくざ", + "readging": "やくざ", + "pos": "名詞", + "pn": -0.706223 + }, + { + "surface": "鴫焼", + "readging": "しぎやき", + "pos": "名詞", + "pn": -0.706283 + }, + { + "surface": "登山", + "readging": "とざん", + "pos": "名詞", + "pn": -0.706343 + }, + { + "surface": "阿る", + "readging": "おもねる", + "pos": "動詞", + "pn": -0.706385 + }, + { + "surface": "権利", + "readging": "けんり", + "pos": "名詞", + "pn": -0.706432 + }, + { + "surface": "何は無くとも", + "readging": "なにはなくとも", + "pos": "名詞", + "pn": -0.706465 + }, + { + "surface": "間", + "readging": "あいだ", + "pos": "名詞", + "pn": -0.706478 + }, + { + "surface": "偽物", + "readging": "ぎぶつ", + "pos": "名詞", + "pn": -0.706487 + }, + { + "surface": "一女", + "readging": "いちじょ", + "pos": "名詞", + "pn": -0.706676 + }, + { + "surface": "虜囚", + "readging": "りょしゅう", + "pos": "名詞", + "pn": -0.706699 + }, + { + "surface": "縫い", + "readging": "ぬい", + "pos": "名詞", + "pn": -0.7068 + }, + { + "surface": "併呑", + "readging": "へいどん", + "pos": "名詞", + "pn": -0.706858 + }, + { + "surface": "雁", + "readging": "がん", + "pos": "名詞", + "pn": -0.706883 + }, + { + "surface": "悪血", + "readging": "おけつ", + "pos": "名詞", + "pn": -0.70691 + }, + { + "surface": "窄まる", + "readging": "すぼまる", + "pos": "動詞", + "pn": -0.706933 + }, + { + "surface": "すててこ", + "readging": "すててこ", + "pos": "名詞", + "pn": -0.706992 + }, + { + "surface": "浸潤", + "readging": "しんじゅん", + "pos": "名詞", + "pn": -0.707009 + }, + { + "surface": "費消", + "readging": "ひしょう", + "pos": "名詞", + "pn": -0.707075 + }, + { + "surface": "筒鳥", + "readging": "つつどり", + "pos": "名詞", + "pn": -0.707101 + }, + { + "surface": "病状", + "readging": "びょうじょう", + "pos": "名詞", + "pn": -0.707115 + }, + { + "surface": "急遽", + "readging": "きゅうきょ", + "pos": "副詞", + "pn": -0.707128 + }, + { + "surface": "縮み上がる", + "readging": "ちぢみあがる", + "pos": "動詞", + "pn": -0.707157 + }, + { + "surface": "骸", + "readging": "がい", + "pos": "名詞", + "pn": -0.707202 + }, + { + "surface": "弓", + "readging": "ゆみ", + "pos": "名詞", + "pn": -0.707211 + }, + { + "surface": "仏頂面", + "readging": "ぶっちょうづら", + "pos": "名詞", + "pn": -0.707246 + }, + { + "surface": "止める", + "readging": "やめる", + "pos": "動詞", + "pn": -0.707255 + }, + { + "surface": "伸し掛る", + "readging": "のしかかる", + "pos": "動詞", + "pn": -0.707325 + }, + { + "surface": "土俵", + "readging": "どひょう", + "pos": "名詞", + "pn": -0.707344 + }, + { + "surface": "囚われ", + "readging": "とらわれ", + "pos": "名詞", + "pn": -0.707371 + }, + { + "surface": "襲う", + "readging": "おそう", + "pos": "動詞", + "pn": -0.707436 + }, + { + "surface": "器物", + "readging": "きぶつ", + "pos": "名詞", + "pn": -0.707452 + }, + { + "surface": "垂直", + "readging": "すいちょく", + "pos": "名詞", + "pn": -0.707578 + }, + { + "surface": "糊代", + "readging": "のりしろ", + "pos": "名詞", + "pn": -0.707804 + }, + { + "surface": "繰合せる", + "readging": "くりあわせる", + "pos": "動詞", + "pn": -0.707822 + }, + { + "surface": "瀑布", + "readging": "ばくふ", + "pos": "名詞", + "pn": -0.707889 + }, + { + "surface": "頻発", + "readging": "ひんぱつ", + "pos": "名詞", + "pn": -0.707934 + }, + { + "surface": "桟俵", + "readging": "さんだわら", + "pos": "名詞", + "pn": -0.707955 + }, + { + "surface": "賭場", + "readging": "とば", + "pos": "名詞", + "pn": -0.707975 + }, + { + "surface": "代金", + "readging": "だいきん", + "pos": "名詞", + "pn": -0.708001 + }, + { + "surface": "豚舎", + "readging": "とんしゃ", + "pos": "名詞", + "pn": -0.708194 + }, + { + "surface": "果す", + "readging": "はたす", + "pos": "動詞", + "pn": -0.708222 + }, + { + "surface": "吊れる", + "readging": "つれる", + "pos": "動詞", + "pn": -0.708238 + }, + { + "surface": "絶える", + "readging": "たえる", + "pos": "動詞", + "pn": -0.708249 + }, + { + "surface": "牡丹餅", + "readging": "ぼたもち", + "pos": "名詞", + "pn": -0.708276 + }, + { + "surface": "菊", + "readging": "きく", + "pos": "名詞", + "pn": -0.708286 + }, + { + "surface": "隣", + "readging": "となり", + "pos": "名詞", + "pn": -0.708294 + }, + { + "surface": "大勢", + "readging": "たいぜい", + "pos": "名詞", + "pn": -0.708347 + }, + { + "surface": "踵", + "readging": "きびす", + "pos": "名詞", + "pn": -0.708388 + }, + { + "surface": "家苞", + "readging": "いえづと", + "pos": "名詞", + "pn": -0.708394 + }, + { + "surface": "漉返す", + "readging": "すきかえす", + "pos": "動詞", + "pn": -0.708431 + }, + { + "surface": "農業", + "readging": "のうぎょう", + "pos": "名詞", + "pn": -0.708431 + }, + { + "surface": "お昼", + "readging": "おひる", + "pos": "名詞", + "pn": -0.708483 + }, + { + "surface": "床の間", + "readging": "とこのま", + "pos": "名詞", + "pn": -0.708519 + }, + { + "surface": "がんがん", + "readging": "がんがん", + "pos": "副詞", + "pn": -0.708538 + }, + { + "surface": "幽魂", + "readging": "ゆうこん", + "pos": "名詞", + "pn": -0.708594 + }, + { + "surface": "蚊屋", + "readging": "かや", + "pos": "名詞", + "pn": -0.708633 + }, + { + "surface": "トルコ風呂", + "readging": "トルコぶろ", + "pos": "名詞", + "pn": -0.708702 + }, + { + "surface": "コロッケ", + "readging": "コロッケ", + "pos": "名詞", + "pn": -0.708737 + }, + { + "surface": "瞬く", + "readging": "またたく", + "pos": "動詞", + "pn": -0.708742 + }, + { + "surface": "絹綿", + "readging": "きぬわた", + "pos": "名詞", + "pn": -0.708758 + }, + { + "surface": "なんまいだ", + "readging": "なんまいだ", + "pos": "名詞", + "pn": -0.708906 + }, + { + "surface": "蒙", + "readging": "もう", + "pos": "名詞", + "pn": -0.708931 + }, + { + "surface": "基準", + "readging": "きじゅん", + "pos": "名詞", + "pn": -0.708993 + }, + { + "surface": "三角形", + "readging": "さんかくけい", + "pos": "名詞", + "pn": -0.709008 + }, + { + "surface": "尾行", + "readging": "びこう", + "pos": "名詞", + "pn": -0.709032 + }, + { + "surface": "染み", + "readging": "しみ", + "pos": "名詞", + "pn": -0.709068 + }, + { + "surface": "乞丐", + "readging": "こつがい", + "pos": "名詞", + "pn": -0.709114 + }, + { + "surface": "熱帯", + "readging": "ねったい", + "pos": "名詞", + "pn": -0.709133 + }, + { + "surface": "糞度胸", + "readging": "くそどきょう", + "pos": "名詞", + "pn": -0.709175 + }, + { + "surface": "世", + "readging": "よ", + "pos": "名詞", + "pn": -0.709184 + }, + { + "surface": "商店", + "readging": "しょうてん", + "pos": "名詞", + "pn": -0.709275 + }, + { + "surface": "熱湯", + "readging": "ねっとう", + "pos": "名詞", + "pn": -0.709286 + }, + { + "surface": "腋窩", + "readging": "えきか", + "pos": "名詞", + "pn": -0.709305 + }, + { + "surface": "こんがらかる", + "readging": "こんがらかる", + "pos": "動詞", + "pn": -0.70934 + }, + { + "surface": "花期", + "readging": "かき", + "pos": "名詞", + "pn": -0.709428 + }, + { + "surface": "少量", + "readging": "しょうりょう", + "pos": "名詞", + "pn": -0.70947 + }, + { + "surface": "薬剤", + "readging": "やくざい", + "pos": "名詞", + "pn": -0.709517 + }, + { + "surface": "鱒", + "readging": "ます", + "pos": "名詞", + "pn": -0.709561 + }, + { + "surface": "兎唇", + "readging": "としん", + "pos": "名詞", + "pn": -0.709561 + }, + { + "surface": "捕われる", + "readging": "とらわれる", + "pos": "動詞", + "pn": -0.709602 + }, + { + "surface": "再度", + "readging": "さいど", + "pos": "副詞", + "pn": -0.709616 + }, + { + "surface": "旅館", + "readging": "りょかん", + "pos": "名詞", + "pn": -0.709617 + }, + { + "surface": "突然", + "readging": "とつぜん", + "pos": "副詞", + "pn": -0.709672 + }, + { + "surface": "あわや", + "readging": "あわや", + "pos": "副詞", + "pn": -0.709686 + }, + { + "surface": "鍋墨", + "readging": "なべずみ", + "pos": "名詞", + "pn": -0.709746 + }, + { + "surface": "風波", + "readging": "ふうは", + "pos": "名詞", + "pn": -0.70978 + }, + { + "surface": "単に", + "readging": "たんに", + "pos": "副詞", + "pn": -0.709854 + }, + { + "surface": "護摩", + "readging": "ごま", + "pos": "名詞", + "pn": -0.70999 + }, + { + "surface": "儀式", + "readging": "ぎしき", + "pos": "名詞", + "pn": -0.710004 + }, + { + "surface": "題", + "readging": "だい", + "pos": "名詞", + "pn": -0.710079 + }, + { + "surface": "粉薬", + "readging": "こなぐすり", + "pos": "名詞", + "pn": -0.710098 + }, + { + "surface": "割", + "readging": "わり", + "pos": "名詞", + "pn": -0.71026 + }, + { + "surface": "冷遇", + "readging": "れいぐう", + "pos": "名詞", + "pn": -0.710287 + }, + { + "surface": "樹脂", + "readging": "じゅし", + "pos": "名詞", + "pn": -0.710352 + }, + { + "surface": "端", + "readging": "はた", + "pos": "名詞", + "pn": -0.710371 + }, + { + "surface": "高進", + "readging": "こうしん", + "pos": "名詞", + "pn": -0.710381 + }, + { + "surface": "一つ一つ", + "readging": "ひとつひとつ", + "pos": "名詞", + "pn": -0.710407 + }, + { + "surface": "束ねる", + "readging": "たばねる", + "pos": "動詞", + "pn": -0.71041 + }, + { + "surface": "復旧", + "readging": "ふっきゅう", + "pos": "名詞", + "pn": -0.710449 + }, + { + "surface": "小鳥", + "readging": "ことり", + "pos": "名詞", + "pn": -0.710492 + }, + { + "surface": "悪日", + "readging": "あくび", + "pos": "名詞", + "pn": -0.710502 + }, + { + "surface": "恐れげ", + "readging": "おそれげ", + "pos": "名詞", + "pn": -0.710519 + }, + { + "surface": "水気", + "readging": "みずけ", + "pos": "名詞", + "pn": -0.710651 + }, + { + "surface": "破鐘", + "readging": "われがね", + "pos": "名詞", + "pn": -0.710662 + }, + { + "surface": "あたふた", + "readging": "あたふた", + "pos": "副詞", + "pn": -0.710676 + }, + { + "surface": "放火", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.710718 + }, + { + "surface": "浮説", + "readging": "ふせつ", + "pos": "名詞", + "pn": -0.710808 + }, + { + "surface": "天井", + "readging": "てんじょう", + "pos": "名詞", + "pn": -0.710925 + }, + { + "surface": "配置", + "readging": "はいち", + "pos": "名詞", + "pn": -0.711081 + }, + { + "surface": "茶番", + "readging": "ちゃばん", + "pos": "名詞", + "pn": -0.711084 + }, + { + "surface": "相場", + "readging": "そうば", + "pos": "名詞", + "pn": -0.711172 + }, + { + "surface": "初夏", + "readging": "しょか", + "pos": "名詞", + "pn": -0.711303 + }, + { + "surface": "ひっつり", + "readging": "ひっつり", + "pos": "名詞", + "pn": -0.711319 + }, + { + "surface": "藪椿", + "readging": "やぶつばき", + "pos": "名詞", + "pn": -0.711331 + }, + { + "surface": "懐中時計", + "readging": "かいちゅうどけい", + "pos": "名詞", + "pn": -0.711437 + }, + { + "surface": "害する", + "readging": "がいする", + "pos": "動詞", + "pn": -0.711462 + }, + { + "surface": "わや", + "readging": "わや", + "pos": "名詞", + "pn": -0.71149 + }, + { + "surface": "薬湯", + "readging": "やくとう", + "pos": "名詞", + "pn": -0.711493 + }, + { + "surface": "籠", + "readging": "かご", + "pos": "名詞", + "pn": -0.711523 + }, + { + "surface": "炭", + "readging": "たん", + "pos": "名詞", + "pn": -0.711567 + }, + { + "surface": "踊", + "readging": "よう", + "pos": "名詞", + "pn": -0.711635 + }, + { + "surface": "ごつごつ", + "readging": "ごつごつ", + "pos": "名詞", + "pn": -0.711704 + }, + { + "surface": "皮剥", + "readging": "かわはぎ", + "pos": "名詞", + "pn": -0.711943 + }, + { + "surface": "鉄渋", + "readging": "かなしぶ", + "pos": "名詞", + "pn": -0.711952 + }, + { + "surface": "連", + "readging": "れん", + "pos": "名詞", + "pn": -0.71202 + }, + { + "surface": "横根", + "readging": "よこね", + "pos": "名詞", + "pn": -0.712033 + }, + { + "surface": "幼少", + "readging": "ようしょう", + "pos": "名詞", + "pn": -0.712041 + }, + { + "surface": "隈", + "readging": "くま", + "pos": "名詞", + "pn": -0.712258 + }, + { + "surface": "法", + "readging": "ほう", + "pos": "名詞", + "pn": -0.712276 + }, + { + "surface": "薩摩芋", + "readging": "さつまいも", + "pos": "名詞", + "pn": -0.712276 + }, + { + "surface": "辛い", + "readging": "からい", + "pos": "形容詞", + "pn": -0.712277 + }, + { + "surface": "利休鼠", + "readging": "りきゅうねずみ", + "pos": "名詞", + "pn": -0.712295 + }, + { + "surface": "緑内障", + "readging": "りょくないしょう", + "pos": "名詞", + "pn": -0.712373 + }, + { + "surface": "小首", + "readging": "こくび", + "pos": "名詞", + "pn": -0.712376 + }, + { + "surface": "しぶく", + "readging": "しぶく", + "pos": "動詞", + "pn": -0.712414 + }, + { + "surface": "ギャンブル", + "readging": "ギャンブル", + "pos": "名詞", + "pn": -0.712505 + }, + { + "surface": "砕片", + "readging": "さいへん", + "pos": "名詞", + "pn": -0.712833 + }, + { + "surface": "言下", + "readging": "げんか", + "pos": "名詞", + "pn": -0.712834 + }, + { + "surface": "伏す", + "readging": "ふす", + "pos": "動詞", + "pn": -0.712875 + }, + { + "surface": "立回り", + "readging": "たちまわり", + "pos": "名詞", + "pn": -0.712891 + }, + { + "surface": "庇", + "readging": "ひさし", + "pos": "名詞", + "pn": -0.713078 + }, + { + "surface": "垣", + "readging": "かき", + "pos": "名詞", + "pn": -0.713186 + }, + { + "surface": "酷暑", + "readging": "こくしょ", + "pos": "名詞", + "pn": -0.71319 + }, + { + "surface": "石弓", + "readging": "いしゆみ", + "pos": "名詞", + "pn": -0.713282 + }, + { + "surface": "人夫", + "readging": "にんぷ", + "pos": "名詞", + "pn": -0.713332 + }, + { + "surface": "聞く", + "readging": "きく", + "pos": "動詞", + "pn": -0.713492 + }, + { + "surface": "探る", + "readging": "さぐる", + "pos": "動詞", + "pn": -0.71356 + }, + { + "surface": "丸める", + "readging": "まるめる", + "pos": "動詞", + "pn": -0.713631 + }, + { + "surface": "恐怖", + "readging": "きょうふ", + "pos": "名詞", + "pn": -0.713664 + }, + { + "surface": "じゃが芋", + "readging": "じゃがいも", + "pos": "名詞", + "pn": -0.713744 + }, + { + "surface": "蓄髪", + "readging": "ちくはつ", + "pos": "名詞", + "pn": -0.713801 + }, + { + "surface": "沸かす", + "readging": "わかす", + "pos": "動詞", + "pn": -0.713809 + }, + { + "surface": "遺骨", + "readging": "いこつ", + "pos": "名詞", + "pn": -0.713822 + }, + { + "surface": "草深い", + "readging": "くさぶかい", + "pos": "形容詞", + "pn": -0.713908 + }, + { + "surface": "付け加える", + "readging": "つけくわえる", + "pos": "動詞", + "pn": -0.713938 + }, + { + "surface": "各個", + "readging": "かっこ", + "pos": "名詞", + "pn": -0.713939 + }, + { + "surface": "拗れる", + "readging": "こじれる", + "pos": "動詞", + "pn": -0.713944 + }, + { + "surface": "経", + "readging": "けい", + "pos": "名詞", + "pn": -0.713949 + }, + { + "surface": "処置", + "readging": "しょち", + "pos": "名詞", + "pn": -0.713975 + }, + { + "surface": "煤ける", + "readging": "すすける", + "pos": "動詞", + "pn": -0.713987 + }, + { + "surface": "沼", + "readging": "ぬま", + "pos": "名詞", + "pn": -0.714096 + }, + { + "surface": "買う", + "readging": "かう", + "pos": "動詞", + "pn": -0.71411 + }, + { + "surface": "板張", + "readging": "いたばり", + "pos": "名詞", + "pn": -0.714145 + }, + { + "surface": "兢兢", + "readging": "きょうきょう", + "pos": "名詞", + "pn": -0.714266 + }, + { + "surface": "離礁", + "readging": "りしょう", + "pos": "名詞", + "pn": -0.714461 + }, + { + "surface": "昼餐", + "readging": "ちゅうさん", + "pos": "名詞", + "pn": -0.714465 + }, + { + "surface": "踵", + "readging": "かかと", + "pos": "名詞", + "pn": -0.7145 + }, + { + "surface": "へま", + "readging": "へま", + "pos": "名詞", + "pn": -0.714558 + }, + { + "surface": "垣間見る", + "readging": "かいまみる", + "pos": "動詞", + "pn": -0.714629 + }, + { + "surface": "練合せる", + "readging": "ねりあわせる", + "pos": "動詞", + "pn": -0.714686 + }, + { + "surface": "追伸", + "readging": "ついしん", + "pos": "名詞", + "pn": -0.714705 + }, + { + "surface": "麻疹", + "readging": "はしか", + "pos": "名詞", + "pn": -0.714707 + }, + { + "surface": "一顧", + "readging": "いっこ", + "pos": "名詞", + "pn": -0.714743 + }, + { + "surface": "会社", + "readging": "かいしゃ", + "pos": "名詞", + "pn": -0.714787 + }, + { + "surface": "粗", + "readging": "そ", + "pos": "副詞", + "pn": -0.714798 + }, + { + "surface": "紅唇", + "readging": "こうしん", + "pos": "名詞", + "pn": -0.714819 + }, + { + "surface": "反射", + "readging": "はんしゃ", + "pos": "名詞", + "pn": -0.714829 + }, + { + "surface": "金品", + "readging": "きんぴん", + "pos": "名詞", + "pn": -0.714861 + }, + { + "surface": "せせる", + "readging": "せせる", + "pos": "動詞", + "pn": -0.714976 + }, + { + "surface": "京師", + "readging": "けいし", + "pos": "名詞", + "pn": -0.715047 + }, + { + "surface": "代え", + "readging": "かえ", + "pos": "名詞", + "pn": -0.715187 + }, + { + "surface": "麻疹", + "readging": "ましん", + "pos": "名詞", + "pn": -0.715212 + }, + { + "surface": "ポケット", + "readging": "ポケットマネー", + "pos": "名詞", + "pn": -0.715333 + }, + { + "surface": "恋い焦がれる", + "readging": "こいこがれる", + "pos": "動詞", + "pn": -0.715367 + }, + { + "surface": "そつ", + "readging": "そつ", + "pos": "名詞", + "pn": -0.715438 + }, + { + "surface": "手込め", + "readging": "てごめ", + "pos": "名詞", + "pn": -0.715514 + }, + { + "surface": "被ける", + "readging": "かずける", + "pos": "動詞", + "pn": -0.715526 + }, + { + "surface": "竹輪", + "readging": "ちくわ", + "pos": "名詞", + "pn": -0.71556 + }, + { + "surface": "山気", + "readging": "さんき", + "pos": "名詞", + "pn": -0.715698 + }, + { + "surface": "昼飯", + "readging": "ちゅうはん", + "pos": "名詞", + "pn": -0.715762 + }, + { + "surface": "情勢", + "readging": "じょうせい", + "pos": "名詞", + "pn": -0.715806 + }, + { + "surface": "青青", + "readging": "あおあお", + "pos": "名詞", + "pn": -0.715834 + }, + { + "surface": "無頼漢", + "readging": "ぶらいかん", + "pos": "名詞", + "pn": -0.715879 + }, + { + "surface": "辿る", + "readging": "たどる", + "pos": "動詞", + "pn": -0.715906 + }, + { + "surface": "唾棄", + "readging": "だき", + "pos": "名詞", + "pn": -0.715933 + }, + { + "surface": "荷役", + "readging": "にやく", + "pos": "名詞", + "pn": -0.715942 + }, + { + "surface": "平伏", + "readging": "へいふく", + "pos": "名詞", + "pn": -0.715951 + }, + { + "surface": "剥ける", + "readging": "むける", + "pos": "動詞", + "pn": -0.715959 + }, + { + "surface": "感覚", + "readging": "かんかく", + "pos": "名詞", + "pn": -0.715961 + }, + { + "surface": "勝負師", + "readging": "しょうぶし", + "pos": "名詞", + "pn": -0.715975 + }, + { + "surface": "生物", + "readging": "なまもの", + "pos": "名詞", + "pn": -0.716019 + }, + { + "surface": "余り", + "readging": "あまり", + "pos": "名詞", + "pn": -0.716121 + }, + { + "surface": "一朝一夕", + "readging": "いっちょういっせき", + "pos": "名詞", + "pn": -0.716165 + }, + { + "surface": "沿道", + "readging": "えんどう", + "pos": "名詞", + "pn": -0.716323 + }, + { + "surface": "体温", + "readging": "たいおん", + "pos": "名詞", + "pn": -0.716367 + }, + { + "surface": "基本", + "readging": "きほん", + "pos": "名詞", + "pn": -0.716452 + }, + { + "surface": "掴み合う", + "readging": "つかみあう", + "pos": "動詞", + "pn": -0.716571 + }, + { + "surface": "品行", + "readging": "ひんこう", + "pos": "名詞", + "pn": -0.716576 + }, + { + "surface": "固体", + "readging": "こたい", + "pos": "名詞", + "pn": -0.716652 + }, + { + "surface": "汗する", + "readging": "あせする", + "pos": "動詞", + "pn": -0.716655 + }, + { + "surface": "水虫", + "readging": "みずむし", + "pos": "名詞", + "pn": -0.716738 + }, + { + "surface": "ねばねば", + "readging": "ねばねば", + "pos": "名詞", + "pn": -0.716743 + }, + { + "surface": "問題", + "readging": "もんだい", + "pos": "名詞", + "pn": -0.716755 + }, + { + "surface": "葬る", + "readging": "ほうむる", + "pos": "動詞", + "pn": -0.716796 + }, + { + "surface": "覚える", + "readging": "おぼえる", + "pos": "動詞", + "pn": -0.716839 + }, + { + "surface": "雨上り", + "readging": "あめあがり", + "pos": "名詞", + "pn": -0.716857 + }, + { + "surface": "思い思い", + "readging": "おもいおもい", + "pos": "副詞", + "pn": -0.716931 + }, + { + "surface": "禁", + "readging": "きん", + "pos": "名詞", + "pn": -0.717046 + }, + { + "surface": "ふっくら", + "readging": "ふっくら", + "pos": "副詞", + "pn": -0.717167 + }, + { + "surface": "禍根", + "readging": "かこん", + "pos": "名詞", + "pn": -0.717243 + }, + { + "surface": "箇所", + "readging": "かしょ", + "pos": "名詞", + "pn": -0.717246 + }, + { + "surface": "興奮", + "readging": "こうふん", + "pos": "名詞", + "pn": -0.717262 + }, + { + "surface": "斉", + "readging": "さい", + "pos": "名詞", + "pn": -0.717273 + }, + { + "surface": "曳船", + "readging": "えいせん", + "pos": "名詞", + "pn": -0.717292 + }, + { + "surface": "パンチ", + "readging": "パンチ", + "pos": "名詞", + "pn": -0.71731 + }, + { + "surface": "小暗い", + "readging": "おぐらい", + "pos": "形容詞", + "pn": -0.717319 + }, + { + "surface": "古代", + "readging": "こだい", + "pos": "名詞", + "pn": -0.717331 + }, + { + "surface": "漢方", + "readging": "かんぽう", + "pos": "名詞", + "pn": -0.717457 + }, + { + "surface": "基礎", + "readging": "きそ", + "pos": "名詞", + "pn": -0.717485 + }, + { + "surface": "饗膳", + "readging": "きょうぜん", + "pos": "名詞", + "pn": -0.717614 + }, + { + "surface": "十重二十重", + "readging": "とえはたえ", + "pos": "名詞", + "pn": -0.717675 + }, + { + "surface": "判断", + "readging": "はんだん", + "pos": "名詞", + "pn": -0.717878 + }, + { + "surface": "弊", + "readging": "へい", + "pos": "名詞", + "pn": -0.717958 + }, + { + "surface": "焼かす", + "readging": "やかす", + "pos": "動詞", + "pn": -0.717969 + }, + { + "surface": "欠かす", + "readging": "かかす", + "pos": "動詞", + "pn": -0.717971 + }, + { + "surface": "泡", + "readging": "ほう", + "pos": "名詞", + "pn": -0.717999 + }, + { + "surface": "質問", + "readging": "しつもん", + "pos": "名詞", + "pn": -0.71812 + }, + { + "surface": "碁", + "readging": "ご", + "pos": "名詞", + "pn": -0.718133 + }, + { + "surface": "現在", + "readging": "げんざい", + "pos": "名詞", + "pn": -0.718172 + }, + { + "surface": "地下", + "readging": "ちか", + "pos": "名詞", + "pn": -0.718177 + }, + { + "surface": "動転", + "readging": "どうてん", + "pos": "名詞", + "pn": -0.718234 + }, + { + "surface": "墓", + "readging": "ぼ", + "pos": "名詞", + "pn": -0.718297 + }, + { + "surface": "襲", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.718304 + }, + { + "surface": "湿気", + "readging": "しっき", + "pos": "名詞", + "pn": -0.718313 + }, + { + "surface": "滅ぼす", + "readging": "ほろぼす", + "pos": "動詞", + "pn": -0.718369 + }, + { + "surface": "庭前", + "readging": "ていぜん", + "pos": "名詞", + "pn": -0.718458 + }, + { + "surface": "土中", + "readging": "どちゅう", + "pos": "名詞", + "pn": -0.718528 + }, + { + "surface": "用意", + "readging": "ようい", + "pos": "名詞", + "pn": -0.718571 + }, + { + "surface": "呪縛", + "readging": "じゅばく", + "pos": "名詞", + "pn": -0.718595 + }, + { + "surface": "並", + "readging": "へい", + "pos": "名詞", + "pn": -0.718717 + }, + { + "surface": "枠", + "readging": "わく", + "pos": "名詞", + "pn": -0.718955 + }, + { + "surface": "武家", + "readging": "ぶけ", + "pos": "名詞", + "pn": -0.719033 + }, + { + "surface": "散薬", + "readging": "さんやく", + "pos": "名詞", + "pn": -0.719099 + }, + { + "surface": "弱み", + "readging": "よわみ", + "pos": "名詞", + "pn": -0.71911 + }, + { + "surface": "隙取る", + "readging": "ひまどる", + "pos": "動詞", + "pn": -0.71912 + }, + { + "surface": "煮え立つ", + "readging": "にえたつ", + "pos": "動詞", + "pn": -0.719124 + }, + { + "surface": "雑巾", + "readging": "ぞうきん", + "pos": "名詞", + "pn": -0.719169 + }, + { + "surface": "非情", + "readging": "ひじょう", + "pos": "名詞", + "pn": -0.7193 + }, + { + "surface": "激憤", + "readging": "げきふん", + "pos": "名詞", + "pn": -0.71932 + }, + { + "surface": "熱い", + "readging": "あつい", + "pos": "形容詞", + "pn": -0.719419 + }, + { + "surface": "取壊す", + "readging": "とりこわす", + "pos": "動詞", + "pn": -0.719431 + }, + { + "surface": "土木", + "readging": "どぼく", + "pos": "名詞", + "pn": -0.719432 + }, + { + "surface": "政府", + "readging": "せいふ", + "pos": "名詞", + "pn": -0.719487 + }, + { + "surface": "灸", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.719523 + }, + { + "surface": "取拉ぐ", + "readging": "とりひしぐ", + "pos": "動詞", + "pn": -0.719584 + }, + { + "surface": "掛橋", + "readging": "かけはし", + "pos": "名詞", + "pn": -0.71962 + }, + { + "surface": "ぼさぼさ", + "readging": "ぼさぼさ", + "pos": "副詞", + "pn": -0.719627 + }, + { + "surface": "紫色", + "readging": "むらさきいろ", + "pos": "名詞", + "pn": -0.719671 + }, + { + "surface": "糸瓜", + "readging": "へちま", + "pos": "名詞", + "pn": -0.719858 + }, + { + "surface": "赤ん坊", + "readging": "あかんぼう", + "pos": "名詞", + "pn": -0.719859 + }, + { + "surface": "冷笑", + "readging": "れいしょう", + "pos": "名詞", + "pn": -0.71988 + }, + { + "surface": "凶賊", + "readging": "きょうぞく", + "pos": "名詞", + "pn": -0.71989 + }, + { + "surface": "テレビ", + "readging": "テレビ", + "pos": "名詞", + "pn": -0.719902 + }, + { + "surface": "鼻梁", + "readging": "びりょう", + "pos": "名詞", + "pn": -0.720016 + }, + { + "surface": "誤認", + "readging": "ごにん", + "pos": "名詞", + "pn": -0.720019 + }, + { + "surface": "放送", + "readging": "ほうそう", + "pos": "名詞", + "pn": -0.720241 + }, + { + "surface": "たかる", + "readging": "たかる", + "pos": "動詞", + "pn": -0.720271 + }, + { + "surface": "退く", + "readging": "しりぞく", + "pos": "動詞", + "pn": -0.720331 + }, + { + "surface": "一朝", + "readging": "いっちょう", + "pos": "副詞", + "pn": -0.720348 + }, + { + "surface": "冷", + "readging": "れい", + "pos": "名詞", + "pn": -0.720349 + }, + { + "surface": "潮", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.720356 + }, + { + "surface": "風雨", + "readging": "ふうう", + "pos": "名詞", + "pn": -0.720374 + }, + { + "surface": "問う", + "readging": "とう", + "pos": "動詞", + "pn": -0.720379 + }, + { + "surface": "水の泡", + "readging": "みずのあわ", + "pos": "名詞", + "pn": -0.720426 + }, + { + "surface": "山林", + "readging": "さんりん", + "pos": "名詞", + "pn": -0.720471 + }, + { + "surface": "場面", + "readging": "ばめん", + "pos": "名詞", + "pn": -0.720581 + }, + { + "surface": "数量", + "readging": "すうりょう", + "pos": "名詞", + "pn": -0.720631 + }, + { + "surface": "攻め口", + "readging": "せめくち", + "pos": "名詞", + "pn": -0.720694 + }, + { + "surface": "予定", + "readging": "よてい", + "pos": "名詞", + "pn": -0.720703 + }, + { + "surface": "野次る", + "readging": "やじる", + "pos": "動詞", + "pn": -0.720789 + }, + { + "surface": "漁色", + "readging": "ぎょしょく", + "pos": "名詞", + "pn": -0.720851 + }, + { + "surface": "豆蔵", + "readging": "まめぞう", + "pos": "名詞", + "pn": -0.720885 + }, + { + "surface": "緩み", + "readging": "ゆるみ", + "pos": "名詞", + "pn": -0.721029 + }, + { + "surface": "回", + "readging": "かい", + "pos": "名詞", + "pn": -0.721095 + }, + { + "surface": "下りる", + "readging": "おりる", + "pos": "動詞", + "pn": -0.721095 + }, + { + "surface": "情欲", + "readging": "じょうよく", + "pos": "名詞", + "pn": -0.721142 + }, + { + "surface": "冷淡", + "readging": "れいたん", + "pos": "名詞", + "pn": -0.721181 + }, + { + "surface": "戦場", + "readging": "せんじょう", + "pos": "名詞", + "pn": -0.721234 + }, + { + "surface": "人知れず", + "readging": "ひとしれず", + "pos": "副詞", + "pn": -0.721239 + }, + { + "surface": "作り成す", + "readging": "つくりなす", + "pos": "動詞", + "pn": -0.721244 + }, + { + "surface": "うっかり", + "readging": "うっかり", + "pos": "副詞", + "pn": -0.721253 + }, + { + "surface": "決り", + "readging": "きまり", + "pos": "名詞", + "pn": -0.721259 + }, + { + "surface": "刈る", + "readging": "かる", + "pos": "動詞", + "pn": -0.721421 + }, + { + "surface": "統", + "readging": "とう", + "pos": "名詞", + "pn": -0.721428 + }, + { + "surface": "天譴", + "readging": "てんけん", + "pos": "名詞", + "pn": -0.721464 + }, + { + "surface": "遊惰", + "readging": "ゆうだ", + "pos": "名詞", + "pn": -0.721484 + }, + { + "surface": "かむ", + "readging": "かむ", + "pos": "動詞", + "pn": -0.721569 + }, + { + "surface": "岸", + "readging": "がん", + "pos": "名詞", + "pn": -0.721583 + }, + { + "surface": "中毒", + "readging": "ちゅうどく", + "pos": "名詞", + "pn": -0.721615 + }, + { + "surface": "絶壁", + "readging": "ぜっぺき", + "pos": "名詞", + "pn": -0.721653 + }, + { + "surface": "及ぼす", + "readging": "およぼす", + "pos": "動詞", + "pn": -0.721716 + }, + { + "surface": "藁工品", + "readging": "わらこうひん", + "pos": "名詞", + "pn": -0.721733 + }, + { + "surface": "食指", + "readging": "しょくし", + "pos": "名詞", + "pn": -0.721797 + }, + { + "surface": "側室", + "readging": "そくしつ", + "pos": "名詞", + "pn": -0.721809 + }, + { + "surface": "布団", + "readging": "ふとん", + "pos": "名詞", + "pn": -0.721916 + }, + { + "surface": "塗料", + "readging": "とりょう", + "pos": "名詞", + "pn": -0.72196 + }, + { + "surface": "怖じる", + "readging": "おじる", + "pos": "動詞", + "pn": -0.721989 + }, + { + "surface": "移動", + "readging": "いどう", + "pos": "名詞", + "pn": -0.722 + }, + { + "surface": "多数", + "readging": "たすう", + "pos": "名詞", + "pn": -0.722045 + }, + { + "surface": "等級", + "readging": "とうきゅう", + "pos": "名詞", + "pn": -0.722153 + }, + { + "surface": "破調", + "readging": "はちょう", + "pos": "名詞", + "pn": -0.722196 + }, + { + "surface": "隊", + "readging": "たい", + "pos": "名詞", + "pn": -0.722257 + }, + { + "surface": "建", + "readging": "けん", + "pos": "名詞", + "pn": -0.722258 + }, + { + "surface": "結城", + "readging": "ゆうき", + "pos": "名詞", + "pn": -0.72229 + }, + { + "surface": "目方", + "readging": "めかた", + "pos": "名詞", + "pn": -0.72238 + }, + { + "surface": "砥糞", + "readging": "とくそ", + "pos": "名詞", + "pn": -0.722391 + }, + { + "surface": "匹", + "readging": "ひき", + "pos": "名詞", + "pn": -0.722464 + }, + { + "surface": "情況", + "readging": "じょうきょう", + "pos": "名詞", + "pn": -0.722515 + }, + { + "surface": "主張", + "readging": "しゅちょう", + "pos": "名詞", + "pn": -0.722548 + }, + { + "surface": "別に", + "readging": "べつに", + "pos": "副詞", + "pn": -0.722557 + }, + { + "surface": "月経", + "readging": "げっけい", + "pos": "名詞", + "pn": -0.722596 + }, + { + "surface": "危難", + "readging": "きなん", + "pos": "名詞", + "pn": -0.722655 + }, + { + "surface": "野次", + "readging": "やじ", + "pos": "名詞", + "pn": -0.722742 + }, + { + "surface": "隙", + "readging": "げき", + "pos": "名詞", + "pn": -0.722787 + }, + { + "surface": "負", + "readging": "ふ", + "pos": "名詞", + "pn": -0.722867 + }, + { + "surface": "竦める", + "readging": "すくめる", + "pos": "動詞", + "pn": -0.722883 + }, + { + "surface": "男衆", + "readging": "おとこしゅ", + "pos": "名詞", + "pn": -0.722969 + }, + { + "surface": "父子", + "readging": "ふし", + "pos": "名詞", + "pn": -0.722991 + }, + { + "surface": "這蹲う", + "readging": "はいつくばう", + "pos": "動詞", + "pn": -0.723017 + }, + { + "surface": "籾摺り", + "readging": "もみすり", + "pos": "名詞", + "pn": -0.723018 + }, + { + "surface": "捏ねる", + "readging": "つくねる", + "pos": "動詞", + "pn": -0.72313 + }, + { + "surface": "蜜", + "readging": "みつ", + "pos": "名詞", + "pn": -0.723196 + }, + { + "surface": "早縄", + "readging": "はやなわ", + "pos": "名詞", + "pn": -0.723225 + }, + { + "surface": "炉", + "readging": "ろ", + "pos": "名詞", + "pn": -0.723423 + }, + { + "surface": "清める", + "readging": "きよめる", + "pos": "動詞", + "pn": -0.72343 + }, + { + "surface": "畳む", + "readging": "たたむ", + "pos": "動詞", + "pn": -0.723622 + }, + { + "surface": "房", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.723686 + }, + { + "surface": "銭湯", + "readging": "せんとう", + "pos": "名詞", + "pn": -0.723757 + }, + { + "surface": "七輪", + "readging": "しちりん", + "pos": "名詞", + "pn": -0.723773 + }, + { + "surface": "忽焉", + "readging": "こつえん", + "pos": "副詞", + "pn": -0.723849 + }, + { + "surface": "棒頭", + "readging": "ぼうがしら", + "pos": "名詞", + "pn": -0.72399 + }, + { + "surface": "温泉", + "readging": "おんせん", + "pos": "名詞", + "pn": -0.724005 + }, + { + "surface": "苦患", + "readging": "くげん", + "pos": "名詞", + "pn": -0.724014 + }, + { + "surface": "津", + "readging": "つ", + "pos": "名詞", + "pn": -0.724223 + }, + { + "surface": "空言", + "readging": "そらごと", + "pos": "名詞", + "pn": -0.724226 + }, + { + "surface": "からげる", + "readging": "からげる", + "pos": "動詞", + "pn": -0.724328 + }, + { + "surface": "焦がす", + "readging": "こがす", + "pos": "動詞", + "pn": -0.724393 + }, + { + "surface": "吐息", + "readging": "といき", + "pos": "名詞", + "pn": -0.724418 + }, + { + "surface": "誘く", + "readging": "おびく", + "pos": "動詞", + "pn": -0.724453 + }, + { + "surface": "貰い物", + "readging": "もらいもの", + "pos": "名詞", + "pn": -0.724585 + }, + { + "surface": "薦垂れ", + "readging": "こもだれ", + "pos": "名詞", + "pn": -0.724597 + }, + { + "surface": "腐食", + "readging": "ふしょく", + "pos": "名詞", + "pn": -0.724633 + }, + { + "surface": "吊上がる", + "readging": "つりあがる", + "pos": "動詞", + "pn": -0.724648 + }, + { + "surface": "近所", + "readging": "きんじょ", + "pos": "名詞", + "pn": -0.724659 + }, + { + "surface": "鱗", + "readging": "うろこ", + "pos": "名詞", + "pn": -0.724692 + }, + { + "surface": "青い", + "readging": "あおい", + "pos": "形容詞", + "pn": -0.72473 + }, + { + "surface": "支配", + "readging": "しはい", + "pos": "名詞", + "pn": -0.724739 + }, + { + "surface": "ポテト", + "readging": "ポテト", + "pos": "名詞", + "pn": -0.724782 + }, + { + "surface": "逆落し", + "readging": "さかおとし", + "pos": "名詞", + "pn": -0.724788 + }, + { + "surface": "エロ", + "readging": "エロ", + "pos": "名詞", + "pn": -0.724927 + }, + { + "surface": "淫猥", + "readging": "いんわい", + "pos": "名詞", + "pn": -0.724979 + }, + { + "surface": "寒寒", + "readging": "さむざむ", + "pos": "名詞", + "pn": -0.724995 + }, + { + "surface": "遺漏", + "readging": "いろう", + "pos": "名詞", + "pn": -0.72502 + }, + { + "surface": "一郭", + "readging": "いっかく", + "pos": "名詞", + "pn": -0.725201 + }, + { + "surface": "塗れる", + "readging": "まみれる", + "pos": "動詞", + "pn": -0.725246 + }, + { + "surface": "暴力", + "readging": "ぼうりょく", + "pos": "名詞", + "pn": -0.725286 + }, + { + "surface": "側", + "readging": "そく", + "pos": "名詞", + "pn": -0.725291 + }, + { + "surface": "鉦", + "readging": "しょう", + "pos": "名詞", + "pn": -0.725421 + }, + { + "surface": "猿臂", + "readging": "えんぴ", + "pos": "名詞", + "pn": -0.725455 + }, + { + "surface": "日日", + "readging": "ひび", + "pos": "名詞", + "pn": -0.725466 + }, + { + "surface": "雑談", + "readging": "ざつだん", + "pos": "名詞", + "pn": -0.725487 + }, + { + "surface": "刀心", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.725541 + }, + { + "surface": "おが屑", + "readging": "おがくず", + "pos": "名詞", + "pn": -0.725599 + }, + { + "surface": "ふやける", + "readging": "ふやける", + "pos": "動詞", + "pn": -0.725677 + }, + { + "surface": "過度", + "readging": "かど", + "pos": "名詞", + "pn": -0.725706 + }, + { + "surface": "訪れ", + "readging": "おとずれ", + "pos": "名詞", + "pn": -0.725789 + }, + { + "surface": "妊娠", + "readging": "にんしん", + "pos": "名詞", + "pn": -0.725802 + }, + { + "surface": "贋造", + "readging": "がんぞう", + "pos": "名詞", + "pn": -0.725858 + }, + { + "surface": "掠り", + "readging": "かすり", + "pos": "名詞", + "pn": -0.725871 + }, + { + "surface": "おっちょこちょい", + "readging": "おっちょこちょい", + "pos": "名詞", + "pn": -0.725895 + }, + { + "surface": "草葺", + "readging": "くさぶき", + "pos": "名詞", + "pn": -0.7259 + }, + { + "surface": "しん粉", + "readging": "しんこ", + "pos": "名詞", + "pn": -0.725907 + }, + { + "surface": "杣人", + "readging": "そまびと", + "pos": "名詞", + "pn": -0.725908 + }, + { + "surface": "強盗", + "readging": "ごうとう", + "pos": "名詞", + "pn": -0.725957 + }, + { + "surface": "身柱元", + "readging": "ちりけもと", + "pos": "名詞", + "pn": -0.726155 + }, + { + "surface": "記憶", + "readging": "きおく", + "pos": "名詞", + "pn": -0.726258 + }, + { + "surface": "乳", + "readging": "ち", + "pos": "名詞", + "pn": -0.726481 + }, + { + "surface": "赭顔", + "readging": "しゃがん", + "pos": "名詞", + "pn": -0.726505 + }, + { + "surface": "湖心", + "readging": "こしん", + "pos": "名詞", + "pn": -0.726544 + }, + { + "surface": "掻乱す", + "readging": "かきみだす", + "pos": "動詞", + "pn": -0.726553 + }, + { + "surface": "区別", + "readging": "くべつ", + "pos": "名詞", + "pn": -0.72657 + }, + { + "surface": "刺", + "readging": "し", + "pos": "名詞", + "pn": -0.726583 + }, + { + "surface": "忽ち", + "readging": "たちまち", + "pos": "副詞", + "pn": -0.726631 + }, + { + "surface": "襁褓", + "readging": "むつき", + "pos": "名詞", + "pn": -0.726642 + }, + { + "surface": "抵抗", + "readging": "ていこう", + "pos": "名詞", + "pn": -0.726648 + }, + { + "surface": "滴", + "readging": "てき", + "pos": "名詞", + "pn": -0.726706 + }, + { + "surface": "村", + "readging": "むら", + "pos": "名詞", + "pn": -0.726747 + }, + { + "surface": "誘引", + "readging": "ゆういん", + "pos": "名詞", + "pn": -0.7269 + }, + { + "surface": "微禄", + "readging": "びろく", + "pos": "名詞", + "pn": -0.726916 + }, + { + "surface": "クリーム", + "readging": "クリーム", + "pos": "名詞", + "pn": -0.726985 + }, + { + "surface": "財産", + "readging": "ざいさん", + "pos": "名詞", + "pn": -0.727141 + }, + { + "surface": "べそ", + "readging": "べそ", + "pos": "名詞", + "pn": -0.727204 + }, + { + "surface": "触り", + "readging": "さわり", + "pos": "名詞", + "pn": -0.727251 + }, + { + "surface": "鋸", + "readging": "のこぎり", + "pos": "名詞", + "pn": -0.727304 + }, + { + "surface": "混乱", + "readging": "こんらん", + "pos": "名詞", + "pn": -0.727341 + }, + { + "surface": "未完", + "readging": "みかん", + "pos": "名詞", + "pn": -0.727355 + }, + { + "surface": "瑞垣", + "readging": "みずがき", + "pos": "名詞", + "pn": -0.727389 + }, + { + "surface": "航空機", + "readging": "こうくうき", + "pos": "名詞", + "pn": -0.727403 + }, + { + "surface": "資本", + "readging": "しほん", + "pos": "名詞", + "pn": -0.727414 + }, + { + "surface": "鉱物", + "readging": "こうぶつ", + "pos": "名詞", + "pn": -0.727428 + }, + { + "surface": "値", + "readging": "ね", + "pos": "名詞", + "pn": -0.727647 + }, + { + "surface": "中途", + "readging": "ちゅうと", + "pos": "名詞", + "pn": -0.72773 + }, + { + "surface": "甚だしい", + "readging": "はなはだしい", + "pos": "形容詞", + "pn": -0.727831 + }, + { + "surface": "侍", + "readging": "じ", + "pos": "名詞", + "pn": -0.727956 + }, + { + "surface": "些細", + "readging": "ささい", + "pos": "名詞", + "pn": -0.728013 + }, + { + "surface": "乾びる", + "readging": "からびる", + "pos": "動詞", + "pn": -0.728081 + }, + { + "surface": "旅枕", + "readging": "たびまくら", + "pos": "名詞", + "pn": -0.728153 + }, + { + "surface": "高楊枝", + "readging": "たかようじ", + "pos": "名詞", + "pn": -0.728273 + }, + { + "surface": "硯池", + "readging": "けんち", + "pos": "名詞", + "pn": -0.728281 + }, + { + "surface": "灯", + "readging": "とぼし", + "pos": "名詞", + "pn": -0.728294 + }, + { + "surface": "衣類", + "readging": "いるい", + "pos": "名詞", + "pn": -0.728345 + }, + { + "surface": "めげる", + "readging": "めげる", + "pos": "動詞", + "pn": -0.728372 + }, + { + "surface": "陶磁器", + "readging": "とうじき", + "pos": "名詞", + "pn": -0.728446 + }, + { + "surface": "炙り物", + "readging": "あぶりもの", + "pos": "名詞", + "pn": -0.728545 + }, + { + "surface": "捜す", + "readging": "さがす", + "pos": "動詞", + "pn": -0.728638 + }, + { + "surface": "食べ物", + "readging": "たべもの", + "pos": "名詞", + "pn": -0.728652 + }, + { + "surface": "いなか", + "readging": "いなか", + "pos": "動詞", + "pn": -0.728712 + }, + { + "surface": "起きる", + "readging": "おきる", + "pos": "動詞", + "pn": -0.728933 + }, + { + "surface": "両側", + "readging": "りょうがわ", + "pos": "名詞", + "pn": -0.729094 + }, + { + "surface": "離反", + "readging": "りはん", + "pos": "名詞", + "pn": -0.729115 + }, + { + "surface": "酢", + "readging": "す", + "pos": "名詞", + "pn": -0.729221 + }, + { + "surface": "お喋り", + "readging": "おしゃべり", + "pos": "名詞", + "pn": -0.729305 + }, + { + "surface": "別れる", + "readging": "わかれる", + "pos": "動詞", + "pn": -0.729349 + }, + { + "surface": "有毒", + "readging": "ゆうどく", + "pos": "名詞", + "pn": -0.729388 + }, + { + "surface": "時期", + "readging": "じき", + "pos": "名詞", + "pn": -0.729391 + }, + { + "surface": "結晶", + "readging": "けっしょう", + "pos": "名詞", + "pn": -0.729522 + }, + { + "surface": "茶話", + "readging": "ちゃわ", + "pos": "名詞", + "pn": -0.729529 + }, + { + "surface": "街", + "readging": "がい", + "pos": "名詞", + "pn": -0.729719 + }, + { + "surface": "妬心", + "readging": "としん", + "pos": "名詞", + "pn": -0.729755 + }, + { + "surface": "凝塊", + "readging": "ぎょうかい", + "pos": "名詞", + "pn": -0.729844 + }, + { + "surface": "旗", + "readging": "はた", + "pos": "名詞", + "pn": -0.729845 + }, + { + "surface": "平絹", + "readging": "ひらぎぬ", + "pos": "名詞", + "pn": -0.729989 + }, + { + "surface": "椋鳥", + "readging": "むくどり", + "pos": "名詞", + "pn": -0.730077 + }, + { + "surface": "捩れる", + "readging": "よじれる", + "pos": "動詞", + "pn": -0.730117 + }, + { + "surface": "旋毛", + "readging": "つむじ", + "pos": "名詞", + "pn": -0.730169 + }, + { + "surface": "美味", + "readging": "びみ", + "pos": "名詞", + "pn": -0.730351 + }, + { + "surface": "細雨", + "readging": "さいう", + "pos": "名詞", + "pn": -0.730369 + }, + { + "surface": "低俗", + "readging": "ていぞく", + "pos": "名詞", + "pn": -0.730404 + }, + { + "surface": "何故", + "readging": "なにゆえ", + "pos": "副詞", + "pn": -0.730477 + }, + { + "surface": "湿る", + "readging": "しめる", + "pos": "動詞", + "pn": -0.730591 + }, + { + "surface": "出奔", + "readging": "しゅっぽん", + "pos": "名詞", + "pn": -0.7306 + }, + { + "surface": "圏", + "readging": "けん", + "pos": "名詞", + "pn": -0.730626 + }, + { + "surface": "田舎汁粉", + "readging": "いなか", + "pos": "名詞", + "pn": -0.730646 + }, + { + "surface": "籾", + "readging": "もみ", + "pos": "名詞", + "pn": -0.730674 + }, + { + "surface": "不憫", + "readging": "ふびん", + "pos": "名詞", + "pn": -0.73069 + }, + { + "surface": "繭", + "readging": "まゆ", + "pos": "名詞", + "pn": -0.730733 + }, + { + "surface": "膿", + "readging": "のう", + "pos": "名詞", + "pn": -0.730799 + }, + { + "surface": "大体", + "readging": "だいたい", + "pos": "名詞", + "pn": -0.730866 + }, + { + "surface": "残片", + "readging": "ざんぺん", + "pos": "名詞", + "pn": -0.730901 + }, + { + "surface": "煎薬", + "readging": "せんやく", + "pos": "名詞", + "pn": -0.730956 + }, + { + "surface": "笛", + "readging": "ふえ", + "pos": "名詞", + "pn": -0.73096 + }, + { + "surface": "寒心", + "readging": "かんしん", + "pos": "名詞", + "pn": -0.731014 + }, + { + "surface": "驚き入る", + "readging": "おどろきいる", + "pos": "動詞", + "pn": -0.731031 + }, + { + "surface": "撫す", + "readging": "ぶす", + "pos": "動詞", + "pn": -0.731046 + }, + { + "surface": "紅鉄漿", + "readging": "べにかね", + "pos": "名詞", + "pn": -0.731168 + }, + { + "surface": "感冒", + "readging": "かんぼう", + "pos": "名詞", + "pn": -0.73117 + }, + { + "surface": "閼伽", + "readging": "あか", + "pos": "名詞", + "pn": -0.731179 + }, + { + "surface": "弔意", + "readging": "ちょうい", + "pos": "名詞", + "pn": -0.731316 + }, + { + "surface": "手間取る", + "readging": "てまどる", + "pos": "動詞", + "pn": -0.731325 + }, + { + "surface": "炊飯", + "readging": "すいはん", + "pos": "名詞", + "pn": -0.731346 + }, + { + "surface": "炉辺", + "readging": "ろへん", + "pos": "名詞", + "pn": -0.731347 + }, + { + "surface": "離隔", + "readging": "りかく", + "pos": "名詞", + "pn": -0.731424 + }, + { + "surface": "惰気", + "readging": "だき", + "pos": "名詞", + "pn": -0.731439 + }, + { + "surface": "復唱", + "readging": "ふくしょう", + "pos": "名詞", + "pn": -0.731512 + }, + { + "surface": "若しや", + "readging": "もしや", + "pos": "名詞", + "pn": -0.731566 + }, + { + "surface": "繋がる", + "readging": "つながる", + "pos": "動詞", + "pn": -0.731614 + }, + { + "surface": "電灯", + "readging": "でんとう", + "pos": "名詞", + "pn": -0.73173 + }, + { + "surface": "伏", + "readging": "ふく", + "pos": "名詞", + "pn": -0.731827 + }, + { + "surface": "点す", + "readging": "ともす", + "pos": "動詞", + "pn": -0.731828 + }, + { + "surface": "抜き", + "readging": "ぬき", + "pos": "名詞", + "pn": -0.731864 + }, + { + "surface": "山の芋", + "readging": "やまのいも", + "pos": "名詞", + "pn": -0.731932 + }, + { + "surface": "市松人形", + "readging": "いちまつにんぎょう", + "pos": "名詞", + "pn": -0.731984 + }, + { + "surface": "関節", + "readging": "かんせつ", + "pos": "名詞", + "pn": -0.731989 + }, + { + "surface": "中間", + "readging": "ちゅうげん", + "pos": "名詞", + "pn": -0.732076 + }, + { + "surface": "盗む", + "readging": "ぬすむ", + "pos": "動詞", + "pn": -0.732131 + }, + { + "surface": "追跡", + "readging": "ついせき", + "pos": "名詞", + "pn": -0.73214 + }, + { + "surface": "込む", + "readging": "こむ", + "pos": "動詞", + "pn": -0.732143 + }, + { + "surface": "絡ます", + "readging": "からます", + "pos": "動詞", + "pn": -0.732154 + }, + { + "surface": "篩う", + "readging": "ふるう", + "pos": "動詞", + "pn": -0.732176 + }, + { + "surface": "ミス", + "readging": "ミス", + "pos": "名詞", + "pn": -0.732349 + }, + { + "surface": "準備", + "readging": "じゅんび", + "pos": "名詞", + "pn": -0.732398 + }, + { + "surface": "繋がり", + "readging": "つながり", + "pos": "名詞", + "pn": -0.73242 + }, + { + "surface": "盆", + "readging": "ぼん", + "pos": "名詞", + "pn": -0.732424 + }, + { + "surface": "害虫", + "readging": "がいちゅう", + "pos": "名詞", + "pn": -0.732435 + }, + { + "surface": "遣り返す", + "readging": "やりかえす", + "pos": "動詞", + "pn": -0.732465 + }, + { + "surface": "無頼", + "readging": "ぶらい", + "pos": "名詞", + "pn": -0.732648 + }, + { + "surface": "這出す", + "readging": "はいだす", + "pos": "動詞", + "pn": -0.732661 + }, + { + "surface": "欲望", + "readging": "よくぼう", + "pos": "名詞", + "pn": -0.732815 + }, + { + "surface": "悲痛", + "readging": "ひつう", + "pos": "名詞", + "pn": -0.732838 + }, + { + "surface": "癖", + "readging": "へき", + "pos": "名詞", + "pn": -0.732853 + }, + { + "surface": "働き", + "readging": "はたらき", + "pos": "名詞", + "pn": -0.732862 + }, + { + "surface": "小屋", + "readging": "しょうおく", + "pos": "名詞", + "pn": -0.732866 + }, + { + "surface": "ごろつき", + "readging": "ごろつき", + "pos": "名詞", + "pn": -0.73294 + }, + { + "surface": "化物", + "readging": "ばけもの", + "pos": "名詞", + "pn": -0.732967 + }, + { + "surface": "滴らす", + "readging": "したたらす", + "pos": "動詞", + "pn": -0.733009 + }, + { + "surface": "ハンセン病", + "readging": "ハンセンびょう", + "pos": "名詞", + "pn": -0.733015 + }, + { + "surface": "瘡掻き", + "readging": "かさかき", + "pos": "名詞", + "pn": -0.733106 + }, + { + "surface": "攪乱", + "readging": "かくらん", + "pos": "名詞", + "pn": -0.733177 + }, + { + "surface": "大晦日", + "readging": "おおみそか", + "pos": "名詞", + "pn": -0.733294 + }, + { + "surface": "生やす", + "readging": "はやす", + "pos": "動詞", + "pn": -0.733363 + }, + { + "surface": "瓜", + "readging": "うり", + "pos": "名詞", + "pn": -0.733432 + }, + { + "surface": "委譲", + "readging": "いじょう", + "pos": "名詞", + "pn": -0.733502 + }, + { + "surface": "草鞋掛け", + "readging": "わらじ", + "pos": "名詞", + "pn": -0.733571 + }, + { + "surface": "盥", + "readging": "たらい", + "pos": "名詞", + "pn": -0.733602 + }, + { + "surface": "疲弊", + "readging": "ひへい", + "pos": "名詞", + "pn": -0.733615 + }, + { + "surface": "翻弄", + "readging": "ほんろう", + "pos": "名詞", + "pn": -0.733702 + }, + { + "surface": "滴滴", + "readging": "てきてき", + "pos": "名詞", + "pn": -0.733729 + }, + { + "surface": "媒", + "readging": "ばい", + "pos": "名詞", + "pn": -0.733792 + }, + { + "surface": "しゃっちょこ立ち", + "readging": "しゃっちょこだち", + "pos": "名詞", + "pn": -0.733981 + }, + { + "surface": "顆粒", + "readging": "かりゅう", + "pos": "名詞", + "pn": -0.734018 + }, + { + "surface": "橇", + "readging": "そり", + "pos": "名詞", + "pn": -0.734047 + }, + { + "surface": "駆回る", + "readging": "かけまわる", + "pos": "動詞", + "pn": -0.734095 + }, + { + "surface": "徒輩", + "readging": "とはい", + "pos": "名詞", + "pn": -0.734315 + }, + { + "surface": "別称", + "readging": "べっしょう", + "pos": "名詞", + "pn": -0.734391 + }, + { + "surface": "めん", + "readging": "めん", + "pos": "名詞", + "pn": -0.734448 + }, + { + "surface": "肘鉄砲", + "readging": "ひじでっぽう", + "pos": "名詞", + "pn": -0.734528 + }, + { + "surface": "陸上", + "readging": "りくじょう", + "pos": "名詞", + "pn": -0.734541 + }, + { + "surface": "梯子", + "readging": "はしご", + "pos": "名詞", + "pn": -0.734592 + }, + { + "surface": "被る", + "readging": "こうむる", + "pos": "動詞", + "pn": -0.734608 + }, + { + "surface": "空嘯く", + "readging": "そらうそぶく", + "pos": "動詞", + "pn": -0.734646 + }, + { + "surface": "演ずる", + "readging": "えんずる", + "pos": "動詞", + "pn": -0.734836 + }, + { + "surface": "絹", + "readging": "けん", + "pos": "名詞", + "pn": -0.73484 + }, + { + "surface": "哀感", + "readging": "あいかん", + "pos": "名詞", + "pn": -0.734854 + }, + { + "surface": "のろま", + "readging": "のろま", + "pos": "名詞", + "pn": -0.734902 + }, + { + "surface": "吠え面", + "readging": "ほえづら", + "pos": "名詞", + "pn": -0.734979 + }, + { + "surface": "賭", + "readging": "と", + "pos": "名詞", + "pn": -0.735009 + }, + { + "surface": "漏出", + "readging": "ろうしゅつ", + "pos": "名詞", + "pn": -0.735013 + }, + { + "surface": "気鬱", + "readging": "きうつ", + "pos": "名詞", + "pn": -0.735024 + }, + { + "surface": "拝む", + "readging": "おがむ", + "pos": "動詞", + "pn": -0.735103 + }, + { + "surface": "小鬢", + "readging": "こびん", + "pos": "名詞", + "pn": -0.735256 + }, + { + "surface": "跳梁", + "readging": "ちょうりょう", + "pos": "名詞", + "pn": -0.735317 + }, + { + "surface": "破砕", + "readging": "はさい", + "pos": "名詞", + "pn": -0.735321 + }, + { + "surface": "襠", + "readging": "まち", + "pos": "名詞", + "pn": -0.735412 + }, + { + "surface": "虎狼", + "readging": "ころう", + "pos": "名詞", + "pn": -0.735477 + }, + { + "surface": "賭する", + "readging": "とする", + "pos": "動詞", + "pn": -0.735488 + }, + { + "surface": "診察", + "readging": "しんさつ", + "pos": "名詞", + "pn": -0.735525 + }, + { + "surface": "寸暇", + "readging": "すんか", + "pos": "名詞", + "pn": -0.735552 + }, + { + "surface": "廃滅", + "readging": "はいめつ", + "pos": "名詞", + "pn": -0.735631 + }, + { + "surface": "活動", + "readging": "かつどう", + "pos": "名詞", + "pn": -0.735633 + }, + { + "surface": "餡", + "readging": "あん", + "pos": "名詞", + "pn": -0.735665 + }, + { + "surface": "兵隊勘定", + "readging": "へいたいかんじょう", + "pos": "名詞", + "pn": -0.735807 + }, + { + "surface": "拳", + "readging": "こぶし", + "pos": "名詞", + "pn": -0.735845 + }, + { + "surface": "旅所", + "readging": "たびしょ", + "pos": "名詞", + "pn": -0.735865 + }, + { + "surface": "調節", + "readging": "ちょうせつ", + "pos": "名詞", + "pn": -0.736024 + }, + { + "surface": "小腰", + "readging": "こごし", + "pos": "名詞", + "pn": -0.736039 + }, + { + "surface": "医者", + "readging": "いしゃ", + "pos": "名詞", + "pn": -0.736058 + }, + { + "surface": "作業", + "readging": "さぎょう", + "pos": "名詞", + "pn": -0.736071 + }, + { + "surface": "浴室", + "readging": "よくしつ", + "pos": "名詞", + "pn": -0.736125 + }, + { + "surface": "蕎麦湯", + "readging": "そばゆ", + "pos": "名詞", + "pn": -0.736139 + }, + { + "surface": "凄まじい", + "readging": "すさまじい", + "pos": "形容詞", + "pn": -0.736156 + }, + { + "surface": "茹だる", + "readging": "ゆだる", + "pos": "動詞", + "pn": -0.73616 + }, + { + "surface": "扇ぐ", + "readging": "あおぐ", + "pos": "動詞", + "pn": -0.736178 + }, + { + "surface": "切れる", + "readging": "きれる", + "pos": "動詞", + "pn": -0.736184 + }, + { + "surface": "難民", + "readging": "なんみん", + "pos": "名詞", + "pn": -0.736196 + }, + { + "surface": "張巡らす", + "readging": "はりめぐらす", + "pos": "動詞", + "pn": -0.736277 + }, + { + "surface": "剥がす", + "readging": "はがす", + "pos": "動詞", + "pn": -0.736285 + }, + { + "surface": "染み透る", + "readging": "しみとおる", + "pos": "動詞", + "pn": -0.736408 + }, + { + "surface": "暦年齢", + "readging": "れきねんれい", + "pos": "名詞", + "pn": -0.736409 + }, + { + "surface": "曇る", + "readging": "くもる", + "pos": "動詞", + "pn": -0.736634 + }, + { + "surface": "絶えず", + "readging": "たえず", + "pos": "副詞", + "pn": -0.736668 + }, + { + "surface": "権妻", + "readging": "ごんさい", + "pos": "名詞", + "pn": -0.736712 + }, + { + "surface": "契約", + "readging": "けいやく", + "pos": "名詞", + "pn": -0.736748 + }, + { + "surface": "くねる", + "readging": "くねる", + "pos": "動詞", + "pn": -0.736779 + }, + { + "surface": "斜め", + "readging": "ななめ", + "pos": "名詞", + "pn": -0.736785 + }, + { + "surface": "息災延命", + "readging": "そくさいえんめい", + "pos": "名詞", + "pn": -0.736794 + }, + { + "surface": "染みる", + "readging": "じみる", + "pos": "動詞", + "pn": -0.736797 + }, + { + "surface": "墨", + "readging": "すみ", + "pos": "名詞", + "pn": -0.736892 + }, + { + "surface": "霜雪", + "readging": "そうせつ", + "pos": "名詞", + "pn": -0.736905 + }, + { + "surface": "隈隈", + "readging": "くまぐま", + "pos": "名詞", + "pn": -0.737156 + }, + { + "surface": "弔い", + "readging": "とむらい", + "pos": "名詞", + "pn": -0.737161 + }, + { + "surface": "稜稜", + "readging": "りょうりょう", + "pos": "名詞", + "pn": -0.737314 + }, + { + "surface": "焼豆腐", + "readging": "やきどうふ", + "pos": "名詞", + "pn": -0.737333 + }, + { + "surface": "城", + "readging": "しろ", + "pos": "名詞", + "pn": -0.737442 + }, + { + "surface": "謦咳", + "readging": "けいがい", + "pos": "名詞", + "pn": -0.737611 + }, + { + "surface": "遊女", + "readging": "ゆうじょ", + "pos": "名詞", + "pn": -0.737664 + }, + { + "surface": "枕席", + "readging": "ちんせき", + "pos": "名詞", + "pn": -0.737801 + }, + { + "surface": "謀略", + "readging": "ぼうりゃく", + "pos": "名詞", + "pn": -0.737867 + }, + { + "surface": "飛台", + "readging": "とびだい", + "pos": "名詞", + "pn": -0.73801 + }, + { + "surface": "掻込む", + "readging": "かきこむ", + "pos": "動詞", + "pn": -0.738106 + }, + { + "surface": "些か", + "readging": "いささか", + "pos": "副詞", + "pn": -0.738112 + }, + { + "surface": "水引", + "readging": "みずひき", + "pos": "名詞", + "pn": -0.738139 + }, + { + "surface": "信太鮨", + "readging": "しのだずし", + "pos": "名詞", + "pn": -0.738141 + }, + { + "surface": "横木", + "readging": "よこぎ", + "pos": "名詞", + "pn": -0.738239 + }, + { + "surface": "自噴", + "readging": "じふん", + "pos": "名詞", + "pn": -0.73834 + }, + { + "surface": "仁恕", + "readging": "じんじょ", + "pos": "名詞", + "pn": -0.738506 + }, + { + "surface": "不経済", + "readging": "ふけいざい", + "pos": "名詞", + "pn": -0.738515 + }, + { + "surface": "桑田", + "readging": "そうでん", + "pos": "名詞", + "pn": -0.738596 + }, + { + "surface": "推参", + "readging": "すいさん", + "pos": "名詞", + "pn": -0.738816 + }, + { + "surface": "間隔", + "readging": "かんかく", + "pos": "名詞", + "pn": -0.738827 + }, + { + "surface": "ぶった切る", + "readging": "ぶったぎる", + "pos": "動詞", + "pn": -0.73884 + }, + { + "surface": "大名", + "readging": "だいみょう", + "pos": "名詞", + "pn": -0.738867 + }, + { + "surface": "重なる", + "readging": "かさなる", + "pos": "動詞", + "pn": -0.738913 + }, + { + "surface": "後部", + "readging": "こうぶ", + "pos": "名詞", + "pn": -0.738955 + }, + { + "surface": "搗栗", + "readging": "かちぐり", + "pos": "名詞", + "pn": -0.739038 + }, + { + "surface": "汗だく", + "readging": "あせだく", + "pos": "名詞", + "pn": -0.739067 + }, + { + "surface": "伝わる", + "readging": "つたわる", + "pos": "動詞", + "pn": -0.739098 + }, + { + "surface": "咳", + "readging": "しわぶき", + "pos": "名詞", + "pn": -0.739198 + }, + { + "surface": "胴元", + "readging": "どうもと", + "pos": "名詞", + "pn": -0.739252 + }, + { + "surface": "水上", + "readging": "みなかみ", + "pos": "名詞", + "pn": -0.739287 + }, + { + "surface": "欠乏", + "readging": "けつぼう", + "pos": "名詞", + "pn": -0.739445 + }, + { + "surface": "激暑", + "readging": "げきしょ", + "pos": "名詞", + "pn": -0.739451 + }, + { + "surface": "暮", + "readging": "ぼ", + "pos": "名詞", + "pn": -0.739473 + }, + { + "surface": "歩武", + "readging": "ほぶ", + "pos": "名詞", + "pn": -0.739476 + }, + { + "surface": "見当", + "readging": "けんとう", + "pos": "名詞", + "pn": -0.739512 + }, + { + "surface": "非時", + "readging": "ひじ", + "pos": "名詞", + "pn": -0.739599 + }, + { + "surface": "頭取", + "readging": "とうどり", + "pos": "名詞", + "pn": -0.739599 + }, + { + "surface": "任務", + "readging": "にんむ", + "pos": "名詞", + "pn": -0.739735 + }, + { + "surface": "じゃんこ", + "readging": "じゃんこ", + "pos": "名詞", + "pn": -0.739743 + }, + { + "surface": "党類", + "readging": "とうるい", + "pos": "名詞", + "pn": -0.739941 + }, + { + "surface": "どじ", + "readging": "どじ", + "pos": "名詞", + "pn": -0.740048 + }, + { + "surface": "群発", + "readging": "ぐんぱつ", + "pos": "名詞", + "pn": -0.740076 + }, + { + "surface": "肚裏", + "readging": "とり", + "pos": "名詞", + "pn": -0.740128 + }, + { + "surface": "海水", + "readging": "かいすい", + "pos": "名詞", + "pn": -0.740356 + }, + { + "surface": "茹だる", + "readging": "うだる", + "pos": "動詞", + "pn": -0.740357 + }, + { + "surface": "仰視", + "readging": "ぎょうし", + "pos": "名詞", + "pn": -0.740393 + }, + { + "surface": "密密", + "readging": "みつみつ", + "pos": "副詞", + "pn": -0.740398 + }, + { + "surface": "矢の根", + "readging": "やのね", + "pos": "名詞", + "pn": -0.740435 + }, + { + "surface": "倦厭", + "readging": "けんえん", + "pos": "名詞", + "pn": -0.740452 + }, + { + "surface": "発", + "readging": "はつ", + "pos": "名詞", + "pn": -0.740453 + }, + { + "surface": "潜る", + "readging": "くぐる", + "pos": "動詞", + "pn": -0.740555 + }, + { + "surface": "敷", + "readging": "じき", + "pos": "名詞", + "pn": -0.740579 + }, + { + "surface": "笑いこける", + "readging": "わらいこける", + "pos": "動詞", + "pn": -0.740599 + }, + { + "surface": "大黒頭巾", + "readging": "だいこくずきん", + "pos": "名詞", + "pn": -0.740604 + }, + { + "surface": "叱責", + "readging": "しっせき", + "pos": "名詞", + "pn": -0.740651 + }, + { + "surface": "縫", + "readging": "ほう", + "pos": "名詞", + "pn": -0.740842 + }, + { + "surface": "時雨", + "readging": "しぐれ", + "pos": "名詞", + "pn": -0.740953 + }, + { + "surface": "厄", + "readging": "やく", + "pos": "名詞", + "pn": -0.740955 + }, + { + "surface": "人工", + "readging": "じんこう", + "pos": "名詞", + "pn": -0.740975 + }, + { + "surface": "舌", + "readging": "ぜつ", + "pos": "名詞", + "pn": -0.741092 + }, + { + "surface": "雲丹", + "readging": "うに", + "pos": "名詞", + "pn": -0.741099 + }, + { + "surface": "内郭", + "readging": "ないかく", + "pos": "名詞", + "pn": -0.741102 + }, + { + "surface": "火付き", + "readging": "ひつき", + "pos": "名詞", + "pn": -0.741115 + }, + { + "surface": "奉伺", + "readging": "ほうし", + "pos": "名詞", + "pn": -0.741151 + }, + { + "surface": "革", + "readging": "かく", + "pos": "名詞", + "pn": -0.74119 + }, + { + "surface": "体質", + "readging": "たいしつ", + "pos": "名詞", + "pn": -0.741231 + }, + { + "surface": "継目", + "readging": "つぎめ", + "pos": "名詞", + "pn": -0.74128 + }, + { + "surface": "歴史", + "readging": "れきし", + "pos": "名詞", + "pn": -0.741408 + }, + { + "surface": "構成", + "readging": "こうせい", + "pos": "名詞", + "pn": -0.741434 + }, + { + "surface": "嘱", + "readging": "しょく", + "pos": "名詞", + "pn": -0.741448 + }, + { + "surface": "痴れ者", + "readging": "しれもの", + "pos": "名詞", + "pn": -0.741811 + }, + { + "surface": "果物", + "readging": "くだもの", + "pos": "名詞", + "pn": -0.741845 + }, + { + "surface": "皿", + "readging": "さら", + "pos": "名詞", + "pn": -0.741917 + }, + { + "surface": "貧血", + "readging": "ひんけつ", + "pos": "名詞", + "pn": -0.741978 + }, + { + "surface": "差招く", + "readging": "さしまねく", + "pos": "動詞", + "pn": -0.742213 + }, + { + "surface": "傲慢", + "readging": "ごうまん", + "pos": "名詞", + "pn": -0.742221 + }, + { + "surface": "開閉", + "readging": "かいへい", + "pos": "名詞", + "pn": -0.742229 + }, + { + "surface": "硫酸", + "readging": "りゅうさん", + "pos": "名詞", + "pn": -0.74227 + }, + { + "surface": "家来", + "readging": "けらい", + "pos": "名詞", + "pn": -0.742444 + }, + { + "surface": "緒", + "readging": "しょ", + "pos": "名詞", + "pn": -0.742445 + }, + { + "surface": "吝か", + "readging": "やぶさか", + "pos": "名詞", + "pn": -0.742542 + }, + { + "surface": "銀", + "readging": "ぎん", + "pos": "名詞", + "pn": -0.742576 + }, + { + "surface": "錆鮎", + "readging": "さびあゆ", + "pos": "名詞", + "pn": -0.742623 + }, + { + "surface": "前後", + "readging": "ぜんご", + "pos": "名詞", + "pn": -0.742648 + }, + { + "surface": "郵便", + "readging": "ゆうびん", + "pos": "名詞", + "pn": -0.742751 + }, + { + "surface": "段", + "readging": "だん", + "pos": "名詞", + "pn": -0.742762 + }, + { + "surface": "粘液", + "readging": "ねんえき", + "pos": "名詞", + "pn": -0.742794 + }, + { + "surface": "霞", + "readging": "かすみ", + "pos": "名詞", + "pn": -0.742815 + }, + { + "surface": "陰暦", + "readging": "いんれき", + "pos": "名詞", + "pn": -0.742931 + }, + { + "surface": "ぶつける", + "readging": "ぶつける", + "pos": "動詞", + "pn": -0.742943 + }, + { + "surface": "麻", + "readging": "ま", + "pos": "名詞", + "pn": -0.742995 + }, + { + "surface": "煎じる", + "readging": "せんじる", + "pos": "動詞", + "pn": -0.743036 + }, + { + "surface": "眼", + "readging": "まなこ", + "pos": "名詞", + "pn": -0.743054 + }, + { + "surface": "寝惚ける", + "readging": "ねぼける", + "pos": "動詞", + "pn": -0.74318 + }, + { + "surface": "解く", + "readging": "ほどく", + "pos": "動詞", + "pn": -0.74334 + }, + { + "surface": "弱虫", + "readging": "よわむし", + "pos": "名詞", + "pn": -0.743341 + }, + { + "surface": "伸す", + "readging": "のす", + "pos": "動詞", + "pn": -0.743479 + }, + { + "surface": "付け髷", + "readging": "つけまげ", + "pos": "名詞", + "pn": -0.743513 + }, + { + "surface": "媚びる", + "readging": "こびる", + "pos": "動詞", + "pn": -0.743541 + }, + { + "surface": "競い", + "readging": "きおい", + "pos": "名詞", + "pn": -0.743584 + }, + { + "surface": "生じる", + "readging": "しょうじる", + "pos": "動詞", + "pn": -0.743603 + }, + { + "surface": "物思い", + "readging": "ものおもい", + "pos": "名詞", + "pn": -0.743615 + }, + { + "surface": "惑う", + "readging": "まどう", + "pos": "動詞", + "pn": -0.743763 + }, + { + "surface": "土産", + "readging": "みやげ", + "pos": "名詞", + "pn": -0.743844 + }, + { + "surface": "果", + "readging": "はて", + "pos": "名詞", + "pn": -0.743986 + }, + { + "surface": "摘出", + "readging": "てきしゅつ", + "pos": "名詞", + "pn": -0.744136 + }, + { + "surface": "割れる", + "readging": "われる", + "pos": "動詞", + "pn": -0.744185 + }, + { + "surface": "笊", + "readging": "ざる", + "pos": "名詞", + "pn": -0.744186 + }, + { + "surface": "交じり気", + "readging": "まじりけ", + "pos": "名詞", + "pn": -0.744324 + }, + { + "surface": "夾雑", + "readging": "きょうざつ", + "pos": "名詞", + "pn": -0.744324 + }, + { + "surface": "荒唐", + "readging": "こうとう", + "pos": "名詞", + "pn": -0.744343 + }, + { + "surface": "先端", + "readging": "せんたん", + "pos": "名詞", + "pn": -0.744419 + }, + { + "surface": "表", + "readging": "ひょう", + "pos": "名詞", + "pn": -0.744424 + }, + { + "surface": "売買", + "readging": "ばいばい", + "pos": "名詞", + "pn": -0.744539 + }, + { + "surface": "おでん", + "readging": "おでん", + "pos": "名詞", + "pn": -0.744686 + }, + { + "surface": "ポシャる", + "readging": "ポシャる", + "pos": "動詞", + "pn": -0.744749 + }, + { + "surface": "撫でる", + "readging": "なでる", + "pos": "動詞", + "pn": -0.744753 + }, + { + "surface": "お福分け", + "readging": "おふくわけ", + "pos": "名詞", + "pn": -0.744801 + }, + { + "surface": "乾燥", + "readging": "かんそう", + "pos": "名詞", + "pn": -0.744873 + }, + { + "surface": "遅れ馳せ", + "readging": "おくればせ", + "pos": "名詞", + "pn": -0.744991 + }, + { + "surface": "庸", + "readging": "よう", + "pos": "名詞", + "pn": -0.744991 + }, + { + "surface": "跪坐", + "readging": "きざ", + "pos": "名詞", + "pn": -0.745022 + }, + { + "surface": "映え", + "readging": "はえ", + "pos": "名詞", + "pn": -0.745068 + }, + { + "surface": "巣くう", + "readging": "すくう", + "pos": "動詞", + "pn": -0.745074 + }, + { + "surface": "強面", + "readging": "こわおもて", + "pos": "名詞", + "pn": -0.745128 + }, + { + "surface": "厩肥", + "readging": "うまやごえ", + "pos": "名詞", + "pn": -0.74519 + }, + { + "surface": "車輪", + "readging": "しゃりん", + "pos": "名詞", + "pn": -0.745203 + }, + { + "surface": "内", + "readging": "ない", + "pos": "名詞", + "pn": -0.74522 + }, + { + "surface": "思想", + "readging": "しそう", + "pos": "名詞", + "pn": -0.745232 + }, + { + "surface": "飯粒", + "readging": "めしつぶ", + "pos": "名詞", + "pn": -0.745284 + }, + { + "surface": "触れる", + "readging": "ふれる", + "pos": "動詞", + "pn": -0.745296 + }, + { + "surface": "発泡", + "readging": "はっぽう", + "pos": "名詞", + "pn": -0.745402 + }, + { + "surface": "貧民", + "readging": "ひんみん", + "pos": "名詞", + "pn": -0.745449 + }, + { + "surface": "無色", + "readging": "むしょく", + "pos": "名詞", + "pn": -0.745584 + }, + { + "surface": "機能", + "readging": "きのう", + "pos": "名詞", + "pn": -0.745615 + }, + { + "surface": "出発点", + "readging": "しゅっぱつてん", + "pos": "名詞", + "pn": -0.745684 + }, + { + "surface": "蚕糞", + "readging": "こくそ", + "pos": "名詞", + "pn": -0.745769 + }, + { + "surface": "蒸気", + "readging": "じょうき", + "pos": "名詞", + "pn": -0.745797 + }, + { + "surface": "凌", + "readging": "りょう", + "pos": "名詞", + "pn": -0.745858 + }, + { + "surface": "向かう", + "readging": "むかう", + "pos": "動詞", + "pn": -0.74591 + }, + { + "surface": "退紅", + "readging": "たいこう", + "pos": "名詞", + "pn": -0.745974 + }, + { + "surface": "付加", + "readging": "ふか", + "pos": "名詞", + "pn": -0.745975 + }, + { + "surface": "懸隔", + "readging": "けんかく", + "pos": "名詞", + "pn": -0.746038 + }, + { + "surface": "翻", + "readging": "ほん", + "pos": "名詞", + "pn": -0.746171 + }, + { + "surface": "細胞", + "readging": "さいぼう", + "pos": "名詞", + "pn": -0.746254 + }, + { + "surface": "袂", + "readging": "たもと", + "pos": "名詞", + "pn": -0.746283 + }, + { + "surface": "曲", + "readging": "きょく", + "pos": "名詞", + "pn": -0.746355 + }, + { + "surface": "棊子麺", + "readging": "きしめん", + "pos": "名詞", + "pn": -0.74637 + }, + { + "surface": "戦闘", + "readging": "せんとう", + "pos": "名詞", + "pn": -0.746372 + }, + { + "surface": "食い散らす", + "readging": "くいちらす", + "pos": "動詞", + "pn": -0.746398 + }, + { + "surface": "傾げる", + "readging": "かたげる", + "pos": "動詞", + "pn": -0.746412 + }, + { + "surface": "耳漏", + "readging": "じろう", + "pos": "名詞", + "pn": -0.746429 + }, + { + "surface": "縺れる", + "readging": "もつれる", + "pos": "動詞", + "pn": -0.74647 + }, + { + "surface": "湿り気", + "readging": "しめりけ", + "pos": "名詞", + "pn": -0.746498 + }, + { + "surface": "陸地", + "readging": "りくち", + "pos": "名詞", + "pn": -0.746763 + }, + { + "surface": "最少", + "readging": "さいしょう", + "pos": "名詞", + "pn": -0.746779 + }, + { + "surface": "逆らう", + "readging": "さからう", + "pos": "動詞", + "pn": -0.74683 + }, + { + "surface": "蚊", + "readging": "か", + "pos": "名詞", + "pn": -0.746837 + }, + { + "surface": "理由", + "readging": "りゆう", + "pos": "名詞", + "pn": -0.746848 + }, + { + "surface": "謀反", + "readging": "むほん", + "pos": "名詞", + "pn": -0.74689 + }, + { + "surface": "大島紬", + "readging": "おおしまつむぎ", + "pos": "名詞", + "pn": -0.746922 + }, + { + "surface": "薬禍", + "readging": "やっか", + "pos": "名詞", + "pn": -0.747037 + }, + { + "surface": "罅割れる", + "readging": "ひびわれる", + "pos": "動詞", + "pn": -0.747054 + }, + { + "surface": "銭", + "readging": "ぜに", + "pos": "名詞", + "pn": -0.747122 + }, + { + "surface": "真似", + "readging": "まね", + "pos": "名詞", + "pn": -0.747147 + }, + { + "surface": "距離", + "readging": "きょり", + "pos": "名詞", + "pn": -0.747267 + }, + { + "surface": "表六玉", + "readging": "ひょうろくだま", + "pos": "名詞", + "pn": -0.747286 + }, + { + "surface": "立上り", + "readging": "たちあがり", + "pos": "名詞", + "pn": -0.747588 + }, + { + "surface": "木製", + "readging": "もくせい", + "pos": "名詞", + "pn": -0.747589 + }, + { + "surface": "序章", + "readging": "じょしょう", + "pos": "名詞", + "pn": -0.747609 + }, + { + "surface": "汲込む", + "readging": "くみこむ", + "pos": "動詞", + "pn": -0.747654 + }, + { + "surface": "哀れむ", + "readging": "あわれむ", + "pos": "動詞", + "pn": -0.747746 + }, + { + "surface": "斑点", + "readging": "はんてん", + "pos": "名詞", + "pn": -0.747771 + }, + { + "surface": "弄", + "readging": "ろう", + "pos": "名詞", + "pn": -0.747904 + }, + { + "surface": "銅盤", + "readging": "どうばん", + "pos": "名詞", + "pn": -0.74798 + }, + { + "surface": "はぐれる", + "readging": "はぐれる", + "pos": "動詞", + "pn": -0.748123 + }, + { + "surface": "饅頭", + "readging": "まんじゅう", + "pos": "名詞", + "pn": -0.748127 + }, + { + "surface": "螺子釘", + "readging": "ねじくぎ", + "pos": "名詞", + "pn": -0.748204 + }, + { + "surface": "割合", + "readging": "わりあい", + "pos": "名詞", + "pn": -0.748213 + }, + { + "surface": "圧力", + "readging": "あつりょく", + "pos": "名詞", + "pn": -0.748222 + }, + { + "surface": "弔辞", + "readging": "ちょうじ", + "pos": "名詞", + "pn": -0.748273 + }, + { + "surface": "仏教", + "readging": "ぶっきょう", + "pos": "名詞", + "pn": -0.748315 + }, + { + "surface": "内訌", + "readging": "ないこう", + "pos": "名詞", + "pn": -0.748317 + }, + { + "surface": "仕打ち", + "readging": "しうち", + "pos": "名詞", + "pn": -0.748347 + }, + { + "surface": "背中", + "readging": "せなか", + "pos": "名詞", + "pn": -0.748378 + }, + { + "surface": "妖異", + "readging": "ようい", + "pos": "名詞", + "pn": -0.748675 + }, + { + "surface": "誘う", + "readging": "さそう", + "pos": "動詞", + "pn": -0.748743 + }, + { + "surface": "引っ掛ける", + "readging": "ひっかける", + "pos": "動詞", + "pn": -0.748752 + }, + { + "surface": "失当", + "readging": "しっとう", + "pos": "名詞", + "pn": -0.748766 + }, + { + "surface": "怯む", + "readging": "ひるむ", + "pos": "動詞", + "pn": -0.748767 + }, + { + "surface": "連れ小便", + "readging": "つれしょうべん", + "pos": "名詞", + "pn": -0.748854 + }, + { + "surface": "嚆矢", + "readging": "こうし", + "pos": "名詞", + "pn": -0.749011 + }, + { + "surface": "垂れ", + "readging": "たれ", + "pos": "名詞", + "pn": -0.749082 + }, + { + "surface": "ごろ", + "readging": "ごろ", + "pos": "名詞", + "pn": -0.749103 + }, + { + "surface": "毎日", + "readging": "まいにち", + "pos": "名詞", + "pn": -0.749109 + }, + { + "surface": "等しい", + "readging": "ひとしい", + "pos": "形容詞", + "pn": -0.74916 + }, + { + "surface": "大息", + "readging": "おおいき", + "pos": "名詞", + "pn": -0.749178 + }, + { + "surface": "蜻蛉", + "readging": "とんぼ", + "pos": "名詞", + "pn": -0.74922 + }, + { + "surface": "収", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.749265 + }, + { + "surface": "粳", + "readging": "うる", + "pos": "名詞", + "pn": -0.749322 + }, + { + "surface": "欠漏", + "readging": "けつろう", + "pos": "名詞", + "pn": -0.749423 + }, + { + "surface": "成る", + "readging": "なる", + "pos": "動詞", + "pn": -0.749541 + }, + { + "surface": "燃やす", + "readging": "もやす", + "pos": "動詞", + "pn": -0.749639 + }, + { + "surface": "厭世家", + "readging": "えんせいか", + "pos": "名詞", + "pn": -0.749644 + }, + { + "surface": "それぞれ", + "readging": "それぞれ", + "pos": "名詞", + "pn": -0.749711 + }, + { + "surface": "掛離れる", + "readging": "かけはなれる", + "pos": "動詞", + "pn": -0.749766 + }, + { + "surface": "断簡", + "readging": "だんかん", + "pos": "名詞", + "pn": -0.749896 + }, + { + "surface": "燻る", + "readging": "くすぶる", + "pos": "動詞", + "pn": -0.749954 + }, + { + "surface": "怨嗟", + "readging": "えんさ", + "pos": "名詞", + "pn": -0.749977 + }, + { + "surface": "詫事", + "readging": "わびごと", + "pos": "名詞", + "pn": -0.750079 + }, + { + "surface": "貨物", + "readging": "かもつ", + "pos": "名詞", + "pn": -0.750163 + }, + { + "surface": "髑髏", + "readging": "どくろ", + "pos": "名詞", + "pn": -0.750198 + }, + { + "surface": "瞼", + "readging": "まぶた", + "pos": "名詞", + "pn": -0.750311 + }, + { + "surface": "梅毒", + "readging": "ばいどく", + "pos": "名詞", + "pn": -0.75033 + }, + { + "surface": "すき鍋", + "readging": "すきなべ", + "pos": "名詞", + "pn": -0.750339 + }, + { + "surface": "括り枕", + "readging": "くくりまくら", + "pos": "名詞", + "pn": -0.750403 + }, + { + "surface": "時刻", + "readging": "じこく", + "pos": "名詞", + "pn": -0.75043 + }, + { + "surface": "突っ掛る", + "readging": "つっかかる", + "pos": "動詞", + "pn": -0.750736 + }, + { + "surface": "浩浩", + "readging": "こうこう", + "pos": "名詞", + "pn": -0.750797 + }, + { + "surface": "喫煙", + "readging": "きつえん", + "pos": "名詞", + "pn": -0.750853 + }, + { + "surface": "飛込む", + "readging": "とびこむ", + "pos": "動詞", + "pn": -0.750929 + }, + { + "surface": "紅差指", + "readging": "べにさしゆび", + "pos": "名詞", + "pn": -0.750941 + }, + { + "surface": "掻混ぜる", + "readging": "かきまぜる", + "pos": "動詞", + "pn": -0.750981 + }, + { + "surface": "姿勢", + "readging": "しせい", + "pos": "名詞", + "pn": -0.751021 + }, + { + "surface": "ショルダー バッグ", + "readging": "ショルダー バッグ", + "pos": "名詞", + "pn": -0.751034 + }, + { + "surface": "歪める", + "readging": "ゆがめる", + "pos": "動詞", + "pn": -0.751091 + }, + { + "surface": "醤蝦", + "readging": "あみ", + "pos": "名詞", + "pn": -0.751098 + }, + { + "surface": "嘴", + "readging": "くちばし", + "pos": "名詞", + "pn": -0.751332 + }, + { + "surface": "蟇", + "readging": "ひきがえる", + "pos": "名詞", + "pn": -0.751369 + }, + { + "surface": "摩", + "readging": "ま", + "pos": "名詞", + "pn": -0.751384 + }, + { + "surface": "人家", + "readging": "じんか", + "pos": "名詞", + "pn": -0.751406 + }, + { + "surface": "枕頭", + "readging": "ちんとう", + "pos": "名詞", + "pn": -0.751442 + }, + { + "surface": "送還", + "readging": "そうかん", + "pos": "名詞", + "pn": -0.751468 + }, + { + "surface": "続飯", + "readging": "そくい", + "pos": "名詞", + "pn": -0.752008 + }, + { + "surface": "琥珀", + "readging": "こはく", + "pos": "名詞", + "pn": -0.752014 + }, + { + "surface": "朝な朝な", + "readging": "あさなあさな", + "pos": "副詞", + "pn": -0.752106 + }, + { + "surface": "水素", + "readging": "すいそ", + "pos": "名詞", + "pn": -0.752159 + }, + { + "surface": "粘土", + "readging": "ねんど", + "pos": "名詞", + "pn": -0.752159 + }, + { + "surface": "大牢", + "readging": "たいろう", + "pos": "名詞", + "pn": -0.752237 + }, + { + "surface": "始原", + "readging": "しげん", + "pos": "名詞", + "pn": -0.752271 + }, + { + "surface": "斯く斯く", + "readging": "かくかく", + "pos": "副詞", + "pn": -0.752319 + }, + { + "surface": "浮腫む", + "readging": "むくむ", + "pos": "動詞", + "pn": -0.752418 + }, + { + "surface": "自棄っぱち", + "readging": "やけっぱち", + "pos": "名詞", + "pn": -0.752507 + }, + { + "surface": "急迫", + "readging": "きゅうはく", + "pos": "名詞", + "pn": -0.752734 + }, + { + "surface": "ランプ", + "readging": "ランプ", + "pos": "名詞", + "pn": -0.752743 + }, + { + "surface": "とちる", + "readging": "とちる", + "pos": "動詞", + "pn": -0.752772 + }, + { + "surface": "懲らす", + "readging": "こらす", + "pos": "動詞", + "pn": -0.752902 + }, + { + "surface": "レンズ", + "readging": "レンズ", + "pos": "名詞", + "pn": -0.752916 + }, + { + "surface": "皮帯", + "readging": "かわおび", + "pos": "名詞", + "pn": -0.752923 + }, + { + "surface": "大蛇", + "readging": "おろち", + "pos": "名詞", + "pn": -0.75296 + }, + { + "surface": "憤怒", + "readging": "ふんぬ", + "pos": "名詞", + "pn": -0.752975 + }, + { + "surface": "刃", + "readging": "やいば", + "pos": "名詞", + "pn": -0.753108 + }, + { + "surface": "軽しめる", + "readging": "かろしめる", + "pos": "動詞", + "pn": -0.753165 + }, + { + "surface": "災害", + "readging": "さいがい", + "pos": "名詞", + "pn": -0.75321 + }, + { + "surface": "滞る", + "readging": "とどこおる", + "pos": "動詞", + "pn": -0.753259 + }, + { + "surface": "体裁振る", + "readging": "ていさいぶる", + "pos": "動詞", + "pn": -0.753264 + }, + { + "surface": "促す", + "readging": "うながす", + "pos": "動詞", + "pn": -0.753302 + }, + { + "surface": "瞬", + "readging": "しゅん", + "pos": "名詞", + "pn": -0.753317 + }, + { + "surface": "時", + "readging": "とき", + "pos": "名詞", + "pn": -0.753339 + }, + { + "surface": "句切る", + "readging": "くぎる", + "pos": "動詞", + "pn": -0.753343 + }, + { + "surface": "のけ反る", + "readging": "のけぞる", + "pos": "動詞", + "pn": -0.753374 + }, + { + "surface": "元始", + "readging": "げんし", + "pos": "名詞", + "pn": -0.753387 + }, + { + "surface": "お初", + "readging": "おはつ", + "pos": "名詞", + "pn": -0.753465 + }, + { + "surface": "忍ぶ", + "readging": "しのぶ", + "pos": "動詞", + "pn": -0.753476 + }, + { + "surface": "引っ掴む", + "readging": "ひっつかむ", + "pos": "動詞", + "pn": -0.753664 + }, + { + "surface": "再往", + "readging": "さいおう", + "pos": "名詞", + "pn": -0.753668 + }, + { + "surface": "断崖", + "readging": "だんがい", + "pos": "名詞", + "pn": -0.753672 + }, + { + "surface": "綯う", + "readging": "なう", + "pos": "動詞", + "pn": -0.753704 + }, + { + "surface": "怠け者", + "readging": "なまけもの", + "pos": "名詞", + "pn": -0.753784 + }, + { + "surface": "仮初", + "readging": "かりそめ", + "pos": "名詞", + "pn": -0.753796 + }, + { + "surface": "登高", + "readging": "とうこう", + "pos": "名詞", + "pn": -0.753827 + }, + { + "surface": "紛失", + "readging": "ふんしつ", + "pos": "名詞", + "pn": -0.753865 + }, + { + "surface": "暇潰し", + "readging": "ひまつぶし", + "pos": "名詞", + "pn": -0.753866 + }, + { + "surface": "洒落る", + "readging": "しゃれる", + "pos": "動詞", + "pn": -0.753873 + }, + { + "surface": "清拭き", + "readging": "きよぶき", + "pos": "名詞", + "pn": -0.754208 + }, + { + "surface": "怒声", + "readging": "どせい", + "pos": "名詞", + "pn": -0.754211 + }, + { + "surface": "役所", + "readging": "やくどころ", + "pos": "名詞", + "pn": -0.754228 + }, + { + "surface": "とにかく", + "readging": "とにかく", + "pos": "副詞", + "pn": -0.754247 + }, + { + "surface": "鈍根", + "readging": "どんこん", + "pos": "名詞", + "pn": -0.754262 + }, + { + "surface": "病床", + "readging": "びょうしょう", + "pos": "名詞", + "pn": -0.754275 + }, + { + "surface": "霜", + "readging": "そう", + "pos": "名詞", + "pn": -0.754495 + }, + { + "surface": "地球", + "readging": "ちきゅう", + "pos": "名詞", + "pn": -0.754519 + }, + { + "surface": "まやかし", + "readging": "まやかし", + "pos": "名詞", + "pn": -0.754548 + }, + { + "surface": "山地", + "readging": "さんち", + "pos": "名詞", + "pn": -0.75456 + }, + { + "surface": "乱雑", + "readging": "らんざつ", + "pos": "名詞", + "pn": -0.754582 + }, + { + "surface": "襁褓", + "readging": "おしめ", + "pos": "名詞", + "pn": -0.754646 + }, + { + "surface": "体裁", + "readging": "ていさい", + "pos": "名詞", + "pn": -0.754662 + }, + { + "surface": "艫", + "readging": "とも", + "pos": "名詞", + "pn": -0.754751 + }, + { + "surface": "島", + "readging": "とう", + "pos": "名詞", + "pn": -0.75495 + }, + { + "surface": "牢獄", + "readging": "ろうごく", + "pos": "名詞", + "pn": -0.754964 + }, + { + "surface": "エッチ", + "readging": "エッチ", + "pos": "名詞", + "pn": -0.75498 + }, + { + "surface": "だべる", + "readging": "だべる", + "pos": "動詞", + "pn": -0.75502 + }, + { + "surface": "岩石", + "readging": "がんせき", + "pos": "名詞", + "pn": -0.755049 + }, + { + "surface": "飽きる", + "readging": "あきる", + "pos": "動詞", + "pn": -0.755142 + }, + { + "surface": "パン", + "readging": "パン", + "pos": "名詞", + "pn": -0.755228 + }, + { + "surface": "枯れる", + "readging": "かれる", + "pos": "動詞", + "pn": -0.755249 + }, + { + "surface": "垂", + "readging": "すい", + "pos": "名詞", + "pn": -0.755259 + }, + { + "surface": "初手", + "readging": "しょて", + "pos": "名詞", + "pn": -0.755351 + }, + { + "surface": "屈む", + "readging": "こごむ", + "pos": "動詞", + "pn": -0.755423 + }, + { + "surface": "大豆", + "readging": "だいず", + "pos": "名詞", + "pn": -0.755446 + }, + { + "surface": "連木", + "readging": "れんぎ", + "pos": "名詞", + "pn": -0.755462 + }, + { + "surface": "成分", + "readging": "せいぶん", + "pos": "名詞", + "pn": -0.755582 + }, + { + "surface": "香煙", + "readging": "こうえん", + "pos": "名詞", + "pn": -0.755944 + }, + { + "surface": "広野", + "readging": "こうや", + "pos": "名詞", + "pn": -0.755987 + }, + { + "surface": "頭髪", + "readging": "とうはつ", + "pos": "名詞", + "pn": -0.756076 + }, + { + "surface": "葛藤", + "readging": "かっとう", + "pos": "名詞", + "pn": -0.75617 + }, + { + "surface": "岸", + "readging": "きし", + "pos": "名詞", + "pn": -0.756209 + }, + { + "surface": "莫連", + "readging": "ばくれん", + "pos": "名詞", + "pn": -0.756218 + }, + { + "surface": "所有", + "readging": "しょゆう", + "pos": "名詞", + "pn": -0.756292 + }, + { + "surface": "一括", + "readging": "いっかつ", + "pos": "名詞", + "pn": -0.756331 + }, + { + "surface": "取付く", + "readging": "とりつく", + "pos": "動詞", + "pn": -0.756495 + }, + { + "surface": "攻める", + "readging": "せめる", + "pos": "動詞", + "pn": -0.756512 + }, + { + "surface": "笑声", + "readging": "しょうせい", + "pos": "名詞", + "pn": -0.756523 + }, + { + "surface": "始まり", + "readging": "はじまり", + "pos": "名詞", + "pn": -0.756598 + }, + { + "surface": "陰部", + "readging": "いんぶ", + "pos": "名詞", + "pn": -0.756844 + }, + { + "surface": "職務", + "readging": "しょくむ", + "pos": "名詞", + "pn": -0.757181 + }, + { + "surface": "驕傲", + "readging": "きょうごう", + "pos": "名詞", + "pn": -0.75727 + }, + { + "surface": "武士", + "readging": "もののふ", + "pos": "名詞", + "pn": -0.75729 + }, + { + "surface": "小器用", + "readging": "こぎよう", + "pos": "名詞", + "pn": -0.757332 + }, + { + "surface": "垣覗き", + "readging": "かきのぞき", + "pos": "名詞", + "pn": -0.757333 + }, + { + "surface": "図", + "readging": "と", + "pos": "名詞", + "pn": -0.757503 + }, + { + "surface": "特価", + "readging": "とっか", + "pos": "名詞", + "pn": -0.757524 + }, + { + "surface": "げんなり", + "readging": "げんなり", + "pos": "名詞", + "pn": -0.757529 + }, + { + "surface": "錠", + "readging": "じょう", + "pos": "名詞", + "pn": -0.757543 + }, + { + "surface": "日常", + "readging": "にちじょう", + "pos": "名詞", + "pn": -0.757641 + }, + { + "surface": "修羅道", + "readging": "しゅらどう", + "pos": "名詞", + "pn": -0.757744 + }, + { + "surface": "黒米", + "readging": "くろごめ", + "pos": "名詞", + "pn": -0.757749 + }, + { + "surface": "磨潰す", + "readging": "すりつぶす", + "pos": "動詞", + "pn": -0.757758 + }, + { + "surface": "口固め", + "readging": "くちがため", + "pos": "名詞", + "pn": -0.757758 + }, + { + "surface": "単細胞", + "readging": "たんさいぼう", + "pos": "名詞", + "pn": -0.757766 + }, + { + "surface": "覆い", + "readging": "おおい", + "pos": "名詞", + "pn": -0.757811 + }, + { + "surface": "肉体", + "readging": "にくたい", + "pos": "名詞", + "pn": -0.75783 + }, + { + "surface": "酢文字", + "readging": "すもじ", + "pos": "名詞", + "pn": -0.7581 + }, + { + "surface": "始まる", + "readging": "はじまる", + "pos": "動詞", + "pn": -0.758135 + }, + { + "surface": "よろめく", + "readging": "よろめく", + "pos": "動詞", + "pn": -0.758135 + }, + { + "surface": "べちゃくちゃ", + "readging": "べちゃくちゃ", + "pos": "副詞", + "pn": -0.758166 + }, + { + "surface": "廃れる", + "readging": "すたれる", + "pos": "動詞", + "pn": -0.758292 + }, + { + "surface": "化学", + "readging": "かがく", + "pos": "名詞", + "pn": -0.758323 + }, + { + "surface": "謹直", + "readging": "きんちょく", + "pos": "名詞", + "pn": -0.758436 + }, + { + "surface": "長刀草履", + "readging": "なぎなたぞうり", + "pos": "名詞", + "pn": -0.758442 + }, + { + "surface": "痛", + "readging": "つう", + "pos": "名詞", + "pn": -0.758491 + }, + { + "surface": "腑抜け", + "readging": "ふぬけ", + "pos": "名詞", + "pn": -0.758591 + }, + { + "surface": "埋没", + "readging": "まいぼつ", + "pos": "名詞", + "pn": -0.758631 + }, + { + "surface": "将棋", + "readging": "しょうぎ", + "pos": "名詞", + "pn": -0.758638 + }, + { + "surface": "窄める", + "readging": "つぼめる", + "pos": "動詞", + "pn": -0.758777 + }, + { + "surface": "沼沢", + "readging": "しょうたく", + "pos": "名詞", + "pn": -0.758785 + }, + { + "surface": "雑誌", + "readging": "ざっし", + "pos": "名詞", + "pn": -0.758834 + }, + { + "surface": "遅くとも", + "readging": "おそくとも", + "pos": "副詞", + "pn": -0.75897 + }, + { + "surface": "透水", + "readging": "とうすい", + "pos": "名詞", + "pn": -0.759126 + }, + { + "surface": "火災", + "readging": "かさい", + "pos": "名詞", + "pn": -0.759258 + }, + { + "surface": "爆ぜる", + "readging": "はぜる", + "pos": "動詞", + "pn": -0.759288 + }, + { + "surface": "意識", + "readging": "いしき", + "pos": "名詞", + "pn": -0.759317 + }, + { + "surface": "ボート", + "readging": "ボートレース", + "pos": "名詞", + "pn": -0.759394 + }, + { + "surface": "聞香", + "readging": "ぶんこう", + "pos": "名詞", + "pn": -0.759404 + }, + { + "surface": "虚栄", + "readging": "きょえい", + "pos": "名詞", + "pn": -0.759605 + }, + { + "surface": "口唇", + "readging": "こうしん", + "pos": "名詞", + "pn": -0.759694 + }, + { + "surface": "剥がす", + "readging": "へがす", + "pos": "動詞", + "pn": -0.759709 + }, + { + "surface": "燻ぶる", + "readging": "ふすぶる", + "pos": "動詞", + "pn": -0.75971 + }, + { + "surface": "湯上り", + "readging": "ゆあがり", + "pos": "名詞", + "pn": -0.759767 + }, + { + "surface": "変り", + "readging": "かわり", + "pos": "名詞", + "pn": -0.759807 + }, + { + "surface": "濃い", + "readging": "こい", + "pos": "形容詞", + "pn": -0.759844 + }, + { + "surface": "おべっか", + "readging": "おべっか", + "pos": "名詞", + "pn": -0.759938 + }, + { + "surface": "電子", + "readging": "でんし", + "pos": "名詞", + "pn": -0.75999 + }, + { + "surface": "生産", + "readging": "せいさん", + "pos": "名詞", + "pn": -0.76004 + }, + { + "surface": "一張一弛", + "readging": "いっちょういっし", + "pos": "名詞", + "pn": -0.760073 + }, + { + "surface": "筵", + "readging": "むしろ", + "pos": "名詞", + "pn": -0.760084 + }, + { + "surface": "毬", + "readging": "まり", + "pos": "名詞", + "pn": -0.760114 + }, + { + "surface": "蟠る", + "readging": "わだかまる", + "pos": "動詞", + "pn": -0.760187 + }, + { + "surface": "終る", + "readging": "おわる", + "pos": "動詞", + "pn": -0.760429 + }, + { + "surface": "糞蠅", + "readging": "くそばえ", + "pos": "名詞", + "pn": -0.760675 + }, + { + "surface": "燻ぼる", + "readging": "ふすぼる", + "pos": "動詞", + "pn": -0.760677 + }, + { + "surface": "ろう", + "readging": "ろう", + "pos": "名詞", + "pn": -0.760763 + }, + { + "surface": "塗", + "readging": "と", + "pos": "名詞", + "pn": -0.760864 + }, + { + "surface": "財嚢", + "readging": "ざいのう", + "pos": "名詞", + "pn": -0.760906 + }, + { + "surface": "薯蕷", + "readging": "とろろ", + "pos": "名詞", + "pn": -0.760912 + }, + { + "surface": "刃物", + "readging": "はもの", + "pos": "名詞", + "pn": -0.761004 + }, + { + "surface": "禍害", + "readging": "かがい", + "pos": "名詞", + "pn": -0.76105 + }, + { + "surface": "招来", + "readging": "しょうらい", + "pos": "名詞", + "pn": -0.761263 + }, + { + "surface": "色消し", + "readging": "いろけし", + "pos": "名詞", + "pn": -0.761302 + }, + { + "surface": "懐", + "readging": "ふところ", + "pos": "名詞", + "pn": -0.761421 + }, + { + "surface": "切岸", + "readging": "きりぎし", + "pos": "名詞", + "pn": -0.761422 + }, + { + "surface": "来しな", + "readging": "きしな", + "pos": "名詞", + "pn": -0.761422 + }, + { + "surface": "烏滸", + "readging": "おこ", + "pos": "名詞", + "pn": -0.761496 + }, + { + "surface": "無私", + "readging": "むし", + "pos": "名詞", + "pn": -0.761605 + }, + { + "surface": "札", + "readging": "ふだ", + "pos": "名詞", + "pn": -0.761626 + }, + { + "surface": "満天", + "readging": "まんてん", + "pos": "名詞", + "pn": -0.761868 + }, + { + "surface": "満水", + "readging": "まんすい", + "pos": "名詞", + "pn": -0.761868 + }, + { + "surface": "仮に", + "readging": "かりに", + "pos": "副詞", + "pn": -0.761894 + }, + { + "surface": "材木", + "readging": "ざいもく", + "pos": "名詞", + "pn": -0.761947 + }, + { + "surface": "しゃくり上げる", + "readging": "しゃくりあげる", + "pos": "動詞", + "pn": -0.762001 + }, + { + "surface": "治療", + "readging": "ちりょう", + "pos": "名詞", + "pn": -0.762003 + }, + { + "surface": "畏縮", + "readging": "いしゅく", + "pos": "名詞", + "pn": -0.762012 + }, + { + "surface": "透明", + "readging": "とうめい", + "pos": "名詞", + "pn": -0.762139 + }, + { + "surface": "反応", + "readging": "はんのう", + "pos": "名詞", + "pn": -0.762198 + }, + { + "surface": "来往", + "readging": "らいおう", + "pos": "名詞", + "pn": -0.762352 + }, + { + "surface": "偶人", + "readging": "ぐうじん", + "pos": "名詞", + "pn": -0.762413 + }, + { + "surface": "ぽたぽた", + "readging": "ぽたぽた", + "pos": "副詞", + "pn": -0.762428 + }, + { + "surface": "銅", + "readging": "どう", + "pos": "名詞", + "pn": -0.76251 + }, + { + "surface": "嘆息", + "readging": "たんそく", + "pos": "名詞", + "pn": -0.762536 + }, + { + "surface": "眼鏡", + "readging": "めがね", + "pos": "名詞", + "pn": -0.762592 + }, + { + "surface": "犬", + "readging": "けん", + "pos": "名詞", + "pn": -0.762775 + }, + { + "surface": "学校", + "readging": "がっこう", + "pos": "名詞", + "pn": -0.762799 + }, + { + "surface": "度合", + "readging": "どあい", + "pos": "名詞", + "pn": -0.762862 + }, + { + "surface": "ぼたぼた", + "readging": "ぼたぼた", + "pos": "副詞", + "pn": -0.762893 + }, + { + "surface": "眼", + "readging": "がん", + "pos": "名詞", + "pn": -0.762923 + }, + { + "surface": "異なる", + "readging": "ことなる", + "pos": "動詞", + "pn": -0.762981 + }, + { + "surface": "定める", + "readging": "さだめる", + "pos": "動詞", + "pn": -0.763113 + }, + { + "surface": "綴る", + "readging": "つづる", + "pos": "動詞", + "pn": -0.763184 + }, + { + "surface": "土焼", + "readging": "どやき", + "pos": "名詞", + "pn": -0.763297 + }, + { + "surface": "湿気", + "readging": "しっけ", + "pos": "名詞", + "pn": -0.763404 + }, + { + "surface": "穂", + "readging": "ほ", + "pos": "名詞", + "pn": -0.763504 + }, + { + "surface": "増す", + "readging": "ます", + "pos": "動詞", + "pn": -0.763623 + }, + { + "surface": "釘裂き", + "readging": "くぎざき", + "pos": "名詞", + "pn": -0.763687 + }, + { + "surface": "生殖", + "readging": "せいしょく", + "pos": "名詞", + "pn": -0.763743 + }, + { + "surface": "巻繊", + "readging": "けんちん", + "pos": "名詞", + "pn": -0.763793 + }, + { + "surface": "傾向", + "readging": "けいこう", + "pos": "名詞", + "pn": -0.764261 + }, + { + "surface": "督", + "readging": "とく", + "pos": "名詞", + "pn": -0.764347 + }, + { + "surface": "属する", + "readging": "ぞくする", + "pos": "動詞", + "pn": -0.764541 + }, + { + "surface": "押し付ける", + "readging": "おしつける", + "pos": "動詞", + "pn": -0.764592 + }, + { + "surface": "貪る", + "readging": "むさぼる", + "pos": "動詞", + "pn": -0.764614 + }, + { + "surface": "損ずる", + "readging": "そんずる", + "pos": "動詞", + "pn": -0.764797 + }, + { + "surface": "台所", + "readging": "だいどころ", + "pos": "名詞", + "pn": -0.764823 + }, + { + "surface": "舌", + "readging": "した", + "pos": "名詞", + "pn": -0.764919 + }, + { + "surface": "匍匐", + "readging": "ほふく", + "pos": "名詞", + "pn": -0.765069 + }, + { + "surface": "縮こまる", + "readging": "ちぢこまる", + "pos": "動詞", + "pn": -0.765128 + }, + { + "surface": "遊泳", + "readging": "ゆうえい", + "pos": "名詞", + "pn": -0.765192 + }, + { + "surface": "片寄る", + "readging": "かたよる", + "pos": "動詞", + "pn": -0.765236 + }, + { + "surface": "厄難", + "readging": "やくなん", + "pos": "名詞", + "pn": -0.765276 + }, + { + "surface": "紡ぐ", + "readging": "つむぐ", + "pos": "動詞", + "pn": -0.765358 + }, + { + "surface": "自製", + "readging": "じせい", + "pos": "名詞", + "pn": -0.765388 + }, + { + "surface": "死亡", + "readging": "しぼう", + "pos": "名詞", + "pn": -0.765674 + }, + { + "surface": "主義", + "readging": "しゅぎ", + "pos": "名詞", + "pn": -0.765714 + }, + { + "surface": "眠い", + "readging": "ねむい", + "pos": "形容詞", + "pn": -0.765739 + }, + { + "surface": "心尽し", + "readging": "こころづくし", + "pos": "名詞", + "pn": -0.765763 + }, + { + "surface": "施錠", + "readging": "せじょう", + "pos": "名詞", + "pn": -0.765822 + }, + { + "surface": "電流", + "readging": "でんりゅう", + "pos": "名詞", + "pn": -0.765854 + }, + { + "surface": "上顎", + "readging": "じょうがく", + "pos": "名詞", + "pn": -0.765922 + }, + { + "surface": "支える", + "readging": "つかえる", + "pos": "動詞", + "pn": -0.766209 + }, + { + "surface": "唱える", + "readging": "となえる", + "pos": "動詞", + "pn": -0.76645 + }, + { + "surface": "焼餅", + "readging": "やきもち", + "pos": "名詞", + "pn": -0.766934 + }, + { + "surface": "産", + "readging": "さん", + "pos": "名詞", + "pn": -0.76697 + }, + { + "surface": "礼", + "readging": "れい", + "pos": "名詞", + "pn": -0.766981 + }, + { + "surface": "蛇体", + "readging": "じゃたい", + "pos": "名詞", + "pn": -0.767068 + }, + { + "surface": "得る", + "readging": "うる", + "pos": "動詞", + "pn": -0.767173 + }, + { + "surface": "誤判", + "readging": "ごはん", + "pos": "名詞", + "pn": -0.767202 + }, + { + "surface": "削剥", + "readging": "さくはく", + "pos": "名詞", + "pn": -0.767517 + }, + { + "surface": "塞がる", + "readging": "ふさがる", + "pos": "動詞", + "pn": -0.76752 + }, + { + "surface": "薄", + "readging": "はく", + "pos": "名詞", + "pn": -0.767567 + }, + { + "surface": "涙", + "readging": "るい", + "pos": "名詞", + "pn": -0.767639 + }, + { + "surface": "脱ぐ", + "readging": "ぬぐ", + "pos": "動詞", + "pn": -0.767672 + }, + { + "surface": "戦い", + "readging": "たたかい", + "pos": "名詞", + "pn": -0.767698 + }, + { + "surface": "伝える", + "readging": "つたえる", + "pos": "動詞", + "pn": -0.767801 + }, + { + "surface": "軽蔑", + "readging": "けいべつ", + "pos": "名詞", + "pn": -0.767898 + }, + { + "surface": "秩序", + "readging": "ちつじょ", + "pos": "名詞", + "pn": -0.767929 + }, + { + "surface": "陶器", + "readging": "とうき", + "pos": "名詞", + "pn": -0.767978 + }, + { + "surface": "委ねる", + "readging": "ゆだねる", + "pos": "動詞", + "pn": -0.768046 + }, + { + "surface": "縛", + "readging": "ばく", + "pos": "名詞", + "pn": -0.768083 + }, + { + "surface": "取上せる", + "readging": "とりのぼせる", + "pos": "動詞", + "pn": -0.768121 + }, + { + "surface": "葡萄", + "readging": "ぶどう", + "pos": "名詞", + "pn": -0.768159 + }, + { + "surface": "小倉餡", + "readging": "おぐら", + "pos": "名詞", + "pn": -0.768263 + }, + { + "surface": "鉦鼓", + "readging": "しょうこ", + "pos": "名詞", + "pn": -0.768271 + }, + { + "surface": "蛇蝎", + "readging": "だかつ", + "pos": "名詞", + "pn": -0.768609 + }, + { + "surface": "駄", + "readging": "だ", + "pos": "名詞", + "pn": -0.768623 + }, + { + "surface": "剥落", + "readging": "はくらく", + "pos": "名詞", + "pn": -0.768644 + }, + { + "surface": "境", + "readging": "さかい", + "pos": "名詞", + "pn": -0.768747 + }, + { + "surface": "半人前", + "readging": "はんにんまえ", + "pos": "名詞", + "pn": -0.768765 + }, + { + "surface": "息子", + "readging": "むすこ", + "pos": "名詞", + "pn": -0.768786 + }, + { + "surface": "綴じ", + "readging": "とじ", + "pos": "名詞", + "pn": -0.768814 + }, + { + "surface": "綴目", + "readging": "とじめ", + "pos": "名詞", + "pn": -0.768814 + }, + { + "surface": "推量る", + "readging": "おしはかる", + "pos": "動詞", + "pn": -0.768859 + }, + { + "surface": "看過", + "readging": "かんか", + "pos": "名詞", + "pn": -0.768877 + }, + { + "surface": "伊賀袴", + "readging": "いがばかま", + "pos": "名詞", + "pn": -0.768899 + }, + { + "surface": "背負う", + "readging": "せおう", + "pos": "動詞", + "pn": -0.768929 + }, + { + "surface": "月余", + "readging": "げつよ", + "pos": "名詞", + "pn": -0.769012 + }, + { + "surface": "跡", + "readging": "せき", + "pos": "名詞", + "pn": -0.769241 + }, + { + "surface": "銃", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.769249 + }, + { + "surface": "無名指", + "readging": "むめいし", + "pos": "名詞", + "pn": -0.769349 + }, + { + "surface": "付きっ切り", + "readging": "つきっきり", + "pos": "名詞", + "pn": -0.769388 + }, + { + "surface": "膺懲", + "readging": "ようちょう", + "pos": "名詞", + "pn": -0.76969 + }, + { + "surface": "謬説", + "readging": "びょうせつ", + "pos": "名詞", + "pn": -0.769726 + }, + { + "surface": "夕蝉", + "readging": "ゆうぜみ", + "pos": "名詞", + "pn": -0.769856 + }, + { + "surface": "室", + "readging": "むろ", + "pos": "名詞", + "pn": -0.769892 + }, + { + "surface": "鼻", + "readging": "はな", + "pos": "名詞", + "pn": -0.770024 + }, + { + "surface": "球", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.770057 + }, + { + "surface": "伺う", + "readging": "うかがう", + "pos": "動詞", + "pn": -0.770086 + }, + { + "surface": "話す", + "readging": "はなす", + "pos": "動詞", + "pn": -0.770092 + }, + { + "surface": "女性", + "readging": "にょしょう", + "pos": "名詞", + "pn": -0.770125 + }, + { + "surface": "白粉", + "readging": "おしろい", + "pos": "名詞", + "pn": -0.770134 + }, + { + "surface": "一隅", + "readging": "いちぐう", + "pos": "名詞", + "pn": -0.770221 + }, + { + "surface": "順序", + "readging": "じゅんじょ", + "pos": "名詞", + "pn": -0.77027 + }, + { + "surface": "一頻り", + "readging": "ひとしきり", + "pos": "副詞", + "pn": -0.770361 + }, + { + "surface": "相談", + "readging": "そうだん", + "pos": "名詞", + "pn": -0.770386 + }, + { + "surface": "勝負", + "readging": "しょうぶ", + "pos": "名詞", + "pn": -0.770399 + }, + { + "surface": "抜かす", + "readging": "ぬかす", + "pos": "動詞", + "pn": -0.770403 + }, + { + "surface": "おんぼろ", + "readging": "おんぼろ", + "pos": "名詞", + "pn": -0.770448 + }, + { + "surface": "試筆", + "readging": "しひつ", + "pos": "名詞", + "pn": -0.770487 + }, + { + "surface": "うそ", + "readging": "うそ", + "pos": "名詞", + "pn": -0.770524 + }, + { + "surface": "足袋", + "readging": "たび", + "pos": "名詞", + "pn": -0.770545 + }, + { + "surface": "謙", + "readging": "けん", + "pos": "名詞", + "pn": -0.770793 + }, + { + "surface": "粒", + "readging": "つぶ", + "pos": "名詞", + "pn": -0.771057 + }, + { + "surface": "憤る", + "readging": "いきどおる", + "pos": "動詞", + "pn": -0.771148 + }, + { + "surface": "紛らす", + "readging": "まぎらす", + "pos": "動詞", + "pn": -0.771159 + }, + { + "surface": "研ぐ", + "readging": "とぐ", + "pos": "動詞", + "pn": -0.771217 + }, + { + "surface": "空費", + "readging": "くうひ", + "pos": "名詞", + "pn": -0.771243 + }, + { + "surface": "軸", + "readging": "じく", + "pos": "名詞", + "pn": -0.77127 + }, + { + "surface": "粉末", + "readging": "ふんまつ", + "pos": "名詞", + "pn": -0.771372 + }, + { + "surface": "陥穽", + "readging": "かんせい", + "pos": "名詞", + "pn": -0.771392 + }, + { + "surface": "厳探", + "readging": "げんたん", + "pos": "名詞", + "pn": -0.771458 + }, + { + "surface": "緩む", + "readging": "ゆるむ", + "pos": "動詞", + "pn": -0.771464 + }, + { + "surface": "眼球", + "readging": "がんきゅう", + "pos": "名詞", + "pn": -0.771555 + }, + { + "surface": "妨げる", + "readging": "さまたげる", + "pos": "動詞", + "pn": -0.771585 + }, + { + "surface": "奥", + "readging": "おく", + "pos": "名詞", + "pn": -0.771587 + }, + { + "surface": "同情", + "readging": "どうじょう", + "pos": "名詞", + "pn": -0.771587 + }, + { + "surface": "おっかぶせる", + "readging": "おっかぶせる", + "pos": "動詞", + "pn": -0.771636 + }, + { + "surface": "剔抉", + "readging": "てっけつ", + "pos": "名詞", + "pn": -0.771637 + }, + { + "surface": "記録", + "readging": "きろく", + "pos": "名詞", + "pn": -0.771738 + }, + { + "surface": "代替", + "readging": "だいたい", + "pos": "名詞", + "pn": -0.771942 + }, + { + "surface": "立返る", + "readging": "たちかえる", + "pos": "動詞", + "pn": -0.771942 + }, + { + "surface": "宿屋", + "readging": "やどや", + "pos": "名詞", + "pn": -0.772023 + }, + { + "surface": "布地", + "readging": "ぬのじ", + "pos": "名詞", + "pn": -0.772035 + }, + { + "surface": "手先", + "readging": "てさき", + "pos": "名詞", + "pn": -0.772096 + }, + { + "surface": "酸味", + "readging": "すみ", + "pos": "名詞", + "pn": -0.772139 + }, + { + "surface": "策略", + "readging": "さくりゃく", + "pos": "名詞", + "pn": -0.772179 + }, + { + "surface": "禁止", + "readging": "きんし", + "pos": "名詞", + "pn": -0.772268 + }, + { + "surface": "ぶよぶよ", + "readging": "ぶよぶよ", + "pos": "副詞", + "pn": -0.772629 + }, + { + "surface": "悔恨", + "readging": "かいこん", + "pos": "名詞", + "pn": -0.772774 + }, + { + "surface": "災厄", + "readging": "さいやく", + "pos": "名詞", + "pn": -0.772783 + }, + { + "surface": "介する", + "readging": "かいする", + "pos": "動詞", + "pn": -0.772791 + }, + { + "surface": "化ける", + "readging": "ばける", + "pos": "動詞", + "pn": -0.772825 + }, + { + "surface": "飼う", + "readging": "かう", + "pos": "動詞", + "pn": -0.773031 + }, + { + "surface": "物凄まじい", + "readging": "ものすさまじい", + "pos": "形容詞", + "pn": -0.773182 + }, + { + "surface": "固太り", + "readging": "かたぶとり", + "pos": "名詞", + "pn": -0.773209 + }, + { + "surface": "映画", + "readging": "えいが", + "pos": "名詞", + "pn": -0.773313 + }, + { + "surface": "取除ける", + "readging": "とりのける", + "pos": "動詞", + "pn": -0.773317 + }, + { + "surface": "噎せる", + "readging": "むせる", + "pos": "動詞", + "pn": -0.773397 + }, + { + "surface": "気体", + "readging": "きたい", + "pos": "名詞", + "pn": -0.773398 + }, + { + "surface": "磨臼", + "readging": "すりうす", + "pos": "名詞", + "pn": -0.773437 + }, + { + "surface": "赤赤と", + "readging": "あかあかと", + "pos": "副詞", + "pn": -0.773515 + }, + { + "surface": "復", + "readging": "ふく", + "pos": "名詞", + "pn": -0.773544 + }, + { + "surface": "嫁女", + "readging": "よめじょ", + "pos": "名詞", + "pn": -0.773598 + }, + { + "surface": "部隊", + "readging": "ぶたい", + "pos": "名詞", + "pn": -0.773676 + }, + { + "surface": "差繰る", + "readging": "さしくる", + "pos": "動詞", + "pn": -0.773676 + }, + { + "surface": "愚行", + "readging": "ぐこう", + "pos": "名詞", + "pn": -0.773712 + }, + { + "surface": "楕円", + "readging": "だえん", + "pos": "名詞", + "pn": -0.77379 + }, + { + "surface": "抜け上がる", + "readging": "ぬけあがる", + "pos": "動詞", + "pn": -0.77408 + }, + { + "surface": "濡れそぼつ", + "readging": "ぬれそぼつ", + "pos": "動詞", + "pn": -0.774112 + }, + { + "surface": "闇", + "readging": "やみ", + "pos": "名詞", + "pn": -0.774175 + }, + { + "surface": "引っ担ぐ", + "readging": "ひっかつぐ", + "pos": "動詞", + "pn": -0.774183 + }, + { + "surface": "酷熱", + "readging": "こくねつ", + "pos": "名詞", + "pn": -0.774235 + }, + { + "surface": "粒", + "readging": "りゅう", + "pos": "名詞", + "pn": -0.774437 + }, + { + "surface": "笠", + "readging": "かさ", + "pos": "名詞", + "pn": -0.774453 + }, + { + "surface": "靴篦", + "readging": "くつべら", + "pos": "名詞", + "pn": -0.774468 + }, + { + "surface": "釘目", + "readging": "くぎめ", + "pos": "名詞", + "pn": -0.774639 + }, + { + "surface": "隔絶", + "readging": "かくぜつ", + "pos": "名詞", + "pn": -0.774684 + }, + { + "surface": "跳ね炭", + "readging": "はねずみ", + "pos": "名詞", + "pn": -0.774694 + }, + { + "surface": "理屈", + "readging": "りくつ", + "pos": "名詞", + "pn": -0.774736 + }, + { + "surface": "権輿", + "readging": "けんよ", + "pos": "名詞", + "pn": -0.774741 + }, + { + "surface": "向ける", + "readging": "むける", + "pos": "動詞", + "pn": -0.774755 + }, + { + "surface": "環視", + "readging": "かんし", + "pos": "名詞", + "pn": -0.77476 + }, + { + "surface": "潤", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.774766 + }, + { + "surface": "擦れる", + "readging": "すれる", + "pos": "動詞", + "pn": -0.774826 + }, + { + "surface": "きょとんと", + "readging": "きょとんと", + "pos": "副詞", + "pn": -0.775011 + }, + { + "surface": "へばる", + "readging": "へばる", + "pos": "動詞", + "pn": -0.775116 + }, + { + "surface": "田", + "readging": "でん", + "pos": "名詞", + "pn": -0.77512 + }, + { + "surface": "げろ", + "readging": "げろ", + "pos": "名詞", + "pn": -0.775173 + }, + { + "surface": "慌てる", + "readging": "あわてる", + "pos": "動詞", + "pn": -0.775308 + }, + { + "surface": "傍ら", + "readging": "かたわら", + "pos": "名詞", + "pn": -0.775325 + }, + { + "surface": "見下ろす", + "readging": "みおろす", + "pos": "動詞", + "pn": -0.775571 + }, + { + "surface": "折る", + "readging": "おる", + "pos": "動詞", + "pn": -0.775593 + }, + { + "surface": "頬", + "readging": "ほお", + "pos": "名詞", + "pn": -0.775659 + }, + { + "surface": "縁", + "readging": "よすが", + "pos": "名詞", + "pn": -0.775915 + }, + { + "surface": "道路", + "readging": "どうろ", + "pos": "名詞", + "pn": -0.775932 + }, + { + "surface": "灰", + "readging": "はい", + "pos": "名詞", + "pn": -0.776006 + }, + { + "surface": "黙過", + "readging": "もっか", + "pos": "名詞", + "pn": -0.776068 + }, + { + "surface": "遣り繰り", + "readging": "やりくり", + "pos": "名詞", + "pn": -0.776178 + }, + { + "surface": "脇挟む", + "readging": "わきばさむ", + "pos": "動詞", + "pn": -0.776225 + }, + { + "surface": "角", + "readging": "つの", + "pos": "名詞", + "pn": -0.776254 + }, + { + "surface": "倒す", + "readging": "たおす", + "pos": "動詞", + "pn": -0.776271 + }, + { + "surface": "説明", + "readging": "せつめい", + "pos": "名詞", + "pn": -0.776338 + }, + { + "surface": "屈伸", + "readging": "くっしん", + "pos": "名詞", + "pn": -0.776387 + }, + { + "surface": "用具", + "readging": "ようぐ", + "pos": "名詞", + "pn": -0.776388 + }, + { + "surface": "悔やむ", + "readging": "くやむ", + "pos": "動詞", + "pn": -0.776416 + }, + { + "surface": "解き物", + "readging": "ほどきもの", + "pos": "名詞", + "pn": -0.776465 + }, + { + "surface": "懲らしめる", + "readging": "こらしめる", + "pos": "動詞", + "pn": -0.776485 + }, + { + "surface": "従う", + "readging": "したがう", + "pos": "動詞", + "pn": -0.776601 + }, + { + "surface": "寂れる", + "readging": "さびれる", + "pos": "動詞", + "pn": -0.77661 + }, + { + "surface": "手土産", + "readging": "てみやげ", + "pos": "名詞", + "pn": -0.776729 + }, + { + "surface": "出しゃばり", + "readging": "でしゃばり", + "pos": "名詞", + "pn": -0.776885 + }, + { + "surface": "逃す", + "readging": "のがす", + "pos": "動詞", + "pn": -0.776918 + }, + { + "surface": "山積", + "readging": "さんせき", + "pos": "名詞", + "pn": -0.776932 + }, + { + "surface": "脅し", + "readging": "おどし", + "pos": "名詞", + "pn": -0.777001 + }, + { + "surface": "高熱", + "readging": "こうねつ", + "pos": "名詞", + "pn": -0.777038 + }, + { + "surface": "掠れる", + "readging": "かすれる", + "pos": "動詞", + "pn": -0.777065 + }, + { + "surface": "宿下り", + "readging": "やどさがり", + "pos": "名詞", + "pn": -0.777118 + }, + { + "surface": "お萩", + "readging": "おはぎ", + "pos": "名詞", + "pn": -0.777122 + }, + { + "surface": "頭", + "readging": "かしら", + "pos": "名詞", + "pn": -0.777183 + }, + { + "surface": "足掻き", + "readging": "あがき", + "pos": "名詞", + "pn": -0.777184 + }, + { + "surface": "向う脛", + "readging": "むこうずね", + "pos": "名詞", + "pn": -0.777202 + }, + { + "surface": "打払う", + "readging": "うちはらう", + "pos": "動詞", + "pn": -0.777337 + }, + { + "surface": "下番", + "readging": "かばん", + "pos": "名詞", + "pn": -0.777398 + }, + { + "surface": "纏まる", + "readging": "まとまる", + "pos": "動詞", + "pn": -0.777444 + }, + { + "surface": "ちゃらっぽこ", + "readging": "ちゃらっぽこ", + "pos": "名詞", + "pn": -0.777542 + }, + { + "surface": "虜", + "readging": "りょ", + "pos": "名詞", + "pn": -0.777563 + }, + { + "surface": "邪魔", + "readging": "じゃま", + "pos": "名詞", + "pn": -0.777628 + }, + { + "surface": "針立", + "readging": "はりたて", + "pos": "名詞", + "pn": -0.777685 + }, + { + "surface": "真中", + "readging": "まんなか", + "pos": "名詞", + "pn": -0.77773 + }, + { + "surface": "蚋", + "readging": "ぶと", + "pos": "名詞", + "pn": -0.777782 + }, + { + "surface": "夕さり", + "readging": "ゆうさり", + "pos": "名詞", + "pn": -0.777905 + }, + { + "surface": "喉元", + "readging": "のどもと", + "pos": "名詞", + "pn": -0.777941 + }, + { + "surface": "殊更", + "readging": "ことさら", + "pos": "副詞", + "pn": -0.777953 + }, + { + "surface": "諸相", + "readging": "しょそう", + "pos": "名詞", + "pn": -0.777956 + }, + { + "surface": "家屋", + "readging": "かおく", + "pos": "名詞", + "pn": -0.778033 + }, + { + "surface": "仕える", + "readging": "つかえる", + "pos": "動詞", + "pn": -0.778148 + }, + { + "surface": "我儘", + "readging": "わがまま", + "pos": "名詞", + "pn": -0.77816 + }, + { + "surface": "蠢かす", + "readging": "うごめかす", + "pos": "動詞", + "pn": -0.778185 + }, + { + "surface": "円筒", + "readging": "えんとう", + "pos": "名詞", + "pn": -0.778242 + }, + { + "surface": "強請", + "readging": "ゆすり", + "pos": "名詞", + "pn": -0.778326 + }, + { + "surface": "偽物", + "readging": "にせもの", + "pos": "名詞", + "pn": -0.778401 + }, + { + "surface": "咳き入る", + "readging": "せきいる", + "pos": "動詞", + "pn": -0.778443 + }, + { + "surface": "付け所", + "readging": "つけどころ", + "pos": "名詞", + "pn": -0.778455 + }, + { + "surface": "寝床", + "readging": "ねどこ", + "pos": "名詞", + "pn": -0.778494 + }, + { + "surface": "掻回す", + "readging": "かきまわす", + "pos": "動詞", + "pn": -0.778655 + }, + { + "surface": "攻落", + "readging": "こうらく", + "pos": "名詞", + "pn": -0.778709 + }, + { + "surface": "人民", + "readging": "じんみん", + "pos": "名詞", + "pn": -0.778714 + }, + { + "surface": "始める", + "readging": "はじめる", + "pos": "動詞", + "pn": -0.778718 + }, + { + "surface": "申", + "readging": "さる", + "pos": "名詞", + "pn": -0.778836 + }, + { + "surface": "暗ます", + "readging": "くらます", + "pos": "動詞", + "pn": -0.778844 + }, + { + "surface": "習わし", + "readging": "ならわし", + "pos": "名詞", + "pn": -0.778874 + }, + { + "surface": "服装", + "readging": "ふくそう", + "pos": "名詞", + "pn": -0.778993 + }, + { + "surface": "袴", + "readging": "はかま", + "pos": "名詞", + "pn": -0.778999 + }, + { + "surface": "紊乱", + "readging": "びんらん", + "pos": "名詞", + "pn": -0.779013 + }, + { + "surface": "レーズン", + "readging": "レーズン", + "pos": "名詞", + "pn": -0.779037 + }, + { + "surface": "真直ぐ", + "readging": "まっすぐ", + "pos": "副詞", + "pn": -0.779074 + }, + { + "surface": "節", + "readging": "よ", + "pos": "名詞", + "pn": -0.779154 + }, + { + "surface": "玉", + "readging": "たま", + "pos": "名詞", + "pn": -0.779159 + }, + { + "surface": "鹸化", + "readging": "けんか", + "pos": "名詞", + "pn": -0.779167 + }, + { + "surface": "一指", + "readging": "いっし", + "pos": "名詞", + "pn": -0.779167 + }, + { + "surface": "胸焼け", + "readging": "むねやけ", + "pos": "名詞", + "pn": -0.779215 + }, + { + "surface": "敷物", + "readging": "しきもの", + "pos": "名詞", + "pn": -0.779235 + }, + { + "surface": "日替り", + "readging": "ひがわり", + "pos": "名詞", + "pn": -0.779307 + }, + { + "surface": "洋服", + "readging": "ようふく", + "pos": "名詞", + "pn": -0.779315 + }, + { + "surface": "淡い", + "readging": "あわい", + "pos": "形容詞", + "pn": -0.779368 + }, + { + "surface": "鈍化", + "readging": "どんか", + "pos": "名詞", + "pn": -0.779472 + }, + { + "surface": "嘲笑う", + "readging": "あざわらう", + "pos": "動詞", + "pn": -0.77953 + }, + { + "surface": "御馳走", + "readging": "ごちそう", + "pos": "名詞", + "pn": -0.779601 + }, + { + "surface": "漕ぐ", + "readging": "こぐ", + "pos": "動詞", + "pn": -0.779659 + }, + { + "surface": "棺桶", + "readging": "かんおけ", + "pos": "名詞", + "pn": -0.77976 + }, + { + "surface": "醂す", + "readging": "あわす", + "pos": "動詞", + "pn": -0.779776 + }, + { + "surface": "障子", + "readging": "しょうじ", + "pos": "名詞", + "pn": -0.779904 + }, + { + "surface": "吸付け煙草", + "readging": "すいつけタバコ", + "pos": "名詞", + "pn": -0.779935 + }, + { + "surface": "費やす", + "readging": "ついやす", + "pos": "動詞", + "pn": -0.780014 + }, + { + "surface": "焼", + "readging": "しょう", + "pos": "名詞", + "pn": -0.780068 + }, + { + "surface": "天保銭", + "readging": "てんぽうせん", + "pos": "名詞", + "pn": -0.780215 + }, + { + "surface": "ふん縛る", + "readging": "ふんじばる", + "pos": "動詞", + "pn": -0.78025 + }, + { + "surface": "粟", + "readging": "あわ", + "pos": "名詞", + "pn": -0.780411 + }, + { + "surface": "止る", + "readging": "とまる", + "pos": "動詞", + "pn": -0.780457 + }, + { + "surface": "突戻す", + "readging": "つきもどす", + "pos": "動詞", + "pn": -0.780471 + }, + { + "surface": "生硬", + "readging": "せいこう", + "pos": "名詞", + "pn": -0.780684 + }, + { + "surface": "炉端", + "readging": "ろばた", + "pos": "名詞", + "pn": -0.780846 + }, + { + "surface": "埋伏", + "readging": "まいふく", + "pos": "名詞", + "pn": -0.780918 + }, + { + "surface": "痴人", + "readging": "ちじん", + "pos": "名詞", + "pn": -0.780958 + }, + { + "surface": "虎", + "readging": "とら", + "pos": "名詞", + "pn": -0.780994 + }, + { + "surface": "石拳", + "readging": "いしけん", + "pos": "名詞", + "pn": -0.781023 + }, + { + "surface": "尻切り半纏", + "readging": "しりきりばんてん", + "pos": "名詞", + "pn": -0.781032 + }, + { + "surface": "死魔", + "readging": "しま", + "pos": "名詞", + "pn": -0.781105 + }, + { + "surface": "乗っける", + "readging": "のっける", + "pos": "動詞", + "pn": -0.781151 + }, + { + "surface": "鈍する", + "readging": "どんする", + "pos": "動詞", + "pn": -0.781153 + }, + { + "surface": "寄る", + "readging": "よる", + "pos": "動詞", + "pn": -0.781171 + }, + { + "surface": "窓", + "readging": "まど", + "pos": "名詞", + "pn": -0.781253 + }, + { + "surface": "焼飯", + "readging": "やきめし", + "pos": "名詞", + "pn": -0.781295 + }, + { + "surface": "幕", + "readging": "まく", + "pos": "名詞", + "pn": -0.781422 + }, + { + "surface": "ろくでなし", + "readging": "ろくでなし", + "pos": "名詞", + "pn": -0.781505 + }, + { + "surface": "呆然", + "readging": "ぼうぜん", + "pos": "名詞", + "pn": -0.781537 + }, + { + "surface": "累", + "readging": "るい", + "pos": "名詞", + "pn": -0.781612 + }, + { + "surface": "差", + "readging": "さ", + "pos": "名詞", + "pn": -0.781612 + }, + { + "surface": "罠", + "readging": "わな", + "pos": "名詞", + "pn": -0.781615 + }, + { + "surface": "除け者", + "readging": "のけもの", + "pos": "名詞", + "pn": -0.781698 + }, + { + "surface": "囚虜", + "readging": "しゅうりょ", + "pos": "名詞", + "pn": -0.781826 + }, + { + "surface": "豆腐", + "readging": "とうふ", + "pos": "名詞", + "pn": -0.781906 + }, + { + "surface": "薯蕷芋", + "readging": "とろろいも", + "pos": "名詞", + "pn": -0.781964 + }, + { + "surface": "仙人掌", + "readging": "サボテン", + "pos": "名詞", + "pn": -0.782069 + }, + { + "surface": "弦", + "readging": "げん", + "pos": "名詞", + "pn": -0.782286 + }, + { + "surface": "司る", + "readging": "つかさどる", + "pos": "動詞", + "pn": -0.782325 + }, + { + "surface": "待つ", + "readging": "まつ", + "pos": "動詞", + "pn": -0.782365 + }, + { + "surface": "楽器", + "readging": "がっき", + "pos": "名詞", + "pn": -0.782512 + }, + { + "surface": "芋蔓", + "readging": "いもづる", + "pos": "名詞", + "pn": -0.782553 + }, + { + "surface": "主として", + "readging": "しゅとして", + "pos": "副詞", + "pn": -0.782556 + }, + { + "surface": "株", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.782646 + }, + { + "surface": "遮る", + "readging": "さえぎる", + "pos": "動詞", + "pn": -0.782718 + }, + { + "surface": "国家", + "readging": "こっか", + "pos": "名詞", + "pn": -0.782736 + }, + { + "surface": "温度", + "readging": "おんど", + "pos": "名詞", + "pn": -0.78283 + }, + { + "surface": "ジェラシー", + "readging": "ジェラシー", + "pos": "名詞", + "pn": -0.782852 + }, + { + "surface": "家畜", + "readging": "かちく", + "pos": "名詞", + "pn": -0.782884 + }, + { + "surface": "昼食", + "readging": "ひるげ", + "pos": "名詞", + "pn": -0.782963 + }, + { + "surface": "損", + "readging": "そん", + "pos": "名詞", + "pn": -0.783396 + }, + { + "surface": "白", + "readging": "しら", + "pos": "名詞", + "pn": -0.783402 + }, + { + "surface": "何故", + "readging": "なぜ", + "pos": "副詞", + "pn": -0.783583 + }, + { + "surface": "取留め", + "readging": "とりとめ", + "pos": "名詞", + "pn": -0.783589 + }, + { + "surface": "地上", + "readging": "ちじょう", + "pos": "名詞", + "pn": -0.783678 + }, + { + "surface": "描出", + "readging": "びょうしゅつ", + "pos": "名詞", + "pn": -0.783751 + }, + { + "surface": "描画", + "readging": "びょうが", + "pos": "名詞", + "pn": -0.783751 + }, + { + "surface": "取れる", + "readging": "とれる", + "pos": "動詞", + "pn": -0.783759 + }, + { + "surface": "独語", + "readging": "どくご", + "pos": "名詞", + "pn": -0.78377 + }, + { + "surface": "交交", + "readging": "こもごも", + "pos": "副詞", + "pn": -0.783939 + }, + { + "surface": "睡魔", + "readging": "すいま", + "pos": "名詞", + "pn": -0.784403 + }, + { + "surface": "昏冥", + "readging": "こんめい", + "pos": "名詞", + "pn": -0.784449 + }, + { + "surface": "紅", + "readging": "もみ", + "pos": "名詞", + "pn": -0.784573 + }, + { + "surface": "転がる", + "readging": "ころがる", + "pos": "動詞", + "pn": -0.784577 + }, + { + "surface": "根太", + "readging": "ねぶと", + "pos": "名詞", + "pn": -0.784619 + }, + { + "surface": "専恣", + "readging": "せんし", + "pos": "名詞", + "pn": -0.784628 + }, + { + "surface": "散らす", + "readging": "ちらす", + "pos": "動詞", + "pn": -0.784629 + }, + { + "surface": "囚", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.784805 + }, + { + "surface": "爛れ", + "readging": "ただれ", + "pos": "名詞", + "pn": -0.784963 + }, + { + "surface": "鳴き頻る", + "readging": "なきしきる", + "pos": "動詞", + "pn": -0.785096 + }, + { + "surface": "百", + "readging": "ひゃく", + "pos": "名詞", + "pn": -0.785096 + }, + { + "surface": "錨", + "readging": "いかり", + "pos": "名詞", + "pn": -0.785188 + }, + { + "surface": "浴槽", + "readging": "よくそう", + "pos": "名詞", + "pn": -0.785204 + }, + { + "surface": "侮辱", + "readging": "ぶじょく", + "pos": "名詞", + "pn": -0.785235 + }, + { + "surface": "股立", + "readging": "ももだち", + "pos": "名詞", + "pn": -0.785287 + }, + { + "surface": "没", + "readging": "ぼつ", + "pos": "名詞", + "pn": -0.785299 + }, + { + "surface": "棺", + "readging": "かん", + "pos": "名詞", + "pn": -0.785321 + }, + { + "surface": "葦原", + "readging": "あしはら", + "pos": "名詞", + "pn": -0.78539 + }, + { + "surface": "父", + "readging": "ふ", + "pos": "名詞", + "pn": -0.785539 + }, + { + "surface": "蹲る", + "readging": "うずくまる", + "pos": "動詞", + "pn": -0.785574 + }, + { + "surface": "ズボン", + "readging": "ズボン", + "pos": "名詞", + "pn": -0.785619 + }, + { + "surface": "搬入", + "readging": "はんにゅう", + "pos": "名詞", + "pn": -0.785625 + }, + { + "surface": "見応え", + "readging": "みごたえ", + "pos": "名詞", + "pn": -0.78573 + }, + { + "surface": "垂下", + "readging": "すいか", + "pos": "名詞", + "pn": -0.785745 + }, + { + "surface": "栽培", + "readging": "さいばい", + "pos": "名詞", + "pn": -0.785793 + }, + { + "surface": "金額", + "readging": "きんがく", + "pos": "名詞", + "pn": -0.785845 + }, + { + "surface": "切捲る", + "readging": "きりまくる", + "pos": "動詞", + "pn": -0.785932 + }, + { + "surface": "捕虜", + "readging": "ほりょ", + "pos": "名詞", + "pn": -0.785938 + }, + { + "surface": "振る", + "readging": "ふる", + "pos": "動詞", + "pn": -0.78597 + }, + { + "surface": "もく", + "readging": "もく", + "pos": "動詞", + "pn": -0.785976 + }, + { + "surface": "世界", + "readging": "せかい", + "pos": "名詞", + "pn": -0.785992 + }, + { + "surface": "烏勘左衛門", + "readging": "からすかんざえもん", + "pos": "名詞", + "pn": -0.786069 + }, + { + "surface": "央", + "readging": "おう", + "pos": "名詞", + "pn": -0.78607 + }, + { + "surface": "無くす", + "readging": "なくす", + "pos": "動詞", + "pn": -0.786259 + }, + { + "surface": "幹", + "readging": "みき", + "pos": "名詞", + "pn": -0.786298 + }, + { + "surface": "ひねくる", + "readging": "ひねくる", + "pos": "動詞", + "pn": -0.786373 + }, + { + "surface": "弔", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.786383 + }, + { + "surface": "四角", + "readging": "よつかど", + "pos": "名詞", + "pn": -0.786386 + }, + { + "surface": "内臓", + "readging": "ないぞう", + "pos": "名詞", + "pn": -0.786387 + }, + { + "surface": "取抑える", + "readging": "とりおさえる", + "pos": "動詞", + "pn": -0.786394 + }, + { + "surface": "自余", + "readging": "じよ", + "pos": "名詞", + "pn": -0.786433 + }, + { + "surface": "惑わす", + "readging": "まどわす", + "pos": "動詞", + "pn": -0.786475 + }, + { + "surface": "失点", + "readging": "しってん", + "pos": "名詞", + "pn": -0.786525 + }, + { + "surface": "回転", + "readging": "かいてん", + "pos": "名詞", + "pn": -0.786645 + }, + { + "surface": "よそえる", + "readging": "よそえる", + "pos": "動詞", + "pn": -0.786664 + }, + { + "surface": "発生", + "readging": "はっせい", + "pos": "名詞", + "pn": -0.786703 + }, + { + "surface": "散人", + "readging": "さんじん", + "pos": "名詞", + "pn": -0.786733 + }, + { + "surface": "劫掠", + "readging": "ごうりゃく", + "pos": "名詞", + "pn": -0.786899 + }, + { + "surface": "山野", + "readging": "さんや", + "pos": "名詞", + "pn": -0.786946 + }, + { + "surface": "物貰い", + "readging": "ものもらい", + "pos": "名詞", + "pn": -0.78708 + }, + { + "surface": "懇懇と", + "readging": "こんこんと", + "pos": "副詞", + "pn": -0.787121 + }, + { + "surface": "暴れん坊", + "readging": "あばれんぼう", + "pos": "名詞", + "pn": -0.787471 + }, + { + "surface": "一打ち", + "readging": "ひとうち", + "pos": "名詞", + "pn": -0.787681 + }, + { + "surface": "小人", + "readging": "しょうにん", + "pos": "名詞", + "pn": -0.787783 + }, + { + "surface": "植える", + "readging": "うえる", + "pos": "動詞", + "pn": -0.788084 + }, + { + "surface": "草鞋", + "readging": "わらじ", + "pos": "名詞", + "pn": -0.788123 + }, + { + "surface": "坊や", + "readging": "ぼうや", + "pos": "名詞", + "pn": -0.788124 + }, + { + "surface": "怠慢", + "readging": "たいまん", + "pos": "名詞", + "pn": -0.788371 + }, + { + "surface": "有刺", + "readging": "ゆうし", + "pos": "名詞", + "pn": -0.78841 + }, + { + "surface": "淋病", + "readging": "りんびょう", + "pos": "名詞", + "pn": -0.788528 + }, + { + "surface": "和服", + "readging": "わふく", + "pos": "名詞", + "pn": -0.78878 + }, + { + "surface": "用", + "readging": "よう", + "pos": "名詞", + "pn": -0.788843 + }, + { + "surface": "泥", + "readging": "ひじ", + "pos": "名詞", + "pn": -0.788873 + }, + { + "surface": "感じる", + "readging": "かんじる", + "pos": "動詞", + "pn": -0.788901 + }, + { + "surface": "窪まる", + "readging": "くぼまる", + "pos": "動詞", + "pn": -0.788936 + }, + { + "surface": "沿う", + "readging": "そう", + "pos": "動詞", + "pn": -0.789147 + }, + { + "surface": "額", + "readging": "ひたい", + "pos": "名詞", + "pn": -0.789325 + }, + { + "surface": "踵", + "readging": "くびす", + "pos": "名詞", + "pn": -0.789491 + }, + { + "surface": "真赤", + "readging": "まっか", + "pos": "名詞", + "pn": -0.789532 + }, + { + "surface": "綴込み", + "readging": "とじこみ", + "pos": "名詞", + "pn": -0.789652 + }, + { + "surface": "ボール", + "readging": "ボールペン", + "pos": "名詞", + "pn": -0.789881 + }, + { + "surface": "失する", + "readging": "しっする", + "pos": "動詞", + "pn": -0.789891 + }, + { + "surface": "地中", + "readging": "ちちゅう", + "pos": "名詞", + "pn": -0.789945 + }, + { + "surface": "声つき", + "readging": "こわつき", + "pos": "名詞", + "pn": -0.790086 + }, + { + "surface": "ごまかす", + "readging": "ごまかす", + "pos": "動詞", + "pn": -0.79012 + }, + { + "surface": "対座", + "readging": "たいざ", + "pos": "名詞", + "pn": -0.790122 + }, + { + "surface": "呟く", + "readging": "つぶやく", + "pos": "動詞", + "pn": -0.790228 + }, + { + "surface": "まき", + "readging": "まき", + "pos": "名詞", + "pn": -0.790333 + }, + { + "surface": "稲", + "readging": "とう", + "pos": "名詞", + "pn": -0.790384 + }, + { + "surface": "咳く", + "readging": "せく", + "pos": "動詞", + "pn": -0.790394 + }, + { + "surface": "眠り", + "readging": "ねむり", + "pos": "名詞", + "pn": -0.790421 + }, + { + "surface": "煙管", + "readging": "キセル", + "pos": "名詞", + "pn": -0.790488 + }, + { + "surface": "粉黛", + "readging": "ふんたい", + "pos": "名詞", + "pn": -0.790491 + }, + { + "surface": "悶着", + "readging": "もんちゃく", + "pos": "名詞", + "pn": -0.790645 + }, + { + "surface": "粘っこい", + "readging": "ねばっこい", + "pos": "形容詞", + "pn": -0.790803 + }, + { + "surface": "水浅葱", + "readging": "みずあさぎ", + "pos": "名詞", + "pn": -0.790851 + }, + { + "surface": "ダル", + "readging": "ダル", + "pos": "名詞", + "pn": -0.790904 + }, + { + "surface": "仕切る", + "readging": "しきる", + "pos": "動詞", + "pn": -0.790917 + }, + { + "surface": "人体", + "readging": "にんてい", + "pos": "名詞", + "pn": -0.791063 + }, + { + "surface": "抉る", + "readging": "えぐる", + "pos": "動詞", + "pn": -0.791089 + }, + { + "surface": "深淵", + "readging": "しんえん", + "pos": "名詞", + "pn": -0.791146 + }, + { + "surface": "振撒く", + "readging": "ふりまく", + "pos": "動詞", + "pn": -0.791231 + }, + { + "surface": "殴り飛ばす", + "readging": "なぐりとばす", + "pos": "動詞", + "pn": -0.791239 + }, + { + "surface": "慎む", + "readging": "つつしむ", + "pos": "動詞", + "pn": -0.791243 + }, + { + "surface": "既記", + "readging": "きき", + "pos": "名詞", + "pn": -0.791313 + }, + { + "surface": "窪める", + "readging": "くぼめる", + "pos": "動詞", + "pn": -0.791425 + }, + { + "surface": "柔肌", + "readging": "やわはだ", + "pos": "名詞", + "pn": -0.79148 + }, + { + "surface": "細工", + "readging": "さいく", + "pos": "名詞", + "pn": -0.791506 + }, + { + "surface": "賃借", + "readging": "ちんしゃく", + "pos": "名詞", + "pn": -0.791679 + }, + { + "surface": "餌", + "readging": "えさ", + "pos": "名詞", + "pn": -0.791732 + }, + { + "surface": "野蛮", + "readging": "やばん", + "pos": "名詞", + "pn": -0.791745 + }, + { + "surface": "罌粟", + "readging": "けし", + "pos": "名詞", + "pn": -0.791753 + }, + { + "surface": "終決", + "readging": "しゅうけつ", + "pos": "名詞", + "pn": -0.791755 + }, + { + "surface": "唇", + "readging": "くちびる", + "pos": "名詞", + "pn": -0.791882 + }, + { + "surface": "突角", + "readging": "とっかく", + "pos": "名詞", + "pn": -0.791976 + }, + { + "surface": "苛つく", + "readging": "いらつく", + "pos": "動詞", + "pn": -0.792032 + }, + { + "surface": "弄る", + "readging": "いじる", + "pos": "動詞", + "pn": -0.792306 + }, + { + "surface": "汚泥", + "readging": "おでい", + "pos": "名詞", + "pn": -0.79231 + }, + { + "surface": "泥塗れ", + "readging": "どろまみれ", + "pos": "名詞", + "pn": -0.79231 + }, + { + "surface": "束ねる", + "readging": "つかねる", + "pos": "動詞", + "pn": -0.792312 + }, + { + "surface": "過ぎる", + "readging": "すぎる", + "pos": "動詞", + "pn": -0.79235 + }, + { + "surface": "巡", + "readging": "じゅん", + "pos": "名詞", + "pn": -0.792373 + }, + { + "surface": "傷者", + "readging": "しょうしゃ", + "pos": "名詞", + "pn": -0.792374 + }, + { + "surface": "しくじる", + "readging": "しくじる", + "pos": "動詞", + "pn": -0.792443 + }, + { + "surface": "買戻す", + "readging": "かいもどす", + "pos": "動詞", + "pn": -0.792461 + }, + { + "surface": "申遅れる", + "readging": "もうしおくれる", + "pos": "動詞", + "pn": -0.792461 + }, + { + "surface": "元素", + "readging": "げんそ", + "pos": "名詞", + "pn": -0.792597 + }, + { + "surface": "坊主枕", + "readging": "ぼうずまくら", + "pos": "名詞", + "pn": -0.792693 + }, + { + "surface": "軍隊", + "readging": "ぐんたい", + "pos": "名詞", + "pn": -0.792709 + }, + { + "surface": "失", + "readging": "しつ", + "pos": "名詞", + "pn": -0.792877 + }, + { + "surface": "挿図", + "readging": "そうず", + "pos": "名詞", + "pn": -0.792924 + }, + { + "surface": "覇王樹", + "readging": "はおうじゅ", + "pos": "名詞", + "pn": -0.793005 + }, + { + "surface": "下部", + "readging": "かぶ", + "pos": "名詞", + "pn": -0.79303 + }, + { + "surface": "差押える", + "readging": "さしおさえる", + "pos": "動詞", + "pn": -0.793042 + }, + { + "surface": "歌舞伎", + "readging": "かぶき", + "pos": "名詞", + "pn": -0.793207 + }, + { + "surface": "堅氷", + "readging": "けんぴょう", + "pos": "名詞", + "pn": -0.793226 + }, + { + "surface": "個人", + "readging": "こじん", + "pos": "名詞", + "pn": -0.79328 + }, + { + "surface": "尺寸", + "readging": "せきすん", + "pos": "名詞", + "pn": -0.793289 + }, + { + "surface": "犯人", + "readging": "はんにん", + "pos": "名詞", + "pn": -0.793293 + }, + { + "surface": "裂ける", + "readging": "さける", + "pos": "動詞", + "pn": -0.793328 + }, + { + "surface": "責付ける", + "readging": "せめつける", + "pos": "動詞", + "pn": -0.793407 + }, + { + "surface": "やわか", + "readging": "やわか", + "pos": "副詞", + "pn": -0.793488 + }, + { + "surface": "小膝", + "readging": "こひざ", + "pos": "名詞", + "pn": -0.793614 + }, + { + "surface": "饂飩", + "readging": "うどん", + "pos": "名詞", + "pn": -0.793669 + }, + { + "surface": "無茶", + "readging": "むちゃ", + "pos": "名詞", + "pn": -0.793808 + }, + { + "surface": "脛", + "readging": "はぎ", + "pos": "名詞", + "pn": -0.79387 + }, + { + "surface": "豚", + "readging": "ぶた", + "pos": "名詞", + "pn": -0.793959 + }, + { + "surface": "お引摺り", + "readging": "おひきずり", + "pos": "名詞", + "pn": -0.794021 + }, + { + "surface": "製造", + "readging": "せいぞう", + "pos": "名詞", + "pn": -0.794137 + }, + { + "surface": "捩くれる", + "readging": "ねじくれる", + "pos": "動詞", + "pn": -0.794241 + }, + { + "surface": "飛ばす", + "readging": "とばす", + "pos": "動詞", + "pn": -0.794242 + }, + { + "surface": "あたける", + "readging": "あたける", + "pos": "動詞", + "pn": -0.79451 + }, + { + "surface": "神社", + "readging": "じんじゃ", + "pos": "名詞", + "pn": -0.794787 + }, + { + "surface": "敬弔", + "readging": "けいちょう", + "pos": "名詞", + "pn": -0.794828 + }, + { + "surface": "当", + "readging": "あて", + "pos": "名詞", + "pn": -0.794893 + }, + { + "surface": "大便", + "readging": "だいべん", + "pos": "名詞", + "pn": -0.794932 + }, + { + "surface": "空中", + "readging": "くうちゅう", + "pos": "名詞", + "pn": -0.794935 + }, + { + "surface": "いたぶる", + "readging": "いたぶる", + "pos": "動詞", + "pn": -0.79494 + }, + { + "surface": "欲しい", + "readging": "ほしい", + "pos": "形容詞", + "pn": -0.795071 + }, + { + "surface": "透き見", + "readging": "すきみ", + "pos": "名詞", + "pn": -0.795228 + }, + { + "surface": "鳴謝", + "readging": "めいしゃ", + "pos": "名詞", + "pn": -0.795234 + }, + { + "surface": "飛火", + "readging": "とびひ", + "pos": "名詞", + "pn": -0.795327 + }, + { + "surface": "引留める", + "readging": "ひきとめる", + "pos": "動詞", + "pn": -0.795362 + }, + { + "surface": "留意", + "readging": "りゅうい", + "pos": "名詞", + "pn": -0.795375 + }, + { + "surface": "焼ける", + "readging": "やける", + "pos": "動詞", + "pn": -0.795403 + }, + { + "surface": "初産", + "readging": "しょさん", + "pos": "名詞", + "pn": -0.795548 + }, + { + "surface": "反逆", + "readging": "はんぎゃく", + "pos": "名詞", + "pn": -0.795564 + }, + { + "surface": "以前", + "readging": "いぜん", + "pos": "名詞", + "pn": -0.795587 + }, + { + "surface": "陶枕", + "readging": "とうちん", + "pos": "名詞", + "pn": -0.795716 + }, + { + "surface": "水加減", + "readging": "みずかげん", + "pos": "名詞", + "pn": -0.795755 + }, + { + "surface": "紫", + "readging": "むらさき", + "pos": "名詞", + "pn": -0.795756 + }, + { + "surface": "撃攘", + "readging": "げきじょう", + "pos": "名詞", + "pn": -0.796258 + }, + { + "surface": "田畑", + "readging": "でんぱた", + "pos": "名詞", + "pn": -0.796291 + }, + { + "surface": "疎意", + "readging": "そい", + "pos": "名詞", + "pn": -0.79639 + }, + { + "surface": "乾反る", + "readging": "ひぞる", + "pos": "動詞", + "pn": -0.796432 + }, + { + "surface": "葦辺", + "readging": "あしべ", + "pos": "名詞", + "pn": -0.796539 + }, + { + "surface": "集団", + "readging": "しゅうだん", + "pos": "名詞", + "pn": -0.796556 + }, + { + "surface": "規則", + "readging": "きそく", + "pos": "名詞", + "pn": -0.796659 + }, + { + "surface": "座席", + "readging": "ざせき", + "pos": "名詞", + "pn": -0.797 + }, + { + "surface": "螺旋", + "readging": "らせん", + "pos": "名詞", + "pn": -0.79706 + }, + { + "surface": "小麦粉", + "readging": "こむぎこ", + "pos": "名詞", + "pn": -0.797152 + }, + { + "surface": "大愚", + "readging": "たいぐ", + "pos": "名詞", + "pn": -0.797229 + }, + { + "surface": "小当り", + "readging": "こあたり", + "pos": "名詞", + "pn": -0.797281 + }, + { + "surface": "爆発", + "readging": "ばくはつ", + "pos": "名詞", + "pn": -0.797283 + }, + { + "surface": "舐めずる", + "readging": "なめずる", + "pos": "動詞", + "pn": -0.797406 + }, + { + "surface": "追掛ける", + "readging": "おいかける", + "pos": "動詞", + "pn": -0.797728 + }, + { + "surface": "減殺", + "readging": "げんさい", + "pos": "名詞", + "pn": -0.797738 + }, + { + "surface": "証拠", + "readging": "しょうこ", + "pos": "名詞", + "pn": -0.797752 + }, + { + "surface": "痴態", + "readging": "ちたい", + "pos": "名詞", + "pn": -0.797755 + }, + { + "surface": "荒廃", + "readging": "こうはい", + "pos": "名詞", + "pn": -0.797765 + }, + { + "surface": "三口", + "readging": "みつくち", + "pos": "名詞", + "pn": -0.797878 + }, + { + "surface": "寿司", + "readging": "すし", + "pos": "名詞", + "pn": -0.797956 + }, + { + "surface": "旅", + "readging": "りょ", + "pos": "名詞", + "pn": -0.798233 + }, + { + "surface": "囀る", + "readging": "さえずる", + "pos": "動詞", + "pn": -0.798278 + }, + { + "surface": "装飾", + "readging": "そうしょく", + "pos": "名詞", + "pn": -0.798289 + }, + { + "surface": "ぴょんぴょん", + "readging": "ぴょんぴょん", + "pos": "副詞", + "pn": -0.798402 + }, + { + "surface": "鼓する", + "readging": "こする", + "pos": "動詞", + "pn": -0.798447 + }, + { + "surface": "息差し", + "readging": "いきざし", + "pos": "名詞", + "pn": -0.798465 + }, + { + "surface": "修造", + "readging": "しゅうぞう", + "pos": "名詞", + "pn": -0.798523 + }, + { + "surface": "鼻摘み", + "readging": "はなつまみ", + "pos": "名詞", + "pn": -0.798567 + }, + { + "surface": "穀物", + "readging": "こくもつ", + "pos": "名詞", + "pn": -0.79863 + }, + { + "surface": "燻蒸", + "readging": "くんじょう", + "pos": "名詞", + "pn": -0.798645 + }, + { + "surface": "化合", + "readging": "かごう", + "pos": "名詞", + "pn": -0.798733 + }, + { + "surface": "力士", + "readging": "りきし", + "pos": "名詞", + "pn": -0.79881 + }, + { + "surface": "貝", + "readging": "ばい", + "pos": "名詞", + "pn": -0.798928 + }, + { + "surface": "付", + "readging": "ふ", + "pos": "名詞", + "pn": -0.799041 + }, + { + "surface": "小便", + "readging": "しょうべん", + "pos": "名詞", + "pn": -0.799255 + }, + { + "surface": "稜角", + "readging": "りょうかく", + "pos": "名詞", + "pn": -0.79936 + }, + { + "surface": "厭忌", + "readging": "えんき", + "pos": "名詞", + "pn": -0.799555 + }, + { + "surface": "乳", + "readging": "にゅう", + "pos": "名詞", + "pn": -0.799826 + }, + { + "surface": "発音", + "readging": "はつおん", + "pos": "名詞", + "pn": -0.799894 + }, + { + "surface": "割れ目", + "readging": "われめ", + "pos": "名詞", + "pn": -0.799971 + }, + { + "surface": "狐", + "readging": "きつね", + "pos": "名詞", + "pn": -0.800445 + }, + { + "surface": "大砲", + "readging": "たいほう", + "pos": "名詞", + "pn": -0.80053 + }, + { + "surface": "鬚髯", + "readging": "しゅぜん", + "pos": "名詞", + "pn": -0.800573 + }, + { + "surface": "間", + "readging": "ま", + "pos": "名詞", + "pn": -0.800953 + }, + { + "surface": "継嗣", + "readging": "けいし", + "pos": "名詞", + "pn": -0.800975 + }, + { + "surface": "継接ぎ", + "readging": "つぎはぎ", + "pos": "名詞", + "pn": -0.801016 + }, + { + "surface": "容貌", + "readging": "ようぼう", + "pos": "名詞", + "pn": -0.801038 + }, + { + "surface": "野生", + "readging": "やせい", + "pos": "名詞", + "pn": -0.80104 + }, + { + "surface": "懈怠", + "readging": "けたい", + "pos": "名詞", + "pn": -0.801176 + }, + { + "surface": "丸まる", + "readging": "まるまる", + "pos": "動詞", + "pn": -0.801304 + }, + { + "surface": "根拠", + "readging": "こんきょ", + "pos": "名詞", + "pn": -0.801352 + }, + { + "surface": "はつる", + "readging": "はつる", + "pos": "動詞", + "pn": -0.801454 + }, + { + "surface": "僅差", + "readging": "きんさ", + "pos": "名詞", + "pn": -0.801476 + }, + { + "surface": "糜爛", + "readging": "びらん", + "pos": "名詞", + "pn": -0.801587 + }, + { + "surface": "染める", + "readging": "そめる", + "pos": "動詞", + "pn": -0.801719 + }, + { + "surface": "囲む", + "readging": "かこむ", + "pos": "動詞", + "pn": -0.801918 + }, + { + "surface": "混濁", + "readging": "こんだく", + "pos": "名詞", + "pn": -0.802026 + }, + { + "surface": "負担", + "readging": "ふたん", + "pos": "名詞", + "pn": -0.802087 + }, + { + "surface": "形式", + "readging": "けいしき", + "pos": "名詞", + "pn": -0.80214 + }, + { + "surface": "残", + "readging": "ざん", + "pos": "名詞", + "pn": -0.802198 + }, + { + "surface": "弾丸", + "readging": "だんがん", + "pos": "名詞", + "pn": -0.8022 + }, + { + "surface": "細", + "readging": "さい", + "pos": "名詞", + "pn": -0.802254 + }, + { + "surface": "脂肪", + "readging": "しぼう", + "pos": "名詞", + "pn": -0.802311 + }, + { + "surface": "仲間", + "readging": "なかま", + "pos": "名詞", + "pn": -0.802487 + }, + { + "surface": "眩惑", + "readging": "げんわく", + "pos": "名詞", + "pn": -0.802778 + }, + { + "surface": "九", + "readging": "ここの", + "pos": "名詞", + "pn": -0.802826 + }, + { + "surface": "微", + "readging": "び", + "pos": "名詞", + "pn": -0.80283 + }, + { + "surface": "崩す", + "readging": "くずす", + "pos": "動詞", + "pn": -0.80288 + }, + { + "surface": "取引", + "readging": "とりひき", + "pos": "名詞", + "pn": -0.802924 + }, + { + "surface": "度", + "readging": "ど", + "pos": "名詞", + "pn": -0.802988 + }, + { + "surface": "出っ尻", + "readging": "でっちり", + "pos": "名詞", + "pn": -0.803082 + }, + { + "surface": "舞台", + "readging": "ぶたい", + "pos": "名詞", + "pn": -0.803359 + }, + { + "surface": "仕る", + "readging": "つかまつる", + "pos": "動詞", + "pn": -0.803442 + }, + { + "surface": "高高指", + "readging": "たかたかゆび", + "pos": "名詞", + "pn": -0.803476 + }, + { + "surface": "べたつく", + "readging": "べたつく", + "pos": "動詞", + "pn": -0.803525 + }, + { + "surface": "小脇", + "readging": "こわき", + "pos": "名詞", + "pn": -0.803571 + }, + { + "surface": "舞う", + "readging": "まう", + "pos": "動詞", + "pn": -0.803595 + }, + { + "surface": "都鄙", + "readging": "とひ", + "pos": "名詞", + "pn": -0.803705 + }, + { + "surface": "進入", + "readging": "しんにゅう", + "pos": "名詞", + "pn": -0.803793 + }, + { + "surface": "迷う", + "readging": "まよう", + "pos": "動詞", + "pn": -0.80381 + }, + { + "surface": "裂く", + "readging": "さく", + "pos": "動詞", + "pn": -0.803813 + }, + { + "surface": "特定", + "readging": "とくてい", + "pos": "名詞", + "pn": -0.803837 + }, + { + "surface": "ミステーク", + "readging": "ミステーク", + "pos": "名詞", + "pn": -0.803937 + }, + { + "surface": "幾つ", + "readging": "いくつ", + "pos": "名詞", + "pn": -0.804155 + }, + { + "surface": "溝", + "readging": "みぞ", + "pos": "名詞", + "pn": -0.804196 + }, + { + "surface": "裁着け", + "readging": "たっつけ", + "pos": "名詞", + "pn": -0.804261 + }, + { + "surface": "鎧", + "readging": "よろい", + "pos": "名詞", + "pn": -0.804262 + }, + { + "surface": "壊れ物", + "readging": "こわれもの", + "pos": "名詞", + "pn": -0.804324 + }, + { + "surface": "空巣", + "readging": "あきす", + "pos": "名詞", + "pn": -0.804524 + }, + { + "surface": "帽子", + "readging": "ぼうし", + "pos": "名詞", + "pn": -0.804539 + }, + { + "surface": "沸", + "readging": "ふつ", + "pos": "名詞", + "pn": -0.804608 + }, + { + "surface": "燻す", + "readging": "いぶす", + "pos": "動詞", + "pn": -0.804883 + }, + { + "surface": "鍋鉉", + "readging": "なべづる", + "pos": "名詞", + "pn": -0.805057 + }, + { + "surface": "ぞっと", + "readging": "ぞっと", + "pos": "副詞", + "pn": -0.805079 + }, + { + "surface": "埋める", + "readging": "うめる", + "pos": "動詞", + "pn": -0.805172 + }, + { + "surface": "つるりと", + "readging": "つるりと", + "pos": "副詞", + "pn": -0.805186 + }, + { + "surface": "枕上", + "readging": "まくらがみ", + "pos": "名詞", + "pn": -0.805237 + }, + { + "surface": "南", + "readging": "みんなみ", + "pos": "名詞", + "pn": -0.805248 + }, + { + "surface": "新聞", + "readging": "しんぶん", + "pos": "名詞", + "pn": -0.805262 + }, + { + "surface": "其の節", + "readging": "そのせつ", + "pos": "名詞", + "pn": -0.805272 + }, + { + "surface": "間引", + "readging": "まびき", + "pos": "名詞", + "pn": -0.80531 + }, + { + "surface": "仄めかす", + "readging": "ほのめかす", + "pos": "動詞", + "pn": -0.805318 + }, + { + "surface": "猜忌", + "readging": "さいき", + "pos": "名詞", + "pn": -0.80558 + }, + { + "surface": "過怠", + "readging": "かたい", + "pos": "名詞", + "pn": -0.80569 + }, + { + "surface": "垣根越し", + "readging": "かきねごし", + "pos": "名詞", + "pn": -0.805708 + }, + { + "surface": "綴じ込む", + "readging": "とじこむ", + "pos": "動詞", + "pn": -0.805866 + }, + { + "surface": "後顧", + "readging": "こうこ", + "pos": "名詞", + "pn": -0.805987 + }, + { + "surface": "周壁", + "readging": "しゅうへき", + "pos": "名詞", + "pn": -0.806043 + }, + { + "surface": "縦", + "readging": "たて", + "pos": "名詞", + "pn": -0.806079 + }, + { + "surface": "小閑", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.806176 + }, + { + "surface": "太陽", + "readging": "たいよう", + "pos": "名詞", + "pn": -0.806183 + }, + { + "surface": "過す", + "readging": "すごす", + "pos": "動詞", + "pn": -0.806194 + }, + { + "surface": "滴下", + "readging": "てきか", + "pos": "名詞", + "pn": -0.806206 + }, + { + "surface": "残り", + "readging": "のこり", + "pos": "名詞", + "pn": -0.806292 + }, + { + "surface": "近事", + "readging": "きんじ", + "pos": "名詞", + "pn": -0.806426 + }, + { + "surface": "拾屋", + "readging": "ひろいや", + "pos": "名詞", + "pn": -0.806495 + }, + { + "surface": "備える", + "readging": "そなえる", + "pos": "動詞", + "pn": -0.806518 + }, + { + "surface": "一介", + "readging": "いっかい", + "pos": "名詞", + "pn": -0.806717 + }, + { + "surface": "そっと", + "readging": "そっと", + "pos": "副詞", + "pn": -0.806743 + }, + { + "surface": "拒止", + "readging": "きょし", + "pos": "名詞", + "pn": -0.806859 + }, + { + "surface": "伴う", + "readging": "ともなう", + "pos": "動詞", + "pn": -0.80686 + }, + { + "surface": "弄う", + "readging": "いらう", + "pos": "動詞", + "pn": -0.806964 + }, + { + "surface": "臆病", + "readging": "おくびょう", + "pos": "名詞", + "pn": -0.807031 + }, + { + "surface": "唐臼", + "readging": "とううす", + "pos": "名詞", + "pn": -0.807145 + }, + { + "surface": "相承", + "readging": "そうしょう", + "pos": "名詞", + "pn": -0.807199 + }, + { + "surface": "襲用", + "readging": "しゅうよう", + "pos": "名詞", + "pn": -0.807199 + }, + { + "surface": "驕慢", + "readging": "きょうまん", + "pos": "名詞", + "pn": -0.807276 + }, + { + "surface": "螺子", + "readging": "ねじ", + "pos": "名詞", + "pn": -0.807506 + }, + { + "surface": "小太り", + "readging": "こぶとり", + "pos": "名詞", + "pn": -0.807509 + }, + { + "surface": "窄まる", + "readging": "つぼまる", + "pos": "動詞", + "pn": -0.807566 + }, + { + "surface": "採油", + "readging": "さいゆ", + "pos": "名詞", + "pn": -0.807572 + }, + { + "surface": "長途", + "readging": "ちょうと", + "pos": "名詞", + "pn": -0.807637 + }, + { + "surface": "乖離", + "readging": "かいり", + "pos": "名詞", + "pn": -0.807639 + }, + { + "surface": "起す", + "readging": "おこす", + "pos": "動詞", + "pn": -0.807717 + }, + { + "surface": "苛立てる", + "readging": "いらだてる", + "pos": "動詞", + "pn": -0.807763 + }, + { + "surface": "陥る", + "readging": "おちいる", + "pos": "動詞", + "pn": -0.807831 + }, + { + "surface": "撓革", + "readging": "いためがわ", + "pos": "名詞", + "pn": -0.807979 + }, + { + "surface": "纏繞", + "readging": "てんじょう", + "pos": "名詞", + "pn": -0.808075 + }, + { + "surface": "苦笑", + "readging": "くしょう", + "pos": "名詞", + "pn": -0.808133 + }, + { + "surface": "世の中", + "readging": "よのなか", + "pos": "名詞", + "pn": -0.80819 + }, + { + "surface": "二重瞼", + "readging": "ふたえ", + "pos": "名詞", + "pn": -0.808199 + }, + { + "surface": "唾する", + "readging": "つばする", + "pos": "動詞", + "pn": -0.808256 + }, + { + "surface": "さ迷う", + "readging": "さまよう", + "pos": "動詞", + "pn": -0.808267 + }, + { + "surface": "申兼ねる", + "readging": "もうしかねる", + "pos": "動詞", + "pn": -0.808282 + }, + { + "surface": "地域", + "readging": "ちいき", + "pos": "名詞", + "pn": -0.808309 + }, + { + "surface": "やたら", + "readging": "やたら", + "pos": "副詞", + "pn": -0.8084 + }, + { + "surface": "磨く", + "readging": "みがく", + "pos": "動詞", + "pn": -0.808555 + }, + { + "surface": "遅なわる", + "readging": "おそなわる", + "pos": "動詞", + "pn": -0.808647 + }, + { + "surface": "低減", + "readging": "ていげん", + "pos": "名詞", + "pn": -0.808702 + }, + { + "surface": "減損", + "readging": "げんそん", + "pos": "名詞", + "pn": -0.808702 + }, + { + "surface": "風引き", + "readging": "かぜひき", + "pos": "名詞", + "pn": -0.808751 + }, + { + "surface": "粳餅", + "readging": "うるもち", + "pos": "名詞", + "pn": -0.808776 + }, + { + "surface": "一丸", + "readging": "いちがん", + "pos": "名詞", + "pn": -0.80883 + }, + { + "surface": "燃付く", + "readging": "もえつく", + "pos": "動詞", + "pn": -0.808912 + }, + { + "surface": "一年生植物", + "readging": "いちねんせいしょくぶつ", + "pos": "名詞", + "pn": -0.809003 + }, + { + "surface": "お櫃", + "readging": "おひつ", + "pos": "名詞", + "pn": -0.809012 + }, + { + "surface": "稲", + "readging": "いね", + "pos": "名詞", + "pn": -0.809134 + }, + { + "surface": "代り映え", + "readging": "かわりばえ", + "pos": "名詞", + "pn": -0.809169 + }, + { + "surface": "跨る", + "readging": "またがる", + "pos": "動詞", + "pn": -0.809177 + }, + { + "surface": "退京", + "readging": "たいきょう", + "pos": "名詞", + "pn": -0.809187 + }, + { + "surface": "亜麻", + "readging": "あま", + "pos": "名詞", + "pn": -0.809331 + }, + { + "surface": "浸く", + "readging": "つく", + "pos": "動詞", + "pn": -0.809478 + }, + { + "surface": "吊籠", + "readging": "つりかご", + "pos": "名詞", + "pn": -0.809559 + }, + { + "surface": "駄弁", + "readging": "だべん", + "pos": "名詞", + "pn": -0.809573 + }, + { + "surface": "縮める", + "readging": "ちぢめる", + "pos": "動詞", + "pn": -0.809599 + }, + { + "surface": "悩み", + "readging": "なやみ", + "pos": "名詞", + "pn": -0.809738 + }, + { + "surface": "咳払い", + "readging": "せきばらい", + "pos": "名詞", + "pn": -0.809789 + }, + { + "surface": "羽箒", + "readging": "はぼうき", + "pos": "名詞", + "pn": -0.809832 + }, + { + "surface": "捕捉", + "readging": "ほそく", + "pos": "名詞", + "pn": -0.809848 + }, + { + "surface": "陳謝", + "readging": "ちんしゃ", + "pos": "名詞", + "pn": -0.80985 + }, + { + "surface": "薬用", + "readging": "やくよう", + "pos": "名詞", + "pn": -0.809872 + }, + { + "surface": "手交", + "readging": "しゅこう", + "pos": "名詞", + "pn": -0.810064 + }, + { + "surface": "発端", + "readging": "ほったん", + "pos": "名詞", + "pn": -0.810152 + }, + { + "surface": "取散らす", + "readging": "とりちらす", + "pos": "動詞", + "pn": -0.810221 + }, + { + "surface": "巣", + "readging": "そう", + "pos": "名詞", + "pn": -0.810283 + }, + { + "surface": "万象", + "readging": "ばんしょう", + "pos": "名詞", + "pn": -0.810339 + }, + { + "surface": "拱く", + "readging": "こまぬく", + "pos": "動詞", + "pn": -0.810375 + }, + { + "surface": "初頭", + "readging": "しょとう", + "pos": "名詞", + "pn": -0.810387 + }, + { + "surface": "劫初", + "readging": "ごうしょ", + "pos": "名詞", + "pn": -0.810387 + }, + { + "surface": "鉄砲", + "readging": "てっぽう", + "pos": "名詞", + "pn": -0.810649 + }, + { + "surface": "葛藤", + "readging": "つづらふじ", + "pos": "名詞", + "pn": -0.810665 + }, + { + "surface": "喋喋", + "readging": "ちょうちょう", + "pos": "名詞", + "pn": -0.810866 + }, + { + "surface": "俘囚", + "readging": "ふしゅう", + "pos": "名詞", + "pn": -0.810954 + }, + { + "surface": "後込み", + "readging": "しりごみ", + "pos": "名詞", + "pn": -0.810967 + }, + { + "surface": "一部分", + "readging": "いちぶぶん", + "pos": "名詞", + "pn": -0.810982 + }, + { + "surface": "撒布", + "readging": "さっぷ", + "pos": "名詞", + "pn": -0.811201 + }, + { + "surface": "佇む", + "readging": "たたずむ", + "pos": "動詞", + "pn": -0.81148 + }, + { + "surface": "続く", + "readging": "つづく", + "pos": "動詞", + "pn": -0.81159 + }, + { + "surface": "別れ", + "readging": "わかれ", + "pos": "名詞", + "pn": -0.811602 + }, + { + "surface": "特化", + "readging": "とっか", + "pos": "名詞", + "pn": -0.811732 + }, + { + "surface": "出鱈目", + "readging": "でたらめ", + "pos": "名詞", + "pn": -0.811806 + }, + { + "surface": "吐く", + "readging": "はく", + "pos": "動詞", + "pn": -0.811877 + }, + { + "surface": "薬品", + "readging": "やくひん", + "pos": "名詞", + "pn": -0.811988 + }, + { + "surface": "寝敷", + "readging": "ねじき", + "pos": "名詞", + "pn": -0.812004 + }, + { + "surface": "劈頭", + "readging": "へきとう", + "pos": "名詞", + "pn": -0.812066 + }, + { + "surface": "着膨れ", + "readging": "きぶくれ", + "pos": "名詞", + "pn": -0.812126 + }, + { + "surface": "酸", + "readging": "さん", + "pos": "名詞", + "pn": -0.812259 + }, + { + "surface": "橋梁", + "readging": "きょうりょう", + "pos": "名詞", + "pn": -0.812292 + }, + { + "surface": "商品", + "readging": "しょうひん", + "pos": "名詞", + "pn": -0.812312 + }, + { + "surface": "隠蔽", + "readging": "いんぺい", + "pos": "名詞", + "pn": -0.812458 + }, + { + "surface": "濁る", + "readging": "にごる", + "pos": "動詞", + "pn": -0.812521 + }, + { + "surface": "寺", + "readging": "てら", + "pos": "名詞", + "pn": -0.812539 + }, + { + "surface": "委する", + "readging": "いする", + "pos": "動詞", + "pn": -0.81289 + }, + { + "surface": "運動", + "readging": "うんどう", + "pos": "名詞", + "pn": -0.812923 + }, + { + "surface": "擂身", + "readging": "すりみ", + "pos": "名詞", + "pn": -0.813 + }, + { + "surface": "損失", + "readging": "そんしつ", + "pos": "名詞", + "pn": -0.813112 + }, + { + "surface": "頬", + "readging": "ほほ", + "pos": "名詞", + "pn": -0.813165 + }, + { + "surface": "鉄道", + "readging": "てつどう", + "pos": "名詞", + "pn": -0.813304 + }, + { + "surface": "葉擦れ", + "readging": "はずれ", + "pos": "名詞", + "pn": -0.813573 + }, + { + "surface": "出しゃばる", + "readging": "でしゃばる", + "pos": "動詞", + "pn": -0.813658 + }, + { + "surface": "衰亡", + "readging": "すいぼう", + "pos": "名詞", + "pn": -0.813675 + }, + { + "surface": "縮む", + "readging": "ちぢむ", + "pos": "動詞", + "pn": -0.813802 + }, + { + "surface": "血管", + "readging": "けっかん", + "pos": "名詞", + "pn": -0.813906 + }, + { + "surface": "材", + "readging": "ざい", + "pos": "名詞", + "pn": -0.813925 + }, + { + "surface": "股火", + "readging": "またび", + "pos": "名詞", + "pn": -0.814042 + }, + { + "surface": "粘つく", + "readging": "ねばつく", + "pos": "動詞", + "pn": -0.814093 + }, + { + "surface": "端", + "readging": "つま", + "pos": "名詞", + "pn": -0.814207 + }, + { + "surface": "膠状", + "readging": "こうじょう", + "pos": "名詞", + "pn": -0.814449 + }, + { + "surface": "鬢掻", + "readging": "びんかき", + "pos": "名詞", + "pn": -0.814549 + }, + { + "surface": "渡河", + "readging": "とか", + "pos": "名詞", + "pn": -0.814627 + }, + { + "surface": "一眠り", + "readging": "ひとねむり", + "pos": "名詞", + "pn": -0.814684 + }, + { + "surface": "飾る", + "readging": "かざる", + "pos": "動詞", + "pn": -0.814718 + }, + { + "surface": "卵殻", + "readging": "らんかく", + "pos": "名詞", + "pn": -0.814749 + }, + { + "surface": "顎", + "readging": "あご", + "pos": "名詞", + "pn": -0.814855 + }, + { + "surface": "最初", + "readging": "さいしょ", + "pos": "名詞", + "pn": -0.814894 + }, + { + "surface": "煙る", + "readging": "けむる", + "pos": "動詞", + "pn": -0.814968 + }, + { + "surface": "おどおど", + "readging": "おどおど", + "pos": "副詞", + "pn": -0.815091 + }, + { + "surface": "絡む", + "readging": "からむ", + "pos": "動詞", + "pn": -0.815166 + }, + { + "surface": "手挟む", + "readging": "たばさむ", + "pos": "動詞", + "pn": -0.815307 + }, + { + "surface": "濫費", + "readging": "らんぴ", + "pos": "名詞", + "pn": -0.815375 + }, + { + "surface": "鎖", + "readging": "さ", + "pos": "名詞", + "pn": -0.815502 + }, + { + "surface": "生起", + "readging": "せいき", + "pos": "名詞", + "pn": -0.8156 + }, + { + "surface": "高ぶる", + "readging": "たかぶる", + "pos": "動詞", + "pn": -0.815762 + }, + { + "surface": "変災", + "readging": "へんさい", + "pos": "名詞", + "pn": -0.815784 + }, + { + "surface": "擂鉢", + "readging": "すりばち", + "pos": "名詞", + "pn": -0.815892 + }, + { + "surface": "農作物", + "readging": "のうさくぶつ", + "pos": "名詞", + "pn": -0.81597 + }, + { + "surface": "見違える", + "readging": "みちがえる", + "pos": "動詞", + "pn": -0.816024 + }, + { + "surface": "見紛う", + "readging": "みまがう", + "pos": "動詞", + "pn": -0.816024 + }, + { + "surface": "分け", + "readging": "わけ", + "pos": "名詞", + "pn": -0.816141 + }, + { + "surface": "もやう", + "readging": "もやう", + "pos": "動詞", + "pn": -0.816313 + }, + { + "surface": "秋毫", + "readging": "しゅうごう", + "pos": "副詞", + "pn": -0.816435 + }, + { + "surface": "飛揚", + "readging": "ひよう", + "pos": "名詞", + "pn": -0.816466 + }, + { + "surface": "青", + "readging": "せい", + "pos": "名詞", + "pn": -0.816505 + }, + { + "surface": "たじろぐ", + "readging": "たじろぐ", + "pos": "動詞", + "pn": -0.816525 + }, + { + "surface": "退る", + "readging": "しさる", + "pos": "動詞", + "pn": -0.816617 + }, + { + "surface": "兼併", + "readging": "けんぺい", + "pos": "名詞", + "pn": -0.816633 + }, + { + "surface": "飛の魚", + "readging": "とびのうお", + "pos": "名詞", + "pn": -0.816638 + }, + { + "surface": "木材", + "readging": "もくざい", + "pos": "名詞", + "pn": -0.816713 + }, + { + "surface": "万障", + "readging": "ばんしょう", + "pos": "名詞", + "pn": -0.816748 + }, + { + "surface": "塞源", + "readging": "そくげん", + "pos": "名詞", + "pn": -0.816881 + }, + { + "surface": "ぐしょ濡れ", + "readging": "ぐしょぬれ", + "pos": "名詞", + "pn": -0.816881 + }, + { + "surface": "町", + "readging": "まち", + "pos": "名詞", + "pn": -0.816904 + }, + { + "surface": "取留める", + "readging": "とりとめる", + "pos": "動詞", + "pn": -0.816916 + }, + { + "surface": "火取る", + "readging": "ひどる", + "pos": "動詞", + "pn": -0.817127 + }, + { + "surface": "店", + "readging": "みせ", + "pos": "名詞", + "pn": -0.817244 + }, + { + "surface": "恐懼", + "readging": "きょうく", + "pos": "名詞", + "pn": -0.817345 + }, + { + "surface": "争い", + "readging": "あらそい", + "pos": "名詞", + "pn": -0.817364 + }, + { + "surface": "こちとら", + "readging": "こちとら", + "pos": "名詞", + "pn": -0.81737 + }, + { + "surface": "小児", + "readging": "しょうに", + "pos": "名詞", + "pn": -0.817382 + }, + { + "surface": "びっくり", + "readging": "びっくり", + "pos": "名詞", + "pn": -0.817399 + }, + { + "surface": "纏う", + "readging": "まとう", + "pos": "動詞", + "pn": -0.817457 + }, + { + "surface": "囲う", + "readging": "かこう", + "pos": "動詞", + "pn": -0.817544 + }, + { + "surface": "撃退", + "readging": "げきたい", + "pos": "名詞", + "pn": -0.817584 + }, + { + "surface": "錨鎖", + "readging": "びょうさ", + "pos": "名詞", + "pn": -0.817608 + }, + { + "surface": "太鼓", + "readging": "たいこ", + "pos": "名詞", + "pn": -0.817662 + }, + { + "surface": "秘密", + "readging": "ひみつ", + "pos": "名詞", + "pn": -0.817808 + }, + { + "surface": "製靴", + "readging": "せいか", + "pos": "名詞", + "pn": -0.817845 + }, + { + "surface": "物案じ", + "readging": "ものあんじ", + "pos": "名詞", + "pn": -0.818075 + }, + { + "surface": "官職", + "readging": "かんしょく", + "pos": "名詞", + "pn": -0.818146 + }, + { + "surface": "天皇", + "readging": "てんのう", + "pos": "名詞", + "pn": -0.818171 + }, + { + "surface": "入浴", + "readging": "にゅうよく", + "pos": "名詞", + "pn": -0.818203 + }, + { + "surface": "腐乱", + "readging": "ふらん", + "pos": "名詞", + "pn": -0.818206 + }, + { + "surface": "鯱立ち", + "readging": "しゃちほこだち", + "pos": "名詞", + "pn": -0.818305 + }, + { + "surface": "灰色", + "readging": "はいいろ", + "pos": "名詞", + "pn": -0.818354 + }, + { + "surface": "壊乱", + "readging": "かいらん", + "pos": "名詞", + "pn": -0.818412 + }, + { + "surface": "砂", + "readging": "すな", + "pos": "名詞", + "pn": -0.818469 + }, + { + "surface": "ぼんくら", + "readging": "ぼんくら", + "pos": "名詞", + "pn": -0.818601 + }, + { + "surface": "頻頻", + "readging": "ひんぴん", + "pos": "名詞", + "pn": -0.818618 + }, + { + "surface": "刻む", + "readging": "きざむ", + "pos": "動詞", + "pn": -0.818707 + }, + { + "surface": "小馬鹿", + "readging": "こばか", + "pos": "名詞", + "pn": -0.818848 + }, + { + "surface": "両方", + "readging": "りょうほう", + "pos": "名詞", + "pn": -0.818906 + }, + { + "surface": "殺ぐ", + "readging": "そぐ", + "pos": "動詞", + "pn": -0.819039 + }, + { + "surface": "職", + "readging": "しょく", + "pos": "名詞", + "pn": -0.819069 + }, + { + "surface": "呑吐", + "readging": "どんと", + "pos": "名詞", + "pn": -0.819227 + }, + { + "surface": "鶴", + "readging": "つる", + "pos": "名詞", + "pn": -0.819253 + }, + { + "surface": "ちり", + "readging": "ちり", + "pos": "名詞", + "pn": -0.819296 + }, + { + "surface": "這う", + "readging": "はう", + "pos": "動詞", + "pn": -0.819298 + }, + { + "surface": "豆", + "readging": "まめ", + "pos": "名詞", + "pn": -0.819336 + }, + { + "surface": "擦寄る", + "readging": "すりよる", + "pos": "動詞", + "pn": -0.819475 + }, + { + "surface": "事務", + "readging": "じむ", + "pos": "名詞", + "pn": -0.819477 + }, + { + "surface": "風習", + "readging": "ふうしゅう", + "pos": "名詞", + "pn": -0.819757 + }, + { + "surface": "畏まる", + "readging": "かしこまる", + "pos": "動詞", + "pn": -0.819833 + }, + { + "surface": "肛門", + "readging": "こうもん", + "pos": "名詞", + "pn": -0.819861 + }, + { + "surface": "粗葉", + "readging": "そは", + "pos": "名詞", + "pn": -0.819937 + }, + { + "surface": "触状", + "readging": "ふれじょう", + "pos": "名詞", + "pn": -0.820001 + }, + { + "surface": "一杯", + "readging": "いっぱい", + "pos": "副詞", + "pn": -0.820019 + }, + { + "surface": "勃勃", + "readging": "ぼつぼつ", + "pos": "名詞", + "pn": -0.820067 + }, + { + "surface": "乾死", + "readging": "ひじに", + "pos": "名詞", + "pn": -0.820174 + }, + { + "surface": "利益", + "readging": "りやく", + "pos": "名詞", + "pn": -0.820271 + }, + { + "surface": "晒す", + "readging": "さらす", + "pos": "動詞", + "pn": -0.82038 + }, + { + "surface": "武者震い", + "readging": "むしゃぶるい", + "pos": "名詞", + "pn": -0.820667 + }, + { + "surface": "妻妾", + "readging": "さいしょう", + "pos": "名詞", + "pn": -0.820716 + }, + { + "surface": "割膝", + "readging": "わりひざ", + "pos": "名詞", + "pn": -0.820933 + }, + { + "surface": "玻璃", + "readging": "はり", + "pos": "名詞", + "pn": -0.820937 + }, + { + "surface": "都合", + "readging": "つごう", + "pos": "名詞", + "pn": -0.820956 + }, + { + "surface": "脇目", + "readging": "わきめ", + "pos": "名詞", + "pn": -0.821062 + }, + { + "surface": "脇見", + "readging": "わきみ", + "pos": "名詞", + "pn": -0.821062 + }, + { + "surface": "激つ", + "readging": "たぎつ", + "pos": "動詞", + "pn": -0.821287 + }, + { + "surface": "臍繰り", + "readging": "へそくり", + "pos": "名詞", + "pn": -0.821396 + }, + { + "surface": "嘗める", + "readging": "なめる", + "pos": "動詞", + "pn": -0.821529 + }, + { + "surface": "書類", + "readging": "しょるい", + "pos": "名詞", + "pn": -0.821631 + }, + { + "surface": "牢屋", + "readging": "ろうや", + "pos": "名詞", + "pn": -0.821997 + }, + { + "surface": "迫", + "readging": "はく", + "pos": "名詞", + "pn": -0.821999 + }, + { + "surface": "続ける", + "readging": "つづける", + "pos": "動詞", + "pn": -0.822054 + }, + { + "surface": "人っ子一人", + "readging": "ひとっこひとり", + "pos": "名詞", + "pn": -0.822072 + }, + { + "surface": "蠢く", + "readging": "うごめく", + "pos": "動詞", + "pn": -0.822274 + }, + { + "surface": "揉め事", + "readging": "もめごと", + "pos": "名詞", + "pn": -0.822277 + }, + { + "surface": "荷", + "readging": "に", + "pos": "名詞", + "pn": -0.822297 + }, + { + "surface": "苦労", + "readging": "くろう", + "pos": "名詞", + "pn": -0.822364 + }, + { + "surface": "屈める", + "readging": "こごめる", + "pos": "動詞", + "pn": -0.822374 + }, + { + "surface": "事実", + "readging": "じじつ", + "pos": "名詞", + "pn": -0.822378 + }, + { + "surface": "屈まる", + "readging": "くぐまる", + "pos": "動詞", + "pn": -0.822492 + }, + { + "surface": "荷なう", + "readging": "になう", + "pos": "動詞", + "pn": -0.822639 + }, + { + "surface": "印", + "readging": "しるし", + "pos": "名詞", + "pn": -0.822664 + }, + { + "surface": "泳ぐ", + "readging": "およぐ", + "pos": "動詞", + "pn": -0.822667 + }, + { + "surface": "寄せる", + "readging": "よせる", + "pos": "動詞", + "pn": -0.822794 + }, + { + "surface": "黙然", + "readging": "もくぜん", + "pos": "名詞", + "pn": -0.822797 + }, + { + "surface": "区割", + "readging": "くわり", + "pos": "名詞", + "pn": -0.822797 + }, + { + "surface": "貰う", + "readging": "もらう", + "pos": "動詞", + "pn": -0.822819 + }, + { + "surface": "ふんわり", + "readging": "ふんわり", + "pos": "副詞", + "pn": -0.822997 + }, + { + "surface": "深深と", + "readging": "ふかぶかと", + "pos": "副詞", + "pn": -0.823048 + }, + { + "surface": "なるほど", + "readging": "なるほど", + "pos": "副詞", + "pn": -0.823048 + }, + { + "surface": "銜む", + "readging": "くくむ", + "pos": "動詞", + "pn": -0.823081 + }, + { + "surface": "抜く", + "readging": "ぬく", + "pos": "動詞", + "pn": -0.823293 + }, + { + "surface": "掃除屋", + "readging": "そうじや", + "pos": "名詞", + "pn": -0.823382 + }, + { + "surface": "大根", + "readging": "だいこん", + "pos": "名詞", + "pn": -0.823567 + }, + { + "surface": "託つ", + "readging": "かこつ", + "pos": "動詞", + "pn": -0.823603 + }, + { + "surface": "阿房", + "readging": "あほう", + "pos": "名詞", + "pn": -0.823749 + }, + { + "surface": "次", + "readging": "つぎ", + "pos": "名詞", + "pn": -0.823776 + }, + { + "surface": "僅少", + "readging": "きんしょう", + "pos": "名詞", + "pn": -0.823803 + }, + { + "surface": "一分一厘", + "readging": "いちぶいちりん", + "pos": "名詞", + "pn": -0.823803 + }, + { + "surface": "用事", + "readging": "ようじ", + "pos": "名詞", + "pn": -0.823822 + }, + { + "surface": "結", + "readging": "けつ", + "pos": "名詞", + "pn": -0.82383 + }, + { + "surface": "四", + "readging": "よ", + "pos": "名詞", + "pn": -0.823868 + }, + { + "surface": "取去る", + "readging": "とりさる", + "pos": "動詞", + "pn": -0.823963 + }, + { + "surface": "自棄", + "readging": "やけ", + "pos": "名詞", + "pn": -0.824023 + }, + { + "surface": "防遏", + "readging": "ぼうあつ", + "pos": "名詞", + "pn": -0.824083 + }, + { + "surface": "驕り", + "readging": "おごり", + "pos": "名詞", + "pn": -0.824158 + }, + { + "surface": "他家", + "readging": "たけ", + "pos": "名詞", + "pn": -0.824277 + }, + { + "surface": "並ぶ", + "readging": "ならぶ", + "pos": "動詞", + "pn": -0.824407 + }, + { + "surface": "北", + "readging": "ほく", + "pos": "名詞", + "pn": -0.82458 + }, + { + "surface": "詐取", + "readging": "さしゅ", + "pos": "名詞", + "pn": -0.824638 + }, + { + "surface": "飲食", + "readging": "おんじき", + "pos": "名詞", + "pn": -0.824688 + }, + { + "surface": "社会", + "readging": "しゃかい", + "pos": "名詞", + "pn": -0.824814 + }, + { + "surface": "挟撃", + "readging": "きょうげき", + "pos": "名詞", + "pn": -0.824843 + }, + { + "surface": "手段", + "readging": "しゅだん", + "pos": "名詞", + "pn": -0.824871 + }, + { + "surface": "三味線", + "readging": "しゃみせん", + "pos": "名詞", + "pn": -0.824983 + }, + { + "surface": "役目", + "readging": "やくめ", + "pos": "名詞", + "pn": -0.824992 + }, + { + "surface": "山姥", + "readging": "やまうば", + "pos": "名詞", + "pn": -0.825047 + }, + { + "surface": "俗悪", + "readging": "ぞくあく", + "pos": "名詞", + "pn": -0.82509 + }, + { + "surface": "わざと", + "readging": "わざとらしい", + "pos": "形容詞", + "pn": -0.825097 + }, + { + "surface": "中葉", + "readging": "ちゅうよう", + "pos": "名詞", + "pn": -0.825129 + }, + { + "surface": "鐘", + "readging": "しょう", + "pos": "名詞", + "pn": -0.825152 + }, + { + "surface": "嚇怒", + "readging": "かくど", + "pos": "名詞", + "pn": -0.825258 + }, + { + "surface": "上部", + "readging": "じょうぶ", + "pos": "名詞", + "pn": -0.825273 + }, + { + "surface": "百計", + "readging": "ひゃっけい", + "pos": "名詞", + "pn": -0.825283 + }, + { + "surface": "駆使", + "readging": "くし", + "pos": "名詞", + "pn": -0.825394 + }, + { + "surface": "膜", + "readging": "まく", + "pos": "名詞", + "pn": -0.825588 + }, + { + "surface": "羅", + "readging": "ら", + "pos": "名詞", + "pn": -0.825589 + }, + { + "surface": "蝉", + "readging": "せみ", + "pos": "名詞", + "pn": -0.825704 + }, + { + "surface": "違い", + "readging": "ちがい", + "pos": "名詞", + "pn": -0.825706 + }, + { + "surface": "舌舐り", + "readging": "したなめずり", + "pos": "名詞", + "pn": -0.825746 + }, + { + "surface": "張付ける", + "readging": "はりつける", + "pos": "動詞", + "pn": -0.826122 + }, + { + "surface": "筒", + "readging": "とう", + "pos": "名詞", + "pn": -0.826156 + }, + { + "surface": "厄介", + "readging": "やっかい", + "pos": "名詞", + "pn": -0.826232 + }, + { + "surface": "集める", + "readging": "あつめる", + "pos": "動詞", + "pn": -0.826476 + }, + { + "surface": "はだれ", + "readging": "はだれ", + "pos": "名詞", + "pn": -0.826811 + }, + { + "surface": "はだら", + "readging": "はだら", + "pos": "名詞", + "pn": -0.826811 + }, + { + "surface": "脳", + "readging": "のう", + "pos": "名詞", + "pn": -0.826928 + }, + { + "surface": "飛行機", + "readging": "ひこうき", + "pos": "名詞", + "pn": -0.827067 + }, + { + "surface": "畏伏", + "readging": "いふく", + "pos": "名詞", + "pn": -0.827072 + }, + { + "surface": "墓場", + "readging": "はかば", + "pos": "名詞", + "pn": -0.827115 + }, + { + "surface": "動き", + "readging": "うごき", + "pos": "名詞", + "pn": -0.827219 + }, + { + "surface": "事情", + "readging": "じじょう", + "pos": "名詞", + "pn": -0.827425 + }, + { + "surface": "炎", + "readging": "ほむら", + "pos": "名詞", + "pn": -0.827638 + }, + { + "surface": "病原", + "readging": "びょうげん", + "pos": "名詞", + "pn": -0.827638 + }, + { + "surface": "寸見", + "readging": "すんけん", + "pos": "名詞", + "pn": -0.827681 + }, + { + "surface": "郭公", + "readging": "かっこう", + "pos": "名詞", + "pn": -0.827847 + }, + { + "surface": "慫慂", + "readging": "しょうよう", + "pos": "名詞", + "pn": -0.827923 + }, + { + "surface": "鎖", + "readging": "くさり", + "pos": "名詞", + "pn": -0.828029 + }, + { + "surface": "語脈", + "readging": "ごみゃく", + "pos": "名詞", + "pn": -0.828036 + }, + { + "surface": "時時", + "readging": "ときどき", + "pos": "副詞", + "pn": -0.828154 + }, + { + "surface": "姦", + "readging": "かん", + "pos": "名詞", + "pn": -0.828328 + }, + { + "surface": "ちまう", + "readging": "ちまう", + "pos": "動詞", + "pn": -0.828378 + }, + { + "surface": "両端", + "readging": "りょうたん", + "pos": "名詞", + "pn": -0.828434 + }, + { + "surface": "法律", + "readging": "ほうりつ", + "pos": "名詞", + "pn": -0.828505 + }, + { + "surface": "雇う", + "readging": "やとう", + "pos": "動詞", + "pn": -0.828531 + }, + { + "surface": "地震", + "readging": "じしん", + "pos": "名詞", + "pn": -0.828656 + }, + { + "surface": "長大息", + "readging": "ちょうたいそく", + "pos": "名詞", + "pn": -0.828665 + }, + { + "surface": "庭", + "readging": "にわ", + "pos": "名詞", + "pn": -0.828707 + }, + { + "surface": "観賞", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.828844 + }, + { + "surface": "痛痒", + "readging": "つうよう", + "pos": "名詞", + "pn": -0.829064 + }, + { + "surface": "燃える", + "readging": "もえる", + "pos": "動詞", + "pn": -0.829128 + }, + { + "surface": "公私", + "readging": "こうし", + "pos": "名詞", + "pn": -0.829218 + }, + { + "surface": "果実", + "readging": "かじつ", + "pos": "名詞", + "pn": -0.829252 + }, + { + "surface": "避ける", + "readging": "よける", + "pos": "動詞", + "pn": -0.829335 + }, + { + "surface": "乾かす", + "readging": "かわかす", + "pos": "動詞", + "pn": -0.829469 + }, + { + "surface": "俗称", + "readging": "ぞくしょう", + "pos": "名詞", + "pn": -0.829495 + }, + { + "surface": "踏む", + "readging": "ふむ", + "pos": "動詞", + "pn": -0.829502 + }, + { + "surface": "独座", + "readging": "どくざ", + "pos": "名詞", + "pn": -0.829592 + }, + { + "surface": "不安", + "readging": "ふあん", + "pos": "名詞", + "pn": -0.829619 + }, + { + "surface": "黙る", + "readging": "だまる", + "pos": "動詞", + "pn": -0.829653 + }, + { + "surface": "分泌", + "readging": "ぶんぴ", + "pos": "名詞", + "pn": -0.829767 + }, + { + "surface": "銘銘", + "readging": "めいめい", + "pos": "名詞", + "pn": -0.829891 + }, + { + "surface": "卑俗", + "readging": "ひぞく", + "pos": "名詞", + "pn": -0.829905 + }, + { + "surface": "団扇太鼓", + "readging": "うちわ", + "pos": "名詞", + "pn": -0.829964 + }, + { + "surface": "股火鉢", + "readging": "またひばち", + "pos": "名詞", + "pn": -0.829965 + }, + { + "surface": "誑かす", + "readging": "たぶらかす", + "pos": "動詞", + "pn": -0.83008 + }, + { + "surface": "余人", + "readging": "よじん", + "pos": "名詞", + "pn": -0.830114 + }, + { + "surface": "平伏す", + "readging": "ひれふす", + "pos": "動詞", + "pn": -0.830218 + }, + { + "surface": "かぶる", + "readging": "かぶる", + "pos": "動詞", + "pn": -0.830336 + }, + { + "surface": "臑", + "readging": "すね", + "pos": "名詞", + "pn": -0.830358 + }, + { + "surface": "復仇", + "readging": "ふっきゅう", + "pos": "名詞", + "pn": -0.830424 + }, + { + "surface": "巡検", + "readging": "じゅんけん", + "pos": "名詞", + "pn": -0.830489 + }, + { + "surface": "破れる", + "readging": "やぶれる", + "pos": "動詞", + "pn": -0.830666 + }, + { + "surface": "百合", + "readging": "ゆり", + "pos": "名詞", + "pn": -0.830697 + }, + { + "surface": "為様", + "readging": "しざま", + "pos": "名詞", + "pn": -0.830919 + }, + { + "surface": "浅緑", + "readging": "あさみどり", + "pos": "名詞", + "pn": -0.830944 + }, + { + "surface": "潰乱", + "readging": "かいらん", + "pos": "名詞", + "pn": -0.831015 + }, + { + "surface": "凍る", + "readging": "こおる", + "pos": "動詞", + "pn": -0.831055 + }, + { + "surface": "淋漓", + "readging": "りんり", + "pos": "名詞", + "pn": -0.831114 + }, + { + "surface": "ロープ", + "readging": "ロープ", + "pos": "名詞", + "pn": -0.831157 + }, + { + "surface": "神経", + "readging": "しんけい", + "pos": "名詞", + "pn": -0.831191 + }, + { + "surface": "歳次", + "readging": "さいじ", + "pos": "名詞", + "pn": -0.831291 + }, + { + "surface": "空転", + "readging": "くうてん", + "pos": "名詞", + "pn": -0.831291 + }, + { + "surface": "殴打", + "readging": "おうだ", + "pos": "名詞", + "pn": -0.831293 + }, + { + "surface": "腸", + "readging": "わた", + "pos": "名詞", + "pn": -0.831349 + }, + { + "surface": "風", + "readging": "かぜ", + "pos": "名詞", + "pn": -0.831487 + }, + { + "surface": "何がなし", + "readging": "なにがなし", + "pos": "副詞", + "pn": -0.83167 + }, + { + "surface": "睡余", + "readging": "すいよ", + "pos": "名詞", + "pn": -0.831845 + }, + { + "surface": "非道", + "readging": "ひどう", + "pos": "名詞", + "pn": -0.831862 + }, + { + "surface": "低木", + "readging": "ていぼく", + "pos": "名詞", + "pn": -0.831979 + }, + { + "surface": "目屎", + "readging": "めくそ", + "pos": "名詞", + "pn": -0.832015 + }, + { + "surface": "ちらり", + "readging": "ちらり", + "pos": "副詞", + "pn": -0.832083 + }, + { + "surface": "賃貸", + "readging": "ちんたい", + "pos": "名詞", + "pn": -0.832093 + }, + { + "surface": "貼用", + "readging": "ちょうよう", + "pos": "名詞", + "pn": -0.832235 + }, + { + "surface": "玩具", + "readging": "おもちゃ", + "pos": "名詞", + "pn": -0.832303 + }, + { + "surface": "売る", + "readging": "うる", + "pos": "動詞", + "pn": -0.832428 + }, + { + "surface": "勢い", + "readging": "いきおい", + "pos": "名詞", + "pn": -0.832443 + }, + { + "surface": "潰れる", + "readging": "つぶれる", + "pos": "動詞", + "pn": -0.832501 + }, + { + "surface": "不断", + "readging": "ふだん", + "pos": "名詞", + "pn": -0.832525 + }, + { + "surface": "ばたつく", + "readging": "ばたつく", + "pos": "動詞", + "pn": -0.83254 + }, + { + "surface": "轢断", + "readging": "れきだん", + "pos": "名詞", + "pn": -0.832633 + }, + { + "surface": "入洛", + "readging": "にゅうらく", + "pos": "名詞", + "pn": -0.832701 + }, + { + "surface": "ずぶりと", + "readging": "ずぶりと", + "pos": "副詞", + "pn": -0.832701 + }, + { + "surface": "新入", + "readging": "しんにゅう", + "pos": "名詞", + "pn": -0.832701 + }, + { + "surface": "枯渇", + "readging": "こかつ", + "pos": "名詞", + "pn": -0.832988 + }, + { + "surface": "憂鬱", + "readging": "ゆううつ", + "pos": "名詞", + "pn": -0.833015 + }, + { + "surface": "檜皮", + "readging": "ひわだ", + "pos": "名詞", + "pn": -0.833142 + }, + { + "surface": "渋渋", + "readging": "しぶしぶ", + "pos": "副詞", + "pn": -0.833409 + }, + { + "surface": "蹟", + "readging": "せき", + "pos": "名詞", + "pn": -0.833482 + }, + { + "surface": "船幅", + "readging": "せんぷく", + "pos": "名詞", + "pn": -0.8335 + }, + { + "surface": "調子", + "readging": "ちょうし", + "pos": "名詞", + "pn": -0.833577 + }, + { + "surface": "愚挙", + "readging": "ぐきょ", + "pos": "名詞", + "pn": -0.833702 + }, + { + "surface": "奪う", + "readging": "うばう", + "pos": "動詞", + "pn": -0.833723 + }, + { + "surface": "引っ張る", + "readging": "ひっぱる", + "pos": "動詞", + "pn": -0.83373 + }, + { + "surface": "触る", + "readging": "さわる", + "pos": "動詞", + "pn": -0.833731 + }, + { + "surface": "美髯", + "readging": "びぜん", + "pos": "名詞", + "pn": -0.833776 + }, + { + "surface": "兵刃", + "readging": "へいじん", + "pos": "名詞", + "pn": -0.83397 + }, + { + "surface": "揺れる", + "readging": "ゆれる", + "pos": "動詞", + "pn": -0.834046 + }, + { + "surface": "大息", + "readging": "たいそく", + "pos": "名詞", + "pn": -0.83407 + }, + { + "surface": "月央", + "readging": "げつおう", + "pos": "名詞", + "pn": -0.83407 + }, + { + "surface": "巡る", + "readging": "めぐる", + "pos": "動詞", + "pn": -0.834099 + }, + { + "surface": "動く", + "readging": "うごく", + "pos": "動詞", + "pn": -0.834132 + }, + { + "surface": "小引", + "readging": "しょういん", + "pos": "名詞", + "pn": -0.83424 + }, + { + "surface": "えり", + "readging": "えり", + "pos": "名詞", + "pn": -0.834367 + }, + { + "surface": "褐色", + "readging": "かっしょく", + "pos": "名詞", + "pn": -0.83456 + }, + { + "surface": "あなかしこ", + "readging": "あなかしこ", + "pos": "名詞", + "pn": -0.83475 + }, + { + "surface": "不愉快", + "readging": "ふゆかい", + "pos": "名詞", + "pn": -0.834797 + }, + { + "surface": "攪拌", + "readging": "かくはん", + "pos": "名詞", + "pn": -0.834811 + }, + { + "surface": "表現", + "readging": "ひょうげん", + "pos": "名詞", + "pn": -0.83485 + }, + { + "surface": "掛り湯", + "readging": "かかりゆ", + "pos": "名詞", + "pn": -0.834986 + }, + { + "surface": "牢", + "readging": "ろう", + "pos": "名詞", + "pn": -0.835065 + }, + { + "surface": "逆", + "readging": "さか", + "pos": "名詞", + "pn": -0.835186 + }, + { + "surface": "辱知", + "readging": "じょくち", + "pos": "名詞", + "pn": -0.835189 + }, + { + "surface": "お目に掛る", + "readging": "おめにかかる", + "pos": "動詞", + "pn": -0.835189 + }, + { + "surface": "臑脛", + "readging": "すねはぎ", + "pos": "名詞", + "pn": -0.835227 + }, + { + "surface": "扱う", + "readging": "あつかう", + "pos": "動詞", + "pn": -0.835272 + }, + { + "surface": "釘", + "readging": "くぎ", + "pos": "名詞", + "pn": -0.835296 + }, + { + "surface": "一瞥", + "readging": "いちべつ", + "pos": "名詞", + "pn": -0.835306 + }, + { + "surface": "一見", + "readging": "いっけん", + "pos": "名詞", + "pn": -0.835306 + }, + { + "surface": "譬える", + "readging": "たとえる", + "pos": "動詞", + "pn": -0.835317 + }, + { + "surface": "御鉢巡り", + "readging": "おはちめぐり", + "pos": "名詞", + "pn": -0.835419 + }, + { + "surface": "城址", + "readging": "じょうし", + "pos": "名詞", + "pn": -0.835472 + }, + { + "surface": "嬲り物", + "readging": "なぶりもの", + "pos": "名詞", + "pn": -0.83552 + }, + { + "surface": "一寸見", + "readging": "ちょっとみ", + "pos": "名詞", + "pn": -0.835767 + }, + { + "surface": "欠ける", + "readging": "かける", + "pos": "動詞", + "pn": -0.836007 + }, + { + "surface": "嵌める", + "readging": "はめる", + "pos": "動詞", + "pn": -0.836129 + }, + { + "surface": "膕", + "readging": "ひかがみ", + "pos": "名詞", + "pn": -0.836136 + }, + { + "surface": "野原", + "readging": "のはら", + "pos": "名詞", + "pn": -0.83618 + }, + { + "surface": "しゃちこ張る", + "readging": "しゃちこばる", + "pos": "動詞", + "pn": -0.836318 + }, + { + "surface": "直接", + "readging": "ちょくせつ", + "pos": "名詞", + "pn": -0.83636 + }, + { + "surface": "反らす", + "readging": "そらす", + "pos": "動詞", + "pn": -0.836416 + }, + { + "surface": "苛立つ", + "readging": "いらだつ", + "pos": "動詞", + "pn": -0.83643 + }, + { + "surface": "押える", + "readging": "おさえる", + "pos": "動詞", + "pn": -0.8365 + }, + { + "surface": "印", + "readging": "じるし", + "pos": "名詞", + "pn": -0.836689 + }, + { + "surface": "醤油", + "readging": "しょうゆ", + "pos": "名詞", + "pn": -0.836915 + }, + { + "surface": "砕ける", + "readging": "くだける", + "pos": "動詞", + "pn": -0.836928 + }, + { + "surface": "費用", + "readging": "ひよう", + "pos": "名詞", + "pn": -0.836975 + }, + { + "surface": "ウイルス", + "readging": "ウイルス", + "pos": "名詞", + "pn": -0.837093 + }, + { + "surface": "捏ねる", + "readging": "こねる", + "pos": "動詞", + "pn": -0.837318 + }, + { + "surface": "迫る", + "readging": "せまる", + "pos": "動詞", + "pn": -0.8374 + }, + { + "surface": "衰頽", + "readging": "すいたい", + "pos": "名詞", + "pn": -0.837482 + }, + { + "surface": "撲殺", + "readging": "ぼくさつ", + "pos": "名詞", + "pn": -0.837579 + }, + { + "surface": "下等", + "readging": "かとう", + "pos": "名詞", + "pn": -0.837639 + }, + { + "surface": "障害", + "readging": "しょうがい", + "pos": "名詞", + "pn": -0.83768 + }, + { + "surface": "鋤く", + "readging": "すく", + "pos": "動詞", + "pn": -0.837807 + }, + { + "surface": "残夜", + "readging": "ざんや", + "pos": "名詞", + "pn": -0.837938 + }, + { + "surface": "橋", + "readging": "はし", + "pos": "名詞", + "pn": -0.837984 + }, + { + "surface": "恥", + "readging": "はじ", + "pos": "名詞", + "pn": -0.83803 + }, + { + "surface": "折れる", + "readging": "おれる", + "pos": "動詞", + "pn": -0.838235 + }, + { + "surface": "落す", + "readging": "おとす", + "pos": "動詞", + "pn": -0.838468 + }, + { + "surface": "漏らす", + "readging": "もらす", + "pos": "動詞", + "pn": -0.838657 + }, + { + "surface": "逡巡", + "readging": "しゅんじゅん", + "pos": "名詞", + "pn": -0.838817 + }, + { + "surface": "実際", + "readging": "じっさい", + "pos": "副詞", + "pn": -0.839058 + }, + { + "surface": "機関", + "readging": "きかん", + "pos": "名詞", + "pn": -0.839172 + }, + { + "surface": "垢抜け", + "readging": "あかぬけ", + "pos": "名詞", + "pn": -0.839231 + }, + { + "surface": "器官", + "readging": "きかん", + "pos": "名詞", + "pn": -0.839257 + }, + { + "surface": "労働", + "readging": "ろうどう", + "pos": "名詞", + "pn": -0.839338 + }, + { + "surface": "饐える", + "readging": "すえる", + "pos": "動詞", + "pn": -0.839512 + }, + { + "surface": "突く", + "readging": "つく", + "pos": "動詞", + "pn": -0.839633 + }, + { + "surface": "薙ぐ", + "readging": "なぐ", + "pos": "動詞", + "pn": -0.839637 + }, + { + "surface": "後難", + "readging": "こうなん", + "pos": "名詞", + "pn": -0.839688 + }, + { + "surface": "便", + "readging": "びん", + "pos": "名詞", + "pn": -0.839732 + }, + { + "surface": "紗綾", + "readging": "さや", + "pos": "名詞", + "pn": -0.839913 + }, + { + "surface": "拝跪", + "readging": "はいき", + "pos": "名詞", + "pn": -0.839989 + }, + { + "surface": "掘る", + "readging": "ほる", + "pos": "動詞", + "pn": -0.840085 + }, + { + "surface": "告げる", + "readging": "つげる", + "pos": "動詞", + "pn": -0.840311 + }, + { + "surface": "踞座", + "readging": "きょざ", + "pos": "名詞", + "pn": -0.840412 + }, + { + "surface": "現", + "readging": "げん", + "pos": "名詞", + "pn": -0.840418 + }, + { + "surface": "おむつ", + "readging": "おむつ", + "pos": "名詞", + "pn": -0.840818 + }, + { + "surface": "枝", + "readging": "し", + "pos": "名詞", + "pn": -0.840837 + }, + { + "surface": "観", + "readging": "かん", + "pos": "名詞", + "pn": -0.840845 + }, + { + "surface": "感ずる", + "readging": "かんずる", + "pos": "動詞", + "pn": -0.841116 + }, + { + "surface": "釣", + "readging": "つり", + "pos": "名詞", + "pn": -0.841287 + }, + { + "surface": "僻目", + "readging": "ひがめ", + "pos": "名詞", + "pn": -0.841371 + }, + { + "surface": "朝", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.841705 + }, + { + "surface": "凝る", + "readging": "こる", + "pos": "動詞", + "pn": -0.841735 + }, + { + "surface": "議論", + "readging": "ぎろん", + "pos": "名詞", + "pn": -0.841777 + }, + { + "surface": "駄目", + "readging": "だめ", + "pos": "名詞", + "pn": -0.841911 + }, + { + "surface": "眩暈", + "readging": "げんうん", + "pos": "名詞", + "pn": -0.842262 + }, + { + "surface": "いなか家", + "readging": "いなか", + "pos": "名詞", + "pn": -0.842503 + }, + { + "surface": "綱", + "readging": "つな", + "pos": "名詞", + "pn": -0.842744 + }, + { + "surface": "酔う", + "readging": "よう", + "pos": "動詞", + "pn": -0.842806 + }, + { + "surface": "瘡", + "readging": "かさ", + "pos": "名詞", + "pn": -0.842883 + }, + { + "surface": "夢", + "readging": "ゆめ", + "pos": "名詞", + "pn": -0.842887 + }, + { + "surface": "力", + "readging": "りょく", + "pos": "名詞", + "pn": -0.84291 + }, + { + "surface": "細菌", + "readging": "さいきん", + "pos": "名詞", + "pn": -0.843069 + }, + { + "surface": "石炭", + "readging": "せきたん", + "pos": "名詞", + "pn": -0.843336 + }, + { + "surface": "広げる", + "readging": "ひろげる", + "pos": "動詞", + "pn": -0.843413 + }, + { + "surface": "茹でる", + "readging": "ゆでる", + "pos": "動詞", + "pn": -0.843581 + }, + { + "surface": "ガス", + "readging": "ガスレンジ", + "pos": "名詞", + "pn": -0.843818 + }, + { + "surface": "傘", + "readging": "さん", + "pos": "名詞", + "pn": -0.84389 + }, + { + "surface": "金具", + "readging": "かなぐ", + "pos": "名詞", + "pn": -0.844061 + }, + { + "surface": "通す", + "readging": "とおす", + "pos": "動詞", + "pn": -0.844076 + }, + { + "surface": "巡らす", + "readging": "めぐらす", + "pos": "動詞", + "pn": -0.844205 + }, + { + "surface": "鍵", + "readging": "かぎ", + "pos": "名詞", + "pn": -0.84428 + }, + { + "surface": "鈍磨", + "readging": "どんま", + "pos": "名詞", + "pn": -0.844483 + }, + { + "surface": "咳き上げる", + "readging": "せきあげる", + "pos": "動詞", + "pn": -0.84488 + }, + { + "surface": "幼虫", + "readging": "ようちゅう", + "pos": "名詞", + "pn": -0.844997 + }, + { + "surface": "日光", + "readging": "にっこう", + "pos": "名詞", + "pn": -0.845044 + }, + { + "surface": "怖じける", + "readging": "おじける", + "pos": "動詞", + "pn": -0.845076 + }, + { + "surface": "股", + "readging": "もも", + "pos": "名詞", + "pn": -0.84531 + }, + { + "surface": "矢", + "readging": "や", + "pos": "名詞", + "pn": -0.845417 + }, + { + "surface": "門", + "readging": "もん", + "pos": "名詞", + "pn": -0.845879 + }, + { + "surface": "俗", + "readging": "ぞく", + "pos": "名詞", + "pn": -0.845987 + }, + { + "surface": "身体", + "readging": "しんたい", + "pos": "名詞", + "pn": -0.846328 + }, + { + "surface": "菓子", + "readging": "かし", + "pos": "名詞", + "pn": -0.846378 + }, + { + "surface": "妬む", + "readging": "ねたむ", + "pos": "動詞", + "pn": -0.846433 + }, + { + "surface": "欲張り", + "readging": "よくばり", + "pos": "名詞", + "pn": -0.846434 + }, + { + "surface": "印刷", + "readging": "いんさつ", + "pos": "名詞", + "pn": -0.846693 + }, + { + "surface": "喧擾", + "readging": "けんじょう", + "pos": "名詞", + "pn": -0.846776 + }, + { + "surface": "全部", + "readging": "ぜんぶ", + "pos": "名詞", + "pn": -0.846874 + }, + { + "surface": "長嘆", + "readging": "ちょうたん", + "pos": "名詞", + "pn": -0.846884 + }, + { + "surface": "水面", + "readging": "みなも", + "pos": "名詞", + "pn": -0.847074 + }, + { + "surface": "僧", + "readging": "そう", + "pos": "名詞", + "pn": -0.847341 + }, + { + "surface": "不倒翁", + "readging": "ふとうおう", + "pos": "名詞", + "pn": -0.847355 + }, + { + "surface": "接ぐ", + "readging": "はぐ", + "pos": "動詞", + "pn": -0.847502 + }, + { + "surface": "政治", + "readging": "せいじ", + "pos": "名詞", + "pn": -0.847903 + }, + { + "surface": "針", + "readging": "はり", + "pos": "名詞", + "pn": -0.84797 + }, + { + "surface": "ひっそり", + "readging": "ひっそり", + "pos": "副詞", + "pn": -0.847987 + }, + { + "surface": "戯け", + "readging": "たわけ", + "pos": "名詞", + "pn": -0.848114 + }, + { + "surface": "喋る", + "readging": "しゃべる", + "pos": "動詞", + "pn": -0.848226 + }, + { + "surface": "逃げる", + "readging": "にげる", + "pos": "動詞", + "pn": -0.848265 + }, + { + "surface": "滾る", + "readging": "たぎる", + "pos": "動詞", + "pn": -0.84842 + }, + { + "surface": "人形", + "readging": "ひとがた", + "pos": "名詞", + "pn": -0.848664 + }, + { + "surface": "腕", + "readging": "わん", + "pos": "名詞", + "pn": -0.848933 + }, + { + "surface": "当る", + "readging": "あたる", + "pos": "動詞", + "pn": -0.849144 + }, + { + "surface": "溜息", + "readging": "ためいき", + "pos": "名詞", + "pn": -0.849199 + }, + { + "surface": "岩", + "readging": "がん", + "pos": "名詞", + "pn": -0.849289 + }, + { + "surface": "からかう", + "readging": "からかう", + "pos": "動詞", + "pn": -0.849356 + }, + { + "surface": "渋い", + "readging": "しぶい", + "pos": "形容詞", + "pn": -0.849479 + }, + { + "surface": "惜しむ", + "readging": "おしむ", + "pos": "動詞", + "pn": -0.849555 + }, + { + "surface": "擦れる", + "readging": "こすれる", + "pos": "動詞", + "pn": -0.849734 + }, + { + "surface": "任せる", + "readging": "まかせる", + "pos": "動詞", + "pn": -0.849782 + }, + { + "surface": "損害", + "readging": "そんがい", + "pos": "名詞", + "pn": -0.849786 + }, + { + "surface": "齲歯", + "readging": "うし", + "pos": "名詞", + "pn": -0.849934 + }, + { + "surface": "諫止", + "readging": "かんし", + "pos": "名詞", + "pn": -0.849937 + }, + { + "surface": "蔑視", + "readging": "べっし", + "pos": "名詞", + "pn": -0.849964 + }, + { + "surface": "枯らす", + "readging": "からす", + "pos": "動詞", + "pn": -0.850207 + }, + { + "surface": "掴む", + "readging": "つかむ", + "pos": "動詞", + "pn": -0.85021 + }, + { + "surface": "神仏", + "readging": "しんぶつ", + "pos": "名詞", + "pn": -0.850336 + }, + { + "surface": "結う", + "readging": "ゆう", + "pos": "動詞", + "pn": -0.850481 + }, + { + "surface": "見せる", + "readging": "みせる", + "pos": "動詞", + "pn": -0.85061 + }, + { + "surface": "内容", + "readging": "ないよう", + "pos": "名詞", + "pn": -0.850617 + }, + { + "surface": "唐", + "readging": "から", + "pos": "名詞", + "pn": -0.850653 + }, + { + "surface": "意味", + "readging": "いみ", + "pos": "名詞", + "pn": -0.850758 + }, + { + "surface": "与える", + "readging": "あたえる", + "pos": "動詞", + "pn": -0.850843 + }, + { + "surface": "転", + "readging": "てん", + "pos": "名詞", + "pn": -0.850894 + }, + { + "surface": "摘む", + "readging": "つまむ", + "pos": "動詞", + "pn": -0.850999 + }, + { + "surface": "蔑如", + "readging": "べつじょ", + "pos": "名詞", + "pn": -0.851387 + }, + { + "surface": "化粧", + "readging": "けしょう", + "pos": "名詞", + "pn": -0.851502 + }, + { + "surface": "崖", + "readging": "がけ", + "pos": "名詞", + "pn": -0.851581 + }, + { + "surface": "耳", + "readging": "みみ", + "pos": "名詞", + "pn": -0.851636 + }, + { + "surface": "今", + "readging": "こん", + "pos": "名詞", + "pn": -0.851644 + }, + { + "surface": "粘膜", + "readging": "ねんまく", + "pos": "名詞", + "pn": -0.851686 + }, + { + "surface": "下駄", + "readging": "げた", + "pos": "名詞", + "pn": -0.851974 + }, + { + "surface": "範囲", + "readging": "はんい", + "pos": "名詞", + "pn": -0.852067 + }, + { + "surface": "立場", + "readging": "たてば", + "pos": "名詞", + "pn": -0.852242 + }, + { + "surface": "屁", + "readging": "へ", + "pos": "名詞", + "pn": -0.852318 + }, + { + "surface": "惨禍", + "readging": "さんか", + "pos": "名詞", + "pn": -0.852339 + }, + { + "surface": "ぱあ", + "readging": "ぱあ", + "pos": "名詞", + "pn": -0.852368 + }, + { + "surface": "既に", + "readging": "すでに", + "pos": "副詞", + "pn": -0.852714 + }, + { + "surface": "詰", + "readging": "つめ", + "pos": "名詞", + "pn": -0.852732 + }, + { + "surface": "玩弄", + "readging": "がんろう", + "pos": "名詞", + "pn": -0.852814 + }, + { + "surface": "指", + "readging": "ゆび", + "pos": "名詞", + "pn": -0.85293 + }, + { + "surface": "隠れる", + "readging": "かくれる", + "pos": "動詞", + "pn": -0.852971 + }, + { + "surface": "裏", + "readging": "り", + "pos": "名詞", + "pn": -0.853004 + }, + { + "surface": "再び", + "readging": "ふたたび", + "pos": "副詞", + "pn": -0.853331 + }, + { + "surface": "痘痕", + "readging": "いも", + "pos": "名詞", + "pn": -0.853367 + }, + { + "surface": "男女", + "readging": "なんにょ", + "pos": "名詞", + "pn": -0.85366 + }, + { + "surface": "生白い", + "readging": "なまじろい", + "pos": "形容詞", + "pn": -0.853684 + }, + { + "surface": "種子", + "readging": "しゅし", + "pos": "名詞", + "pn": -0.854087 + }, + { + "surface": "欲", + "readging": "よく", + "pos": "名詞", + "pn": -0.854153 + }, + { + "surface": "牛", + "readging": "ぎゅう", + "pos": "名詞", + "pn": -0.854521 + }, + { + "surface": "得る", + "readging": "える", + "pos": "動詞", + "pn": -0.85461 + }, + { + "surface": "諷諫", + "readging": "ふうかん", + "pos": "名詞", + "pn": -0.854622 + }, + { + "surface": "切諫", + "readging": "せっかん", + "pos": "名詞", + "pn": -0.854622 + }, + { + "surface": "追う", + "readging": "おう", + "pos": "動詞", + "pn": -0.854682 + }, + { + "surface": "口舐り", + "readging": "くちなめずり", + "pos": "名詞", + "pn": -0.854696 + }, + { + "surface": "吊す", + "readging": "つるす", + "pos": "動詞", + "pn": -0.854711 + }, + { + "surface": "反返る", + "readging": "そりかえる", + "pos": "動詞", + "pn": -0.854889 + }, + { + "surface": "紛う", + "readging": "まがう", + "pos": "動詞", + "pn": -0.855005 + }, + { + "surface": "計算", + "readging": "けいさん", + "pos": "名詞", + "pn": -0.855308 + }, + { + "surface": "水分", + "readging": "すいぶん", + "pos": "名詞", + "pn": -0.855389 + }, + { + "surface": "愚劣", + "readging": "ぐれつ", + "pos": "名詞", + "pn": -0.855611 + }, + { + "surface": "黄", + "readging": "き", + "pos": "名詞", + "pn": -0.85563 + }, + { + "surface": "収める", + "readging": "おさめる", + "pos": "動詞", + "pn": -0.855641 + }, + { + "surface": "たくれる", + "readging": "たくれる", + "pos": "動詞", + "pn": -0.855718 + }, + { + "surface": "春", + "readging": "はる", + "pos": "名詞", + "pn": -0.855744 + }, + { + "surface": "筆", + "readging": "ふで", + "pos": "名詞", + "pn": -0.855772 + }, + { + "surface": "卑しめる", + "readging": "いやしめる", + "pos": "動詞", + "pn": -0.855831 + }, + { + "surface": "柱", + "readging": "はしら", + "pos": "名詞", + "pn": -0.855839 + }, + { + "surface": "下す", + "readging": "くだす", + "pos": "動詞", + "pn": -0.856098 + }, + { + "surface": "ごたごた", + "readging": "ごたごた", + "pos": "副詞", + "pn": -0.856297 + }, + { + "surface": "建築", + "readging": "けんちく", + "pos": "名詞", + "pn": -0.856336 + }, + { + "surface": "世話", + "readging": "せわ", + "pos": "名詞", + "pn": -0.85638 + }, + { + "surface": "捩る", + "readging": "ねじる", + "pos": "動詞", + "pn": -0.856438 + }, + { + "surface": "毀損", + "readging": "きそん", + "pos": "名詞", + "pn": -0.856503 + }, + { + "surface": "繊維", + "readging": "せんい", + "pos": "名詞", + "pn": -0.856539 + }, + { + "surface": "風炉", + "readging": "ふろ", + "pos": "名詞", + "pn": -0.856648 + }, + { + "surface": "尋ねる", + "readging": "たずねる", + "pos": "動詞", + "pn": -0.856756 + }, + { + "surface": "旅行", + "readging": "りょこう", + "pos": "名詞", + "pn": -0.857044 + }, + { + "surface": "仮託", + "readging": "かたく", + "pos": "名詞", + "pn": -0.857105 + }, + { + "surface": "一文惜しみ", + "readging": "いちもんおしみ", + "pos": "名詞", + "pn": -0.857142 + }, + { + "surface": "刑務所", + "readging": "けいむしょ", + "pos": "名詞", + "pn": -0.857341 + }, + { + "surface": "浅い", + "readging": "あさい", + "pos": "形容詞", + "pn": -0.857503 + }, + { + "surface": "緊要", + "readging": "きんよう", + "pos": "名詞", + "pn": -0.85756 + }, + { + "surface": "喫緊", + "readging": "きっきん", + "pos": "名詞", + "pn": -0.85756 + }, + { + "surface": "殴り付ける", + "readging": "なぐりつける", + "pos": "動詞", + "pn": -0.857939 + }, + { + "surface": "爛れる", + "readging": "ただれる", + "pos": "動詞", + "pn": -0.857941 + }, + { + "surface": "捕まえる", + "readging": "つかまえる", + "pos": "動詞", + "pn": -0.858127 + }, + { + "surface": "掛け", + "readging": "かけ", + "pos": "名詞", + "pn": -0.858192 + }, + { + "surface": "勝手", + "readging": "かって", + "pos": "名詞", + "pn": -0.858225 + }, + { + "surface": "盛る", + "readging": "もる", + "pos": "動詞", + "pn": -0.85823 + }, + { + "surface": "破損", + "readging": "はそん", + "pos": "名詞", + "pn": -0.858372 + }, + { + "surface": "見下げる", + "readging": "みさげる", + "pos": "動詞", + "pn": -0.858569 + }, + { + "surface": "越す", + "readging": "こす", + "pos": "動詞", + "pn": -0.858593 + }, + { + "surface": "整える", + "readging": "ととのえる", + "pos": "動詞", + "pn": -0.858637 + }, + { + "surface": "現象", + "readging": "げんしょう", + "pos": "名詞", + "pn": -0.858908 + }, + { + "surface": "反っくり返る", + "readging": "そっくりかえる", + "pos": "動詞", + "pn": -0.859157 + }, + { + "surface": "哺乳", + "readging": "ほにゅう", + "pos": "名詞", + "pn": -0.859505 + }, + { + "surface": "野球", + "readging": "やきゅう", + "pos": "名詞", + "pn": -0.859582 + }, + { + "surface": "草木", + "readging": "くさき", + "pos": "名詞", + "pn": -0.859611 + }, + { + "surface": "急ぐ", + "readging": "いそぐ", + "pos": "動詞", + "pn": -0.859686 + }, + { + "surface": "期間", + "readging": "きかん", + "pos": "名詞", + "pn": -0.859713 + }, + { + "surface": "諂う", + "readging": "へつらう", + "pos": "動詞", + "pn": -0.859751 + }, + { + "surface": "事件", + "readging": "じけん", + "pos": "名詞", + "pn": -0.85996 + }, + { + "surface": "幼児", + "readging": "ようじ", + "pos": "名詞", + "pn": -0.859977 + }, + { + "surface": "飾り", + "readging": "かざり", + "pos": "名詞", + "pn": -0.86023 + }, + { + "surface": "通る", + "readging": "とおる", + "pos": "動詞", + "pn": -0.860444 + }, + { + "surface": "群がる", + "readging": "むらがる", + "pos": "動詞", + "pn": -0.860639 + }, + { + "surface": "管", + "readging": "くだ", + "pos": "名詞", + "pn": -0.860829 + }, + { + "surface": "握る", + "readging": "にぎる", + "pos": "動詞", + "pn": -0.8612 + }, + { + "surface": "自由", + "readging": "じゆう", + "pos": "名詞", + "pn": -0.86135 + }, + { + "surface": "乳児", + "readging": "にゅうじ", + "pos": "名詞", + "pn": -0.861436 + }, + { + "surface": "被せる", + "readging": "かぶせる", + "pos": "動詞", + "pn": -0.861523 + }, + { + "surface": "団体", + "readging": "だんたい", + "pos": "名詞", + "pn": -0.86154 + }, + { + "surface": "消閑", + "readging": "しょうかん", + "pos": "名詞", + "pn": -0.861582 + }, + { + "surface": "なす", + "readging": "なす", + "pos": "動詞", + "pn": -0.861773 + }, + { + "surface": "退く", + "readging": "のく", + "pos": "動詞", + "pn": -0.862116 + }, + { + "surface": "求める", + "readging": "もとめる", + "pos": "動詞", + "pn": -0.863012 + }, + { + "surface": "床", + "readging": "ゆか", + "pos": "名詞", + "pn": -0.863288 + }, + { + "surface": "へっぴり虫", + "readging": "へっぴりむし", + "pos": "名詞", + "pn": -0.863622 + }, + { + "surface": "体長", + "readging": "たいちょう", + "pos": "名詞", + "pn": -0.863755 + }, + { + "surface": "除く", + "readging": "のぞく", + "pos": "動詞", + "pn": -0.863786 + }, + { + "surface": "池", + "readging": "ち", + "pos": "名詞", + "pn": -0.864211 + }, + { + "surface": "水中", + "readging": "すいちゅう", + "pos": "名詞", + "pn": -0.864701 + }, + { + "surface": "自動車", + "readging": "じどうしゃ", + "pos": "名詞", + "pn": -0.864745 + }, + { + "surface": "一旦", + "readging": "いったん", + "pos": "副詞", + "pn": -0.864766 + }, + { + "surface": "意見", + "readging": "いけん", + "pos": "名詞", + "pn": -0.86477 + }, + { + "surface": "詰める", + "readging": "つめる", + "pos": "動詞", + "pn": -0.864797 + }, + { + "surface": "攪乱", + "readging": "こうらん", + "pos": "名詞", + "pn": -0.864848 + }, + { + "surface": "減る", + "readging": "へる", + "pos": "動詞", + "pn": -0.864857 + }, + { + "surface": "心臓", + "readging": "しんぞう", + "pos": "名詞", + "pn": -0.864865 + }, + { + "surface": "招く", + "readging": "まねく", + "pos": "動詞", + "pn": -0.865615 + }, + { + "surface": "上る", + "readging": "のぼる", + "pos": "動詞", + "pn": -0.865756 + }, + { + "surface": "隔たる", + "readging": "へだたる", + "pos": "動詞", + "pn": -0.865821 + }, + { + "surface": "異常", + "readging": "いじょう", + "pos": "名詞", + "pn": -0.865919 + }, + { + "surface": "液", + "readging": "えき", + "pos": "名詞", + "pn": -0.866576 + }, + { + "surface": "西洋", + "readging": "せいよう", + "pos": "名詞", + "pn": -0.866656 + }, + { + "surface": "笑う", + "readging": "わらう", + "pos": "動詞", + "pn": -0.867061 + }, + { + "surface": "上下", + "readging": "じょうげ", + "pos": "名詞", + "pn": -0.867092 + }, + { + "surface": "汁", + "readging": "つゆ", + "pos": "名詞", + "pn": -0.867303 + }, + { + "surface": "手紙", + "readging": "てがみ", + "pos": "名詞", + "pn": -0.867352 + }, + { + "surface": "常緑", + "readging": "じょうりょく", + "pos": "名詞", + "pn": -0.86756 + }, + { + "surface": "七", + "readging": "なな", + "pos": "名詞", + "pn": -0.867623 + }, + { + "surface": "割る", + "readging": "わる", + "pos": "動詞", + "pn": -0.867629 + }, + { + "surface": "品物", + "readging": "しなもの", + "pos": "名詞", + "pn": -0.867758 + }, + { + "surface": "談判", + "readging": "だんぱん", + "pos": "名詞", + "pn": -0.867951 + }, + { + "surface": "冬", + "readging": "ふゆ", + "pos": "名詞", + "pn": -0.868095 + }, + { + "surface": "繕う", + "readging": "つくろう", + "pos": "動詞", + "pn": -0.86821 + }, + { + "surface": "蓄える", + "readging": "たくわえる", + "pos": "動詞", + "pn": -0.868327 + }, + { + "surface": "端", + "readging": "はな", + "pos": "名詞", + "pn": -0.868347 + }, + { + "surface": "代る代る", + "readging": "かわるがわる", + "pos": "副詞", + "pn": -0.868406 + }, + { + "surface": "氷", + "readging": "ひょう", + "pos": "名詞", + "pn": -0.868486 + }, + { + "surface": "粘る", + "readging": "ねばる", + "pos": "動詞", + "pn": -0.868515 + }, + { + "surface": "滅びる", + "readging": "ほろびる", + "pos": "動詞", + "pn": -0.868659 + }, + { + "surface": "命令", + "readging": "めいれい", + "pos": "名詞", + "pn": -0.868737 + }, + { + "surface": "籠", + "readging": "ろう", + "pos": "名詞", + "pn": -0.868815 + }, + { + "surface": "込める", + "readging": "こめる", + "pos": "動詞", + "pn": -0.869133 + }, + { + "surface": "離れる", + "readging": "はなれる", + "pos": "動詞", + "pn": -0.8692 + }, + { + "surface": "愚者", + "readging": "ぐしゃ", + "pos": "名詞", + "pn": -0.869217 + }, + { + "surface": "愚人", + "readging": "ぐじん", + "pos": "名詞", + "pn": -0.869657 + }, + { + "surface": "移る", + "readging": "うつる", + "pos": "動詞", + "pn": -0.869777 + }, + { + "surface": "流行", + "readging": "りゅうこう", + "pos": "名詞", + "pn": -0.869841 + }, + { + "surface": "締まる", + "readging": "しまる", + "pos": "動詞", + "pn": -0.869885 + }, + { + "surface": "遠い", + "readging": "とおい", + "pos": "形容詞", + "pn": -0.869921 + }, + { + "surface": "脅かす", + "readging": "おびやかす", + "pos": "動詞", + "pn": -0.870008 + }, + { + "surface": "覗く", + "readging": "のぞく", + "pos": "動詞", + "pn": -0.870018 + }, + { + "surface": "愚物", + "readging": "ぐぶつ", + "pos": "名詞", + "pn": -0.870129 + }, + { + "surface": "縫う", + "readging": "ぬう", + "pos": "動詞", + "pn": -0.870159 + }, + { + "surface": "匪賊", + "readging": "ひぞく", + "pos": "名詞", + "pn": -0.870259 + }, + { + "surface": "びしょ濡れ", + "readging": "びしょぬれ", + "pos": "名詞", + "pn": -0.870588 + }, + { + "surface": "外国", + "readging": "とつくに", + "pos": "名詞", + "pn": -0.87085 + }, + { + "surface": "食事", + "readging": "しょくじ", + "pos": "名詞", + "pn": -0.870882 + }, + { + "surface": "描く", + "readging": "えがく", + "pos": "動詞", + "pn": -0.871083 + }, + { + "surface": "薬", + "readging": "やく", + "pos": "名詞", + "pn": -0.871112 + }, + { + "surface": "間引く", + "readging": "まびく", + "pos": "動詞", + "pn": -0.871268 + }, + { + "surface": "碧海", + "readging": "へきかい", + "pos": "名詞", + "pn": -0.871459 + }, + { + "surface": "海の原", + "readging": "わたのはら", + "pos": "名詞", + "pn": -0.871459 + }, + { + "surface": "滄溟", + "readging": "そうめい", + "pos": "名詞", + "pn": -0.871459 + }, + { + "surface": "肌", + "readging": "はだえ", + "pos": "名詞", + "pn": -0.871718 + }, + { + "surface": "間違える", + "readging": "まちがえる", + "pos": "動詞", + "pn": -0.871925 + }, + { + "surface": "戸", + "readging": "と", + "pos": "名詞", + "pn": -0.872041 + }, + { + "surface": "重ねる", + "readging": "かさねる", + "pos": "動詞", + "pn": -0.872174 + }, + { + "surface": "隔てる", + "readging": "へだてる", + "pos": "動詞", + "pn": -0.872238 + }, + { + "surface": "縁側", + "readging": "えんがわ", + "pos": "名詞", + "pn": -0.872242 + }, + { + "surface": "熱", + "readging": "ねつ", + "pos": "名詞", + "pn": -0.872345 + }, + { + "surface": "被害", + "readging": "ひがい", + "pos": "名詞", + "pn": -0.87245 + }, + { + "surface": "貧乏", + "readging": "びんぼう", + "pos": "名詞", + "pn": -0.872747 + }, + { + "surface": "揉む", + "readging": "もむ", + "pos": "動詞", + "pn": -0.87279 + }, + { + "surface": "刺", + "readging": "とげ", + "pos": "名詞", + "pn": -0.872849 + }, + { + "surface": "網", + "readging": "もう", + "pos": "名詞", + "pn": -0.872901 + }, + { + "surface": "屈める", + "readging": "かがめる", + "pos": "動詞", + "pn": -0.873088 + }, + { + "surface": "細細", + "readging": "こまごま", + "pos": "副詞", + "pn": -0.873132 + }, + { + "surface": "作用", + "readging": "さよう", + "pos": "名詞", + "pn": -0.873457 + }, + { + "surface": "しゃくる", + "readging": "しゃくる", + "pos": "動詞", + "pn": -0.873537 + }, + { + "surface": "犯罪", + "readging": "はんざい", + "pos": "名詞", + "pn": -0.873679 + }, + { + "surface": "砂嘴", + "readging": "さし", + "pos": "名詞", + "pn": -0.873696 + }, + { + "surface": "写真", + "readging": "しゃしん", + "pos": "名詞", + "pn": -0.873725 + }, + { + "surface": "柄", + "readging": "へい", + "pos": "名詞", + "pn": -0.874026 + }, + { + "surface": "遊び", + "readging": "すさび", + "pos": "名詞", + "pn": -0.874069 + }, + { + "surface": "縄", + "readging": "なわ", + "pos": "名詞", + "pn": -0.874492 + }, + { + "surface": "懐紙", + "readging": "ふところがみ", + "pos": "名詞", + "pn": -0.874612 + }, + { + "surface": "物体", + "readging": "ぶったい", + "pos": "名詞", + "pn": -0.874683 + }, + { + "surface": "鬼", + "readging": "き", + "pos": "名詞", + "pn": -0.874746 + }, + { + "surface": "籍", + "readging": "せき", + "pos": "名詞", + "pn": -0.874751 + }, + { + "surface": "両手", + "readging": "りょうて", + "pos": "名詞", + "pn": -0.874776 + }, + { + "surface": "攻撃", + "readging": "こうげき", + "pos": "名詞", + "pn": -0.874915 + }, + { + "surface": "怠ける", + "readging": "なまける", + "pos": "動詞", + "pn": -0.875011 + }, + { + "surface": "舟", + "readging": "ふね", + "pos": "名詞", + "pn": -0.875157 + }, + { + "surface": "平凡", + "readging": "へいぼん", + "pos": "名詞", + "pn": -0.875661 + }, + { + "surface": "木綿", + "readging": "もめん", + "pos": "名詞", + "pn": -0.875795 + }, + { + "surface": "弔う", + "readging": "とむらう", + "pos": "動詞", + "pn": -0.875809 + }, + { + "surface": "全身", + "readging": "ぜんしん", + "pos": "名詞", + "pn": -0.875833 + }, + { + "surface": "運ぶ", + "readging": "はこぶ", + "pos": "動詞", + "pn": -0.876152 + }, + { + "surface": "筋肉", + "readging": "きんにく", + "pos": "名詞", + "pn": -0.876193 + }, + { + "surface": "こっそり", + "readging": "こっそり", + "pos": "副詞", + "pn": -0.876533 + }, + { + "surface": "血液", + "readging": "けつえき", + "pos": "名詞", + "pn": -0.876672 + }, + { + "surface": "残る", + "readging": "のこる", + "pos": "動詞", + "pn": -0.876804 + }, + { + "surface": "地面", + "readging": "じめん", + "pos": "名詞", + "pn": -0.877308 + }, + { + "surface": "責任", + "readging": "せきにん", + "pos": "名詞", + "pn": -0.877473 + }, + { + "surface": "動作", + "readging": "どうさ", + "pos": "名詞", + "pn": -0.877699 + }, + { + "surface": "味", + "readging": "み", + "pos": "名詞", + "pn": -0.877852 + }, + { + "surface": "砕く", + "readging": "くだく", + "pos": "動詞", + "pn": -0.877885 + }, + { + "surface": "固める", + "readging": "かためる", + "pos": "動詞", + "pn": -0.877928 + }, + { + "surface": "周囲", + "readging": "しゅうい", + "pos": "名詞", + "pn": -0.877997 + }, + { + "surface": "咳嗽", + "readging": "がいそう", + "pos": "名詞", + "pn": -0.878192 + }, + { + "surface": "綿", + "readging": "わた", + "pos": "名詞", + "pn": -0.878285 + }, + { + "surface": "多く", + "readging": "おおく", + "pos": "名詞", + "pn": -0.878433 + }, + { + "surface": "取粉", + "readging": "とりこ", + "pos": "名詞", + "pn": -0.878764 + }, + { + "surface": "括る", + "readging": "くくる", + "pos": "動詞", + "pn": -0.878914 + }, + { + "surface": "尾", + "readging": "び", + "pos": "名詞", + "pn": -0.879174 + }, + { + "surface": "婦人", + "readging": "ふじん", + "pos": "名詞", + "pn": -0.879199 + }, + { + "surface": "文", + "readging": "もん", + "pos": "名詞", + "pn": -0.879453 + }, + { + "surface": "攪拌", + "readging": "こうはん", + "pos": "名詞", + "pn": -0.879561 + }, + { + "surface": "穴", + "readging": "あな", + "pos": "名詞", + "pn": -0.879778 + }, + { + "surface": "行為", + "readging": "こうい", + "pos": "名詞", + "pn": -0.880065 + }, + { + "surface": "争う", + "readging": "あらそう", + "pos": "動詞", + "pn": -0.880231 + }, + { + "surface": "怒り", + "readging": "いかり", + "pos": "名詞", + "pn": -0.880267 + }, + { + "surface": "屈む", + "readging": "かがむ", + "pos": "動詞", + "pn": -0.880319 + }, + { + "surface": "汗", + "readging": "かん", + "pos": "名詞", + "pn": -0.880328 + }, + { + "surface": "異臭", + "readging": "いしゅう", + "pos": "名詞", + "pn": -0.880513 + }, + { + "surface": "体臭", + "readging": "たいしゅう", + "pos": "名詞", + "pn": -0.880513 + }, + { + "surface": "其の物", + "readging": "そのもの", + "pos": "名詞", + "pn": -0.880689 + }, + { + "surface": "地位", + "readging": "ちい", + "pos": "名詞", + "pn": -0.880775 + }, + { + "surface": "雲", + "readging": "くも", + "pos": "名詞", + "pn": -0.880806 + }, + { + "surface": "量", + "readging": "りょう", + "pos": "名詞", + "pn": -0.880877 + }, + { + "surface": "流れる", + "readging": "ながれる", + "pos": "動詞", + "pn": -0.880979 + }, + { + "surface": "墨", + "readging": "ぼく", + "pos": "名詞", + "pn": -0.881429 + }, + { + "surface": "姿", + "readging": "すがた", + "pos": "名詞", + "pn": -0.882002 + }, + { + "surface": "肥料", + "readging": "ひりょう", + "pos": "名詞", + "pn": -0.882106 + }, + { + "surface": "考える", + "readging": "かんがえる", + "pos": "動詞", + "pn": -0.882207 + }, + { + "surface": "反対", + "readging": "はんたい", + "pos": "名詞", + "pn": -0.882477 + }, + { + "surface": "流れ", + "readging": "ながれ", + "pos": "名詞", + "pn": -0.882641 + }, + { + "surface": "約束", + "readging": "やくそく", + "pos": "名詞", + "pn": -0.882725 + }, + { + "surface": "幅", + "readging": "ふく", + "pos": "名詞", + "pn": -0.882885 + }, + { + "surface": "越える", + "readging": "こえる", + "pos": "動詞", + "pn": -0.882984 + }, + { + "surface": "投げる", + "readging": "なげる", + "pos": "動詞", + "pn": -0.882987 + }, + { + "surface": "数える", + "readging": "かぞえる", + "pos": "動詞", + "pn": -0.88352 + }, + { + "surface": "戻る", + "readging": "もどる", + "pos": "動詞", + "pn": -0.884087 + }, + { + "surface": "手足", + "readging": "てあし", + "pos": "名詞", + "pn": -0.88436 + }, + { + "surface": "費途", + "readging": "ひと", + "pos": "名詞", + "pn": -0.884654 + }, + { + "surface": "鎌", + "readging": "かま", + "pos": "名詞", + "pn": -0.884811 + }, + { + "surface": "一時", + "readging": "ひととき", + "pos": "名詞", + "pn": -0.884964 + }, + { + "surface": "解ける", + "readging": "とける", + "pos": "動詞", + "pn": -0.885279 + }, + { + "surface": "羽", + "readging": "わ", + "pos": "名詞", + "pn": -0.885431 + }, + { + "surface": "記号", + "readging": "きごう", + "pos": "名詞", + "pn": -0.885465 + }, + { + "surface": "鍋", + "readging": "なべ", + "pos": "名詞", + "pn": -0.885892 + }, + { + "surface": "掛ける", + "readging": "かける", + "pos": "動詞", + "pn": -0.88596 + }, + { + "surface": "真似る", + "readging": "まねる", + "pos": "動詞", + "pn": -0.886164 + }, + { + "surface": "継ぐ", + "readging": "つぐ", + "pos": "動詞", + "pn": -0.886426 + }, + { + "surface": "遅れる", + "readging": "おくれる", + "pos": "動詞", + "pn": -0.886762 + }, + { + "surface": "間違う", + "readging": "まちがう", + "pos": "動詞", + "pn": -0.886858 + }, + { + "surface": "席", + "readging": "せき", + "pos": "名詞", + "pn": -0.886953 + }, + { + "surface": "留める", + "readging": "とどめる", + "pos": "動詞", + "pn": -0.88717 + }, + { + "surface": "左右", + "readging": "さゆう", + "pos": "名詞", + "pn": -0.887207 + }, + { + "surface": "払う", + "readging": "はらう", + "pos": "動詞", + "pn": -0.887511 + }, + { + "surface": "延びる", + "readging": "のびる", + "pos": "動詞", + "pn": -0.887651 + }, + { + "surface": "胴", + "readging": "どう", + "pos": "名詞", + "pn": -0.887751 + }, + { + "surface": "帯", + "readging": "たい", + "pos": "名詞", + "pn": -0.88796 + }, + { + "surface": "全く", + "readging": "まったく", + "pos": "副詞", + "pn": -0.888037 + }, + { + "surface": "灯火", + "readging": "ともしび", + "pos": "名詞", + "pn": -0.888148 + }, + { + "surface": "病む", + "readging": "やむ", + "pos": "動詞", + "pn": -0.888251 + }, + { + "surface": "質", + "readging": "たち", + "pos": "名詞", + "pn": -0.888679 + }, + { + "surface": "煙", + "readging": "けむり", + "pos": "名詞", + "pn": -0.888686 + }, + { + "surface": "進む", + "readging": "すすむ", + "pos": "動詞", + "pn": -0.888885 + }, + { + "surface": "麦", + "readging": "むぎ", + "pos": "名詞", + "pn": -0.889405 + }, + { + "surface": "更に", + "readging": "さらに", + "pos": "副詞", + "pn": -0.889715 + }, + { + "surface": "袋", + "readging": "ふくろ", + "pos": "名詞", + "pn": -0.889898 + }, + { + "surface": "内部", + "readging": "ないぶ", + "pos": "名詞", + "pn": -0.890058 + }, + { + "surface": "難治", + "readging": "なんじ", + "pos": "名詞", + "pn": -0.890222 + }, + { + "surface": "流す", + "readging": "ながす", + "pos": "動詞", + "pn": -0.8903 + }, + { + "surface": "七草", + "readging": "ななくさ", + "pos": "名詞", + "pn": -0.890419 + }, + { + "surface": "中央", + "readging": "ちゅうおう", + "pos": "名詞", + "pn": -0.890442 + }, + { + "surface": "添える", + "readging": "そえる", + "pos": "動詞", + "pn": -0.890607 + }, + { + "surface": "戦く", + "readging": "おののく", + "pos": "動詞", + "pn": -0.890952 + }, + { + "surface": "名", + "readging": "めい", + "pos": "名詞", + "pn": -0.890971 + }, + { + "surface": "延す", + "readging": "のばす", + "pos": "動詞", + "pn": -0.891212 + }, + { + "surface": "手慰み", + "readging": "てなぐさみ", + "pos": "名詞", + "pn": -0.89123 + }, + { + "surface": "鉄漿", + "readging": "かね", + "pos": "名詞", + "pn": -0.891328 + }, + { + "surface": "膨らむ", + "readging": "ふくらむ", + "pos": "動詞", + "pn": -0.891689 + }, + { + "surface": "競技", + "readging": "きょうぎ", + "pos": "名詞", + "pn": -0.89181 + }, + { + "surface": "どうして", + "readging": "どうしても", + "pos": "副詞", + "pn": -0.891896 + }, + { + "surface": "仕舞う", + "readging": "しまう", + "pos": "動詞", + "pn": -0.891936 + }, + { + "surface": "職業", + "readging": "しょくぎょう", + "pos": "名詞", + "pn": -0.892474 + }, + { + "surface": "太る", + "readging": "ふとる", + "pos": "動詞", + "pn": -0.89255 + }, + { + "surface": "刷", + "readging": "すり", + "pos": "名詞", + "pn": -0.892764 + }, + { + "surface": "半分", + "readging": "はんぶん", + "pos": "名詞", + "pn": -0.892832 + }, + { + "surface": "輩", + "readging": "ばら", + "pos": "名詞", + "pn": -0.893899 + }, + { + "surface": "電気", + "readging": "でんき", + "pos": "名詞", + "pn": -0.893991 + }, + { + "surface": "負ける", + "readging": "まける", + "pos": "動詞", + "pn": -0.894009 + }, + { + "surface": "呼吸", + "readging": "こきゅう", + "pos": "名詞", + "pn": -0.894019 + }, + { + "surface": "利用", + "readging": "りよう", + "pos": "名詞", + "pn": -0.894283 + }, + { + "surface": "騒ぎ", + "readging": "さわぎ", + "pos": "名詞", + "pn": -0.894284 + }, + { + "surface": "跳ねる", + "readging": "はねる", + "pos": "動詞", + "pn": -0.894297 + }, + { + "surface": "擦過", + "readging": "さっか", + "pos": "名詞", + "pn": -0.894301 + }, + { + "surface": "交じる", + "readging": "まじる", + "pos": "動詞", + "pn": -0.894339 + }, + { + "surface": "胃", + "readging": "い", + "pos": "名詞", + "pn": -0.894847 + }, + { + "surface": "ごみ", + "readging": "ごみ", + "pos": "名詞", + "pn": -0.895066 + }, + { + "surface": "昆虫", + "readging": "こんちゅう", + "pos": "名詞", + "pn": -0.895153 + }, + { + "surface": "一般", + "readging": "いっぱん", + "pos": "名詞", + "pn": -0.895241 + }, + { + "surface": "渡る", + "readging": "わたる", + "pos": "動詞", + "pn": -0.895264 + }, + { + "surface": "ぼる", + "readging": "ぼる", + "pos": "動詞", + "pn": -0.895538 + }, + { + "surface": "望", + "readging": "もち", + "pos": "名詞", + "pn": -0.895583 + }, + { + "surface": "纏める", + "readging": "まとめる", + "pos": "動詞", + "pn": -0.895693 + }, + { + "surface": "位置", + "readging": "いち", + "pos": "名詞", + "pn": -0.895878 + }, + { + "surface": "扶持", + "readging": "ふち", + "pos": "名詞", + "pn": -0.896415 + }, + { + "surface": "男", + "readging": "なん", + "pos": "名詞", + "pn": -0.896437 + }, + { + "surface": "狙う", + "readging": "ねらう", + "pos": "動詞", + "pn": -0.896546 + }, + { + "surface": "却って", + "readging": "かえって", + "pos": "副詞", + "pn": -0.896573 + }, + { + "surface": "受継ぐ", + "readging": "うけつぐ", + "pos": "動詞", + "pn": -0.896584 + }, + { + "surface": "厚い", + "readging": "あつい", + "pos": "形容詞", + "pn": -0.89697 + }, + { + "surface": "私利", + "readging": "しり", + "pos": "名詞", + "pn": -0.897038 + }, + { + "surface": "方方", + "readging": "ほうぼう", + "pos": "名詞", + "pn": -0.897041 + }, + { + "surface": "光", + "readging": "ひかり", + "pos": "名詞", + "pn": -0.897571 + }, + { + "surface": "調べる", + "readging": "しらべる", + "pos": "動詞", + "pn": -0.897863 + }, + { + "surface": "詩話", + "readging": "しわ", + "pos": "名詞", + "pn": -0.897981 + }, + { + "surface": "嫌う", + "readging": "きらう", + "pos": "動詞", + "pn": -0.898102 + }, + { + "surface": "すっかり", + "readging": "すっかり", + "pos": "副詞", + "pn": -0.898129 + }, + { + "surface": "下がる", + "readging": "さがる", + "pos": "動詞", + "pn": -0.898154 + }, + { + "surface": "乾く", + "readging": "かわく", + "pos": "動詞", + "pn": -0.89859 + }, + { + "surface": "地方", + "readging": "ちほう", + "pos": "名詞", + "pn": -0.898596 + }, + { + "surface": "反る", + "readging": "そる", + "pos": "動詞", + "pn": -0.899007 + }, + { + "surface": "容器", + "readging": "ようき", + "pos": "名詞", + "pn": -0.899113 + }, + { + "surface": "並べる", + "readging": "ならべる", + "pos": "動詞", + "pn": -0.899319 + }, + { + "surface": "潰す", + "readging": "つぶす", + "pos": "動詞", + "pn": -0.899725 + }, + { + "surface": "足る", + "readging": "たる", + "pos": "動詞", + "pn": -0.899877 + }, + { + "surface": "鼠", + "readging": "ねずみ", + "pos": "名詞", + "pn": -0.899903 + }, + { + "surface": "年", + "readging": "ねん", + "pos": "名詞", + "pn": -0.899926 + }, + { + "surface": "炒める", + "readging": "いためる", + "pos": "動詞", + "pn": -0.899941 + }, + { + "surface": "削る", + "readging": "けずる", + "pos": "動詞", + "pn": -0.900108 + }, + { + "surface": "尖る", + "readging": "とがる", + "pos": "動詞", + "pn": -0.900789 + }, + { + "surface": "空", + "readging": "そら", + "pos": "名詞", + "pn": -0.900915 + }, + { + "surface": "未熟", + "readging": "みじゅく", + "pos": "名詞", + "pn": -0.900988 + }, + { + "surface": "文書", + "readging": "もんじょ", + "pos": "名詞", + "pn": -0.901535 + }, + { + "surface": "眠る", + "readging": "ねむる", + "pos": "動詞", + "pn": -0.901715 + }, + { + "surface": "降ろす", + "readging": "おろす", + "pos": "動詞", + "pn": -0.901741 + }, + { + "surface": "消す", + "readging": "けす", + "pos": "動詞", + "pn": -0.901965 + }, + { + "surface": "本", + "readging": "ほん", + "pos": "名詞", + "pn": -0.902223 + }, + { + "surface": "思う", + "readging": "おもう", + "pos": "動詞", + "pn": -0.902339 + }, + { + "surface": "鉄", + "readging": "てつ", + "pos": "名詞", + "pn": -0.902662 + }, + { + "surface": "円い", + "readging": "まるい", + "pos": "形容詞", + "pn": -0.90274 + }, + { + "surface": "果てる", + "readging": "はてる", + "pos": "動詞", + "pn": -0.90336 + }, + { + "surface": "日", + "readging": "にち", + "pos": "名詞", + "pn": -0.903573 + }, + { + "surface": "通夜", + "readging": "つや", + "pos": "名詞", + "pn": -0.903595 + }, + { + "surface": "包む", + "readging": "つつむ", + "pos": "動詞", + "pn": -0.904047 + }, + { + "surface": "台", + "readging": "だい", + "pos": "名詞", + "pn": -0.904167 + }, + { + "surface": "場", + "readging": "ば", + "pos": "名詞", + "pn": -0.904511 + }, + { + "surface": "滴る", + "readging": "したたる", + "pos": "動詞", + "pn": -0.904517 + }, + { + "surface": "自生", + "readging": "じせい", + "pos": "名詞", + "pn": -0.904562 + }, + { + "surface": "一部", + "readging": "いちぶ", + "pos": "名詞", + "pn": -0.904671 + }, + { + "surface": "担ぐ", + "readging": "かつぐ", + "pos": "動詞", + "pn": -0.90482 + }, + { + "surface": "途中", + "readging": "とちゅう", + "pos": "名詞", + "pn": -0.905243 + }, + { + "surface": "身分", + "readging": "みぶん", + "pos": "名詞", + "pn": -0.905482 + }, + { + "surface": "刀", + "readging": "とう", + "pos": "名詞", + "pn": -0.905509 + }, + { + "surface": "地", + "readging": "ち", + "pos": "名詞", + "pn": -0.905732 + }, + { + "surface": "結果", + "readging": "けっか", + "pos": "名詞", + "pn": -0.905837 + }, + { + "surface": "近く", + "readging": "ちかく", + "pos": "名詞", + "pn": -0.906423 + }, + { + "surface": "鞍", + "readging": "くら", + "pos": "名詞", + "pn": -0.906453 + }, + { + "surface": "洗う", + "readging": "あらう", + "pos": "動詞", + "pn": -0.906608 + }, + { + "surface": "芝居", + "readging": "しばい", + "pos": "名詞", + "pn": -0.907388 + }, + { + "surface": "吸う", + "readging": "すう", + "pos": "動詞", + "pn": -0.907566 + }, + { + "surface": "根", + "readging": "ね", + "pos": "名詞", + "pn": -0.907579 + }, + { + "surface": "沈む", + "readging": "しずむ", + "pos": "動詞", + "pn": -0.907695 + }, + { + "surface": "変化", + "readging": "へんげ", + "pos": "名詞", + "pn": -0.90786 + }, + { + "surface": "蘆", + "readging": "あし", + "pos": "名詞", + "pn": -0.907952 + }, + { + "surface": "黒", + "readging": "こく", + "pos": "名詞", + "pn": -0.908058 + }, + { + "surface": "蛇", + "readging": "へび", + "pos": "名詞", + "pn": -0.908072 + }, + { + "surface": "叩く", + "readging": "たたく", + "pos": "動詞", + "pn": -0.908188 + }, + { + "surface": "赤", + "readging": "せき", + "pos": "名詞", + "pn": -0.908334 + }, + { + "surface": "種種", + "readging": "しゅじゅ", + "pos": "名詞", + "pn": -0.908335 + }, + { + "surface": "付く", + "readging": "づく", + "pos": "動詞", + "pn": -0.908358 + }, + { + "surface": "敷く", + "readging": "しく", + "pos": "動詞", + "pn": -0.908399 + }, + { + "surface": "破る", + "readging": "やぶる", + "pos": "動詞", + "pn": -0.908537 + }, + { + "surface": "肩", + "readging": "けん", + "pos": "名詞", + "pn": -0.908549 + }, + { + "surface": "目的", + "readging": "もくてき", + "pos": "名詞", + "pn": -0.908968 + }, + { + "surface": "程度", + "readging": "ていど", + "pos": "名詞", + "pn": -0.909128 + }, + { + "surface": "上辺", + "readging": "うわべ", + "pos": "名詞", + "pn": -0.90934 + }, + { + "surface": "ぷんぷん", + "readging": "ぷんぷん", + "pos": "副詞", + "pn": -0.909426 + }, + { + "surface": "場合", + "readging": "ばあい", + "pos": "名詞", + "pn": -0.909501 + }, + { + "surface": "編む", + "readging": "あむ", + "pos": "動詞", + "pn": -0.909674 + }, + { + "surface": "意", + "readging": "い", + "pos": "名詞", + "pn": -0.91007 + }, + { + "surface": "中心", + "readging": "ちゅうしん", + "pos": "名詞", + "pn": -0.910094 + }, + { + "surface": "辺", + "readging": "ほとり", + "pos": "名詞", + "pn": -0.910182 + }, + { + "surface": "野菜", + "readging": "やさい", + "pos": "名詞", + "pn": -0.91027 + }, + { + "surface": "壁", + "readging": "へき", + "pos": "名詞", + "pn": -0.910275 + }, + { + "surface": "平たい", + "readging": "ひらたい", + "pos": "形容詞", + "pn": -0.911069 + }, + { + "surface": "統べる", + "readging": "すべる", + "pos": "動詞", + "pn": -0.911073 + }, + { + "surface": "箱", + "readging": "はこ", + "pos": "名詞", + "pn": -0.911124 + }, + { + "surface": "六", + "readging": "ろく", + "pos": "名詞", + "pn": -0.911482 + }, + { + "surface": "髑髏", + "readging": "されこうべ", + "pos": "名詞", + "pn": -0.911587 + }, + { + "surface": "脅す", + "readging": "おどす", + "pos": "動詞", + "pn": -0.911638 + }, + { + "surface": "面", + "readging": "めん", + "pos": "名詞", + "pn": -0.911646 + }, + { + "surface": "虫", + "readging": "むし", + "pos": "名詞", + "pn": -0.911717 + }, + { + "surface": "蒸す", + "readging": "むす", + "pos": "動詞", + "pn": -0.911734 + }, + { + "surface": "塩", + "readging": "しお", + "pos": "名詞", + "pn": -0.912202 + }, + { + "surface": "詫びる", + "readging": "わびる", + "pos": "動詞", + "pn": -0.912204 + }, + { + "surface": "護謨", + "readging": "ゴム", + "pos": "名詞", + "pn": -0.912206 + }, + { + "surface": "弱る", + "readging": "よわる", + "pos": "動詞", + "pn": -0.912282 + }, + { + "surface": "輪", + "readging": "わ", + "pos": "名詞", + "pn": -0.912371 + }, + { + "surface": "戒める", + "readging": "いましめる", + "pos": "動詞", + "pn": -0.912803 + }, + { + "surface": "袖", + "readging": "そで", + "pos": "名詞", + "pn": -0.913027 + }, + { + "surface": "月", + "readging": "つき", + "pos": "名詞", + "pn": -0.91303 + }, + { + "surface": "済む", + "readging": "すむ", + "pos": "動詞", + "pn": -0.913142 + }, + { + "surface": "炎症", + "readging": "えんしょう", + "pos": "名詞", + "pn": -0.913236 + }, + { + "surface": "似せる", + "readging": "にせる", + "pos": "動詞", + "pn": -0.913544 + }, + { + "surface": "原因", + "readging": "げんいん", + "pos": "名詞", + "pn": -0.913752 + }, + { + "surface": "茶色", + "readging": "ちゃいろ", + "pos": "名詞", + "pn": -0.914167 + }, + { + "surface": "材料", + "readging": "ざいりょう", + "pos": "名詞", + "pn": -0.914231 + }, + { + "surface": "織物", + "readging": "おりもの", + "pos": "名詞", + "pn": -0.914391 + }, + { + "surface": "役", + "readging": "やく", + "pos": "名詞", + "pn": -0.9144 + }, + { + "surface": "相撲", + "readging": "すもう", + "pos": "名詞", + "pn": -0.914468 + }, + { + "surface": "波", + "readging": "は", + "pos": "名詞", + "pn": -0.914558 + }, + { + "surface": "滴", + "readging": "しずく", + "pos": "名詞", + "pn": -0.914637 + }, + { + "surface": "絞る", + "readging": "しぼる", + "pos": "動詞", + "pn": -0.914763 + }, + { + "surface": "組む", + "readging": "くむ", + "pos": "動詞", + "pn": -0.914768 + }, + { + "surface": "態と", + "readging": "わざと", + "pos": "副詞", + "pn": -0.914788 + }, + { + "surface": "佇立", + "readging": "ちょりつ", + "pos": "名詞", + "pn": -0.914914 + }, + { + "surface": "荷物", + "readging": "にもつ", + "pos": "名詞", + "pn": -0.915009 + }, + { + "surface": "茶", + "readging": "ちゃ", + "pos": "名詞", + "pn": -0.915116 + }, + { + "surface": "裾", + "readging": "すそ", + "pos": "名詞", + "pn": -0.915181 + }, + { + "surface": "枕", + "readging": "まくら", + "pos": "名詞", + "pn": -0.915419 + }, + { + "surface": "貴人", + "readging": "きじん", + "pos": "名詞", + "pn": -0.91566 + }, + { + "surface": "白", + "readging": "はく", + "pos": "名詞", + "pn": -0.915757 + }, + { + "surface": "減らす", + "readging": "へらす", + "pos": "動詞", + "pn": -0.915875 + }, + { + "surface": "蓋", + "readging": "ふた", + "pos": "名詞", + "pn": -0.916045 + }, + { + "surface": "砂糖", + "readging": "さとう", + "pos": "名詞", + "pn": -0.916132 + }, + { + "surface": "大難", + "readging": "だいなん", + "pos": "名詞", + "pn": -0.91615 + }, + { + "surface": "小難", + "readging": "しょうなん", + "pos": "名詞", + "pn": -0.916151 + }, + { + "surface": "隠す", + "readging": "かくす", + "pos": "動詞", + "pn": -0.916408 + }, + { + "surface": "八", + "readging": "やつ", + "pos": "名詞", + "pn": -0.916421 + }, + { + "surface": "鍔", + "readging": "つば", + "pos": "名詞", + "pn": -0.91665 + }, + { + "surface": "生ずる", + "readging": "しょうずる", + "pos": "動詞", + "pn": -0.916846 + }, + { + "surface": "乗り", + "readging": "のり", + "pos": "名詞", + "pn": -0.916849 + }, + { + "surface": "寝る", + "readging": "ねる", + "pos": "動詞", + "pn": -0.917158 + }, + { + "surface": "太い", + "readging": "ふとい", + "pos": "形容詞", + "pn": -0.917782 + }, + { + "surface": "原産", + "readging": "げんさん", + "pos": "名詞", + "pn": -0.917989 + }, + { + "surface": "後ろ", + "readging": "うしろ", + "pos": "名詞", + "pn": -0.918108 + }, + { + "surface": "絵", + "readging": "かい", + "pos": "名詞", + "pn": -0.918112 + }, + { + "surface": "溶かす", + "readging": "とかす", + "pos": "動詞", + "pn": -0.918154 + }, + { + "surface": "喉", + "readging": "のど", + "pos": "名詞", + "pn": -0.918191 + }, + { + "surface": "経る", + "readging": "へる", + "pos": "動詞", + "pn": -0.918277 + }, + { + "surface": "子", + "readging": "ね", + "pos": "名詞", + "pn": -0.918319 + }, + { + "surface": "米", + "readging": "よね", + "pos": "名詞", + "pn": -0.918785 + }, + { + "surface": "動かす", + "readging": "うごかす", + "pos": "動詞", + "pn": -0.918971 + }, + { + "surface": "やや", + "readging": "やや", + "pos": "副詞", + "pn": -0.918986 + }, + { + "surface": "述べる", + "readging": "のべる", + "pos": "動詞", + "pn": -0.919066 + }, + { + "surface": "事柄", + "readging": "ことがら", + "pos": "名詞", + "pn": -0.919101 + }, + { + "surface": "見える", + "readging": "みえる", + "pos": "動詞", + "pn": -0.91955 + }, + { + "surface": "移す", + "readging": "うつす", + "pos": "動詞", + "pn": -0.919617 + }, + { + "surface": "戻す", + "readging": "もどす", + "pos": "動詞", + "pn": -0.91966 + }, + { + "surface": "倦む", + "readging": "うむ", + "pos": "動詞", + "pn": -0.919677 + }, + { + "surface": "物質", + "readging": "ぶっしつ", + "pos": "名詞", + "pn": -0.919756 + }, + { + "surface": "押し", + "readging": "おし", + "pos": "名詞", + "pn": -0.919877 + }, + { + "surface": "卵", + "readging": "らん", + "pos": "名詞", + "pn": -0.920228 + }, + { + "surface": "高木", + "readging": "こうぼく", + "pos": "名詞", + "pn": -0.920324 + }, + { + "surface": "近い", + "readging": "ちかい", + "pos": "形容詞", + "pn": -0.920652 + }, + { + "surface": "書物", + "readging": "しょもつ", + "pos": "名詞", + "pn": -0.920758 + }, + { + "surface": "示す", + "readging": "しめす", + "pos": "動詞", + "pn": -0.920846 + }, + { + "surface": "継ぎ", + "readging": "つぎ", + "pos": "名詞", + "pn": -0.920899 + }, + { + "surface": "炙る", + "readging": "あぶる", + "pos": "動詞", + "pn": -0.921182 + }, + { + "surface": "無理", + "readging": "むり", + "pos": "名詞", + "pn": -0.921332 + }, + { + "surface": "侮る", + "readging": "あなどる", + "pos": "動詞", + "pn": -0.921357 + }, + { + "surface": "罪人", + "readging": "つみびと", + "pos": "名詞", + "pn": -0.921669 + }, + { + "surface": "単位", + "readging": "たんい", + "pos": "名詞", + "pn": -0.921756 + }, + { + "surface": "漢字", + "readging": "かんじ", + "pos": "名詞", + "pn": -0.922236 + }, + { + "surface": "軽い", + "readging": "かるい", + "pos": "形容詞", + "pn": -0.922246 + }, + { + "surface": "広がる", + "readging": "ひろがる", + "pos": "動詞", + "pn": -0.922327 + }, + { + "surface": "初めて", + "readging": "はじめて", + "pos": "副詞", + "pn": -0.922447 + }, + { + "surface": "機械", + "readging": "きかい", + "pos": "名詞", + "pn": -0.922509 + }, + { + "surface": "走る", + "readging": "はしる", + "pos": "動詞", + "pn": -0.922917 + }, + { + "surface": "返す", + "readging": "かえす", + "pos": "動詞", + "pn": -0.92297 + }, + { + "surface": "決める", + "readging": "きめる", + "pos": "動詞", + "pn": -0.923411 + }, + { + "surface": "弄ぶ", + "readging": "もてあそぶ", + "pos": "動詞", + "pn": -0.923472 + }, + { + "surface": "空気", + "readging": "くうき", + "pos": "名詞", + "pn": -0.923528 + }, + { + "surface": "行動", + "readging": "こうどう", + "pos": "名詞", + "pn": -0.923944 + }, + { + "surface": "必要", + "readging": "ひつよう", + "pos": "名詞", + "pn": -0.924249 + }, + { + "surface": "金銭", + "readging": "きんせん", + "pos": "名詞", + "pn": -0.924491 + }, + { + "surface": "葛", + "readging": "くず", + "pos": "名詞", + "pn": -0.924782 + }, + { + "surface": "がる", + "readging": "がる", + "pos": "動詞", + "pn": -0.924931 + }, + { + "surface": "背", + "readging": "せい", + "pos": "名詞", + "pn": -0.925189 + }, + { + "surface": "様様", + "readging": "さまざま", + "pos": "名詞", + "pn": -0.925755 + }, + { + "surface": "建物", + "readging": "たてもの", + "pos": "名詞", + "pn": -0.925933 + }, + { + "surface": "金", + "readging": "こん", + "pos": "名詞", + "pn": -0.926075 + }, + { + "surface": "蒔く", + "readging": "まく", + "pos": "動詞", + "pn": -0.926092 + }, + { + "surface": "鳴らす", + "readging": "ならす", + "pos": "動詞", + "pn": -0.926095 + }, + { + "surface": "赤い", + "readging": "あかい", + "pos": "形容詞", + "pn": -0.926588 + }, + { + "surface": "屋根", + "readging": "やね", + "pos": "名詞", + "pn": -0.926914 + }, + { + "surface": "分ける", + "readging": "わける", + "pos": "動詞", + "pn": -0.926916 + }, + { + "surface": "倒れる", + "readging": "たおれる", + "pos": "動詞", + "pn": -0.926969 + }, + { + "surface": "大声", + "readging": "たいせい", + "pos": "名詞", + "pn": -0.927138 + }, + { + "surface": "浸す", + "readging": "ひたす", + "pos": "動詞", + "pn": -0.927487 + }, + { + "surface": "不快", + "readging": "ふかい", + "pos": "名詞", + "pn": -0.927511 + }, + { + "surface": "挟む", + "readging": "はさむ", + "pos": "動詞", + "pn": -0.927611 + }, + { + "surface": "お見逸れ", + "readging": "おみそれ", + "pos": "名詞", + "pn": -0.927684 + }, + { + "surface": "黄色", + "readging": "こうしょく", + "pos": "名詞", + "pn": -0.927899 + }, + { + "surface": "落葉", + "readging": "らくよう", + "pos": "名詞", + "pn": -0.928022 + }, + { + "surface": "謀", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.928345 + }, + { + "surface": "膨れる", + "readging": "ふくれる", + "pos": "動詞", + "pn": -0.928492 + }, + { + "surface": "種", + "readging": "たね", + "pos": "名詞", + "pn": -0.92854 + }, + { + "surface": "客", + "readging": "きゃく", + "pos": "名詞", + "pn": -0.929028 + }, + { + "surface": "押す", + "readging": "おす", + "pos": "動詞", + "pn": -0.92904 + }, + { + "surface": "考え", + "readging": "かんがえ", + "pos": "名詞", + "pn": -0.9295 + }, + { + "surface": "暫く", + "readging": "しばらく", + "pos": "副詞", + "pn": -0.929642 + }, + { + "surface": "眉", + "readging": "まゆ", + "pos": "名詞", + "pn": -0.929657 + }, + { + "surface": "海原", + "readging": "うなばら", + "pos": "名詞", + "pn": -0.929939 + }, + { + "surface": "縛る", + "readging": "しばる", + "pos": "動詞", + "pn": -0.930791 + }, + { + "surface": "別", + "readging": "べつ", + "pos": "名詞", + "pn": -0.93136 + }, + { + "surface": "去る", + "readging": "さる", + "pos": "動詞", + "pn": -0.931461 + }, + { + "surface": "呼ぶ", + "readging": "よぶ", + "pos": "動詞", + "pn": -0.931867 + }, + { + "surface": "垂れる", + "readging": "たれる", + "pos": "動詞", + "pn": -0.932148 + }, + { + "surface": "胸", + "readging": "むね", + "pos": "名詞", + "pn": -0.932267 + }, + { + "surface": "顔つき", + "readging": "かおつき", + "pos": "名詞", + "pn": -0.932281 + }, + { + "surface": "左記", + "readging": "さき", + "pos": "名詞", + "pn": -0.932288 + }, + { + "surface": "極", + "readging": "ごく", + "pos": "副詞", + "pn": -0.932318 + }, + { + "surface": "震える", + "readging": "ふるえる", + "pos": "動詞", + "pn": -0.932426 + }, + { + "surface": "科", + "readging": "しな", + "pos": "名詞", + "pn": -0.933541 + }, + { + "surface": "曲げる", + "readging": "まげる", + "pos": "動詞", + "pn": -0.93361 + }, + { + "surface": "変る", + "readging": "かわる", + "pos": "動詞", + "pn": -0.933746 + }, + { + "surface": "方向", + "readging": "ほうこう", + "pos": "名詞", + "pn": -0.933779 + }, + { + "surface": "未知", + "readging": "みち", + "pos": "名詞", + "pn": -0.933788 + }, + { + "surface": "噂", + "readging": "うわさ", + "pos": "名詞", + "pn": -0.933959 + }, + { + "surface": "都", + "readging": "みやこ", + "pos": "名詞", + "pn": -0.933978 + }, + { + "surface": "結ぶ", + "readging": "むすぶ", + "pos": "動詞", + "pn": -0.934044 + }, + { + "surface": "食物", + "readging": "しょくもつ", + "pos": "名詞", + "pn": -0.934262 + }, + { + "surface": "重い", + "readging": "おもい", + "pos": "形容詞", + "pn": -0.934531 + }, + { + "surface": "寸善尺魔", + "readging": "すんぜんしゃくま", + "pos": "名詞", + "pn": -0.934837 + }, + { + "surface": "設ける", + "readging": "もうける", + "pos": "動詞", + "pn": -0.935275 + }, + { + "surface": "主", + "readging": "ぬし", + "pos": "名詞", + "pn": -0.935341 + }, + { + "surface": "悪友", + "readging": "あくゆう", + "pos": "名詞", + "pn": -0.935367 + }, + { + "surface": "乱れる", + "readging": "みだれる", + "pos": "動詞", + "pn": -0.935471 + }, + { + "surface": "起る", + "readging": "おこる", + "pos": "動詞", + "pn": -0.935634 + }, + { + "surface": "さ", + "readging": "さ", + "pos": "副詞", + "pn": -0.93584 + }, + { + "surface": "殴る", + "readging": "なぐる", + "pos": "動詞", + "pn": -0.935879 + }, + { + "surface": "淫楽", + "readging": "いんらく", + "pos": "名詞", + "pn": -0.9365 + }, + { + "surface": "頻りに", + "readging": "しきりに", + "pos": "副詞", + "pn": -0.936535 + }, + { + "surface": "字", + "readging": "じ", + "pos": "名詞", + "pn": -0.937228 + }, + { + "surface": "筋", + "readging": "すじ", + "pos": "名詞", + "pn": -0.937371 + }, + { + "surface": "閉じる", + "readging": "とじる", + "pos": "動詞", + "pn": -0.937437 + }, + { + "surface": "其の場逃れ", + "readging": "そのばのがれ", + "pos": "名詞", + "pn": -0.937637 + }, + { + "surface": "生活", + "readging": "せいかつ", + "pos": "名詞", + "pn": -0.937753 + }, + { + "surface": "鼻", + "readging": "び", + "pos": "名詞", + "pn": -0.937823 + }, + { + "surface": "致命傷", + "readging": "ちめいしょう", + "pos": "名詞", + "pn": -0.937945 + }, + { + "surface": "違う", + "readging": "ちがう", + "pos": "動詞", + "pn": -0.938058 + }, + { + "surface": "黒い", + "readging": "くろい", + "pos": "形容詞", + "pn": -0.938649 + }, + { + "surface": "塞ぐ", + "readging": "ふさぐ", + "pos": "動詞", + "pn": -0.93877 + }, + { + "surface": "原料", + "readging": "げんりょう", + "pos": "名詞", + "pn": -0.93898 + }, + { + "surface": "車", + "readging": "しゃ", + "pos": "名詞", + "pn": -0.939149 + }, + { + "surface": "怏怏", + "readging": "おうおう", + "pos": "名詞", + "pn": -0.939662 + }, + { + "surface": "種類", + "readging": "しゅるい", + "pos": "名詞", + "pn": -0.939707 + }, + { + "surface": "捕える", + "readging": "とらえる", + "pos": "動詞", + "pn": -0.939828 + }, + { + "surface": "方", + "readging": "がた", + "pos": "名詞", + "pn": -0.939987 + }, + { + "surface": "和気", + "readging": "わき", + "pos": "名詞", + "pn": -0.94008 + }, + { + "surface": "箸", + "readging": "はし", + "pos": "名詞", + "pn": -0.940132 + }, + { + "surface": "集まる", + "readging": "あつまる", + "pos": "動詞", + "pn": -0.940355 + }, + { + "surface": "合せる", + "readging": "あわせる", + "pos": "動詞", + "pn": -0.940382 + }, + { + "surface": "事", + "readging": "じ", + "pos": "名詞", + "pn": -0.940497 + }, + { + "surface": "辛抱", + "readging": "しんぼう", + "pos": "名詞", + "pn": -0.940716 + }, + { + "surface": "魂", + "readging": "たま", + "pos": "名詞", + "pn": -0.941042 + }, + { + "surface": "大名芸", + "readging": "だいみょうげい", + "pos": "名詞", + "pn": -0.941077 + }, + { + "surface": "食う", + "readging": "くう", + "pos": "動詞", + "pn": -0.941077 + }, + { + "surface": "器具", + "readging": "きぐ", + "pos": "名詞", + "pn": -0.941211 + }, + { + "surface": "寡聞", + "readging": "かぶん", + "pos": "名詞", + "pn": -0.941328 + }, + { + "surface": "疲れる", + "readging": "つかれる", + "pos": "動詞", + "pn": -0.941328 + }, + { + "surface": "雪", + "readging": "ゆき", + "pos": "名詞", + "pn": -0.941434 + }, + { + "surface": "官尊民卑", + "readging": "かんそんみんぴ", + "pos": "名詞", + "pn": -0.941644 + }, + { + "surface": "どう", + "readging": "どう", + "pos": "副詞", + "pn": -0.941861 + }, + { + "surface": "仮令", + "readging": "たとえ", + "pos": "副詞", + "pn": -0.942446 + }, + { + "surface": "巻く", + "readging": "まく", + "pos": "動詞", + "pn": -0.942742 + }, + { + "surface": "過小", + "readging": "かしょう", + "pos": "名詞", + "pn": -0.942846 + }, + { + "surface": "塗る", + "readging": "ぬる", + "pos": "動詞", + "pn": -0.943453 + }, + { + "surface": "器量負け", + "readging": "きりょうまけ", + "pos": "名詞", + "pn": -0.943603 + }, + { + "surface": "固まる", + "readging": "かたまる", + "pos": "動詞", + "pn": -0.943991 + }, + { + "surface": "味噌", + "readging": "みそ", + "pos": "名詞", + "pn": -0.944031 + }, + { + "surface": "繋ぐ", + "readging": "つなぐ", + "pos": "動詞", + "pn": -0.944333 + }, + { + "surface": "歯", + "readging": "は", + "pos": "名詞", + "pn": -0.944515 + }, + { + "surface": "透き", + "readging": "すき", + "pos": "名詞", + "pn": -0.944515 + }, + { + "surface": "色色", + "readging": "いろいろ", + "pos": "名詞", + "pn": -0.944661 + }, + { + "surface": "帯びる", + "readging": "おびる", + "pos": "動詞", + "pn": -0.944928 + }, + { + "surface": "無禄", + "readging": "むろく", + "pos": "名詞", + "pn": -0.945088 + }, + { + "surface": "茎", + "readging": "けい", + "pos": "名詞", + "pn": -0.945184 + }, + { + "surface": "着物", + "readging": "きもの", + "pos": "名詞", + "pn": -0.945304 + }, + { + "surface": "与太る", + "readging": "よたる", + "pos": "動詞", + "pn": -0.945313 + }, + { + "surface": "もつ", + "readging": "もつ", + "pos": "動詞", + "pn": -0.945603 + }, + { + "surface": "草", + "readging": "そう", + "pos": "名詞", + "pn": -0.946003 + }, + { + "surface": "靴", + "readging": "くつ", + "pos": "名詞", + "pn": -0.946074 + }, + { + "surface": "渡す", + "readging": "わたす", + "pos": "動詞", + "pn": -0.946197 + }, + { + "surface": "組織", + "readging": "そしき", + "pos": "名詞", + "pn": -0.946198 + }, + { + "surface": "回す", + "readging": "まわす", + "pos": "動詞", + "pn": -0.946403 + }, + { + "surface": "弱輩", + "readging": "じゃくはい", + "pos": "名詞", + "pn": -0.946776 + }, + { + "surface": "秋", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.946796 + }, + { + "surface": "川", + "readging": "かわ", + "pos": "名詞", + "pn": -0.946815 + }, + { + "surface": "部屋", + "readging": "へや", + "pos": "名詞", + "pn": -0.947083 + }, + { + "surface": "文字", + "readging": "もんじ", + "pos": "名詞", + "pn": -0.947207 + }, + { + "surface": "液体", + "readging": "えきたい", + "pos": "名詞", + "pn": -0.947262 + }, + { + "surface": "読む", + "readging": "よむ", + "pos": "動詞", + "pn": -0.947272 + }, + { + "surface": "玉砕", + "readging": "ぎょくさい", + "pos": "名詞", + "pn": -0.94766 + }, + { + "surface": "食品", + "readging": "しょくひん", + "pos": "名詞", + "pn": -0.947668 + }, + { + "surface": "掃く", + "readging": "はく", + "pos": "動詞", + "pn": -0.947801 + }, + { + "surface": "上がる", + "readging": "あがる", + "pos": "動詞", + "pn": -0.948087 + }, + { + "surface": "古い", + "readging": "ふるい", + "pos": "形容詞", + "pn": -0.948332 + }, + { + "surface": "方法", + "readging": "ほうほう", + "pos": "名詞", + "pn": -0.948569 + }, + { + "surface": "剥く", + "readging": "むく", + "pos": "動詞", + "pn": -0.948633 + }, + { + "surface": "血", + "readging": "ち", + "pos": "名詞", + "pn": -0.948816 + }, + { + "surface": "我褒め", + "readging": "われぼめ", + "pos": "名詞", + "pn": -0.948883 + }, + { + "surface": "彼是", + "readging": "あれこれ", + "pos": "名詞", + "pn": -0.949056 + }, + { + "surface": "汚れる", + "readging": "よごれる", + "pos": "動詞", + "pn": -0.949509 + }, + { + "surface": "髪", + "readging": "はつ", + "pos": "名詞", + "pn": -0.950083 + }, + { + "surface": "関係", + "readging": "かんけい", + "pos": "名詞", + "pn": -0.950276 + }, + { + "surface": "彫る", + "readging": "ほる", + "pos": "動詞", + "pn": -0.950285 + }, + { + "surface": "焚く", + "readging": "たく", + "pos": "動詞", + "pn": -0.950453 + }, + { + "surface": "葺く", + "readging": "ふく", + "pos": "動詞", + "pn": -0.950483 + }, + { + "surface": "底", + "readging": "てい", + "pos": "名詞", + "pn": -0.950721 + }, + { + "surface": "蒸ける", + "readging": "ふける", + "pos": "動詞", + "pn": -0.950727 + }, + { + "surface": "時間", + "readging": "じかん", + "pos": "名詞", + "pn": -0.950734 + }, + { + "surface": "蓖麻", + "readging": "ひま", + "pos": "名詞", + "pn": -0.950745 + }, + { + "surface": "横", + "readging": "よこ", + "pos": "名詞", + "pn": -0.950854 + }, + { + "surface": "硝子", + "readging": "ガラス", + "pos": "名詞", + "pn": -0.951021 + }, + { + "surface": "独善", + "readging": "どくぜん", + "pos": "名詞", + "pn": -0.951256 + }, + { + "surface": "干す", + "readging": "ほす", + "pos": "動詞", + "pn": -0.951387 + }, + { + "surface": "余所", + "readging": "よそ", + "pos": "名詞", + "pn": -0.951405 + }, + { + "surface": "鶏群", + "readging": "けいぐん", + "pos": "名詞", + "pn": -0.951567 + }, + { + "surface": "四", + "readging": "よつ", + "pos": "名詞", + "pn": -0.951575 + }, + { + "surface": "棒", + "readging": "ぼう", + "pos": "名詞", + "pn": -0.951589 + }, + { + "surface": "老残", + "readging": "ろうざん", + "pos": "名詞", + "pn": -0.951597 + }, + { + "surface": "性質", + "readging": "せいしつ", + "pos": "名詞", + "pn": -0.951636 + }, + { + "surface": "類", + "readging": "るい", + "pos": "名詞", + "pn": -0.951738 + }, + { + "surface": "一定", + "readging": "いってい", + "pos": "名詞", + "pn": -0.95207 + }, + { + "surface": "織る", + "readging": "おる", + "pos": "動詞", + "pn": -0.952131 + }, + { + "surface": "馬鹿げる", + "readging": "ばかげる", + "pos": "動詞", + "pn": -0.952264 + }, + { + "surface": "付け景気", + "readging": "つけげいき", + "pos": "名詞", + "pn": -0.952442 + }, + { + "surface": "弱小", + "readging": "じゃくしょう", + "pos": "名詞", + "pn": -0.952491 + }, + { + "surface": "辺り", + "readging": "あたり", + "pos": "名詞", + "pn": -0.952548 + }, + { + "surface": "装置", + "readging": "そうち", + "pos": "名詞", + "pn": -0.953009 + }, + { + "surface": "鳥", + "readging": "とり", + "pos": "名詞", + "pn": -0.953198 + }, + { + "surface": "十", + "readging": "とお", + "pos": "名詞", + "pn": -0.953897 + }, + { + "surface": "騒ぐ", + "readging": "さわぐ", + "pos": "動詞", + "pn": -0.954041 + }, + { + "surface": "恐れる", + "readging": "おそれる", + "pos": "動詞", + "pn": -0.954136 + }, + { + "surface": "吹く", + "readging": "ふく", + "pos": "動詞", + "pn": -0.954354 + }, + { + "surface": "情実", + "readging": "じょうじつ", + "pos": "名詞", + "pn": -0.954682 + }, + { + "surface": "当てる", + "readging": "あてる", + "pos": "動詞", + "pn": -0.954838 + }, + { + "surface": "へろへろ", + "readging": "へろへろ", + "pos": "副詞", + "pn": -0.954882 + }, + { + "surface": "仕方", + "readging": "しかた", + "pos": "名詞", + "pn": -0.954906 + }, + { + "surface": "二つ", + "readging": "ふたつ", + "pos": "名詞", + "pn": -0.955274 + }, + { + "surface": "湯", + "readging": "ゆ", + "pos": "名詞", + "pn": -0.955306 + }, + { + "surface": "模様", + "readging": "もよう", + "pos": "名詞", + "pn": -0.955407 + }, + { + "surface": "止める", + "readging": "とめる", + "pos": "動詞", + "pn": -0.955448 + }, + { + "surface": "空恥しい", + "readging": "そらはずかしい", + "pos": "形容詞", + "pn": -0.955623 + }, + { + "surface": "送る", + "readging": "おくる", + "pos": "動詞", + "pn": -0.955632 + }, + { + "surface": "土地", + "readging": "とち", + "pos": "名詞", + "pn": -0.955849 + }, + { + "surface": "沸く", + "readging": "わく", + "pos": "動詞", + "pn": -0.955907 + }, + { + "surface": "締める", + "readging": "しめる", + "pos": "動詞", + "pn": -0.95595 + }, + { + "surface": "乗る", + "readging": "のる", + "pos": "動詞", + "pn": -0.956159 + }, + { + "surface": "泣く", + "readging": "なく", + "pos": "動詞", + "pn": -0.956277 + }, + { + "surface": "煙草", + "readging": "タバコ", + "pos": "名詞", + "pn": -0.956712 + }, + { + "surface": "邪心", + "readging": "じゃしん", + "pos": "名詞", + "pn": -0.956728 + }, + { + "surface": "息", + "readging": "そく", + "pos": "名詞", + "pn": -0.957034 + }, + { + "surface": "初め", + "readging": "はじめ", + "pos": "名詞", + "pn": -0.957222 + }, + { + "surface": "乗せる", + "readging": "のせる", + "pos": "動詞", + "pn": -0.957579 + }, + { + "surface": "骨", + "readging": "ほね", + "pos": "名詞", + "pn": -0.957786 + }, + { + "surface": "犯す", + "readging": "おかす", + "pos": "動詞", + "pn": -0.9578 + }, + { + "surface": "竹", + "readging": "ちく", + "pos": "名詞", + "pn": -0.957845 + }, + { + "surface": "如何にも", + "readging": "いかにも", + "pos": "副詞", + "pn": -0.957939 + }, + { + "surface": "腰", + "readging": "よう", + "pos": "名詞", + "pn": -0.957941 + }, + { + "surface": "海", + "readging": "かい", + "pos": "名詞", + "pn": -0.958041 + }, + { + "surface": "仕事", + "readging": "しごと", + "pos": "名詞", + "pn": -0.958117 + }, + { + "surface": "雨", + "readging": "う", + "pos": "名詞", + "pn": -0.958257 + }, + { + "surface": "諭", + "readging": "ゆ", + "pos": "名詞", + "pn": -0.958469 + }, + { + "surface": "咲く", + "readging": "さく", + "pos": "動詞", + "pn": -0.958514 + }, + { + "surface": "記す", + "readging": "しるす", + "pos": "動詞", + "pn": -0.958615 + }, + { + "surface": "させる", + "readging": "させる", + "pos": "動詞", + "pn": -0.95867 + }, + { + "surface": "短才", + "readging": "たんさい", + "pos": "名詞", + "pn": -0.958939 + }, + { + "surface": "女", + "readging": "め", + "pos": "名詞", + "pn": -0.958945 + }, + { + "surface": "若朽", + "readging": "じゃっきゅう", + "pos": "名詞", + "pn": -0.959171 + }, + { + "surface": "加える", + "readging": "くわえる", + "pos": "動詞", + "pn": -0.959272 + }, + { + "surface": "防ぐ", + "readging": "ふせぐ", + "pos": "動詞", + "pn": -0.959316 + }, + { + "surface": "細長い", + "readging": "ほそながい", + "pos": "形容詞", + "pn": -0.95944 + }, + { + "surface": "多岐亡羊", + "readging": "たきぼうよう", + "pos": "名詞", + "pn": -0.959521 + }, + { + "surface": "首", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.959736 + }, + { + "surface": "素", + "readging": "す", + "pos": "名詞", + "pn": -0.959893 + }, + { + "surface": "面目無い", + "readging": "めんぼくない", + "pos": "形容詞", + "pn": -0.960389 + }, + { + "surface": "過信", + "readging": "かしん", + "pos": "名詞", + "pn": -0.960412 + }, + { + "surface": "大人", + "readging": "おとなげない", + "pos": "形容詞", + "pn": -0.960539 + }, + { + "surface": "悪才", + "readging": "あくさい", + "pos": "名詞", + "pn": -0.960761 + }, + { + "surface": "半端", + "readging": "はんぱ", + "pos": "名詞", + "pn": -0.960822 + }, + { + "surface": "飛ぶ", + "readging": "とぶ", + "pos": "動詞", + "pn": -0.960905 + }, + { + "surface": "強敵", + "readging": "きょうてき", + "pos": "名詞", + "pn": -0.96094 + }, + { + "surface": "当てられる", + "readging": "あてられる", + "pos": "動詞", + "pn": -0.960959 + }, + { + "surface": "過誤", + "readging": "かご", + "pos": "名詞", + "pn": -0.961089 + }, + { + "surface": "びり", + "readging": "びり", + "pos": "名詞", + "pn": -0.961147 + }, + { + "surface": "行く", + "readging": "ゆく", + "pos": "動詞", + "pn": -0.961267 + }, + { + "surface": "顔負け", + "readging": "かおまけ", + "pos": "名詞", + "pn": -0.961444 + }, + { + "surface": "立つ", + "readging": "たつ", + "pos": "動詞", + "pn": -0.961493 + }, + { + "surface": "衣服", + "readging": "いふく", + "pos": "名詞", + "pn": -0.961526 + }, + { + "surface": "無駄", + "readging": "むだ", + "pos": "名詞", + "pn": -0.961562 + }, + { + "surface": "態度", + "readging": "たいど", + "pos": "名詞", + "pn": -0.961568 + }, + { + "surface": "石仏", + "readging": "いしぼとけ", + "pos": "名詞", + "pn": -0.96181 + }, + { + "surface": "衰える", + "readging": "おとろえる", + "pos": "動詞", + "pn": -0.961836 + }, + { + "surface": "きりきり", + "readging": "きりきり", + "pos": "副詞", + "pn": -0.961859 + }, + { + "surface": "早世", + "readging": "そうせい", + "pos": "名詞", + "pn": -0.961927 + }, + { + "surface": "若死", + "readging": "わかじに", + "pos": "名詞", + "pn": -0.961972 + }, + { + "surface": "全体", + "readging": "ぜんたい", + "pos": "名詞", + "pn": -0.96202 + }, + { + "surface": "宿酔", + "readging": "しゅくすい", + "pos": "名詞", + "pn": -0.962048 + }, + { + "surface": "変える", + "readging": "かえる", + "pos": "動詞", + "pn": -0.962259 + }, + { + "surface": "意気地無し", + "readging": "いくじなし", + "pos": "名詞", + "pn": -0.962287 + }, + { + "surface": "開く", + "readging": "ひらく", + "pos": "動詞", + "pn": -0.9625 + }, + { + "surface": "凡手", + "readging": "ぼんしゅ", + "pos": "名詞", + "pn": -0.962659 + }, + { + "surface": "太鼓医者", + "readging": "たいこいしゃ", + "pos": "名詞", + "pn": -0.962767 + }, + { + "surface": "藁", + "readging": "わら", + "pos": "名詞", + "pn": -0.962803 + }, + { + "surface": "飲む", + "readging": "のむ", + "pos": "動詞", + "pn": -0.962809 + }, + { + "surface": "とぼとぼ", + "readging": "とぼとぼ", + "pos": "副詞", + "pn": -0.962944 + }, + { + "surface": "窪む", + "readging": "くぼむ", + "pos": "動詞", + "pn": -0.963058 + }, + { + "surface": "滅亡", + "readging": "めつぼう", + "pos": "名詞", + "pn": -0.963121 + }, + { + "surface": "石", + "readging": "せき", + "pos": "名詞", + "pn": -0.963232 + }, + { + "surface": "振舞う", + "readging": "ふるまう", + "pos": "動詞", + "pn": -0.963247 + }, + { + "surface": "夜", + "readging": "よる", + "pos": "名詞", + "pn": -0.963267 + }, + { + "surface": "文章", + "readging": "ぶんしょう", + "pos": "名詞", + "pn": -0.963412 + }, + { + "surface": "壊滅", + "readging": "かいめつ", + "pos": "名詞", + "pn": -0.963475 + }, + { + "surface": "空威張り", + "readging": "からいばり", + "pos": "名詞", + "pn": -0.963599 + }, + { + "surface": "にたにた", + "readging": "にたにた", + "pos": "副詞", + "pn": -0.963749 + }, + { + "surface": "粉", + "readging": "ふん", + "pos": "名詞", + "pn": -0.96419 + }, + { + "surface": "馬鹿", + "readging": "ばか", + "pos": "名詞", + "pn": -0.964267 + }, + { + "surface": "重婚", + "readging": "じゅうこん", + "pos": "名詞", + "pn": -0.964409 + }, + { + "surface": "大敵", + "readging": "たいてき", + "pos": "名詞", + "pn": -0.964508 + }, + { + "surface": "韻致", + "readging": "いんち", + "pos": "名詞", + "pn": -0.964514 + }, + { + "surface": "表面", + "readging": "ひょうめん", + "pos": "名詞", + "pn": -0.964694 + }, + { + "surface": "火取り", + "readging": "ひとり", + "pos": "名詞", + "pn": -0.964748 + }, + { + "surface": "酒", + "readging": "しゅ", + "pos": "名詞", + "pn": -0.964887 + }, + { + "surface": "保身", + "readging": "ほしん", + "pos": "名詞", + "pn": -0.964915 + }, + { + "surface": "受ける", + "readging": "うける", + "pos": "動詞", + "pn": -0.965127 + }, + { + "surface": "奸雄", + "readging": "かんゆう", + "pos": "名詞", + "pn": -0.965132 + }, + { + "surface": "数", + "readging": "すう", + "pos": "名詞", + "pn": -0.965147 + }, + { + "surface": "症状", + "readging": "しょうじょう", + "pos": "名詞", + "pn": -0.965253 + }, + { + "surface": "実", + "readging": "み", + "pos": "名詞", + "pn": -0.965333 + }, + { + "surface": "交ぜる", + "readging": "まぜる", + "pos": "動詞", + "pn": -0.965568 + }, + { + "surface": "激臭", + "readging": "げきしゅう", + "pos": "名詞", + "pn": -0.965568 + }, + { + "surface": "土", + "readging": "ど", + "pos": "名詞", + "pn": -0.965622 + }, + { + "surface": "騙す", + "readging": "だます", + "pos": "動詞", + "pn": -0.965659 + }, + { + "surface": "がめつい", + "readging": "がめつい", + "pos": "形容詞", + "pn": -0.965793 + }, + { + "surface": "懦夫", + "readging": "だふ", + "pos": "名詞", + "pn": -0.965828 + }, + { + "surface": "板", + "readging": "いた", + "pos": "名詞", + "pn": -0.965861 + }, + { + "surface": "恩着せがましい", + "readging": "おんきせがましい", + "pos": "形容詞", + "pn": -0.965971 + }, + { + "surface": "味気無い", + "readging": "あじきない", + "pos": "形容詞", + "pn": -0.965982 + }, + { + "surface": "うじうじ", + "readging": "うじうじ", + "pos": "副詞", + "pn": -0.966065 + }, + { + "surface": "功罪", + "readging": "こうざい", + "pos": "名詞", + "pn": -0.966123 + }, + { + "surface": "ぶらぶら病", + "readging": "ぶらぶらやまい", + "pos": "名詞", + "pn": -0.966151 + }, + { + "surface": "覆う", + "readging": "おおう", + "pos": "動詞", + "pn": -0.96628 + }, + { + "surface": "様", + "readging": "さま", + "pos": "名詞", + "pn": -0.966344 + }, + { + "surface": "葉桜", + "readging": "はざくら", + "pos": "名詞", + "pn": -0.966575 + }, + { + "surface": "五", + "readging": "ご", + "pos": "名詞", + "pn": -0.966592 + }, + { + "surface": "来る", + "readging": "くる", + "pos": "動詞", + "pn": -0.966732 + }, + { + "surface": "一緒", + "readging": "いっしょ", + "pos": "名詞", + "pn": -0.96674 + }, + { + "surface": "濡れる", + "readging": "ぬれる", + "pos": "動詞", + "pn": -0.966796 + }, + { + "surface": "垢抜ける", + "readging": "あかぬける", + "pos": "動詞", + "pn": -0.966973 + }, + { + "surface": "非力", + "readging": "ひりき", + "pos": "名詞", + "pn": -0.966977 + }, + { + "surface": "明ける", + "readging": "あける", + "pos": "動詞", + "pn": -0.96715 + }, + { + "surface": "呉下", + "readging": "ごか", + "pos": "名詞", + "pn": -0.967173 + }, + { + "surface": "邪道", + "readging": "じゃどう", + "pos": "名詞", + "pn": -0.967452 + }, + { + "surface": "内", + "readging": "うち", + "pos": "名詞", + "pn": -0.967488 + }, + { + "surface": "誨淫", + "readging": "かいいん", + "pos": "名詞", + "pn": -0.967736 + }, + { + "surface": "気負う", + "readging": "きおう", + "pos": "動詞", + "pn": -0.967947 + }, + { + "surface": "まじめ", + "readging": "まじめくさる", + "pos": "動詞", + "pn": -0.968114 + }, + { + "surface": "動物", + "readging": "どうぶつ", + "pos": "名詞", + "pn": -0.968312 + }, + { + "surface": "食べる", + "readging": "たべる", + "pos": "動詞", + "pn": -0.968337 + }, + { + "surface": "贅言", + "readging": "ぜいげん", + "pos": "名詞", + "pn": -0.968343 + }, + { + "surface": "急", + "readging": "きゅう", + "pos": "名詞", + "pn": -0.968355 + }, + { + "surface": "息切れ", + "readging": "いきぎれ", + "pos": "名詞", + "pn": -0.968386 + }, + { + "surface": "悪戦苦闘", + "readging": "あくせんくとう", + "pos": "名詞", + "pn": -0.96841 + }, + { + "surface": "病躯", + "readging": "びょうく", + "pos": "名詞", + "pn": -0.968569 + }, + { + "surface": "病苦", + "readging": "びょうく", + "pos": "名詞", + "pn": -0.968569 + }, + { + "surface": "煩い付く", + "readging": "わずらいつく", + "pos": "動詞", + "pn": -0.968569 + }, + { + "surface": "落命", + "readging": "らくめい", + "pos": "名詞", + "pn": -0.968673 + }, + { + "surface": "半死半生", + "readging": "はんしはんしょう", + "pos": "名詞", + "pn": -0.968673 + }, + { + "surface": "他界", + "readging": "たかい", + "pos": "名詞", + "pn": -0.968673 + }, + { + "surface": "圧死", + "readging": "あっし", + "pos": "名詞", + "pn": -0.968673 + }, + { + "surface": "死中", + "readging": "しちゅう", + "pos": "名詞", + "pn": -0.968847 + }, + { + "surface": "下げる", + "readging": "さげる", + "pos": "動詞", + "pn": -0.968877 + }, + { + "surface": "罪障", + "readging": "ざいしょう", + "pos": "名詞", + "pn": -0.96892 + }, + { + "surface": "傷物", + "readging": "きずもの", + "pos": "名詞", + "pn": -0.968952 + }, + { + "surface": "度し難い", + "readging": "どしがたい", + "pos": "形容詞", + "pn": -0.969197 + }, + { + "surface": "悪法", + "readging": "あくほう", + "pos": "名詞", + "pn": -0.969274 + }, + { + "surface": "鼻元思案", + "readging": "はなもとじあん", + "pos": "名詞", + "pn": -0.96933 + }, + { + "surface": "蹴る", + "readging": "ける", + "pos": "動詞", + "pn": -0.969362 + }, + { + "surface": "失念", + "readging": "しつねん", + "pos": "名詞", + "pn": -0.969507 + }, + { + "surface": "過多", + "readging": "かた", + "pos": "名詞", + "pn": -0.969636 + }, + { + "surface": "上がったり", + "readging": "あがったり", + "pos": "名詞", + "pn": -0.969709 + }, + { + "surface": "横好き", + "readging": "よこずき", + "pos": "名詞", + "pn": -0.969712 + }, + { + "surface": "業", + "readging": "わざ", + "pos": "名詞", + "pn": -0.969763 + }, + { + "surface": "気の病", + "readging": "きのやまい", + "pos": "名詞", + "pn": -0.96981 + }, + { + "surface": "片便り", + "readging": "かただより", + "pos": "名詞", + "pn": -0.969922 + }, + { + "surface": "痛む", + "readging": "いたむ", + "pos": "動詞", + "pn": -0.96996 + }, + { + "surface": "吊る", + "readging": "つる", + "pos": "動詞", + "pn": -0.970016 + }, + { + "surface": "示寂", + "readging": "じじゃく", + "pos": "名詞", + "pn": -0.970043 + }, + { + "surface": "死病", + "readging": "しびょう", + "pos": "名詞", + "pn": -0.970352 + }, + { + "surface": "ころり", + "readging": "ころり", + "pos": "副詞", + "pn": -0.970473 + }, + { + "surface": "溜る", + "readging": "たまる", + "pos": "動詞", + "pn": -0.970481 + }, + { + "surface": "油", + "readging": "ゆ", + "pos": "名詞", + "pn": -0.970508 + }, + { + "surface": "繁栄", + "readging": "はんえい", + "pos": "名詞", + "pn": -0.970524 + }, + { + "surface": "堪え難い", + "readging": "たえがたい", + "pos": "形容詞", + "pn": -0.970538 + }, + { + "surface": "けたたましい", + "readging": "けたたましい", + "pos": "形容詞", + "pn": -0.970615 + }, + { + "surface": "古拙", + "readging": "こせつ", + "pos": "名詞", + "pn": -0.970836 + }, + { + "surface": "みれん", + "readging": "みれんがましい", + "pos": "形容詞", + "pn": -0.970838 + }, + { + "surface": "悪様", + "readging": "あしざま", + "pos": "名詞", + "pn": -0.970859 + }, + { + "surface": "寝苦しい", + "readging": "ねぐるしい", + "pos": "形容詞", + "pn": -0.970914 + }, + { + "surface": "出涸らし", + "readging": "でがらし", + "pos": "名詞", + "pn": -0.970917 + }, + { + "surface": "水中り", + "readging": "みずあたり", + "pos": "名詞", + "pn": -0.970946 + }, + { + "surface": "二八", + "readging": "にっぱち", + "pos": "名詞", + "pn": -0.970947 + }, + { + "surface": "婀娜っぽい", + "readging": "あだっぽい", + "pos": "形容詞", + "pn": -0.970985 + }, + { + "surface": "内攻", + "readging": "ないこう", + "pos": "名詞", + "pn": -0.970997 + }, + { + "surface": "皮", + "readging": "かわ", + "pos": "名詞", + "pn": -0.971085 + }, + { + "surface": "呉越同舟", + "readging": "ごえつどうしゅう", + "pos": "名詞", + "pn": -0.971163 + }, + { + "surface": "牽強付会", + "readging": "けんきょうふかい", + "pos": "名詞", + "pn": -0.971201 + }, + { + "surface": "殉職", + "readging": "じゅんしょく", + "pos": "名詞", + "pn": -0.971247 + }, + { + "surface": "浮世", + "readging": "うきよ", + "pos": "名詞", + "pn": -0.971259 + }, + { + "surface": "少し", + "readging": "すこし", + "pos": "副詞", + "pn": -0.97139 + }, + { + "surface": "悪僧", + "readging": "あくそう", + "pos": "名詞", + "pn": -0.971491 + }, + { + "surface": "魔神", + "readging": "まじん", + "pos": "名詞", + "pn": -0.971552 + }, + { + "surface": "金属", + "readging": "きんぞく", + "pos": "名詞", + "pn": -0.971565 + }, + { + "surface": "甘ちょろい", + "readging": "あまちょろい", + "pos": "形容詞", + "pn": -0.97163 + }, + { + "surface": "弱敵", + "readging": "じゃくてき", + "pos": "名詞", + "pn": -0.971636 + }, + { + "surface": "昔", + "readging": "むかし", + "pos": "名詞", + "pn": -0.971667 + }, + { + "surface": "申訳無い", + "readging": "もうしわけ", + "pos": "形容詞", + "pn": -0.971675 + }, + { + "surface": "才子多病", + "readging": "さいしたびょう", + "pos": "名詞", + "pn": -0.971782 + }, + { + "surface": "小勇", + "readging": "しょうゆう", + "pos": "名詞", + "pn": -0.971794 + }, + { + "surface": "命終", + "readging": "みょうじゅう", + "pos": "名詞", + "pn": -0.971832 + }, + { + "surface": "夏枯れ", + "readging": "なつがれ", + "pos": "名詞", + "pn": -0.972083 + }, + { + "surface": "不手際", + "readging": "ふてぎわ", + "pos": "名詞", + "pn": -0.972084 + }, + { + "surface": "口さがない", + "readging": "くちさがない", + "pos": "形容詞", + "pn": -0.972196 + }, + { + "surface": "鼻聾", + "readging": "はなつんぼ", + "pos": "名詞", + "pn": -0.972223 + }, + { + "surface": "馴れ馴れしい", + "readging": "なれなれしい", + "pos": "形容詞", + "pn": -0.972253 + }, + { + "surface": "亡き人", + "readging": "なきひと", + "pos": "名詞", + "pn": -0.972373 + }, + { + "surface": "生侍", + "readging": "なまざむらい", + "pos": "名詞", + "pn": -0.972469 + }, + { + "surface": "猛勇", + "readging": "もうゆう", + "pos": "名詞", + "pn": -0.972494 + }, + { + "surface": "聞苦しい", + "readging": "ききぐるしい", + "pos": "形容詞", + "pn": -0.972502 + }, + { + "surface": "小敵", + "readging": "しょうてき", + "pos": "名詞", + "pn": -0.972507 + }, + { + "surface": "計る", + "readging": "はかる", + "pos": "動詞", + "pn": -0.972576 + }, + { + "surface": "うろ覚え", + "readging": "うろおぼえ", + "pos": "名詞", + "pn": -0.972628 + }, + { + "surface": "間延び", + "readging": "まのび", + "pos": "名詞", + "pn": -0.972646 + }, + { + "surface": "俗儒", + "readging": "ぞくじゅ", + "pos": "名詞", + "pn": -0.972708 + }, + { + "surface": "腹", + "readging": "ふく", + "pos": "名詞", + "pn": -0.9728 + }, + { + "surface": "実悪", + "readging": "じつあく", + "pos": "名詞", + "pn": -0.972824 + }, + { + "surface": "不堪", + "readging": "ふかん", + "pos": "名詞", + "pn": -0.972911 + }, + { + "surface": "髀肉", + "readging": "ひにく", + "pos": "名詞", + "pn": -0.972958 + }, + { + "surface": "悪例", + "readging": "あくれい", + "pos": "名詞", + "pn": -0.972965 + }, + { + "surface": "困惑", + "readging": "こんわく", + "pos": "名詞", + "pn": -0.972971 + }, + { + "surface": "国賊", + "readging": "こくぞく", + "pos": "名詞", + "pn": -0.972985 + }, + { + "surface": "悪因", + "readging": "あくいん", + "pos": "名詞", + "pn": -0.973087 + }, + { + "surface": "妄想", + "readging": "もうそう", + "pos": "名詞", + "pn": -0.973106 + }, + { + "surface": "瘡蓋", + "readging": "かさぶた", + "pos": "名詞", + "pn": -0.973123 + }, + { + "surface": "危篤", + "readging": "きとく", + "pos": "名詞", + "pn": -0.973148 + }, + { + "surface": "心許無い", + "readging": "こころもとない", + "pos": "形容詞", + "pn": -0.973155 + }, + { + "surface": "気息奄奄", + "readging": "きそくえんえん", + "pos": "名詞", + "pn": -0.973167 + }, + { + "surface": "愧死", + "readging": "きし", + "pos": "名詞", + "pn": -0.973221 + }, + { + "surface": "抹消", + "readging": "まっしょう", + "pos": "名詞", + "pn": -0.973233 + }, + { + "surface": "弱体", + "readging": "じゃくたい", + "pos": "名詞", + "pn": -0.973282 + }, + { + "surface": "生臭坊主", + "readging": "なまぐさぼうず", + "pos": "名詞", + "pn": -0.973397 + }, + { + "surface": "脳病", + "readging": "のうびょう", + "pos": "名詞", + "pn": -0.973439 + }, + { + "surface": "殺伐", + "readging": "さつばつ", + "pos": "名詞", + "pn": -0.973499 + }, + { + "surface": "空景気", + "readging": "からげいき", + "pos": "名詞", + "pn": -0.97365 + }, + { + "surface": "摩耗", + "readging": "まもう", + "pos": "名詞", + "pn": -0.973858 + }, + { + "surface": "遜色", + "readging": "そんしょく", + "pos": "名詞", + "pn": -0.973902 + }, + { + "surface": "時代", + "readging": "じだい", + "pos": "名詞", + "pn": -0.973927 + }, + { + "surface": "おろおろ", + "readging": "おろおろ", + "pos": "副詞", + "pn": -0.973931 + }, + { + "surface": "感じ", + "readging": "かんじ", + "pos": "名詞", + "pn": -0.97402 + }, + { + "surface": "窮余", + "readging": "きゅうよ", + "pos": "名詞", + "pn": -0.97407 + }, + { + "surface": "病癖", + "readging": "びょうへき", + "pos": "名詞", + "pn": -0.97407 + }, + { + "surface": "発病", + "readging": "はつびょう", + "pos": "名詞", + "pn": -0.974149 + }, + { + "surface": "ごろつく", + "readging": "ごろつく", + "pos": "動詞", + "pn": -0.974182 + }, + { + "surface": "聞辛い", + "readging": "ききづらい", + "pos": "形容詞", + "pn": -0.97419 + }, + { + "surface": "廃人", + "readging": "はいじん", + "pos": "名詞", + "pn": -0.974229 + }, + { + "surface": "例", + "readging": "れい", + "pos": "名詞", + "pn": -0.974268 + }, + { + "surface": "竄入", + "readging": "ざんにゅう", + "pos": "名詞", + "pn": -0.97427 + }, + { + "surface": "寒色", + "readging": "かんしょく", + "pos": "名詞", + "pn": -0.9743 + }, + { + "surface": "病根", + "readging": "びょうこん", + "pos": "名詞", + "pn": -0.974346 + }, + { + "surface": "毒死", + "readging": "どくし", + "pos": "名詞", + "pn": -0.974373 + }, + { + "surface": "へったくれ", + "readging": "へったくれ", + "pos": "名詞", + "pn": -0.974465 + }, + { + "surface": "妄動", + "readging": "もうどう", + "pos": "名詞", + "pn": -0.974518 + }, + { + "surface": "りくつ", + "readging": "りくつっぽい", + "pos": "形容詞", + "pn": -0.974566 + }, + { + "surface": "上", + "readging": "じょう", + "pos": "名詞", + "pn": -0.974571 + }, + { + "surface": "いじ悪", + "readging": "いじわる", + "pos": "名詞", + "pn": -0.974576 + }, + { + "surface": "白い", + "readging": "しろい", + "pos": "形容詞", + "pn": -0.974579 + }, + { + "surface": "頑是無い", + "readging": "がんぜない", + "pos": "形容詞", + "pn": -0.974688 + }, + { + "surface": "悪因悪果", + "readging": "あくいんあっか", + "pos": "名詞", + "pn": -0.974712 + }, + { + "surface": "窮死", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.974751 + }, + { + "surface": "宿痾", + "readging": "しゅくあ", + "pos": "名詞", + "pn": -0.974858 + }, + { + "surface": "忙殺", + "readging": "ぼうさつ", + "pos": "名詞", + "pn": -0.974864 + }, + { + "surface": "いじっ張り", + "readging": "いじっぱり", + "pos": "名詞", + "pn": -0.974868 + }, + { + "surface": "服毒", + "readging": "ふくどく", + "pos": "名詞", + "pn": -0.974888 + }, + { + "surface": "凶兆", + "readging": "きょうちょう", + "pos": "名詞", + "pn": -0.97492 + }, + { + "surface": "血の池", + "readging": "ちのいけ", + "pos": "名詞", + "pn": -0.974928 + }, + { + "surface": "フィラリア病", + "readging": "フィラリアびょう", + "pos": "名詞", + "pn": -0.974934 + }, + { + "surface": "いじいじ", + "readging": "いじいじ", + "pos": "名詞", + "pn": -0.974942 + }, + { + "surface": "動ずる", + "readging": "どうずる", + "pos": "動詞", + "pn": -0.974967 + }, + { + "surface": "顔", + "readging": "がん", + "pos": "名詞", + "pn": -0.974974 + }, + { + "surface": "小党", + "readging": "しょうとう", + "pos": "名詞", + "pn": -0.974987 + }, + { + "surface": "うわつく", + "readging": "うわつく", + "pos": "動詞", + "pn": -0.975014 + }, + { + "surface": "詰責", + "readging": "きっせき", + "pos": "名詞", + "pn": -0.975018 + }, + { + "surface": "銅臭", + "readging": "どうしゅう", + "pos": "名詞", + "pn": -0.975053 + }, + { + "surface": "細瑾", + "readging": "さいきん", + "pos": "名詞", + "pn": -0.97507 + }, + { + "surface": "逆恨み", + "readging": "さかうらみ", + "pos": "名詞", + "pn": -0.975093 + }, + { + "surface": "酔漢", + "readging": "すいかん", + "pos": "名詞", + "pn": -0.975099 + }, + { + "surface": "八方美人", + "readging": "はっぽうびじん", + "pos": "名詞", + "pn": -0.975111 + }, + { + "surface": "物狂おしい", + "readging": "ものぐるおしい", + "pos": "形容詞", + "pn": -0.975113 + }, + { + "surface": "嘆き死に", + "readging": "なげきじに", + "pos": "名詞", + "pn": -0.975122 + }, + { + "surface": "何となく", + "readging": "なんとなく", + "pos": "副詞", + "pn": -0.975136 + }, + { + "surface": "逆運", + "readging": "ぎゃくうん", + "pos": "名詞", + "pn": -0.975237 + }, + { + "surface": "北狄", + "readging": "ほくてき", + "pos": "名詞", + "pn": -0.975281 + }, + { + "surface": "声", + "readging": "せい", + "pos": "名詞", + "pn": -0.975296 + }, + { + "surface": "口幅ったい", + "readging": "くちはばったい", + "pos": "形容詞", + "pn": -0.975329 + }, + { + "surface": "暴勇", + "readging": "ぼうゆう", + "pos": "名詞", + "pn": -0.975365 + }, + { + "surface": "選る", + "readging": "よる", + "pos": "動詞", + "pn": -0.975455 + }, + { + "surface": "忙中", + "readging": "ぼうちゅう", + "pos": "名詞", + "pn": -0.975474 + }, + { + "surface": "不適任", + "readging": "ふてきにん", + "pos": "名詞", + "pn": -0.975516 + }, + { + "surface": "良否", + "readging": "りょうひ", + "pos": "名詞", + "pn": -0.975548 + }, + { + "surface": "劣敗", + "readging": "れっぱい", + "pos": "名詞", + "pn": -0.975554 + }, + { + "surface": "没落", + "readging": "ぼつらく", + "pos": "名詞", + "pn": -0.975572 + }, + { + "surface": "難詰", + "readging": "なんきつ", + "pos": "名詞", + "pn": -0.975598 + }, + { + "surface": "道楽", + "readging": "どうらく", + "pos": "名詞", + "pn": -0.975604 + }, + { + "surface": "あっけ", + "readging": "あっけない", + "pos": "形容詞", + "pn": -0.975665 + }, + { + "surface": "梟将", + "readging": "きょうしょう", + "pos": "名詞", + "pn": -0.975672 + }, + { + "surface": "含む", + "readging": "ふくむ", + "pos": "動詞", + "pn": -0.975718 + }, + { + "surface": "インフェリオリティー コンプレックス", + "readging": "インフェリオリティー コンプレックス", + "pos": "名詞", + "pn": -0.975737 + }, + { + "surface": "奸物", + "readging": "かんぶつ", + "pos": "名詞", + "pn": -0.975748 + }, + { + "surface": "色悪", + "readging": "いろあく", + "pos": "名詞", + "pn": -0.975758 + }, + { + "surface": "危なっかしい", + "readging": "あぶなっかしい", + "pos": "形容詞", + "pn": -0.975777 + }, + { + "surface": "ぎごちない", + "readging": "ぎごちない", + "pos": "形容詞", + "pn": -0.975836 + }, + { + "surface": "夏", + "readging": "なつ", + "pos": "名詞", + "pn": -0.975844 + }, + { + "surface": "流弊", + "readging": "りゅうへい", + "pos": "名詞", + "pn": -0.975921 + }, + { + "surface": "いたつき", + "readging": "いたつき", + "pos": "名詞", + "pn": -0.975961 + }, + { + "surface": "先", + "readging": "さき", + "pos": "名詞", + "pn": -0.976014 + }, + { + "surface": "立てる", + "readging": "たてる", + "pos": "動詞", + "pn": -0.976058 + }, + { + "surface": "小児病", + "readging": "しょうにびょう", + "pos": "名詞", + "pn": -0.976059 + }, + { + "surface": "悪運", + "readging": "あくうん", + "pos": "名詞", + "pn": -0.976063 + }, + { + "surface": "後腐れ", + "readging": "あとくされ", + "pos": "名詞", + "pn": -0.976105 + }, + { + "surface": "惑い", + "readging": "まどい", + "pos": "名詞", + "pn": -0.976115 + }, + { + "surface": "病因", + "readging": "びょういん", + "pos": "名詞", + "pn": -0.97615 + }, + { + "surface": "哀絶", + "readging": "あいぜつ", + "pos": "名詞", + "pn": -0.976158 + }, + { + "surface": "賊名", + "readging": "ぞくめい", + "pos": "名詞", + "pn": -0.97618 + }, + { + "surface": "薬毒", + "readging": "やくどく", + "pos": "名詞", + "pn": -0.976217 + }, + { + "surface": "一人相撲", + "readging": "ひとりずもう", + "pos": "名詞", + "pn": -0.976269 + }, + { + "surface": "紊乱", + "readging": "ぶんらん", + "pos": "名詞", + "pn": -0.976444 + }, + { + "surface": "肉", + "readging": "にく", + "pos": "名詞", + "pn": -0.976466 + }, + { + "surface": "道", + "readging": "みち", + "pos": "名詞", + "pn": -0.976492 + }, + { + "surface": "火中", + "readging": "かちゅう", + "pos": "名詞", + "pn": -0.976518 + }, + { + "surface": "藪蛇", + "readging": "やぶへび", + "pos": "名詞", + "pn": -0.97656 + }, + { + "surface": "たてひき", + "readging": "たてひきずく", + "pos": "名詞", + "pn": -0.976581 + }, + { + "surface": "空っ下手", + "readging": "からっぺた", + "pos": "名詞", + "pn": -0.976605 + }, + { + "surface": "糸", + "readging": "し", + "pos": "名詞", + "pn": -0.976637 + }, + { + "surface": "脱却", + "readging": "だっきゃく", + "pos": "名詞", + "pn": -0.976715 + }, + { + "surface": "驚風", + "readging": "きょうふう", + "pos": "名詞", + "pn": -0.976735 + }, + { + "surface": "切る", + "readging": "きる", + "pos": "動詞", + "pn": -0.976761 + }, + { + "surface": "症例", + "readging": "しょうれい", + "pos": "名詞", + "pn": -0.97681 + }, + { + "surface": "悪しからず", + "readging": "あしからず", + "pos": "副詞", + "pn": -0.976857 + }, + { + "surface": "駆動", + "readging": "くどう", + "pos": "名詞", + "pn": -0.976892 + }, + { + "surface": "嫌疑", + "readging": "けんぎ", + "pos": "名詞", + "pn": -0.976898 + }, + { + "surface": "老弱", + "readging": "ろうじゃく", + "pos": "名詞", + "pn": -0.976904 + }, + { + "surface": "住む", + "readging": "すむ", + "pos": "動詞", + "pn": -0.97697 + }, + { + "surface": "損亡", + "readging": "そんもう", + "pos": "名詞", + "pn": -0.976973 + }, + { + "surface": "病める", + "readging": "やめる", + "pos": "動詞", + "pn": -0.976996 + }, + { + "surface": "骨っぽい", + "readging": "ほねっぽい", + "pos": "形容詞", + "pn": -0.977003 + }, + { + "surface": "こってり", + "readging": "こってり", + "pos": "副詞", + "pn": -0.97705 + }, + { + "surface": "憂色", + "readging": "ゆうしょく", + "pos": "名詞", + "pn": -0.977069 + }, + { + "surface": "病変", + "readging": "びょうへん", + "pos": "名詞", + "pn": -0.977119 + }, + { + "surface": "逸り気", + "readging": "はやりぎ", + "pos": "名詞", + "pn": -0.977121 + }, + { + "surface": "病みほおける", + "readging": "やみほおける", + "pos": "動詞", + "pn": -0.977137 + }, + { + "surface": "死没", + "readging": "しぼつ", + "pos": "名詞", + "pn": -0.977139 + }, + { + "surface": "愕然", + "readging": "がくぜん", + "pos": "名詞", + "pn": -0.977156 + }, + { + "surface": "猛省", + "readging": "もうせい", + "pos": "名詞", + "pn": -0.977171 + }, + { + "surface": "刑死", + "readging": "けいし", + "pos": "名詞", + "pn": -0.977181 + }, + { + "surface": "手重い", + "readging": "ておもい", + "pos": "形容詞", + "pn": -0.977188 + }, + { + "surface": "凡慮", + "readging": "ぼんりょ", + "pos": "名詞", + "pn": -0.977194 + }, + { + "surface": "まごまご", + "readging": "まごまご", + "pos": "副詞", + "pn": -0.977219 + }, + { + "surface": "ぼそぼそ", + "readging": "ぼそぼそ", + "pos": "副詞", + "pn": -0.977252 + }, + { + "surface": "きいきい声", + "readging": "きいきいごえ", + "pos": "名詞", + "pn": -0.977279 + }, + { + "surface": "抜ける", + "readging": "ぬける", + "pos": "動詞", + "pn": -0.977282 + }, + { + "surface": "身", + "readging": "み", + "pos": "名詞", + "pn": -0.977377 + }, + { + "surface": "女囚", + "readging": "じょしゅう", + "pos": "名詞", + "pn": -0.977412 + }, + { + "surface": "痩せ地", + "readging": "やせち", + "pos": "名詞", + "pn": -0.977419 + }, + { + "surface": "穴", + "readging": "けつ", + "pos": "名詞", + "pn": -0.977432 + }, + { + "surface": "無くなる", + "readging": "なくなる", + "pos": "動詞", + "pn": -0.977463 + }, + { + "surface": "愛想尽かし", + "readging": "あいそづかし", + "pos": "名詞", + "pn": -0.977465 + }, + { + "surface": "病巣", + "readging": "びょうそう", + "pos": "名詞", + "pn": -0.977534 + }, + { + "surface": "男囚", + "readging": "だんしゅう", + "pos": "名詞", + "pn": -0.977573 + }, + { + "surface": "下根", + "readging": "げこん", + "pos": "名詞", + "pn": -0.977574 + }, + { + "surface": "手柄顔", + "readging": "てがらがお", + "pos": "名詞", + "pn": -0.977601 + }, + { + "surface": "言捨てる", + "readging": "いいすてる", + "pos": "動詞", + "pn": -0.977613 + }, + { + "surface": "拙論", + "readging": "せつろん", + "pos": "名詞", + "pn": -0.97765 + }, + { + "surface": "告別式", + "readging": "こくべつしき", + "pos": "名詞", + "pn": -0.977654 + }, + { + "surface": "当惑", + "readging": "とうわく", + "pos": "名詞", + "pn": -0.977668 + }, + { + "surface": "船酔", + "readging": "ふなよい", + "pos": "名詞", + "pn": -0.977669 + }, + { + "surface": "劫罰", + "readging": "ごうばつ", + "pos": "名詞", + "pn": -0.977742 + }, + { + "surface": "落ちる", + "readging": "おちる", + "pos": "動詞", + "pn": -0.97775 + }, + { + "surface": "鬱血", + "readging": "うっけつ", + "pos": "名詞", + "pn": -0.97779 + }, + { + "surface": "困憊", + "readging": "こんぱい", + "pos": "名詞", + "pn": -0.977831 + }, + { + "surface": "重重しい", + "readging": "おもおもしい", + "pos": "形容詞", + "pn": -0.977898 + }, + { + "surface": "腹穢い", + "readging": "はらぎたない", + "pos": "形容詞", + "pn": -0.977916 + }, + { + "surface": "飢死", + "readging": "うえじに", + "pos": "名詞", + "pn": -0.978001 + }, + { + "surface": "不遇", + "readging": "ふぐう", + "pos": "名詞", + "pn": -0.978036 + }, + { + "surface": "前駆症状", + "readging": "ぜんくしょうじょう", + "pos": "名詞", + "pn": -0.978051 + }, + { + "surface": "俗事", + "readging": "ぞくじ", + "pos": "名詞", + "pn": -0.978093 + }, + { + "surface": "ぎくりと", + "readging": "ぎくりと", + "pos": "副詞", + "pn": -0.978159 + }, + { + "surface": "既往症", + "readging": "きおうしょう", + "pos": "名詞", + "pn": -0.978167 + }, + { + "surface": "虚業", + "readging": "きょぎょう", + "pos": "名詞", + "pn": -0.978253 + }, + { + "surface": "毛", + "readging": "もう", + "pos": "名詞", + "pn": -0.978321 + }, + { + "surface": "蛮習", + "readging": "ばんしゅう", + "pos": "名詞", + "pn": -0.978342 + }, + { + "surface": "蛮風", + "readging": "ばんぷう", + "pos": "名詞", + "pn": -0.978342 + }, + { + "surface": "暴威", + "readging": "ぼうい", + "pos": "名詞", + "pn": -0.97836 + }, + { + "surface": "威圧", + "readging": "いあつ", + "pos": "名詞", + "pn": -0.978415 + }, + { + "surface": "小破", + "readging": "しょうは", + "pos": "名詞", + "pn": -0.978465 + }, + { + "surface": "暗澹", + "readging": "あんたん", + "pos": "名詞", + "pn": -0.97847 + }, + { + "surface": "ぞくぞく", + "readging": "ぞくぞく", + "pos": "副詞", + "pn": -0.978479 + }, + { + "surface": "入寂", + "readging": "にゅうじゃく", + "pos": "名詞", + "pn": -0.978495 + }, + { + "surface": "向寒", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.978528 + }, + { + "surface": "気", + "readging": "け", + "pos": "名詞", + "pn": -0.978644 + }, + { + "surface": "淫事", + "readging": "いんじ", + "pos": "名詞", + "pn": -0.978649 + }, + { + "surface": "有名無実", + "readging": "ゆうめいむじつ", + "pos": "名詞", + "pn": -0.978657 + }, + { + "surface": "膝", + "readging": "ひざ", + "pos": "名詞", + "pn": -0.978661 + }, + { + "surface": "場当り", + "readging": "ばあたり", + "pos": "名詞", + "pn": -0.978699 + }, + { + "surface": "妖雲", + "readging": "よううん", + "pos": "名詞", + "pn": -0.978721 + }, + { + "surface": "狂死", + "readging": "きょうし", + "pos": "名詞", + "pn": -0.97873 + }, + { + "surface": "底意地", + "readging": "そこいじ", + "pos": "名詞", + "pn": -0.978735 + }, + { + "surface": "座る", + "readging": "すわる", + "pos": "動詞", + "pn": -0.978744 + }, + { + "surface": "敵す", + "readging": "てきす", + "pos": "動詞", + "pn": -0.978746 + }, + { + "surface": "偽善", + "readging": "ぎぜん", + "pos": "名詞", + "pn": -0.978748 + }, + { + "surface": "行路病者", + "readging": "こうろびょうしゃ", + "pos": "名詞", + "pn": -0.978765 + }, + { + "surface": "慙死", + "readging": "ざんし", + "pos": "名詞", + "pn": -0.978769 + }, + { + "surface": "恨みっこ", + "readging": "うらみっこ", + "pos": "名詞", + "pn": -0.978797 + }, + { + "surface": "軋轢", + "readging": "あつれき", + "pos": "名詞", + "pn": -0.978825 + }, + { + "surface": "上げる", + "readging": "あげる", + "pos": "動詞", + "pn": -0.978829 + }, + { + "surface": "体罰", + "readging": "たいばつ", + "pos": "名詞", + "pn": -0.978888 + }, + { + "surface": "手緩い", + "readging": "てぬるい", + "pos": "形容詞", + "pn": -0.978889 + }, + { + "surface": "回り遠い", + "readging": "まわりどおい", + "pos": "形容詞", + "pn": -0.978909 + }, + { + "surface": "どす黒い", + "readging": "どすぐろい", + "pos": "形容詞", + "pn": -0.97892 + }, + { + "surface": "臭わせる", + "readging": "におわせる", + "pos": "動詞", + "pn": -0.978934 + }, + { + "surface": "飯", + "readging": "めし", + "pos": "名詞", + "pn": -0.978962 + }, + { + "surface": "蹣跚", + "readging": "まんさん", + "pos": "名詞", + "pn": -0.978967 + }, + { + "surface": "くよくよ", + "readging": "くよくよ", + "pos": "副詞", + "pn": -0.978974 + }, + { + "surface": "乱酔", + "readging": "らんすい", + "pos": "名詞", + "pn": -0.979023 + }, + { + "surface": "九尺二間", + "readging": "くしゃくにけん", + "pos": "名詞", + "pn": -0.979036 + }, + { + "surface": "尻こそばい", + "readging": "しりこそばい", + "pos": "形容詞", + "pn": -0.979049 + }, + { + "surface": "山", + "readging": "やま", + "pos": "名詞", + "pn": -0.979061 + }, + { + "surface": "今際", + "readging": "いまわ", + "pos": "名詞", + "pn": -0.979065 + }, + { + "surface": "失火", + "readging": "しっか", + "pos": "名詞", + "pn": -0.979095 + }, + { + "surface": "北ぼう", + "readging": "ほくぼう", + "pos": "名詞", + "pn": -0.9791 + }, + { + "surface": "離愁", + "readging": "りしゅう", + "pos": "名詞", + "pn": -0.97916 + }, + { + "surface": "どきりと", + "readging": "どきりと", + "pos": "副詞", + "pn": -0.979166 + }, + { + "surface": "急火", + "readging": "きゅうか", + "pos": "名詞", + "pn": -0.979197 + }, + { + "surface": "厄日", + "readging": "やくび", + "pos": "名詞", + "pn": -0.979205 + }, + { + "surface": "心苦しい", + "readging": "こころぐるしい", + "pos": "形容詞", + "pn": -0.979272 + }, + { + "surface": "皮膚", + "readging": "ひふ", + "pos": "名詞", + "pn": -0.979289 + }, + { + "surface": "BCG", + "readging": "ビーシージー", + "pos": "名詞", + "pn": -0.979293 + }, + { + "surface": "言いそびれる", + "readging": "いいそびれる", + "pos": "動詞", + "pn": -0.979301 + }, + { + "surface": "甘やかす", + "readging": "あまやかす", + "pos": "動詞", + "pn": -0.979313 + }, + { + "surface": "直ぐ", + "readging": "すぐ", + "pos": "副詞", + "pn": -0.979316 + }, + { + "surface": "蕭蕭", + "readging": "しょうしょう", + "pos": "名詞", + "pn": -0.979325 + }, + { + "surface": "冷評", + "readging": "れいひょう", + "pos": "名詞", + "pn": -0.979345 + }, + { + "surface": "未練", + "readging": "みれん", + "pos": "名詞", + "pn": -0.979362 + }, + { + "surface": "だら幹", + "readging": "だらかん", + "pos": "名詞", + "pn": -0.979395 + }, + { + "surface": "悪騒ぎ", + "readging": "わるさわぎ", + "pos": "名詞", + "pn": -0.979455 + }, + { + "surface": "乗外す", + "readging": "のりはずす", + "pos": "動詞", + "pn": -0.979482 + }, + { + "surface": "細かい", + "readging": "こまかい", + "pos": "形容詞", + "pn": -0.979487 + }, + { + "surface": "失語", + "readging": "しつご", + "pos": "名詞", + "pn": -0.979512 + }, + { + "surface": "不定愁訴", + "readging": "ふていしゅうそ", + "pos": "名詞", + "pn": -0.979516 + }, + { + "surface": "通弊", + "readging": "つうへい", + "pos": "名詞", + "pn": -0.979567 + }, + { + "surface": "疫病神", + "readging": "やくびょうがみ", + "pos": "名詞", + "pn": -0.979615 + }, + { + "surface": "先非", + "readging": "せんぴ", + "pos": "名詞", + "pn": -0.979637 + }, + { + "surface": "風", + "readging": "ふう", + "pos": "名詞", + "pn": -0.979644 + }, + { + "surface": "空世辞", + "readging": "からせじ", + "pos": "名詞", + "pn": -0.979658 + }, + { + "surface": "血腥い", + "readging": "ちなまぐさい", + "pos": "形容詞", + "pn": -0.979711 + }, + { + "surface": "百害", + "readging": "ひゃくがい", + "pos": "名詞", + "pn": -0.979727 + }, + { + "surface": "劣化", + "readging": "れっか", + "pos": "名詞", + "pn": -0.979749 + }, + { + "surface": "売僧", + "readging": "まいす", + "pos": "名詞", + "pn": -0.97975 + }, + { + "surface": "愁傷", + "readging": "しゅうしょう", + "pos": "名詞", + "pn": -0.979778 + }, + { + "surface": "もさっと", + "readging": "もさっと", + "pos": "副詞", + "pn": -0.979792 + }, + { + "surface": "のこのこ", + "readging": "のこのこ", + "pos": "副詞", + "pn": -0.979802 + }, + { + "surface": "置く", + "readging": "おく", + "pos": "動詞", + "pn": -0.979829 + }, + { + "surface": "男狂い", + "readging": "おとこぐるい", + "pos": "名詞", + "pn": -0.979847 + }, + { + "surface": "中", + "readging": "なか", + "pos": "名詞", + "pn": -0.979874 + }, + { + "surface": "未だ", + "readging": "まだ", + "pos": "副詞", + "pn": -0.979876 + }, + { + "surface": "蒲柳", + "readging": "ほりゅう", + "pos": "名詞", + "pn": -0.979898 + }, + { + "surface": "魔王", + "readging": "まおう", + "pos": "名詞", + "pn": -0.97994 + }, + { + "surface": "悲憤", + "readging": "ひふん", + "pos": "名詞", + "pn": -0.979948 + }, + { + "surface": "凡骨", + "readging": "ぼんこつ", + "pos": "名詞", + "pn": -0.979962 + }, + { + "surface": "ぶれる", + "readging": "ぶれる", + "pos": "動詞", + "pn": -0.979982 + }, + { + "surface": "万病", + "readging": "まんびょう", + "pos": "名詞", + "pn": -0.979996 + }, + { + "surface": "未だしい", + "readging": "いまだしい", + "pos": "形容詞", + "pn": -0.980013 + }, + { + "surface": "ぐしゃっと", + "readging": "ぐしゃっと", + "pos": "副詞", + "pn": -0.980021 + }, + { + "surface": "難症", + "readging": "なんしょう", + "pos": "名詞", + "pn": -0.980049 + }, + { + "surface": "漏電", + "readging": "ろうでん", + "pos": "名詞", + "pn": -0.980053 + }, + { + "surface": "痩せ山", + "readging": "やせやま", + "pos": "名詞", + "pn": -0.980066 + }, + { + "surface": "妖言", + "readging": "ようげん", + "pos": "名詞", + "pn": -0.980075 + }, + { + "surface": "匪徒", + "readging": "ひと", + "pos": "名詞", + "pn": -0.980155 + }, + { + "surface": "情痴", + "readging": "じょうち", + "pos": "名詞", + "pn": -0.98017 + }, + { + "surface": "忌服", + "readging": "きぶく", + "pos": "名詞", + "pn": -0.980184 + }, + { + "surface": "魚", + "readging": "さかな", + "pos": "名詞", + "pn": -0.98022 + }, + { + "surface": "離間", + "readging": "りかん", + "pos": "名詞", + "pn": -0.980243 + }, + { + "surface": "泡銭", + "readging": "あぶくぜに", + "pos": "名詞", + "pn": -0.980295 + }, + { + "surface": "寒気", + "readging": "かんき", + "pos": "名詞", + "pn": -0.980315 + }, + { + "surface": "夭死", + "readging": "ようし", + "pos": "名詞", + "pn": -0.980324 + }, + { + "surface": "海損", + "readging": "かいそん", + "pos": "名詞", + "pn": -0.98041 + }, + { + "surface": "佞人", + "readging": "ねいじん", + "pos": "名詞", + "pn": -0.980411 + }, + { + "surface": "悪擦れ", + "readging": "わるずれ", + "pos": "名詞", + "pn": -0.980436 + }, + { + "surface": "ぎょっと", + "readging": "ぎょっと", + "pos": "副詞", + "pn": -0.980469 + }, + { + "surface": "吐乳", + "readging": "とにゅう", + "pos": "名詞", + "pn": -0.980482 + }, + { + "surface": "暗剣殺", + "readging": "あんけんさつ", + "pos": "名詞", + "pn": -0.980498 + }, + { + "surface": "狡兎", + "readging": "こうと", + "pos": "名詞", + "pn": -0.980529 + }, + { + "surface": "去勢", + "readging": "きょせい", + "pos": "名詞", + "pn": -0.980547 + }, + { + "surface": "頭", + "readging": "とう", + "pos": "名詞", + "pn": -0.980576 + }, + { + "surface": "半殺し", + "readging": "はんごろし", + "pos": "名詞", + "pn": -0.980587 + }, + { + "surface": "余喘", + "readging": "よぜん", + "pos": "名詞", + "pn": -0.980618 + }, + { + "surface": "疑心", + "readging": "ぎしん", + "pos": "名詞", + "pn": -0.980631 + }, + { + "surface": "業苦", + "readging": "ごうく", + "pos": "名詞", + "pn": -0.980639 + }, + { + "surface": "小賢しい", + "readging": "こざかしい", + "pos": "形容詞", + "pn": -0.980647 + }, + { + "surface": "執念深い", + "readging": "しゅうねんぶかい", + "pos": "形容詞", + "pn": -0.980653 + }, + { + "surface": "古臭い", + "readging": "ふるくさい", + "pos": "形容詞", + "pn": -0.980653 + }, + { + "surface": "討死", + "readging": "うちじに", + "pos": "名詞", + "pn": -0.98067 + }, + { + "surface": "嘘字", + "readging": "うそじ", + "pos": "名詞", + "pn": -0.980682 + }, + { + "surface": "外患", + "readging": "がいかん", + "pos": "名詞", + "pn": -0.980707 + }, + { + "surface": "生乾き", + "readging": "なまがわき", + "pos": "名詞", + "pn": -0.980709 + }, + { + "surface": "だだっ広い", + "readging": "だだっぴろい", + "pos": "形容詞", + "pn": -0.980738 + }, + { + "surface": "独り善がり", + "readging": "ひとりよがり", + "pos": "名詞", + "pn": -0.980743 + }, + { + "surface": "老死", + "readging": "ろうし", + "pos": "名詞", + "pn": -0.980747 + }, + { + "surface": "迷信", + "readging": "めいしん", + "pos": "名詞", + "pn": -0.980765 + }, + { + "surface": "不慮", + "readging": "ふりょ", + "pos": "名詞", + "pn": -0.980781 + }, + { + "surface": "脳溢血", + "readging": "のういっけつ", + "pos": "名詞", + "pn": -0.980838 + }, + { + "surface": "佞臣", + "readging": "ねいしん", + "pos": "名詞", + "pn": -0.980844 + }, + { + "surface": "露顕", + "readging": "ろけん", + "pos": "名詞", + "pn": -0.98087 + }, + { + "surface": "激しい", + "readging": "はげしい", + "pos": "形容詞", + "pn": -0.980937 + }, + { + "surface": "馬の骨", + "readging": "うまのほね", + "pos": "名詞", + "pn": -0.98094 + }, + { + "surface": "過労", + "readging": "かろう", + "pos": "名詞", + "pn": -0.98095 + }, + { + "surface": "世直し", + "readging": "よなおし", + "pos": "名詞", + "pn": -0.98098 + }, + { + "surface": "闇", + "readging": "あん", + "pos": "名詞", + "pn": -0.98099 + }, + { + "surface": "洗練", + "readging": "せんれん", + "pos": "名詞", + "pn": -0.980997 + }, + { + "surface": "うら恥しい", + "readging": "うらはずかしい", + "pos": "形容詞", + "pn": -0.981018 + }, + { + "surface": "低能", + "readging": "ていのう", + "pos": "名詞", + "pn": -0.981021 + }, + { + "surface": "薬害", + "readging": "やくがい", + "pos": "名詞", + "pn": -0.981052 + }, + { + "surface": "暗転", + "readging": "あんてん", + "pos": "名詞", + "pn": -0.981101 + }, + { + "surface": "曲論", + "readging": "きょくろん", + "pos": "名詞", + "pn": -0.981104 + }, + { + "surface": "死児", + "readging": "しじ", + "pos": "名詞", + "pn": -0.981158 + }, + { + "surface": "道具", + "readging": "どうぐ", + "pos": "名詞", + "pn": -0.981161 + }, + { + "surface": "病虫害", + "readging": "びょうちゅうがい", + "pos": "名詞", + "pn": -0.981168 + }, + { + "surface": "歩く", + "readging": "あるく", + "pos": "動詞", + "pn": -0.981248 + }, + { + "surface": "職業病", + "readging": "しょくぎょうびょう", + "pos": "名詞", + "pn": -0.981265 + }, + { + "surface": "不首尾", + "readging": "ふしゅび", + "pos": "名詞", + "pn": -0.98127 + }, + { + "surface": "鬩ぐ", + "readging": "せめぐ", + "pos": "動詞", + "pn": -0.981272 + }, + { + "surface": "嵐気", + "readging": "らんき", + "pos": "名詞", + "pn": -0.981275 + }, + { + "surface": "ちんぴら", + "readging": "ちんぴら", + "pos": "名詞", + "pn": -0.981276 + }, + { + "surface": "早桶", + "readging": "はやおけ", + "pos": "名詞", + "pn": -0.981277 + }, + { + "surface": "囚役", + "readging": "しゅうえき", + "pos": "名詞", + "pn": -0.981278 + }, + { + "surface": "三", + "readging": "みつ", + "pos": "名詞", + "pn": -0.981313 + }, + { + "surface": "得手勝手", + "readging": "えてかって", + "pos": "名詞", + "pn": -0.981328 + }, + { + "surface": "適応症", + "readging": "てきおうしょう", + "pos": "名詞", + "pn": -0.981335 + }, + { + "surface": "俗信", + "readging": "ぞくしん", + "pos": "名詞", + "pn": -0.981358 + }, + { + "surface": "天火", + "readging": "てんか", + "pos": "名詞", + "pn": -0.98136 + }, + { + "surface": "結滞", + "readging": "けったい", + "pos": "名詞", + "pn": -0.981408 + }, + { + "surface": "寝刃", + "readging": "ねたば", + "pos": "名詞", + "pn": -0.981432 + }, + { + "surface": "音", + "readging": "ね", + "pos": "名詞", + "pn": -0.98144 + }, + { + "surface": "激症", + "readging": "げきしょう", + "pos": "名詞", + "pn": -0.981476 + }, + { + "surface": "無才", + "readging": "むさい", + "pos": "名詞", + "pn": -0.981487 + }, + { + "surface": "死産", + "readging": "しざん", + "pos": "名詞", + "pn": -0.981498 + }, + { + "surface": "かんじょう", + "readging": "かんじょうずく", + "pos": "名詞", + "pn": -0.9815 + }, + { + "surface": "家出", + "readging": "いえで", + "pos": "名詞", + "pn": -0.981509 + }, + { + "surface": "戦雲", + "readging": "せんうん", + "pos": "名詞", + "pn": -0.981526 + }, + { + "surface": "どた靴", + "readging": "どたぐつ", + "pos": "名詞", + "pn": -0.981527 + }, + { + "surface": "贖罪", + "readging": "しょくざい", + "pos": "名詞", + "pn": -0.981572 + }, + { + "surface": "加減物", + "readging": "かげんもの", + "pos": "名詞", + "pn": -0.981584 + }, + { + "surface": "小ぢんまり", + "readging": "こぢんまり", + "pos": "副詞", + "pn": -0.981587 + }, + { + "surface": "冬枯れ", + "readging": "ふゆがれ", + "pos": "名詞", + "pn": -0.981587 + }, + { + "surface": "おどろおどろしい", + "readging": "おどろおどろしい", + "pos": "形容詞", + "pn": -0.981625 + }, + { + "surface": "どら息子", + "readging": "どらむすこ", + "pos": "名詞", + "pn": -0.981671 + }, + { + "surface": "血友病", + "readging": "けつゆうびょう", + "pos": "名詞", + "pn": -0.981676 + }, + { + "surface": "馬頭", + "readging": "めず", + "pos": "名詞", + "pn": -0.981739 + }, + { + "surface": "生贄", + "readging": "いけにえ", + "pos": "名詞", + "pn": -0.981767 + }, + { + "surface": "難聴", + "readging": "なんちょう", + "pos": "名詞", + "pn": -0.981848 + }, + { + "surface": "讒臣", + "readging": "ざんしん", + "pos": "名詞", + "pn": -0.98187 + }, + { + "surface": "悪手", + "readging": "あくしゅ", + "pos": "名詞", + "pn": -0.981874 + }, + { + "surface": "老病", + "readging": "ろうびょう", + "pos": "名詞", + "pn": -0.981875 + }, + { + "surface": "仰天", + "readging": "ぎょうてん", + "pos": "名詞", + "pn": -0.981902 + }, + { + "surface": "細い", + "readging": "ほそい", + "pos": "形容詞", + "pn": -0.981903 + }, + { + "surface": "錆びる", + "readging": "さびる", + "pos": "動詞", + "pn": -0.981907 + }, + { + "surface": "足弱", + "readging": "あしよわ", + "pos": "名詞", + "pn": -0.981949 + }, + { + "surface": "痛風", + "readging": "つうふう", + "pos": "名詞", + "pn": -0.981965 + }, + { + "surface": "不風流", + "readging": "ぶふうりゅう", + "pos": "名詞", + "pn": -0.982018 + }, + { + "surface": "厭世", + "readging": "えんせい", + "pos": "名詞", + "pn": -0.982018 + }, + { + "surface": "煮る", + "readging": "にる", + "pos": "動詞", + "pn": -0.982056 + }, + { + "surface": "無神経", + "readging": "むしんけい", + "pos": "名詞", + "pn": -0.982065 + }, + { + "surface": "黒水引", + "readging": "くろみずひき", + "pos": "名詞", + "pn": -0.982065 + }, + { + "surface": "難易", + "readging": "なんい", + "pos": "名詞", + "pn": -0.982078 + }, + { + "surface": "紐", + "readging": "ひも", + "pos": "名詞", + "pn": -0.982083 + }, + { + "surface": "死に遅れる", + "readging": "しにおくれる", + "pos": "動詞", + "pn": -0.982088 + }, + { + "surface": "逸機", + "readging": "いっき", + "pos": "名詞", + "pn": -0.982095 + }, + { + "surface": "縁遠い", + "readging": "えんどおい", + "pos": "形容詞", + "pn": -0.982134 + }, + { + "surface": "桃尻", + "readging": "ももじり", + "pos": "名詞", + "pn": -0.982138 + }, + { + "surface": "子供", + "readging": "こども", + "pos": "名詞", + "pn": -0.982188 + }, + { + "surface": "忠諫", + "readging": "ちゅうかん", + "pos": "名詞", + "pn": -0.98221 + }, + { + "surface": "逸遊", + "readging": "いつゆう", + "pos": "名詞", + "pn": -0.982248 + }, + { + "surface": "不順", + "readging": "ふじゅん", + "pos": "名詞", + "pn": -0.982276 + }, + { + "surface": "突指", + "readging": "つきゆび", + "pos": "名詞", + "pn": -0.982286 + }, + { + "surface": "誘惑", + "readging": "ゆうわく", + "pos": "名詞", + "pn": -0.982311 + }, + { + "surface": "奇病", + "readging": "きびょう", + "pos": "名詞", + "pn": -0.982325 + }, + { + "surface": "堅忍不抜", + "readging": "けんにんふばつ", + "pos": "名詞", + "pn": -0.982333 + }, + { + "surface": "竹の子医者", + "readging": "たけのこいしゃ", + "pos": "名詞", + "pn": -0.982339 + }, + { + "surface": "不豫", + "readging": "ふよ", + "pos": "名詞", + "pn": -0.982351 + }, + { + "surface": "お手盛", + "readging": "おてもり", + "pos": "名詞", + "pn": -0.982369 + }, + { + "surface": "貧小", + "readging": "ひんしょう", + "pos": "名詞", + "pn": -0.98237 + }, + { + "surface": "不貞る", + "readging": "ふてる", + "pos": "動詞", + "pn": -0.982383 + }, + { + "surface": "疎遠", + "readging": "そえん", + "pos": "名詞", + "pn": -0.982398 + }, + { + "surface": "敗北", + "readging": "はいぼく", + "pos": "名詞", + "pn": -0.982408 + }, + { + "surface": "仏滅", + "readging": "ぶつめつ", + "pos": "名詞", + "pn": -0.982414 + }, + { + "surface": "焦がれ死", + "readging": "こがれじに", + "pos": "名詞", + "pn": -0.982423 + }, + { + "surface": "妖星", + "readging": "ようせい", + "pos": "名詞", + "pn": -0.982447 + }, + { + "surface": "違和", + "readging": "いわ", + "pos": "名詞", + "pn": -0.982463 + }, + { + "surface": "忌辰", + "readging": "きしん", + "pos": "名詞", + "pn": -0.982468 + }, + { + "surface": "逮夜", + "readging": "たいや", + "pos": "名詞", + "pn": -0.982476 + }, + { + "surface": "虚脱", + "readging": "きょだつ", + "pos": "名詞", + "pn": -0.982488 + }, + { + "surface": "早死", + "readging": "はやじに", + "pos": "名詞", + "pn": -0.9825 + }, + { + "surface": "略叙", + "readging": "りゃくじょ", + "pos": "名詞", + "pn": -0.982526 + }, + { + "surface": "失神", + "readging": "しっしん", + "pos": "名詞", + "pn": -0.982529 + }, + { + "surface": "生える", + "readging": "はえる", + "pos": "動詞", + "pn": -0.982531 + }, + { + "surface": "日和見主義", + "readging": "ひよりみしゅぎ", + "pos": "名詞", + "pn": -0.982538 + }, + { + "surface": "遅遅", + "readging": "ちち", + "pos": "名詞", + "pn": -0.982555 + }, + { + "surface": "死線", + "readging": "しせん", + "pos": "名詞", + "pn": -0.982569 + }, + { + "surface": "誤る", + "readging": "あやまる", + "pos": "動詞", + "pn": -0.982576 + }, + { + "surface": "音痴", + "readging": "おんち", + "pos": "名詞", + "pn": -0.982585 + }, + { + "surface": "洗脳", + "readging": "せんのう", + "pos": "名詞", + "pn": -0.982622 + }, + { + "surface": "苛立たしい", + "readging": "いらだたしい", + "pos": "形容詞", + "pn": -0.982663 + }, + { + "surface": "寝穢い", + "readging": "いぎたない", + "pos": "形容詞", + "pn": -0.982666 + }, + { + "surface": "死に急ぐ", + "readging": "しにいそぐ", + "pos": "動詞", + "pn": -0.982676 + }, + { + "surface": "備荒", + "readging": "びこう", + "pos": "名詞", + "pn": -0.982683 + }, + { + "surface": "苦渋", + "readging": "くじゅう", + "pos": "名詞", + "pn": -0.98269 + }, + { + "surface": "お世辞", + "readging": "おせじ", + "pos": "名詞", + "pn": -0.982693 + }, + { + "surface": "低迷", + "readging": "ていめい", + "pos": "名詞", + "pn": -0.982722 + }, + { + "surface": "業", + "readging": "ごう", + "pos": "名詞", + "pn": -0.982726 + }, + { + "surface": "倉皇", + "readging": "そうこう", + "pos": "名詞", + "pn": -0.982767 + }, + { + "surface": "ぴりぴり", + "readging": "ぴりぴり", + "pos": "副詞", + "pn": -0.982769 + }, + { + "surface": "赤信号", + "readging": "あかしんごう", + "pos": "名詞", + "pn": -0.982779 + }, + { + "surface": "気苦労", + "readging": "きぐろう", + "pos": "名詞", + "pn": -0.982803 + }, + { + "surface": "蕎麦", + "readging": "そば", + "pos": "名詞", + "pn": -0.982811 + }, + { + "surface": "簒奪", + "readging": "さんだつ", + "pos": "名詞", + "pn": -0.98282 + }, + { + "surface": "妬ましい", + "readging": "ねたましい", + "pos": "形容詞", + "pn": -0.982843 + }, + { + "surface": "炎熱", + "readging": "えんねつ", + "pos": "名詞", + "pn": -0.982847 + }, + { + "surface": "背中合せ", + "readging": "せなかあわせ", + "pos": "名詞", + "pn": -0.982848 + }, + { + "surface": "腰弱", + "readging": "こしよわ", + "pos": "名詞", + "pn": -0.982854 + }, + { + "surface": "秘文", + "readging": "ひもん", + "pos": "名詞", + "pn": -0.982869 + }, + { + "surface": "胃病", + "readging": "いびょう", + "pos": "名詞", + "pn": -0.982888 + }, + { + "surface": "あざとい", + "readging": "あざとい", + "pos": "形容詞", + "pn": -0.982936 + }, + { + "surface": "飼殺し", + "readging": "かいごろし", + "pos": "名詞", + "pn": -0.982939 + }, + { + "surface": "死神", + "readging": "しにがみ", + "pos": "名詞", + "pn": -0.982939 + }, + { + "surface": "労咳", + "readging": "ろうがい", + "pos": "名詞", + "pn": -0.982961 + }, + { + "surface": "中口", + "readging": "なかぐち", + "pos": "名詞", + "pn": -0.982969 + }, + { + "surface": "誤読", + "readging": "ごどく", + "pos": "名詞", + "pn": -0.982971 + }, + { + "surface": "両舌", + "readging": "りょうぜつ", + "pos": "名詞", + "pn": -0.98302 + }, + { + "surface": "料理", + "readging": "りょうり", + "pos": "名詞", + "pn": -0.983048 + }, + { + "surface": "腰砕け", + "readging": "こしくだけ", + "pos": "名詞", + "pn": -0.983062 + }, + { + "surface": "見せびらかす", + "readging": "みせびらかす", + "pos": "動詞", + "pn": -0.983078 + }, + { + "surface": "膏肓", + "readging": "こうこう", + "pos": "名詞", + "pn": -0.983087 + }, + { + "surface": "悪弊", + "readging": "あくへい", + "pos": "名詞", + "pn": -0.9831 + }, + { + "surface": "驕る", + "readging": "おごる", + "pos": "動詞", + "pn": -0.983109 + }, + { + "surface": "天魔", + "readging": "てんま", + "pos": "名詞", + "pn": -0.98312 + }, + { + "surface": "角番", + "readging": "かどばん", + "pos": "名詞", + "pn": -0.983123 + }, + { + "surface": "がたぴし", + "readging": "がたぴし", + "pos": "名詞", + "pn": -0.983142 + }, + { + "surface": "左前", + "readging": "ひだりまえ", + "pos": "名詞", + "pn": -0.983146 + }, + { + "surface": "軽傷", + "readging": "けいしょう", + "pos": "名詞", + "pn": -0.983159 + }, + { + "surface": "もじもじ", + "readging": "もじもじ", + "pos": "副詞", + "pn": -0.983162 + }, + { + "surface": "過大", + "readging": "かだい", + "pos": "名詞", + "pn": -0.983215 + }, + { + "surface": "水牢", + "readging": "みずろう", + "pos": "名詞", + "pn": -0.983238 + }, + { + "surface": "片腹痛い", + "readging": "かたはらいたい", + "pos": "形容詞", + "pn": -0.983241 + }, + { + "surface": "嗜眠", + "readging": "しみん", + "pos": "名詞", + "pn": -0.983241 + }, + { + "surface": "ドン ファン", + "readging": "ドン ファン", + "pos": "名詞", + "pn": -0.983243 + }, + { + "surface": "イエロー", + "readging": "イエローカード", + "pos": "名詞", + "pn": -0.983253 + }, + { + "surface": "駄犬", + "readging": "だけん", + "pos": "名詞", + "pn": -0.983256 + }, + { + "surface": "病没", + "readging": "びょうぼつ", + "pos": "名詞", + "pn": -0.983275 + }, + { + "surface": "金槌頭", + "readging": "かなづちあたま", + "pos": "名詞", + "pn": -0.983285 + }, + { + "surface": "危急", + "readging": "ききゅう", + "pos": "名詞", + "pn": -0.983285 + }, + { + "surface": "胃拡張", + "readging": "いかくちょう", + "pos": "名詞", + "pn": -0.983295 + }, + { + "surface": "生埋め", + "readging": "いきうめ", + "pos": "名詞", + "pn": -0.983298 + }, + { + "surface": "悪感情", + "readging": "あくかんじょう", + "pos": "名詞", + "pn": -0.983304 + }, + { + "surface": "嘆かわしい", + "readging": "なげかわしい", + "pos": "形容詞", + "pn": -0.983305 + }, + { + "surface": "死金", + "readging": "しにがね", + "pos": "名詞", + "pn": -0.983319 + }, + { + "surface": "女女しい", + "readging": "めめしい", + "pos": "形容詞", + "pn": -0.98332 + }, + { + "surface": "二度手間", + "readging": "にどでま", + "pos": "名詞", + "pn": -0.983321 + }, + { + "surface": "厳しい", + "readging": "いかめしい", + "pos": "形容詞", + "pn": -0.983324 + }, + { + "surface": "青臭い", + "readging": "あおくさい", + "pos": "形容詞", + "pn": -0.98334 + }, + { + "surface": "奇矯", + "readging": "ききょう", + "pos": "名詞", + "pn": -0.983352 + }, + { + "surface": "食用", + "readging": "しょくよう", + "pos": "名詞", + "pn": -0.983365 + }, + { + "surface": "僻事", + "readging": "ひがごと", + "pos": "名詞", + "pn": -0.983396 + }, + { + "surface": "失う", + "readging": "うしなう", + "pos": "動詞", + "pn": -0.983402 + }, + { + "surface": "鬱積", + "readging": "うっせき", + "pos": "名詞", + "pn": -0.983412 + }, + { + "surface": "難件", + "readging": "なんけん", + "pos": "名詞", + "pn": -0.983419 + }, + { + "surface": "享年", + "readging": "きょうねん", + "pos": "名詞", + "pn": -0.983431 + }, + { + "surface": "鬱鬱", + "readging": "うつうつ", + "pos": "名詞", + "pn": -0.983433 + }, + { + "surface": "買言葉", + "readging": "かいことば", + "pos": "名詞", + "pn": -0.983453 + }, + { + "surface": "邪神", + "readging": "じゃしん", + "pos": "名詞", + "pn": -0.983457 + }, + { + "surface": "色", + "readging": "しょく", + "pos": "名詞", + "pn": -0.983463 + }, + { + "surface": "熱射病", + "readging": "ねっしゃびょう", + "pos": "名詞", + "pn": -0.983483 + }, + { + "surface": "色仕掛け", + "readging": "いろじかけ", + "pos": "名詞", + "pn": -0.983485 + }, + { + "surface": "札付", + "readging": "ふだつき", + "pos": "名詞", + "pn": -0.98349 + }, + { + "surface": "忌詞", + "readging": "いみことば", + "pos": "名詞", + "pn": -0.983498 + }, + { + "surface": "遺恨", + "readging": "いこん", + "pos": "名詞", + "pn": -0.983533 + }, + { + "surface": "圧殺", + "readging": "あっさつ", + "pos": "名詞", + "pn": -0.983552 + }, + { + "surface": "たじたじ", + "readging": "たじたじ", + "pos": "名詞", + "pn": -0.983556 + }, + { + "surface": "邪教", + "readging": "じゃきょう", + "pos": "名詞", + "pn": -0.983563 + }, + { + "surface": "荒れ模様", + "readging": "あれもよう", + "pos": "名詞", + "pn": -0.983568 + }, + { + "surface": "悄悄", + "readging": "しょうしょう", + "pos": "名詞", + "pn": -0.983571 + }, + { + "surface": "照れ臭い", + "readging": "てれくさい", + "pos": "形容詞", + "pn": -0.983599 + }, + { + "surface": "案じ", + "readging": "あんじ", + "pos": "名詞", + "pn": -0.983601 + }, + { + "surface": "脳軟化症", + "readging": "のうなんかしょう", + "pos": "名詞", + "pn": -0.983623 + }, + { + "surface": "笑止千万", + "readging": "しょうしせんばん", + "pos": "名詞", + "pn": -0.983631 + }, + { + "surface": "邪説", + "readging": "じゃせつ", + "pos": "名詞", + "pn": -0.983631 + }, + { + "surface": "馬鹿騒ぎ", + "readging": "ばかさわぎ", + "pos": "名詞", + "pn": -0.983634 + }, + { + "surface": "ファシスト", + "readging": "ファシスト", + "pos": "名詞", + "pn": -0.983651 + }, + { + "surface": "苦役", + "readging": "くえき", + "pos": "名詞", + "pn": -0.983656 + }, + { + "surface": "衒気", + "readging": "げんき", + "pos": "名詞", + "pn": -0.983691 + }, + { + "surface": "スラム", + "readging": "スラム", + "pos": "名詞", + "pn": -0.983697 + }, + { + "surface": "讒言", + "readging": "ざんげん", + "pos": "名詞", + "pn": -0.983705 + }, + { + "surface": "戦死", + "readging": "せんし", + "pos": "名詞", + "pn": -0.983708 + }, + { + "surface": "空気伝染", + "readging": "くうきでんせん", + "pos": "名詞", + "pn": -0.983713 + }, + { + "surface": "婦人病", + "readging": "ふじんびょう", + "pos": "名詞", + "pn": -0.983718 + }, + { + "surface": "押し付けがましい", + "readging": "おしつけがましい", + "pos": "形容詞", + "pn": -0.983729 + }, + { + "surface": "弱国", + "readging": "じゃっこく", + "pos": "名詞", + "pn": -0.983736 + }, + { + "surface": "ぷいと", + "readging": "ぷいと", + "pos": "副詞", + "pn": -0.983755 + }, + { + "surface": "弱化", + "readging": "じゃっか", + "pos": "名詞", + "pn": -0.983774 + }, + { + "surface": "暗雲", + "readging": "あんうん", + "pos": "名詞", + "pn": -0.983775 + }, + { + "surface": "スランプ", + "readging": "スランプ", + "pos": "名詞", + "pn": -0.983846 + }, + { + "surface": "窮乏", + "readging": "きゅうぼう", + "pos": "名詞", + "pn": -0.983849 + }, + { + "surface": "業報", + "readging": "ごうほう", + "pos": "名詞", + "pn": -0.983878 + }, + { + "surface": "幽愁", + "readging": "ゆうしゅう", + "pos": "名詞", + "pn": -0.983882 + }, + { + "surface": "薨ずる", + "readging": "こうずる", + "pos": "動詞", + "pn": -0.983891 + }, + { + "surface": "増上慢", + "readging": "ぞうじょうまん", + "pos": "名詞", + "pn": -0.983896 + }, + { + "surface": "狂死", + "readging": "くるいじに", + "pos": "名詞", + "pn": -0.983916 + }, + { + "surface": "息苦しい", + "readging": "いきぐるしい", + "pos": "形容詞", + "pn": -0.983922 + }, + { + "surface": "浮かぬ顔", + "readging": "うかぬかお", + "pos": "名詞", + "pn": -0.98393 + }, + { + "surface": "じまん", + "readging": "じまんたらしい", + "pos": "形容詞", + "pn": -0.983943 + }, + { + "surface": "帯代裸", + "readging": "おびしろはだか", + "pos": "名詞", + "pn": -0.983953 + }, + { + "surface": "精神薄弱", + "readging": "せいしんはくじゃく", + "pos": "名詞", + "pn": -0.983967 + }, + { + "surface": "尤もらしい", + "readging": "もっともらしい", + "pos": "形容詞", + "pn": -0.983996 + }, + { + "surface": "不消化", + "readging": "ふしょうか", + "pos": "名詞", + "pn": -0.984037 + }, + { + "surface": "皮癬", + "readging": "ひぜん", + "pos": "名詞", + "pn": -0.984045 + }, + { + "surface": "憂愁", + "readging": "ゆうしゅう", + "pos": "名詞", + "pn": -0.98406 + }, + { + "surface": "悪行", + "readging": "あくぎょう", + "pos": "名詞", + "pn": -0.984067 + }, + { + "surface": "白白しい", + "readging": "しらじらしい", + "pos": "形容詞", + "pn": -0.984072 + }, + { + "surface": "内気", + "readging": "うちき", + "pos": "名詞", + "pn": -0.984074 + }, + { + "surface": "ちょろい", + "readging": "ちょろい", + "pos": "形容詞", + "pn": -0.984082 + }, + { + "surface": "幼", + "readging": "よう", + "pos": "名詞", + "pn": -0.984087 + }, + { + "surface": "悪たれる", + "readging": "あくたれる", + "pos": "動詞", + "pn": -0.984108 + }, + { + "surface": "騒擾", + "readging": "そうじょう", + "pos": "名詞", + "pn": -0.98413 + }, + { + "surface": "獄衣", + "readging": "ごくい", + "pos": "名詞", + "pn": -0.984155 + }, + { + "surface": "病毒", + "readging": "びょうどく", + "pos": "名詞", + "pn": -0.984166 + }, + { + "surface": "羨ましい", + "readging": "うらやましい", + "pos": "形容詞", + "pn": -0.984182 + }, + { + "surface": "島国根性", + "readging": "しまぐにこんじょう", + "pos": "名詞", + "pn": -0.984184 + }, + { + "surface": "粗景", + "readging": "そけい", + "pos": "名詞", + "pn": -0.984209 + }, + { + "surface": "時弊", + "readging": "じへい", + "pos": "名詞", + "pn": -0.984241 + }, + { + "surface": "かすかす", + "readging": "かすかす", + "pos": "名詞", + "pn": -0.984243 + }, + { + "surface": "淑女", + "readging": "しゅくじょ", + "pos": "名詞", + "pn": -0.984277 + }, + { + "surface": "言葉", + "readging": "ことば", + "pos": "名詞", + "pn": -0.984295 + }, + { + "surface": "古傷", + "readging": "ふるきず", + "pos": "名詞", + "pn": -0.984361 + }, + { + "surface": "盗汗", + "readging": "とうかん", + "pos": "名詞", + "pn": -0.984362 + }, + { + "surface": "苦肉", + "readging": "くにく", + "pos": "名詞", + "pn": -0.984366 + }, + { + "surface": "不承知", + "readging": "ふしょうち", + "pos": "名詞", + "pn": -0.984376 + }, + { + "surface": "もったい", + "readging": "もったいらしい", + "pos": "形容詞", + "pn": -0.984379 + }, + { + "surface": "自大", + "readging": "じだい", + "pos": "名詞", + "pn": -0.984413 + }, + { + "surface": "かんじょう高い", + "readging": "かんじょうだかい", + "pos": "形容詞", + "pn": -0.984439 + }, + { + "surface": "鬱気", + "readging": "うっき", + "pos": "名詞", + "pn": -0.984464 + }, + { + "surface": "不毛", + "readging": "ふもう", + "pos": "名詞", + "pn": -0.984504 + }, + { + "surface": "気掛り", + "readging": "きがかり", + "pos": "名詞", + "pn": -0.984507 + }, + { + "surface": "三途の川", + "readging": "さんずのかわ", + "pos": "名詞", + "pn": -0.984512 + }, + { + "surface": "ぶり返す", + "readging": "ぶりかえす", + "pos": "動詞", + "pn": -0.984519 + }, + { + "surface": "悄然", + "readging": "しょうぜん", + "pos": "名詞", + "pn": -0.984522 + }, + { + "surface": "大俗", + "readging": "だいぞく", + "pos": "名詞", + "pn": -0.984545 + }, + { + "surface": "長逝", + "readging": "ちょうせい", + "pos": "名詞", + "pn": -0.984549 + }, + { + "surface": "永逝", + "readging": "えいせい", + "pos": "名詞", + "pn": -0.984549 + }, + { + "surface": "死期", + "readging": "しき", + "pos": "名詞", + "pn": -0.984555 + }, + { + "surface": "乳臭い", + "readging": "ちちくさい", + "pos": "形容詞", + "pn": -0.984556 + }, + { + "surface": "洒落臭い", + "readging": "しゃらくさい", + "pos": "形容詞", + "pn": -0.984563 + }, + { + "surface": "筆誅", + "readging": "ひっちゅう", + "pos": "名詞", + "pn": -0.984569 + }, + { + "surface": "療養", + "readging": "りょうよう", + "pos": "名詞", + "pn": -0.98457 + }, + { + "surface": "荒亡", + "readging": "こうぼう", + "pos": "名詞", + "pn": -0.984599 + }, + { + "surface": "逆賊", + "readging": "ぎゃくぞく", + "pos": "名詞", + "pn": -0.984614 + }, + { + "surface": "もぞもぞ", + "readging": "もぞもぞ", + "pos": "副詞", + "pn": -0.984638 + }, + { + "surface": "救荒", + "readging": "きゅうこう", + "pos": "名詞", + "pn": -0.98464 + }, + { + "surface": "原子病", + "readging": "げんしびょう", + "pos": "名詞", + "pn": -0.984643 + }, + { + "surface": "青侍", + "readging": "あおざむらい", + "pos": "名詞", + "pn": -0.984693 + }, + { + "surface": "天変地異", + "readging": "てんぺんちい", + "pos": "名詞", + "pn": -0.984705 + }, + { + "surface": "野郎", + "readging": "やろう", + "pos": "名詞", + "pn": -0.984715 + }, + { + "surface": "大水", + "readging": "おおみず", + "pos": "名詞", + "pn": -0.984719 + }, + { + "surface": "語弊", + "readging": "ごへい", + "pos": "名詞", + "pn": -0.984727 + }, + { + "surface": "非常時", + "readging": "ひじょうじ", + "pos": "名詞", + "pn": -0.984732 + }, + { + "surface": "祓い清める", + "readging": "はらいきよめる", + "pos": "動詞", + "pn": -0.984735 + }, + { + "surface": "後遺症", + "readging": "こういしょう", + "pos": "名詞", + "pn": -0.984765 + }, + { + "surface": "亜流", + "readging": "ありゅう", + "pos": "名詞", + "pn": -0.984774 + }, + { + "surface": "時化", + "readging": "しけ", + "pos": "名詞", + "pn": -0.984781 + }, + { + "surface": "風害", + "readging": "ふうがい", + "pos": "名詞", + "pn": -0.984796 + }, + { + "surface": "暴落", + "readging": "ぼうらく", + "pos": "名詞", + "pn": -0.984796 + }, + { + "surface": "後患", + "readging": "こうかん", + "pos": "名詞", + "pn": -0.984799 + }, + { + "surface": "神罰", + "readging": "しんばつ", + "pos": "名詞", + "pn": -0.984809 + }, + { + "surface": "作違い", + "readging": "さくちがい", + "pos": "名詞", + "pn": -0.984812 + }, + { + "surface": "がっくり", + "readging": "がっくり", + "pos": "副詞", + "pn": -0.984834 + }, + { + "surface": "索漠", + "readging": "さくばく", + "pos": "名詞", + "pn": -0.984835 + }, + { + "surface": "しけこむ", + "readging": "しけこむ", + "pos": "動詞", + "pn": -0.984838 + }, + { + "surface": "微力", + "readging": "びりょく", + "pos": "名詞", + "pn": -0.984842 + }, + { + "surface": "其の日暮し", + "readging": "そのひぐらし", + "pos": "名詞", + "pn": -0.984842 + }, + { + "surface": "眼疾", + "readging": "がんしつ", + "pos": "名詞", + "pn": -0.984844 + }, + { + "surface": "欲念", + "readging": "よくねん", + "pos": "名詞", + "pn": -0.98486 + }, + { + "surface": "劫火", + "readging": "ごうか", + "pos": "名詞", + "pn": -0.984869 + }, + { + "surface": "苦闘", + "readging": "くとう", + "pos": "名詞", + "pn": -0.984911 + }, + { + "surface": "すげない", + "readging": "すげない", + "pos": "形容詞", + "pn": -0.984914 + }, + { + "surface": "宿弊", + "readging": "しゅくへい", + "pos": "名詞", + "pn": -0.98492 + }, + { + "surface": "苦海", + "readging": "くかい", + "pos": "名詞", + "pn": -0.984943 + }, + { + "surface": "原罪", + "readging": "げんざい", + "pos": "名詞", + "pn": -0.984946 + }, + { + "surface": "ぎゅうぎゅう", + "readging": "ぎゅうぎゅう", + "pos": "副詞", + "pn": -0.984951 + }, + { + "surface": "けばけば", + "readging": "けばけば", + "pos": "名詞", + "pn": -0.984954 + }, + { + "surface": "腸満", + "readging": "ちょうまん", + "pos": "名詞", + "pn": -0.984957 + }, + { + "surface": "聞外す", + "readging": "ききはずす", + "pos": "動詞", + "pn": -0.984968 + }, + { + "surface": "底気味", + "readging": "そこきみ", + "pos": "名詞", + "pn": -0.984982 + }, + { + "surface": "入院", + "readging": "にゅういん", + "pos": "名詞", + "pn": -0.984987 + }, + { + "surface": "熱っぽい", + "readging": "ねつっぽい", + "pos": "形容詞", + "pn": -0.98502 + }, + { + "surface": "陰地", + "readging": "かげち", + "pos": "名詞", + "pn": -0.985024 + }, + { + "surface": "死に絶える", + "readging": "しにたえる", + "pos": "動詞", + "pn": -0.985037 + }, + { + "surface": "色めく", + "readging": "いろめく", + "pos": "動詞", + "pn": -0.985046 + }, + { + "surface": "窮する", + "readging": "きゅうする", + "pos": "動詞", + "pn": -0.985059 + }, + { + "surface": "毒する", + "readging": "どくする", + "pos": "動詞", + "pn": -0.985071 + }, + { + "surface": "短命", + "readging": "たんめい", + "pos": "名詞", + "pn": -0.985072 + }, + { + "surface": "ナチズム", + "readging": "ナチズム", + "pos": "名詞", + "pn": -0.985084 + }, + { + "surface": "犬死", + "readging": "いぬじに", + "pos": "名詞", + "pn": -0.985085 + }, + { + "surface": "悪ふざけ", + "readging": "わるふざけ", + "pos": "名詞", + "pn": -0.985108 + }, + { + "surface": "酔払い", + "readging": "よっぱらい", + "pos": "名詞", + "pn": -0.985123 + }, + { + "surface": "疝気", + "readging": "せんき", + "pos": "名詞", + "pn": -0.985124 + }, + { + "surface": "仇する", + "readging": "あだする", + "pos": "動詞", + "pn": -0.985139 + }, + { + "surface": "詐称", + "readging": "さしょう", + "pos": "名詞", + "pn": -0.98517 + }, + { + "surface": "敵対", + "readging": "てきたい", + "pos": "名詞", + "pn": -0.985182 + }, + { + "surface": "不出来", + "readging": "ふでき", + "pos": "名詞", + "pn": -0.98521 + }, + { + "surface": "筋腫", + "readging": "きんしゅ", + "pos": "名詞", + "pn": -0.985226 + }, + { + "surface": "劇薬", + "readging": "げきやく", + "pos": "名詞", + "pn": -0.985228 + }, + { + "surface": "虚像", + "readging": "きょぞう", + "pos": "名詞", + "pn": -0.985245 + }, + { + "surface": "胃下垂", + "readging": "いかすい", + "pos": "名詞", + "pn": -0.985251 + }, + { + "surface": "旧弊", + "readging": "きゅうへい", + "pos": "名詞", + "pn": -0.985293 + }, + { + "surface": "ずんぐり", + "readging": "ずんぐり", + "pos": "副詞", + "pn": -0.985301 + }, + { + "surface": "白血病", + "readging": "はっけつびょう", + "pos": "名詞", + "pn": -0.985303 + }, + { + "surface": "悪相", + "readging": "あくそう", + "pos": "名詞", + "pn": -0.985308 + }, + { + "surface": "衒う", + "readging": "てらう", + "pos": "動詞", + "pn": -0.985319 + }, + { + "surface": "浮河竹", + "readging": "うきかわたけ", + "pos": "名詞", + "pn": -0.985324 + }, + { + "surface": "荒天", + "readging": "こうてん", + "pos": "名詞", + "pn": -0.985324 + }, + { + "surface": "朽果てる", + "readging": "くちはてる", + "pos": "動詞", + "pn": -0.985339 + }, + { + "surface": "思い込む", + "readging": "おもいこむ", + "pos": "動詞", + "pn": -0.985347 + }, + { + "surface": "いかん", + "readging": "いかん", + "pos": "名詞", + "pn": -0.985348 + }, + { + "surface": "胸痛", + "readging": "きょうつう", + "pos": "名詞", + "pn": -0.985357 + }, + { + "surface": "山家者", + "readging": "やまがもの", + "pos": "名詞", + "pn": -0.98538 + }, + { + "surface": "浮名", + "readging": "うきな", + "pos": "名詞", + "pn": -0.985384 + }, + { + "surface": "危害", + "readging": "きがい", + "pos": "名詞", + "pn": -0.985401 + }, + { + "surface": "下座", + "readging": "しもざ", + "pos": "名詞", + "pn": -0.985413 + }, + { + "surface": "先考", + "readging": "せんこう", + "pos": "名詞", + "pn": -0.985414 + }, + { + "surface": "薨去", + "readging": "こうきょ", + "pos": "名詞", + "pn": -0.985416 + }, + { + "surface": "そそっかしい", + "readging": "そそっかしい", + "pos": "形容詞", + "pn": -0.985417 + }, + { + "surface": "横暴", + "readging": "おうぼう", + "pos": "名詞", + "pn": -0.985425 + }, + { + "surface": "だぶだぶ", + "readging": "だぶだぶ", + "pos": "副詞", + "pn": -0.98543 + }, + { + "surface": "新前", + "readging": "しんまえ", + "pos": "名詞", + "pn": -0.985442 + }, + { + "surface": "瘴癘", + "readging": "しょうれい", + "pos": "名詞", + "pn": -0.98546 + }, + { + "surface": "方忌", + "readging": "かたいみ", + "pos": "名詞", + "pn": -0.985468 + }, + { + "surface": "高潮", + "readging": "たかしお", + "pos": "名詞", + "pn": -0.985484 + }, + { + "surface": "ごたつく", + "readging": "ごたつく", + "pos": "動詞", + "pn": -0.985488 + }, + { + "surface": "愚連隊", + "readging": "ぐれんたい", + "pos": "名詞", + "pn": -0.985488 + }, + { + "surface": "力負け", + "readging": "ちからまけ", + "pos": "名詞", + "pn": -0.985492 + }, + { + "surface": "きな臭い", + "readging": "きなくさい", + "pos": "形容詞", + "pn": -0.985502 + }, + { + "surface": "悪用", + "readging": "あくよう", + "pos": "名詞", + "pn": -0.985502 + }, + { + "surface": "掻暮れる", + "readging": "かきくれる", + "pos": "動詞", + "pn": -0.985505 + }, + { + "surface": "脳症", + "readging": "のうしょう", + "pos": "名詞", + "pn": -0.98551 + }, + { + "surface": "急患", + "readging": "きゅうかん", + "pos": "名詞", + "pn": -0.985513 + }, + { + "surface": "涙", + "readging": "なみだ", + "pos": "名詞", + "pn": -0.985522 + }, + { + "surface": "泥棒根性", + "readging": "どろぼうこんじょう", + "pos": "名詞", + "pn": -0.985543 + }, + { + "surface": "極貧", + "readging": "ごくひん", + "pos": "名詞", + "pn": -0.985547 + }, + { + "surface": "末恐ろしい", + "readging": "すえおそろしい", + "pos": "形容詞", + "pn": -0.985548 + }, + { + "surface": "下田", + "readging": "げでん", + "pos": "名詞", + "pn": -0.985555 + }, + { + "surface": "巧遅", + "readging": "こうち", + "pos": "名詞", + "pn": -0.985556 + }, + { + "surface": "角立つ", + "readging": "つのだつ", + "pos": "動詞", + "pn": -0.985565 + }, + { + "surface": "劣悪", + "readging": "れつあく", + "pos": "名詞", + "pn": -0.985566 + }, + { + "surface": "暗幕", + "readging": "あんまく", + "pos": "名詞", + "pn": -0.985573 + }, + { + "surface": "見識張る", + "readging": "けんしきばる", + "pos": "動詞", + "pn": -0.985576 + }, + { + "surface": "改悪", + "readging": "かいあく", + "pos": "名詞", + "pn": -0.985594 + }, + { + "surface": "病犬", + "readging": "やまいぬ", + "pos": "名詞", + "pn": -0.985597 + }, + { + "surface": "極寒", + "readging": "ごっかん", + "pos": "名詞", + "pn": -0.985612 + }, + { + "surface": "愛想笑い", + "readging": "あいそわらい", + "pos": "名詞", + "pn": -0.985628 + }, + { + "surface": "業", + "readging": "ぎょう", + "pos": "名詞", + "pn": -0.985636 + }, + { + "surface": "悪巧み", + "readging": "わるだくみ", + "pos": "名詞", + "pn": -0.985638 + }, + { + "surface": "讒する", + "readging": "ざんする", + "pos": "動詞", + "pn": -0.985671 + }, + { + "surface": "気病み", + "readging": "きやみ", + "pos": "名詞", + "pn": -0.985707 + }, + { + "surface": "物憂い", + "readging": "ものうい", + "pos": "形容詞", + "pn": -0.985713 + }, + { + "surface": "退廃", + "readging": "たいはい", + "pos": "名詞", + "pn": -0.985715 + }, + { + "surface": "俗気", + "readging": "ぞっき", + "pos": "名詞", + "pn": -0.985736 + }, + { + "surface": "小面憎い", + "readging": "こづらにくい", + "pos": "形容詞", + "pn": -0.985738 + }, + { + "surface": "症", + "readging": "しょう", + "pos": "名詞", + "pn": -0.98574 + }, + { + "surface": "むり強い", + "readging": "むりじい", + "pos": "形容詞", + "pn": -0.98577 + }, + { + "surface": "急場", + "readging": "きゅうば", + "pos": "名詞", + "pn": -0.985775 + }, + { + "surface": "致死量", + "readging": "ちしりょう", + "pos": "名詞", + "pn": -0.985782 + }, + { + "surface": "抱合せ", + "readging": "だきあわせ", + "pos": "名詞", + "pn": -0.985783 + }, + { + "surface": "気忙しい", + "readging": "きぜわしい", + "pos": "形容詞", + "pn": -0.985786 + }, + { + "surface": "悪日", + "readging": "あくにち", + "pos": "名詞", + "pn": -0.98579 + }, + { + "surface": "糖尿病", + "readging": "とうにょうびょう", + "pos": "名詞", + "pn": -0.985794 + }, + { + "surface": "問詰める", + "readging": "といつめる", + "pos": "動詞", + "pn": -0.985813 + }, + { + "surface": "客死", + "readging": "かくし", + "pos": "名詞", + "pn": -0.985813 + }, + { + "surface": "青二才", + "readging": "あおにさい", + "pos": "名詞", + "pn": -0.985816 + }, + { + "surface": "皸", + "readging": "あかぎれ", + "pos": "名詞", + "pn": -0.985821 + }, + { + "surface": "悪疾", + "readging": "あくしつ", + "pos": "名詞", + "pn": -0.985823 + }, + { + "surface": "不義理", + "readging": "ふぎり", + "pos": "名詞", + "pn": -0.985826 + }, + { + "surface": "無責任", + "readging": "むせきにん", + "pos": "名詞", + "pn": -0.985854 + }, + { + "surface": "猫糞", + "readging": "ねこばば", + "pos": "名詞", + "pn": -0.985857 + }, + { + "surface": "被害妄想", + "readging": "ひがいもうそう", + "pos": "名詞", + "pn": -0.985881 + }, + { + "surface": "毒害", + "readging": "どくがい", + "pos": "名詞", + "pn": -0.985884 + }, + { + "surface": "四百四病", + "readging": "しひゃくしびょう", + "pos": "名詞", + "pn": -0.985888 + }, + { + "surface": "特発", + "readging": "とくはつ", + "pos": "名詞", + "pn": -0.985889 + }, + { + "surface": "似気無い", + "readging": "にげない", + "pos": "形容詞", + "pn": -0.985896 + }, + { + "surface": "悔いる", + "readging": "くいる", + "pos": "動詞", + "pn": -0.985906 + }, + { + "surface": "人食い人種", + "readging": "ひとくいじんしゅ", + "pos": "名詞", + "pn": -0.985917 + }, + { + "surface": "ショック", + "readging": "ショック", + "pos": "名詞", + "pn": -0.985922 + }, + { + "surface": "赤字", + "readging": "あかじ", + "pos": "名詞", + "pn": -0.985926 + }, + { + "surface": "空手形", + "readging": "からてがた", + "pos": "名詞", + "pn": -0.985937 + }, + { + "surface": "霜枯れ時", + "readging": "しもがれどき", + "pos": "名詞", + "pn": -0.985953 + }, + { + "surface": "疳の虫", + "readging": "かんのむし", + "pos": "名詞", + "pn": -0.98596 + }, + { + "surface": "焼く", + "readging": "やく", + "pos": "動詞", + "pn": -0.985965 + }, + { + "surface": "象皮病", + "readging": "ぞうひびょう", + "pos": "名詞", + "pn": -0.985966 + }, + { + "surface": "虚勢", + "readging": "きょせい", + "pos": "名詞", + "pn": -0.985985 + }, + { + "surface": "ずけずけ", + "readging": "ずけずけ", + "pos": "副詞", + "pn": -0.985996 + }, + { + "surface": "詰", + "readging": "きつ", + "pos": "名詞", + "pn": -0.985998 + }, + { + "surface": "せびる", + "readging": "せびる", + "pos": "動詞", + "pn": -0.986002 + }, + { + "surface": "苦笑い", + "readging": "にがわらい", + "pos": "名詞", + "pn": -0.986019 + }, + { + "surface": "虚", + "readging": "きょ", + "pos": "名詞", + "pn": -0.986022 + }, + { + "surface": "大過", + "readging": "たいか", + "pos": "名詞", + "pn": -0.986057 + }, + { + "surface": "亡児", + "readging": "ぼうじ", + "pos": "名詞", + "pn": -0.986071 + }, + { + "surface": "虚名", + "readging": "きょめい", + "pos": "名詞", + "pn": -0.986071 + }, + { + "surface": "就褥", + "readging": "しゅうじょく", + "pos": "名詞", + "pn": -0.986086 + }, + { + "surface": "詰問", + "readging": "きつもん", + "pos": "名詞", + "pn": -0.986088 + }, + { + "surface": "小国", + "readging": "しょうこく", + "pos": "名詞", + "pn": -0.986094 + }, + { + "surface": "対敵", + "readging": "たいてき", + "pos": "名詞", + "pn": -0.986102 + }, + { + "surface": "喘息", + "readging": "ぜんそく", + "pos": "名詞", + "pn": -0.986133 + }, + { + "surface": "切死", + "readging": "きりじに", + "pos": "名詞", + "pn": -0.986147 + }, + { + "surface": "胸苦しい", + "readging": "むなぐるしい", + "pos": "形容詞", + "pn": -0.98615 + }, + { + "surface": "腹立たしい", + "readging": "はらだたしい", + "pos": "形容詞", + "pn": -0.986155 + }, + { + "surface": "固陋", + "readging": "ころう", + "pos": "名詞", + "pn": -0.986158 + }, + { + "surface": "小器", + "readging": "しょうき", + "pos": "名詞", + "pn": -0.986171 + }, + { + "surface": "確執", + "readging": "かくしつ", + "pos": "名詞", + "pn": -0.986173 + }, + { + "surface": "一人", + "readging": "ひとりしばい", + "pos": "名詞", + "pn": -0.986195 + }, + { + "surface": "淫佚", + "readging": "いんいつ", + "pos": "名詞", + "pn": -0.986201 + }, + { + "surface": "詮無い", + "readging": "せんない", + "pos": "形容詞", + "pn": -0.986206 + }, + { + "surface": "魔窟", + "readging": "まくつ", + "pos": "名詞", + "pn": -0.98621 + }, + { + "surface": "危懼", + "readging": "きく", + "pos": "名詞", + "pn": -0.986234 + }, + { + "surface": "尻窄まり", + "readging": "しりすぼまり", + "pos": "名詞", + "pn": -0.986234 + }, + { + "surface": "物欲", + "readging": "ぶつよく", + "pos": "名詞", + "pn": -0.986235 + }, + { + "surface": "人権蹂躙", + "readging": "じんけんじゅうりん", + "pos": "名詞", + "pn": -0.986244 + }, + { + "surface": "弱卒", + "readging": "じゃくそつ", + "pos": "名詞", + "pn": -0.98627 + }, + { + "surface": "肺疾", + "readging": "はいしつ", + "pos": "名詞", + "pn": -0.986273 + }, + { + "surface": "ナチ", + "readging": "ナチ", + "pos": "名詞", + "pn": -0.98629 + }, + { + "surface": "金切り声", + "readging": "かなきりごえ", + "pos": "名詞", + "pn": -0.986292 + }, + { + "surface": "エロ グロ", + "readging": "エロ グロ", + "pos": "名詞", + "pn": -0.986294 + }, + { + "surface": "忌引", + "readging": "きびき", + "pos": "名詞", + "pn": -0.986304 + }, + { + "surface": "脳充血", + "readging": "のうじゅうけつ", + "pos": "名詞", + "pn": -0.986308 + }, + { + "surface": "悪循環", + "readging": "あくじゅんかん", + "pos": "名詞", + "pn": -0.98631 + }, + { + "surface": "生温い", + "readging": "なまぬるい", + "pos": "形容詞", + "pn": -0.986319 + }, + { + "surface": "盗み食い", + "readging": "ぬすみぐい", + "pos": "名詞", + "pn": -0.986323 + }, + { + "surface": "遣る方ない", + "readging": "やるかたない", + "pos": "形容詞", + "pn": -0.986371 + }, + { + "surface": "他人", + "readging": "たにん", + "pos": "名詞", + "pn": -0.986399 + }, + { + "surface": "不公平", + "readging": "ふこうへい", + "pos": "名詞", + "pn": -0.9864 + }, + { + "surface": "打つ", + "readging": "うつ", + "pos": "動詞", + "pn": -0.986407 + }, + { + "surface": "物騒", + "readging": "ぶっそう", + "pos": "名詞", + "pn": -0.986415 + }, + { + "surface": "非才", + "readging": "ひさい", + "pos": "名詞", + "pn": -0.986436 + }, + { + "surface": "行倒れ", + "readging": "ゆきだおれ", + "pos": "名詞", + "pn": -0.986438 + }, + { + "surface": "湿っぽい", + "readging": "しめっぽい", + "pos": "形容詞", + "pn": -0.986448 + }, + { + "surface": "暴死", + "readging": "ぼうし", + "pos": "名詞", + "pn": -0.986457 + }, + { + "surface": "喀血", + "readging": "かっけつ", + "pos": "名詞", + "pn": -0.986477 + }, + { + "surface": "古血", + "readging": "ふるち", + "pos": "名詞", + "pn": -0.986508 + }, + { + "surface": "風当り", + "readging": "かぜあたり", + "pos": "名詞", + "pn": -0.986508 + }, + { + "surface": "教戒", + "readging": "きょうかい", + "pos": "名詞", + "pn": -0.986512 + }, + { + "surface": "貧困", + "readging": "ひんこん", + "pos": "名詞", + "pn": -0.986526 + }, + { + "surface": "難病", + "readging": "なんびょう", + "pos": "名詞", + "pn": -0.986533 + }, + { + "surface": "うようよ", + "readging": "うようよ", + "pos": "副詞", + "pn": -0.986545 + }, + { + "surface": "お隠れ", + "readging": "おかくれ", + "pos": "名詞", + "pn": -0.986558 + }, + { + "surface": "消え入る", + "readging": "きえいる", + "pos": "動詞", + "pn": -0.986562 + }, + { + "surface": "情婦", + "readging": "じょうふ", + "pos": "名詞", + "pn": -0.986563 + }, + { + "surface": "管見", + "readging": "かんけん", + "pos": "名詞", + "pn": -0.986583 + }, + { + "surface": "寝た切り", + "readging": "ねたきり", + "pos": "名詞", + "pn": -0.986591 + }, + { + "surface": "足", + "readging": "そく", + "pos": "名詞", + "pn": -0.986616 + }, + { + "surface": "旋毛曲り", + "readging": "つむじまがり", + "pos": "名詞", + "pn": -0.986637 + }, + { + "surface": "厚ぼったい", + "readging": "あつぼったい", + "pos": "形容詞", + "pn": -0.986671 + }, + { + "surface": "稲熱病", + "readging": "いもちびょう", + "pos": "名詞", + "pn": -0.986674 + }, + { + "surface": "先負", + "readging": "せんぶ", + "pos": "名詞", + "pn": -0.986681 + }, + { + "surface": "レイオフ", + "readging": "レイオフ", + "pos": "名詞", + "pn": -0.986702 + }, + { + "surface": "面詰", + "readging": "めんきつ", + "pos": "名詞", + "pn": -0.986718 + }, + { + "surface": "強圧", + "readging": "きょうあつ", + "pos": "名詞", + "pn": -0.986724 + }, + { + "surface": "末成り", + "readging": "うらなり", + "pos": "名詞", + "pn": -0.986728 + }, + { + "surface": "言損なう", + "readging": "いいそこなう", + "pos": "動詞", + "pn": -0.986731 + }, + { + "surface": "屈託", + "readging": "くったく", + "pos": "名詞", + "pn": -0.986737 + }, + { + "surface": "がくがく", + "readging": "がくがく", + "pos": "副詞", + "pn": -0.986748 + }, + { + "surface": "神経過敏", + "readging": "しんけいかびん", + "pos": "名詞", + "pn": -0.986763 + }, + { + "surface": "見逃す", + "readging": "みのがす", + "pos": "動詞", + "pn": -0.986774 + }, + { + "surface": "埃", + "readging": "ほこり", + "pos": "名詞", + "pn": -0.986779 + }, + { + "surface": "ぶうぶう", + "readging": "ぶうぶう", + "pos": "副詞", + "pn": -0.986803 + }, + { + "surface": "毒婦", + "readging": "どくふ", + "pos": "名詞", + "pn": -0.986818 + }, + { + "surface": "回る", + "readging": "まわる", + "pos": "動詞", + "pn": -0.986835 + }, + { + "surface": "練る", + "readging": "ねる", + "pos": "動詞", + "pn": -0.98684 + }, + { + "surface": "窮命", + "readging": "きゅうめい", + "pos": "名詞", + "pn": -0.986843 + }, + { + "surface": "鈍感", + "readging": "どんかん", + "pos": "名詞", + "pn": -0.986856 + }, + { + "surface": "鬼畜", + "readging": "きちく", + "pos": "名詞", + "pn": -0.986859 + }, + { + "surface": "死人", + "readging": "しにん", + "pos": "名詞", + "pn": -0.986862 + }, + { + "surface": "病態", + "readging": "びょうたい", + "pos": "名詞", + "pn": -0.986866 + }, + { + "surface": "成下がる", + "readging": "なりさがる", + "pos": "動詞", + "pn": -0.986883 + }, + { + "surface": "暗然", + "readging": "あんぜん", + "pos": "名詞", + "pn": -0.986889 + }, + { + "surface": "愁眉", + "readging": "しゅうび", + "pos": "名詞", + "pn": -0.986896 + }, + { + "surface": "しょぼくれる", + "readging": "しょぼくれる", + "pos": "動詞", + "pn": -0.986903 + }, + { + "surface": "退転", + "readging": "たいてん", + "pos": "名詞", + "pn": -0.986918 + }, + { + "surface": "澄ます", + "readging": "すます", + "pos": "動詞", + "pn": -0.986927 + }, + { + "surface": "不才", + "readging": "ふさい", + "pos": "名詞", + "pn": -0.986958 + }, + { + "surface": "甘んずる", + "readging": "あまんずる", + "pos": "動詞", + "pn": -0.986965 + }, + { + "surface": "悪心", + "readging": "あくしん", + "pos": "名詞", + "pn": -0.986965 + }, + { + "surface": "雨天", + "readging": "うてん", + "pos": "名詞", + "pn": -0.986969 + }, + { + "surface": "儀式張る", + "readging": "ぎしきばる", + "pos": "動詞", + "pn": -0.986971 + }, + { + "surface": "多罪", + "readging": "たざい", + "pos": "名詞", + "pn": -0.986975 + }, + { + "surface": "追試験", + "readging": "ついしけん", + "pos": "名詞", + "pn": -0.986986 + }, + { + "surface": "干上がる", + "readging": "ひあがる", + "pos": "動詞", + "pn": -0.987005 + }, + { + "surface": "驚天動地", + "readging": "きょうてんどうち", + "pos": "名詞", + "pn": -0.987007 + }, + { + "surface": "持崩す", + "readging": "もちくずす", + "pos": "動詞", + "pn": -0.98701 + }, + { + "surface": "断種", + "readging": "だんしゅ", + "pos": "名詞", + "pn": -0.987016 + }, + { + "surface": "絞殺", + "readging": "こうさつ", + "pos": "名詞", + "pn": -0.987016 + }, + { + "surface": "絞首", + "readging": "こうしゅ", + "pos": "名詞", + "pn": -0.987016 + }, + { + "surface": "無念", + "readging": "むねん", + "pos": "名詞", + "pn": -0.987033 + }, + { + "surface": "しかつめらしい", + "readging": "しかつめらしい", + "pos": "形容詞", + "pn": -0.987045 + }, + { + "surface": "成人病", + "readging": "せいじんびょう", + "pos": "名詞", + "pn": -0.987045 + }, + { + "surface": "ぶすっと", + "readging": "ぶすっと", + "pos": "副詞", + "pn": -0.987061 + }, + { + "surface": "裏背戸", + "readging": "うらせど", + "pos": "名詞", + "pn": -0.987062 + }, + { + "surface": "外", + "readging": "ほか", + "pos": "名詞", + "pn": -0.987063 + }, + { + "surface": "余弊", + "readging": "よへい", + "pos": "名詞", + "pn": -0.987098 + }, + { + "surface": "凡庸", + "readging": "ぼんよう", + "pos": "名詞", + "pn": -0.9871 + }, + { + "surface": "病臥", + "readging": "びょうが", + "pos": "名詞", + "pn": -0.987108 + }, + { + "surface": "角角しい", + "readging": "かどかどしい", + "pos": "形容詞", + "pn": -0.987108 + }, + { + "surface": "酩酊", + "readging": "めいてい", + "pos": "名詞", + "pn": -0.987125 + }, + { + "surface": "大酔", + "readging": "たいすい", + "pos": "名詞", + "pn": -0.987125 + }, + { + "surface": "腑甲斐無い", + "readging": "ふがいない", + "pos": "形容詞", + "pn": -0.987126 + }, + { + "surface": "蕭条", + "readging": "しょうじょう", + "pos": "名詞", + "pn": -0.98713 + }, + { + "surface": "上方贅六", + "readging": "かみがたぜいろく", + "pos": "名詞", + "pn": -0.987131 + }, + { + "surface": "杞憂", + "readging": "きゆう", + "pos": "名詞", + "pn": -0.987134 + }, + { + "surface": "乾し殺す", + "readging": "ほしころす", + "pos": "動詞", + "pn": -0.987149 + }, + { + "surface": "悪逆", + "readging": "あくぎゃく", + "pos": "名詞", + "pn": -0.987154 + }, + { + "surface": "所在無い", + "readging": "しょざいない", + "pos": "形容詞", + "pn": -0.987162 + }, + { + "surface": "違令", + "readging": "いれい", + "pos": "名詞", + "pn": -0.987173 + }, + { + "surface": "生真面目", + "readging": "きまじめ", + "pos": "名詞", + "pn": -0.987176 + }, + { + "surface": "じたばた", + "readging": "じたばた", + "pos": "副詞", + "pn": -0.987177 + }, + { + "surface": "重る", + "readging": "おもる", + "pos": "動詞", + "pn": -0.987183 + }, + { + "surface": "重罰", + "readging": "じゅうばつ", + "pos": "名詞", + "pn": -0.987192 + }, + { + "surface": "乳癌", + "readging": "にゅうがん", + "pos": "名詞", + "pn": -0.987218 + }, + { + "surface": "横道", + "readging": "おうどう", + "pos": "名詞", + "pn": -0.987237 + }, + { + "surface": "諫死", + "readging": "かんし", + "pos": "名詞", + "pn": -0.987253 + }, + { + "surface": "醜名", + "readging": "しゅうめい", + "pos": "名詞", + "pn": -0.987287 + }, + { + "surface": "不見識", + "readging": "ふけんしき", + "pos": "名詞", + "pn": -0.987293 + }, + { + "surface": "こ", + "readging": "こ", + "pos": "名詞", + "pn": -0.987308 + }, + { + "surface": "一触即発", + "readging": "いっしょくそくはつ", + "pos": "名詞", + "pn": -0.987309 + }, + { + "surface": "介意", + "readging": "かいい", + "pos": "名詞", + "pn": -0.987319 + }, + { + "surface": "青っぽい", + "readging": "あおっぽい", + "pos": "形容詞", + "pn": -0.987324 + }, + { + "surface": "五逆", + "readging": "ごぎゃく", + "pos": "名詞", + "pn": -0.987324 + }, + { + "surface": "阻喪", + "readging": "そそう", + "pos": "名詞", + "pn": -0.987329 + }, + { + "surface": "拙戦", + "readging": "せっせん", + "pos": "名詞", + "pn": -0.987334 + }, + { + "surface": "堪え忍ぶ", + "readging": "たえしのぶ", + "pos": "動詞", + "pn": -0.987338 + }, + { + "surface": "暗殺", + "readging": "あんさつ", + "pos": "名詞", + "pn": -0.987339 + }, + { + "surface": "産褥熱", + "readging": "さんじょくねつ", + "pos": "名詞", + "pn": -0.987351 + }, + { + "surface": "伏魔殿", + "readging": "ふくまでん", + "pos": "名詞", + "pn": -0.987361 + }, + { + "surface": "しくしく", + "readging": "しくしく", + "pos": "副詞", + "pn": -0.987364 + }, + { + "surface": "干害", + "readging": "かんがい", + "pos": "名詞", + "pn": -0.98738 + }, + { + "surface": "空蝉", + "readging": "うつせみ", + "pos": "名詞", + "pn": -0.987389 + }, + { + "surface": "元凶", + "readging": "げんきょう", + "pos": "名詞", + "pn": -0.987392 + }, + { + "surface": "けれん", + "readging": "けれん", + "pos": "名詞", + "pn": -0.987393 + }, + { + "surface": "追込む", + "readging": "おいこむ", + "pos": "動詞", + "pn": -0.987394 + }, + { + "surface": "因習", + "readging": "いんしゅう", + "pos": "名詞", + "pn": -0.987394 + }, + { + "surface": "しょぼたれる", + "readging": "しょぼたれる", + "pos": "動詞", + "pn": -0.987397 + }, + { + "surface": "片手落ち", + "readging": "かたておち", + "pos": "名詞", + "pn": -0.987401 + }, + { + "surface": "悲歌", + "readging": "ひか", + "pos": "名詞", + "pn": -0.987416 + }, + { + "surface": "ちゃんちゃらおかしい", + "readging": "ちゃんちゃらおかしい", + "pos": "形容詞", + "pn": -0.987428 + }, + { + "surface": "疑い深い", + "readging": "うたがいぶかい", + "pos": "形容詞", + "pn": -0.987431 + }, + { + "surface": "末期の水", + "readging": "まつごのみず", + "pos": "名詞", + "pn": -0.987446 + }, + { + "surface": "糞", + "readging": "くそ", + "pos": "名詞", + "pn": -0.987448 + }, + { + "surface": "夭折", + "readging": "ようせつ", + "pos": "名詞", + "pn": -0.987452 + }, + { + "surface": "痛痛しい", + "readging": "いたいたしい", + "pos": "形容詞", + "pn": -0.987452 + }, + { + "surface": "迫害", + "readging": "はくがい", + "pos": "名詞", + "pn": -0.987454 + }, + { + "surface": "初感染", + "readging": "しょかんせん", + "pos": "名詞", + "pn": -0.987454 + }, + { + "surface": "罰俸", + "readging": "ばっぽう", + "pos": "名詞", + "pn": -0.987455 + }, + { + "surface": "春愁", + "readging": "しゅんしゅう", + "pos": "名詞", + "pn": -0.987462 + }, + { + "surface": "凡下", + "readging": "ぼんげ", + "pos": "名詞", + "pn": -0.987469 + }, + { + "surface": "強情", + "readging": "ごうじょう", + "pos": "名詞", + "pn": -0.987482 + }, + { + "surface": "ふしだら", + "readging": "ふしだら", + "pos": "名詞", + "pn": -0.987485 + }, + { + "surface": "面", + "readging": "つら", + "pos": "名詞", + "pn": -0.987487 + }, + { + "surface": "首狩", + "readging": "くびがり", + "pos": "名詞", + "pn": -0.987492 + }, + { + "surface": "蕭然", + "readging": "しょうぜん", + "pos": "名詞", + "pn": -0.987496 + }, + { + "surface": "霜枯れ", + "readging": "しもがれ", + "pos": "名詞", + "pn": -0.987498 + }, + { + "surface": "五戒", + "readging": "ごかい", + "pos": "名詞", + "pn": -0.987504 + }, + { + "surface": "告げ口", + "readging": "つげぐち", + "pos": "名詞", + "pn": -0.987509 + }, + { + "surface": "八寒地獄", + "readging": "はっかんじごく", + "pos": "名詞", + "pn": -0.98751 + }, + { + "surface": "冥罰", + "readging": "みょうばつ", + "pos": "名詞", + "pn": -0.987517 + }, + { + "surface": "厭地", + "readging": "いやち", + "pos": "名詞", + "pn": -0.987521 + }, + { + "surface": "不適当", + "readging": "ふてきとう", + "pos": "名詞", + "pn": -0.987523 + }, + { + "surface": "涙ぐましい", + "readging": "なみだぐましい", + "pos": "形容詞", + "pn": -0.987525 + }, + { + "surface": "ストレス", + "readging": "ストレス", + "pos": "名詞", + "pn": -0.98754 + }, + { + "surface": "人恋しい", + "readging": "ひとこいしい", + "pos": "形容詞", + "pn": -0.987574 + }, + { + "surface": "不料簡", + "readging": "ふりょうけん", + "pos": "名詞", + "pn": -0.987584 + }, + { + "surface": "総称", + "readging": "そうしょう", + "pos": "名詞", + "pn": -0.987587 + }, + { + "surface": "訛伝", + "readging": "かでん", + "pos": "名詞", + "pn": -0.987595 + }, + { + "surface": "窮民", + "readging": "きゅうみん", + "pos": "名詞", + "pn": -0.987598 + }, + { + "surface": "場所", + "readging": "ばしょ", + "pos": "名詞", + "pn": -0.987606 + }, + { + "surface": "哀詩", + "readging": "あいし", + "pos": "名詞", + "pn": -0.987613 + }, + { + "surface": "出来る", + "readging": "できる", + "pos": "動詞", + "pn": -0.987614 + }, + { + "surface": "下手人", + "readging": "げしゅにん", + "pos": "名詞", + "pn": -0.987617 + }, + { + "surface": "たらたら", + "readging": "たらたら", + "pos": "副詞", + "pn": -0.987624 + }, + { + "surface": "汚職", + "readging": "おしょく", + "pos": "名詞", + "pn": -0.987653 + }, + { + "surface": "物忌", + "readging": "ものいみ", + "pos": "名詞", + "pn": -0.987661 + }, + { + "surface": "テロ", + "readging": "テロ", + "pos": "名詞", + "pn": -0.987667 + }, + { + "surface": "厳冬", + "readging": "げんとう", + "pos": "名詞", + "pn": -0.987673 + }, + { + "surface": "酷寒", + "readging": "こっかん", + "pos": "名詞", + "pn": -0.98768 + }, + { + "surface": "泥酔", + "readging": "でいすい", + "pos": "名詞", + "pn": -0.987686 + }, + { + "surface": "穀潰し", + "readging": "ごくつぶし", + "pos": "名詞", + "pn": -0.987695 + }, + { + "surface": "脚気衝心", + "readging": "かっけしょうしん", + "pos": "名詞", + "pn": -0.987699 + }, + { + "surface": "気胸", + "readging": "ききょう", + "pos": "名詞", + "pn": -0.9877 + }, + { + "surface": "日射病", + "readging": "にっしゃびょう", + "pos": "名詞", + "pn": -0.98771 + }, + { + "surface": "緞帳役者", + "readging": "どんちょうやくしゃ", + "pos": "名詞", + "pn": -0.987713 + }, + { + "surface": "不細工", + "readging": "ぶさいく", + "pos": "名詞", + "pn": -0.987724 + }, + { + "surface": "外道", + "readging": "げどう", + "pos": "名詞", + "pn": -0.987729 + }, + { + "surface": "のたうつ", + "readging": "のたうつ", + "pos": "動詞", + "pn": -0.98773 + }, + { + "surface": "積弊", + "readging": "せきへい", + "pos": "名詞", + "pn": -0.987739 + }, + { + "surface": "痩せさらばえる", + "readging": "やせさらばえる", + "pos": "動詞", + "pn": -0.987752 + }, + { + "surface": "布", + "readging": "ふ", + "pos": "名詞", + "pn": -0.987756 + }, + { + "surface": "性悪", + "readging": "しょうわる", + "pos": "名詞", + "pn": -0.987756 + }, + { + "surface": "業火", + "readging": "ごうか", + "pos": "名詞", + "pn": -0.987767 + }, + { + "surface": "ぽっくり", + "readging": "ぽっくり", + "pos": "副詞", + "pn": -0.987778 + }, + { + "surface": "奸商", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.987783 + }, + { + "surface": "虐殺", + "readging": "ぎゃくさつ", + "pos": "名詞", + "pn": -0.987789 + }, + { + "surface": "言渋る", + "readging": "いいしぶる", + "pos": "動詞", + "pn": -0.987806 + }, + { + "surface": "八方塞がり", + "readging": "はっぽうふさがり", + "pos": "名詞", + "pn": -0.987817 + }, + { + "surface": "少子化", + "readging": "しょうしか", + "pos": "名詞", + "pn": -0.987822 + }, + { + "surface": "苦言", + "readging": "くげん", + "pos": "名詞", + "pn": -0.987838 + }, + { + "surface": "手抜き", + "readging": "てぬき", + "pos": "名詞", + "pn": -0.987856 + }, + { + "surface": "くだくだしい", + "readging": "くだくだしい", + "pos": "形容詞", + "pn": -0.987857 + }, + { + "surface": "天誅", + "readging": "てんちゅう", + "pos": "名詞", + "pn": -0.987876 + }, + { + "surface": "冷性", + "readging": "ひえしょう", + "pos": "名詞", + "pn": -0.987876 + }, + { + "surface": "臭", + "readging": "しゅう", + "pos": "名詞", + "pn": -0.987888 + }, + { + "surface": "難事", + "readging": "なんじ", + "pos": "名詞", + "pn": -0.987889 + }, + { + "surface": "気難しい", + "readging": "きむずかしい", + "pos": "形容詞", + "pn": -0.98791 + }, + { + "surface": "俗塵", + "readging": "ぞくじん", + "pos": "名詞", + "pn": -0.987915 + }, + { + "surface": "屑繭", + "readging": "くずまゆ", + "pos": "名詞", + "pn": -0.987921 + }, + { + "surface": "だらしない", + "readging": "だらしない", + "pos": "形容詞", + "pn": -0.987929 + }, + { + "surface": "継しい", + "readging": "まましい", + "pos": "形容詞", + "pn": -0.987929 + }, + { + "surface": "緞帳芝居", + "readging": "どんちょうしばい", + "pos": "名詞", + "pn": -0.98793 + }, + { + "surface": "飲潰れる", + "readging": "のみつぶれる", + "pos": "動詞", + "pn": -0.987931 + }, + { + "surface": "外聞", + "readging": "がいぶん", + "pos": "名詞", + "pn": -0.987935 + }, + { + "surface": "ざら紙", + "readging": "ざらがみ", + "pos": "名詞", + "pn": -0.987937 + }, + { + "surface": "項垂れる", + "readging": "うなだれる", + "pos": "動詞", + "pn": -0.987944 + }, + { + "surface": "苦戦", + "readging": "くせん", + "pos": "名詞", + "pn": -0.987947 + }, + { + "surface": "くどくど", + "readging": "くどくど", + "pos": "副詞", + "pn": -0.987949 + }, + { + "surface": "中震", + "readging": "ちゅうしん", + "pos": "名詞", + "pn": -0.987955 + }, + { + "surface": "顰めっ面", + "readging": "しかめっつら", + "pos": "名詞", + "pn": -0.987965 + }, + { + "surface": "死に損なう", + "readging": "しにそこなう", + "pos": "動詞", + "pn": -0.98797 + }, + { + "surface": "譴責", + "readging": "けんせき", + "pos": "名詞", + "pn": -0.987981 + }, + { + "surface": "死身", + "readging": "しにみ", + "pos": "名詞", + "pn": -0.987982 + }, + { + "surface": "敗退", + "readging": "はいたい", + "pos": "名詞", + "pn": -0.987999 + }, + { + "surface": "用いる", + "readging": "もちいる", + "pos": "動詞", + "pn": -0.988007 + }, + { + "surface": "懺悔", + "readging": "ざんげ", + "pos": "名詞", + "pn": -0.988008 + }, + { + "surface": "疎い", + "readging": "うとい", + "pos": "形容詞", + "pn": -0.988021 + }, + { + "surface": "我見", + "readging": "がけん", + "pos": "名詞", + "pn": -0.988022 + }, + { + "surface": "怪人", + "readging": "かいじん", + "pos": "名詞", + "pn": -0.988025 + }, + { + "surface": "俗気", + "readging": "ぞくけ", + "pos": "名詞", + "pn": -0.988031 + }, + { + "surface": "殺害", + "readging": "せつがい", + "pos": "名詞", + "pn": -0.988039 + }, + { + "surface": "如何物", + "readging": "いかもの", + "pos": "名詞", + "pn": -0.988039 + }, + { + "surface": "魔道", + "readging": "まどう", + "pos": "名詞", + "pn": -0.988065 + }, + { + "surface": "廃退", + "readging": "はいたい", + "pos": "名詞", + "pn": -0.988071 + }, + { + "surface": "強震", + "readging": "きょうしん", + "pos": "名詞", + "pn": -0.988086 + }, + { + "surface": "不所存", + "readging": "ふしょぞん", + "pos": "名詞", + "pn": -0.988096 + }, + { + "surface": "牢死", + "readging": "ろうし", + "pos": "名詞", + "pn": -0.988105 + }, + { + "surface": "実り", + "readging": "みのり", + "pos": "名詞", + "pn": -0.988107 + }, + { + "surface": "物故", + "readging": "ぶっこ", + "pos": "名詞", + "pn": -0.988115 + }, + { + "surface": "打身", + "readging": "うちみ", + "pos": "名詞", + "pn": -0.988117 + }, + { + "surface": "一寸", + "readging": "ちょっと", + "pos": "副詞", + "pn": -0.988119 + }, + { + "surface": "不向き", + "readging": "ふむき", + "pos": "名詞", + "pn": -0.988137 + }, + { + "surface": "煩瑣", + "readging": "はんさ", + "pos": "名詞", + "pn": -0.988157 + }, + { + "surface": "雑人", + "readging": "ぞうにん", + "pos": "名詞", + "pn": -0.98817 + }, + { + "surface": "佝僂病", + "readging": "くるびょう", + "pos": "名詞", + "pn": -0.988176 + }, + { + "surface": "横死", + "readging": "おうし", + "pos": "名詞", + "pn": -0.988194 + }, + { + "surface": "不忠", + "readging": "ふちゅう", + "pos": "名詞", + "pn": -0.988197 + }, + { + "surface": "大戦", + "readging": "たいせん", + "pos": "名詞", + "pn": -0.988198 + }, + { + "surface": "胸騒ぎ", + "readging": "むなさわぎ", + "pos": "名詞", + "pn": -0.988199 + }, + { + "surface": "揉消す", + "readging": "もみけす", + "pos": "動詞", + "pn": -0.988202 + }, + { + "surface": "重手", + "readging": "おもで", + "pos": "名詞", + "pn": -0.988217 + }, + { + "surface": "罵声", + "readging": "ばせい", + "pos": "名詞", + "pn": -0.988224 + }, + { + "surface": "見劣り", + "readging": "みおとり", + "pos": "名詞", + "pn": -0.988227 + }, + { + "surface": "ごてる", + "readging": "ごてる", + "pos": "動詞", + "pn": -0.988241 + }, + { + "surface": "凶荒", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.988243 + }, + { + "surface": "低質", + "readging": "ていしつ", + "pos": "名詞", + "pn": -0.988249 + }, + { + "surface": "萎びる", + "readging": "しなびる", + "pos": "動詞", + "pn": -0.98827 + }, + { + "surface": "炎", + "readging": "えん", + "pos": "名詞", + "pn": -0.988273 + }, + { + "surface": "単調", + "readging": "たんちょう", + "pos": "名詞", + "pn": -0.988283 + }, + { + "surface": "腰折れ", + "readging": "こしおれ", + "pos": "名詞", + "pn": -0.988288 + }, + { + "surface": "戒厳", + "readging": "かいげん", + "pos": "名詞", + "pn": -0.988299 + }, + { + "surface": "蠧毒", + "readging": "とどく", + "pos": "名詞", + "pn": -0.988306 + }, + { + "surface": "糠喜び", + "readging": "ぬかよろこび", + "pos": "名詞", + "pn": -0.988308 + }, + { + "surface": "涙脆い", + "readging": "なみだもろい", + "pos": "形容詞", + "pn": -0.988312 + }, + { + "surface": "空名", + "readging": "くうめい", + "pos": "名詞", + "pn": -0.988314 + }, + { + "surface": "厳つい", + "readging": "いかつい", + "pos": "形容詞", + "pn": -0.988324 + }, + { + "surface": "溺没", + "readging": "できぼつ", + "pos": "名詞", + "pn": -0.988334 + }, + { + "surface": "暗愚", + "readging": "あんぐ", + "pos": "名詞", + "pn": -0.98834 + }, + { + "surface": "瘡気", + "readging": "かさけ", + "pos": "名詞", + "pn": -0.988352 + }, + { + "surface": "不品行", + "readging": "ふひんこう", + "pos": "名詞", + "pn": -0.988355 + }, + { + "surface": "不評判", + "readging": "ふひょうばん", + "pos": "名詞", + "pn": -0.988359 + }, + { + "surface": "黴臭い", + "readging": "かびくさい", + "pos": "形容詞", + "pn": -0.988363 + }, + { + "surface": "瓦礫", + "readging": "がれき", + "pos": "名詞", + "pn": -0.988371 + }, + { + "surface": "咎め立て", + "readging": "とがめだて", + "pos": "名詞", + "pn": -0.988385 + }, + { + "surface": "隠し事", + "readging": "かくしごと", + "pos": "名詞", + "pn": -0.988395 + }, + { + "surface": "サタン", + "readging": "サタン", + "pos": "名詞", + "pn": -0.988395 + }, + { + "surface": "死に別れる", + "readging": "しにわかれる", + "pos": "動詞", + "pn": -0.988398 + }, + { + "surface": "鎖す", + "readging": "さす", + "pos": "動詞", + "pn": -0.988403 + }, + { + "surface": "重圧", + "readging": "じゅうあつ", + "pos": "名詞", + "pn": -0.988405 + }, + { + "surface": "色気違", + "readging": "いろきちがい", + "pos": "名詞", + "pn": -0.988414 + }, + { + "surface": "ワースト", + "readging": "ワースト", + "pos": "名詞", + "pn": -0.988419 + }, + { + "surface": "ぽん引き", + "readging": "ぽんひき", + "pos": "名詞", + "pn": -0.988421 + }, + { + "surface": "難訓", + "readging": "なんくん", + "pos": "名詞", + "pn": -0.988423 + }, + { + "surface": "気味悪い", + "readging": "きみわるい", + "pos": "形容詞", + "pn": -0.988426 + }, + { + "surface": "面窶れ", + "readging": "おもやつれ", + "pos": "名詞", + "pn": -0.988426 + }, + { + "surface": "浅黒い", + "readging": "あさぐろい", + "pos": "形容詞", + "pn": -0.988429 + }, + { + "surface": "擾乱", + "readging": "じょうらん", + "pos": "名詞", + "pn": -0.988429 + }, + { + "surface": "壊血病", + "readging": "かいけつびょう", + "pos": "名詞", + "pn": -0.98845 + }, + { + "surface": "梟雄", + "readging": "きょうゆう", + "pos": "名詞", + "pn": -0.988451 + }, + { + "surface": "哀史", + "readging": "あいし", + "pos": "名詞", + "pn": -0.988454 + }, + { + "surface": "酸性雨", + "readging": "さんせいう", + "pos": "名詞", + "pn": -0.988469 + }, + { + "surface": "狡獪", + "readging": "こうかい", + "pos": "名詞", + "pn": -0.988469 + }, + { + "surface": "耳遠い", + "readging": "みみどおい", + "pos": "形容詞", + "pn": -0.98849 + }, + { + "surface": "強迫", + "readging": "きょうはく", + "pos": "名詞", + "pn": -0.988495 + }, + { + "surface": "色魔", + "readging": "しきま", + "pos": "名詞", + "pn": -0.988501 + }, + { + "surface": "事事しい", + "readging": "ことごとしい", + "pos": "形容詞", + "pn": -0.988505 + }, + { + "surface": "勘当", + "readging": "かんどう", + "pos": "名詞", + "pn": -0.988507 + }, + { + "surface": "不徳義", + "readging": "ふとくぎ", + "pos": "名詞", + "pn": -0.988512 + }, + { + "surface": "阿諛", + "readging": "あゆ", + "pos": "名詞", + "pn": -0.988526 + }, + { + "surface": "宿悪", + "readging": "しゅくあく", + "pos": "名詞", + "pn": -0.98853 + }, + { + "surface": "こかす", + "readging": "こかす", + "pos": "動詞", + "pn": -0.988532 + }, + { + "surface": "惨殺", + "readging": "ざんさつ", + "pos": "名詞", + "pn": -0.988561 + }, + { + "surface": "文弱", + "readging": "ぶんじゃく", + "pos": "名詞", + "pn": -0.988567 + }, + { + "surface": "家", + "readging": "け", + "pos": "名詞", + "pn": -0.988589 + }, + { + "surface": "変死", + "readging": "へんし", + "pos": "名詞", + "pn": -0.988592 + }, + { + "surface": "緑便", + "readging": "りょくべん", + "pos": "名詞", + "pn": -0.988594 + }, + { + "surface": "濫伐", + "readging": "らんばつ", + "pos": "名詞", + "pn": -0.988597 + }, + { + "surface": "腫脹", + "readging": "しゅちょう", + "pos": "名詞", + "pn": -0.988597 + }, + { + "surface": "鼠", + "readging": "そ", + "pos": "名詞", + "pn": -0.988619 + }, + { + "surface": "移り箸", + "readging": "うつりばし", + "pos": "名詞", + "pn": -0.988632 + }, + { + "surface": "人身事故", + "readging": "じんしんじこ", + "pos": "名詞", + "pn": -0.988638 + }, + { + "surface": "慨世", + "readging": "がいせい", + "pos": "名詞", + "pn": -0.988649 + }, + { + "surface": "夏痩せ", + "readging": "なつやせ", + "pos": "名詞", + "pn": -0.988657 + }, + { + "surface": "誤診", + "readging": "ごしん", + "pos": "名詞", + "pn": -0.988676 + }, + { + "surface": "鬼門", + "readging": "きもん", + "pos": "名詞", + "pn": -0.988676 + }, + { + "surface": "恐縮", + "readging": "きょうしゅく", + "pos": "名詞", + "pn": -0.988687 + }, + { + "surface": "疑い", + "readging": "うたがい", + "pos": "名詞", + "pn": -0.988687 + }, + { + "surface": "煩多", + "readging": "はんた", + "pos": "名詞", + "pn": -0.988694 + }, + { + "surface": "縊死", + "readging": "いし", + "pos": "名詞", + "pn": -0.988698 + }, + { + "surface": "恋煩い", + "readging": "こいわずらい", + "pos": "名詞", + "pn": -0.988701 + }, + { + "surface": "魘される", + "readging": "うなされる", + "pos": "動詞", + "pn": -0.988713 + }, + { + "surface": "哀切", + "readging": "あいせつ", + "pos": "名詞", + "pn": -0.988721 + }, + { + "surface": "低まる", + "readging": "ひくまる", + "pos": "動詞", + "pn": -0.988735 + }, + { + "surface": "流産", + "readging": "りゅうざん", + "pos": "名詞", + "pn": -0.988743 + }, + { + "surface": "深手", + "readging": "ふかで", + "pos": "名詞", + "pn": -0.988747 + }, + { + "surface": "不行跡", + "readging": "ふぎょうせき", + "pos": "名詞", + "pn": -0.988758 + }, + { + "surface": "当り屋", + "readging": "あたりや", + "pos": "名詞", + "pn": -0.988773 + }, + { + "surface": "感染", + "readging": "かんせん", + "pos": "名詞", + "pn": -0.988774 + }, + { + "surface": "蒸暑い", + "readging": "むしあつい", + "pos": "形容詞", + "pn": -0.988786 + }, + { + "surface": "猛火", + "readging": "もうか", + "pos": "名詞", + "pn": -0.988802 + }, + { + "surface": "警告", + "readging": "けいこく", + "pos": "名詞", + "pn": -0.988804 + }, + { + "surface": "心無い", + "readging": "こころない", + "pos": "形容詞", + "pn": -0.988805 + }, + { + "surface": "退色", + "readging": "たいしょく", + "pos": "名詞", + "pn": -0.988833 + }, + { + "surface": "無力", + "readging": "むりょく", + "pos": "名詞", + "pn": -0.988855 + }, + { + "surface": "擬古", + "readging": "ぎこ", + "pos": "名詞", + "pn": -0.98886 + }, + { + "surface": "石棺", + "readging": "せっかん", + "pos": "名詞", + "pn": -0.988868 + }, + { + "surface": "わなわな", + "readging": "わなわな", + "pos": "副詞", + "pn": -0.988875 + }, + { + "surface": "塵労", + "readging": "じんろう", + "pos": "名詞", + "pn": -0.988884 + }, + { + "surface": "耳鳴り", + "readging": "みみなり", + "pos": "名詞", + "pn": -0.988892 + }, + { + "surface": "残欠", + "readging": "ざんけつ", + "pos": "名詞", + "pn": -0.988916 + }, + { + "surface": "荒仕事", + "readging": "あらしごと", + "pos": "名詞", + "pn": -0.988921 + }, + { + "surface": "拙筆", + "readging": "せっぴつ", + "pos": "名詞", + "pn": -0.988927 + }, + { + "surface": "因縁", + "readging": "いんねん", + "pos": "名詞", + "pn": -0.988929 + }, + { + "surface": "蓮っ葉", + "readging": "はすっぱ", + "pos": "名詞", + "pn": -0.988933 + }, + { + "surface": "弱志", + "readging": "じゃくし", + "pos": "名詞", + "pn": -0.988936 + }, + { + "surface": "褌担ぎ", + "readging": "ふんどしかつぎ", + "pos": "名詞", + "pn": -0.988943 + }, + { + "surface": "よそよそしい", + "readging": "よそよそしい", + "pos": "形容詞", + "pn": -0.988954 + }, + { + "surface": "疫痢", + "readging": "えきり", + "pos": "名詞", + "pn": -0.98896 + }, + { + "surface": "健忘", + "readging": "けんぼう", + "pos": "名詞", + "pn": -0.988968 + }, + { + "surface": "見幕", + "readging": "けんまく", + "pos": "名詞", + "pn": -0.988978 + }, + { + "surface": "うらびれる", + "readging": "うらびれる", + "pos": "動詞", + "pn": -0.988981 + }, + { + "surface": "遠吠え", + "readging": "とおぼえ", + "pos": "名詞", + "pn": -0.988984 + }, + { + "surface": "うじゃうじゃ", + "readging": "うじゃうじゃ", + "pos": "副詞", + "pn": -0.988985 + }, + { + "surface": "暴悪", + "readging": "ぼうあく", + "pos": "名詞", + "pn": -0.988989 + }, + { + "surface": "微恙", + "readging": "びよう", + "pos": "名詞", + "pn": -0.98899 + }, + { + "surface": "仇", + "readging": "あだ", + "pos": "名詞", + "pn": -0.988995 + }, + { + "surface": "失政", + "readging": "しっせい", + "pos": "名詞", + "pn": -0.988995 + }, + { + "surface": "淫蕩", + "readging": "いんとう", + "pos": "名詞", + "pn": -0.988998 + }, + { + "surface": "兵革", + "readging": "へいかく", + "pos": "名詞", + "pn": -0.98901 + }, + { + "surface": "そぐわない", + "readging": "そぐわない", + "pos": "形容詞", + "pn": -0.98902 + }, + { + "surface": "苦境", + "readging": "くきょう", + "pos": "名詞", + "pn": -0.989023 + }, + { + "surface": "稚拙", + "readging": "ちせつ", + "pos": "名詞", + "pn": -0.989031 + }, + { + "surface": "脅迫", + "readging": "きょうはく", + "pos": "名詞", + "pn": -0.989032 + }, + { + "surface": "なよなよ", + "readging": "なよなよ", + "pos": "副詞", + "pn": -0.989033 + }, + { + "surface": "背徳", + "readging": "はいとく", + "pos": "名詞", + "pn": -0.989037 + }, + { + "surface": "白装束", + "readging": "しろしょうぞく", + "pos": "名詞", + "pn": -0.98905 + }, + { + "surface": "脆弱", + "readging": "ぜいじゃく", + "pos": "名詞", + "pn": -0.989052 + }, + { + "surface": "罪する", + "readging": "つみする", + "pos": "動詞", + "pn": -0.989062 + }, + { + "surface": "死装束", + "readging": "しにしょうぞく", + "pos": "名詞", + "pn": -0.989087 + }, + { + "surface": "ずっこける", + "readging": "ずっこける", + "pos": "動詞", + "pn": -0.989089 + }, + { + "surface": "不文", + "readging": "ふぶん", + "pos": "名詞", + "pn": -0.989097 + }, + { + "surface": "差別", + "readging": "しゃべつ", + "pos": "名詞", + "pn": -0.989113 + }, + { + "surface": "拠無い", + "readging": "よんどころない", + "pos": "形容詞", + "pn": -0.989114 + }, + { + "surface": "抜け裏", + "readging": "ぬけうら", + "pos": "名詞", + "pn": -0.989118 + }, + { + "surface": "乞食", + "readging": "こじき", + "pos": "名詞", + "pn": -0.989123 + }, + { + "surface": "倦む", + "readging": "あぐむ", + "pos": "動詞", + "pn": -0.989123 + }, + { + "surface": "担ぎ屋", + "readging": "かつぎや", + "pos": "名詞", + "pn": -0.989134 + }, + { + "surface": "鵞口瘡", + "readging": "がこうそう", + "pos": "名詞", + "pn": -0.989135 + }, + { + "surface": "ねとねと", + "readging": "ねとねと", + "pos": "副詞", + "pn": -0.989138 + }, + { + "surface": "どら猫", + "readging": "どらねこ", + "pos": "名詞", + "pn": -0.989153 + }, + { + "surface": "紙", + "readging": "し", + "pos": "名詞", + "pn": -0.989158 + }, + { + "surface": "腎虚", + "readging": "じんきょ", + "pos": "名詞", + "pn": -0.989159 + }, + { + "surface": "最低", + "readging": "さいてい", + "pos": "名詞", + "pn": -0.989169 + }, + { + "surface": "あられもない", + "readging": "あられもない", + "pos": "形容詞", + "pn": -0.989194 + }, + { + "surface": "丑の刻参り", + "readging": "うしのときまいり", + "pos": "名詞", + "pn": -0.989195 + }, + { + "surface": "曖昧屋", + "readging": "あいまいや", + "pos": "名詞", + "pn": -0.9892 + }, + { + "surface": "不法", + "readging": "ふほう", + "pos": "名詞", + "pn": -0.989206 + }, + { + "surface": "雲助根性", + "readging": "くもすけこんじょう", + "pos": "名詞", + "pn": -0.989211 + }, + { + "surface": "悪貨", + "readging": "あっか", + "pos": "名詞", + "pn": -0.989215 + }, + { + "surface": "木", + "readging": "もく", + "pos": "名詞", + "pn": -0.989225 + }, + { + "surface": "大破", + "readging": "たいは", + "pos": "名詞", + "pn": -0.989235 + }, + { + "surface": "難路", + "readging": "なんろ", + "pos": "名詞", + "pn": -0.989256 + }, + { + "surface": "馬賊", + "readging": "ばぞく", + "pos": "名詞", + "pn": -0.989256 + }, + { + "surface": "火の手", + "readging": "ひのて", + "pos": "名詞", + "pn": -0.989261 + }, + { + "surface": "生き恥", + "readging": "いきはじ", + "pos": "名詞", + "pn": -0.989261 + }, + { + "surface": "死去", + "readging": "しきょ", + "pos": "名詞", + "pn": -0.989261 + }, + { + "surface": "髑髏", + "readging": "しゃれこうべ", + "pos": "名詞", + "pn": -0.989278 + }, + { + "surface": "黒星", + "readging": "くろぼし", + "pos": "名詞", + "pn": -0.98928 + }, + { + "surface": "孤児", + "readging": "みなしご", + "pos": "名詞", + "pn": -0.989293 + }, + { + "surface": "小策", + "readging": "しょうさく", + "pos": "名詞", + "pn": -0.989297 + }, + { + "surface": "あんぐり", + "readging": "あんぐり", + "pos": "副詞", + "pn": -0.989301 + }, + { + "surface": "十悪", + "readging": "じゅうあく", + "pos": "名詞", + "pn": -0.989304 + }, + { + "surface": "卒倒", + "readging": "そっとう", + "pos": "名詞", + "pn": -0.989312 + }, + { + "surface": "忌", + "readging": "いみ", + "pos": "名詞", + "pn": -0.989321 + }, + { + "surface": "しみったれる", + "readging": "しみったれる", + "pos": "動詞", + "pn": -0.989324 + }, + { + "surface": "のたくる", + "readging": "のたくる", + "pos": "動詞", + "pn": -0.989329 + }, + { + "surface": "暴力団", + "readging": "ぼうりょくだん", + "pos": "名詞", + "pn": -0.989343 + }, + { + "surface": "熟柿臭い", + "readging": "じゅくしくさい", + "pos": "形容詞", + "pn": -0.989351 + }, + { + "surface": "大火", + "readging": "たいか", + "pos": "名詞", + "pn": -0.989362 + }, + { + "surface": "せちがらい", + "readging": "せちがらい", + "pos": "形容詞", + "pn": -0.989363 + }, + { + "surface": "依怙贔屓", + "readging": "えこひいき", + "pos": "名詞", + "pn": -0.989366 + }, + { + "surface": "口", + "readging": "くち", + "pos": "名詞", + "pn": -0.989367 + }, + { + "surface": "八大地獄", + "readging": "はちだいじごく", + "pos": "名詞", + "pn": -0.989388 + }, + { + "surface": "生臭い", + "readging": "なまぐさい", + "pos": "形容詞", + "pn": -0.98939 + }, + { + "surface": "手間", + "readging": "てま", + "pos": "名詞", + "pn": -0.989423 + }, + { + "surface": "戯言", + "readging": "ざれごと", + "pos": "名詞", + "pn": -0.989425 + }, + { + "surface": "殺気", + "readging": "さっき", + "pos": "名詞", + "pn": -0.989429 + }, + { + "surface": "ケロイド", + "readging": "ケロイド", + "pos": "名詞", + "pn": -0.989431 + }, + { + "surface": "減退", + "readging": "げんたい", + "pos": "名詞", + "pn": -0.989432 + }, + { + "surface": "擦れっ枯らし", + "readging": "すれっからし", + "pos": "名詞", + "pn": -0.989432 + }, + { + "surface": "重態", + "readging": "じゅうたい", + "pos": "名詞", + "pn": -0.989441 + }, + { + "surface": "細かしい", + "readging": "こまかしい", + "pos": "形容詞", + "pn": -0.989442 + }, + { + "surface": "生生しい", + "readging": "なまなましい", + "pos": "形容詞", + "pn": -0.989444 + }, + { + "surface": "痘痕", + "readging": "あばた", + "pos": "名詞", + "pn": -0.989453 + }, + { + "surface": "頑愚", + "readging": "がんぐ", + "pos": "名詞", + "pn": -0.989455 + }, + { + "surface": "獄死", + "readging": "ごくし", + "pos": "名詞", + "pn": -0.989456 + }, + { + "surface": "弊風", + "readging": "へいふう", + "pos": "名詞", + "pn": -0.989462 + }, + { + "surface": "珍説", + "readging": "ちんせつ", + "pos": "名詞", + "pn": -0.989463 + }, + { + "surface": "重症", + "readging": "じゅうしょう", + "pos": "名詞", + "pn": -0.989468 + }, + { + "surface": "転落", + "readging": "てんらく", + "pos": "名詞", + "pn": -0.989469 + }, + { + "surface": "仮痘", + "readging": "かとう", + "pos": "名詞", + "pn": -0.98947 + }, + { + "surface": "気まずい", + "readging": "きまずい", + "pos": "形容詞", + "pn": -0.989475 + }, + { + "surface": "アイロニー", + "readging": "アイロニー", + "pos": "名詞", + "pn": -0.989495 + }, + { + "surface": "疎音", + "readging": "そいん", + "pos": "名詞", + "pn": -0.989515 + }, + { + "surface": "馬の足", + "readging": "うまのあし", + "pos": "名詞", + "pn": -0.989519 + }, + { + "surface": "涜職", + "readging": "とくしょく", + "pos": "名詞", + "pn": -0.989521 + }, + { + "surface": "手前勝手", + "readging": "てまえ", + "pos": "名詞", + "pn": -0.989522 + }, + { + "surface": "病弊", + "readging": "びょうへい", + "pos": "名詞", + "pn": -0.989533 + }, + { + "surface": "凶弾", + "readging": "きょうだん", + "pos": "名詞", + "pn": -0.989534 + }, + { + "surface": "胃潰瘍", + "readging": "いかいよう", + "pos": "名詞", + "pn": -0.989548 + }, + { + "surface": "傷咎め", + "readging": "きずとがめ", + "pos": "名詞", + "pn": -0.989554 + }, + { + "surface": "人事不省", + "readging": "じんじふせい", + "pos": "名詞", + "pn": -0.989558 + }, + { + "surface": "積悪", + "readging": "せきあく", + "pos": "名詞", + "pn": -0.989564 + }, + { + "surface": "戦戦恐恐", + "readging": "せんせんきょうきょう", + "pos": "名詞", + "pn": -0.989576 + }, + { + "surface": "倒産", + "readging": "とうさん", + "pos": "名詞", + "pn": -0.989577 + }, + { + "surface": "回り", + "readging": "まわり", + "pos": "名詞", + "pn": -0.989577 + }, + { + "surface": "傷病", + "readging": "しょうびょう", + "pos": "名詞", + "pn": -0.989584 + }, + { + "surface": "つんけん", + "readging": "つんけん", + "pos": "副詞", + "pn": -0.989587 + }, + { + "surface": "打殺す", + "readging": "うちころす", + "pos": "動詞", + "pn": -0.989597 + }, + { + "surface": "泥臭い", + "readging": "どろくさい", + "pos": "形容詞", + "pn": -0.9896 + }, + { + "surface": "曇らす", + "readging": "くもらす", + "pos": "動詞", + "pn": -0.989607 + }, + { + "surface": "萎靡", + "readging": "いび", + "pos": "名詞", + "pn": -0.989608 + }, + { + "surface": "悶死", + "readging": "もんし", + "pos": "名詞", + "pn": -0.98961 + }, + { + "surface": "気絶", + "readging": "きぜつ", + "pos": "名詞", + "pn": -0.989615 + }, + { + "surface": "悔し泣き", + "readging": "くやしなき", + "pos": "名詞", + "pn": -0.989624 + }, + { + "surface": "いかれる", + "readging": "いかれる", + "pos": "動詞", + "pn": -0.989625 + }, + { + "surface": "静寂", + "readging": "せいじゃく", + "pos": "名詞", + "pn": -0.989635 + }, + { + "surface": "貪食", + "readging": "どんしょく", + "pos": "名詞", + "pn": -0.989639 + }, + { + "surface": "小児麻痺", + "readging": "しょうにまひ", + "pos": "名詞", + "pn": -0.989641 + }, + { + "surface": "病害", + "readging": "びょうがい", + "pos": "名詞", + "pn": -0.989644 + }, + { + "surface": "妖怪", + "readging": "ようかい", + "pos": "名詞", + "pn": -0.989655 + }, + { + "surface": "不全", + "readging": "ふぜん", + "pos": "名詞", + "pn": -0.989656 + }, + { + "surface": "脱落", + "readging": "だつらく", + "pos": "名詞", + "pn": -0.989663 + }, + { + "surface": "がた落ち", + "readging": "がたおち", + "pos": "名詞", + "pn": -0.98967 + }, + { + "surface": "陥没", + "readging": "かんぼつ", + "pos": "名詞", + "pn": -0.989683 + }, + { + "surface": "御悩", + "readging": "ごのう", + "pos": "名詞", + "pn": -0.989687 + }, + { + "surface": "底翳", + "readging": "そこひ", + "pos": "名詞", + "pn": -0.98969 + }, + { + "surface": "業病", + "readging": "ごうびょう", + "pos": "名詞", + "pn": -0.989697 + }, + { + "surface": "烏滸がましい", + "readging": "おこがましい", + "pos": "形容詞", + "pn": -0.989704 + }, + { + "surface": "照れる", + "readging": "てれる", + "pos": "動詞", + "pn": -0.989705 + }, + { + "surface": "青ざめる", + "readging": "あおざめる", + "pos": "動詞", + "pn": -0.989706 + }, + { + "surface": "苦汁", + "readging": "くじゅう", + "pos": "名詞", + "pn": -0.989732 + }, + { + "surface": "足蹴", + "readging": "あしげ", + "pos": "名詞", + "pn": -0.989748 + }, + { + "surface": "首魁", + "readging": "しゅかい", + "pos": "名詞", + "pn": -0.989752 + }, + { + "surface": "憂苦", + "readging": "ゆうく", + "pos": "名詞", + "pn": -0.989766 + }, + { + "surface": "喧し屋", + "readging": "やかましや", + "pos": "名詞", + "pn": -0.989769 + }, + { + "surface": "甘ったるい", + "readging": "あまったるい", + "pos": "形容詞", + "pn": -0.989769 + }, + { + "surface": "くたばる", + "readging": "くたばる", + "pos": "動詞", + "pn": -0.989769 + }, + { + "surface": "あやめる", + "readging": "あやめる", + "pos": "動詞", + "pn": -0.989771 + }, + { + "surface": "瑣末", + "readging": "さまつ", + "pos": "名詞", + "pn": -0.989774 + }, + { + "surface": "凶年", + "readging": "きょうねん", + "pos": "名詞", + "pn": -0.989779 + }, + { + "surface": "痒い", + "readging": "かいい", + "pos": "形容詞", + "pn": -0.989799 + }, + { + "surface": "癲癇", + "readging": "てんかん", + "pos": "名詞", + "pn": -0.989799 + }, + { + "surface": "屍", + "readging": "しかばね", + "pos": "名詞", + "pn": -0.989805 + }, + { + "surface": "死霊", + "readging": "しりょう", + "pos": "名詞", + "pn": -0.989816 + }, + { + "surface": "薄遇", + "readging": "はくぐう", + "pos": "名詞", + "pn": -0.989828 + }, + { + "surface": "物惜しみ", + "readging": "ものおしみ", + "pos": "名詞", + "pn": -0.98983 + }, + { + "surface": "異物", + "readging": "いぶつ", + "pos": "名詞", + "pn": -0.989846 + }, + { + "surface": "荒くれ", + "readging": "あらくれ", + "pos": "名詞", + "pn": -0.98985 + }, + { + "surface": "責", + "readging": "せき", + "pos": "名詞", + "pn": -0.989852 + }, + { + "surface": "暴露", + "readging": "ばくろ", + "pos": "名詞", + "pn": -0.989858 + }, + { + "surface": "思案投げ首", + "readging": "しあんなげくび", + "pos": "名詞", + "pn": -0.989864 + }, + { + "surface": "擦過傷", + "readging": "さっかしょう", + "pos": "名詞", + "pn": -0.989867 + }, + { + "surface": "青瓢箪", + "readging": "あおびょうたん", + "pos": "名詞", + "pn": -0.989877 + }, + { + "surface": "病み付き", + "readging": "やみつき", + "pos": "名詞", + "pn": -0.98988 + }, + { + "surface": "毒筆", + "readging": "どくひつ", + "pos": "名詞", + "pn": -0.989886 + }, + { + "surface": "古めかしい", + "readging": "ふるめかしい", + "pos": "形容詞", + "pn": -0.989903 + }, + { + "surface": "ねちっこい", + "readging": "ねちっこい", + "pos": "形容詞", + "pn": -0.989904 + }, + { + "surface": "ゴシップ", + "readging": "ゴシップ", + "pos": "名詞", + "pn": -0.989905 + }, + { + "surface": "暗む", + "readging": "くらむ", + "pos": "動詞", + "pn": -0.98991 + }, + { + "surface": "長煩い", + "readging": "ながわずらい", + "pos": "名詞", + "pn": -0.989916 + }, + { + "surface": "汚臭", + "readging": "おしゅう", + "pos": "名詞", + "pn": -0.98993 + }, + { + "surface": "出来損ない", + "readging": "できそこない", + "pos": "名詞", + "pn": -0.989931 + }, + { + "surface": "虐待", + "readging": "ぎゃくたい", + "pos": "名詞", + "pn": -0.989942 + }, + { + "surface": "死時", + "readging": "しにどき", + "pos": "名詞", + "pn": -0.989942 + }, + { + "surface": "拙文", + "readging": "せつぶん", + "pos": "名詞", + "pn": -0.989949 + }, + { + "surface": "もっさり", + "readging": "もっさり", + "pos": "副詞", + "pn": -0.989962 + }, + { + "surface": "金釘流", + "readging": "かなくぎりゅう", + "pos": "名詞", + "pn": -0.989963 + }, + { + "surface": "辛苦", + "readging": "しんく", + "pos": "名詞", + "pn": -0.989971 + }, + { + "surface": "折れ口", + "readging": "おれくち", + "pos": "名詞", + "pn": -0.989973 + }, + { + "surface": "私語", + "readging": "しご", + "pos": "名詞", + "pn": -0.989982 + }, + { + "surface": "淋毒", + "readging": "りんどく", + "pos": "名詞", + "pn": -0.989985 + }, + { + "surface": "川流れ", + "readging": "かわながれ", + "pos": "名詞", + "pn": -0.989991 + }, + { + "surface": "名前負け", + "readging": "なまえ", + "pos": "名詞", + "pn": -0.989993 + }, + { + "surface": "凡才", + "readging": "ぼんさい", + "pos": "名詞", + "pn": -0.990002 + }, + { + "surface": "悪道", + "readging": "あくどう", + "pos": "名詞", + "pn": -0.990005 + }, + { + "surface": "衰微", + "readging": "すいび", + "pos": "名詞", + "pn": -0.990006 + }, + { + "surface": "堅苦しい", + "readging": "かたくるしい", + "pos": "形容詞", + "pn": -0.990011 + }, + { + "surface": "物足りない", + "readging": "ものたりない", + "pos": "形容詞", + "pn": -0.990016 + }, + { + "surface": "痛嘆", + "readging": "つうたん", + "pos": "名詞", + "pn": -0.99002 + }, + { + "surface": "痛哭", + "readging": "つうこく", + "pos": "名詞", + "pn": -0.99002 + }, + { + "surface": "荒淫", + "readging": "こういん", + "pos": "名詞", + "pn": -0.990023 + }, + { + "surface": "食いしん坊", + "readging": "くいしんぼう", + "pos": "名詞", + "pn": -0.990032 + }, + { + "surface": "ずんどう", + "readging": "ずんどう", + "pos": "名詞", + "pn": -0.990038 + }, + { + "surface": "暴徒", + "readging": "ぼうと", + "pos": "名詞", + "pn": -0.990042 + }, + { + "surface": "差出がましい", + "readging": "さしでがましい", + "pos": "形容詞", + "pn": -0.990046 + }, + { + "surface": "とろい", + "readging": "とろい", + "pos": "形容詞", + "pn": -0.990049 + }, + { + "surface": "遅疑", + "readging": "ちぎ", + "pos": "名詞", + "pn": -0.990056 + }, + { + "surface": "俗気", + "readging": "ぞっけ", + "pos": "名詞", + "pn": -0.990061 + }, + { + "surface": "萎縮", + "readging": "いしゅく", + "pos": "名詞", + "pn": -0.990062 + }, + { + "surface": "陰口", + "readging": "かげぐち", + "pos": "名詞", + "pn": -0.990064 + }, + { + "surface": "回禄", + "readging": "かいろく", + "pos": "名詞", + "pn": -0.990064 + }, + { + "surface": "餌食", + "readging": "えじき", + "pos": "名詞", + "pn": -0.990067 + }, + { + "surface": "高慢", + "readging": "こうまん", + "pos": "名詞", + "pn": -0.99007 + }, + { + "surface": "地異", + "readging": "ちい", + "pos": "名詞", + "pn": -0.990072 + }, + { + "surface": "異議", + "readging": "いぎ", + "pos": "名詞", + "pn": -0.990094 + }, + { + "surface": "炭疽", + "readging": "たんそ", + "pos": "名詞", + "pn": -0.990096 + }, + { + "surface": "心細い", + "readging": "こころぼそい", + "pos": "形容詞", + "pn": -0.990098 + }, + { + "surface": "千辛万苦", + "readging": "せんしんばんく", + "pos": "名詞", + "pn": -0.990102 + }, + { + "surface": "罹病", + "readging": "りびょう", + "pos": "名詞", + "pn": -0.990107 + }, + { + "surface": "罹患", + "readging": "りかん", + "pos": "名詞", + "pn": -0.990107 + }, + { + "surface": "疝痛", + "readging": "せんつう", + "pos": "名詞", + "pn": -0.990112 + }, + { + "surface": "疑団", + "readging": "ぎだん", + "pos": "名詞", + "pn": -0.990123 + }, + { + "surface": "言誤る", + "readging": "いいあやまる", + "pos": "動詞", + "pn": -0.990124 + }, + { + "surface": "鞘当", + "readging": "さやあて", + "pos": "名詞", + "pn": -0.990127 + }, + { + "surface": "腸捻転", + "readging": "ちょうねんてん", + "pos": "名詞", + "pn": -0.99013 + }, + { + "surface": "ひだるい", + "readging": "ひだるい", + "pos": "形容詞", + "pn": -0.990133 + }, + { + "surface": "苦痛", + "readging": "くつう", + "pos": "名詞", + "pn": -0.990133 + }, + { + "surface": "東夷", + "readging": "あずまえびす", + "pos": "名詞", + "pn": -0.990138 + }, + { + "surface": "依怙地", + "readging": "いこじ", + "pos": "名詞", + "pn": -0.990142 + }, + { + "surface": "あてずっぽう", + "readging": "あてずっぽう", + "pos": "名詞", + "pn": -0.990144 + }, + { + "surface": "赤口", + "readging": "しゃっく", + "pos": "名詞", + "pn": -0.990148 + }, + { + "surface": "ゴースト", + "readging": "ゴースト", + "pos": "名詞", + "pn": -0.990149 + }, + { + "surface": "切所", + "readging": "せっしょ", + "pos": "名詞", + "pn": -0.990157 + }, + { + "surface": "汚名", + "readging": "おめい", + "pos": "名詞", + "pn": -0.99016 + }, + { + "surface": "破牢", + "readging": "はろう", + "pos": "名詞", + "pn": -0.990161 + }, + { + "surface": "機嫌", + "readging": "きげん", + "pos": "名詞", + "pn": -0.990164 + }, + { + "surface": "惨落", + "readging": "さんらく", + "pos": "名詞", + "pn": -0.990167 + }, + { + "surface": "生き地獄", + "readging": "いきじごく", + "pos": "名詞", + "pn": -0.990179 + }, + { + "surface": "禁物", + "readging": "きんもつ", + "pos": "名詞", + "pn": -0.990182 + }, + { + "surface": "鈍刀", + "readging": "どんとう", + "pos": "名詞", + "pn": -0.990186 + }, + { + "surface": "折れ釘流", + "readging": "おれくぎ", + "pos": "名詞", + "pn": -0.990187 + }, + { + "surface": "晦渋", + "readging": "かいじゅう", + "pos": "名詞", + "pn": -0.990203 + }, + { + "surface": "恐れ多い", + "readging": "おそれおおい", + "pos": "形容詞", + "pn": -0.990207 + }, + { + "surface": "亡者", + "readging": "もうじゃ", + "pos": "名詞", + "pn": -0.990215 + }, + { + "surface": "毒手", + "readging": "どくしゅ", + "pos": "名詞", + "pn": -0.990222 + }, + { + "surface": "痼疾", + "readging": "こしつ", + "pos": "名詞", + "pn": -0.990229 + }, + { + "surface": "叩き大工", + "readging": "たたきだいく", + "pos": "名詞", + "pn": -0.99023 + }, + { + "surface": "奸臣", + "readging": "かんしん", + "pos": "名詞", + "pn": -0.990231 + }, + { + "surface": "尻つき", + "readging": "しりつき", + "pos": "名詞", + "pn": -0.990233 + }, + { + "surface": "黒穂", + "readging": "くろほ", + "pos": "名詞", + "pn": -0.990238 + }, + { + "surface": "風邪", + "readging": "ふうじゃ", + "pos": "名詞", + "pn": -0.990238 + }, + { + "surface": "人面疽", + "readging": "じんめんそ", + "pos": "名詞", + "pn": -0.990243 + }, + { + "surface": "バタ臭い", + "readging": "バタくさい", + "pos": "形容詞", + "pn": -0.990245 + }, + { + "surface": "寝込む", + "readging": "ねこむ", + "pos": "動詞", + "pn": -0.990246 + }, + { + "surface": "不身持ち", + "readging": "ふみもち", + "pos": "名詞", + "pn": -0.990249 + }, + { + "surface": "疎疎しい", + "readging": "うとうとしい", + "pos": "形容詞", + "pn": -0.990254 + }, + { + "surface": "息の根", + "readging": "いきのね", + "pos": "名詞", + "pn": -0.990256 + }, + { + "surface": "水っぽい", + "readging": "みずっぽい", + "pos": "形容詞", + "pn": -0.990264 + }, + { + "surface": "やばい", + "readging": "やばい", + "pos": "形容詞", + "pn": -0.990268 + }, + { + "surface": "勘気", + "readging": "かんき", + "pos": "名詞", + "pn": -0.990268 + }, + { + "surface": "死処", + "readging": "ししょ", + "pos": "名詞", + "pn": -0.990269 + }, + { + "surface": "植物", + "readging": "しょくぶつ", + "pos": "名詞", + "pn": -0.990272 + }, + { + "surface": "胸膜炎", + "readging": "きょうまくえん", + "pos": "名詞", + "pn": -0.990273 + }, + { + "surface": "鬱憤", + "readging": "うっぷん", + "pos": "名詞", + "pn": -0.990275 + }, + { + "surface": "ずぼら", + "readging": "ずぼら", + "pos": "名詞", + "pn": -0.990287 + }, + { + "surface": "面憎い", + "readging": "つらにくい", + "pos": "形容詞", + "pn": -0.990288 + }, + { + "surface": "脱疽", + "readging": "だっそ", + "pos": "名詞", + "pn": -0.990288 + }, + { + "surface": "偽造", + "readging": "ぎぞう", + "pos": "名詞", + "pn": -0.990298 + }, + { + "surface": "幽囚", + "readging": "ゆうしゅう", + "pos": "名詞", + "pn": -0.990329 + }, + { + "surface": "きゅうきゅう", + "readging": "きゅうきゅう", + "pos": "副詞", + "pn": -0.990332 + }, + { + "surface": "ダメージ", + "readging": "ダメージ", + "pos": "名詞", + "pn": -0.990346 + }, + { + "surface": "薄気味悪い", + "readging": "うすきみわるい", + "pos": "形容詞", + "pn": -0.990347 + }, + { + "surface": "滲出性体質", + "readging": "しんしゅつせいたいしつ", + "pos": "名詞", + "pn": -0.990351 + }, + { + "surface": "モンスター", + "readging": "モンスター", + "pos": "名詞", + "pn": -0.990355 + }, + { + "surface": "畜生道", + "readging": "ちくしょうどう", + "pos": "名詞", + "pn": -0.990359 + }, + { + "surface": "劣情", + "readging": "れつじょう", + "pos": "名詞", + "pn": -0.990362 + }, + { + "surface": "泣崩れる", + "readging": "なきくずれる", + "pos": "動詞", + "pn": -0.990365 + }, + { + "surface": "藪医者", + "readging": "やぶいしゃ", + "pos": "名詞", + "pn": -0.990371 + }, + { + "surface": "白首", + "readging": "しろくび", + "pos": "名詞", + "pn": -0.99038 + }, + { + "surface": "喀痰", + "readging": "かくたん", + "pos": "名詞", + "pn": -0.990387 + }, + { + "surface": "なまくら", + "readging": "なまくら", + "pos": "名詞", + "pn": -0.990388 + }, + { + "surface": "疲労", + "readging": "ひろう", + "pos": "名詞", + "pn": -0.990389 + }, + { + "surface": "暴挙", + "readging": "ぼうきょ", + "pos": "名詞", + "pn": -0.990389 + }, + { + "surface": "訓告", + "readging": "くんこく", + "pos": "名詞", + "pn": -0.990394 + }, + { + "surface": "鬼神", + "readging": "おにがみ", + "pos": "名詞", + "pn": -0.990402 + }, + { + "surface": "面罵", + "readging": "めんば", + "pos": "名詞", + "pn": -0.990404 + }, + { + "surface": "討果す", + "readging": "うちはたす", + "pos": "動詞", + "pn": -0.990406 + }, + { + "surface": "下心", + "readging": "したごころ", + "pos": "名詞", + "pn": -0.990407 + }, + { + "surface": "子癇", + "readging": "しかん", + "pos": "名詞", + "pn": -0.990418 + }, + { + "surface": "ほろ苦い", + "readging": "ほろにがい", + "pos": "形容詞", + "pn": -0.99042 + }, + { + "surface": "不徳", + "readging": "ふとく", + "pos": "名詞", + "pn": -0.990421 + }, + { + "surface": "器用貧乏", + "readging": "きようびんぼう", + "pos": "名詞", + "pn": -0.990427 + }, + { + "surface": "脂っこい", + "readging": "やにっこい", + "pos": "形容詞", + "pn": -0.990428 + }, + { + "surface": "悪神", + "readging": "あくじん", + "pos": "名詞", + "pn": -0.990436 + }, + { + "surface": "餓える", + "readging": "かつえる", + "pos": "動詞", + "pn": -0.990438 + }, + { + "surface": "優柔不断", + "readging": "ゆうじゅうふだん", + "pos": "名詞", + "pn": -0.990442 + }, + { + "surface": "死出の旅", + "readging": "しでのたび", + "pos": "名詞", + "pn": -0.990443 + }, + { + "surface": "悪推", + "readging": "わるずい", + "pos": "名詞", + "pn": -0.990448 + }, + { + "surface": "呵責", + "readging": "かしゃく", + "pos": "名詞", + "pn": -0.990449 + }, + { + "surface": "三白眼", + "readging": "さんぱくがん", + "pos": "名詞", + "pn": -0.990453 + }, + { + "surface": "御殿女中", + "readging": "ごてんじょちゅう", + "pos": "名詞", + "pn": -0.990453 + }, + { + "surface": "苦情", + "readging": "くじょう", + "pos": "名詞", + "pn": -0.990461 + }, + { + "surface": "錆色", + "readging": "さびいろ", + "pos": "名詞", + "pn": -0.990462 + }, + { + "surface": "誤断", + "readging": "ごだん", + "pos": "名詞", + "pn": -0.990473 + }, + { + "surface": "慨嘆", + "readging": "がいたん", + "pos": "名詞", + "pn": -0.990474 + }, + { + "surface": "無益", + "readging": "むえき", + "pos": "名詞", + "pn": -0.990475 + }, + { + "surface": "敗血症", + "readging": "はいけつしょう", + "pos": "名詞", + "pn": -0.990475 + }, + { + "surface": "難文", + "readging": "なんぶん", + "pos": "名詞", + "pn": -0.990482 + }, + { + "surface": "重罪", + "readging": "じゅうざい", + "pos": "名詞", + "pn": -0.990482 + }, + { + "surface": "犬猿", + "readging": "けんえん", + "pos": "名詞", + "pn": -0.990483 + }, + { + "surface": "ちょろちょろ", + "readging": "ちょろちょろ", + "pos": "副詞", + "pn": -0.990489 + }, + { + "surface": "似る", + "readging": "にる", + "pos": "動詞", + "pn": -0.990495 + }, + { + "surface": "気負い", + "readging": "きおい", + "pos": "名詞", + "pn": -0.990498 + }, + { + "surface": "邪", + "readging": "じゃ", + "pos": "名詞", + "pn": -0.9905 + }, + { + "surface": "難問", + "readging": "なんもん", + "pos": "名詞", + "pn": -0.990514 + }, + { + "surface": "ぼやく", + "readging": "ぼやく", + "pos": "動詞", + "pn": -0.990522 + }, + { + "surface": "震天動地", + "readging": "しんてんどうち", + "pos": "名詞", + "pn": -0.990524 + }, + { + "surface": "重科", + "readging": "じゅうか", + "pos": "名詞", + "pn": -0.990527 + }, + { + "surface": "貧しい", + "readging": "まずしい", + "pos": "形容詞", + "pn": -0.990529 + }, + { + "surface": "横様", + "readging": "よこざま", + "pos": "名詞", + "pn": -0.990533 + }, + { + "surface": "不謹慎", + "readging": "ふきんしん", + "pos": "名詞", + "pn": -0.990538 + }, + { + "surface": "無骨", + "readging": "ぶこつ", + "pos": "名詞", + "pn": -0.99054 + }, + { + "surface": "汚穢", + "readging": "おわい", + "pos": "名詞", + "pn": -0.99054 + }, + { + "surface": "思い過し", + "readging": "おもいすごし", + "pos": "名詞", + "pn": -0.990545 + }, + { + "surface": "空恐ろしい", + "readging": "そらおそろしい", + "pos": "形容詞", + "pn": -0.990546 + }, + { + "surface": "逸脱", + "readging": "いつだつ", + "pos": "名詞", + "pn": -0.990548 + }, + { + "surface": "泥", + "readging": "でい", + "pos": "名詞", + "pn": -0.99055 + }, + { + "surface": "鬼婆", + "readging": "おにばば", + "pos": "名詞", + "pn": -0.990562 + }, + { + "surface": "憎たらしい", + "readging": "にくたらしい", + "pos": "形容詞", + "pn": -0.990565 + }, + { + "surface": "窮境", + "readging": "きゅうきょう", + "pos": "名詞", + "pn": -0.990572 + }, + { + "surface": "困却", + "readging": "こんきゃく", + "pos": "名詞", + "pn": -0.990572 + }, + { + "surface": "悪念", + "readging": "あくねん", + "pos": "名詞", + "pn": -0.990574 + }, + { + "surface": "破傷風", + "readging": "はしょうふう", + "pos": "名詞", + "pn": -0.990582 + }, + { + "surface": "下種張る", + "readging": "げすばる", + "pos": "動詞", + "pn": -0.990585 + }, + { + "surface": "共謀", + "readging": "きょうぼう", + "pos": "名詞", + "pn": -0.990592 + }, + { + "surface": "嘘", + "readging": "うそ", + "pos": "名詞", + "pn": -0.990594 + }, + { + "surface": "愚", + "readging": "ぐ", + "pos": "名詞", + "pn": -0.990596 + }, + { + "surface": "着る", + "readging": "きる", + "pos": "動詞", + "pn": -0.990597 + }, + { + "surface": "擽ったい", + "readging": "くすぐったい", + "pos": "形容詞", + "pn": -0.9906 + }, + { + "surface": "駄作", + "readging": "ださく", + "pos": "名詞", + "pn": -0.990601 + }, + { + "surface": "難度", + "readging": "なんど", + "pos": "名詞", + "pn": -0.99061 + }, + { + "surface": "余病", + "readging": "よびょう", + "pos": "名詞", + "pn": -0.99061 + }, + { + "surface": "過敏", + "readging": "かびん", + "pos": "名詞", + "pn": -0.990614 + }, + { + "surface": "気恥しい", + "readging": "きはずかしい", + "pos": "形容詞", + "pn": -0.990617 + }, + { + "surface": "殴殺", + "readging": "おうさつ", + "pos": "名詞", + "pn": -0.990619 + }, + { + "surface": "つれない", + "readging": "つれない", + "pos": "形容詞", + "pn": -0.990627 + }, + { + "surface": "鼠輩", + "readging": "そはい", + "pos": "名詞", + "pn": -0.990627 + }, + { + "surface": "悪文", + "readging": "あくぶん", + "pos": "名詞", + "pn": -0.990639 + }, + { + "surface": "消磨", + "readging": "しょうま", + "pos": "名詞", + "pn": -0.990642 + }, + { + "surface": "リスク", + "readging": "リスク", + "pos": "名詞", + "pn": -0.990646 + }, + { + "surface": "身柱", + "readging": "ちりけ", + "pos": "名詞", + "pn": -0.990654 + }, + { + "surface": "難語", + "readging": "なんご", + "pos": "名詞", + "pn": -0.990654 + }, + { + "surface": "煙い", + "readging": "けむい", + "pos": "形容詞", + "pn": -0.990654 + }, + { + "surface": "人畜生", + "readging": "にんちくしょう", + "pos": "名詞", + "pn": -0.990663 + }, + { + "surface": "口汚い", + "readging": "くちぎたない", + "pos": "形容詞", + "pn": -0.990663 + }, + { + "surface": "重苦", + "readging": "じゅうく", + "pos": "名詞", + "pn": -0.990666 + }, + { + "surface": "凶報", + "readging": "きょうほう", + "pos": "名詞", + "pn": -0.990671 + }, + { + "surface": "裏道", + "readging": "うらみち", + "pos": "名詞", + "pn": -0.990675 + }, + { + "surface": "鈍る", + "readging": "なまる", + "pos": "動詞", + "pn": -0.990676 + }, + { + "surface": "執念", + "readging": "しゅうねん", + "pos": "名詞", + "pn": -0.990679 + }, + { + "surface": "卑賤", + "readging": "ひせん", + "pos": "名詞", + "pn": -0.990684 + }, + { + "surface": "強欲", + "readging": "ごうよく", + "pos": "名詞", + "pn": -0.990686 + }, + { + "surface": "獄", + "readging": "ごく", + "pos": "名詞", + "pn": -0.990704 + }, + { + "surface": "排水", + "readging": "はいすい", + "pos": "名詞", + "pn": -0.990705 + }, + { + "surface": "罪科", + "readging": "つみとが", + "pos": "名詞", + "pn": -0.99071 + }, + { + "surface": "送り狼", + "readging": "おくりおおかみ", + "pos": "名詞", + "pn": -0.990716 + }, + { + "surface": "バセドー病", + "readging": "バセドーびょう", + "pos": "名詞", + "pn": -0.990723 + }, + { + "surface": "赤錆", + "readging": "あかさび", + "pos": "名詞", + "pn": -0.990725 + }, + { + "surface": "もったい", + "readging": "もったいない", + "pos": "形容詞", + "pn": -0.990728 + }, + { + "surface": "ひりひり", + "readging": "ひりひり", + "pos": "副詞", + "pn": -0.990732 + }, + { + "surface": "訝しい", + "readging": "いぶかしい", + "pos": "形容詞", + "pn": -0.990751 + }, + { + "surface": "流行眼", + "readging": "はやりめ", + "pos": "名詞", + "pn": -0.990759 + }, + { + "surface": "歯槽膿漏", + "readging": "しそうのうろう", + "pos": "名詞", + "pn": -0.990761 + }, + { + "surface": "危機", + "readging": "きき", + "pos": "名詞", + "pn": -0.990773 + }, + { + "surface": "物恐ろしい", + "readging": "ものおそろしい", + "pos": "形容詞", + "pn": -0.990779 + }, + { + "surface": "小憎らしい", + "readging": "こにくらしい", + "pos": "形容詞", + "pn": -0.990785 + }, + { + "surface": "けばけばしい", + "readging": "けばけばしい", + "pos": "形容詞", + "pn": -0.99079 + }, + { + "surface": "激震", + "readging": "げきしん", + "pos": "名詞", + "pn": -0.990799 + }, + { + "surface": "一本調子", + "readging": "いっぽんぢょうし", + "pos": "名詞", + "pn": -0.990799 + }, + { + "surface": "秕政", + "readging": "ひせい", + "pos": "名詞", + "pn": -0.990802 + }, + { + "surface": "渋面", + "readging": "じゅうめん", + "pos": "名詞", + "pn": -0.990804 + }, + { + "surface": "不祝儀", + "readging": "ぶしゅうぎ", + "pos": "名詞", + "pn": -0.990807 + }, + { + "surface": "始末書", + "readging": "しまつしょ", + "pos": "名詞", + "pn": -0.990811 + }, + { + "surface": "暴君", + "readging": "ぼうくん", + "pos": "名詞", + "pn": -0.990812 + }, + { + "surface": "頑固", + "readging": "がんこ", + "pos": "名詞", + "pn": -0.99082 + }, + { + "surface": "罪", + "readging": "ざい", + "pos": "名詞", + "pn": -0.990821 + }, + { + "surface": "かつかつ", + "readging": "かつかつ", + "pos": "副詞", + "pn": -0.990823 + }, + { + "surface": "急逝", + "readging": "きゅうせい", + "pos": "名詞", + "pn": -0.99083 + }, + { + "surface": "折檻", + "readging": "せっかん", + "pos": "名詞", + "pn": -0.990843 + }, + { + "surface": "照付ける", + "readging": "てりつける", + "pos": "動詞", + "pn": -0.990845 + }, + { + "surface": "賤業", + "readging": "せんぎょう", + "pos": "名詞", + "pn": -0.990845 + }, + { + "surface": "隘路", + "readging": "あいろ", + "pos": "名詞", + "pn": -0.990859 + }, + { + "surface": "愚考", + "readging": "ぐこう", + "pos": "名詞", + "pn": -0.990866 + }, + { + "surface": "肺癆", + "readging": "はいろう", + "pos": "名詞", + "pn": -0.990868 + }, + { + "surface": "手数", + "readging": "てすう", + "pos": "名詞", + "pn": -0.990877 + }, + { + "surface": "悪銭", + "readging": "あくせん", + "pos": "名詞", + "pn": -0.990878 + }, + { + "surface": "流行性感冒", + "readging": "りゅうこうせいかんぼう", + "pos": "名詞", + "pn": -0.99088 + }, + { + "surface": "閑寂", + "readging": "かんじゃく", + "pos": "名詞", + "pn": -0.990881 + }, + { + "surface": "舌打ち", + "readging": "したうち", + "pos": "名詞", + "pn": -0.990885 + }, + { + "surface": "偉ぶる", + "readging": "えらぶる", + "pos": "動詞", + "pn": -0.990892 + }, + { + "surface": "ずべ", + "readging": "ずべ", + "pos": "名詞", + "pn": -0.990909 + }, + { + "surface": "所帯窶れ", + "readging": "しょたいやつれ", + "pos": "名詞", + "pn": -0.990915 + }, + { + "surface": "疫癘", + "readging": "えきれい", + "pos": "名詞", + "pn": -0.990916 + }, + { + "surface": "味噌擂り坊主", + "readging": "みそすりぼうず", + "pos": "名詞", + "pn": -0.990918 + }, + { + "surface": "悪止め", + "readging": "わるどめ", + "pos": "名詞", + "pn": -0.990922 + }, + { + "surface": "斯かる", + "readging": "かかる", + "pos": "動詞", + "pn": -0.990924 + }, + { + "surface": "薄情", + "readging": "はくじょう", + "pos": "名詞", + "pn": -0.990947 + }, + { + "surface": "田吾作", + "readging": "たごさく", + "pos": "名詞", + "pn": -0.99095 + }, + { + "surface": "暗礁", + "readging": "あんしょう", + "pos": "名詞", + "pn": -0.990956 + }, + { + "surface": "ばさばさ", + "readging": "ばさばさ", + "pos": "副詞", + "pn": -0.990968 + }, + { + "surface": "空元気", + "readging": "からげんき", + "pos": "名詞", + "pn": -0.990973 + }, + { + "surface": "瘴気", + "readging": "しょうき", + "pos": "名詞", + "pn": -0.990975 + }, + { + "surface": "ヌーボー", + "readging": "ヌーボー", + "pos": "名詞", + "pn": -0.990978 + }, + { + "surface": "批評", + "readging": "ひひょう", + "pos": "名詞", + "pn": -0.99098 + }, + { + "surface": "ぎしぎし", + "readging": "ぎしぎし", + "pos": "副詞", + "pn": -0.99098 + }, + { + "surface": "唖然", + "readging": "あぜん", + "pos": "名詞", + "pn": -0.990982 + }, + { + "surface": "悪知恵", + "readging": "わるぢえ", + "pos": "名詞", + "pn": -0.990983 + }, + { + "surface": "繁文縟礼", + "readging": "はんぶんじょくれい", + "pos": "名詞", + "pn": -0.990983 + }, + { + "surface": "豺狼", + "readging": "さいろう", + "pos": "名詞", + "pn": -0.99099 + }, + { + "surface": "野暮ったい", + "readging": "やぼったい", + "pos": "形容詞", + "pn": -0.990999 + }, + { + "surface": "痼", + "readging": "しこり", + "pos": "名詞", + "pn": -0.991 + }, + { + "surface": "仏罰", + "readging": "ぶつばつ", + "pos": "名詞", + "pn": -0.991009 + }, + { + "surface": "難字", + "readging": "なんじ", + "pos": "名詞", + "pn": -0.991012 + }, + { + "surface": "裏鬼門", + "readging": "うらきもん", + "pos": "名詞", + "pn": -0.991013 + }, + { + "surface": "流竄", + "readging": "りゅうざん", + "pos": "名詞", + "pn": -0.991021 + }, + { + "surface": "流刑", + "readging": "るけい", + "pos": "名詞", + "pn": -0.991022 + }, + { + "surface": "ダウン", + "readging": "ダウン", + "pos": "名詞", + "pn": -0.991027 + }, + { + "surface": "締殺す", + "readging": "しめころす", + "pos": "動詞", + "pn": -0.991029 + }, + { + "surface": "薄ら寒い", + "readging": "うすらさむい", + "pos": "形容詞", + "pn": -0.991032 + }, + { + "surface": "靡く", + "readging": "なびく", + "pos": "動詞", + "pn": -0.991036 + }, + { + "surface": "大言", + "readging": "たいげん", + "pos": "名詞", + "pn": -0.991037 + }, + { + "surface": "縊る", + "readging": "くびる", + "pos": "動詞", + "pn": -0.991043 + }, + { + "surface": "不況", + "readging": "ふきょう", + "pos": "名詞", + "pn": -0.991047 + }, + { + "surface": "口争い", + "readging": "くちあらそい", + "pos": "名詞", + "pn": -0.991053 + }, + { + "surface": "口喧嘩", + "readging": "くちげんか", + "pos": "名詞", + "pn": -0.991054 + }, + { + "surface": "潰瘍", + "readging": "かいよう", + "pos": "名詞", + "pn": -0.991061 + }, + { + "surface": "生憎", + "readging": "あいにく", + "pos": "副詞", + "pn": -0.991075 + }, + { + "surface": "片言", + "readging": "かたこと", + "pos": "名詞", + "pn": -0.991083 + }, + { + "surface": "大凶", + "readging": "だいきょう", + "pos": "名詞", + "pn": -0.991114 + }, + { + "surface": "因果", + "readging": "いんが", + "pos": "名詞", + "pn": -0.99112 + }, + { + "surface": "魅入る", + "readging": "みいる", + "pos": "動詞", + "pn": -0.991121 + }, + { + "surface": "病菌", + "readging": "びょうきん", + "pos": "名詞", + "pn": -0.991127 + }, + { + "surface": "苦り切る", + "readging": "にがりきる", + "pos": "動詞", + "pn": -0.991127 + }, + { + "surface": "愚民", + "readging": "ぐみん", + "pos": "名詞", + "pn": -0.991149 + }, + { + "surface": "嫌に", + "readging": "いやに", + "pos": "副詞", + "pn": -0.991153 + }, + { + "surface": "胡散臭い", + "readging": "うさんくさい", + "pos": "形容詞", + "pn": -0.991154 + }, + { + "surface": "悪名", + "readging": "あくめい", + "pos": "名詞", + "pn": -0.991154 + }, + { + "surface": "糞土", + "readging": "ふんど", + "pos": "名詞", + "pn": -0.991167 + }, + { + "surface": "由無い", + "readging": "よしない", + "pos": "形容詞", + "pn": -0.991169 + }, + { + "surface": "恨み死", + "readging": "うらみじに", + "pos": "名詞", + "pn": -0.99117 + }, + { + "surface": "淋菌", + "readging": "りんきん", + "pos": "名詞", + "pn": -0.991171 + }, + { + "surface": "手荒い", + "readging": "てあらい", + "pos": "形容詞", + "pn": -0.991181 + }, + { + "surface": "小火", + "readging": "ぼや", + "pos": "名詞", + "pn": -0.991185 + }, + { + "surface": "ばつ", + "readging": "ばつ", + "pos": "名詞", + "pn": -0.991186 + }, + { + "surface": "疑る", + "readging": "うたぐる", + "pos": "動詞", + "pn": -0.991188 + }, + { + "surface": "悩ましい", + "readging": "なやましい", + "pos": "形容詞", + "pn": -0.99119 + }, + { + "surface": "下落", + "readging": "げらく", + "pos": "名詞", + "pn": -0.99119 + }, + { + "surface": "天険", + "readging": "てんけん", + "pos": "名詞", + "pn": -0.991191 + }, + { + "surface": "旧悪", + "readging": "きゅうあく", + "pos": "名詞", + "pn": -0.991194 + }, + { + "surface": "愚論", + "readging": "ぐろん", + "pos": "名詞", + "pn": -0.991214 + }, + { + "surface": "だらだら", + "readging": "だらだら", + "pos": "副詞", + "pn": -0.991215 + }, + { + "surface": "怯懦", + "readging": "きょうだ", + "pos": "名詞", + "pn": -0.991221 + }, + { + "surface": "難境", + "readging": "なんきょう", + "pos": "名詞", + "pn": -0.991223 + }, + { + "surface": "バンパイア", + "readging": "バンパイア", + "pos": "名詞", + "pn": -0.991224 + }, + { + "surface": "色欲", + "readging": "しきよく", + "pos": "名詞", + "pn": -0.991227 + }, + { + "surface": "心掛り", + "readging": "こころがかり", + "pos": "名詞", + "pn": -0.991232 + }, + { + "surface": "違算", + "readging": "いさん", + "pos": "名詞", + "pn": -0.991235 + }, + { + "surface": "不用心", + "readging": "ぶようじん", + "pos": "名詞", + "pn": -0.991236 + }, + { + "surface": "不埒", + "readging": "ふらち", + "pos": "名詞", + "pn": -0.991238 + }, + { + "surface": "罰金", + "readging": "ばっきん", + "pos": "名詞", + "pn": -0.99125 + }, + { + "surface": "血の道", + "readging": "ちのみち", + "pos": "名詞", + "pn": -0.991251 + }, + { + "surface": "お冠", + "readging": "おかんむり", + "pos": "名詞", + "pn": -0.991251 + }, + { + "surface": "臨終", + "readging": "りんじゅう", + "pos": "名詞", + "pn": -0.991252 + }, + { + "surface": "カリエス", + "readging": "カリエス", + "pos": "名詞", + "pn": -0.991258 + }, + { + "surface": "薄弱", + "readging": "はくじゃく", + "pos": "名詞", + "pn": -0.99127 + }, + { + "surface": "毒気", + "readging": "どくけ", + "pos": "名詞", + "pn": -0.991273 + }, + { + "surface": "謙る", + "readging": "へりくだる", + "pos": "動詞", + "pn": -0.991275 + }, + { + "surface": "合併症", + "readging": "がっぺいしょう", + "pos": "名詞", + "pn": -0.991276 + }, + { + "surface": "恐怖政治", + "readging": "きょうふせいじ", + "pos": "名詞", + "pn": -0.991279 + }, + { + "surface": "殺人", + "readging": "さつじん", + "pos": "名詞", + "pn": -0.991283 + }, + { + "surface": "散る", + "readging": "ちる", + "pos": "動詞", + "pn": -0.99129 + }, + { + "surface": "瘤", + "readging": "こぶ", + "pos": "名詞", + "pn": -0.991292 + }, + { + "surface": "桿菌", + "readging": "かんきん", + "pos": "名詞", + "pn": -0.991313 + }, + { + "surface": "小物", + "readging": "こもの", + "pos": "名詞", + "pn": -0.991314 + }, + { + "surface": "雪隠大工", + "readging": "せっちんだいく", + "pos": "名詞", + "pn": -0.991315 + }, + { + "surface": "術無い", + "readging": "じゅつない", + "pos": "形容詞", + "pn": -0.991317 + }, + { + "surface": "聞きにくい", + "readging": "ききにくい", + "pos": "形容詞", + "pn": -0.991333 + }, + { + "surface": "災", + "readging": "わざわい", + "pos": "名詞", + "pn": -0.991336 + }, + { + "surface": "厳刑", + "readging": "げんけい", + "pos": "名詞", + "pn": -0.991339 + }, + { + "surface": "お座", + "readging": "おざ", + "pos": "名詞", + "pn": -0.991346 + }, + { + "surface": "侘", + "readging": "わび", + "pos": "名詞", + "pn": -0.991347 + }, + { + "surface": "罪深い", + "readging": "つみぶかい", + "pos": "形容詞", + "pn": -0.991355 + }, + { + "surface": "惨死", + "readging": "ざんし", + "pos": "名詞", + "pn": -0.991355 + }, + { + "surface": "青白い", + "readging": "あおじろい", + "pos": "形容詞", + "pn": -0.991363 + }, + { + "surface": "魔魅", + "readging": "まみ", + "pos": "名詞", + "pn": -0.991368 + }, + { + "surface": "病症", + "readging": "びょうしょう", + "pos": "名詞", + "pn": -0.991368 + }, + { + "surface": "慨する", + "readging": "がいする", + "pos": "動詞", + "pn": -0.99137 + }, + { + "surface": "荒法師", + "readging": "あらほうし", + "pos": "名詞", + "pn": -0.991374 + }, + { + "surface": "難読", + "readging": "なんどく", + "pos": "名詞", + "pn": -0.991377 + }, + { + "surface": "辞世", + "readging": "じせい", + "pos": "名詞", + "pn": -0.99138 + }, + { + "surface": "神経衰弱", + "readging": "しんけいすいじゃく", + "pos": "名詞", + "pn": -0.99138 + }, + { + "surface": "膨れっ面", + "readging": "ふくれっつら", + "pos": "名詞", + "pn": -0.991383 + }, + { + "surface": "不祥", + "readging": "ふしょう", + "pos": "名詞", + "pn": -0.991387 + }, + { + "surface": "肉腫", + "readging": "にくしゅ", + "pos": "名詞", + "pn": -0.991387 + }, + { + "surface": "険", + "readging": "けん", + "pos": "名詞", + "pn": -0.991399 + }, + { + "surface": "三悪道", + "readging": "さんまくどう", + "pos": "名詞", + "pn": -0.9914 + }, + { + "surface": "不作", + "readging": "ふさく", + "pos": "名詞", + "pn": -0.991401 + }, + { + "surface": "借り", + "readging": "かり", + "pos": "名詞", + "pn": -0.991402 + }, + { + "surface": "色神", + "readging": "しきしん", + "pos": "名詞", + "pn": -0.991409 + }, + { + "surface": "気遣わしい", + "readging": "きづかわしい", + "pos": "形容詞", + "pn": -0.991416 + }, + { + "surface": "咎", + "readging": "とが", + "pos": "名詞", + "pn": -0.991417 + }, + { + "surface": "あくどい", + "readging": "あくどい", + "pos": "形容詞", + "pn": -0.991421 + }, + { + "surface": "追徴", + "readging": "ついちょう", + "pos": "名詞", + "pn": -0.991422 + }, + { + "surface": "傷害", + "readging": "しょうがい", + "pos": "名詞", + "pn": -0.991425 + }, + { + "surface": "悪趣", + "readging": "あくしゅ", + "pos": "名詞", + "pn": -0.991426 + }, + { + "surface": "野暮臭い", + "readging": "やぼくさい", + "pos": "形容詞", + "pn": -0.991431 + }, + { + "surface": "えげつない", + "readging": "えげつない", + "pos": "形容詞", + "pn": -0.991437 + }, + { + "surface": "癇性", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.991457 + }, + { + "surface": "泣伏す", + "readging": "なきふす", + "pos": "動詞", + "pn": -0.991457 + }, + { + "surface": "朴念仁", + "readging": "ぼくねんじん", + "pos": "名詞", + "pn": -0.991468 + }, + { + "surface": "天災", + "readging": "てんさい", + "pos": "名詞", + "pn": -0.991472 + }, + { + "surface": "頼み少ない", + "readging": "たのみすくない", + "pos": "形容詞", + "pn": -0.991475 + }, + { + "surface": "襤褸", + "readging": "ぼろ", + "pos": "名詞", + "pn": -0.991475 + }, + { + "surface": "ぎょろりと", + "readging": "ぎょろりと", + "pos": "副詞", + "pn": -0.991484 + }, + { + "surface": "生霊", + "readging": "いきりょう", + "pos": "名詞", + "pn": -0.991485 + }, + { + "surface": "遊び人", + "readging": "あそびにん", + "pos": "名詞", + "pn": -0.991486 + }, + { + "surface": "不景気", + "readging": "ふけいき", + "pos": "名詞", + "pn": -0.991486 + }, + { + "surface": "不親切", + "readging": "ふしんせつ", + "pos": "名詞", + "pn": -0.991492 + }, + { + "surface": "劣", + "readging": "れつ", + "pos": "名詞", + "pn": -0.991494 + }, + { + "surface": "乱臣", + "readging": "らんしん", + "pos": "名詞", + "pn": -0.9915 + }, + { + "surface": "孤影", + "readging": "こえい", + "pos": "名詞", + "pn": -0.9915 + }, + { + "surface": "腸チフス", + "readging": "ちょうチフス", + "pos": "名詞", + "pn": -0.991502 + }, + { + "surface": "ずっぷり", + "readging": "ずっぷり", + "pos": "副詞", + "pn": -0.991504 + }, + { + "surface": "耳垂れ", + "readging": "みみだれ", + "pos": "名詞", + "pn": -0.991509 + }, + { + "surface": "困苦", + "readging": "こんく", + "pos": "名詞", + "pn": -0.991515 + }, + { + "surface": "罰する", + "readging": "ばっする", + "pos": "動詞", + "pn": -0.991517 + }, + { + "surface": "不善", + "readging": "ふぜん", + "pos": "名詞", + "pn": -0.991534 + }, + { + "surface": "悪疫", + "readging": "あくえき", + "pos": "名詞", + "pn": -0.991538 + }, + { + "surface": "可惜物", + "readging": "あったらもの", + "pos": "名詞", + "pn": -0.991539 + }, + { + "surface": "とまどう", + "readging": "とまどう", + "pos": "動詞", + "pn": -0.991543 + }, + { + "surface": "片息", + "readging": "かたいき", + "pos": "名詞", + "pn": -0.991545 + }, + { + "surface": "当て付ける", + "readging": "あてつける", + "pos": "動詞", + "pn": -0.99155 + }, + { + "surface": "ぷりぷり", + "readging": "ぷりぷり", + "pos": "副詞", + "pn": -0.991555 + }, + { + "surface": "軽症", + "readging": "けいしょう", + "pos": "名詞", + "pn": -0.991557 + }, + { + "surface": "誤審", + "readging": "ごしん", + "pos": "名詞", + "pn": -0.991558 + }, + { + "surface": "煩い", + "readging": "わずらい", + "pos": "形容詞", + "pn": -0.991562 + }, + { + "surface": "悪筆", + "readging": "あくひつ", + "pos": "名詞", + "pn": -0.991565 + }, + { + "surface": "白ける", + "readging": "しらける", + "pos": "動詞", + "pn": -0.991568 + }, + { + "surface": "反目", + "readging": "はんもく", + "pos": "名詞", + "pn": -0.991574 + }, + { + "surface": "邪曲", + "readging": "じゃきょく", + "pos": "名詞", + "pn": -0.991576 + }, + { + "surface": "無情", + "readging": "むじょう", + "pos": "名詞", + "pn": -0.991579 + }, + { + "surface": "出歯亀", + "readging": "でばかめ", + "pos": "名詞", + "pn": -0.99159 + }, + { + "surface": "低める", + "readging": "ひくめる", + "pos": "動詞", + "pn": -0.991592 + }, + { + "surface": "死にかける", + "readging": "しにかける", + "pos": "動詞", + "pn": -0.991599 + }, + { + "surface": "ひょっとこ", + "readging": "ひょっとこ", + "pos": "名詞", + "pn": -0.991609 + }, + { + "surface": "偏屈", + "readging": "へんくつ", + "pos": "名詞", + "pn": -0.991614 + }, + { + "surface": "寂しい", + "readging": "さみしい", + "pos": "形容詞", + "pn": -0.991617 + }, + { + "surface": "貧乏籤", + "readging": "びんぼうくじ", + "pos": "名詞", + "pn": -0.991626 + }, + { + "surface": "打算", + "readging": "ださん", + "pos": "名詞", + "pn": -0.991627 + }, + { + "surface": "業晒", + "readging": "ごうさらし", + "pos": "名詞", + "pn": -0.991627 + }, + { + "surface": "不道徳", + "readging": "ふどうとく", + "pos": "名詞", + "pn": -0.991632 + }, + { + "surface": "癩者", + "readging": "らいしゃ", + "pos": "名詞", + "pn": -0.99164 + }, + { + "surface": "打沈む", + "readging": "うちしずむ", + "pos": "動詞", + "pn": -0.991642 + }, + { + "surface": "間欠熱", + "readging": "かんけつねつ", + "pos": "名詞", + "pn": -0.991652 + }, + { + "surface": "急症", + "readging": "きゅうしょう", + "pos": "名詞", + "pn": -0.991664 + }, + { + "surface": "誤用", + "readging": "ごよう", + "pos": "名詞", + "pn": -0.991668 + }, + { + "surface": "いやらしい", + "readging": "いやらしい", + "pos": "形容詞", + "pn": -0.991672 + }, + { + "surface": "仕返し", + "readging": "しかえし", + "pos": "名詞", + "pn": -0.991681 + }, + { + "surface": "抹香臭い", + "readging": "まっこうくさい", + "pos": "形容詞", + "pn": -0.991687 + }, + { + "surface": "猛猛しい", + "readging": "たけだけしい", + "pos": "形容詞", + "pn": -0.991689 + }, + { + "surface": "わっぱ", + "readging": "わっぱ", + "pos": "名詞", + "pn": -0.991692 + }, + { + "surface": "名残惜しい", + "readging": "なごりおしい", + "pos": "形容詞", + "pn": -0.991692 + }, + { + "surface": "じゃじゃ馬", + "readging": "じゃじゃうま", + "pos": "名詞", + "pn": -0.991702 + }, + { + "surface": "焦熱", + "readging": "しょうねつ", + "pos": "名詞", + "pn": -0.991703 + }, + { + "surface": "弊習", + "readging": "へいしゅう", + "pos": "名詞", + "pn": -0.991708 + }, + { + "surface": "不届き", + "readging": "ふとどき", + "pos": "名詞", + "pn": -0.99171 + }, + { + "surface": "懐疑", + "readging": "かいぎ", + "pos": "名詞", + "pn": -0.991717 + }, + { + "surface": "陋巷", + "readging": "ろうこう", + "pos": "名詞", + "pn": -0.991723 + }, + { + "surface": "染み付く", + "readging": "しみつく", + "pos": "動詞", + "pn": -0.991727 + }, + { + "surface": "図太い", + "readging": "ずぶとい", + "pos": "形容詞", + "pn": -0.991727 + }, + { + "surface": "頑癬", + "readging": "がんせん", + "pos": "名詞", + "pn": -0.991731 + }, + { + "surface": "心痛", + "readging": "しんつう", + "pos": "名詞", + "pn": -0.991744 + }, + { + "surface": "感傷", + "readging": "かんしょう", + "pos": "名詞", + "pn": -0.991745 + }, + { + "surface": "のろのろ", + "readging": "のろのろ", + "pos": "副詞", + "pn": -0.991745 + }, + { + "surface": "悪寒", + "readging": "おかん", + "pos": "名詞", + "pn": -0.991753 + }, + { + "surface": "悪化", + "readging": "あっか", + "pos": "名詞", + "pn": -0.991755 + }, + { + "surface": "ねっとり", + "readging": "ねっとり", + "pos": "副詞", + "pn": -0.991759 + }, + { + "surface": "袋叩き", + "readging": "ふくろだたき", + "pos": "名詞", + "pn": -0.991762 + }, + { + "surface": "多病", + "readging": "たびょう", + "pos": "名詞", + "pn": -0.991766 + }, + { + "surface": "葉", + "readging": "よう", + "pos": "名詞", + "pn": -0.991768 + }, + { + "surface": "吝嗇家", + "readging": "りんしょくか", + "pos": "名詞", + "pn": -0.991784 + }, + { + "surface": "屍", + "readging": "し", + "pos": "名詞", + "pn": -0.991784 + }, + { + "surface": "殺気立つ", + "readging": "さっきだつ", + "pos": "動詞", + "pn": -0.991788 + }, + { + "surface": "陰陰", + "readging": "いんいん", + "pos": "名詞", + "pn": -0.99179 + }, + { + "surface": "気弱", + "readging": "きよわ", + "pos": "名詞", + "pn": -0.99179 + }, + { + "surface": "憂き目", + "readging": "うきめ", + "pos": "名詞", + "pn": -0.991795 + }, + { + "surface": "ごてつく", + "readging": "ごてつく", + "pos": "動詞", + "pn": -0.991795 + }, + { + "surface": "凶猛", + "readging": "きょうもう", + "pos": "名詞", + "pn": -0.991818 + }, + { + "surface": "拙速", + "readging": "せっそく", + "pos": "名詞", + "pn": -0.991818 + }, + { + "surface": "徒桜", + "readging": "あだざくら", + "pos": "名詞", + "pn": -0.991834 + }, + { + "surface": "敵役", + "readging": "かたきやく", + "pos": "名詞", + "pn": -0.991843 + }, + { + "surface": "下種", + "readging": "げす", + "pos": "名詞", + "pn": -0.991851 + }, + { + "surface": "水火", + "readging": "すいか", + "pos": "名詞", + "pn": -0.991852 + }, + { + "surface": "鬼胎", + "readging": "きたい", + "pos": "名詞", + "pn": -0.991853 + }, + { + "surface": "難点", + "readging": "なんてん", + "pos": "名詞", + "pn": -0.991853 + }, + { + "surface": "吉凶", + "readging": "きっきょう", + "pos": "名詞", + "pn": -0.991855 + }, + { + "surface": "卑怯", + "readging": "ひきょう", + "pos": "名詞", + "pn": -0.991856 + }, + { + "surface": "きょときょと", + "readging": "きょときょと", + "pos": "副詞", + "pn": -0.991857 + }, + { + "surface": "拗ねる", + "readging": "すねる", + "pos": "動詞", + "pn": -0.991857 + }, + { + "surface": "連火", + "readging": "れんが", + "pos": "名詞", + "pn": -0.991864 + }, + { + "surface": "中水", + "readging": "ちゅうすい", + "pos": "名詞", + "pn": -0.991874 + }, + { + "surface": "怨色", + "readging": "えんしょく", + "pos": "名詞", + "pn": -0.991875 + }, + { + "surface": "惨劇", + "readging": "さんげき", + "pos": "名詞", + "pn": -0.991877 + }, + { + "surface": "癌腫", + "readging": "がんしゅ", + "pos": "名詞", + "pn": -0.991878 + }, + { + "surface": "貧する", + "readging": "ひんする", + "pos": "動詞", + "pn": -0.991882 + }, + { + "surface": "覚束無い", + "readging": "おぼつかない", + "pos": "形容詞", + "pn": -0.991884 + }, + { + "surface": "涙ぐむ", + "readging": "なみだぐむ", + "pos": "動詞", + "pn": -0.99189 + }, + { + "surface": "掻く", + "readging": "かく", + "pos": "動詞", + "pn": -0.991893 + }, + { + "surface": "汚点", + "readging": "おてん", + "pos": "名詞", + "pn": -0.991898 + }, + { + "surface": "背負い投げ", + "readging": "しょいなげ", + "pos": "名詞", + "pn": -0.991902 + }, + { + "surface": "如才", + "readging": "じょさい", + "pos": "名詞", + "pn": -0.991903 + }, + { + "surface": "飢饉", + "readging": "ききん", + "pos": "名詞", + "pn": -0.991909 + }, + { + "surface": "壊疽", + "readging": "えそ", + "pos": "名詞", + "pn": -0.99191 + }, + { + "surface": "癪持", + "readging": "しゃくもち", + "pos": "名詞", + "pn": -0.991915 + }, + { + "surface": "あっぷあっぷ", + "readging": "あっぷあっぷ", + "pos": "副詞", + "pn": -0.991927 + }, + { + "surface": "危惧", + "readging": "きぐ", + "pos": "名詞", + "pn": -0.991935 + }, + { + "surface": "失策", + "readging": "しっさく", + "pos": "名詞", + "pn": -0.99194 + }, + { + "surface": "呪法", + "readging": "じゅほう", + "pos": "名詞", + "pn": -0.991941 + }, + { + "surface": "混雑", + "readging": "こんざつ", + "pos": "名詞", + "pn": -0.991949 + }, + { + "surface": "飽き性", + "readging": "あきしょう", + "pos": "名詞", + "pn": -0.991949 + }, + { + "surface": "犬侍", + "readging": "いぬざむらい", + "pos": "名詞", + "pn": -0.991959 + }, + { + "surface": "凍死", + "readging": "とうし", + "pos": "名詞", + "pn": -0.991961 + }, + { + "surface": "扱使う", + "readging": "こきつかう", + "pos": "動詞", + "pn": -0.991969 + }, + { + "surface": "中傷", + "readging": "ちゅうしょう", + "pos": "名詞", + "pn": -0.991972 + }, + { + "surface": "衰弱", + "readging": "すいじゃく", + "pos": "名詞", + "pn": -0.991977 + }, + { + "surface": "湿気る", + "readging": "しっける", + "pos": "動詞", + "pn": -0.991979 + }, + { + "surface": "掴ませる", + "readging": "つかませる", + "pos": "動詞", + "pn": -0.99199 + }, + { + "surface": "名折れ", + "readging": "なおれ", + "pos": "名詞", + "pn": -0.991991 + }, + { + "surface": "ぶつくさ", + "readging": "ぶつくさ", + "pos": "名詞", + "pn": -0.991995 + }, + { + "surface": "こむずかしい", + "readging": "こむずかしい", + "pos": "形容詞", + "pn": -0.991998 + }, + { + "surface": "笑止", + "readging": "しょうし", + "pos": "名詞", + "pn": -0.992 + }, + { + "surface": "ぶくぶく", + "readging": "ぶくぶく", + "pos": "副詞", + "pn": -0.992005 + }, + { + "surface": "死際", + "readging": "しにぎわ", + "pos": "名詞", + "pn": -0.992006 + }, + { + "surface": "貶める", + "readging": "おとしめる", + "pos": "動詞", + "pn": -0.992006 + }, + { + "surface": "自責", + "readging": "じせき", + "pos": "名詞", + "pn": -0.992007 + }, + { + "surface": "売国奴", + "readging": "ばいこくど", + "pos": "名詞", + "pn": -0.992007 + }, + { + "surface": "狭窄", + "readging": "きょうさく", + "pos": "名詞", + "pn": -0.99201 + }, + { + "surface": "凶変", + "readging": "きょうへん", + "pos": "名詞", + "pn": -0.992016 + }, + { + "surface": "患部", + "readging": "かんぶ", + "pos": "名詞", + "pn": -0.992016 + }, + { + "surface": "凶日", + "readging": "きょうじつ", + "pos": "名詞", + "pn": -0.992027 + }, + { + "surface": "曲事", + "readging": "きょくじ", + "pos": "名詞", + "pn": -0.99203 + }, + { + "surface": "震駭", + "readging": "しんがい", + "pos": "名詞", + "pn": -0.992042 + }, + { + "surface": "情ない", + "readging": "なさけない", + "pos": "形容詞", + "pn": -0.992051 + }, + { + "surface": "しょんぼり", + "readging": "しょんぼり", + "pos": "副詞", + "pn": -0.992054 + }, + { + "surface": "中風", + "readging": "ちゅうぶ", + "pos": "名詞", + "pn": -0.992059 + }, + { + "surface": "ずれる", + "readging": "ずれる", + "pos": "動詞", + "pn": -0.992063 + }, + { + "surface": "不穏", + "readging": "ふおん", + "pos": "名詞", + "pn": -0.992071 + }, + { + "surface": "魂胆", + "readging": "こんたん", + "pos": "名詞", + "pn": -0.992078 + }, + { + "surface": "鈍重", + "readging": "どんじゅう", + "pos": "名詞", + "pn": -0.992079 + }, + { + "surface": "肥大", + "readging": "ひだい", + "pos": "名詞", + "pn": -0.992081 + }, + { + "surface": "慳貪", + "readging": "けんどん", + "pos": "名詞", + "pn": -0.992083 + }, + { + "surface": "悪意", + "readging": "あくい", + "pos": "名詞", + "pn": -0.992085 + }, + { + "surface": "時化る", + "readging": "しける", + "pos": "動詞", + "pn": -0.992086 + }, + { + "surface": "粗", + "readging": "あら", + "pos": "副詞", + "pn": -0.992087 + }, + { + "surface": "売女", + "readging": "ばいた", + "pos": "名詞", + "pn": -0.992087 + }, + { + "surface": "痩せこける", + "readging": "やせこける", + "pos": "動詞", + "pn": -0.992089 + }, + { + "surface": "口寂しい", + "readging": "くちさびしい", + "pos": "形容詞", + "pn": -0.992094 + }, + { + "surface": "難", + "readging": "なん", + "pos": "名詞", + "pn": -0.992095 + }, + { + "surface": "紛らわしい", + "readging": "まぎらわしい", + "pos": "形容詞", + "pn": -0.992105 + }, + { + "surface": "差支え", + "readging": "さしつかえ", + "pos": "名詞", + "pn": -0.992108 + }, + { + "surface": "固執", + "readging": "こしゅう", + "pos": "名詞", + "pn": -0.992111 + }, + { + "surface": "痔", + "readging": "じ", + "pos": "名詞", + "pn": -0.992114 + }, + { + "surface": "死出の山", + "readging": "しでのやま", + "pos": "名詞", + "pn": -0.992118 + }, + { + "surface": "庸愚", + "readging": "ようぐ", + "pos": "名詞", + "pn": -0.992118 + }, + { + "surface": "牢破り", + "readging": "ろうやぶり", + "pos": "名詞", + "pn": -0.992124 + }, + { + "surface": "思い詰める", + "readging": "おもいつめる", + "pos": "動詞", + "pn": -0.992125 + }, + { + "surface": "頽唐", + "readging": "たいとう", + "pos": "名詞", + "pn": -0.992126 + }, + { + "surface": "膿胸", + "readging": "のうきょう", + "pos": "名詞", + "pn": -0.992128 + }, + { + "surface": "暴動", + "readging": "ぼうどう", + "pos": "名詞", + "pn": -0.992135 + }, + { + "surface": "苦虫", + "readging": "にがむし", + "pos": "名詞", + "pn": -0.99214 + }, + { + "surface": "蓄膿症", + "readging": "ちくのうしょう", + "pos": "名詞", + "pn": -0.992141 + }, + { + "surface": "しがない", + "readging": "しがない", + "pos": "形容詞", + "pn": -0.992146 + }, + { + "surface": "間抜け", + "readging": "まぬけ", + "pos": "名詞", + "pn": -0.992148 + }, + { + "surface": "緊縛", + "readging": "きんばく", + "pos": "名詞", + "pn": -0.992154 + }, + { + "surface": "鼠賊", + "readging": "そぞく", + "pos": "名詞", + "pn": -0.992161 + }, + { + "surface": "大患", + "readging": "たいかん", + "pos": "名詞", + "pn": -0.992165 + }, + { + "surface": "罰則", + "readging": "ばっそく", + "pos": "名詞", + "pn": -0.992169 + }, + { + "surface": "平身低頭", + "readging": "へいしんていとう", + "pos": "名詞", + "pn": -0.99218 + }, + { + "surface": "淫する", + "readging": "いんする", + "pos": "動詞", + "pn": -0.99218 + }, + { + "surface": "貧者", + "readging": "ひんじゃ", + "pos": "名詞", + "pn": -0.992184 + }, + { + "surface": "赤貧", + "readging": "せきひん", + "pos": "名詞", + "pn": -0.992186 + }, + { + "surface": "難い", + "readging": "がたい", + "pos": "形容詞", + "pn": -0.992188 + }, + { + "surface": "辛酸", + "readging": "しんさん", + "pos": "名詞", + "pn": -0.992192 + }, + { + "surface": "痛手", + "readging": "いたで", + "pos": "名詞", + "pn": -0.992203 + }, + { + "surface": "牢役人", + "readging": "ろうやくにん", + "pos": "名詞", + "pn": -0.992205 + }, + { + "surface": "腫れぼったい", + "readging": "はれぼったい", + "pos": "形容詞", + "pn": -0.992205 + }, + { + "surface": "蛮声", + "readging": "ばんせい", + "pos": "名詞", + "pn": -0.992208 + }, + { + "surface": "流刑", + "readging": "りゅうけい", + "pos": "名詞", + "pn": -0.992217 + }, + { + "surface": "疣痔", + "readging": "いぼじ", + "pos": "名詞", + "pn": -0.992223 + }, + { + "surface": "哀憐", + "readging": "あいれん", + "pos": "名詞", + "pn": -0.992229 + }, + { + "surface": "怪文書", + "readging": "かいぶんしょ", + "pos": "名詞", + "pn": -0.992229 + }, + { + "surface": "前非", + "readging": "ぜんぴ", + "pos": "名詞", + "pn": -0.992231 + }, + { + "surface": "凶手", + "readging": "きょうしゅ", + "pos": "名詞", + "pn": -0.992239 + }, + { + "surface": "片意地", + "readging": "かたいじ", + "pos": "名詞", + "pn": -0.992245 + }, + { + "surface": "痔疾", + "readging": "じしつ", + "pos": "名詞", + "pn": -0.992252 + }, + { + "surface": "夢魔", + "readging": "むま", + "pos": "名詞", + "pn": -0.992252 + }, + { + "surface": "難関", + "readging": "なんかん", + "pos": "名詞", + "pn": -0.992262 + }, + { + "surface": "情っ張り", + "readging": "じょうっぱり", + "pos": "名詞", + "pn": -0.992262 + }, + { + "surface": "馬", + "readging": "め", + "pos": "名詞", + "pn": -0.992266 + }, + { + "surface": "微傷", + "readging": "びしょう", + "pos": "名詞", + "pn": -0.992266 + }, + { + "surface": "ぐずつく", + "readging": "ぐずつく", + "pos": "動詞", + "pn": -0.992267 + }, + { + "surface": "立腹", + "readging": "りっぷく", + "pos": "名詞", + "pn": -0.992268 + }, + { + "surface": "産褥", + "readging": "さんじょく", + "pos": "名詞", + "pn": -0.992276 + }, + { + "surface": "悪鬼", + "readging": "あっき", + "pos": "名詞", + "pn": -0.992277 + }, + { + "surface": "臭味", + "readging": "しゅうみ", + "pos": "名詞", + "pn": -0.992279 + }, + { + "surface": "悪報", + "readging": "あくほう", + "pos": "名詞", + "pn": -0.992284 + }, + { + "surface": "阿鼻叫喚", + "readging": "あびきょうかん", + "pos": "名詞", + "pn": -0.992284 + }, + { + "surface": "薄い", + "readging": "うすい", + "pos": "形容詞", + "pn": -0.992284 + }, + { + "surface": "夭逝", + "readging": "ようせい", + "pos": "名詞", + "pn": -0.992296 + }, + { + "surface": "高山病", + "readging": "こうざんびょう", + "pos": "名詞", + "pn": -0.992299 + }, + { + "surface": "拱手", + "readging": "こうしゅ", + "pos": "名詞", + "pn": -0.992299 + }, + { + "surface": "苦杯", + "readging": "くはい", + "pos": "名詞", + "pn": -0.992301 + }, + { + "surface": "牛歩", + "readging": "ぎゅうほ", + "pos": "名詞", + "pn": -0.992305 + }, + { + "surface": "回りくどい", + "readging": "まわりくどい", + "pos": "形容詞", + "pn": -0.992306 + }, + { + "surface": "険阻", + "readging": "けんそ", + "pos": "名詞", + "pn": -0.992309 + }, + { + "surface": "消渇", + "readging": "しょうかち", + "pos": "名詞", + "pn": -0.992317 + }, + { + "surface": "無間", + "readging": "むげん", + "pos": "名詞", + "pn": -0.992318 + }, + { + "surface": "擬装", + "readging": "ぎそう", + "pos": "名詞", + "pn": -0.992327 + }, + { + "surface": "怖じ気立つ", + "readging": "おじけ", + "pos": "動詞", + "pn": -0.992327 + }, + { + "surface": "刺刺しい", + "readging": "とげとげしい", + "pos": "形容詞", + "pn": -0.992329 + }, + { + "surface": "異変", + "readging": "いへん", + "pos": "名詞", + "pn": -0.992333 + }, + { + "surface": "疳", + "readging": "かん", + "pos": "名詞", + "pn": -0.992335 + }, + { + "surface": "無器用", + "readging": "ぶきよう", + "pos": "名詞", + "pn": -0.992336 + }, + { + "surface": "飢寒", + "readging": "きかん", + "pos": "名詞", + "pn": -0.992338 + }, + { + "surface": "巣窟", + "readging": "そうくつ", + "pos": "名詞", + "pn": -0.992343 + }, + { + "surface": "病体", + "readging": "びょうたい", + "pos": "名詞", + "pn": -0.99235 + }, + { + "surface": "泥深い", + "readging": "どろぶかい", + "pos": "形容詞", + "pn": -0.992353 + }, + { + "surface": "エピゴーネン", + "readging": "エピゴーネン", + "pos": "名詞", + "pn": -0.992355 + }, + { + "surface": "ぎすぎす", + "readging": "ぎすぎす", + "pos": "名詞", + "pn": -0.992367 + }, + { + "surface": "早老", + "readging": "そうろう", + "pos": "名詞", + "pn": -0.992377 + }, + { + "surface": "乱行", + "readging": "らんぎょう", + "pos": "名詞", + "pn": -0.992385 + }, + { + "surface": "散らかす", + "readging": "ちらかす", + "pos": "動詞", + "pn": -0.992389 + }, + { + "surface": "切歯扼腕", + "readging": "せっしやくわん", + "pos": "名詞", + "pn": -0.992396 + }, + { + "surface": "逆境", + "readging": "ぎゃっきょう", + "pos": "名詞", + "pn": -0.9924 + }, + { + "surface": "悪さ", + "readging": "わるさ", + "pos": "名詞", + "pn": -0.99241 + }, + { + "surface": "不貞寝", + "readging": "ふてね", + "pos": "名詞", + "pn": -0.992419 + }, + { + "surface": "危局", + "readging": "ききょく", + "pos": "名詞", + "pn": -0.99242 + }, + { + "surface": "ならず者", + "readging": "ならずもの", + "pos": "名詞", + "pn": -0.992431 + }, + { + "surface": "差合", + "readging": "さしあい", + "pos": "名詞", + "pn": -0.992431 + }, + { + "surface": "けち臭い", + "readging": "けちくさい", + "pos": "形容詞", + "pn": -0.99244 + }, + { + "surface": "継子扱い", + "readging": "ままこあつかい", + "pos": "名詞", + "pn": -0.992445 + }, + { + "surface": "敵意", + "readging": "てきい", + "pos": "名詞", + "pn": -0.992447 + }, + { + "surface": "腺病質", + "readging": "せんびょうしつ", + "pos": "名詞", + "pn": -0.99245 + }, + { + "surface": "害心", + "readging": "がいしん", + "pos": "名詞", + "pn": -0.992453 + }, + { + "surface": "恐水病", + "readging": "きょうすいびょう", + "pos": "名詞", + "pn": -0.992469 + }, + { + "surface": "術無い", + "readging": "じつない", + "pos": "形容詞", + "pn": -0.992472 + }, + { + "surface": "泣きの涙", + "readging": "なきのなみだ", + "pos": "名詞", + "pn": -0.99248 + }, + { + "surface": "卵塔場", + "readging": "らんとうば", + "pos": "名詞", + "pn": -0.992485 + }, + { + "surface": "脂っこい", + "readging": "あぶらっこい", + "pos": "形容詞", + "pn": -0.992485 + }, + { + "surface": "健忘症", + "readging": "けんぼうしょう", + "pos": "名詞", + "pn": -0.992495 + }, + { + "surface": "悪風", + "readging": "あくふう", + "pos": "名詞", + "pn": -0.992496 + }, + { + "surface": "陰気臭い", + "readging": "いんきくさい", + "pos": "形容詞", + "pn": -0.9925 + }, + { + "surface": "重患", + "readging": "じゅうかん", + "pos": "名詞", + "pn": -0.992501 + }, + { + "surface": "山出し", + "readging": "やまだし", + "pos": "名詞", + "pn": -0.992512 + }, + { + "surface": "失態", + "readging": "しったい", + "pos": "名詞", + "pn": -0.992517 + }, + { + "surface": "寂寥", + "readging": "せきりょう", + "pos": "名詞", + "pn": -0.99252 + }, + { + "surface": "トラブル", + "readging": "トラブル", + "pos": "名詞", + "pn": -0.992524 + }, + { + "surface": "猖獗", + "readging": "しょうけつ", + "pos": "名詞", + "pn": -0.992527 + }, + { + "surface": "俚語", + "readging": "りご", + "pos": "名詞", + "pn": -0.992528 + }, + { + "surface": "切ない", + "readging": "せつない", + "pos": "形容詞", + "pn": -0.992534 + }, + { + "surface": "激怒", + "readging": "げきど", + "pos": "名詞", + "pn": -0.992536 + }, + { + "surface": "悶絶", + "readging": "もんぜつ", + "pos": "名詞", + "pn": -0.992537 + }, + { + "surface": "大逆", + "readging": "だいぎゃく", + "pos": "名詞", + "pn": -0.992544 + }, + { + "surface": "鄙俗", + "readging": "ひぞく", + "pos": "名詞", + "pn": -0.992545 + }, + { + "surface": "寒冷", + "readging": "かんれい", + "pos": "名詞", + "pn": -0.99255 + }, + { + "surface": "畏怖", + "readging": "いふ", + "pos": "名詞", + "pn": -0.992551 + }, + { + "surface": "瑣事", + "readging": "さじ", + "pos": "名詞", + "pn": -0.992554 + }, + { + "surface": "聳動", + "readging": "しょうどう", + "pos": "名詞", + "pn": -0.992557 + }, + { + "surface": "茶坊主", + "readging": "ちゃぼうず", + "pos": "名詞", + "pn": -0.992565 + }, + { + "surface": "危地", + "readging": "きち", + "pos": "名詞", + "pn": -0.992572 + }, + { + "surface": "哀傷", + "readging": "あいしょう", + "pos": "名詞", + "pn": -0.992573 + }, + { + "surface": "身罷る", + "readging": "みまかる", + "pos": "動詞", + "pn": -0.992573 + }, + { + "surface": "訛語", + "readging": "かご", + "pos": "名詞", + "pn": -0.992584 + }, + { + "surface": "阿呆らしい", + "readging": "あほらしい", + "pos": "形容詞", + "pn": -0.992586 + }, + { + "surface": "物悲しい", + "readging": "ものがなしい", + "pos": "形容詞", + "pn": -0.99259 + }, + { + "surface": "ぐずる", + "readging": "ぐずる", + "pos": "動詞", + "pn": -0.992591 + }, + { + "surface": "惨敗", + "readging": "さんぱい", + "pos": "名詞", + "pn": -0.992597 + }, + { + "surface": "肌寒い", + "readging": "はださむい", + "pos": "形容詞", + "pn": -0.9926 + }, + { + "surface": "ぼろい", + "readging": "ぼろい", + "pos": "形容詞", + "pn": -0.992601 + }, + { + "surface": "お陀仏", + "readging": "おだぶつ", + "pos": "名詞", + "pn": -0.992604 + }, + { + "surface": "騙し討", + "readging": "だましうち", + "pos": "名詞", + "pn": -0.992616 + }, + { + "surface": "険所", + "readging": "けんしょ", + "pos": "名詞", + "pn": -0.992628 + }, + { + "surface": "後暗い", + "readging": "うしろぐらい", + "pos": "形容詞", + "pn": -0.992636 + }, + { + "surface": "当り散らす", + "readging": "あたりちらす", + "pos": "動詞", + "pn": -0.992641 + }, + { + "surface": "はしたない", + "readging": "はしたない", + "pos": "形容詞", + "pn": -0.992646 + }, + { + "surface": "怱怱", + "readging": "そうそう", + "pos": "名詞", + "pn": -0.992653 + }, + { + "surface": "憎がる", + "readging": "にくがる", + "pos": "動詞", + "pn": -0.992664 + }, + { + "surface": "薄汚れる", + "readging": "うすよごれる", + "pos": "動詞", + "pn": -0.992665 + }, + { + "surface": "笊碁", + "readging": "ざるご", + "pos": "名詞", + "pn": -0.992665 + }, + { + "surface": "疔", + "readging": "ちょう", + "pos": "名詞", + "pn": -0.992672 + }, + { + "surface": "悪癖", + "readging": "あくへき", + "pos": "名詞", + "pn": -0.992673 + }, + { + "surface": "哀愁", + "readging": "あいしゅう", + "pos": "名詞", + "pn": -0.992673 + }, + { + "surface": "狭苦しい", + "readging": "せまくるしい", + "pos": "形容詞", + "pn": -0.992679 + }, + { + "surface": "切れ端", + "readging": "きれはし", + "pos": "名詞", + "pn": -0.992696 + }, + { + "surface": "呪わしい", + "readging": "のろわしい", + "pos": "形容詞", + "pn": -0.992699 + }, + { + "surface": "弊政", + "readging": "へいせい", + "pos": "名詞", + "pn": -0.992699 + }, + { + "surface": "傷", + "readging": "きず", + "pos": "名詞", + "pn": -0.992716 + }, + { + "surface": "険難", + "readging": "けんなん", + "pos": "名詞", + "pn": -0.992716 + }, + { + "surface": "刺虫", + "readging": "いらむし", + "pos": "名詞", + "pn": -0.992721 + }, + { + "surface": "悶悶", + "readging": "もんもん", + "pos": "名詞", + "pn": -0.992723 + }, + { + "surface": "餓鬼道", + "readging": "がきどう", + "pos": "名詞", + "pn": -0.992727 + }, + { + "surface": "厭世主義", + "readging": "えんせいしゅぎ", + "pos": "名詞", + "pn": -0.992727 + }, + { + "surface": "ふてぶてしい", + "readging": "ふてぶてしい", + "pos": "形容詞", + "pn": -0.992729 + }, + { + "surface": "無益", + "readging": "むやく", + "pos": "名詞", + "pn": -0.992742 + }, + { + "surface": "小手先", + "readging": "こてさき", + "pos": "名詞", + "pn": -0.992746 + }, + { + "surface": "不幸せ", + "readging": "ふしあわせ", + "pos": "名詞", + "pn": -0.992747 + }, + { + "surface": "あたじけない", + "readging": "あたじけない", + "pos": "形容詞", + "pn": -0.992755 + }, + { + "surface": "贓品", + "readging": "ぞうひん", + "pos": "名詞", + "pn": -0.992758 + }, + { + "surface": "下卑る", + "readging": "げびる", + "pos": "動詞", + "pn": -0.992767 + }, + { + "surface": "醜女", + "readging": "ぶおんな", + "pos": "名詞", + "pn": -0.99277 + }, + { + "surface": "怪物", + "readging": "かいぶつ", + "pos": "名詞", + "pn": -0.99277 + }, + { + "surface": "寒村", + "readging": "かんそん", + "pos": "名詞", + "pn": -0.992777 + }, + { + "surface": "遊蕩", + "readging": "ゆうとう", + "pos": "名詞", + "pn": -0.992779 + }, + { + "surface": "渋る", + "readging": "しぶる", + "pos": "動詞", + "pn": -0.992781 + }, + { + "surface": "死地", + "readging": "しち", + "pos": "名詞", + "pn": -0.992796 + }, + { + "surface": "呻吟", + "readging": "しんぎん", + "pos": "名詞", + "pn": -0.992798 + }, + { + "surface": "お高く", + "readging": "おたかく", + "pos": "副詞", + "pn": -0.992799 + }, + { + "surface": "分別臭い", + "readging": "ふんべつくさい", + "pos": "形容詞", + "pn": -0.992802 + }, + { + "surface": "無様", + "readging": "ぶざま", + "pos": "名詞", + "pn": -0.992806 + }, + { + "surface": "訛音", + "readging": "かおん", + "pos": "名詞", + "pn": -0.992811 + }, + { + "surface": "奇禍", + "readging": "きか", + "pos": "名詞", + "pn": -0.992812 + }, + { + "surface": "尻癖", + "readging": "しりくせ", + "pos": "名詞", + "pn": -0.992814 + }, + { + "surface": "暴漢", + "readging": "ぼうかん", + "pos": "名詞", + "pn": -0.992824 + }, + { + "surface": "愁嘆", + "readging": "しゅうたん", + "pos": "名詞", + "pn": -0.992825 + }, + { + "surface": "自堕落", + "readging": "じだらく", + "pos": "名詞", + "pn": -0.992827 + }, + { + "surface": "泣き面", + "readging": "なきつら", + "pos": "名詞", + "pn": -0.992837 + }, + { + "surface": "熱苦しい", + "readging": "あつくるしい", + "pos": "形容詞", + "pn": -0.992838 + }, + { + "surface": "悪夢", + "readging": "あくむ", + "pos": "名詞", + "pn": -0.992847 + }, + { + "surface": "反吐", + "readging": "へど", + "pos": "名詞", + "pn": -0.992849 + }, + { + "surface": "薄幸", + "readging": "はっこう", + "pos": "名詞", + "pn": -0.992855 + }, + { + "surface": "泣沈む", + "readging": "なきしずむ", + "pos": "動詞", + "pn": -0.992856 + }, + { + "surface": "祟る", + "readging": "たたる", + "pos": "動詞", + "pn": -0.992865 + }, + { + "surface": "陋屋", + "readging": "ろうおく", + "pos": "名詞", + "pn": -0.992866 + }, + { + "surface": "凡人", + "readging": "ぼんじん", + "pos": "名詞", + "pn": -0.992868 + }, + { + "surface": "丹毒", + "readging": "たんどく", + "pos": "名詞", + "pn": -0.99288 + }, + { + "surface": "酒色", + "readging": "しゅしょく", + "pos": "名詞", + "pn": -0.992893 + }, + { + "surface": "憤懣", + "readging": "ふんまん", + "pos": "名詞", + "pn": -0.992895 + }, + { + "surface": "うそ寒い", + "readging": "うそさむい", + "pos": "形容詞", + "pn": -0.992908 + }, + { + "surface": "投獄", + "readging": "とうごく", + "pos": "名詞", + "pn": -0.992911 + }, + { + "surface": "脳貧血", + "readging": "のうひんけつ", + "pos": "名詞", + "pn": -0.992915 + }, + { + "surface": "グロ", + "readging": "グロ", + "pos": "名詞", + "pn": -0.992916 + }, + { + "surface": "怒鳴る", + "readging": "どなる", + "pos": "動詞", + "pn": -0.992918 + }, + { + "surface": "当座凌ぎ", + "readging": "とうざしのぎ", + "pos": "名詞", + "pn": -0.992919 + }, + { + "surface": "遊冶郎", + "readging": "ゆうやろう", + "pos": "名詞", + "pn": -0.99292 + }, + { + "surface": "叫喚地獄", + "readging": "きょうかんじごく", + "pos": "名詞", + "pn": -0.99293 + }, + { + "surface": "付け元気", + "readging": "つけげんき", + "pos": "名詞", + "pn": -0.992932 + }, + { + "surface": "下手", + "readging": "へたくそ", + "pos": "名詞", + "pn": -0.992939 + }, + { + "surface": "ねつい", + "readging": "ねつい", + "pos": "形容詞", + "pn": -0.992941 + }, + { + "surface": "大喝", + "readging": "だいかつ", + "pos": "名詞", + "pn": -0.992943 + }, + { + "surface": "病死", + "readging": "びょうし", + "pos": "名詞", + "pn": -0.992944 + }, + { + "surface": "喘ぐ", + "readging": "あえぐ", + "pos": "動詞", + "pn": -0.992951 + }, + { + "surface": "ひもじい", + "readging": "ひもじい", + "pos": "形容詞", + "pn": -0.992958 + }, + { + "surface": "急変", + "readging": "きゅうへん", + "pos": "名詞", + "pn": -0.99297 + }, + { + "surface": "空しい", + "readging": "むなしい", + "pos": "形容詞", + "pn": -0.992972 + }, + { + "surface": "障り", + "readging": "ささわり", + "pos": "名詞", + "pn": -0.992978 + }, + { + "surface": "貧寒", + "readging": "ひんかん", + "pos": "名詞", + "pn": -0.992985 + }, + { + "surface": "貧", + "readging": "ひん", + "pos": "名詞", + "pn": -0.992985 + }, + { + "surface": "きつい", + "readging": "きつい", + "pos": "形容詞", + "pn": -0.992987 + }, + { + "surface": "険悪", + "readging": "けんあく", + "pos": "名詞", + "pn": -0.992997 + }, + { + "surface": "罪過", + "readging": "ざいか", + "pos": "名詞", + "pn": -0.992999 + }, + { + "surface": "汚れ", + "readging": "けがれ", + "pos": "名詞", + "pn": -0.993003 + }, + { + "surface": "貧窮", + "readging": "ひんきゅう", + "pos": "名詞", + "pn": -0.993021 + }, + { + "surface": "焦れったい", + "readging": "じれったい", + "pos": "形容詞", + "pn": -0.993022 + }, + { + "surface": "極諫", + "readging": "きょっかん", + "pos": "名詞", + "pn": -0.993023 + }, + { + "surface": "三百代言", + "readging": "さんびゃくだいげん", + "pos": "名詞", + "pn": -0.993027 + }, + { + "surface": "こじつける", + "readging": "こじつける", + "pos": "動詞", + "pn": -0.993031 + }, + { + "surface": "陰金", + "readging": "いんきん", + "pos": "名詞", + "pn": -0.993032 + }, + { + "surface": "恥じる", + "readging": "はじる", + "pos": "動詞", + "pn": -0.993033 + }, + { + "surface": "忙しい", + "readging": "いそがしい", + "pos": "形容詞", + "pn": -0.993042 + }, + { + "surface": "飽きっぽい", + "readging": "あきっぽい", + "pos": "形容詞", + "pn": -0.993042 + }, + { + "surface": "頭痛", + "readging": "ずつう", + "pos": "名詞", + "pn": -0.99305 + }, + { + "surface": "緩怠", + "readging": "かんたい", + "pos": "名詞", + "pn": -0.993058 + }, + { + "surface": "連鎖状球菌", + "readging": "れんさじょうきゅうきん", + "pos": "名詞", + "pn": -0.99306 + }, + { + "surface": "蝕む", + "readging": "むしばむ", + "pos": "動詞", + "pn": -0.993064 + }, + { + "surface": "鬱陶しい", + "readging": "うっとうしい", + "pos": "形容詞", + "pn": -0.993064 + }, + { + "surface": "二豎", + "readging": "にじゅ", + "pos": "名詞", + "pn": -0.993067 + }, + { + "surface": "所労", + "readging": "しょろう", + "pos": "名詞", + "pn": -0.993067 + }, + { + "surface": "欠損", + "readging": "けっそん", + "pos": "名詞", + "pn": -0.993078 + }, + { + "surface": "垂死", + "readging": "すいし", + "pos": "名詞", + "pn": -0.993096 + }, + { + "surface": "蕩心", + "readging": "とうしん", + "pos": "名詞", + "pn": -0.993101 + }, + { + "surface": "呪", + "readging": "のろい", + "pos": "名詞", + "pn": -0.993102 + }, + { + "surface": "頓死", + "readging": "とんし", + "pos": "名詞", + "pn": -0.993108 + }, + { + "surface": "てんでに", + "readging": "てんでに", + "pos": "副詞", + "pn": -0.993112 + }, + { + "surface": "傲然", + "readging": "ごうぜん", + "pos": "名詞", + "pn": -0.993112 + }, + { + "surface": "物の気", + "readging": "もののけ", + "pos": "名詞", + "pn": -0.993113 + }, + { + "surface": "凶作", + "readging": "きょうさく", + "pos": "名詞", + "pn": -0.993116 + }, + { + "surface": "黒内障", + "readging": "こくないしょう", + "pos": "名詞", + "pn": -0.993132 + }, + { + "surface": "疾病", + "readging": "しっぺい", + "pos": "名詞", + "pn": -0.99314 + }, + { + "surface": "紅蓮地獄", + "readging": "ぐれんじごく", + "pos": "名詞", + "pn": -0.99314 + }, + { + "surface": "苦味", + "readging": "くみ", + "pos": "名詞", + "pn": -0.993143 + }, + { + "surface": "辛", + "readging": "しん", + "pos": "名詞", + "pn": -0.993152 + }, + { + "surface": "弱者", + "readging": "じゃくしゃ", + "pos": "名詞", + "pn": -0.993153 + }, + { + "surface": "八苦", + "readging": "はっく", + "pos": "名詞", + "pn": -0.993155 + }, + { + "surface": "仲違い", + "readging": "なかたがい", + "pos": "名詞", + "pn": -0.993159 + }, + { + "surface": "不治", + "readging": "ふち", + "pos": "名詞", + "pn": -0.993159 + }, + { + "surface": "不仲", + "readging": "ふなか", + "pos": "名詞", + "pn": -0.993162 + }, + { + "surface": "形無し", + "readging": "かたなし", + "pos": "名詞", + "pn": -0.993163 + }, + { + "surface": "荒", + "readging": "あら", + "pos": "名詞", + "pn": -0.993165 + }, + { + "surface": "よこしま", + "readging": "よこしま", + "pos": "名詞", + "pn": -0.99317 + }, + { + "surface": "顰蹙", + "readging": "ひんしゅく", + "pos": "名詞", + "pn": -0.993177 + }, + { + "surface": "虎刈", + "readging": "とらがり", + "pos": "名詞", + "pn": -0.993181 + }, + { + "surface": "害毒", + "readging": "がいどく", + "pos": "名詞", + "pn": -0.993184 + }, + { + "surface": "悪所", + "readging": "あくしょ", + "pos": "名詞", + "pn": -0.993193 + }, + { + "surface": "意気張り", + "readging": "いきはり", + "pos": "名詞", + "pn": -0.993197 + }, + { + "surface": "汚らわしい", + "readging": "けがらわしい", + "pos": "形容詞", + "pn": -0.993202 + }, + { + "surface": "虫気", + "readging": "むしけ", + "pos": "名詞", + "pn": -0.993204 + }, + { + "surface": "蜘蛛", + "readging": "くも", + "pos": "名詞", + "pn": -0.993207 + }, + { + "surface": "デメリット", + "readging": "デメリット", + "pos": "名詞", + "pn": -0.993217 + }, + { + "surface": "言いなり", + "readging": "いいなり", + "pos": "名詞", + "pn": -0.993222 + }, + { + "surface": "悪徳", + "readging": "あくとく", + "pos": "名詞", + "pn": -0.993222 + }, + { + "surface": "同病", + "readging": "どうびょう", + "pos": "名詞", + "pn": -0.993228 + }, + { + "surface": "苛政", + "readging": "かせい", + "pos": "名詞", + "pn": -0.993235 + }, + { + "surface": "悪形", + "readging": "あくがた", + "pos": "名詞", + "pn": -0.993238 + }, + { + "surface": "自恣", + "readging": "じし", + "pos": "名詞", + "pn": -0.993238 + }, + { + "surface": "揉める", + "readging": "もめる", + "pos": "動詞", + "pn": -0.993253 + }, + { + "surface": "窮地", + "readging": "きゅうち", + "pos": "名詞", + "pn": -0.993259 + }, + { + "surface": "奪略", + "readging": "だつりゃく", + "pos": "名詞", + "pn": -0.99326 + }, + { + "surface": "いがらっぽい", + "readging": "いがらっぽい", + "pos": "形容詞", + "pn": -0.993275 + }, + { + "surface": "不例", + "readging": "ふれい", + "pos": "名詞", + "pn": -0.993277 + }, + { + "surface": "非運", + "readging": "ひうん", + "pos": "名詞", + "pn": -0.99329 + }, + { + "surface": "飛語", + "readging": "ひご", + "pos": "名詞", + "pn": -0.993293 + }, + { + "surface": "ちゃち", + "readging": "ちゃち", + "pos": "名詞", + "pn": -0.9933 + }, + { + "surface": "じとじと", + "readging": "じとじと", + "pos": "副詞", + "pn": -0.993316 + }, + { + "surface": "吝い", + "readging": "しわい", + "pos": "形容詞", + "pn": -0.993329 + }, + { + "surface": "赤痢", + "readging": "せきり", + "pos": "名詞", + "pn": -0.993335 + }, + { + "surface": "塞ぎ込む", + "readging": "ふさぎこむ", + "pos": "動詞", + "pn": -0.993335 + }, + { + "surface": "懲りる", + "readging": "こりる", + "pos": "動詞", + "pn": -0.993337 + }, + { + "surface": "裏口", + "readging": "うらぐち", + "pos": "名詞", + "pn": -0.993347 + }, + { + "surface": "軽んずる", + "readging": "かろんずる", + "pos": "動詞", + "pn": -0.993355 + }, + { + "surface": "胴欲", + "readging": "どうよく", + "pos": "名詞", + "pn": -0.993355 + }, + { + "surface": "騒がせる", + "readging": "さわがせる", + "pos": "動詞", + "pn": -0.993357 + }, + { + "surface": "倒壊", + "readging": "とうかい", + "pos": "名詞", + "pn": -0.993363 + }, + { + "surface": "嫋嫋", + "readging": "じょうじょう", + "pos": "名詞", + "pn": -0.993364 + }, + { + "surface": "波風", + "readging": "なみかぜ", + "pos": "名詞", + "pn": -0.993367 + }, + { + "surface": "へぼ", + "readging": "へぼ", + "pos": "名詞", + "pn": -0.993367 + }, + { + "surface": "虚弱", + "readging": "きょじゃく", + "pos": "名詞", + "pn": -0.993369 + }, + { + "surface": "狭量", + "readging": "きょうりょう", + "pos": "名詞", + "pn": -0.993369 + }, + { + "surface": "売春", + "readging": "ばいしゅん", + "pos": "名詞", + "pn": -0.993377 + }, + { + "surface": "疱瘡", + "readging": "ほうそう", + "pos": "名詞", + "pn": -0.993382 + }, + { + "surface": "汚行", + "readging": "おこう", + "pos": "名詞", + "pn": -0.993393 + }, + { + "surface": "ねっちり", + "readging": "ねっちり", + "pos": "副詞", + "pn": -0.993396 + }, + { + "surface": "死所", + "readging": "しにどころ", + "pos": "名詞", + "pn": -0.993402 + }, + { + "surface": "極楽蜻蛉", + "readging": "ごくらくとんぼ", + "pos": "名詞", + "pn": -0.993402 + }, + { + "surface": "水臭い", + "readging": "みずくさい", + "pos": "形容詞", + "pn": -0.993403 + }, + { + "surface": "泥沼", + "readging": "どろぬま", + "pos": "名詞", + "pn": -0.99341 + }, + { + "surface": "讒謗", + "readging": "ざんぼう", + "pos": "名詞", + "pn": -0.993417 + }, + { + "surface": "誹謗", + "readging": "ひぼう", + "pos": "名詞", + "pn": -0.993418 + }, + { + "surface": "不満", + "readging": "ふまん", + "pos": "名詞", + "pn": -0.993428 + }, + { + "surface": "蕩ける", + "readging": "とろける", + "pos": "動詞", + "pn": -0.993437 + }, + { + "surface": "死する", + "readging": "しする", + "pos": "動詞", + "pn": -0.993439 + }, + { + "surface": "煩累", + "readging": "はんるい", + "pos": "名詞", + "pn": -0.993443 + }, + { + "surface": "難場", + "readging": "なんば", + "pos": "名詞", + "pn": -0.993447 + }, + { + "surface": "拙策", + "readging": "せっさく", + "pos": "名詞", + "pn": -0.99345 + }, + { + "surface": "憂身", + "readging": "うきみ", + "pos": "名詞", + "pn": -0.993455 + }, + { + "surface": "卑下", + "readging": "ひげ", + "pos": "名詞", + "pn": -0.993457 + }, + { + "surface": "微熱", + "readging": "びねつ", + "pos": "名詞", + "pn": -0.993459 + }, + { + "surface": "目", + "readging": "もく", + "pos": "名詞", + "pn": -0.993459 + }, + { + "surface": "毒づく", + "readging": "どくづく", + "pos": "動詞", + "pn": -0.993465 + }, + { + "surface": "依怙地", + "readging": "えこじ", + "pos": "名詞", + "pn": -0.993467 + }, + { + "surface": "キッチュ", + "readging": "キッチュ", + "pos": "名詞", + "pn": -0.993467 + }, + { + "surface": "ぐれる", + "readging": "ぐれる", + "pos": "動詞", + "pn": -0.993468 + }, + { + "surface": "荒夷", + "readging": "あらえびす", + "pos": "名詞", + "pn": -0.993481 + }, + { + "surface": "冷酷", + "readging": "れいこく", + "pos": "名詞", + "pn": -0.993497 + }, + { + "surface": "うら悲しい", + "readging": "うらがなしい", + "pos": "形容詞", + "pn": -0.993499 + }, + { + "surface": "粟立つ", + "readging": "あわだつ", + "pos": "動詞", + "pn": -0.993505 + }, + { + "surface": "咳", + "readging": "せき", + "pos": "名詞", + "pn": -0.99351 + }, + { + "surface": "口煩い", + "readging": "くちうるさい", + "pos": "形容詞", + "pn": -0.993513 + }, + { + "surface": "極道", + "readging": "ごくどう", + "pos": "名詞", + "pn": -0.993514 + }, + { + "surface": "挫ける", + "readging": "くじける", + "pos": "動詞", + "pn": -0.993515 + }, + { + "surface": "薄暗い", + "readging": "うすぐらい", + "pos": "形容詞", + "pn": -0.993518 + }, + { + "surface": "忌忌しい", + "readging": "いまいましい", + "pos": "形容詞", + "pn": -0.993521 + }, + { + "surface": "鈍物", + "readging": "どんぶつ", + "pos": "名詞", + "pn": -0.993521 + }, + { + "surface": "難題", + "readging": "なんだい", + "pos": "名詞", + "pn": -0.993525 + }, + { + "surface": "付け火", + "readging": "つけび", + "pos": "名詞", + "pn": -0.993527 + }, + { + "surface": "憎悪", + "readging": "ぞうお", + "pos": "名詞", + "pn": -0.993527 + }, + { + "surface": "阿鼻地獄", + "readging": "あびじごく", + "pos": "名詞", + "pn": -0.99353 + }, + { + "surface": "こんぐらかる", + "readging": "こんぐらかる", + "pos": "動詞", + "pn": -0.99353 + }, + { + "surface": "淪落", + "readging": "りんらく", + "pos": "名詞", + "pn": -0.993532 + }, + { + "surface": "艱難", + "readging": "かんなん", + "pos": "名詞", + "pn": -0.993535 + }, + { + "surface": "気遣う", + "readging": "きづかう", + "pos": "動詞", + "pn": -0.993537 + }, + { + "surface": "咎め", + "readging": "とがめ", + "pos": "名詞", + "pn": -0.993551 + }, + { + "surface": "種痘", + "readging": "しゅとう", + "pos": "名詞", + "pn": -0.993555 + }, + { + "surface": "怪しむ", + "readging": "あやしむ", + "pos": "動詞", + "pn": -0.993556 + }, + { + "surface": "悪役", + "readging": "あくやく", + "pos": "名詞", + "pn": -0.993556 + }, + { + "surface": "峻険", + "readging": "しゅんけん", + "pos": "名詞", + "pn": -0.993563 + }, + { + "surface": "性病", + "readging": "せいびょう", + "pos": "名詞", + "pn": -0.993564 + }, + { + "surface": "羨望", + "readging": "せんぼう", + "pos": "名詞", + "pn": -0.993565 + }, + { + "surface": "どやす", + "readging": "どやす", + "pos": "動詞", + "pn": -0.993566 + }, + { + "surface": "慇懃無礼", + "readging": "いんぎんぶれい", + "pos": "名詞", + "pn": -0.993568 + }, + { + "surface": "リューマチ", + "readging": "リューマチ", + "pos": "名詞", + "pn": -0.993579 + }, + { + "surface": "心残り", + "readging": "こころのこり", + "pos": "名詞", + "pn": -0.993586 + }, + { + "surface": "土左衛門", + "readging": "どざえもん", + "pos": "名詞", + "pn": -0.993588 + }, + { + "surface": "七面倒臭い", + "readging": "しちめんどうくさい", + "pos": "形容詞", + "pn": -0.993593 + }, + { + "surface": "癪", + "readging": "しゃく", + "pos": "名詞", + "pn": -0.9936 + }, + { + "surface": "愚案", + "readging": "ぐあん", + "pos": "名詞", + "pn": -0.9936 + }, + { + "surface": "人畜", + "readging": "じんちく", + "pos": "名詞", + "pn": -0.99361 + }, + { + "surface": "低下", + "readging": "ていか", + "pos": "名詞", + "pn": -0.993621 + }, + { + "surface": "呻く", + "readging": "うめく", + "pos": "動詞", + "pn": -0.993624 + }, + { + "surface": "不評", + "readging": "ふひょう", + "pos": "名詞", + "pn": -0.993625 + }, + { + "surface": "呪", + "readging": "じゅ", + "pos": "名詞", + "pn": -0.993629 + }, + { + "surface": "短所", + "readging": "たんしょ", + "pos": "名詞", + "pn": -0.993631 + }, + { + "surface": "拙い", + "readging": "つたない", + "pos": "形容詞", + "pn": -0.993632 + }, + { + "surface": "絶え入る", + "readging": "たえいる", + "pos": "動詞", + "pn": -0.993636 + }, + { + "surface": "駄句", + "readging": "だく", + "pos": "名詞", + "pn": -0.993639 + }, + { + "surface": "愚鈍", + "readging": "ぐどん", + "pos": "名詞", + "pn": -0.993644 + }, + { + "surface": "業突張り", + "readging": "ごうつくばり", + "pos": "名詞", + "pn": -0.99365 + }, + { + "surface": "峻", + "readging": "しゅん", + "pos": "名詞", + "pn": -0.993653 + }, + { + "surface": "拗ね者", + "readging": "すねもの", + "pos": "名詞", + "pn": -0.993657 + }, + { + "surface": "溺れ死", + "readging": "おぼれじに", + "pos": "名詞", + "pn": -0.993657 + }, + { + "surface": "狭隘", + "readging": "きょうあい", + "pos": "名詞", + "pn": -0.993661 + }, + { + "surface": "しゃしゃり出る", + "readging": "しゃしゃりでる", + "pos": "動詞", + "pn": -0.993665 + }, + { + "surface": "けだるい", + "readging": "けだるい", + "pos": "形容詞", + "pn": -0.993669 + }, + { + "surface": "毒毒しい", + "readging": "どくどくしい", + "pos": "形容詞", + "pn": -0.99367 + }, + { + "surface": "性悪", + "readging": "せいあく", + "pos": "名詞", + "pn": -0.993671 + }, + { + "surface": "重傷", + "readging": "じゅうしょう", + "pos": "名詞", + "pn": -0.993675 + }, + { + "surface": "首謀", + "readging": "しゅぼう", + "pos": "名詞", + "pn": -0.993679 + }, + { + "surface": "貧苦", + "readging": "ひんく", + "pos": "名詞", + "pn": -0.993679 + }, + { + "surface": "花柳病", + "readging": "かりゅうびょう", + "pos": "名詞", + "pn": -0.993682 + }, + { + "surface": "溺死", + "readging": "できし", + "pos": "名詞", + "pn": -0.993685 + }, + { + "surface": "無調法", + "readging": "ぶちょうほう", + "pos": "名詞", + "pn": -0.993686 + }, + { + "surface": "鼠毒症", + "readging": "そどくしょう", + "pos": "名詞", + "pn": -0.993689 + }, + { + "surface": "怖じ気付く", + "readging": "おじけ", + "pos": "動詞", + "pn": -0.99369 + }, + { + "surface": "虚伝", + "readging": "きょでん", + "pos": "名詞", + "pn": -0.993692 + }, + { + "surface": "せせこましい", + "readging": "せせこましい", + "pos": "形容詞", + "pn": -0.993694 + }, + { + "surface": "一荒れ", + "readging": "ひとあれ", + "pos": "名詞", + "pn": -0.993701 + }, + { + "surface": "零す", + "readging": "こぼす", + "pos": "動詞", + "pn": -0.993702 + }, + { + "surface": "厳寒", + "readging": "げんかん", + "pos": "名詞", + "pn": -0.993706 + }, + { + "surface": "弔詞", + "readging": "ちょうし", + "pos": "名詞", + "pn": -0.993707 + }, + { + "surface": "袁彦道", + "readging": "えんげんどう", + "pos": "名詞", + "pn": -0.993713 + }, + { + "surface": "瀕死", + "readging": "ひんし", + "pos": "名詞", + "pn": -0.993717 + }, + { + "surface": "閉塞", + "readging": "へいそく", + "pos": "名詞", + "pn": -0.993725 + }, + { + "surface": "僅か", + "readging": "わずか", + "pos": "副詞", + "pn": -0.993728 + }, + { + "surface": "食べ汚し", + "readging": "たべよごし", + "pos": "名詞", + "pn": -0.99373 + }, + { + "surface": "手酷い", + "readging": "てひどい", + "pos": "形容詞", + "pn": -0.99373 + }, + { + "surface": "面倒臭い", + "readging": "めんどうくさい", + "pos": "形容詞", + "pn": -0.993737 + }, + { + "surface": "狂犬", + "readging": "きょうけん", + "pos": "名詞", + "pn": -0.993737 + }, + { + "surface": "贋物", + "readging": "がんぶつ", + "pos": "名詞", + "pn": -0.993743 + }, + { + "surface": "か細い", + "readging": "かぼそい", + "pos": "形容詞", + "pn": -0.993747 + }, + { + "surface": "誤謬", + "readging": "ごびゅう", + "pos": "名詞", + "pn": -0.993749 + }, + { + "surface": "悪洒落", + "readging": "わるじゃれ", + "pos": "名詞", + "pn": -0.993749 + }, + { + "surface": "AIDS", + "readging": "エイズ", + "pos": "名詞", + "pn": -0.99375 + }, + { + "surface": "降る", + "readging": "ふる", + "pos": "動詞", + "pn": -0.993756 + }, + { + "surface": "重荷", + "readging": "おもに", + "pos": "名詞", + "pn": -0.993765 + }, + { + "surface": "残虐", + "readging": "ざんぎゃく", + "pos": "名詞", + "pn": -0.993765 + }, + { + "surface": "敢無い", + "readging": "あえない", + "pos": "形容詞", + "pn": -0.993769 + }, + { + "surface": "後悔", + "readging": "こうかい", + "pos": "名詞", + "pn": -0.993771 + }, + { + "surface": "ごねる", + "readging": "ごねる", + "pos": "動詞", + "pn": -0.993773 + }, + { + "surface": "寝汗", + "readging": "ねあせ", + "pos": "名詞", + "pn": -0.993774 + }, + { + "surface": "腐れ", + "readging": "くされ", + "pos": "名詞", + "pn": -0.993776 + }, + { + "surface": "重たい", + "readging": "おもたい", + "pos": "形容詞", + "pn": -0.993777 + }, + { + "surface": "囚徒", + "readging": "しゅうと", + "pos": "名詞", + "pn": -0.993782 + }, + { + "surface": "つんつん", + "readging": "つんつん", + "pos": "副詞", + "pn": -0.993786 + }, + { + "surface": "軟弱", + "readging": "なんじゃく", + "pos": "名詞", + "pn": -0.993794 + }, + { + "surface": "恩讎", + "readging": "おんしゅう", + "pos": "名詞", + "pn": -0.993794 + }, + { + "surface": "悪玉", + "readging": "あくだま", + "pos": "名詞", + "pn": -0.993794 + }, + { + "surface": "傷口", + "readging": "きずぐち", + "pos": "名詞", + "pn": -0.993798 + }, + { + "surface": "火遊び", + "readging": "ひあそび", + "pos": "名詞", + "pn": -0.993799 + }, + { + "surface": "八熱地獄", + "readging": "はちねつじごく", + "pos": "名詞", + "pn": -0.99381 + }, + { + "surface": "俗っぽい", + "readging": "ぞくっぽい", + "pos": "形容詞", + "pn": -0.993811 + }, + { + "surface": "磔刑", + "readging": "たっけい", + "pos": "名詞", + "pn": -0.993815 + }, + { + "surface": "悪質", + "readging": "あくしつ", + "pos": "名詞", + "pn": -0.993818 + }, + { + "surface": "鈍才", + "readging": "どんさい", + "pos": "名詞", + "pn": -0.993819 + }, + { + "surface": "苦悶", + "readging": "くもん", + "pos": "名詞", + "pn": -0.99382 + }, + { + "surface": "安っぽい", + "readging": "やすっぽい", + "pos": "形容詞", + "pn": -0.993821 + }, + { + "surface": "干からびる", + "readging": "ひからびる", + "pos": "動詞", + "pn": -0.993827 + }, + { + "surface": "きざっぽい", + "readging": "きざっぽい", + "pos": "形容詞", + "pn": -0.993827 + }, + { + "surface": "凍てつく", + "readging": "いてつく", + "pos": "動詞", + "pn": -0.993831 + }, + { + "surface": "漫罵", + "readging": "まんば", + "pos": "名詞", + "pn": -0.993836 + }, + { + "surface": "引く", + "readging": "ひく", + "pos": "動詞", + "pn": -0.993837 + }, + { + "surface": "荒れ野", + "readging": "あれの", + "pos": "名詞", + "pn": -0.993843 + }, + { + "surface": "炎暑", + "readging": "えんしょ", + "pos": "名詞", + "pn": -0.993846 + }, + { + "surface": "憎らしい", + "readging": "にくらしい", + "pos": "形容詞", + "pn": -0.993848 + }, + { + "surface": "アデノイド", + "readging": "アデノイド", + "pos": "名詞", + "pn": -0.993856 + }, + { + "surface": "ごてごて", + "readging": "ごてごて", + "pos": "副詞", + "pn": -0.993866 + }, + { + "surface": "心弱い", + "readging": "こころよわい", + "pos": "形容詞", + "pn": -0.993867 + }, + { + "surface": "荒ぶ", + "readging": "すさぶ", + "pos": "動詞", + "pn": -0.993872 + }, + { + "surface": "難しい", + "readging": "むつかしい", + "pos": "形容詞", + "pn": -0.993878 + }, + { + "surface": "対立", + "readging": "たいりつ", + "pos": "名詞", + "pn": -0.99388 + }, + { + "surface": "差障り", + "readging": "さしさわり", + "pos": "名詞", + "pn": -0.993889 + }, + { + "surface": "酷遇", + "readging": "こくぐう", + "pos": "名詞", + "pn": -0.993902 + }, + { + "surface": "取っちめる", + "readging": "とっちめる", + "pos": "動詞", + "pn": -0.993904 + }, + { + "surface": "悪気", + "readging": "わるぎ", + "pos": "名詞", + "pn": -0.993905 + }, + { + "surface": "物騒がしい", + "readging": "ものさわがしい", + "pos": "形容詞", + "pn": -0.993908 + }, + { + "surface": "おっかない", + "readging": "おっかない", + "pos": "形容詞", + "pn": -0.993913 + }, + { + "surface": "弄火", + "readging": "ろうか", + "pos": "名詞", + "pn": -0.993915 + }, + { + "surface": "煩悶", + "readging": "はんもん", + "pos": "名詞", + "pn": -0.993915 + }, + { + "surface": "痃癖", + "readging": "けんぺき", + "pos": "名詞", + "pn": -0.993915 + }, + { + "surface": "溺らす", + "readging": "おぼらす", + "pos": "動詞", + "pn": -0.993917 + }, + { + "surface": "尖り声", + "readging": "とがりごえ", + "pos": "名詞", + "pn": -0.993922 + }, + { + "surface": "青息吐息", + "readging": "あおいきといき", + "pos": "名詞", + "pn": -0.993923 + }, + { + "surface": "罪悪", + "readging": "ざいあく", + "pos": "名詞", + "pn": -0.993932 + }, + { + "surface": "瞋恚", + "readging": "しんい", + "pos": "名詞", + "pn": -0.993946 + }, + { + "surface": "劣等", + "readging": "れっとう", + "pos": "名詞", + "pn": -0.993948 + }, + { + "surface": "足掻く", + "readging": "あがく", + "pos": "動詞", + "pn": -0.993959 + }, + { + "surface": "糞尿", + "readging": "ふんにょう", + "pos": "名詞", + "pn": -0.993961 + }, + { + "surface": "跡", + "readging": "あと", + "pos": "名詞", + "pn": -0.993963 + }, + { + "surface": "陰謀", + "readging": "いんぼう", + "pos": "名詞", + "pn": -0.993963 + }, + { + "surface": "みっともない", + "readging": "みっともない", + "pos": "形容詞", + "pn": -0.993967 + }, + { + "surface": "苦衷", + "readging": "くちゅう", + "pos": "名詞", + "pn": -0.993969 + }, + { + "surface": "不体裁", + "readging": "ふていさい", + "pos": "名詞", + "pn": -0.99397 + }, + { + "surface": "狡知", + "readging": "こうち", + "pos": "名詞", + "pn": -0.993971 + }, + { + "surface": "雑言", + "readging": "ぞうごん", + "pos": "名詞", + "pn": -0.993983 + }, + { + "surface": "たどたどしい", + "readging": "たどたどしい", + "pos": "形容詞", + "pn": -0.993985 + }, + { + "surface": "酔っ払う", + "readging": "よっぱらう", + "pos": "動詞", + "pn": -0.993988 + }, + { + "surface": "平謝り", + "readging": "ひらあやまり", + "pos": "名詞", + "pn": -0.993991 + }, + { + "surface": "暗君", + "readging": "あんくん", + "pos": "名詞", + "pn": -0.993995 + }, + { + "surface": "ペナルティー", + "readging": "ペナルティー", + "pos": "名詞", + "pn": -0.993996 + }, + { + "surface": "忌", + "readging": "き", + "pos": "名詞", + "pn": -0.994003 + }, + { + "surface": "気疎い", + "readging": "けうとい", + "pos": "形容詞", + "pn": -0.994006 + }, + { + "surface": "病弱", + "readging": "びょうじゃく", + "pos": "名詞", + "pn": -0.994007 + }, + { + "surface": "ややこしい", + "readging": "ややこしい", + "pos": "形容詞", + "pn": -0.994015 + }, + { + "surface": "脱漏", + "readging": "だつろう", + "pos": "名詞", + "pn": -0.994022 + }, + { + "surface": "酷薄", + "readging": "こくはく", + "pos": "名詞", + "pn": -0.994028 + }, + { + "surface": "こうまん", + "readging": "こうまんちき", + "pos": "名詞", + "pn": -0.994028 + }, + { + "surface": "えぐい", + "readging": "えぐい", + "pos": "形容詞", + "pn": -0.994033 + }, + { + "surface": "死水", + "readging": "しにみず", + "pos": "名詞", + "pn": -0.994046 + }, + { + "surface": "愚策", + "readging": "ぐさく", + "pos": "名詞", + "pn": -0.994047 + }, + { + "surface": "恨めしい", + "readging": "うらめしい", + "pos": "形容詞", + "pn": -0.994049 + }, + { + "surface": "如何わしい", + "readging": "いかがわしい", + "pos": "形容詞", + "pn": -0.994051 + }, + { + "surface": "わやく", + "readging": "わやく", + "pos": "名詞", + "pn": -0.994063 + }, + { + "surface": "目くじら", + "readging": "めくじら", + "pos": "名詞", + "pn": -0.994063 + }, + { + "surface": "残り惜しい", + "readging": "のこりおしい", + "pos": "形容詞", + "pn": -0.994068 + }, + { + "surface": "悪声", + "readging": "あくせい", + "pos": "名詞", + "pn": -0.994077 + }, + { + "surface": "暴戻", + "readging": "ぼうれい", + "pos": "名詞", + "pn": -0.994081 + }, + { + "surface": "どぎつい", + "readging": "どぎつい", + "pos": "形容詞", + "pn": -0.994083 + }, + { + "surface": "懲戒", + "readging": "ちょうかい", + "pos": "名詞", + "pn": -0.994087 + }, + { + "surface": "揉み手", + "readging": "もみで", + "pos": "名詞", + "pn": -0.99409 + }, + { + "surface": "意地汚い", + "readging": "いじきたない", + "pos": "形容詞", + "pn": -0.994091 + }, + { + "surface": "蕩児", + "readging": "とうじ", + "pos": "名詞", + "pn": -0.994093 + }, + { + "surface": "病魔", + "readging": "びょうま", + "pos": "名詞", + "pn": -0.994097 + }, + { + "surface": "肥溜", + "readging": "こえだめ", + "pos": "名詞", + "pn": -0.9941 + }, + { + "surface": "暴れる", + "readging": "あばれる", + "pos": "動詞", + "pn": -0.994103 + }, + { + "surface": "恥しい", + "readging": "はずかしい", + "pos": "形容詞", + "pn": -0.994113 + }, + { + "surface": "為損なう", + "readging": "しそこなう", + "pos": "動詞", + "pn": -0.994115 + }, + { + "surface": "蒼白", + "readging": "そうはく", + "pos": "名詞", + "pn": -0.994118 + }, + { + "surface": "疫病", + "readging": "やくびょう", + "pos": "名詞", + "pn": -0.994132 + }, + { + "surface": "こそばゆい", + "readging": "こそばゆい", + "pos": "形容詞", + "pn": -0.994142 + }, + { + "surface": "渋", + "readging": "じゅう", + "pos": "名詞", + "pn": -0.994146 + }, + { + "surface": "裂け痔", + "readging": "さけじ", + "pos": "名詞", + "pn": -0.99415 + }, + { + "surface": "ぶきっちょ", + "readging": "ぶきっちょ", + "pos": "名詞", + "pn": -0.994153 + }, + { + "surface": "緑林", + "readging": "りょくりん", + "pos": "名詞", + "pn": -0.994154 + }, + { + "surface": "見苦しい", + "readging": "みぐるしい", + "pos": "形容詞", + "pn": -0.994158 + }, + { + "surface": "病褥", + "readging": "びょうじょく", + "pos": "名詞", + "pn": -0.994159 + }, + { + "surface": "焦慮", + "readging": "しょうりょ", + "pos": "名詞", + "pn": -0.994169 + }, + { + "surface": "卑語", + "readging": "ひご", + "pos": "名詞", + "pn": -0.994182 + }, + { + "surface": "酸っぱい", + "readging": "すっぱい", + "pos": "形容詞", + "pn": -0.994188 + }, + { + "surface": "腐す", + "readging": "くさす", + "pos": "動詞", + "pn": -0.994189 + }, + { + "surface": "しんどい", + "readging": "しんどい", + "pos": "形容詞", + "pn": -0.994197 + }, + { + "surface": "嫌がらせ", + "readging": "いやがらせ", + "pos": "名詞", + "pn": -0.994197 + }, + { + "surface": "苦苦しい", + "readging": "にがにがしい", + "pos": "形容詞", + "pn": -0.9942 + }, + { + "surface": "長病み", + "readging": "ながやみ", + "pos": "名詞", + "pn": -0.994206 + }, + { + "surface": "佞奸", + "readging": "ねいかん", + "pos": "名詞", + "pn": -0.994211 + }, + { + "surface": "危殆", + "readging": "きたい", + "pos": "名詞", + "pn": -0.99423 + }, + { + "surface": "毒舌", + "readging": "どくぜつ", + "pos": "名詞", + "pn": -0.994239 + }, + { + "surface": "狡賢い", + "readging": "ずるがしこい", + "pos": "形容詞", + "pn": -0.994241 + }, + { + "surface": "疝気筋", + "readging": "せんきすじ", + "pos": "名詞", + "pn": -0.99425 + }, + { + "surface": "呆気", + "readging": "あっけ", + "pos": "名詞", + "pn": -0.994251 + }, + { + "surface": "虐政", + "readging": "ぎゃくせい", + "pos": "名詞", + "pn": -0.994252 + }, + { + "surface": "どら", + "readging": "どら", + "pos": "名詞", + "pn": -0.994262 + }, + { + "surface": "仮病", + "readging": "けびょう", + "pos": "名詞", + "pn": -0.994268 + }, + { + "surface": "愚問", + "readging": "ぐもん", + "pos": "名詞", + "pn": -0.99427 + }, + { + "surface": "危うい", + "readging": "あやうい", + "pos": "形容詞", + "pn": -0.994272 + }, + { + "surface": "けちん坊", + "readging": "けちんぼう", + "pos": "名詞", + "pn": -0.994276 + }, + { + "surface": "後ろめたい", + "readging": "うしろめたい", + "pos": "形容詞", + "pn": -0.994292 + }, + { + "surface": "鈍つく", + "readging": "どんつく", + "pos": "名詞", + "pn": -0.994296 + }, + { + "surface": "啀み合う", + "readging": "いがみあう", + "pos": "動詞", + "pn": -0.994306 + }, + { + "surface": "悪行", + "readging": "あっこう", + "pos": "名詞", + "pn": -0.994309 + }, + { + "surface": "愚かしい", + "readging": "おろかしい", + "pos": "形容詞", + "pn": -0.99431 + }, + { + "surface": "惨苦", + "readging": "さんく", + "pos": "名詞", + "pn": -0.99432 + }, + { + "surface": "狂犬病", + "readging": "きょうけんびょう", + "pos": "名詞", + "pn": -0.994333 + }, + { + "surface": "串刺", + "readging": "くしざし", + "pos": "名詞", + "pn": -0.994336 + }, + { + "surface": "潰し", + "readging": "つぶし", + "pos": "名詞", + "pn": -0.994344 + }, + { + "surface": "張る", + "readging": "はる", + "pos": "動詞", + "pn": -0.994357 + }, + { + "surface": "悲惨", + "readging": "ひさん", + "pos": "名詞", + "pn": -0.994365 + }, + { + "surface": "貶する", + "readging": "へんする", + "pos": "動詞", + "pn": -0.994365 + }, + { + "surface": "醜態", + "readging": "しゅうたい", + "pos": "名詞", + "pn": -0.994369 + }, + { + "surface": "剣突", + "readging": "けんつく", + "pos": "名詞", + "pn": -0.994372 + }, + { + "surface": "木菟入", + "readging": "ずくにゅう", + "pos": "名詞", + "pn": -0.994377 + }, + { + "surface": "掠める", + "readging": "かすめる", + "pos": "動詞", + "pn": -0.99438 + }, + { + "surface": "痩せ腕", + "readging": "やせうで", + "pos": "名詞", + "pn": -0.99438 + }, + { + "surface": "悪評", + "readging": "あくひょう", + "pos": "名詞", + "pn": -0.994383 + }, + { + "surface": "悪政", + "readging": "あくせい", + "pos": "名詞", + "pn": -0.994383 + }, + { + "surface": "憔悴", + "readging": "しょうすい", + "pos": "名詞", + "pn": -0.994384 + }, + { + "surface": "貪婪", + "readging": "どんらん", + "pos": "名詞", + "pn": -0.994384 + }, + { + "surface": "邪気", + "readging": "じゃき", + "pos": "名詞", + "pn": -0.994401 + }, + { + "surface": "銀流し", + "readging": "ぎんながし", + "pos": "名詞", + "pn": -0.994401 + }, + { + "surface": "荒涼", + "readging": "こうりょう", + "pos": "名詞", + "pn": -0.994407 + }, + { + "surface": "勘繰る", + "readging": "かんぐる", + "pos": "動詞", + "pn": -0.994419 + }, + { + "surface": "焦れ込む", + "readging": "じれこむ", + "pos": "動詞", + "pn": -0.994425 + }, + { + "surface": "甘んじる", + "readging": "あまんじる", + "pos": "動詞", + "pn": -0.994427 + }, + { + "surface": "憂い", + "readging": "うれい", + "pos": "形容詞", + "pn": -0.994429 + }, + { + "surface": "難所", + "readging": "なんしょ", + "pos": "名詞", + "pn": -0.994429 + }, + { + "surface": "悪霊", + "readging": "あくりょう", + "pos": "名詞", + "pn": -0.994432 + }, + { + "surface": "凶行", + "readging": "きょうこう", + "pos": "名詞", + "pn": -0.99444 + }, + { + "surface": "トラコーマ", + "readging": "トラコーマ", + "pos": "名詞", + "pn": -0.99444 + }, + { + "surface": "幼稚", + "readging": "ようち", + "pos": "名詞", + "pn": -0.99444 + }, + { + "surface": "逆縁", + "readging": "ぎゃくえん", + "pos": "名詞", + "pn": -0.994447 + }, + { + "surface": "浅ましい", + "readging": "あさましい", + "pos": "形容詞", + "pn": -0.994455 + }, + { + "surface": "苦悩", + "readging": "くのう", + "pos": "名詞", + "pn": -0.994456 + }, + { + "surface": "憂", + "readging": "ゆう", + "pos": "名詞", + "pn": -0.994465 + }, + { + "surface": "威嚇", + "readging": "いかく", + "pos": "名詞", + "pn": -0.994469 + }, + { + "surface": "萎れる", + "readging": "しおれる", + "pos": "動詞", + "pn": -0.994471 + }, + { + "surface": "憎い", + "readging": "にくい", + "pos": "形容詞", + "pn": -0.994474 + }, + { + "surface": "侘しい", + "readging": "わびしい", + "pos": "形容詞", + "pn": -0.994507 + }, + { + "surface": "不利", + "readging": "ふり", + "pos": "名詞", + "pn": -0.99452 + }, + { + "surface": "足摺り", + "readging": "あしずり", + "pos": "名詞", + "pn": -0.99452 + }, + { + "surface": "焦熱地獄", + "readging": "しょうねつじごく", + "pos": "名詞", + "pn": -0.994525 + }, + { + "surface": "有象無象", + "readging": "うぞうむぞう", + "pos": "名詞", + "pn": -0.994529 + }, + { + "surface": "癇", + "readging": "かん", + "pos": "名詞", + "pn": -0.994529 + }, + { + "surface": "不完全", + "readging": "ふかんぜん", + "pos": "名詞", + "pn": -0.994542 + }, + { + "surface": "拙作", + "readging": "せっさく", + "pos": "名詞", + "pn": -0.994543 + }, + { + "surface": "愚作", + "readging": "ぐさく", + "pos": "名詞", + "pn": -0.994552 + }, + { + "surface": "騒がす", + "readging": "さわがす", + "pos": "動詞", + "pn": -0.994554 + }, + { + "surface": "小突く", + "readging": "こづく", + "pos": "動詞", + "pn": -0.994559 + }, + { + "surface": "びっしょり", + "readging": "びっしょり", + "pos": "副詞", + "pn": -0.994559 + }, + { + "surface": "不機嫌", + "readging": "ふきげん", + "pos": "名詞", + "pn": -0.994571 + }, + { + "surface": "鐚銭", + "readging": "びたせん", + "pos": "名詞", + "pn": -0.994573 + }, + { + "surface": "下策", + "readging": "げさく", + "pos": "名詞", + "pn": -0.994573 + }, + { + "surface": "いけ図図しい", + "readging": "いけずうずうしい", + "pos": "形容詞", + "pn": -0.994582 + }, + { + "surface": "意気消沈", + "readging": "いきしょうちん", + "pos": "名詞", + "pn": -0.994584 + }, + { + "surface": "醜業", + "readging": "しゅうぎょう", + "pos": "名詞", + "pn": -0.994586 + }, + { + "surface": "間隙", + "readging": "かんげき", + "pos": "名詞", + "pn": -0.994593 + }, + { + "surface": "蠱惑", + "readging": "こわく", + "pos": "名詞", + "pn": -0.994595 + }, + { + "surface": "僻", + "readging": "へき", + "pos": "名詞", + "pn": -0.994599 + }, + { + "surface": "大風", + "readging": "おおかぜ", + "pos": "名詞", + "pn": -0.994602 + }, + { + "surface": "餓死", + "readging": "がし", + "pos": "名詞", + "pn": -0.994603 + }, + { + "surface": "悲嘆", + "readging": "ひたん", + "pos": "名詞", + "pn": -0.994606 + }, + { + "surface": "いけ好かない", + "readging": "いけすかない", + "pos": "形容詞", + "pn": -0.994607 + }, + { + "surface": "とんま", + "readging": "とんま", + "pos": "名詞", + "pn": -0.994612 + }, + { + "surface": "溜飲", + "readging": "りゅういん", + "pos": "名詞", + "pn": -0.994624 + }, + { + "surface": "憤慨", + "readging": "ふんがい", + "pos": "名詞", + "pn": -0.994626 + }, + { + "surface": "暗弱", + "readging": "あんじゃく", + "pos": "名詞", + "pn": -0.994633 + }, + { + "surface": "惨烈", + "readging": "さんれつ", + "pos": "名詞", + "pn": -0.994645 + }, + { + "surface": "岨道", + "readging": "そばみち", + "pos": "名詞", + "pn": -0.994654 + }, + { + "surface": "強いる", + "readging": "しいる", + "pos": "動詞", + "pn": -0.994655 + }, + { + "surface": "阿婆擦れ", + "readging": "あばずれ", + "pos": "名詞", + "pn": -0.994656 + }, + { + "surface": "面当て", + "readging": "つらあて", + "pos": "名詞", + "pn": -0.994659 + }, + { + "surface": "アクシデント", + "readging": "アクシデント", + "pos": "名詞", + "pn": -0.994661 + }, + { + "surface": "がみがみ", + "readging": "がみがみ", + "pos": "副詞", + "pn": -0.994667 + }, + { + "surface": "死人", + "readging": "しびと", + "pos": "名詞", + "pn": -0.994672 + }, + { + "surface": "圧迫", + "readging": "あっぱく", + "pos": "名詞", + "pn": -0.994673 + }, + { + "surface": "うろたえる", + "readging": "うろたえる", + "pos": "動詞", + "pn": -0.994677 + }, + { + "surface": "残り多い", + "readging": "のこりおおい", + "pos": "形容詞", + "pn": -0.994685 + }, + { + "surface": "専横", + "readging": "せんおう", + "pos": "名詞", + "pn": -0.994686 + }, + { + "surface": "不和", + "readging": "ふわ", + "pos": "名詞", + "pn": -0.994686 + }, + { + "surface": "露", + "readging": "ろ", + "pos": "名詞", + "pn": -0.994694 + }, + { + "surface": "逆上せる", + "readging": "のぼせる", + "pos": "動詞", + "pn": -0.994701 + }, + { + "surface": "汗みずく", + "readging": "あせみずく", + "pos": "名詞", + "pn": -0.994702 + }, + { + "surface": "怠惰", + "readging": "たいだ", + "pos": "名詞", + "pn": -0.994706 + }, + { + "surface": "トラホーム", + "readging": "トラホーム", + "pos": "名詞", + "pn": -0.994714 + }, + { + "surface": "噎せ返る", + "readging": "むせかえる", + "pos": "動詞", + "pn": -0.994727 + }, + { + "surface": "孤灯", + "readging": "ことう", + "pos": "名詞", + "pn": -0.994729 + }, + { + "surface": "地団太", + "readging": "じだんだ", + "pos": "名詞", + "pn": -0.994733 + }, + { + "surface": "寒気", + "readging": "さむけ", + "pos": "名詞", + "pn": -0.994737 + }, + { + "surface": "案ずる", + "readging": "あんずる", + "pos": "動詞", + "pn": -0.994738 + }, + { + "surface": "口惜しい", + "readging": "くちおしい", + "pos": "形容詞", + "pn": -0.994743 + }, + { + "surface": "屑", + "readging": "くず", + "pos": "名詞", + "pn": -0.994744 + }, + { + "surface": "ぶつぶつ", + "readging": "ぶつぶつ", + "pos": "副詞", + "pn": -0.994751 + }, + { + "surface": "つんと", + "readging": "つんと", + "pos": "副詞", + "pn": -0.994764 + }, + { + "surface": "愚暗", + "readging": "ぐあん", + "pos": "名詞", + "pn": -0.994767 + }, + { + "surface": "卑陋", + "readging": "ひろう", + "pos": "名詞", + "pn": -0.994773 + }, + { + "surface": "熱病", + "readging": "ねつびょう", + "pos": "名詞", + "pn": -0.994773 + }, + { + "surface": "黴びる", + "readging": "かびる", + "pos": "動詞", + "pn": -0.994779 + }, + { + "surface": "憂き節", + "readging": "うきふし", + "pos": "名詞", + "pn": -0.994789 + }, + { + "surface": "じとつく", + "readging": "じとつく", + "pos": "動詞", + "pn": -0.994789 + }, + { + "surface": "煩雑", + "readging": "はんざつ", + "pos": "名詞", + "pn": -0.994793 + }, + { + "surface": "悪者", + "readging": "わるもの", + "pos": "名詞", + "pn": -0.994793 + }, + { + "surface": "処罰", + "readging": "しょばつ", + "pos": "名詞", + "pn": -0.994798 + }, + { + "surface": "肺炎", + "readging": "はいえん", + "pos": "名詞", + "pn": -0.994805 + }, + { + "surface": "悪党", + "readging": "あくとう", + "pos": "名詞", + "pn": -0.994812 + }, + { + "surface": "奴輩", + "readging": "どはい", + "pos": "名詞", + "pn": -0.994814 + }, + { + "surface": "大盗", + "readging": "たいとう", + "pos": "名詞", + "pn": -0.994816 + }, + { + "surface": "徒情", + "readging": "あだなさけ", + "pos": "名詞", + "pn": -0.994821 + }, + { + "surface": "痔瘻", + "readging": "じろう", + "pos": "名詞", + "pn": -0.994823 + }, + { + "surface": "安手", + "readging": "やすで", + "pos": "名詞", + "pn": -0.994825 + }, + { + "surface": "難ずる", + "readging": "なんずる", + "pos": "動詞", + "pn": -0.994832 + }, + { + "surface": "緊迫", + "readging": "きんぱく", + "pos": "名詞", + "pn": -0.994832 + }, + { + "surface": "大目玉", + "readging": "おおめだま", + "pos": "名詞", + "pn": -0.994838 + }, + { + "surface": "讒", + "readging": "ざん", + "pos": "名詞", + "pn": -0.994844 + }, + { + "surface": "白内障", + "readging": "はくないしょう", + "pos": "名詞", + "pn": -0.994853 + }, + { + "surface": "悪性", + "readging": "あくしょう", + "pos": "名詞", + "pn": -0.994854 + }, + { + "surface": "忌わしい", + "readging": "いまわしい", + "pos": "形容詞", + "pn": -0.994859 + }, + { + "surface": "面映い", + "readging": "おもはゆい", + "pos": "形容詞", + "pn": -0.994862 + }, + { + "surface": "最悪", + "readging": "さいあく", + "pos": "名詞", + "pn": -0.994867 + }, + { + "surface": "虚聞", + "readging": "きょぶん", + "pos": "名詞", + "pn": -0.994879 + }, + { + "surface": "責苛む", + "readging": "せめさいなむ", + "pos": "動詞", + "pn": -0.994881 + }, + { + "surface": "病身", + "readging": "びょうしん", + "pos": "名詞", + "pn": -0.994883 + }, + { + "surface": "悪たれ", + "readging": "あくたれ", + "pos": "名詞", + "pn": -0.994883 + }, + { + "surface": "脅かす", + "readging": "おどかす", + "pos": "動詞", + "pn": -0.994888 + }, + { + "surface": "獄卒", + "readging": "ごくそつ", + "pos": "名詞", + "pn": -0.994896 + }, + { + "surface": "甚六", + "readging": "じんろく", + "pos": "名詞", + "pn": -0.994896 + }, + { + "surface": "儚い", + "readging": "はかない", + "pos": "形容詞", + "pn": -0.9949 + }, + { + "surface": "恥入る", + "readging": "はじいる", + "pos": "動詞", + "pn": -0.994906 + }, + { + "surface": "無精", + "readging": "ぶしょう", + "pos": "名詞", + "pn": -0.994916 + }, + { + "surface": "甘える", + "readging": "あまえる", + "pos": "動詞", + "pn": -0.994916 + }, + { + "surface": "殺生", + "readging": "せっしょう", + "pos": "名詞", + "pn": -0.994918 + }, + { + "surface": "疾しい", + "readging": "やましい", + "pos": "形容詞", + "pn": -0.994928 + }, + { + "surface": "堕落", + "readging": "だらく", + "pos": "名詞", + "pn": -0.99493 + }, + { + "surface": "暗主", + "readging": "あんしゅ", + "pos": "名詞", + "pn": -0.994933 + }, + { + "surface": "不幸", + "readging": "ふこう", + "pos": "名詞", + "pn": -0.994936 + }, + { + "surface": "肺病", + "readging": "はいびょう", + "pos": "名詞", + "pn": -0.994938 + }, + { + "surface": "隔靴掻痒", + "readging": "かっかそうよう", + "pos": "名詞", + "pn": -0.994939 + }, + { + "surface": "底抜け", + "readging": "そこぬけ", + "pos": "名詞", + "pn": -0.994941 + }, + { + "surface": "変事", + "readging": "へんじ", + "pos": "名詞", + "pn": -0.994941 + }, + { + "surface": "色情", + "readging": "しきじょう", + "pos": "名詞", + "pn": -0.994941 + }, + { + "surface": "囂しい", + "readging": "かまびすしい", + "pos": "形容詞", + "pn": -0.994952 + }, + { + "surface": "爺むさい", + "readging": "じじむさい", + "pos": "形容詞", + "pn": -0.994959 + }, + { + "surface": "取殺す", + "readging": "とりころす", + "pos": "動詞", + "pn": -0.994967 + }, + { + "surface": "奸智", + "readging": "かんち", + "pos": "名詞", + "pn": -0.994981 + }, + { + "surface": "僻む", + "readging": "ひがむ", + "pos": "動詞", + "pn": -0.994984 + }, + { + "surface": "悪罵", + "readging": "あくば", + "pos": "名詞", + "pn": -0.99499 + }, + { + "surface": "遣り合う", + "readging": "やりあう", + "pos": "動詞", + "pn": -0.99501 + }, + { + "surface": "痩せっぽち", + "readging": "やせっぽち", + "pos": "名詞", + "pn": -0.995012 + }, + { + "surface": "卑劣", + "readging": "ひれつ", + "pos": "名詞", + "pn": -0.995012 + }, + { + "surface": "怨念", + "readging": "おんねん", + "pos": "名詞", + "pn": -0.995012 + }, + { + "surface": "偽る", + "readging": "いつわる", + "pos": "動詞", + "pn": -0.995018 + }, + { + "surface": "擦傷", + "readging": "すりきず", + "pos": "名詞", + "pn": -0.995019 + }, + { + "surface": "食い意地", + "readging": "くいいじ", + "pos": "名詞", + "pn": -0.995033 + }, + { + "surface": "拙悪", + "readging": "せつあく", + "pos": "名詞", + "pn": -0.995036 + }, + { + "surface": "仰仰しい", + "readging": "ぎょうぎょうしい", + "pos": "形容詞", + "pn": -0.995047 + }, + { + "surface": "処分", + "readging": "しょぶん", + "pos": "名詞", + "pn": -0.995047 + }, + { + "surface": "祟", + "readging": "たたり", + "pos": "名詞", + "pn": -0.995054 + }, + { + "surface": "沈湎", + "readging": "ちんめん", + "pos": "名詞", + "pn": -0.995061 + }, + { + "surface": "急病", + "readging": "きゅうびょう", + "pos": "名詞", + "pn": -0.995061 + }, + { + "surface": "駄洒落", + "readging": "だじゃれ", + "pos": "名詞", + "pn": -0.995064 + }, + { + "surface": "胡散", + "readging": "うさん", + "pos": "名詞", + "pn": -0.995064 + }, + { + "surface": "眉唾物", + "readging": "まゆつばもの", + "pos": "名詞", + "pn": -0.995065 + }, + { + "surface": "無愛想", + "readging": "ぶあいそう", + "pos": "名詞", + "pn": -0.995069 + }, + { + "surface": "煩う", + "readging": "わずらう", + "pos": "動詞", + "pn": -0.995079 + }, + { + "surface": "厚顔", + "readging": "こうがん", + "pos": "名詞", + "pn": -0.995089 + }, + { + "surface": "狡い", + "readging": "こすい", + "pos": "形容詞", + "pn": -0.995095 + }, + { + "surface": "狡っ辛い", + "readging": "こすっからい", + "pos": "形容詞", + "pn": -0.995095 + }, + { + "surface": "物取り", + "readging": "ものとり", + "pos": "名詞", + "pn": -0.995101 + }, + { + "surface": "荒原", + "readging": "こうげん", + "pos": "名詞", + "pn": -0.995119 + }, + { + "surface": "厳罰", + "readging": "げんばつ", + "pos": "名詞", + "pn": -0.995123 + }, + { + "surface": "厳科", + "readging": "げんか", + "pos": "名詞", + "pn": -0.995123 + }, + { + "surface": "忌日", + "readging": "きにち", + "pos": "名詞", + "pn": -0.995124 + }, + { + "surface": "辱める", + "readging": "はずかしめる", + "pos": "動詞", + "pn": -0.995128 + }, + { + "surface": "汚物", + "readging": "おぶつ", + "pos": "名詞", + "pn": -0.995133 + }, + { + "surface": "厚かましい", + "readging": "あつかましい", + "pos": "形容詞", + "pn": -0.995138 + }, + { + "surface": "落し入れる", + "readging": "おとしいれる", + "pos": "動詞", + "pn": -0.995139 + }, + { + "surface": "痛い", + "readging": "いたい", + "pos": "形容詞", + "pn": -0.99515 + }, + { + "surface": "脳出血", + "readging": "のうしゅっけつ", + "pos": "名詞", + "pn": -0.995152 + }, + { + "surface": "大病", + "readging": "たいびょう", + "pos": "名詞", + "pn": -0.995152 + }, + { + "surface": "陰り", + "readging": "かげり", + "pos": "名詞", + "pn": -0.995153 + }, + { + "surface": "付け回す", + "readging": "つけまわす", + "pos": "動詞", + "pn": -0.995159 + }, + { + "surface": "野卑", + "readging": "やひ", + "pos": "名詞", + "pn": -0.995167 + }, + { + "surface": "発作", + "readging": "ほっさ", + "pos": "名詞", + "pn": -0.995173 + }, + { + "surface": "下級", + "readging": "かきゅう", + "pos": "名詞", + "pn": -0.995173 + }, + { + "surface": "凶徒", + "readging": "きょうと", + "pos": "名詞", + "pn": -0.995174 + }, + { + "surface": "息衝く", + "readging": "いきづく", + "pos": "動詞", + "pn": -0.995184 + }, + { + "surface": "焦心", + "readging": "しょうしん", + "pos": "名詞", + "pn": -0.995187 + }, + { + "surface": "言質", + "readging": "げんしつ", + "pos": "名詞", + "pn": -0.995195 + }, + { + "surface": "嗜虐", + "readging": "しぎゃく", + "pos": "名詞", + "pn": -0.995201 + }, + { + "surface": "すべた", + "readging": "すべた", + "pos": "名詞", + "pn": -0.995203 + }, + { + "surface": "傴僂", + "readging": "せむし", + "pos": "名詞", + "pn": -0.995206 + }, + { + "surface": "不名誉", + "readging": "ふめいよ", + "pos": "名詞", + "pn": -0.995212 + }, + { + "surface": "痩せぎす", + "readging": "やせぎす", + "pos": "名詞", + "pn": -0.995214 + }, + { + "surface": "憂い", + "readging": "うい", + "pos": "形容詞", + "pn": -0.99522 + }, + { + "surface": "横着", + "readging": "おうちゃく", + "pos": "名詞", + "pn": -0.995221 + }, + { + "surface": "極悪", + "readging": "ごくあく", + "pos": "名詞", + "pn": -0.995222 + }, + { + "surface": "困じる", + "readging": "こうじる", + "pos": "動詞", + "pn": -0.995224 + }, + { + "surface": "ピンチ", + "readging": "ピンチ", + "pos": "名詞", + "pn": -0.995229 + }, + { + "surface": "飢える", + "readging": "うえる", + "pos": "動詞", + "pn": -0.995237 + }, + { + "surface": "薄汚い", + "readging": "うすぎたない", + "pos": "形容詞", + "pn": -0.995241 + }, + { + "surface": "みみっちい", + "readging": "みみっちい", + "pos": "形容詞", + "pn": -0.99525 + }, + { + "surface": "いじましい", + "readging": "いじましい", + "pos": "形容詞", + "pn": -0.99526 + }, + { + "surface": "思い煩う", + "readging": "おもいわずらう", + "pos": "動詞", + "pn": -0.99526 + }, + { + "surface": "悪魔", + "readging": "あくま", + "pos": "名詞", + "pn": -0.995261 + }, + { + "surface": "畜生", + "readging": "ちくしょう", + "pos": "名詞", + "pn": -0.99529 + }, + { + "surface": "擦剥ける", + "readging": "すりむける", + "pos": "動詞", + "pn": -0.995297 + }, + { + "surface": "狼火", + "readging": "ろうか", + "pos": "名詞", + "pn": -0.995311 + }, + { + "surface": "烽火", + "readging": "ほうか", + "pos": "名詞", + "pn": -0.995311 + }, + { + "surface": "監獄", + "readging": "かんごく", + "pos": "名詞", + "pn": -0.995314 + }, + { + "surface": "化膿", + "readging": "かのう", + "pos": "名詞", + "pn": -0.995315 + }, + { + "surface": "汚吏", + "readging": "おり", + "pos": "名詞", + "pn": -0.995317 + }, + { + "surface": "凄惨", + "readging": "せいさん", + "pos": "名詞", + "pn": -0.99532 + }, + { + "surface": "脆い", + "readging": "もろい", + "pos": "形容詞", + "pn": -0.995335 + }, + { + "surface": "悪漢", + "readging": "あっかん", + "pos": "名詞", + "pn": -0.995349 + }, + { + "surface": "かったるい", + "readging": "かったるい", + "pos": "形容詞", + "pn": -0.995351 + }, + { + "surface": "木偶の坊", + "readging": "でくのぼう", + "pos": "名詞", + "pn": -0.995364 + }, + { + "surface": "刑", + "readging": "けい", + "pos": "名詞", + "pn": -0.995368 + }, + { + "surface": "欺く", + "readging": "あざむく", + "pos": "動詞", + "pn": -0.995375 + }, + { + "surface": "見飽き", + "readging": "みあき", + "pos": "名詞", + "pn": -0.995376 + }, + { + "surface": "憎憎しい", + "readging": "にくにくしい", + "pos": "形容詞", + "pn": -0.995377 + }, + { + "surface": "猿", + "readging": "さる", + "pos": "名詞", + "pn": -0.995417 + }, + { + "surface": "屈する", + "readging": "くっする", + "pos": "動詞", + "pn": -0.995423 + }, + { + "surface": "凶漢", + "readging": "きょうかん", + "pos": "名詞", + "pn": -0.995429 + }, + { + "surface": "ロイマチス", + "readging": "ロイマチス", + "pos": "名詞", + "pn": -0.995431 + }, + { + "surface": "リョーマチ", + "readging": "リョーマチ", + "pos": "名詞", + "pn": -0.995431 + }, + { + "surface": "憎しみ", + "readging": "にくしみ", + "pos": "名詞", + "pn": -0.995432 + }, + { + "surface": "ネック", + "readging": "ネック", + "pos": "名詞", + "pn": -0.995434 + }, + { + "surface": "切痔", + "readging": "きれじ", + "pos": "名詞", + "pn": -0.995436 + }, + { + "surface": "鼠咬症", + "readging": "そこうしょう", + "pos": "名詞", + "pn": -0.995437 + }, + { + "surface": "禍事", + "readging": "まがごと", + "pos": "名詞", + "pn": -0.995437 + }, + { + "surface": "軽軽しい", + "readging": "かるがるしい", + "pos": "形容詞", + "pn": -0.995439 + }, + { + "surface": "窶れる", + "readging": "やつれる", + "pos": "動詞", + "pn": -0.995445 + }, + { + "surface": "苛む", + "readging": "さいなむ", + "pos": "動詞", + "pn": -0.995445 + }, + { + "surface": "恐恐", + "readging": "こわごわ", + "pos": "副詞", + "pn": -0.995447 + }, + { + "surface": "小突き回す", + "readging": "こづきまわす", + "pos": "動詞", + "pn": -0.99545 + }, + { + "surface": "辛辣", + "readging": "しんらつ", + "pos": "名詞", + "pn": -0.995453 + }, + { + "surface": "痛め付ける", + "readging": "いためつける", + "pos": "動詞", + "pn": -0.995456 + }, + { + "surface": "落ち込む", + "readging": "おちこむ", + "pos": "動詞", + "pn": -0.995458 + }, + { + "surface": "危機一髪", + "readging": "ききいっぱつ", + "pos": "名詞", + "pn": -0.995466 + }, + { + "surface": "魘われる", + "readging": "おそわれる", + "pos": "動詞", + "pn": -0.995468 + }, + { + "surface": "邪推", + "readging": "じゃすい", + "pos": "名詞", + "pn": -0.995469 + }, + { + "surface": "差支える", + "readging": "さしつかえる", + "pos": "動詞", + "pn": -0.995474 + }, + { + "surface": "魯鈍", + "readging": "ろどん", + "pos": "名詞", + "pn": -0.995475 + }, + { + "surface": "獰悪", + "readging": "どうあく", + "pos": "名詞", + "pn": -0.995476 + }, + { + "surface": "禍禍しい", + "readging": "まがまがしい", + "pos": "形容詞", + "pn": -0.995486 + }, + { + "surface": "忘れっぽい", + "readging": "わすれっぽい", + "pos": "形容詞", + "pn": -0.995506 + }, + { + "surface": "馬鹿臭い", + "readging": "ばかくさい", + "pos": "形容詞", + "pn": -0.995506 + }, + { + "surface": "如何様物", + "readging": "いかさまもの", + "pos": "名詞", + "pn": -0.995512 + }, + { + "surface": "呪う", + "readging": "のろう", + "pos": "動詞", + "pn": -0.995522 + }, + { + "surface": "疑わしい", + "readging": "うたがわしい", + "pos": "形容詞", + "pn": -0.995525 + }, + { + "surface": "戒慎", + "readging": "かいしん", + "pos": "名詞", + "pn": -0.99553 + }, + { + "surface": "錆", + "readging": "さび", + "pos": "名詞", + "pn": -0.99553 + }, + { + "surface": "厭う", + "readging": "いとう", + "pos": "動詞", + "pn": -0.995533 + }, + { + "surface": "困難", + "readging": "こんなん", + "pos": "名詞", + "pn": -0.995562 + }, + { + "surface": "荒っぽい", + "readging": "あらっぽい", + "pos": "形容詞", + "pn": -0.995573 + }, + { + "surface": "ぼそっと", + "readging": "ぼそっと", + "pos": "副詞", + "pn": -0.995574 + }, + { + "surface": "略奪", + "readging": "りゃくだつ", + "pos": "名詞", + "pn": -0.995577 + }, + { + "surface": "ずる", + "readging": "ずる", + "pos": "動詞", + "pn": -0.99558 + }, + { + "surface": "粗忽", + "readging": "そこつ", + "pos": "名詞", + "pn": -0.995597 + }, + { + "surface": "見咎める", + "readging": "みとがめる", + "pos": "動詞", + "pn": -0.995598 + }, + { + "surface": "陰惨", + "readging": "いんさん", + "pos": "名詞", + "pn": -0.995603 + }, + { + "surface": "醜状", + "readging": "しゅうじょう", + "pos": "名詞", + "pn": -0.995608 + }, + { + "surface": "災禍", + "readging": "さいか", + "pos": "名詞", + "pn": -0.99561 + }, + { + "surface": "潮垂れる", + "readging": "しおたれる", + "pos": "動詞", + "pn": -0.995615 + }, + { + "surface": "木偶", + "readging": "でく", + "pos": "名詞", + "pn": -0.995627 + }, + { + "surface": "邪淫", + "readging": "じゃいん", + "pos": "名詞", + "pn": -0.995631 + }, + { + "surface": "びくびく", + "readging": "びくびく", + "pos": "副詞", + "pn": -0.995632 + }, + { + "surface": "痔核", + "readging": "じかく", + "pos": "名詞", + "pn": -0.995636 + }, + { + "surface": "水死", + "readging": "すいし", + "pos": "名詞", + "pn": -0.995661 + }, + { + "surface": "不都合", + "readging": "ふつごう", + "pos": "名詞", + "pn": -0.995664 + }, + { + "surface": "おぞましい", + "readging": "おぞましい", + "pos": "形容詞", + "pn": -0.995678 + }, + { + "surface": "猛悪", + "readging": "もうあく", + "pos": "名詞", + "pn": -0.995679 + }, + { + "surface": "吝嗇", + "readging": "りんしょく", + "pos": "名詞", + "pn": -0.995682 + }, + { + "surface": "陰る", + "readging": "かげる", + "pos": "動詞", + "pn": -0.995687 + }, + { + "surface": "しゅんと", + "readging": "しゅんと", + "pos": "副詞", + "pn": -0.995697 + }, + { + "surface": "疑う", + "readging": "うたがう", + "pos": "動詞", + "pn": -0.995701 + }, + { + "surface": "しどけない", + "readging": "しどけない", + "pos": "形容詞", + "pn": -0.995724 + }, + { + "surface": "懸念", + "readging": "けねん", + "pos": "名詞", + "pn": -0.995725 + }, + { + "surface": "迷惑", + "readging": "めいわく", + "pos": "名詞", + "pn": -0.99573 + }, + { + "surface": "娑婆塞げ", + "readging": "しゃばふさげ", + "pos": "名詞", + "pn": -0.99575 + }, + { + "surface": "むず痒い", + "readging": "むずがゆい", + "pos": "形容詞", + "pn": -0.995754 + }, + { + "surface": "差合う", + "readging": "さしあう", + "pos": "動詞", + "pn": -0.99576 + }, + { + "surface": "不運", + "readging": "ふうん", + "pos": "名詞", + "pn": -0.995763 + }, + { + "surface": "渋っ面", + "readging": "しぶっつら", + "pos": "名詞", + "pn": -0.99577 + }, + { + "surface": "まだるっこい", + "readging": "まだるっこい", + "pos": "形容詞", + "pn": -0.995777 + }, + { + "surface": "癌", + "readging": "がん", + "pos": "名詞", + "pn": -0.99578 + }, + { + "surface": "怠る", + "readging": "おこたる", + "pos": "動詞", + "pn": -0.995782 + }, + { + "surface": "白痴", + "readging": "はくち", + "pos": "名詞", + "pn": -0.995783 + }, + { + "surface": "貪欲", + "readging": "どんよく", + "pos": "名詞", + "pn": -0.995787 + }, + { + "surface": "しょっぱい", + "readging": "しょっぱい", + "pos": "形容詞", + "pn": -0.995787 + }, + { + "surface": "獰猛", + "readging": "どうもう", + "pos": "名詞", + "pn": -0.995792 + }, + { + "surface": "苛斂誅求", + "readging": "かれんちゅうきゅう", + "pos": "名詞", + "pn": -0.995803 + }, + { + "surface": "長たらしい", + "readging": "ながたらしい", + "pos": "形容詞", + "pn": -0.995811 + }, + { + "surface": "寂寞", + "readging": "せきばく", + "pos": "名詞", + "pn": -0.995814 + }, + { + "surface": "寂寞", + "readging": "じゃくまく", + "pos": "名詞", + "pn": -0.995814 + }, + { + "surface": "咳き込む", + "readging": "せきこむ", + "pos": "動詞", + "pn": -0.995816 + }, + { + "surface": "酔いどれ", + "readging": "よいどれ", + "pos": "名詞", + "pn": -0.995821 + }, + { + "surface": "無慈悲", + "readging": "むじひ", + "pos": "名詞", + "pn": -0.995823 + }, + { + "surface": "煙たい", + "readging": "けむたい", + "pos": "形容詞", + "pn": -0.995824 + }, + { + "surface": "恐恐", + "readging": "きょうきょう", + "pos": "副詞", + "pn": -0.995829 + }, + { + "surface": "腫瘍", + "readging": "しゅよう", + "pos": "名詞", + "pn": -0.995831 + }, + { + "surface": "悪口", + "readging": "あっこう", + "pos": "名詞", + "pn": -0.995836 + }, + { + "surface": "歯痒い", + "readging": "はがゆい", + "pos": "形容詞", + "pn": -0.995837 + }, + { + "surface": "悔い", + "readging": "くい", + "pos": "名詞", + "pn": -0.995838 + }, + { + "surface": "威張る", + "readging": "いばる", + "pos": "動詞", + "pn": -0.995839 + }, + { + "surface": "こまごま", + "readging": "こまごましい", + "pos": "形容詞", + "pn": -0.995852 + }, + { + "surface": "ひねくれる", + "readging": "ひねくれる", + "pos": "動詞", + "pn": -0.995861 + }, + { + "surface": "暴虐", + "readging": "ぼうぎゃく", + "pos": "名詞", + "pn": -0.995869 + }, + { + "surface": "不格好", + "readging": "ぶかっこう", + "pos": "名詞", + "pn": -0.995882 + }, + { + "surface": "老衰", + "readging": "ろうすい", + "pos": "名詞", + "pn": -0.99589 + }, + { + "surface": "愚痴る", + "readging": "ぐちる", + "pos": "動詞", + "pn": -0.995894 + }, + { + "surface": "仇怨", + "readging": "きゅうえん", + "pos": "名詞", + "pn": -0.995896 + }, + { + "surface": "勿体", + "readging": "もったい", + "pos": "名詞", + "pn": -0.99591 + }, + { + "surface": "駑馬", + "readging": "どば", + "pos": "名詞", + "pn": -0.995913 + }, + { + "surface": "不足", + "readging": "ふそく", + "pos": "名詞", + "pn": -0.995923 + }, + { + "surface": "陥落", + "readging": "かんらく", + "pos": "名詞", + "pn": -0.995923 + }, + { + "surface": "駆ける", + "readging": "かける", + "pos": "動詞", + "pn": -0.995929 + }, + { + "surface": "俚言", + "readging": "りげん", + "pos": "名詞", + "pn": -0.995933 + }, + { + "surface": "重病", + "readging": "じゅうびょう", + "pos": "名詞", + "pn": -0.995934 + }, + { + "surface": "慌しい", + "readging": "あわただしい", + "pos": "形容詞", + "pn": -0.995936 + }, + { + "surface": "油染みる", + "readging": "あぶらじみる", + "pos": "動詞", + "pn": -0.995936 + }, + { + "surface": "騒騒しい", + "readging": "そうぞうしい", + "pos": "形容詞", + "pn": -0.99594 + }, + { + "surface": "うら寂しい", + "readging": "うらさびしい", + "pos": "形容詞", + "pn": -0.995953 + }, + { + "surface": "残念", + "readging": "ざんねん", + "pos": "名詞", + "pn": -0.995963 + }, + { + "surface": "怖気", + "readging": "おぞけ", + "pos": "名詞", + "pn": -0.995967 + }, + { + "surface": "簸る", + "readging": "ひる", + "pos": "動詞", + "pn": -0.995981 + }, + { + "surface": "擦れ合う", + "readging": "すれあう", + "pos": "動詞", + "pn": -0.995983 + }, + { + "surface": "冷める", + "readging": "さめる", + "pos": "動詞", + "pn": -0.995983 + }, + { + "surface": "上気", + "readging": "じょうき", + "pos": "名詞", + "pn": -0.996005 + }, + { + "surface": "奸賊", + "readging": "かんぞく", + "pos": "名詞", + "pn": -0.996005 + }, + { + "surface": "災", + "readging": "さい", + "pos": "名詞", + "pn": -0.996007 + }, + { + "surface": "壁訴訟", + "readging": "かべそしょう", + "pos": "名詞", + "pn": -0.996009 + }, + { + "surface": "永眠", + "readging": "えいみん", + "pos": "名詞", + "pn": -0.996027 + }, + { + "surface": "凶事", + "readging": "きょうじ", + "pos": "名詞", + "pn": -0.996029 + }, + { + "surface": "病", + "readging": "びょう", + "pos": "名詞", + "pn": -0.996031 + }, + { + "surface": "むさい", + "readging": "むさい", + "pos": "形容詞", + "pn": -0.996035 + }, + { + "surface": "だるい", + "readging": "だるい", + "pos": "形容詞", + "pn": -0.996036 + }, + { + "surface": "重苦しい", + "readging": "おもくるしい", + "pos": "形容詞", + "pn": -0.996036 + }, + { + "surface": "惨事", + "readging": "さんじ", + "pos": "名詞", + "pn": -0.996037 + }, + { + "surface": "悪性", + "readging": "あくせい", + "pos": "名詞", + "pn": -0.996043 + }, + { + "surface": "零落", + "readging": "れいらく", + "pos": "名詞", + "pn": -0.996043 + }, + { + "surface": "害悪", + "readging": "がいあく", + "pos": "名詞", + "pn": -0.996044 + }, + { + "surface": "僻心", + "readging": "ひがごころ", + "pos": "名詞", + "pn": -0.996046 + }, + { + "surface": "当て擦る", + "readging": "あてこする", + "pos": "動詞", + "pn": -0.996054 + }, + { + "surface": "嫌がる", + "readging": "いやがる", + "pos": "動詞", + "pn": -0.996057 + }, + { + "surface": "酷悪", + "readging": "こくあく", + "pos": "名詞", + "pn": -0.996072 + }, + { + "surface": "揚足", + "readging": "あげあし", + "pos": "名詞", + "pn": -0.99608 + }, + { + "surface": "壊す", + "readging": "こわす", + "pos": "動詞", + "pn": -0.996083 + }, + { + "surface": "悪業", + "readging": "あくごう", + "pos": "名詞", + "pn": -0.996086 + }, + { + "surface": "文句", + "readging": "もんく", + "pos": "名詞", + "pn": -0.996102 + }, + { + "surface": "切苛む", + "readging": "きりさいなむ", + "pos": "動詞", + "pn": -0.996113 + }, + { + "surface": "自戒", + "readging": "じかい", + "pos": "名詞", + "pn": -0.996115 + }, + { + "surface": "欠く", + "readging": "かく", + "pos": "動詞", + "pn": -0.996116 + }, + { + "surface": "空空しい", + "readging": "そらぞらしい", + "pos": "形容詞", + "pn": -0.996123 + }, + { + "surface": "ぬたくる", + "readging": "ぬたくる", + "pos": "動詞", + "pn": -0.996136 + }, + { + "surface": "入る", + "readging": "はいる", + "pos": "動詞", + "pn": -0.996138 + }, + { + "surface": "急死", + "readging": "きゅうし", + "pos": "名詞", + "pn": -0.996141 + }, + { + "surface": "疎ましい", + "readging": "うとましい", + "pos": "形容詞", + "pn": -0.996155 + }, + { + "surface": "悲愁", + "readging": "ひしゅう", + "pos": "名詞", + "pn": -0.996167 + }, + { + "surface": "悩ます", + "readging": "なやます", + "pos": "動詞", + "pn": -0.996175 + }, + { + "surface": "痘瘡", + "readging": "とうそう", + "pos": "名詞", + "pn": -0.996177 + }, + { + "surface": "扱下ろす", + "readging": "こきおろす", + "pos": "動詞", + "pn": -0.99618 + }, + { + "surface": "捩れる", + "readging": "ねじれる", + "pos": "動詞", + "pn": -0.996185 + }, + { + "surface": "睨み合う", + "readging": "にらみあう", + "pos": "動詞", + "pn": -0.996192 + }, + { + "surface": "死体", + "readging": "したい", + "pos": "名詞", + "pn": -0.996217 + }, + { + "surface": "痴愚", + "readging": "ちぐ", + "pos": "名詞", + "pn": -0.996234 + }, + { + "surface": "むさくるしい", + "readging": "むさくるしい", + "pos": "形容詞", + "pn": -0.996239 + }, + { + "surface": "恐喝", + "readging": "きょうかつ", + "pos": "名詞", + "pn": -0.996254 + }, + { + "surface": "痙攣", + "readging": "けいれん", + "pos": "名詞", + "pn": -0.996261 + }, + { + "surface": "粗悪", + "readging": "そあく", + "pos": "名詞", + "pn": -0.996269 + }, + { + "surface": "苦い", + "readging": "にがい", + "pos": "形容詞", + "pn": -0.99627 + }, + { + "surface": "こやかましい", + "readging": "こやかましい", + "pos": "形容詞", + "pn": -0.996274 + }, + { + "surface": "ナチス", + "readging": "ナチス", + "pos": "名詞", + "pn": -0.996275 + }, + { + "surface": "悪賢い", + "readging": "わるがしこい", + "pos": "形容詞", + "pn": -0.996276 + }, + { + "surface": "酸鼻", + "readging": "さんび", + "pos": "名詞", + "pn": -0.996297 + }, + { + "surface": "難癖", + "readging": "なんくせ", + "pos": "名詞", + "pn": -0.9963 + }, + { + "surface": "引攣る", + "readging": "ひきつる", + "pos": "動詞", + "pn": -0.996331 + }, + { + "surface": "姦悪", + "readging": "かんあく", + "pos": "名詞", + "pn": -0.996336 + }, + { + "surface": "皮肉", + "readging": "ひにく", + "pos": "名詞", + "pn": -0.996346 + }, + { + "surface": "拙劣", + "readging": "せつれつ", + "pos": "名詞", + "pn": -0.996346 + }, + { + "surface": "寒", + "readging": "かん", + "pos": "名詞", + "pn": -0.996349 + }, + { + "surface": "凍える", + "readging": "こごえる", + "pos": "動詞", + "pn": -0.99635 + }, + { + "surface": "下作", + "readging": "したさく", + "pos": "名詞", + "pn": -0.996353 + }, + { + "surface": "ぐっしょり", + "readging": "ぐっしょり", + "pos": "副詞", + "pn": -0.996354 + }, + { + "surface": "がつがつ", + "readging": "がつがつ", + "pos": "副詞", + "pn": -0.99636 + }, + { + "surface": "苦", + "readging": "く", + "pos": "名詞", + "pn": -0.996364 + }, + { + "surface": "残忍", + "readging": "ざんにん", + "pos": "名詞", + "pn": -0.996369 + }, + { + "surface": "落度", + "readging": "おちど", + "pos": "名詞", + "pn": -0.996374 + }, + { + "surface": "婆", + "readging": "ば", + "pos": "名詞", + "pn": -0.996379 + }, + { + "surface": "粗相", + "readging": "そそう", + "pos": "名詞", + "pn": -0.996388 + }, + { + "surface": "難儀", + "readging": "なんぎ", + "pos": "名詞", + "pn": -0.996394 + }, + { + "surface": "大賊", + "readging": "たいぞく", + "pos": "名詞", + "pn": -0.996394 + }, + { + "surface": "手落ち", + "readging": "ておち", + "pos": "名詞", + "pn": -0.99641 + }, + { + "surface": "晦冥", + "readging": "かいめい", + "pos": "名詞", + "pn": -0.996412 + }, + { + "surface": "貧相", + "readging": "ひんそう", + "pos": "名詞", + "pn": -0.996418 + }, + { + "surface": "グロテスク", + "readging": "グロテスク", + "pos": "名詞", + "pn": -0.996421 + }, + { + "surface": "伝染", + "readging": "でんせん", + "pos": "名詞", + "pn": -0.996433 + }, + { + "surface": "引っぱたく", + "readging": "ひっぱたく", + "pos": "動詞", + "pn": -0.996439 + }, + { + "surface": "絞り上げる", + "readging": "しぼりあげる", + "pos": "動詞", + "pn": -0.996446 + }, + { + "surface": "冷罵", + "readging": "れいば", + "pos": "名詞", + "pn": -0.996448 + }, + { + "surface": "狼", + "readging": "ろう", + "pos": "名詞", + "pn": -0.99645 + }, + { + "surface": "うらぶれる", + "readging": "うらぶれる", + "pos": "動詞", + "pn": -0.996451 + }, + { + "surface": "腹黒い", + "readging": "はらぐろい", + "pos": "形容詞", + "pn": -0.996456 + }, + { + "surface": "汚らしい", + "readging": "きたならしい", + "pos": "形容詞", + "pn": -0.996459 + }, + { + "surface": "僻する", + "readging": "へきする", + "pos": "動詞", + "pn": -0.996466 + }, + { + "surface": "か弱い", + "readging": "かよわい", + "pos": "形容詞", + "pn": -0.996486 + }, + { + "surface": "縲絏", + "readging": "るいせつ", + "pos": "名詞", + "pn": -0.996495 + }, + { + "surface": "貧乏揺ぎ", + "readging": "びんぼうゆるぎ", + "pos": "名詞", + "pn": -0.996495 + }, + { + "surface": "ちょんぼ", + "readging": "ちょんぼ", + "pos": "名詞", + "pn": -0.996503 + }, + { + "surface": "蔓延る", + "readging": "はびこる", + "pos": "動詞", + "pn": -0.996511 + }, + { + "surface": "揉みくちゃ", + "readging": "もみくちゃ", + "pos": "名詞", + "pn": -0.99652 + }, + { + "surface": "戦争", + "readging": "せんそう", + "pos": "名詞", + "pn": -0.996526 + }, + { + "surface": "くどい", + "readging": "くどい", + "pos": "形容詞", + "pn": -0.996534 + }, + { + "surface": "捨てる", + "readging": "すてる", + "pos": "動詞", + "pn": -0.996542 + }, + { + "surface": "梁上の君子", + "readging": "りょうじょうのくんし", + "pos": "名詞", + "pn": -0.996545 + }, + { + "surface": "慌てふためく", + "readging": "あわてふためく", + "pos": "動詞", + "pn": -0.996554 + }, + { + "surface": "馬鹿馬鹿しい", + "readging": "ばかばかしい", + "pos": "形容詞", + "pn": -0.996559 + }, + { + "surface": "目眩", + "readging": "めまい", + "pos": "名詞", + "pn": -0.996561 + }, + { + "surface": "姦しい", + "readging": "かしましい", + "pos": "形容詞", + "pn": -0.996562 + }, + { + "surface": "もぎ取る", + "readging": "もぎとる", + "pos": "動詞", + "pn": -0.996564 + }, + { + "surface": "叱り飛ばす", + "readging": "しかりとばす", + "pos": "動詞", + "pn": -0.996579 + }, + { + "surface": "惜しい", + "readging": "おしい", + "pos": "形容詞", + "pn": -0.996585 + }, + { + "surface": "残酷", + "readging": "ざんこく", + "pos": "名詞", + "pn": -0.996587 + }, + { + "surface": "そぼ濡れる", + "readging": "そぼぬれる", + "pos": "動詞", + "pn": -0.996598 + }, + { + "surface": "憎む", + "readging": "にくむ", + "pos": "動詞", + "pn": -0.9966 + }, + { + "surface": "焦燥", + "readging": "しょうそう", + "pos": "名詞", + "pn": -0.996619 + }, + { + "surface": "落魄", + "readging": "らくはく", + "pos": "名詞", + "pn": -0.996624 + }, + { + "surface": "下品", + "readging": "げぼん", + "pos": "名詞", + "pn": -0.996624 + }, + { + "surface": "怖がる", + "readging": "こわがる", + "pos": "動詞", + "pn": -0.996635 + }, + { + "surface": "迂愚", + "readging": "うぐ", + "pos": "名詞", + "pn": -0.996653 + }, + { + "surface": "見下す", + "readging": "みくだす", + "pos": "動詞", + "pn": -0.996653 + }, + { + "surface": "跪く", + "readging": "ひざまずく", + "pos": "動詞", + "pn": -0.996653 + }, + { + "surface": "いやいや", + "readging": "いやいやながら", + "pos": "副詞", + "pn": -0.996656 + }, + { + "surface": "片思い", + "readging": "かたおもい", + "pos": "名詞", + "pn": -0.996656 + }, + { + "surface": "片恋", + "readging": "かたこい", + "pos": "名詞", + "pn": -0.996656 + }, + { + "surface": "怒る", + "readging": "おこる", + "pos": "動詞", + "pn": -0.996671 + }, + { + "surface": "恥", + "readging": "ち", + "pos": "名詞", + "pn": -0.996678 + }, + { + "surface": "反する", + "readging": "はんする", + "pos": "動詞", + "pn": -0.996696 + }, + { + "surface": "返討", + "readging": "かえりうち", + "pos": "名詞", + "pn": -0.996706 + }, + { + "surface": "誤記", + "readging": "ごき", + "pos": "名詞", + "pn": -0.996706 + }, + { + "surface": "幼い", + "readging": "おさない", + "pos": "形容詞", + "pn": -0.996708 + }, + { + "surface": "鏖殺", + "readging": "おうさつ", + "pos": "名詞", + "pn": -0.996709 + }, + { + "surface": "患者", + "readging": "かんじゃ", + "pos": "名詞", + "pn": -0.996709 + }, + { + "surface": "険路", + "readging": "けんろ", + "pos": "名詞", + "pn": -0.996713 + }, + { + "surface": "すかたん", + "readging": "すかたん", + "pos": "名詞", + "pn": -0.996716 + }, + { + "surface": "睨む", + "readging": "にらむ", + "pos": "動詞", + "pn": -0.996717 + }, + { + "surface": "危ない", + "readging": "あぶない", + "pos": "形容詞", + "pn": -0.996722 + }, + { + "surface": "暗暗", + "readging": "あんあん", + "pos": "名詞", + "pn": -0.996728 + }, + { + "surface": "欠点", + "readging": "けってん", + "pos": "名詞", + "pn": -0.99674 + }, + { + "surface": "苦熱", + "readging": "くねつ", + "pos": "名詞", + "pn": -0.996743 + }, + { + "surface": "猛暑", + "readging": "もうしょ", + "pos": "名詞", + "pn": -0.996743 + }, + { + "surface": "でれでれ", + "readging": "でれでれ", + "pos": "名詞", + "pn": -0.996743 + }, + { + "surface": "遺髪", + "readging": "いはつ", + "pos": "名詞", + "pn": -0.996749 + }, + { + "surface": "呪う", + "readging": "まじなう", + "pos": "動詞", + "pn": -0.996764 + }, + { + "surface": "大旱", + "readging": "たいかん", + "pos": "名詞", + "pn": -0.996766 + }, + { + "surface": "発熱", + "readging": "はつねつ", + "pos": "名詞", + "pn": -0.99677 + }, + { + "surface": "怨恨", + "readging": "えんこん", + "pos": "名詞", + "pn": -0.996778 + }, + { + "surface": "悪習", + "readging": "あくしゅう", + "pos": "名詞", + "pn": -0.996785 + }, + { + "surface": "怪聞", + "readging": "かいぶん", + "pos": "名詞", + "pn": -0.996788 + }, + { + "surface": "こっ酷い", + "readging": "こっぴどい", + "pos": "形容詞", + "pn": -0.99679 + }, + { + "surface": "手痛い", + "readging": "ていたい", + "pos": "形容詞", + "pn": -0.99679 + }, + { + "surface": "逆上", + "readging": "ぎゃくじょう", + "pos": "名詞", + "pn": -0.996793 + }, + { + "surface": "刺立つ", + "readging": "とげだつ", + "pos": "動詞", + "pn": -0.9968 + }, + { + "surface": "痘痕", + "readging": "とうこん", + "pos": "名詞", + "pn": -0.996803 + }, + { + "surface": "愚答", + "readging": "ぐとう", + "pos": "名詞", + "pn": -0.996803 + }, + { + "surface": "愚説", + "readging": "ぐせつ", + "pos": "名詞", + "pn": -0.996803 + }, + { + "surface": "お目玉", + "readging": "おめだま", + "pos": "名詞", + "pn": -0.996809 + }, + { + "surface": "奸佞", + "readging": "かんねい", + "pos": "名詞", + "pn": -0.996814 + }, + { + "surface": "えがらっぽい", + "readging": "えがらっぽい", + "pos": "形容詞", + "pn": -0.996821 + }, + { + "surface": "嘲弄", + "readging": "ちょうろう", + "pos": "名詞", + "pn": -0.996827 + }, + { + "surface": "霍乱", + "readging": "かくらん", + "pos": "名詞", + "pn": -0.996829 + }, + { + "surface": "慢罵", + "readging": "まんば", + "pos": "名詞", + "pn": -0.99683 + }, + { + "surface": "急性", + "readging": "きゅうせい", + "pos": "名詞", + "pn": -0.996833 + }, + { + "surface": "びちゃびちゃ", + "readging": "びちゃびちゃ", + "pos": "副詞", + "pn": -0.99684 + }, + { + "surface": "びしょびしょ", + "readging": "びしょびしょ", + "pos": "副詞", + "pn": -0.99684 + }, + { + "surface": "至難", + "readging": "しなん", + "pos": "名詞", + "pn": -0.996842 + }, + { + "surface": "べらんめえ", + "readging": "べらんめえ", + "pos": "名詞", + "pn": -0.996847 + }, + { + "surface": "罵詈", + "readging": "ばり", + "pos": "名詞", + "pn": -0.996847 + }, + { + "surface": "痛罵", + "readging": "つうば", + "pos": "名詞", + "pn": -0.996847 + }, + { + "surface": "嘲笑", + "readging": "ちょうしょう", + "pos": "名詞", + "pn": -0.996847 + }, + { + "surface": "厭わしい", + "readging": "いとわしい", + "pos": "形容詞", + "pn": -0.996855 + }, + { + "surface": "馬鹿らしい", + "readging": "ばからしい", + "pos": "形容詞", + "pn": -0.99688 + }, + { + "surface": "貯留", + "readging": "ちょりゅう", + "pos": "名詞", + "pn": -0.99689 + }, + { + "surface": "脅し付ける", + "readging": "おどしつける", + "pos": "動詞", + "pn": -0.996891 + }, + { + "surface": "苛める", + "readging": "いじめる", + "pos": "動詞", + "pn": -0.996893 + }, + { + "surface": "吝ん坊", + "readging": "しわんぼう", + "pos": "名詞", + "pn": -0.996905 + }, + { + "surface": "罵倒", + "readging": "ばとう", + "pos": "名詞", + "pn": -0.996905 + }, + { + "surface": "悲報", + "readging": "ひほう", + "pos": "名詞", + "pn": -0.996908 + }, + { + "surface": "話", + "readging": "わ", + "pos": "名詞", + "pn": -0.996908 + }, + { + "surface": "凶", + "readging": "きょう", + "pos": "名詞", + "pn": -0.996915 + }, + { + "surface": "羸痩", + "readging": "るいそう", + "pos": "名詞", + "pn": -0.996916 + }, + { + "surface": "貶す", + "readging": "けなす", + "pos": "動詞", + "pn": -0.996919 + }, + { + "surface": "剣呑", + "readging": "けんのん", + "pos": "名詞", + "pn": -0.996921 + }, + { + "surface": "凶悪", + "readging": "きょうあく", + "pos": "名詞", + "pn": -0.996928 + }, + { + "surface": "悪太郎", + "readging": "あくたろう", + "pos": "名詞", + "pn": -0.99693 + }, + { + "surface": "悪童", + "readging": "あくどう", + "pos": "名詞", + "pn": -0.99693 + }, + { + "surface": "冷汗", + "readging": "れいかん", + "pos": "名詞", + "pn": -0.996935 + }, + { + "surface": "奸計", + "readging": "かんけい", + "pos": "名詞", + "pn": -0.996936 + }, + { + "surface": "邪知", + "readging": "じゃち", + "pos": "名詞", + "pn": -0.996936 + }, + { + "surface": "ずる", + "readging": "ずる", + "pos": "名詞", + "pn": -0.996942 + }, + { + "surface": "おずおず", + "readging": "おずおず", + "pos": "副詞", + "pn": -0.996942 + }, + { + "surface": "エラー", + "readging": "エラー", + "pos": "名詞", + "pn": -0.996944 + }, + { + "surface": "ぽか", + "readging": "ぽか", + "pos": "名詞", + "pn": -0.996947 + }, + { + "surface": "汚水", + "readging": "おすい", + "pos": "名詞", + "pn": -0.996948 + }, + { + "surface": "ぐずぐず", + "readging": "ぐずぐず", + "pos": "副詞", + "pn": -0.996948 + }, + { + "surface": "いびる", + "readging": "いびる", + "pos": "動詞", + "pn": -0.996959 + }, + { + "surface": "ぶん殴る", + "readging": "ぶんなぐる", + "pos": "動詞", + "pn": -0.99696 + }, + { + "surface": "睨める", + "readging": "ねめる", + "pos": "動詞", + "pn": -0.996974 + }, + { + "surface": "沈淪", + "readging": "ちんりん", + "pos": "名詞", + "pn": -0.996979 + }, + { + "surface": "顰める", + "readging": "しかめる", + "pos": "動詞", + "pn": -0.996986 + }, + { + "surface": "締り屋", + "readging": "しまりや", + "pos": "名詞", + "pn": -0.996998 + }, + { + "surface": "怨霊", + "readging": "おんりょう", + "pos": "名詞", + "pn": -0.997 + }, + { + "surface": "嘲罵", + "readging": "ちょうば", + "pos": "名詞", + "pn": -0.997005 + }, + { + "surface": "病", + "readging": "やまい", + "pos": "名詞", + "pn": -0.997012 + }, + { + "surface": "損壊", + "readging": "そんかい", + "pos": "名詞", + "pn": -0.997037 + }, + { + "surface": "小汚い", + "readging": "こぎたない", + "pos": "形容詞", + "pn": -0.997045 + }, + { + "surface": "怨ずる", + "readging": "えんずる", + "pos": "動詞", + "pn": -0.99705 + }, + { + "surface": "事故", + "readging": "じこ", + "pos": "名詞", + "pn": -0.997053 + }, + { + "surface": "諷する", + "readging": "ふうする", + "pos": "動詞", + "pn": -0.997054 + }, + { + "surface": "酷刑", + "readging": "こっけい", + "pos": "名詞", + "pn": -0.997057 + }, + { + "surface": "小言", + "readging": "こごと", + "pos": "名詞", + "pn": -0.997062 + }, + { + "surface": "悪態", + "readging": "あくたい", + "pos": "名詞", + "pn": -0.997062 + }, + { + "surface": "悪", + "readging": "あく", + "pos": "名詞", + "pn": -0.997066 + }, + { + "surface": "毀傷", + "readging": "きしょう", + "pos": "名詞", + "pn": -0.997092 + }, + { + "surface": "顰", + "readging": "ひそみ", + "pos": "名詞", + "pn": -0.997095 + }, + { + "surface": "腐る", + "readging": "くさる", + "pos": "動詞", + "pn": -0.997096 + }, + { + "surface": "落莫", + "readging": "らくばく", + "pos": "名詞", + "pn": -0.997114 + }, + { + "surface": "誅求", + "readging": "ちゅうきゅう", + "pos": "名詞", + "pn": -0.997144 + }, + { + "surface": "難色", + "readging": "なんしょく", + "pos": "名詞", + "pn": -0.997156 + }, + { + "surface": "見窄らしい", + "readging": "みすぼらしい", + "pos": "形容詞", + "pn": -0.997159 + }, + { + "surface": "一喝", + "readging": "いっかつ", + "pos": "名詞", + "pn": -0.997164 + }, + { + "surface": "不良", + "readging": "ふりょう", + "pos": "名詞", + "pn": -0.997174 + }, + { + "surface": "誅", + "readging": "ちゅう", + "pos": "名詞", + "pn": -0.997175 + }, + { + "surface": "悄気る", + "readging": "しょげる", + "pos": "動詞", + "pn": -0.997178 + }, + { + "surface": "横行", + "readging": "おうこう", + "pos": "名詞", + "pn": -0.997179 + }, + { + "surface": "引攣れる", + "readging": "ひきつれる", + "pos": "動詞", + "pn": -0.997181 + }, + { + "surface": "もどかしい", + "readging": "もどかしい", + "pos": "形容詞", + "pn": -0.9972 + }, + { + "surface": "持病", + "readging": "じびょう", + "pos": "名詞", + "pn": -0.997207 + }, + { + "surface": "擦剥く", + "readging": "すりむく", + "pos": "動詞", + "pn": -0.997208 + }, + { + "surface": "狡い", + "readging": "ずるい", + "pos": "形容詞", + "pn": -0.99721 + }, + { + "surface": "痛ましい", + "readging": "いたましい", + "pos": "形容詞", + "pn": -0.997224 + }, + { + "surface": "嫌忌", + "readging": "けんき", + "pos": "名詞", + "pn": -0.997226 + }, + { + "surface": "摩擦", + "readging": "まさつ", + "pos": "名詞", + "pn": -0.997232 + }, + { + "surface": "賊", + "readging": "ぞく", + "pos": "名詞", + "pn": -0.997253 + }, + { + "surface": "危険", + "readging": "きけん", + "pos": "名詞", + "pn": -0.997271 + }, + { + "surface": "陋劣", + "readging": "ろうれつ", + "pos": "名詞", + "pn": -0.997286 + }, + { + "surface": "過失", + "readging": "かしつ", + "pos": "名詞", + "pn": -0.997301 + }, + { + "surface": "薄のろ", + "readging": "うすのろ", + "pos": "名詞", + "pn": -0.997308 + }, + { + "surface": "蔓延", + "readging": "まんえん", + "pos": "名詞", + "pn": -0.997309 + }, + { + "surface": "いびり出す", + "readging": "いびりだす", + "pos": "動詞", + "pn": -0.997311 + }, + { + "surface": "卑しん坊", + "readging": "いやしんぼう", + "pos": "名詞", + "pn": -0.997311 + }, + { + "surface": "急き込む", + "readging": "せきこむ", + "pos": "動詞", + "pn": -0.997338 + }, + { + "surface": "肺結核", + "readging": "はいけっかく", + "pos": "名詞", + "pn": -0.99734 + }, + { + "surface": "握屋", + "readging": "にぎりや", + "pos": "名詞", + "pn": -0.997349 + }, + { + "surface": "弱弱しい", + "readging": "よわよわしい", + "pos": "形容詞", + "pn": -0.997355 + }, + { + "surface": "守銭奴", + "readging": "しゅせんど", + "pos": "名詞", + "pn": -0.997355 + }, + { + "surface": "悄気込む", + "readging": "しょげこむ", + "pos": "動詞", + "pn": -0.997366 + }, + { + "surface": "悄気返る", + "readging": "しょげかえる", + "pos": "動詞", + "pn": -0.997366 + }, + { + "surface": "見る影もない", + "readging": "みるかげもない", + "pos": "形容詞", + "pn": -0.99737 + }, + { + "surface": "躊躇う", + "readging": "ためらう", + "pos": "動詞", + "pn": -0.99738 + }, + { + "surface": "放蕩", + "readging": "ほうとう", + "pos": "名詞", + "pn": -0.997381 + }, + { + "surface": "散散", + "readging": "さんざん", + "pos": "副詞", + "pn": -0.997384 + }, + { + "surface": "疾患", + "readging": "しっかん", + "pos": "名詞", + "pn": -0.997393 + }, + { + "surface": "託ける", + "readging": "かこつける", + "pos": "動詞", + "pn": -0.997397 + }, + { + "surface": "掻痒", + "readging": "そうよう", + "pos": "名詞", + "pn": -0.997399 + }, + { + "surface": "逆上せ上がる", + "readging": "のぼせあがる", + "pos": "動詞", + "pn": -0.997416 + }, + { + "surface": "下作", + "readging": "げさく", + "pos": "名詞", + "pn": -0.997417 + }, + { + "surface": "非議", + "readging": "ひぎ", + "pos": "名詞", + "pn": -0.997419 + }, + { + "surface": "物物しい", + "readging": "ものものしい", + "pos": "形容詞", + "pn": -0.997428 + }, + { + "surface": "騒がしい", + "readging": "さわがしい", + "pos": "形容詞", + "pn": -0.99743 + }, + { + "surface": "おう弱", + "readging": "おうじゃく", + "pos": "名詞", + "pn": -0.997449 + }, + { + "surface": "過ち", + "readging": "あやまち", + "pos": "名詞", + "pn": -0.997453 + }, + { + "surface": "いじける", + "readging": "いじける", + "pos": "動詞", + "pn": -0.997479 + }, + { + "surface": "滅入る", + "readging": "めいる", + "pos": "動詞", + "pn": -0.997515 + }, + { + "surface": "腫れる", + "readging": "はれる", + "pos": "動詞", + "pn": -0.997534 + }, + { + "surface": "恨みつらみ", + "readging": "うらみつらみ", + "pos": "名詞", + "pn": -0.997547 + }, + { + "surface": "土臭い", + "readging": "つちくさい", + "pos": "形容詞", + "pn": -0.997548 + }, + { + "surface": "呪詛", + "readging": "じゅそ", + "pos": "名詞", + "pn": -0.997565 + }, + { + "surface": "むずむず", + "readging": "むずむず", + "pos": "副詞", + "pn": -0.997567 + }, + { + "surface": "意地", + "readging": "いじ", + "pos": "名詞", + "pn": -0.997571 + }, + { + "surface": "幼弱", + "readging": "ようじゃく", + "pos": "名詞", + "pn": -0.997595 + }, + { + "surface": "憂悶", + "readging": "ゆうもん", + "pos": "名詞", + "pn": -0.997596 + }, + { + "surface": "佝僂", + "readging": "くる", + "pos": "名詞", + "pn": -0.997613 + }, + { + "surface": "動揺", + "readging": "どうよう", + "pos": "名詞", + "pn": -0.997615 + }, + { + "surface": "尊大", + "readging": "そんだい", + "pos": "名詞", + "pn": -0.99762 + }, + { + "surface": "図図しい", + "readging": "ずうずうしい", + "pos": "形容詞", + "pn": -0.997627 + }, + { + "surface": "詰る", + "readging": "なじる", + "pos": "動詞", + "pn": -0.997632 + }, + { + "surface": "虐使", + "readging": "ぎゃくし", + "pos": "名詞", + "pn": -0.997633 + }, + { + "surface": "懊悩", + "readging": "おうのう", + "pos": "名詞", + "pn": -0.997633 + }, + { + "surface": "呪文", + "readging": "じゅもん", + "pos": "名詞", + "pn": -0.997674 + }, + { + "surface": "臭い", + "readging": "くさい", + "pos": "形容詞", + "pn": -0.997705 + }, + { + "surface": "面倒", + "readging": "めんどう", + "pos": "名詞", + "pn": -0.997723 + }, + { + "surface": "喧しい", + "readging": "やかましい", + "pos": "形容詞", + "pn": -0.997752 + }, + { + "surface": "まずい", + "readging": "まずい", + "pos": "形容詞", + "pn": -0.997754 + }, + { + "surface": "与太郎", + "readging": "よたろう", + "pos": "名詞", + "pn": -0.997775 + }, + { + "surface": "悲しむ", + "readging": "かなしむ", + "pos": "動詞", + "pn": -0.997785 + }, + { + "surface": "さもしい", + "readging": "さもしい", + "pos": "形容詞", + "pn": -0.997798 + }, + { + "surface": "天罰", + "readging": "てんばつ", + "pos": "名詞", + "pn": -0.997807 + }, + { + "surface": "飢え", + "readging": "うえ", + "pos": "名詞", + "pn": -0.997809 + }, + { + "surface": "劣る", + "readging": "おとる", + "pos": "動詞", + "pn": -0.997814 + }, + { + "surface": "傷つける", + "readging": "きずつける", + "pos": "動詞", + "pn": -0.997817 + }, + { + "surface": "醜い", + "readging": "みにくい", + "pos": "形容詞", + "pn": -0.997844 + }, + { + "surface": "虐げる", + "readging": "しいたげる", + "pos": "動詞", + "pn": -0.997848 + }, + { + "surface": "嬲る", + "readging": "なぶる", + "pos": "動詞", + "pn": -0.997864 + }, + { + "surface": "えがらい", + "readging": "えがらい", + "pos": "形容詞", + "pn": -0.997876 + }, + { + "surface": "ちまちま", + "readging": "ちまちま", + "pos": "名詞", + "pn": -0.997912 + }, + { + "surface": "悪人", + "readging": "あくにん", + "pos": "名詞", + "pn": -0.99793 + }, + { + "surface": "矯める", + "readging": "ためる", + "pos": "動詞", + "pn": -0.997937 + }, + { + "surface": "忌嫌う", + "readging": "いみきらう", + "pos": "動詞", + "pn": -0.997942 + }, + { + "surface": "三太郎", + "readging": "さんたろう", + "pos": "名詞", + "pn": -0.997943 + }, + { + "surface": "失敗", + "readging": "しっぱい", + "pos": "名詞", + "pn": -0.997949 + }, + { + "surface": "酷使", + "readging": "こくし", + "pos": "名詞", + "pn": -0.997956 + }, + { + "surface": "怪我", + "readging": "けが", + "pos": "名詞", + "pn": -0.997969 + }, + { + "surface": "空腹", + "readging": "くうふく", + "pos": "名詞", + "pn": -0.99797 + }, + { + "surface": "悔しい", + "readging": "くやしい", + "pos": "形容詞", + "pn": -0.997976 + }, + { + "surface": "怖い", + "readging": "こわい", + "pos": "形容詞", + "pn": -0.997999 + }, + { + "surface": "荒れる", + "readging": "あれる", + "pos": "動詞", + "pn": -0.998016 + }, + { + "surface": "不正", + "readging": "ふせい", + "pos": "名詞", + "pn": -0.99802 + }, + { + "surface": "呆れ果てる", + "readging": "あきれはてる", + "pos": "動詞", + "pn": -0.998025 + }, + { + "surface": "乏しい", + "readging": "とぼしい", + "pos": "形容詞", + "pn": -0.998036 + }, + { + "surface": "おっかなびっくり", + "readging": "おっかなびっくり", + "pos": "副詞", + "pn": -0.998079 + }, + { + "surface": "口喧しい", + "readging": "くちやかましい", + "pos": "形容詞", + "pn": -0.998082 + }, + { + "surface": "損なう", + "readging": "そこなう", + "pos": "動詞", + "pn": -0.99809 + }, + { + "surface": "悪", + "readging": "わる", + "pos": "名詞", + "pn": -0.998103 + }, + { + "surface": "呵する", + "readging": "かする", + "pos": "動詞", + "pn": -0.998128 + }, + { + "surface": "忌む", + "readging": "いむ", + "pos": "動詞", + "pn": -0.998143 + }, + { + "surface": "呆れ返る", + "readging": "あきれかえる", + "pos": "動詞", + "pn": -0.998145 + }, + { + "surface": "呆れる", + "readging": "あきれる", + "pos": "動詞", + "pn": -0.99819 + }, + { + "surface": "害", + "readging": "がい", + "pos": "名詞", + "pn": -0.998193 + }, + { + "surface": "蔑む", + "readging": "さげすむ", + "pos": "動詞", + "pn": -0.99822 + }, + { + "surface": "傷", + "readging": "しょう", + "pos": "名詞", + "pn": -0.99822 + }, + { + "surface": "外れる", + "readging": "はずれる", + "pos": "動詞", + "pn": -0.998223 + }, + { + "surface": "餓鬼", + "readging": "がき", + "pos": "名詞", + "pn": -0.998226 + }, + { + "surface": "非難", + "readging": "ひなん", + "pos": "名詞", + "pn": -0.998228 + }, + { + "surface": "憂える", + "readging": "うれえる", + "pos": "動詞", + "pn": -0.998253 + }, + { + "surface": "もがく", + "readging": "もがく", + "pos": "動詞", + "pn": -0.99827 + }, + { + "surface": "伝染病", + "readging": "でんせんびょう", + "pos": "名詞", + "pn": -0.998299 + }, + { + "surface": "悪戯", + "readging": "いたずら", + "pos": "名詞", + "pn": -0.99833 + }, + { + "surface": "壊れる", + "readging": "こわれる", + "pos": "動詞", + "pn": -0.99833 + }, + { + "surface": "地獄", + "readging": "じごく", + "pos": "名詞", + "pn": -0.998336 + }, + { + "surface": "嘆く", + "readging": "なげく", + "pos": "動詞", + "pn": -0.998338 + }, + { + "surface": "邪悪", + "readging": "じゃあく", + "pos": "名詞", + "pn": -0.998351 + }, + { + "surface": "穢", + "readging": "あい", + "pos": "名詞", + "pn": -0.998363 + }, + { + "surface": "貧弱", + "readging": "ひんじゃく", + "pos": "名詞", + "pn": -0.998381 + }, + { + "surface": "煩い", + "readging": "うるさい", + "pos": "形容詞", + "pn": -0.998388 + }, + { + "surface": "乱す", + "readging": "みだす", + "pos": "動詞", + "pn": -0.998391 + }, + { + "surface": "鈍い", + "readging": "のろい", + "pos": "形容詞", + "pn": -0.998402 + }, + { + "surface": "痛み", + "readging": "いたみ", + "pos": "名詞", + "pn": -0.998416 + }, + { + "surface": "刑罰", + "readging": "けいばつ", + "pos": "名詞", + "pn": -0.998457 + }, + { + "surface": "過つ", + "readging": "あやまつ", + "pos": "動詞", + "pn": -0.99846 + }, + { + "surface": "恐る恐る", + "readging": "おそるおそる", + "pos": "副詞", + "pn": -0.998462 + }, + { + "surface": "咎める", + "readging": "とがめる", + "pos": "動詞", + "pn": -0.998463 + }, + { + "surface": "諫める", + "readging": "いさめる", + "pos": "動詞", + "pn": -0.99847 + }, + { + "surface": "拗ける", + "readging": "ねじける", + "pos": "動詞", + "pn": -0.998475 + }, + { + "surface": "遅い", + "readging": "おそい", + "pos": "形容詞", + "pn": -0.998516 + }, + { + "surface": "不平", + "readging": "ふへい", + "pos": "名詞", + "pn": -0.998534 + }, + { + "surface": "ぬ", + "readging": "ぬ", + "pos": "助動詞", + "pn": -0.998545 + }, + { + "surface": "不吉", + "readging": "ふきつ", + "pos": "名詞", + "pn": -0.998547 + }, + { + "surface": "飽く", + "readging": "あく", + "pos": "動詞", + "pn": -0.99857 + }, + { + "surface": "荒い", + "readging": "あらい", + "pos": "形容詞", + "pn": -0.998586 + }, + { + "surface": "怪しい", + "readging": "あやしい", + "pos": "形容詞", + "pn": -0.99859 + }, + { + "surface": "謗る", + "readging": "そしる", + "pos": "動詞", + "pn": -0.998597 + }, + { + "surface": "悩む", + "readging": "なやむ", + "pos": "動詞", + "pn": -0.998625 + }, + { + "surface": "悪事", + "readging": "あくじ", + "pos": "名詞", + "pn": -0.998688 + }, + { + "surface": "災難", + "readging": "さいなん", + "pos": "名詞", + "pn": -0.998735 + }, + { + "surface": "煩わしい", + "readging": "わずらわしい", + "pos": "形容詞", + "pn": -0.99875 + }, + { + "surface": "困る", + "readging": "こまる", + "pos": "動詞", + "pn": -0.998751 + }, + { + "surface": "恐ろしい", + "readging": "おそろしい", + "pos": "形容詞", + "pn": -0.998781 + }, + { + "surface": "つまらない", + "readging": "つまらない", + "pos": "形容詞", + "pn": -0.998792 + }, + { + "surface": "差迫る", + "readging": "さしせまる", + "pos": "動詞", + "pn": -0.99881 + }, + { + "surface": "企む", + "readging": "たくらむ", + "pos": "動詞", + "pn": -0.998839 + }, + { + "surface": "叱り付ける", + "readging": "しかりつける", + "pos": "動詞", + "pn": -0.998842 + }, + { + "surface": "忙しい", + "readging": "せわしい", + "pos": "形容詞", + "pn": -0.998843 + }, + { + "surface": "小煩い", + "readging": "こうるさい", + "pos": "形容詞", + "pn": -0.998848 + }, + { + "surface": "悪口", + "readging": "わるくち", + "pos": "名詞", + "pn": -0.998852 + }, + { + "surface": "毒", + "readging": "どく", + "pos": "名詞", + "pn": -0.998854 + }, + { + "surface": "囚人", + "readging": "しゅうじん", + "pos": "名詞", + "pn": -0.998867 + }, + { + "surface": "溺れる", + "readging": "おぼれる", + "pos": "動詞", + "pn": -0.99888 + }, + { + "surface": "愚痴", + "readging": "ぐち", + "pos": "名詞", + "pn": -0.998902 + }, + { + "surface": "死", + "readging": "しに", + "pos": "名詞", + "pn": -0.998923 + }, + { + "surface": "叱る", + "readging": "しかる", + "pos": "動詞", + "pn": -0.998972 + }, + { + "surface": "火事", + "readging": "かじ", + "pos": "名詞", + "pn": -0.998974 + }, + { + "surface": "弊害", + "readging": "へいがい", + "pos": "名詞", + "pn": -0.998975 + }, + { + "surface": "賄", + "readging": "わい", + "pos": "名詞", + "pn": -0.998992 + }, + { + "surface": "恨む", + "readging": "うらむ", + "pos": "動詞", + "pn": -0.999008 + }, + { + "surface": "寂しい", + "readging": "さびしい", + "pos": "形容詞", + "pn": -0.999028 + }, + { + "surface": "恐れ", + "readging": "おそれ", + "pos": "名詞", + "pn": -0.99904 + }, + { + "surface": "落ちぶれる", + "readging": "おちぶれる", + "pos": "動詞", + "pn": -0.99909 + }, + { + "surface": "悲しい", + "readging": "かなしい", + "pos": "形容詞", + "pn": -0.999102 + }, + { + "surface": "罪", + "readging": "つみ", + "pos": "名詞", + "pn": -0.999111 + }, + { + "surface": "痩せる", + "readging": "やせる", + "pos": "動詞", + "pn": -0.999132 + }, + { + "surface": "惨たらしい", + "readging": "むごたらしい", + "pos": "形容詞", + "pn": -0.999146 + }, + { + "surface": "けち", + "readging": "けち", + "pos": "名詞", + "pn": -0.999162 + }, + { + "surface": "悶える", + "readging": "もだえる", + "pos": "動詞", + "pn": -0.999176 + }, + { + "surface": "痒い", + "readging": "かゆい", + "pos": "形容詞", + "pn": -0.999184 + }, + { + "surface": "恨み", + "readging": "うらみ", + "pos": "名詞", + "pn": -0.99922 + }, + { + "surface": "しつこい", + "readging": "しつこい", + "pos": "形容詞", + "pn": -0.999237 + }, + { + "surface": "鈍い", + "readging": "にぶい", + "pos": "形容詞", + "pn": -0.99924 + }, + { + "surface": "悲しみ", + "readging": "かなしみ", + "pos": "名詞", + "pn": -0.999241 + }, + { + "surface": "崩れる", + "readging": "くずれる", + "pos": "動詞", + "pn": -0.999245 + }, + { + "surface": "朽ちる", + "readging": "くちる", + "pos": "動詞", + "pn": -0.999279 + }, + { + "surface": "褪せる", + "readging": "あせる", + "pos": "動詞", + "pn": -0.999287 + }, + { + "surface": "暗い", + "readging": "くらい", + "pos": "形容詞", + "pn": -0.999298 + }, + { + "surface": "愚か", + "readging": "おろか", + "pos": "名詞", + "pn": -0.999303 + }, + { + "surface": "心配", + "readging": "しんぱい", + "pos": "名詞", + "pn": -0.999307 + }, + { + "surface": "菌", + "readging": "きん", + "pos": "名詞", + "pn": -0.999318 + }, + { + "surface": "険しい", + "readging": "けわしい", + "pos": "形容詞", + "pn": -0.999327 + }, + { + "surface": "不承不承", + "readging": "ふしょうぶしょう", + "pos": "副詞", + "pn": -0.99933 + }, + { + "surface": "汚い", + "readging": "きたない", + "pos": "形容詞", + "pn": -0.999332 + }, + { + "surface": "乱暴", + "readging": "らんぼう", + "pos": "名詞", + "pn": -0.999334 + }, + { + "surface": "狭い", + "readging": "せまい", + "pos": "形容詞", + "pn": -0.999342 + }, + { + "surface": "下らない", + "readging": "くだらない", + "pos": "形容詞", + "pn": -0.999355 + }, + { + "surface": "寒い", + "readging": "さむい", + "pos": "形容詞", + "pn": -0.999383 + }, + { + "surface": "不貞腐る", + "readging": "ふてくさる", + "pos": "動詞", + "pn": -0.99943 + }, + { + "surface": "罰", + "readging": "ばつ", + "pos": "名詞", + "pn": -0.99943 + }, + { + "surface": "物寂しい", + "readging": "ものさびしい", + "pos": "形容詞", + "pn": -0.999457 + }, + { + "surface": "辛い", + "readging": "つらい", + "pos": "形容詞", + "pn": -0.999466 + }, + { + "surface": "苦しめる", + "readging": "くるしめる", + "pos": "動詞", + "pn": -0.999484 + }, + { + "surface": "嘲る", + "readging": "あざける", + "pos": "動詞", + "pn": -0.999499 + }, + { + "surface": "背く", + "readging": "そむく", + "pos": "動詞", + "pn": -0.999531 + }, + { + "surface": "敵", + "readging": "てき", + "pos": "名詞", + "pn": -0.999579 + }, + { + "surface": "責める", + "readging": "せめる", + "pos": "動詞", + "pn": -0.999615 + }, + { + "surface": "惨い", + "readging": "むごい", + "pos": "形容詞", + "pn": -0.999657 + }, + { + "surface": "荒荒しい", + "readging": "あらあらしい", + "pos": "形容詞", + "pn": -0.999661 + }, + { + "surface": "難い", + "readging": "かたい", + "pos": "形容詞", + "pn": -0.999667 + }, + { + "surface": "殺す", + "readging": "ころす", + "pos": "動詞", + "pn": -0.999749 + }, + { + "surface": "難しい", + "readging": "むずかしい", + "pos": "形容詞", + "pn": -0.999754 + }, + { + "surface": "厳しい", + "readging": "きびしい", + "pos": "形容詞", + "pn": -0.999755 + }, + { + "surface": "付く", + "readging": "つく", + "pos": "動詞", + "pn": -0.999763 + }, + { + "surface": "苦しい", + "readging": "くるしい", + "pos": "形容詞", + "pn": -0.999788 + }, + { + "surface": "苦しむ", + "readging": "くるしむ", + "pos": "動詞", + "pn": -0.999805 + }, + { + "surface": "下手", + "readging": "へた", + "pos": "名詞", + "pn": -0.999831 + }, + { + "surface": "卑しい", + "readging": "いやしい", + "pos": "形容詞", + "pn": -0.99986 + }, + { + "surface": "ない", + "readging": "ない", + "pos": "形容詞", + "pn": -0.999882 + }, + { + "surface": "浸ける", + "readging": "つける", + "pos": "動詞", + "pn": -0.999947 + }, + { + "surface": "罵る", + "readging": "ののしる", + "pos": "動詞", + "pn": -0.999961 + }, + { + "surface": "ない", + "readging": "ない", + "pos": "助動詞", + "pn": -0.999997 + }, + { + "surface": "酷い", + "readging": "ひどい", + "pos": "形容詞", + "pn": -0.999997 + }, + { + "surface": "病気", + "readging": "びょうき", + "pos": "名詞", + "pn": -0.999998 + }, + { + "surface": "死ぬ", + "readging": "しぬ", + "pos": "動詞", + "pn": -0.999999 + }, + { + "surface": "悪い", + "readging": "わるい", + "pos": "形容詞", + "pn": -1.0 + } + ] +} From 2191b03170137d6fef0c8dc9f15589118c7a033a Mon Sep 17 00:00:00 2001 From: mitubaEX Date: Sun, 21 May 2017 17:52:54 +0900 Subject: [PATCH 3/7] =?UTF-8?q?yahooAPI=E3=82=92=E7=94=A8=E3=81=84?= =?UTF-8?q?=E3=81=A6xml=E3=82=92=E8=BF=94=E3=81=99=E5=87=A6=E7=90=86?= =?UTF-8?q?=E3=81=BE=E3=81=A7=E6=9B=B8=E3=81=84=E3=81=9F=EF=BC=88xml?= =?UTF-8?q?=E3=81=AF=E3=81=BE=E3=81=A0=E3=83=91=E3=83=BC=E3=82=B9=E3=81=A7?= =?UTF-8?q?=E3=81=8D=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- team3/bot/bot.go | 15 ++++++++++++++ team3/bot/processor.go | 44 ++++++++++++++++++++++++++++++++++++++++-- team3/bot/util.go | 20 ++++++++++++++++++- team3/server.go | 2 ++ 4 files changed, 78 insertions(+), 3 deletions(-) diff --git a/team3/bot/bot.go b/team3/bot/bot.go index d6bfd7c..4ef269e 100644 --- a/team3/bot/bot.go +++ b/team3/bot/bot.go @@ -95,6 +95,21 @@ func NewKeywordBot(out chan *model.Message) *Bot { processor: processor, } } +func NewWordEmotionBot(out chan *model.Message) *Bot { + in := make(chan *model.Message) + + checker := NewRegexpChecker("\\Atalk .*") + + processor := &WordEmotionProcessor{} + + return &Bot{ + name: "wordemotionbot", + in: in, + out: out, + checker: checker, + processor: processor, + } +} func (b *Bot) respond(m *model.Message) { message := b.processor.Process(m) diff --git a/team3/bot/processor.go b/team3/bot/processor.go index 784c0ca..5f01419 100644 --- a/team3/bot/processor.go +++ b/team3/bot/processor.go @@ -1,6 +1,7 @@ package bot import ( + "encoding/xml" "regexp" "strings" @@ -10,7 +11,7 @@ import ( ) const ( - keywordApiUrlFormat = "https://jlp.yahooapis.jp/KeyphraseService/V1/extract?appid=%s&sentence=%s&output=json" + keywordApiUrlFormat = "http://jlp.yahooapis.jp/MAService/V1/parse?appid=dj0zaiZpPVJ6YzZMeTVTbkJLZSZzPWNvbnN1bWVyc2VjcmV0Jng9MmE-&sentence=" ) type ( @@ -26,7 +27,14 @@ type ( OmikujiProcessor struct{} // メッセージ本文からキーワードを抽出するprocessorの構造体です - KeywordProcessor struct{} + KeywordProcessor struct{} + WordEmotionProcessor struct{} + + XML struct { + surface []string `xml:"surface"` + reading []string `xml:"reading"` + pos []string `xml:"pos"` + } ) // Process は"hello, world!"というbodyがセットされたメッセージのポインタを返します @@ -72,3 +80,35 @@ func (p *KeywordProcessor) Process(msgIn *model.Message) *model.Message { Body: "キーワード:" + strings.Join(keywords, ", "), } } + +// Process はメッセージ本文からキーワードを抽出します +func (p *WordEmotionProcessor) Process(msgIn *model.Message) *model.Message { + r := regexp.MustCompile("\\Atalk (.*)\\z") + matchedStrings := r.FindStringSubmatch(msgIn.Body) + text := matchedStrings[1] + + url := keywordApiUrlFormat + text + + result := XML{} + xmlGet(url, &result) + data := new(XML) + if err := xml.Unmarshal(result, data); err != nil { + fmt.Println("XML Unmarshal error", err) + // return + } + // var result_text string + // + // for _, xml := range result { + // fmt.Println(xml.surface) + // result_text = xml.surface + // } + + // keywords := []string{} + // for keyword := range map[string]int(json) { + // keywords = append(keywords, keyword) + // } + return &model.Message{ + Body: "キーワード: " + data.surface[0], + } + +} diff --git a/team3/bot/util.go b/team3/bot/util.go index bb7430a..f6843b7 100644 --- a/team3/bot/util.go +++ b/team3/bot/util.go @@ -3,6 +3,7 @@ package bot import ( "bytes" "encoding/json" + "encoding/xml" "io/ioutil" "math/rand" "net/http" @@ -22,7 +23,6 @@ func get(url string, out interface{}) error { if err != nil { return err } - err = json.Unmarshal(respBody, out) if err != nil { return err @@ -30,6 +30,24 @@ func get(url string, out interface{}) error { return nil } +func xmlGet(url string, out interface{}) error { + resp, err := http.Get(url) + if err != nil { + return err + } + defer resp.Body.Close() + + respBody, err := ioutil.ReadAll(resp.Body) + if err != nil { + return err + } + // err = xml.Unmarshal(respBody, out) + // if err != nil { + // return err + // } + + return nil +} // post はurlにparamsをPOSTします func post(url string, params url.Values, out interface{}) error { diff --git a/team3/server.go b/team3/server.go index 9837ed7..2d57a66 100644 --- a/team3/server.go +++ b/team3/server.go @@ -82,6 +82,8 @@ func (s *Server) Init(dbconf, env string) error { s.bots = append(s.bots, omikujiBot) keywordBot := bot.NewKeywordBot(s.poster.In) s.bots = append(s.bots, keywordBot) + wordEmotionBot := bot.NewWordEmotionBot(s.poster.In) + s.bots = append(s.bots, wordEmotionBot) return nil } From f9087fcdedd3ad1aeb438c57b4b62fc38e8c1d16 Mon Sep 17 00:00:00 2001 From: scarletrunner7000 Date: Sun, 21 May 2017 18:01:25 +0900 Subject: [PATCH 4/7] add pn calculator --- team3/lib/calc_pn.go | 61 ++++++++++++++++++++++++++++++++++++++ team3/{ => lib}/pn_ja.json | 0 2 files changed, 61 insertions(+) create mode 100644 team3/lib/calc_pn.go rename team3/{ => lib}/pn_ja.json (100%) diff --git a/team3/lib/calc_pn.go b/team3/lib/calc_pn.go new file mode 100644 index 0000000..4fcafb6 --- /dev/null +++ b/team3/lib/calc_pn.go @@ -0,0 +1,61 @@ +package main + +import ( + "fmt" + "io/ioutil" + "json" + "os" +) + +// []struct -> float64 + +type Dic struct { + Words []WordPn +} + +type WordPn struct { + Surface string `json:"surface"` + Readging string `json:"readging"` + Pos string `json:"pos"` + Pn float64 `json:"pn"` +} + +type Word struct { + Surface string `json:"surface"` + Readging string `json:"readging"` + Pos string `json:"pos"` +} + +var dic []WordPn + +func calcPn(words []*Word) float64 { + + pn := 0.0 + + for i := 0; i < len(words); i++ { + for j := 0; j < len(dic); j++ { + if words[i].Surface == dic[j].Surface { + pn += dic[j].Pn + } + } + } + + return pn +} + +func loadDic() { + file, e := ioutil.ReadFile("./pn_ja.json") + if e != nil { + fmt.Printf("File error: %v\n", e) + // os.Exit(1) + } + // fmt.Printf("%s\n", string(file)) + + var jsontype Dic + json.Unmarshal(file, &jsontype) + // fmt.Printf("Results: %v\n", jsontype) +} + +func main() { + loadDic() +} diff --git a/team3/pn_ja.json b/team3/lib/pn_ja.json similarity index 100% rename from team3/pn_ja.json rename to team3/lib/pn_ja.json From 8ff13239647c2fd46f00c947c7d0457a23575a96 Mon Sep 17 00:00:00 2001 From: scarletrunner7000 Date: Sun, 21 May 2017 18:19:52 +0900 Subject: [PATCH 5/7] fix calc_pn --- team3/lib/calc_pn.go | 35 +++++++++++++++++++++++++++++++---- 1 file changed, 31 insertions(+), 4 deletions(-) diff --git a/team3/lib/calc_pn.go b/team3/lib/calc_pn.go index 4fcafb6..6ef22cc 100644 --- a/team3/lib/calc_pn.go +++ b/team3/lib/calc_pn.go @@ -1,16 +1,15 @@ package main import ( + "encoding/json" "fmt" "io/ioutil" - "json" - "os" ) // []struct -> float64 type Dic struct { - Words []WordPn + Words []WordPn `json:"dictionary"` } type WordPn struct { @@ -53,9 +52,37 @@ func loadDic() { var jsontype Dic json.Unmarshal(file, &jsontype) - // fmt.Printf("Results: %v\n", jsontype) + dic = jsontype.Words } func main() { loadDic() + words := []*Word{ + &Word{ + Surface: "ここ", + Readging: "ここ", + Pos: "名詞", + }, + &Word{ + Surface: "の", + Readging: "の", + Pos: "助詞", + }, + &Word{ + Surface: "ラーメン", + Readging: "らーめん", + Pos: "名詞", + }, + &Word{ + Surface: "は", + Readging: "は", + Pos: "助詞", + }, + &Word{ + Surface: "絶好", + Readging: "ぜっこう", + Pos: "形容詞", + }, + } + fmt.Printf("pn = %f\n", calcPn(words)) } From 3054c3ab44e7ddb5a026cc4938c65943d0c15246 Mon Sep 17 00:00:00 2001 From: scarletrunner7000 Date: Sun, 21 May 2017 18:30:15 +0900 Subject: [PATCH 6/7] fix words --- team3/lib/calc_pn.go | 46 +++++++++++++++++++++++++++++++------------- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/team3/lib/calc_pn.go b/team3/lib/calc_pn.go index 6ef22cc..dc798b0 100644 --- a/team3/lib/calc_pn.go +++ b/team3/lib/calc_pn.go @@ -57,31 +57,51 @@ func loadDic() { func main() { loadDic() + words := []*Word{ &Word{ - Surface: "ここ", - Readging: "ここ", + Surface: "go", + Readging: "せかい", Pos: "名詞", }, &Word{ - Surface: "の", - Readging: "の", - Pos: "助詞", + Surface: "は", + Readging: "", + Pos: "", }, &Word{ - Surface: "ラーメン", - Readging: "らーめん", - Pos: "名詞", + Surface: "楽しい", + Readging: "", + Pos: "", + }, + &Word{ + Surface: "そして", + Readging: "", + Pos: "", + }, + &Word{ + Surface: "幸せ", + Readging: "", + Pos: "", + }, + } + fmt.Printf("pn = %f\n", calcPn(words)) + + words = []*Word{ + &Word{ + Surface: "javascript", + Readging: "", + Pos: "", }, &Word{ Surface: "は", - Readging: "は", - Pos: "助詞", + Readging: "", + Pos: "", }, &Word{ - Surface: "絶好", - Readging: "ぜっこう", - Pos: "形容詞", + Surface: "悲しい", + Readging: "", + Pos: "", }, } fmt.Printf("pn = %f\n", calcPn(words)) From d56e0652d0da50474f05127a090a850ed77b0af6 Mon Sep 17 00:00:00 2001 From: scarletrunner7000 Date: Sun, 21 May 2017 18:40:55 +0900 Subject: [PATCH 7/7] fix words --- team3/lib/calc_pn.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/team3/lib/calc_pn.go b/team3/lib/calc_pn.go index dc798b0..7f6f5bc 100644 --- a/team3/lib/calc_pn.go +++ b/team3/lib/calc_pn.go @@ -61,17 +61,17 @@ func main() { words := []*Word{ &Word{ Surface: "go", - Readging: "せかい", + Readging: "ごー", Pos: "名詞", }, &Word{ Surface: "は", - Readging: "", + Readging: "は", Pos: "", }, &Word{ Surface: "楽しい", - Readging: "", + Readging: "たのしい", Pos: "", }, &Word{